1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. Vbs
  5. InstVbsInstance
Oracle Cloud Infrastructure v1.32.0 published on Thursday, Apr 18, 2024 by Pulumi

oci.Vbs.InstVbsInstance

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v1.32.0 published on Thursday, Apr 18, 2024 by Pulumi

    This resource provides the Vbs Instance resource in Oracle Cloud Infrastructure Vbs Inst service.

    Creates a new VbsInstance.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testVbsInstance = new oci.vbs.InstVbsInstance("testVbsInstance", {
        compartmentId: _var.compartment_id,
        displayName: _var.vbs_instance_display_name,
        definedTags: {
            "foo-namespace.bar-key": "value",
        },
        freeformTags: {
            "bar-key": "value",
        },
        idcsAccessToken: _var.vbs_instance_idcs_access_token,
        isResourceUsageAgreementGranted: _var.vbs_instance_is_resource_usage_agreement_granted,
        resourceCompartmentId: _var.resource_compartment_id,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_vbs_instance = oci.vbs.InstVbsInstance("testVbsInstance",
        compartment_id=var["compartment_id"],
        display_name=var["vbs_instance_display_name"],
        defined_tags={
            "foo-namespace.bar-key": "value",
        },
        freeform_tags={
            "bar-key": "value",
        },
        idcs_access_token=var["vbs_instance_idcs_access_token"],
        is_resource_usage_agreement_granted=var["vbs_instance_is_resource_usage_agreement_granted"],
        resource_compartment_id=var["resource_compartment_id"])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/go/oci/Vbs"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := Vbs.NewInstVbsInstance(ctx, "testVbsInstance", &Vbs.InstVbsInstanceArgs{
    			CompartmentId: pulumi.Any(_var.Compartment_id),
    			DisplayName:   pulumi.Any(_var.Vbs_instance_display_name),
    			DefinedTags: pulumi.Map{
    				"foo-namespace.bar-key": pulumi.Any("value"),
    			},
    			FreeformTags: pulumi.Map{
    				"bar-key": pulumi.Any("value"),
    			},
    			IdcsAccessToken:                 pulumi.Any(_var.Vbs_instance_idcs_access_token),
    			IsResourceUsageAgreementGranted: pulumi.Any(_var.Vbs_instance_is_resource_usage_agreement_granted),
    			ResourceCompartmentId:           pulumi.Any(_var.Resource_compartment_id),
    		})
    		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 testVbsInstance = new Oci.Vbs.InstVbsInstance("testVbsInstance", new()
        {
            CompartmentId = @var.Compartment_id,
            DisplayName = @var.Vbs_instance_display_name,
            DefinedTags = 
            {
                { "foo-namespace.bar-key", "value" },
            },
            FreeformTags = 
            {
                { "bar-key", "value" },
            },
            IdcsAccessToken = @var.Vbs_instance_idcs_access_token,
            IsResourceUsageAgreementGranted = @var.Vbs_instance_is_resource_usage_agreement_granted,
            ResourceCompartmentId = @var.Resource_compartment_id,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.Vbs.InstVbsInstance;
    import com.pulumi.oci.Vbs.InstVbsInstanceArgs;
    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 testVbsInstance = new InstVbsInstance("testVbsInstance", InstVbsInstanceArgs.builder()        
                .compartmentId(var_.compartment_id())
                .displayName(var_.vbs_instance_display_name())
                .definedTags(Map.of("foo-namespace.bar-key", "value"))
                .freeformTags(Map.of("bar-key", "value"))
                .idcsAccessToken(var_.vbs_instance_idcs_access_token())
                .isResourceUsageAgreementGranted(var_.vbs_instance_is_resource_usage_agreement_granted())
                .resourceCompartmentId(var_.resource_compartment_id())
                .build());
    
        }
    }
    
    resources:
      testVbsInstance:
        type: oci:Vbs:InstVbsInstance
        properties:
          #Required
          compartmentId: ${var.compartment_id}
          displayName: ${var.vbs_instance_display_name}
          #Optional
          definedTags:
            foo-namespace.bar-key: value
          freeformTags:
            bar-key: value
          idcsAccessToken: ${var.vbs_instance_idcs_access_token}
          isResourceUsageAgreementGranted: ${var.vbs_instance_is_resource_usage_agreement_granted}
          resourceCompartmentId: ${var.resource_compartment_id}
    

    Create InstVbsInstance Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new InstVbsInstance(name: string, args: InstVbsInstanceArgs, opts?: CustomResourceOptions);
    @overload
    def InstVbsInstance(resource_name: str,
                        args: InstVbsInstanceArgs,
                        opts: Optional[ResourceOptions] = None)
    
    @overload
    def InstVbsInstance(resource_name: str,
                        opts: Optional[ResourceOptions] = None,
                        compartment_id: Optional[str] = None,
                        display_name: Optional[str] = None,
                        defined_tags: Optional[Mapping[str, Any]] = None,
                        freeform_tags: Optional[Mapping[str, Any]] = None,
                        idcs_access_token: Optional[str] = None,
                        is_resource_usage_agreement_granted: Optional[bool] = None,
                        name: Optional[str] = None,
                        resource_compartment_id: Optional[str] = None)
    func NewInstVbsInstance(ctx *Context, name string, args InstVbsInstanceArgs, opts ...ResourceOption) (*InstVbsInstance, error)
    public InstVbsInstance(string name, InstVbsInstanceArgs args, CustomResourceOptions? opts = null)
    public InstVbsInstance(String name, InstVbsInstanceArgs args)
    public InstVbsInstance(String name, InstVbsInstanceArgs args, CustomResourceOptions options)
    
    type: oci:Vbs:InstVbsInstance
    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 InstVbsInstanceArgs
    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 InstVbsInstanceArgs
    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 InstVbsInstanceArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args InstVbsInstanceArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args InstVbsInstanceArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var instVbsInstanceResource = new Oci.Vbs.InstVbsInstance("instVbsInstanceResource", new()
    {
        CompartmentId = "string",
        DisplayName = "string",
        DefinedTags = 
        {
            { "string", "any" },
        },
        FreeformTags = 
        {
            { "string", "any" },
        },
        IdcsAccessToken = "string",
        IsResourceUsageAgreementGranted = false,
        Name = "string",
        ResourceCompartmentId = "string",
    });
    
    example, err := Vbs.NewInstVbsInstance(ctx, "instVbsInstanceResource", &Vbs.InstVbsInstanceArgs{
    	CompartmentId: pulumi.String("string"),
    	DisplayName:   pulumi.String("string"),
    	DefinedTags: pulumi.Map{
    		"string": pulumi.Any("any"),
    	},
    	FreeformTags: pulumi.Map{
    		"string": pulumi.Any("any"),
    	},
    	IdcsAccessToken:                 pulumi.String("string"),
    	IsResourceUsageAgreementGranted: pulumi.Bool(false),
    	Name:                            pulumi.String("string"),
    	ResourceCompartmentId:           pulumi.String("string"),
    })
    
    var instVbsInstanceResource = new InstVbsInstance("instVbsInstanceResource", InstVbsInstanceArgs.builder()        
        .compartmentId("string")
        .displayName("string")
        .definedTags(Map.of("string", "any"))
        .freeformTags(Map.of("string", "any"))
        .idcsAccessToken("string")
        .isResourceUsageAgreementGranted(false)
        .name("string")
        .resourceCompartmentId("string")
        .build());
    
    inst_vbs_instance_resource = oci.vbs.InstVbsInstance("instVbsInstanceResource",
        compartment_id="string",
        display_name="string",
        defined_tags={
            "string": "any",
        },
        freeform_tags={
            "string": "any",
        },
        idcs_access_token="string",
        is_resource_usage_agreement_granted=False,
        name="string",
        resource_compartment_id="string")
    
    const instVbsInstanceResource = new oci.vbs.InstVbsInstance("instVbsInstanceResource", {
        compartmentId: "string",
        displayName: "string",
        definedTags: {
            string: "any",
        },
        freeformTags: {
            string: "any",
        },
        idcsAccessToken: "string",
        isResourceUsageAgreementGranted: false,
        name: "string",
        resourceCompartmentId: "string",
    });
    
    type: oci:Vbs:InstVbsInstance
    properties:
        compartmentId: string
        definedTags:
            string: any
        displayName: string
        freeformTags:
            string: any
        idcsAccessToken: string
        isResourceUsageAgreementGranted: false
        name: string
        resourceCompartmentId: string
    

    InstVbsInstance 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 InstVbsInstance resource accepts the following input properties:

    CompartmentId string
    (Updatable) Compartment Identifier. It can only be the root compartment
    DisplayName string
    (Updatable) Display Name
    DefinedTags Dictionary<string, object>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    FreeformTags Dictionary<string, object>
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    IdcsAccessToken string
    IDCS personal acceess token identifying IDCS user and stripe for the VBS service
    IsResourceUsageAgreementGranted bool
    (Updatable) Whether VBS is authorized to create and use resources in the customer tenancy
    Name string
    Service Instance Name
    ResourceCompartmentId string

    (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

    CompartmentId string
    (Updatable) Compartment Identifier. It can only be the root compartment
    DisplayName string
    (Updatable) Display Name
    DefinedTags map[string]interface{}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    FreeformTags map[string]interface{}
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    IdcsAccessToken string
    IDCS personal acceess token identifying IDCS user and stripe for the VBS service
    IsResourceUsageAgreementGranted bool
    (Updatable) Whether VBS is authorized to create and use resources in the customer tenancy
    Name string
    Service Instance Name
    ResourceCompartmentId string

    (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

    compartmentId String
    (Updatable) Compartment Identifier. It can only be the root compartment
    displayName String
    (Updatable) Display Name
    definedTags Map<String,Object>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    freeformTags Map<String,Object>
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    idcsAccessToken String
    IDCS personal acceess token identifying IDCS user and stripe for the VBS service
    isResourceUsageAgreementGranted Boolean
    (Updatable) Whether VBS is authorized to create and use resources in the customer tenancy
    name String
    Service Instance Name
    resourceCompartmentId String

    (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

    compartmentId string
    (Updatable) Compartment Identifier. It can only be the root compartment
    displayName string
    (Updatable) Display Name
    definedTags {[key: string]: any}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    freeformTags {[key: string]: any}
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    idcsAccessToken string
    IDCS personal acceess token identifying IDCS user and stripe for the VBS service
    isResourceUsageAgreementGranted boolean
    (Updatable) Whether VBS is authorized to create and use resources in the customer tenancy
    name string
    Service Instance Name
    resourceCompartmentId string

    (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

    compartment_id str
    (Updatable) Compartment Identifier. It can only be the root compartment
    display_name str
    (Updatable) Display Name
    defined_tags Mapping[str, Any]
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    freeform_tags Mapping[str, Any]
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    idcs_access_token str
    IDCS personal acceess token identifying IDCS user and stripe for the VBS service
    is_resource_usage_agreement_granted bool
    (Updatable) Whether VBS is authorized to create and use resources in the customer tenancy
    name str
    Service Instance Name
    resource_compartment_id str

    (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

    compartmentId String
    (Updatable) Compartment Identifier. It can only be the root compartment
    displayName String
    (Updatable) Display Name
    definedTags Map<Any>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    freeformTags Map<Any>
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    idcsAccessToken String
    IDCS personal acceess token identifying IDCS user and stripe for the VBS service
    isResourceUsageAgreementGranted Boolean
    (Updatable) Whether VBS is authorized to create and use resources in the customer tenancy
    name String
    Service Instance Name
    resourceCompartmentId String

    (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

    Outputs

    All input properties are implicitly available as output properties. Additionally, the InstVbsInstance resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    LifecyleDetails string
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    State string
    The current state of the VbsInstance.
    SystemTags Dictionary<string, object>
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    The time the the VbsInstance was created. An RFC3339 formatted datetime string
    TimeUpdated string
    The time the VbsInstance was updated. An RFC3339 formatted datetime string
    VbsAccessUrl string
    Public web URL for accessing the VBS service instance
    Id string
    The provider-assigned unique ID for this managed resource.
    LifecyleDetails string
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    State string
    The current state of the VbsInstance.
    SystemTags map[string]interface{}
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    The time the the VbsInstance was created. An RFC3339 formatted datetime string
    TimeUpdated string
    The time the VbsInstance was updated. An RFC3339 formatted datetime string
    VbsAccessUrl string
    Public web URL for accessing the VBS service instance
    id String
    The provider-assigned unique ID for this managed resource.
    lifecyleDetails String
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    state String
    The current state of the VbsInstance.
    systemTags Map<String,Object>
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    The time the the VbsInstance was created. An RFC3339 formatted datetime string
    timeUpdated String
    The time the VbsInstance was updated. An RFC3339 formatted datetime string
    vbsAccessUrl String
    Public web URL for accessing the VBS service instance
    id string
    The provider-assigned unique ID for this managed resource.
    lifecyleDetails string
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    state string
    The current state of the VbsInstance.
    systemTags {[key: string]: any}
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated string
    The time the the VbsInstance was created. An RFC3339 formatted datetime string
    timeUpdated string
    The time the VbsInstance was updated. An RFC3339 formatted datetime string
    vbsAccessUrl string
    Public web URL for accessing the VBS service instance
    id str
    The provider-assigned unique ID for this managed resource.
    lifecyle_details str
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    state str
    The current state of the VbsInstance.
    system_tags Mapping[str, Any]
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    time_created str
    The time the the VbsInstance was created. An RFC3339 formatted datetime string
    time_updated str
    The time the VbsInstance was updated. An RFC3339 formatted datetime string
    vbs_access_url str
    Public web URL for accessing the VBS service instance
    id String
    The provider-assigned unique ID for this managed resource.
    lifecyleDetails String
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    state String
    The current state of the VbsInstance.
    systemTags Map<Any>
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    The time the the VbsInstance was created. An RFC3339 formatted datetime string
    timeUpdated String
    The time the VbsInstance was updated. An RFC3339 formatted datetime string
    vbsAccessUrl String
    Public web URL for accessing the VBS service instance

    Look up Existing InstVbsInstance Resource

    Get an existing InstVbsInstance 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?: InstVbsInstanceState, opts?: CustomResourceOptions): InstVbsInstance
    @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,
            idcs_access_token: Optional[str] = None,
            is_resource_usage_agreement_granted: Optional[bool] = None,
            lifecyle_details: Optional[str] = None,
            name: Optional[str] = None,
            resource_compartment_id: Optional[str] = None,
            state: Optional[str] = None,
            system_tags: Optional[Mapping[str, Any]] = None,
            time_created: Optional[str] = None,
            time_updated: Optional[str] = None,
            vbs_access_url: Optional[str] = None) -> InstVbsInstance
    func GetInstVbsInstance(ctx *Context, name string, id IDInput, state *InstVbsInstanceState, opts ...ResourceOption) (*InstVbsInstance, error)
    public static InstVbsInstance Get(string name, Input<string> id, InstVbsInstanceState? state, CustomResourceOptions? opts = null)
    public static InstVbsInstance get(String name, Output<String> id, InstVbsInstanceState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    CompartmentId string
    (Updatable) Compartment Identifier. It can only be the root compartment
    DefinedTags Dictionary<string, object>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    DisplayName string
    (Updatable) Display Name
    FreeformTags Dictionary<string, object>
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    IdcsAccessToken string
    IDCS personal acceess token identifying IDCS user and stripe for the VBS service
    IsResourceUsageAgreementGranted bool
    (Updatable) Whether VBS is authorized to create and use resources in the customer tenancy
    LifecyleDetails string
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    Name string
    Service Instance Name
    ResourceCompartmentId string

    (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

    State string
    The current state of the VbsInstance.
    SystemTags Dictionary<string, object>
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    The time the the VbsInstance was created. An RFC3339 formatted datetime string
    TimeUpdated string
    The time the VbsInstance was updated. An RFC3339 formatted datetime string
    VbsAccessUrl string
    Public web URL for accessing the VBS service instance
    CompartmentId string
    (Updatable) Compartment Identifier. It can only be the root compartment
    DefinedTags map[string]interface{}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    DisplayName string
    (Updatable) Display Name
    FreeformTags map[string]interface{}
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    IdcsAccessToken string
    IDCS personal acceess token identifying IDCS user and stripe for the VBS service
    IsResourceUsageAgreementGranted bool
    (Updatable) Whether VBS is authorized to create and use resources in the customer tenancy
    LifecyleDetails string
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    Name string
    Service Instance Name
    ResourceCompartmentId string

    (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

    State string
    The current state of the VbsInstance.
    SystemTags map[string]interface{}
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    The time the the VbsInstance was created. An RFC3339 formatted datetime string
    TimeUpdated string
    The time the VbsInstance was updated. An RFC3339 formatted datetime string
    VbsAccessUrl string
    Public web URL for accessing the VBS service instance
    compartmentId String
    (Updatable) Compartment Identifier. It can only be the root compartment
    definedTags Map<String,Object>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    displayName String
    (Updatable) Display Name
    freeformTags Map<String,Object>
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    idcsAccessToken String
    IDCS personal acceess token identifying IDCS user and stripe for the VBS service
    isResourceUsageAgreementGranted Boolean
    (Updatable) Whether VBS is authorized to create and use resources in the customer tenancy
    lifecyleDetails String
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    name String
    Service Instance Name
    resourceCompartmentId String

    (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

    state String
    The current state of the VbsInstance.
    systemTags Map<String,Object>
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    The time the the VbsInstance was created. An RFC3339 formatted datetime string
    timeUpdated String
    The time the VbsInstance was updated. An RFC3339 formatted datetime string
    vbsAccessUrl String
    Public web URL for accessing the VBS service instance
    compartmentId string
    (Updatable) Compartment Identifier. It can only be the root compartment
    definedTags {[key: string]: any}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    displayName string
    (Updatable) Display Name
    freeformTags {[key: string]: any}
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    idcsAccessToken string
    IDCS personal acceess token identifying IDCS user and stripe for the VBS service
    isResourceUsageAgreementGranted boolean
    (Updatable) Whether VBS is authorized to create and use resources in the customer tenancy
    lifecyleDetails string
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    name string
    Service Instance Name
    resourceCompartmentId string

    (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

    state string
    The current state of the VbsInstance.
    systemTags {[key: string]: any}
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated string
    The time the the VbsInstance was created. An RFC3339 formatted datetime string
    timeUpdated string
    The time the VbsInstance was updated. An RFC3339 formatted datetime string
    vbsAccessUrl string
    Public web URL for accessing the VBS service instance
    compartment_id str
    (Updatable) Compartment Identifier. It can only be the root compartment
    defined_tags Mapping[str, Any]
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    display_name str
    (Updatable) Display Name
    freeform_tags Mapping[str, Any]
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    idcs_access_token str
    IDCS personal acceess token identifying IDCS user and stripe for the VBS service
    is_resource_usage_agreement_granted bool
    (Updatable) Whether VBS is authorized to create and use resources in the customer tenancy
    lifecyle_details str
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    name str
    Service Instance Name
    resource_compartment_id str

    (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

    state str
    The current state of the VbsInstance.
    system_tags Mapping[str, Any]
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    time_created str
    The time the the VbsInstance was created. An RFC3339 formatted datetime string
    time_updated str
    The time the VbsInstance was updated. An RFC3339 formatted datetime string
    vbs_access_url str
    Public web URL for accessing the VBS service instance
    compartmentId String
    (Updatable) Compartment Identifier. It can only be the root compartment
    definedTags Map<Any>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    displayName String
    (Updatable) Display Name
    freeformTags Map<Any>
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    idcsAccessToken String
    IDCS personal acceess token identifying IDCS user and stripe for the VBS service
    isResourceUsageAgreementGranted Boolean
    (Updatable) Whether VBS is authorized to create and use resources in the customer tenancy
    lifecyleDetails String
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    name String
    Service Instance Name
    resourceCompartmentId String

    (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

    state String
    The current state of the VbsInstance.
    systemTags Map<Any>
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    The time the the VbsInstance was created. An RFC3339 formatted datetime string
    timeUpdated String
    The time the VbsInstance was updated. An RFC3339 formatted datetime string
    vbsAccessUrl String
    Public web URL for accessing the VBS service instance

    Import

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

    $ pulumi import oci:Vbs/instVbsInstance:InstVbsInstance test_vbs_instance "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.
    oci logo
    Oracle Cloud Infrastructure v1.32.0 published on Thursday, Apr 18, 2024 by Pulumi