oci.Vbs.InstVbsInstance
Explore with Pulumi AI
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("test_vbs_instance", {
compartmentId: compartmentId,
displayName: vbsInstanceDisplayName,
name: vbsInstanceName,
definedTags: {
"foo-namespace.bar-key": "value",
},
freeformTags: {
"bar-key": "value",
},
idcsAccessToken: vbsInstanceIdcsAccessToken,
isResourceUsageAgreementGranted: vbsInstanceIsResourceUsageAgreementGranted,
resourceCompartmentId: resourceCompartmentId,
});
import pulumi
import pulumi_oci as oci
test_vbs_instance = oci.vbs.InstVbsInstance("test_vbs_instance",
compartment_id=compartment_id,
display_name=vbs_instance_display_name,
name=vbs_instance_name,
defined_tags={
"foo-namespace.bar-key": "value",
},
freeform_tags={
"bar-key": "value",
},
idcs_access_token=vbs_instance_idcs_access_token,
is_resource_usage_agreement_granted=vbs_instance_is_resource_usage_agreement_granted,
resource_compartment_id=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, "test_vbs_instance", &Vbs.InstVbsInstanceArgs{
CompartmentId: pulumi.Any(compartmentId),
DisplayName: pulumi.Any(vbsInstanceDisplayName),
Name: pulumi.Any(vbsInstanceName),
DefinedTags: pulumi.Map{
"foo-namespace.bar-key": pulumi.Any("value"),
},
FreeformTags: pulumi.Map{
"bar-key": pulumi.Any("value"),
},
IdcsAccessToken: pulumi.Any(vbsInstanceIdcsAccessToken),
IsResourceUsageAgreementGranted: pulumi.Any(vbsInstanceIsResourceUsageAgreementGranted),
ResourceCompartmentId: pulumi.Any(resourceCompartmentId),
})
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("test_vbs_instance", new()
{
CompartmentId = compartmentId,
DisplayName = vbsInstanceDisplayName,
Name = vbsInstanceName,
DefinedTags =
{
{ "foo-namespace.bar-key", "value" },
},
FreeformTags =
{
{ "bar-key", "value" },
},
IdcsAccessToken = vbsInstanceIdcsAccessToken,
IsResourceUsageAgreementGranted = vbsInstanceIsResourceUsageAgreementGranted,
ResourceCompartmentId = resourceCompartmentId,
});
});
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(compartmentId)
.displayName(vbsInstanceDisplayName)
.name(vbsInstanceName)
.definedTags(Map.of("foo-namespace.bar-key", "value"))
.freeformTags(Map.of("bar-key", "value"))
.idcsAccessToken(vbsInstanceIdcsAccessToken)
.isResourceUsageAgreementGranted(vbsInstanceIsResourceUsageAgreementGranted)
.resourceCompartmentId(resourceCompartmentId)
.build());
}
}
resources:
testVbsInstance:
type: oci:Vbs:InstVbsInstance
name: test_vbs_instance
properties:
compartmentId: ${compartmentId}
displayName: ${vbsInstanceDisplayName}
name: ${vbsInstanceName}
definedTags:
foo-namespace.bar-key: value
freeformTags:
bar-key: value
idcsAccessToken: ${vbsInstanceIdcsAccessToken}
isResourceUsageAgreementGranted: ${vbsInstanceIsResourceUsageAgreementGranted}
resourceCompartmentId: ${resourceCompartmentId}
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.
Constructor 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:
- Compartment
Id string - (Updatable) Compartment Identifier. It can only be the root compartment
- Display
Name string - (Updatable) Display Name
- 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"}
- Idcs
Access stringToken - IDCS personal acceess token identifying IDCS user and stripe for the VBS service
- Is
Resource boolUsage Agreement Granted - (Updatable) Whether VBS is authorized to create and use resources in the customer tenancy
- Name string
- Service Instance Name
- Resource
Compartment stringId (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 string - (Updatable) Compartment Identifier. It can only be the root compartment
- Display
Name string - (Updatable) Display Name
- 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"}
- Idcs
Access stringToken - IDCS personal acceess token identifying IDCS user and stripe for the VBS service
- Is
Resource boolUsage Agreement Granted - (Updatable) Whether VBS is authorized to create and use resources in the customer tenancy
- Name string
- Service Instance Name
- Resource
Compartment stringId (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 String - (Updatable) Compartment Identifier. It can only be the root compartment
- display
Name String - (Updatable) Display Name
- 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"}
- idcs
Access StringToken - IDCS personal acceess token identifying IDCS user and stripe for the VBS service
- is
Resource BooleanUsage Agreement Granted - (Updatable) Whether VBS is authorized to create and use resources in the customer tenancy
- name String
- Service Instance Name
- resource
Compartment StringId (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 string - (Updatable) Compartment Identifier. It can only be the root compartment
- display
Name string - (Updatable) Display Name
- {[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"}
- idcs
Access stringToken - IDCS personal acceess token identifying IDCS user and stripe for the VBS service
- is
Resource booleanUsage Agreement Granted - (Updatable) Whether VBS is authorized to create and use resources in the customer tenancy
- name string
- Service Instance Name
- resource
Compartment stringId (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
- 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"}
- idcs_
access_ strtoken - IDCS personal acceess token identifying IDCS user and stripe for the VBS service
- is_
resource_ boolusage_ agreement_ granted - (Updatable) Whether VBS is authorized to create and use resources in the customer tenancy
- name str
- Service Instance Name
- resource_
compartment_ strid (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 String - (Updatable) Compartment Identifier. It can only be the root compartment
- display
Name String - (Updatable) Display Name
- 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"}
- idcs
Access StringToken - IDCS personal acceess token identifying IDCS user and stripe for the VBS service
- is
Resource BooleanUsage Agreement Granted - (Updatable) Whether VBS is authorized to create and use resources in the customer tenancy
- name String
- Service Instance Name
- resource
Compartment StringId (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.
- Lifecyle
Details 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.
- Dictionary<string, object>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created string - The time the the VbsInstance was created. An RFC3339 formatted datetime string
- Time
Updated string - The time the VbsInstance was updated. An RFC3339 formatted datetime string
- Vbs
Access stringUrl - Public web URL for accessing the VBS service instance
- Id string
- The provider-assigned unique ID for this managed resource.
- Lifecyle
Details 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.
- map[string]interface{}
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created string - The time the the VbsInstance was created. An RFC3339 formatted datetime string
- Time
Updated string - The time the VbsInstance was updated. An RFC3339 formatted datetime string
- Vbs
Access stringUrl - Public web URL for accessing the VBS service instance
- id String
- The provider-assigned unique ID for this managed resource.
- lifecyle
Details 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.
- Map<String,Object>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created String - The time the the VbsInstance was created. An RFC3339 formatted datetime string
- time
Updated String - The time the VbsInstance was updated. An RFC3339 formatted datetime string
- vbs
Access StringUrl - Public web URL for accessing the VBS service instance
- id string
- The provider-assigned unique ID for this managed resource.
- lifecyle
Details 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.
- {[key: string]: any}
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created string - The time the the VbsInstance was created. An RFC3339 formatted datetime string
- time
Updated string - The time the VbsInstance was updated. An RFC3339 formatted datetime string
- vbs
Access stringUrl - 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.
- 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_ strurl - Public web URL for accessing the VBS service instance
- id String
- The provider-assigned unique ID for this managed resource.
- lifecyle
Details 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.
- Map<Any>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created String - The time the the VbsInstance was created. An RFC3339 formatted datetime string
- time
Updated String - The time the VbsInstance was updated. An RFC3339 formatted datetime string
- vbs
Access StringUrl - 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.
- Compartment
Id string - (Updatable) Compartment Identifier. It can only be the root compartment
- 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) Display Name
- 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"}
- Idcs
Access stringToken - IDCS personal acceess token identifying IDCS user and stripe for the VBS service
- Is
Resource boolUsage Agreement Granted - (Updatable) Whether VBS is authorized to create and use resources in the customer tenancy
- Lifecyle
Details 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
- Resource
Compartment stringId (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.
- Dictionary<string, object>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created string - The time the the VbsInstance was created. An RFC3339 formatted datetime string
- Time
Updated string - The time the VbsInstance was updated. An RFC3339 formatted datetime string
- Vbs
Access stringUrl - Public web URL for accessing the VBS service instance
- Compartment
Id string - (Updatable) Compartment Identifier. It can only be the root compartment
- 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) Display Name
- 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"}
- Idcs
Access stringToken - IDCS personal acceess token identifying IDCS user and stripe for the VBS service
- Is
Resource boolUsage Agreement Granted - (Updatable) Whether VBS is authorized to create and use resources in the customer tenancy
- Lifecyle
Details 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
- Resource
Compartment stringId (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.
- map[string]interface{}
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created string - The time the the VbsInstance was created. An RFC3339 formatted datetime string
- Time
Updated string - The time the VbsInstance was updated. An RFC3339 formatted datetime string
- Vbs
Access stringUrl - Public web URL for accessing the VBS service instance
- compartment
Id String - (Updatable) Compartment Identifier. It can only be the root compartment
- 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) Display Name
- 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"}
- idcs
Access StringToken - IDCS personal acceess token identifying IDCS user and stripe for the VBS service
- is
Resource BooleanUsage Agreement Granted - (Updatable) Whether VBS is authorized to create and use resources in the customer tenancy
- lifecyle
Details 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
- resource
Compartment StringId (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.
- Map<String,Object>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created String - The time the the VbsInstance was created. An RFC3339 formatted datetime string
- time
Updated String - The time the VbsInstance was updated. An RFC3339 formatted datetime string
- vbs
Access StringUrl - Public web URL for accessing the VBS service instance
- compartment
Id string - (Updatable) Compartment Identifier. It can only be the root compartment
- {[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) Display Name
- {[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"}
- idcs
Access stringToken - IDCS personal acceess token identifying IDCS user and stripe for the VBS service
- is
Resource booleanUsage Agreement Granted - (Updatable) Whether VBS is authorized to create and use resources in the customer tenancy
- lifecyle
Details 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
- resource
Compartment stringId (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.
- {[key: string]: any}
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created string - The time the the VbsInstance was created. An RFC3339 formatted datetime string
- time
Updated string - The time the VbsInstance was updated. An RFC3339 formatted datetime string
- vbs
Access stringUrl - Public web URL for accessing the VBS service instance
- compartment_
id str - (Updatable) Compartment Identifier. It can only be the root compartment
- 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
- 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_ strtoken - IDCS personal acceess token identifying IDCS user and stripe for the VBS service
- is_
resource_ boolusage_ agreement_ granted - (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_ strid (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.
- 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_ strurl - Public web URL for accessing the VBS service instance
- compartment
Id String - (Updatable) Compartment Identifier. It can only be the root compartment
- 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) Display Name
- 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"}
- idcs
Access StringToken - IDCS personal acceess token identifying IDCS user and stripe for the VBS service
- is
Resource BooleanUsage Agreement Granted - (Updatable) Whether VBS is authorized to create and use resources in the customer tenancy
- lifecyle
Details 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
- resource
Compartment StringId (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.
- Map<Any>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created String - The time the the VbsInstance was created. An RFC3339 formatted datetime string
- time
Updated String - The time the VbsInstance was updated. An RFC3339 formatted datetime string
- vbs
Access StringUrl - 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.