1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. ServiceCatalog
  5. PrivateApplication
Oracle Cloud Infrastructure v2.31.0 published on Thursday, Apr 17, 2025 by Pulumi

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,
});
Copy
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)
Copy
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
	})
}
Copy
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,
    });

});
Copy
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());

    }
}
Copy
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}
Copy

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[_servicecatalog.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 This property is required. string
The unique name of the resource.
args This property is required. PrivateApplicationArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. 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 This property is required. string
The unique name of the resource.
args This property is required. PrivateApplicationArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. PrivateApplicationArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. 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",
});
Copy
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"),
})
Copy
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());
Copy
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")
Copy
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",
});
Copy
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
Copy

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 This property is required. string
(Updatable) The OCID of the compartment where you want to create the private application.
DisplayName This property is required. string
(Updatable) The name of the private application.
PackageDetails
This property is required.
Changes to this property will trigger replacement.
PrivateApplicationPackageDetails
A base object for creating a private application package.
ShortDescription This property is required. 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, string>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
FreeformTags 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"}
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 This property is required. string
(Updatable) The OCID of the compartment where you want to create the private application.
DisplayName This property is required. string
(Updatable) The name of the private application.
PackageDetails
This property is required.
Changes to this property will trigger replacement.
PrivateApplicationPackageDetailsArgs
A base object for creating a private application package.
ShortDescription This property is required. 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]string
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
FreeformTags 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"}
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 This property is required. String
(Updatable) The OCID of the compartment where you want to create the private application.
displayName This property is required. String
(Updatable) The name of the private application.
packageDetails
This property is required.
Changes to this property will trigger replacement.
PrivateApplicationPackageDetails
A base object for creating a private application package.
shortDescription This property is required. 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,String>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
freeformTags 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"}
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 This property is required. string
(Updatable) The OCID of the compartment where you want to create the private application.
displayName This property is required. string
(Updatable) The name of the private application.
packageDetails
This property is required.
Changes to this property will trigger replacement.
PrivateApplicationPackageDetails
A base object for creating a private application package.
shortDescription This property is required. 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]: string}
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
freeformTags {[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"}
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 This property is required. str
(Updatable) The OCID of the compartment where you want to create the private application.
display_name This property is required. str
(Updatable) The name of the private application.
package_details
This property is required.
Changes to this property will trigger replacement.
servicecatalog.PrivateApplicationPackageDetailsArgs
A base object for creating a private application package.
short_description This property is required. 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, str]
(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, 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_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 This property is required. String
(Updatable) The OCID of the compartment where you want to create the private application.
displayName This property is required. String
(Updatable) The name of the private application.
packageDetails
This property is required.
Changes to this property will trigger replacement.
Property Map
A base object for creating a private application package.
shortDescription This property is required. 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>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
freeformTags 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"}
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
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 []PrivateApplicationLogo
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<PrivateApplicationLogo>
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 PrivateApplicationLogo[]
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[servicecatalog.PrivateApplicationLogo]
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[_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)
resources:  _:    type: oci:ServiceCatalog:PrivateApplication    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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, 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.
FreeformTags 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"}
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 Changes to this property will trigger replacement. PrivateApplicationPackageDetails
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.
DefinedTags 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.
FreeformTags 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"}
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 Changes to this property will trigger replacement. PrivateApplicationPackageDetailsArgs
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.
definedTags 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.
freeformTags 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"}
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 Changes to this property will trigger replacement. PrivateApplicationPackageDetails
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.
definedTags {[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.
freeformTags {[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"}
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 Changes to this property will trigger replacement. PrivateApplicationPackageDetails
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.
defined_tags 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.
freeform_tags 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_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 Sequence[servicecatalog.PrivateApplicationLogoArgs]
The model for uploaded binary data, like logos and images.
long_description str
(Updatable) A long description of the private application.
package_details Changes to this property will trigger replacement. servicecatalog.PrivateApplicationPackageDetailsArgs
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.
definedTags 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.
freeformTags 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"}
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 Changes to this property will trigger replacement. 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

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
This property is required.
Changes to this property will trigger replacement.
string
The package's type.
Version
This property is required.
Changes to this property will trigger replacement.
string
The package version.
ZipFileBase64encoded Changes to this property will trigger replacement. string
PackageType
This property is required.
Changes to this property will trigger replacement.
string
The package's type.
Version
This property is required.
Changes to this property will trigger replacement.
string
The package version.
ZipFileBase64encoded Changes to this property will trigger replacement. string
packageType
This property is required.
Changes to this property will trigger replacement.
String
The package's type.
version
This property is required.
Changes to this property will trigger replacement.
String
The package version.
zipFileBase64encoded Changes to this property will trigger replacement. String
packageType
This property is required.
Changes to this property will trigger replacement.
string
The package's type.
version
This property is required.
Changes to this property will trigger replacement.
string
The package version.
zipFileBase64encoded Changes to this property will trigger replacement. string
package_type
This property is required.
Changes to this property will trigger replacement.
str
The package's type.
version
This property is required.
Changes to this property will trigger replacement.
str
The package version.
zip_file_base64encoded Changes to this property will trigger replacement. str
packageType
This property is required.
Changes to this property will trigger replacement.
String
The package's type.
version
This property is required.
Changes to this property will trigger replacement.
String
The package version.
zipFileBase64encoded Changes to this property will trigger replacement. String

Import

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

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

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 oci Terraform Provider.