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=oci.service_catalog.PrivateApplicationPackageDetailsArgs(
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/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.Map{
"foo-namespace.bar-key": pulumi.Any("value"),
},
FreeformTags: pulumi.Map{
"bar-key": pulumi.Any("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[_servicecatalog.PrivateApplicationPackageDetailsArgs] = None,
short_description: Optional[str] = None,
defined_tags: Optional[Mapping[str, Any]] = None,
freeform_tags: Optional[Mapping[str, Any]] = 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", "any" },
},
FreeformTags =
{
{ "string", "any" },
},
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.Map{
"string": pulumi.Any("any"),
},
FreeformTags: pulumi.Map{
"string": pulumi.Any("any"),
},
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", "any"))
.freeformTags(Map.of("string", "any"))
.logoFileBase64encoded("string")
.longDescription("string")
.build());
private_application_resource = oci.service_catalog.PrivateApplication("privateApplicationResource",
compartment_id="string",
display_name="string",
package_details=oci.service_catalog.PrivateApplicationPackageDetailsArgs(
package_type="string",
version="string",
zip_file_base64encoded="string",
),
short_description="string",
defined_tags={
"string": "any",
},
freeform_tags={
"string": "any",
},
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: "any",
},
freeformTags: {
string: "any",
},
logoFileBase64encoded: "string",
longDescription: "string",
});
type: oci:ServiceCatalog:PrivateApplication
properties:
compartmentId: string
definedTags:
string: any
displayName: string
freeformTags:
string: any
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
The PrivateApplication resource accepts the following input properties:
- Compartment
Id string - (Updatable) The OCID of the compartment where you want to create the private application.
- Display
Name string - (Updatable) The name of the private application.
- Package
Details PrivateApplication Package Details - A base object for creating a private application package.
- Short
Description 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, object>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- 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"}
- Logo
File 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.
- Long
Description string - (Updatable) A long description of the private application.
- Compartment
Id string - (Updatable) The OCID of the compartment where you want to create the private application.
- Display
Name string - (Updatable) The name of the private application.
- Package
Details PrivateApplication Package Details Args - A base object for creating a private application package.
- Short
Description 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]interface{}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- 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"}
- Logo
File 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.
- Long
Description string - (Updatable) A long description of the private application.
- compartment
Id String - (Updatable) The OCID of the compartment where you want to create the private application.
- display
Name String - (Updatable) The name of the private application.
- package
Details PrivateApplication Package Details - A base object for creating a private application package.
- short
Description 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,Object>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- 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"}
- logo
File 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.
- long
Description String - (Updatable) A long description of the private application.
- compartment
Id string - (Updatable) The OCID of the compartment where you want to create the private application.
- display
Name string - (Updatable) The name of the private application.
- package
Details PrivateApplication Package Details - A base object for creating a private application package.
- short
Description 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]: any}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- {[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"}
- logo
File 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.
- long
Description 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 servicecatalog.Private Application 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, Any]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- 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_ 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.
- compartment
Id String - (Updatable) The OCID of the compartment where you want to create the private application.
- display
Name String - (Updatable) The name of the private application.
- package
Details Property Map - A base object for creating a private application package.
- short
Description 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<Any>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- 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"}
- logo
File 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.
- long
Description 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<Private
Application Logo> - The model for uploaded binary data, like logos and images.
- Package
Type string - Type of packages within this private application.
- State string
- The lifecycle state of the private application.
- Time
Created string - The date and time the private application was created, expressed in RFC 3339 timestamp format. Example:
2021-05-26T21:10:29.600Z
- Time
Updated 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
[]Private
Application Logo - The model for uploaded binary data, like logos and images.
- Package
Type string - Type of packages within this private application.
- State string
- The lifecycle state of the private application.
- Time
Created string - The date and time the private application was created, expressed in RFC 3339 timestamp format. Example:
2021-05-26T21:10:29.600Z
- Time
Updated 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<Private
Application Logo> - The model for uploaded binary data, like logos and images.
- package
Type String - Type of packages within this private application.
- state String
- The lifecycle state of the private application.
- time
Created String - The date and time the private application was created, expressed in RFC 3339 timestamp format. Example:
2021-05-26T21:10:29.600Z
- time
Updated 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
Private
Application Logo[] - The model for uploaded binary data, like logos and images.
- package
Type string - Type of packages within this private application.
- state string
- The lifecycle state of the private application.
- time
Created string - The date and time the private application was created, expressed in RFC 3339 timestamp format. Example:
2021-05-26T21:10:29.600Z
- time
Updated 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.
Private Application 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.
- package
Type String - Type of packages within this private application.
- state String
- The lifecycle state of the private application.
- time
Created String - The date and time the private application was created, expressed in RFC 3339 timestamp format. Example:
2021-05-26T21:10:29.600Z
- time
Updated 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.
- Compartment
Id string - (Updatable) The OCID of the compartment where you want to create the private application.
- Dictionary<string, object>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Display
Name string - (Updatable) The name of the private application.
- 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"}
- Logo
File 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<Private
Application Logo> - The model for uploaded binary data, like logos and images.
- Long
Description string - (Updatable) A long description of the private application.
- Package
Details PrivateApplication Package Details - A base object for creating a private application package.
- Package
Type string - Type of packages within this private application.
- Short
Description 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.
- Time
Created string - The date and time the private application was created, expressed in RFC 3339 timestamp format. Example:
2021-05-26T21:10:29.600Z
- Time
Updated 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 string - (Updatable) The OCID of the compartment where you want to create the private application.
- map[string]interface{}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Display
Name string - (Updatable) The name of the private application.
- 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"}
- Logo
File 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
[]Private
Application Logo Args - The model for uploaded binary data, like logos and images.
- Long
Description string - (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 string - Type of packages within this private application.
- Short
Description 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.
- Time
Created string - The date and time the private application was created, expressed in RFC 3339 timestamp format. Example:
2021-05-26T21:10:29.600Z
- Time
Updated 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 String - (Updatable) The OCID of the compartment where you want to create the private application.
- Map<String,Object>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- display
Name String - (Updatable) The name of the private application.
- 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"}
- logo
File 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<Private
Application Logo> - The model for uploaded binary data, like logos and images.
- long
Description String - (Updatable) A long description of the private application.
- package
Details PrivateApplication Package Details - A base object for creating a private application package.
- package
Type String - Type of packages within this private application.
- short
Description 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.
- time
Created String - The date and time the private application was created, expressed in RFC 3339 timestamp format. Example:
2021-05-26T21:10:29.600Z
- time
Updated 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 string - (Updatable) The OCID of the compartment where you want to create the private application.
- {[key: string]: any}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- display
Name string - (Updatable) The name of the private application.
- {[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"}
- logo
File 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
Private
Application Logo[] - The model for uploaded binary data, like logos and images.
- long
Description string - (Updatable) A long description of the private application.
- package
Details PrivateApplication Package Details - A base object for creating a private application package.
- package
Type string - Type of packages within this private application.
- short
Description 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.
- time
Created string - The date and time the private application was created, expressed in RFC 3339 timestamp format. Example:
2021-05-26T21:10:29.600Z
- time
Updated 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, 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.
- 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_ 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[servicecatalog.
Private Application 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 servicecatalog.Private Application 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
- compartment
Id String - (Updatable) The OCID of the compartment where you want to create the private application.
- Map<Any>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- display
Name String - (Updatable) The name of the private application.
- 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"}
- logo
File 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.
- long
Description String - (Updatable) A long description of the private application.
- package
Details Property Map - A base object for creating a private application package.
- package
Type String - Type of packages within this private application.
- short
Description 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.
- time
Created String - The date and time the private application was created, expressed in RFC 3339 timestamp format. Example:
2021-05-26T21:10:29.600Z
- time
Updated 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
- Content
Url string - The content URL of the uploaded data.
- Display
Name string - (Updatable) The name of the private application.
- Mime
Type string - The MIME type of the uploaded data.
- Content
Url string - The content URL of the uploaded data.
- Display
Name string - (Updatable) The name of the private application.
- Mime
Type string - The MIME type of the uploaded data.
- content
Url String - The content URL of the uploaded data.
- display
Name String - (Updatable) The name of the private application.
- mime
Type String - The MIME type of the uploaded data.
- content
Url string - The content URL of the uploaded data.
- display
Name string - (Updatable) The name of the private application.
- mime
Type 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.
- content
Url String - The content URL of the uploaded data.
- display
Name String - (Updatable) The name of the private application.
- mime
Type String - The MIME type of the uploaded data.
PrivateApplicationPackageDetails, PrivateApplicationPackageDetailsArgs
- Package
Type string - The package's type.
- Version string
- The package version.
- Zip
File stringBase64encoded
- Package
Type string - The package's type.
- Version string
- The package version.
- Zip
File stringBase64encoded
- package
Type String - The package's type.
- version String
- The package version.
- zip
File StringBase64encoded
- package
Type string - The package's type.
- version string
- The package version.
- zip
File stringBase64encoded
- package_
type str - The package's type.
- version str
- The package version.
- zip_
file_ strbase64encoded
- package
Type String - The package's type.
- version String
- The package version.
- zip
File 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
oci
Terraform Provider.