import * as pulumi from "@pulumi/pulumi"; /** * This resource provides the Oce Instance resource in Oracle Cloud Infrastructure Content and Experience service. * Api doc link for the resource: https://docs.oracle.com/iaas/api/#/en/oce/latest/OceInstance * * Example terraform configs related to the resource : https://github.com/oracle/terraform-provider-oci/tree/master/examples/ * * Creates a new OceInstance. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testOceInstance = new oci.oce.Instance("test_oce_instance", { * adminEmail: oceInstanceAdminEmail, * compartmentId: compartmentId, * idcsAccessToken: oceInstanceIdcsAccessToken, * name: oceInstanceName, * objectStorageNamespace: oceInstanceObjectStorageNamespace, * tenancyId: testTenancy.id, * tenancyName: testTenancy.name, * addOnFeatures: oceInstanceAddOnFeatures, * definedTags: { * "foo-namespace.bar-key": "value", * }, * description: oceInstanceDescription, * drRegion: oceInstanceDrRegion, * freeformTags: { * "bar-key": "value", * }, * instanceAccessType: oceInstanceInstanceAccessType, * instanceLicenseType: oceInstanceInstanceLicenseType, * instanceUsageType: oceInstanceInstanceUsageType, * upgradeSchedule: oceInstanceUpgradeSchedule, * wafPrimaryDomain: oceInstanceWafPrimaryDomain, * }); * ``` * * ## Import * * OceInstances can be imported using the `id`, e.g. * * ```sh * $ pulumi import oci:Oce/instance:Instance test_oce_instance "id" * ``` */ export declare class Instance extends pulumi.CustomResource { /** * Get an existing Instance resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: InstanceState, opts?: pulumi.CustomResourceOptions): Instance; /** * Returns true if the given object is an instance of Instance. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is Instance; /** * (Updatable) a list of add-on features for the ocm instance */ readonly addOnFeatures: pulumi.Output; /** * Admin Email for Notification */ readonly adminEmail: pulumi.Output; /** * (Updatable) Compartment Identifier */ readonly compartmentId: pulumi.Output; /** * (Updatable) Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example: `{"foo-namespace.bar-key": "value"}` */ readonly definedTags: pulumi.Output<{ [key: string]: string; }>; /** * (Updatable) OceInstance description */ readonly description: pulumi.Output; /** * (Updatable) disaster recovery paired ragion name */ readonly drRegion: pulumi.Output; /** * (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}` */ readonly freeformTags: pulumi.Output<{ [key: string]: string; }>; /** * Unique GUID identifier that is immutable on creation */ readonly guid: pulumi.Output; /** * Identity Cloud Service access token identifying a stripe and service administrator user */ readonly idcsAccessToken: pulumi.Output; /** * IDCS Tenancy Identifier */ readonly idcsTenancy: pulumi.Output; /** * Flag indicating whether the instance access is private or public */ readonly instanceAccessType: pulumi.Output; /** * (Updatable) Flag indicating whether the instance license is new cloud or bring your own license */ readonly instanceLicenseType: pulumi.Output; /** * (Updatable) Instance type based on its usage */ readonly instanceUsageType: pulumi.Output; /** * Details of the current state of the instance lifecycle */ readonly lifecycleDetails: pulumi.Output; /** * OceInstance Name */ readonly name: pulumi.Output; /** * Object Storage Namespace of Tenancy */ readonly objectStorageNamespace: pulumi.Output; /** * SERVICE data. Example: `{"service": {"IDCS": "value"}}` */ readonly service: pulumi.Output<{ [key: string]: string; }>; /** * The current state of the instance lifecycle. */ readonly state: pulumi.Output; /** * An message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state. */ readonly stateMessage: pulumi.Output; /** * Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}` */ readonly systemTags: pulumi.Output<{ [key: string]: string; }>; /** * Tenancy Identifier */ readonly tenancyId: pulumi.Output; /** * Tenancy Name */ readonly tenancyName: pulumi.Output; /** * The time the the OceInstance was created. An RFC3339 formatted datetime string */ readonly timeCreated: pulumi.Output; /** * The time the OceInstance was updated. An RFC3339 formatted datetime string */ readonly timeUpdated: pulumi.Output; /** * Upgrade schedule type representing service to be upgraded immediately whenever latest version is released or delay upgrade of the service to previous released version */ readonly upgradeSchedule: pulumi.Output; /** * (Updatable) Web Application Firewall(WAF) primary domain * * ** 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 */ readonly wafPrimaryDomain: pulumi.Output; /** * Create a Instance resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: InstanceArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering Instance resources. */ export interface InstanceState { /** * (Updatable) a list of add-on features for the ocm instance */ addOnFeatures?: pulumi.Input[] | undefined>; /** * Admin Email for Notification */ adminEmail?: pulumi.Input; /** * (Updatable) Compartment Identifier */ compartmentId?: pulumi.Input; /** * (Updatable) Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example: `{"foo-namespace.bar-key": "value"}` */ definedTags?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * (Updatable) OceInstance description */ description?: pulumi.Input; /** * (Updatable) disaster recovery paired ragion name */ drRegion?: pulumi.Input; /** * (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}` */ freeformTags?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * Unique GUID identifier that is immutable on creation */ guid?: pulumi.Input; /** * Identity Cloud Service access token identifying a stripe and service administrator user */ idcsAccessToken?: pulumi.Input; /** * IDCS Tenancy Identifier */ idcsTenancy?: pulumi.Input; /** * Flag indicating whether the instance access is private or public */ instanceAccessType?: pulumi.Input; /** * (Updatable) Flag indicating whether the instance license is new cloud or bring your own license */ instanceLicenseType?: pulumi.Input; /** * (Updatable) Instance type based on its usage */ instanceUsageType?: pulumi.Input; /** * Details of the current state of the instance lifecycle */ lifecycleDetails?: pulumi.Input; /** * OceInstance Name */ name?: pulumi.Input; /** * Object Storage Namespace of Tenancy */ objectStorageNamespace?: pulumi.Input; /** * SERVICE data. Example: `{"service": {"IDCS": "value"}}` */ service?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * The current state of the instance lifecycle. */ state?: pulumi.Input; /** * An message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state. */ stateMessage?: pulumi.Input; /** * Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}` */ systemTags?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * Tenancy Identifier */ tenancyId?: pulumi.Input; /** * Tenancy Name */ tenancyName?: pulumi.Input; /** * The time the the OceInstance was created. An RFC3339 formatted datetime string */ timeCreated?: pulumi.Input; /** * The time the OceInstance was updated. An RFC3339 formatted datetime string */ timeUpdated?: pulumi.Input; /** * Upgrade schedule type representing service to be upgraded immediately whenever latest version is released or delay upgrade of the service to previous released version */ upgradeSchedule?: pulumi.Input; /** * (Updatable) Web Application Firewall(WAF) primary domain * * ** 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 */ wafPrimaryDomain?: pulumi.Input; } /** * The set of arguments for constructing a Instance resource. */ export interface InstanceArgs { /** * (Updatable) a list of add-on features for the ocm instance */ addOnFeatures?: pulumi.Input[] | undefined>; /** * Admin Email for Notification */ adminEmail: pulumi.Input; /** * (Updatable) Compartment Identifier */ compartmentId: pulumi.Input; /** * (Updatable) Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example: `{"foo-namespace.bar-key": "value"}` */ definedTags?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * (Updatable) OceInstance description */ description?: pulumi.Input; /** * (Updatable) disaster recovery paired ragion name */ drRegion?: pulumi.Input; /** * (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}` */ freeformTags?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * Identity Cloud Service access token identifying a stripe and service administrator user */ idcsAccessToken: pulumi.Input; /** * Flag indicating whether the instance access is private or public */ instanceAccessType?: pulumi.Input; /** * (Updatable) Flag indicating whether the instance license is new cloud or bring your own license */ instanceLicenseType?: pulumi.Input; /** * (Updatable) Instance type based on its usage */ instanceUsageType?: pulumi.Input; /** * OceInstance Name */ name?: pulumi.Input; /** * Object Storage Namespace of Tenancy */ objectStorageNamespace: pulumi.Input; /** * Tenancy Identifier */ tenancyId: pulumi.Input; /** * Tenancy Name */ tenancyName: pulumi.Input; /** * Upgrade schedule type representing service to be upgraded immediately whenever latest version is released or delay upgrade of the service to previous released version */ upgradeSchedule?: pulumi.Input; /** * (Updatable) Web Application Firewall(WAF) primary domain * * ** 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 */ wafPrimaryDomain?: pulumi.Input; } //# sourceMappingURL=instance.d.ts.map