import * as pulumi from "@pulumi/pulumi"; /** * This resource provides the Vbs Instance resource in Oracle Cloud Infrastructure Vbs Inst service. * Api doc link for the resource: https://docs.oracle.com/iaas/api/#/en/ * * Example terraform configs related to the resource : https://github.com/oracle/terraform-provider-oci/tree/master/examples/vbs_inst * * Creates a new VbsInstance. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testVbsInstance = new oci.vbs.InstVbsInstance("test_vbs_instance", { * compartmentId: compartmentId, * displayName: vbsInstanceDisplayName, * name: vbsInstanceName, * definedTags: { * "foo-namespace.bar-key": "value", * }, * freeformTags: { * "bar-key": "value", * }, * idcsAccessToken: vbsInstanceIdcsAccessToken, * isResourceUsageAgreementGranted: vbsInstanceIsResourceUsageAgreementGranted === "true", * resourceCompartmentId: resourceCompartmentId, * }); * ``` * * ## Import * * VbsInstances can be imported using the `id`, e.g. * * ```sh * $ pulumi import oci:Vbs/instVbsInstance:InstVbsInstance test_vbs_instance "id" * ``` */ export declare class InstVbsInstance extends pulumi.CustomResource { /** * Get an existing InstVbsInstance 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?: InstVbsInstanceState, opts?: pulumi.CustomResourceOptions): InstVbsInstance; /** * Returns true if the given object is an instance of InstVbsInstance. 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 InstVbsInstance; /** * (Updatable) Compartment Identifier. It can only be the root compartment */ readonly compartmentId: pulumi.Output; /** * (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}` */ readonly definedTags: pulumi.Output<{ [key: string]: string; }>; /** * (Updatable) Display Name */ readonly displayName: 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; }>; /** * IDCS personal acceess token identifying IDCS user and stripe for the VBS service */ readonly idcsAccessToken: pulumi.Output; /** * (Updatable) Whether VBS is authorized to create and use resources in the customer tenancy */ readonly isResourceUsageAgreementGranted: pulumi.Output; /** * A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state. */ readonly lifecyleDetails: pulumi.Output; /** * Service Instance Name */ readonly name: pulumi.Output; /** * (Updatable) Compartment where VBS may create additional resources for the service instance * * ** 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 resourceCompartmentId: pulumi.Output; /** * The current state of the VbsInstance. */ readonly state: 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; }>; /** * The time the the VbsInstance was created. An RFC3339 formatted datetime string */ readonly timeCreated: pulumi.Output; /** * The time the VbsInstance was updated. An RFC3339 formatted datetime string */ readonly timeUpdated: pulumi.Output; /** * Public web URL for accessing the VBS service instance */ readonly vbsAccessUrl: pulumi.Output; /** * Create a InstVbsInstance 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: InstVbsInstanceArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering InstVbsInstance resources. */ export interface InstVbsInstanceState { /** * (Updatable) Compartment Identifier. It can only be the root compartment */ compartmentId?: pulumi.Input; /** * (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}` */ definedTags?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * (Updatable) Display Name */ displayName?: 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>; /** * IDCS personal acceess token identifying IDCS user and stripe for the VBS service */ idcsAccessToken?: pulumi.Input; /** * (Updatable) Whether VBS is authorized to create and use resources in the customer tenancy */ isResourceUsageAgreementGranted?: pulumi.Input; /** * A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state. */ lifecyleDetails?: pulumi.Input; /** * Service Instance Name */ name?: pulumi.Input; /** * (Updatable) Compartment where VBS may create additional resources for the service instance * * ** 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 */ resourceCompartmentId?: pulumi.Input; /** * The current state of the VbsInstance. */ state?: 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>; /** * The time the the VbsInstance was created. An RFC3339 formatted datetime string */ timeCreated?: pulumi.Input; /** * The time the VbsInstance was updated. An RFC3339 formatted datetime string */ timeUpdated?: pulumi.Input; /** * Public web URL for accessing the VBS service instance */ vbsAccessUrl?: pulumi.Input; } /** * The set of arguments for constructing a InstVbsInstance resource. */ export interface InstVbsInstanceArgs { /** * (Updatable) Compartment Identifier. It can only be the root compartment */ compartmentId: pulumi.Input; /** * (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}` */ definedTags?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * (Updatable) Display Name */ displayName: 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>; /** * IDCS personal acceess token identifying IDCS user and stripe for the VBS service */ idcsAccessToken?: pulumi.Input; /** * (Updatable) Whether VBS is authorized to create and use resources in the customer tenancy */ isResourceUsageAgreementGranted?: pulumi.Input; /** * Service Instance Name */ name?: pulumi.Input; /** * (Updatable) Compartment where VBS may create additional resources for the service instance * * ** 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 */ resourceCompartmentId?: pulumi.Input; } //# sourceMappingURL=instVbsInstance.d.ts.map