import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Vbs Instance resource in Oracle Cloud Infrastructure Vbs Inst service. * * Gets a VbsInstance by identifier * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testVbsInstance = oci.vbs.getInstVbsInstance({ * vbsInstanceId: testVbsInstanceOciVbsInstVbsInstance.id, * }); * ``` */ export declare function getInstVbsInstance(args: GetInstVbsInstanceArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getInstVbsInstance. */ export interface GetInstVbsInstanceArgs { /** * unique VbsInstance identifier */ vbsInstanceId: string; } /** * A collection of values returned by getInstVbsInstance. */ export interface GetInstVbsInstanceResult { /** * Compartment of the service instance */ readonly compartmentId: string; /** * Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}` */ readonly definedTags: { [key: string]: string; }; /** * Service instance display name */ readonly displayName: string; /** * 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: { [key: string]: string; }; /** * Unique identifier that is immutable on creation */ readonly id: string; readonly idcsAccessToken: string; /** * Whether the VBS service instance owner explicitly approved VBS to create and use resources in the customer tenancy */ readonly isResourceUsageAgreementGranted: boolean; /** * 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: string; /** * Service instance name (unique identifier) */ readonly name: string; /** * Compartment where VBS may create additional resources for the service instance */ readonly resourceCompartmentId: string; /** * The current state of the VbsInstance. */ readonly state: string; /** * Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}` */ readonly systemTags: { [key: string]: string; }; /** * The time the the VbsInstance was created. An RFC3339 formatted datetime string */ readonly timeCreated: string; /** * The time the VbsInstance was updated. An RFC3339 formatted datetime string */ readonly timeUpdated: string; /** * Public web URL for accessing the VBS service instance */ readonly vbsAccessUrl: string; readonly vbsInstanceId: string; } /** * This data source provides details about a specific Vbs Instance resource in Oracle Cloud Infrastructure Vbs Inst service. * * Gets a VbsInstance by identifier * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testVbsInstance = oci.vbs.getInstVbsInstance({ * vbsInstanceId: testVbsInstanceOciVbsInstVbsInstance.id, * }); * ``` */ export declare function getInstVbsInstanceOutput(args: GetInstVbsInstanceOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getInstVbsInstance. */ export interface GetInstVbsInstanceOutputArgs { /** * unique VbsInstance identifier */ vbsInstanceId: pulumi.Input; } //# sourceMappingURL=getInstVbsInstance.d.ts.map