oci.ServiceCatalog.PrivateApplication
Explore with Pulumi AI
This resource provides the Private Application resource in Oracle Cloud Infrastructure Service Catalog service.
Creates a private application along with a single package to be hosted.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testPrivateApplication = new oci.servicecatalog.PrivateApplication("test_private_application", {
    compartmentId: compartmentId,
    displayName: privateApplicationDisplayName,
    packageDetails: {
        packageType: privateApplicationPackageDetailsPackageType,
        version: privateApplicationPackageDetailsVersion,
        zipFileBase64encoded: privateApplicationPackageDetailsZipFileBase64encoded,
    },
    shortDescription: privateApplicationShortDescription,
    definedTags: {
        "foo-namespace.bar-key": "value",
    },
    freeformTags: {
        "bar-key": "value",
    },
    logoFileBase64encoded: privateApplicationLogoFileBase64encoded,
    longDescription: privateApplicationLongDescription,
});
import pulumi
import pulumi_oci as oci
test_private_application = oci.service_catalog.PrivateApplication("test_private_application",
    compartment_id=compartment_id,
    display_name=private_application_display_name,
    package_details={
        "package_type": private_application_package_details_package_type,
        "version": private_application_package_details_version,
        "zip_file_base64encoded": private_application_package_details_zip_file_base64encoded,
    },
    short_description=private_application_short_description,
    defined_tags={
        "foo-namespace.bar-key": "value",
    },
    freeform_tags={
        "bar-key": "value",
    },
    logo_file_base64encoded=private_application_logo_file_base64encoded,
    long_description=private_application_long_description)
