1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. ServiceCatalog
  5. PrivateApplication
Oracle Cloud Infrastructure v1.27.0 published on Friday, Mar 15, 2024 by Pulumi

oci.ServiceCatalog.PrivateApplication

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v1.27.0 published on Friday, Mar 15, 2024 by Pulumi

    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("testPrivateApplication", {
        compartmentId: _var.compartment_id,
        displayName: _var.private_application_display_name,
        packageDetails: {
            packageType: _var.private_application_package_details_package_type,
            version: _var.private_application_package_details_version,
            zipFileBase64encoded: _var.private_application_package_details_zip_file_base64encoded,
        },
        shortDescription: _var.private_application_short_description,
        definedTags: {
            "foo-namespace.bar-key": "value",
        },
        freeformTags: {
            "bar-key": "value",
        },
        logoFileBase64encoded: _var.private_application_logo_file_base64encoded,
        longDescription: _var.private_application_long_description,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_private_application = oci.service_catalog.PrivateApplication("testPrivateApplication",
        compartment_id=var["compartment_id"],
        display_name=var["private_application_display_name"],
        package_details=oci.service_catalog.PrivateApplicationPackageDetailsArgs(
            package_type=var["private_application_package_details_package_type"],
            version=var["private_application_package_details_version"],
            zip_file_base64encoded=var["private_application_package_details_zip_file_base64encoded"],
        ),
        short_description=var["private_application_short_description"],
        defined_tags={
            "foo-namespace.bar-key": "value",
        },
        freeform_tags={
            "bar-key": "value",
        },
        logo_file_base64encoded=var["private_application_logo_file_base64encoded"],
        long_description=var["private_application_long_description"])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/go/oci/ServiceCatalog"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := ServiceCatalog.NewPrivateApplication(ctx, "testPrivateApplication", &ServiceCatalog.PrivateApplicationArgs{
    			CompartmentId: pulumi.Any(_var.Compartment_id),
    			DisplayName:   pulumi.Any(_var.Private_application_display_name),
    			PackageDetails: &servicecatalog.PrivateApplicationPackageDetailsArgs{
    				PackageType:          pulumi.Any(_var.Private_application_package_details_package_type),
    				Version:              pulumi.Any(_var.Private_application_package_details_version),
    				ZipFileBase64encoded: pulumi.Any(_var.Private_application_package_details_zip_file_base64encoded),
    			},
    			ShortDescription: pulumi.Any(_var.Private_application_short_description),
    			DefinedTags: pulumi.Map{
    				"foo-namespace.bar-key": pulumi.Any("value"),
    			},
    			FreeformTags: pulumi.Map{
    				"bar-key": pulumi.Any("value"),
    			},
    			LogoFileBase64encoded: pulumi.Any(_var.Private_application_logo_file_base64encoded),
    			LongDescription:       pulumi.Any(_var.Private_application_long_description),
    		})
    		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("testPrivateApplication", new()
        {
            CompartmentId = @var.Compartment_id,
            DisplayName = @var.Private_application_display_name,
            PackageDetails = new Oci.ServiceCatalog.Inputs.PrivateApplicationPackageDetailsArgs
            {
                PackageType = @var.Private_application_package_details_package_type,
                Version = @var.Private_application_package_details_version,
                ZipFileBase64encoded = @var.Private_application_package_details_zip_file_base64encoded,
            },
            ShortDescription = @var.Private_application_short_description,
            DefinedTags = 
            {
                { "foo-namespace.bar-key", "value" },
            },
            FreeformTags = 
            {
                { "bar-key", "value" },
            },
            LogoFileBase64encoded = @var.Private_application_logo_file_base64encoded,
            LongDescription = @var.Private_application_long_description,
        });
    
    });
    
    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(var_.compartment_id())
                .displayName(var_.private_application_display_name())
                .packageDetails(PrivateApplicationPackageDetailsArgs.builder()
                    .packageType(var_.private_application_package_details_package_type())
                    .version(var_.private_application_package_details_version())
                    .zipFileBase64encoded(var_.private_application_package_details_zip_file_base64encoded())
                    .build())
                .shortDescription(var_.private_application_short_description())
                .definedTags(Map.of("foo-namespace.bar-key", "value"))
                .freeformTags(Map.of("bar-key", "value"))
                .logoFileBase64encoded(var_.private_application_logo_file_base64encoded())
                .longDescription(var_.private_application_long_description())
                .build());
    
        }
    }
    
    resources:
      testPrivateApplication:
        type: oci:ServiceCatalog:PrivateApplication
        properties:
          #Required
          compartmentId: ${var.compartment_id}
          displayName: ${var.private_application_display_name}
          packageDetails:
            packageType: ${var.private_application_package_details_package_type}
            version: ${var.private_application_package_details_version}
            zipFileBase64encoded: ${var.private_application_package_details_zip_file_base64encoded}
          shortDescription: ${var.private_application_short_description}
          #Optional
          definedTags:
            foo-namespace.bar-key: value
          freeformTags:
            bar-key: value
          logoFileBase64encoded: ${var.private_application_logo_file_base64encoded}
          longDescription: ${var.private_application_long_description}
    

    Create PrivateApplication Resource

    new PrivateApplication(name: string, args: PrivateApplicationArgs, opts?: CustomResourceOptions);
    @overload
    def PrivateApplication(resource_name: str,
                           opts: Optional[ResourceOptions] = None,
                           compartment_id: Optional[str] = None,
                           defined_tags: Optional[Mapping[str, Any]] = None,
                           display_name: Optional[str] = None,
                           freeform_tags: Optional[Mapping[str, Any]] = None,
                           logo_file_base64encoded: Optional[str] = None,
                           long_description: Optional[str] = None,
                           package_details: Optional[_servicecatalog.PrivateApplicationPackageDetailsArgs] = None,
                           short_description: Optional[str] = None)
    @overload
    def PrivateApplication(resource_name: str,
                           args: PrivateApplicationArgs,
                           opts: Optional[ResourceOptions] = 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.
    
    
    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.

    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

    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 PrivateApplicationPackageDetails
    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

    DefinedTags Dictionary<string, object>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    FreeformTags Dictionary<string, object>
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    LogoFileBase64encoded string
    (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 PrivateApplicationPackageDetailsArgs
    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

    DefinedTags map[string]interface{}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    FreeformTags map[string]interface{}
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    LogoFileBase64encoded string
    (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 PrivateApplicationPackageDetails
    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

    definedTags Map<String,Object>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    freeformTags Map<String,Object>
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    logoFileBase64encoded String
    (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 PrivateApplicationPackageDetails
    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

    definedTags {[key: string]: any}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    freeformTags {[key: string]: any}
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    logoFileBase64encoded string
    (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 PrivateApplicationPackageDetailsArgs
    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

    defined_tags Mapping[str, Any]
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    freeform_tags Mapping[str, Any]
    (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_base64encoded str
    (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

    definedTags Map<Any>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    freeformTags Map<Any>
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    logoFileBase64encoded String
    (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<PrivateApplicationLogo>
    The model for uploaded binary data, like logos and images.
    PackageType string
    The package's type.
    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 []PrivateApplicationLogo
    The model for uploaded binary data, like logos and images.
    PackageType string
    The package's type.
    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<PrivateApplicationLogo>
    The model for uploaded binary data, like logos and images.
    packageType String
    The package's type.
    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 PrivateApplicationLogo[]
    The model for uploaded binary data, like logos and images.
    packageType string
    The package's type.
    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 PrivateApplicationLogo]
    The model for uploaded binary data, like logos and images.
    package_type str
    The package's type.
    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
    The package's type.
    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, Any]] = None,
            display_name: Optional[str] = None,
            freeform_tags: Optional[Mapping[str, Any]] = None,
            logo_file_base64encoded: Optional[str] = None,
            logos: Optional[Sequence[_servicecatalog.PrivateApplicationLogoArgs]] = None,
            long_description: Optional[str] = None,
            package_details: Optional[_servicecatalog.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) -> PrivateApplication
    func 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)
    Resource lookup is not supported in YAML
    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.
    The following state arguments are supported:
    CompartmentId string
    (Updatable) The OCID of the compartment where you want to create the private application.
    DefinedTags Dictionary<string, object>
    (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.
    FreeformTags Dictionary<string, object>
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    LogoFileBase64encoded string
    (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<PrivateApplicationLogo>
    The model for uploaded binary data, like logos and images.
    LongDescription string
    (Updatable) A long description of the private application.
    PackageDetails PrivateApplicationPackageDetails
    A base object for creating a private application package.
    PackageType string
    The package's type.
    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.
    DefinedTags map[string]interface{}
    (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.
    FreeformTags map[string]interface{}
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    LogoFileBase64encoded string
    (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 []PrivateApplicationLogoArgs
    The model for uploaded binary data, like logos and images.
    LongDescription string
    (Updatable) A long description of the private application.
    PackageDetails PrivateApplicationPackageDetailsArgs
    A base object for creating a private application package.
    PackageType string
    The package's type.
    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.
    definedTags Map<String,Object>
    (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.
    freeformTags Map<String,Object>
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    logoFileBase64encoded String
    (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<PrivateApplicationLogo>
    The model for uploaded binary data, like logos and images.
    longDescription String
    (Updatable) A long description of the private application.
    packageDetails PrivateApplicationPackageDetails
    A base object for creating a private application package.
    packageType String
    The package's type.
    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.
    definedTags {[key: string]: any}
    (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.
    freeformTags {[key: string]: any}
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    logoFileBase64encoded string
    (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 PrivateApplicationLogo[]
    The model for uploaded binary data, like logos and images.
    longDescription string
    (Updatable) A long description of the private application.
    packageDetails PrivateApplicationPackageDetails
    A base object for creating a private application package.
    packageType string
    The package's type.
    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.
    defined_tags Mapping[str, Any]
    (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.
    freeform_tags Mapping[str, Any]
    (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_base64encoded str
    (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 PrivateApplicationLogoArgs]
    The model for uploaded binary data, like logos and images.
    long_description str
    (Updatable) A long description of the private application.
    package_details PrivateApplicationPackageDetailsArgs
    A base object for creating a private application package.
    package_type str
    The package's type.
    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.
    definedTags Map<Any>
    (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.
    freeformTags Map<Any>
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    logoFileBase64encoded String
    (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
    The package's type.
    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

    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.
    ZipFileBase64encoded string
    PackageType string
    The package's type.
    Version string
    The package version.
    ZipFileBase64encoded string
    packageType String
    The package's type.
    version String
    The package version.
    zipFileBase64encoded String
    packageType string
    The package's type.
    version string
    The package version.
    zipFileBase64encoded string
    package_type str
    The package's type.
    version str
    The package version.
    zip_file_base64encoded str
    packageType String
    The package's type.
    version String
    The package version.
    zipFileBase64encoded String

    Import

    PrivateApplications can be imported using the id, e.g.

    $ pulumi import oci:ServiceCatalog/privateApplication:PrivateApplication test_private_application "id"
    

    Package Details

    Repository
    oci pulumi/pulumi-oci
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the oci Terraform Provider.
    oci logo
    Oracle Cloud Infrastructure v1.27.0 published on Friday, Mar 15, 2024 by Pulumi