package main
import (
	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/servicecatalog"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := servicecatalog.NewPrivateApplication(ctx, "test_private_application", &servicecatalog.PrivateApplicationArgs{
			CompartmentId: pulumi.Any(compartmentId),
			DisplayName:   pulumi.Any(privateApplicationDisplayName),
			PackageDetails: &servicecatalog.PrivateApplicationPackageDetailsArgs{
				PackageType:          pulumi.Any(privateApplicationPackageDetailsPackageType),
				Version:              pulumi.Any(privateApplicationPackageDetailsVersion),
				ZipFileBase64encoded: pulumi.Any(privateApplicationPackageDetailsZipFileBase64encoded),
			},
			ShortDescription: pulumi.Any(privateApplicationShortDescription),
			DefinedTags: pulumi.StringMap{
				"foo-namespace.bar-key": pulumi.String("value"),
			},
			FreeformTags: pulumi.StringMap{
				"bar-key": pulumi.String("value"),
			},
			LogoFileBase64encoded: pulumi.Any(privateApplicationLogoFileBase64encoded),
			LongDescription:       pulumi.Any(privateApplicationLongDescription),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;
return await Deployment.RunAsync(() => 
{
    var testPrivateApplication = new Oci.ServiceCatalog.PrivateApplication("test_private_application", new()
    {
        CompartmentId = compartmentId,
        DisplayName = privateApplicationDisplayName,
        PackageDetails = new Oci.ServiceCatalog.Inputs.PrivateApplicationPackageDetailsArgs
        {
            PackageType = privateApplicationPackageDetailsPackageType,
            Version = privateApplicationPackageDetailsVersion,
            ZipFileBase64encoded = privateApplicationPackageDetailsZipFileBase64encoded,
        },
        ShortDescription = privateApplicationShortDescription,
        DefinedTags = 
        {
            { "foo-namespace.bar-key", "value" },
        },
        FreeformTags = 
        {
            { "bar-key", "value" },
        },
        LogoFileBase64encoded = privateApplicationLogoFileBase64encoded,
        LongDescription = privateApplicationLongDescription,
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.ServiceCatalog.PrivateApplication;
import com.pulumi.oci.ServiceCatalog.PrivateApplicationArgs;
import com.pulumi.oci.ServiceCatalog.inputs.PrivateApplicationPackageDetailsArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }
    public static void stack(Context ctx) {
        var testPrivateApplication = new PrivateApplication("testPrivateApplication", PrivateApplicationArgs.builder()
            .compartmentId(compartmentId)
            .displayName(privateApplicationDisplayName)
            .packageDetails(PrivateApplicationPackageDetailsArgs.builder()
                .packageType(privateApplicationPackageDetailsPackageType)
                .version(privateApplicationPackageDetailsVersion)
                .zipFileBase64encoded(privateApplicationPackageDetailsZipFileBase64encoded)
                .build())
            .shortDescription(privateApplicationShortDescription)
            .definedTags(Map.of("foo-namespace.bar-key", "value"))
            .freeformTags(Map.of("bar-key", "value"))
            .logoFileBase64encoded(privateApplicationLogoFileBase64encoded)
            .longDescription(privateApplicationLongDescription)
            .build());
    }
}
resources:
  testPrivateApplication:
    type: oci:ServiceCatalog:PrivateApplication
    name: test_private_application
    properties:
      compartmentId: ${compartmentId}
      displayName: ${privateApplicationDisplayName}
      packageDetails:
        packageType: ${privateApplicationPackageDetailsPackageType}
        version: ${privateApplicationPackageDetailsVersion}
        zipFileBase64encoded: ${privateApplicationPackageDetailsZipFileBase64encoded}
      shortDescription: ${privateApplicationShortDescription}
      definedTags:
        foo-namespace.bar-key: value
      freeformTags:
        bar-key: value
      logoFileBase64encoded: ${privateApplicationLogoFileBase64encoded}
      longDescription: ${privateApplicationLongDescription}
Create PrivateApplication Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new PrivateApplication(name: string, args: PrivateApplicationArgs, opts?: CustomResourceOptions);@overload
def PrivateApplication(resource_name: str,
                       args: PrivateApplicationArgs,
                       opts: Optional[ResourceOptions] = None)
@overload
def PrivateApplication(resource_name: str,
                       opts: Optional[ResourceOptions] = None,
                       compartment_id: Optional[str] = None,
                       display_name: Optional[str] = None,
                       package_details: Optional[PrivateApplicationPackageDetailsArgs] = None,
                       short_description: Optional[str] = None,
                       defined_tags: Optional[Mapping[str, str]] = None,
                       freeform_tags: Optional[Mapping[str, str]] = None,
                       logo_file_base64encoded: Optional[str] = None,
                       long_description: Optional[str] = None)func NewPrivateApplication(ctx *Context, name string, args PrivateApplicationArgs, opts ...ResourceOption) (*PrivateApplication, error)public PrivateApplication(string name, PrivateApplicationArgs args, CustomResourceOptions? opts = null)
public PrivateApplication(String name, PrivateApplicationArgs args)
public PrivateApplication(String name, PrivateApplicationArgs args, CustomResourceOptions options)
type: oci:ServiceCatalog:PrivateApplication
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args PrivateApplicationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args PrivateApplicationArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args PrivateApplicationArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args PrivateApplicationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args PrivateApplicationArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var privateApplicationResource = new Oci.ServiceCatalog.PrivateApplication("privateApplicationResource", new()
{
    CompartmentId = "string",
    DisplayName = "string",
    PackageDetails = new Oci.ServiceCatalog.Inputs.PrivateApplicationPackageDetailsArgs
    {
        PackageType = "string",
        Version = "string",
        ZipFileBase64encoded = "string",
    },
    ShortDescription = "string",
    DefinedTags = 
    {
        { "string", "string" },
    },
    FreeformTags = 
    {
        { "string", "string" },
    },
    LogoFileBase64encoded = "string",
    LongDescription = "string",
});
example, err := servicecatalog.NewPrivateApplication(ctx, "privateApplicationResource", &servicecatalog.PrivateApplicationArgs{
	CompartmentId: pulumi.String("string"),
	DisplayName:   pulumi.String("string"),
	PackageDetails: &servicecatalog.PrivateApplicationPackageDetailsArgs{
		PackageType:          pulumi.String("string"),
		Version:              pulumi.String("string"),
		ZipFileBase64encoded: pulumi.String("string"),
	},
	ShortDescription: pulumi.String("string"),
	DefinedTags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	FreeformTags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	LogoFileBase64encoded: pulumi.String("string"),
	LongDescription:       pulumi.String("string"),
})
var privateApplicationResource = new PrivateApplication("privateApplicationResource", PrivateApplicationArgs.builder()
    .compartmentId("string")
    .displayName("string")
    .packageDetails(PrivateApplicationPackageDetailsArgs.builder()
        .packageType("string")
        .version("string")
        .zipFileBase64encoded("string")
        .build())
    .shortDescription("string")
    .definedTags(Map.of("string", "string"))
    .freeformTags(Map.of("string", "string"))
    .logoFileBase64encoded("string")
    .longDescription("string")
    .build());
private_application_resource = oci.service_catalog.PrivateApplication("privateApplicationResource",
    compartment_id="string",
    display_name="string",
    package_details={
        "package_type": "string",
        "version": "string",
        "zip_file_base64encoded": "string",
    },
    short_description="string",
    defined_tags={
        "string": "string",
    },
    freeform_tags={
        "string": "string",
    },
    logo_file_base64encoded="string",
    long_description="string")
const privateApplicationResource = new oci.servicecatalog.PrivateApplication("privateApplicationResource", {
    compartmentId: "string",
    displayName: "string",
    packageDetails: {
        packageType: "string",
        version: "string",
        zipFileBase64encoded: "string",
    },
    shortDescription: "string",
    definedTags: {
        string: "string",
    },
    freeformTags: {
        string: "string",
    },
    logoFileBase64encoded: "string",
    longDescription: "string",
});
type: oci:ServiceCatalog:PrivateApplication
properties:
    compartmentId: string
    definedTags:
        string: string
    displayName: string
    freeformTags:
        string: string
    logoFileBase64encoded: string
    longDescription: string
    packageDetails:
        packageType: string
        version: string
        zipFileBase64encoded: string
    shortDescription: string
PrivateApplication Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The PrivateApplication resource accepts the following input properties:
- CompartmentId string
- (Updatable) The OCID of the compartment where you want to create the private application.
- DisplayName string
- (Updatable) The name of the private application.
- PackageDetails PrivateApplication Package Details 
- A base object for creating a private application package.
- ShortDescription string
- (Updatable) A short description of the private application. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- Dictionary<string, string>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- Dictionary<string, string>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- LogoFile stringBase64encoded 
- (Updatable) Base64-encoded logo to use as the private application icon. Template icon file requirements: PNG format, 50 KB maximum, 130 x 130 pixels.
- LongDescription string
- (Updatable) A long description of the private application.
- CompartmentId string
- (Updatable) The OCID of the compartment where you want to create the private application.
- DisplayName string
- (Updatable) The name of the private application.
- PackageDetails PrivateApplication Package Details Args 
- A base object for creating a private application package.
- ShortDescription string
- (Updatable) A short description of the private application. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- map[string]string
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- map[string]string
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- LogoFile stringBase64encoded 
- (Updatable) Base64-encoded logo to use as the private application icon. Template icon file requirements: PNG format, 50 KB maximum, 130 x 130 pixels.
- LongDescription string
- (Updatable) A long description of the private application.
- compartmentId String
- (Updatable) The OCID of the compartment where you want to create the private application.
- displayName String
- (Updatable) The name of the private application.
- packageDetails PrivateApplication Package Details 
- A base object for creating a private application package.
- shortDescription String
- (Updatable) A short description of the private application. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- Map<String,String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- Map<String,String>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- logoFile StringBase64encoded 
- (Updatable) Base64-encoded logo to use as the private application icon. Template icon file requirements: PNG format, 50 KB maximum, 130 x 130 pixels.
- longDescription String
- (Updatable) A long description of the private application.
- compartmentId string
- (Updatable) The OCID of the compartment where you want to create the private application.
- displayName string
- (Updatable) The name of the private application.
- packageDetails PrivateApplication Package Details 
- A base object for creating a private application package.
- shortDescription string
- (Updatable) A short description of the private application. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- {[key: string]: string}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- {[key: string]: string}
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- logoFile stringBase64encoded 
- (Updatable) Base64-encoded logo to use as the private application icon. Template icon file requirements: PNG format, 50 KB maximum, 130 x 130 pixels.
- longDescription string
- (Updatable) A long description of the private application.
- compartment_id str
- (Updatable) The OCID of the compartment where you want to create the private application.
- display_name str
- (Updatable) The name of the private application.
- package_details PrivateApplication Package Details Args 
- A base object for creating a private application package.
- short_description str
- (Updatable) A short description of the private application. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- Mapping[str, str]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- Mapping[str, str]
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- logo_file_ strbase64encoded 
- (Updatable) Base64-encoded logo to use as the private application icon. Template icon file requirements: PNG format, 50 KB maximum, 130 x 130 pixels.
- long_description str
- (Updatable) A long description of the private application.
- compartmentId String
- (Updatable) The OCID of the compartment where you want to create the private application.
- displayName String
- (Updatable) The name of the private application.
- packageDetails Property Map
- A base object for creating a private application package.
- shortDescription String
- (Updatable) A short description of the private application. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- Map<String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- Map<String>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- logoFile StringBase64encoded 
- (Updatable) Base64-encoded logo to use as the private application icon. Template icon file requirements: PNG format, 50 KB maximum, 130 x 130 pixels.
- longDescription String
- (Updatable) A long description of the private application.
Outputs
All input properties are implicitly available as output properties. Additionally, the PrivateApplication resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Logos
List<PrivateApplication Logo> 
- The model for uploaded binary data, like logos and images.
- PackageType string
- Type of packages within this private application.
- State string
- The lifecycle state of the private application.
- TimeCreated string
- The date and time the private application was created, expressed in RFC 3339 timestamp format. Example: 2021-05-26T21:10:29.600Z
- TimeUpdated string
- The date and time the private application was last modified, expressed in RFC 3339 timestamp format. Example: 2021-12-10T05:10:29.721Z
- Id string
- The provider-assigned unique ID for this managed resource.
- Logos
[]PrivateApplication Logo 
- The model for uploaded binary data, like logos and images.
- PackageType string
- Type of packages within this private application.
- State string
- The lifecycle state of the private application.
- TimeCreated string
- The date and time the private application was created, expressed in RFC 3339 timestamp format. Example: 2021-05-26T21:10:29.600Z
- TimeUpdated string
- The date and time the private application was last modified, expressed in RFC 3339 timestamp format. Example: 2021-12-10T05:10:29.721Z
- id String
- The provider-assigned unique ID for this managed resource.
- logos
List<PrivateApplication Logo> 
- The model for uploaded binary data, like logos and images.
- packageType String
- Type of packages within this private application.
- state String
- The lifecycle state of the private application.
- timeCreated String
- The date and time the private application was created, expressed in RFC 3339 timestamp format. Example: 2021-05-26T21:10:29.600Z
- timeUpdated String
- The date and time the private application was last modified, expressed in RFC 3339 timestamp format. Example: 2021-12-10T05:10:29.721Z
- id string
- The provider-assigned unique ID for this managed resource.
- logos
PrivateApplication Logo[] 
- The model for uploaded binary data, like logos and images.
- packageType string
- Type of packages within this private application.
- state string
- The lifecycle state of the private application.
- timeCreated string
- The date and time the private application was created, expressed in RFC 3339 timestamp format. Example: 2021-05-26T21:10:29.600Z
- timeUpdated string
- The date and time the private application was last modified, expressed in RFC 3339 timestamp format. Example: 2021-12-10T05:10:29.721Z
- id str
- The provider-assigned unique ID for this managed resource.
- logos
Sequence[PrivateApplication Logo] 
- The model for uploaded binary data, like logos and images.
- package_type str
- Type of packages within this private application.
- state str
- The lifecycle state of the private application.
- time_created str
- The date and time the private application was created, expressed in RFC 3339 timestamp format. Example: 2021-05-26T21:10:29.600Z
- time_updated str
- The date and time the private application was last modified, expressed in RFC 3339 timestamp format. Example: 2021-12-10T05:10:29.721Z
- id String
- The provider-assigned unique ID for this managed resource.
- logos List<Property Map>
- The model for uploaded binary data, like logos and images.
- packageType String
- Type of packages within this private application.
- state String
- The lifecycle state of the private application.
- timeCreated String
- The date and time the private application was created, expressed in RFC 3339 timestamp format. Example: 2021-05-26T21:10:29.600Z
- timeUpdated String
- The date and time the private application was last modified, expressed in RFC 3339 timestamp format. Example: 2021-12-10T05:10:29.721Z
Look up Existing PrivateApplication Resource
Get an existing PrivateApplication resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: PrivateApplicationState, opts?: CustomResourceOptions): PrivateApplication@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        compartment_id: Optional[str] = None,
        defined_tags: Optional[Mapping[str, str]] = None,
        display_name: Optional[str] = None,
        freeform_tags: Optional[Mapping[str, str]] = None,
        logo_file_base64encoded: Optional[str] = None,
        logos: Optional[Sequence[PrivateApplicationLogoArgs]] = None,
        long_description: Optional[str] = None,
        package_details: Optional[PrivateApplicationPackageDetailsArgs] = None,
        package_type: Optional[str] = None,
        short_description: Optional[str] = None,
        state: Optional[str] = None,
        time_created: Optional[str] = None,
        time_updated: Optional[str] = None) -> PrivateApplicationfunc GetPrivateApplication(ctx *Context, name string, id IDInput, state *PrivateApplicationState, opts ...ResourceOption) (*PrivateApplication, error)public static PrivateApplication Get(string name, Input<string> id, PrivateApplicationState? state, CustomResourceOptions? opts = null)public static PrivateApplication get(String name, Output<String> id, PrivateApplicationState state, CustomResourceOptions options)resources:  _:    type: oci:ServiceCatalog:PrivateApplication    get:      id: ${id}- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- CompartmentId string
- (Updatable) The OCID of the compartment where you want to create the private application.
- Dictionary<string, string>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- DisplayName string
- (Updatable) The name of the private application.
- Dictionary<string, string>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- LogoFile stringBase64encoded 
- (Updatable) Base64-encoded logo to use as the private application icon. Template icon file requirements: PNG format, 50 KB maximum, 130 x 130 pixels.
- Logos
List<PrivateApplication Logo> 
- The model for uploaded binary data, like logos and images.
- LongDescription string
- (Updatable) A long description of the private application.
- PackageDetails PrivateApplication Package Details 
- A base object for creating a private application package.
- PackageType string
- Type of packages within this private application.
- ShortDescription string
- (Updatable) A short description of the private application. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- State string
- The lifecycle state of the private application.
- TimeCreated string
- The date and time the private application was created, expressed in RFC 3339 timestamp format. Example: 2021-05-26T21:10:29.600Z
- TimeUpdated string
- The date and time the private application was last modified, expressed in RFC 3339 timestamp format. Example: 2021-12-10T05:10:29.721Z
- CompartmentId string
- (Updatable) The OCID of the compartment where you want to create the private application.
- map[string]string
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- DisplayName string
- (Updatable) The name of the private application.
- map[string]string
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- LogoFile stringBase64encoded 
- (Updatable) Base64-encoded logo to use as the private application icon. Template icon file requirements: PNG format, 50 KB maximum, 130 x 130 pixels.
- Logos
[]PrivateApplication Logo Args 
- The model for uploaded binary data, like logos and images.
- LongDescription string
- (Updatable) A long description of the private application.
- PackageDetails PrivateApplication Package Details Args 
- A base object for creating a private application package.
- PackageType string
- Type of packages within this private application.
- ShortDescription string
- (Updatable) A short description of the private application. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- State string
- The lifecycle state of the private application.
- TimeCreated string
- The date and time the private application was created, expressed in RFC 3339 timestamp format. Example: 2021-05-26T21:10:29.600Z
- TimeUpdated string
- The date and time the private application was last modified, expressed in RFC 3339 timestamp format. Example: 2021-12-10T05:10:29.721Z
- compartmentId String
- (Updatable) The OCID of the compartment where you want to create the private application.
- Map<String,String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- displayName String
- (Updatable) The name of the private application.
- Map<String,String>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- logoFile StringBase64encoded 
- (Updatable) Base64-encoded logo to use as the private application icon. Template icon file requirements: PNG format, 50 KB maximum, 130 x 130 pixels.
- logos
List<PrivateApplication Logo> 
- The model for uploaded binary data, like logos and images.
- longDescription String
- (Updatable) A long description of the private application.
- packageDetails PrivateApplication Package Details 
- A base object for creating a private application package.
- packageType String
- Type of packages within this private application.
- shortDescription String
- (Updatable) A short description of the private application. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- state String
- The lifecycle state of the private application.
- timeCreated String
- The date and time the private application was created, expressed in RFC 3339 timestamp format. Example: 2021-05-26T21:10:29.600Z
- timeUpdated String
- The date and time the private application was last modified, expressed in RFC 3339 timestamp format. Example: 2021-12-10T05:10:29.721Z
- compartmentId string
- (Updatable) The OCID of the compartment where you want to create the private application.
- {[key: string]: string}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- displayName string
- (Updatable) The name of the private application.
- {[key: string]: string}
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- logoFile stringBase64encoded 
- (Updatable) Base64-encoded logo to use as the private application icon. Template icon file requirements: PNG format, 50 KB maximum, 130 x 130 pixels.
- logos
PrivateApplication Logo[] 
- The model for uploaded binary data, like logos and images.
- longDescription string
- (Updatable) A long description of the private application.
- packageDetails PrivateApplication Package Details 
- A base object for creating a private application package.
- packageType string
- Type of packages within this private application.
- shortDescription string
- (Updatable) A short description of the private application. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- state string
- The lifecycle state of the private application.
- timeCreated string
- The date and time the private application was created, expressed in RFC 3339 timestamp format. Example: 2021-05-26T21:10:29.600Z
- timeUpdated string
- The date and time the private application was last modified, expressed in RFC 3339 timestamp format. Example: 2021-12-10T05:10:29.721Z
- compartment_id str
- (Updatable) The OCID of the compartment where you want to create the private application.
- Mapping[str, str]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- display_name str
- (Updatable) The name of the private application.
- Mapping[str, str]
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- logo_file_ strbase64encoded 
- (Updatable) Base64-encoded logo to use as the private application icon. Template icon file requirements: PNG format, 50 KB maximum, 130 x 130 pixels.
- logos
Sequence[PrivateApplication Logo Args] 
- The model for uploaded binary data, like logos and images.
- long_description str
- (Updatable) A long description of the private application.
- package_details PrivateApplication Package Details Args 
- A base object for creating a private application package.
- package_type str
- Type of packages within this private application.
- short_description str
- (Updatable) A short description of the private application. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- state str
- The lifecycle state of the private application.
- time_created str
- The date and time the private application was created, expressed in RFC 3339 timestamp format. Example: 2021-05-26T21:10:29.600Z
- time_updated str
- The date and time the private application was last modified, expressed in RFC 3339 timestamp format. Example: 2021-12-10T05:10:29.721Z
- compartmentId String
- (Updatable) The OCID of the compartment where you want to create the private application.
- Map<String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- displayName String
- (Updatable) The name of the private application.
- Map<String>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- logoFile StringBase64encoded 
- (Updatable) Base64-encoded logo to use as the private application icon. Template icon file requirements: PNG format, 50 KB maximum, 130 x 130 pixels.
- logos List<Property Map>
- The model for uploaded binary data, like logos and images.
- longDescription String
- (Updatable) A long description of the private application.
- packageDetails Property Map
- A base object for creating a private application package.
- packageType String
- Type of packages within this private application.
- shortDescription String
- (Updatable) A short description of the private application. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- state String
- The lifecycle state of the private application.
- timeCreated String
- The date and time the private application was created, expressed in RFC 3339 timestamp format. Example: 2021-05-26T21:10:29.600Z
- timeUpdated String
- The date and time the private application was last modified, expressed in RFC 3339 timestamp format. Example: 2021-12-10T05:10:29.721Z
Supporting Types
PrivateApplicationLogo, PrivateApplicationLogoArgs      
- ContentUrl string
- The content URL of the uploaded data.
- DisplayName string
- (Updatable) The name of the private application.
- MimeType string
- The MIME type of the uploaded data.
- ContentUrl string
- The content URL of the uploaded data.
- DisplayName string
- (Updatable) The name of the private application.
- MimeType string
- The MIME type of the uploaded data.
- contentUrl String
- The content URL of the uploaded data.
- displayName String
- (Updatable) The name of the private application.
- mimeType String
- The MIME type of the uploaded data.
- contentUrl string
- The content URL of the uploaded data.
- displayName string
- (Updatable) The name of the private application.
- mimeType string
- The MIME type of the uploaded data.
- content_url str
- The content URL of the uploaded data.
- display_name str
- (Updatable) The name of the private application.
- mime_type str
- The MIME type of the uploaded data.
- contentUrl String
- The content URL of the uploaded data.
- displayName String
- (Updatable) The name of the private application.
- mimeType String
- The MIME type of the uploaded data.
PrivateApplicationPackageDetails, PrivateApplicationPackageDetailsArgs        
- PackageType string
- The package's type.
- Version string
- The package version.
- ZipFile stringBase64encoded 
- PackageType string
- The package's type.
- Version string
- The package version.
- ZipFile stringBase64encoded 
- packageType String
- The package's type.
- version String
- The package version.
- zipFile StringBase64encoded 
- packageType string
- The package's type.
- version string
- The package version.
- zipFile stringBase64encoded 
- package_type str
- The package's type.
- version str
- The package version.
- zip_file_ strbase64encoded 
- packageType String
- The package's type.
- version String
- The package version.
- zipFile StringBase64encoded 
Import
PrivateApplications can be imported using the id, e.g.
$ pulumi import oci:ServiceCatalog/privateApplication:PrivateApplication test_private_application "id"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the ociTerraform Provider.