Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testResourceAnalyticsInstance = new oci.oci.ResourceAnalyticsResourceAnalyticsInstance("test_resource_analytics_instance", {
adwAdminPassword: {
passwordType: resourceAnalyticsInstanceAdwAdminPasswordPasswordType,
password: resourceAnalyticsInstanceAdwAdminPasswordPassword,
secretId: testSecret.id,
},
compartmentId: compartmentId,
subnetId: testSubnet.id,
definedTags: {
"Operations.CostCenter": "42",
},
description: resourceAnalyticsInstanceDescription,
displayName: resourceAnalyticsInstanceDisplayName,
freeformTags: {
Department: "Finance",
},
isMutualTlsRequired: resourceAnalyticsInstanceIsMutualTlsRequired,
licenseModel: resourceAnalyticsInstanceLicenseModel,
nsgIds: resourceAnalyticsInstanceNsgIds,
});
import pulumi
import pulumi_oci as oci
test_resource_analytics_instance = oci.oci.ResourceAnalyticsResourceAnalyticsInstance("test_resource_analytics_instance",
adw_admin_password={
"password_type": resource_analytics_instance_adw_admin_password_password_type,
"password": resource_analytics_instance_adw_admin_password_password,
"secret_id": test_secret["id"],
},
compartment_id=compartment_id,
subnet_id=test_subnet["id"],
defined_tags={
"Operations.CostCenter": "42",
},
description=resource_analytics_instance_description,
display_name=resource_analytics_instance_display_name,
freeform_tags={
"Department": "Finance",
},
is_mutual_tls_required=resource_analytics_instance_is_mutual_tls_required,
license_model=resource_analytics_instance_license_model,
nsg_ids=resource_analytics_instance_nsg_ids)
package main
import (
"github.com/pulumi/pulumi-oci/sdk/v3/go/oci/oci"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := oci.NewResourceAnalyticsResourceAnalyticsInstance(ctx, "test_resource_analytics_instance", &oci.ResourceAnalyticsResourceAnalyticsInstanceArgs{
AdwAdminPassword: &oci.ResourceAnalyticsResourceAnalyticsInstanceAdwAdminPasswordArgs{
PasswordType: pulumi.Any(resourceAnalyticsInstanceAdwAdminPasswordPasswordType),
Password: pulumi.Any(resourceAnalyticsInstanceAdwAdminPasswordPassword),
SecretId: pulumi.Any(testSecret.Id),
},
CompartmentId: pulumi.Any(compartmentId),
SubnetId: pulumi.Any(testSubnet.Id),
DefinedTags: pulumi.StringMap{
"Operations.CostCenter": pulumi.String("42"),
},
Description: pulumi.Any(resourceAnalyticsInstanceDescription),
DisplayName: pulumi.Any(resourceAnalyticsInstanceDisplayName),
FreeformTags: pulumi.StringMap{
"Department": pulumi.String("Finance"),
},
IsMutualTlsRequired: pulumi.Any(resourceAnalyticsInstanceIsMutualTlsRequired),
LicenseModel: pulumi.Any(resourceAnalyticsInstanceLicenseModel),
NsgIds: pulumi.Any(resourceAnalyticsInstanceNsgIds),
})
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 testResourceAnalyticsInstance = new Oci.Oci.ResourceAnalyticsResourceAnalyticsInstance("test_resource_analytics_instance", new()
{
AdwAdminPassword = new Oci.Oci.Inputs.ResourceAnalyticsResourceAnalyticsInstanceAdwAdminPasswordArgs
{
PasswordType = resourceAnalyticsInstanceAdwAdminPasswordPasswordType,
Password = resourceAnalyticsInstanceAdwAdminPasswordPassword,
SecretId = testSecret.Id,
},
CompartmentId = compartmentId,
SubnetId = testSubnet.Id,
DefinedTags =
{
{ "Operations.CostCenter", "42" },
},
Description = resourceAnalyticsInstanceDescription,
DisplayName = resourceAnalyticsInstanceDisplayName,
FreeformTags =
{
{ "Department", "Finance" },
},
IsMutualTlsRequired = resourceAnalyticsInstanceIsMutualTlsRequired,
LicenseModel = resourceAnalyticsInstanceLicenseModel,
NsgIds = resourceAnalyticsInstanceNsgIds,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.oci.ResourceAnalyticsResourceAnalyticsInstance;
import com.pulumi.oci.oci.ResourceAnalyticsResourceAnalyticsInstanceArgs;
import com.pulumi.oci.oci.inputs.ResourceAnalyticsResourceAnalyticsInstanceAdwAdminPasswordArgs;
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 testResourceAnalyticsInstance = new ResourceAnalyticsResourceAnalyticsInstance("testResourceAnalyticsInstance", ResourceAnalyticsResourceAnalyticsInstanceArgs.builder()
.adwAdminPassword(ResourceAnalyticsResourceAnalyticsInstanceAdwAdminPasswordArgs.builder()
.passwordType(resourceAnalyticsInstanceAdwAdminPasswordPasswordType)
.password(resourceAnalyticsInstanceAdwAdminPasswordPassword)
.secretId(testSecret.id())
.build())
.compartmentId(compartmentId)
.subnetId(testSubnet.id())
.definedTags(Map.of("Operations.CostCenter", "42"))
.description(resourceAnalyticsInstanceDescription)
.displayName(resourceAnalyticsInstanceDisplayName)
.freeformTags(Map.of("Department", "Finance"))
.isMutualTlsRequired(resourceAnalyticsInstanceIsMutualTlsRequired)
.licenseModel(resourceAnalyticsInstanceLicenseModel)
.nsgIds(resourceAnalyticsInstanceNsgIds)
.build());
}
}
resources:
testResourceAnalyticsInstance:
type: oci:oci:ResourceAnalyticsResourceAnalyticsInstance
name: test_resource_analytics_instance
properties:
adwAdminPassword:
passwordType: ${resourceAnalyticsInstanceAdwAdminPasswordPasswordType}
password: ${resourceAnalyticsInstanceAdwAdminPasswordPassword}
secretId: ${testSecret.id}
compartmentId: ${compartmentId}
subnetId: ${testSubnet.id}
definedTags:
Operations.CostCenter: '42'
description: ${resourceAnalyticsInstanceDescription}
displayName: ${resourceAnalyticsInstanceDisplayName}
freeformTags:
Department: Finance
isMutualTlsRequired: ${resourceAnalyticsInstanceIsMutualTlsRequired}
licenseModel: ${resourceAnalyticsInstanceLicenseModel}
nsgIds: ${resourceAnalyticsInstanceNsgIds}
Create ResourceAnalyticsResourceAnalyticsInstance Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ResourceAnalyticsResourceAnalyticsInstance(name: string, args: ResourceAnalyticsResourceAnalyticsInstanceArgs, opts?: CustomResourceOptions);@overload
def ResourceAnalyticsResourceAnalyticsInstance(resource_name: str,
args: ResourceAnalyticsResourceAnalyticsInstanceArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ResourceAnalyticsResourceAnalyticsInstance(resource_name: str,
opts: Optional[ResourceOptions] = None,
adw_admin_password: Optional[ResourceAnalyticsResourceAnalyticsInstanceAdwAdminPasswordArgs] = None,
compartment_id: Optional[str] = None,
subnet_id: Optional[str] = None,
defined_tags: Optional[Mapping[str, str]] = None,
description: Optional[str] = None,
display_name: Optional[str] = None,
freeform_tags: Optional[Mapping[str, str]] = None,
is_mutual_tls_required: Optional[bool] = None,
license_model: Optional[str] = None,
nsg_ids: Optional[Sequence[str]] = None)func NewResourceAnalyticsResourceAnalyticsInstance(ctx *Context, name string, args ResourceAnalyticsResourceAnalyticsInstanceArgs, opts ...ResourceOption) (*ResourceAnalyticsResourceAnalyticsInstance, error)public ResourceAnalyticsResourceAnalyticsInstance(string name, ResourceAnalyticsResourceAnalyticsInstanceArgs args, CustomResourceOptions? opts = null)
public ResourceAnalyticsResourceAnalyticsInstance(String name, ResourceAnalyticsResourceAnalyticsInstanceArgs args)
public ResourceAnalyticsResourceAnalyticsInstance(String name, ResourceAnalyticsResourceAnalyticsInstanceArgs args, CustomResourceOptions options)
type: oci:oci:ResourceAnalyticsResourceAnalyticsInstance
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 ResourceAnalyticsResourceAnalyticsInstanceArgs
- 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 ResourceAnalyticsResourceAnalyticsInstanceArgs
- 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 ResourceAnalyticsResourceAnalyticsInstanceArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ResourceAnalyticsResourceAnalyticsInstanceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ResourceAnalyticsResourceAnalyticsInstanceArgs
- 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 resourceAnalyticsResourceAnalyticsInstanceResource = new Oci.Oci.ResourceAnalyticsResourceAnalyticsInstance("resourceAnalyticsResourceAnalyticsInstanceResource", new()
{
AdwAdminPassword = new Oci.Oci.Inputs.ResourceAnalyticsResourceAnalyticsInstanceAdwAdminPasswordArgs
{
PasswordType = "string",
Password = "string",
SecretId = "string",
},
CompartmentId = "string",
SubnetId = "string",
DefinedTags =
{
{ "string", "string" },
},
Description = "string",
DisplayName = "string",
FreeformTags =
{
{ "string", "string" },
},
IsMutualTlsRequired = false,
LicenseModel = "string",
NsgIds = new[]
{
"string",
},
});
example, err := oci.NewResourceAnalyticsResourceAnalyticsInstance(ctx, "resourceAnalyticsResourceAnalyticsInstanceResource", &oci.ResourceAnalyticsResourceAnalyticsInstanceArgs{
AdwAdminPassword: &oci.ResourceAnalyticsResourceAnalyticsInstanceAdwAdminPasswordArgs{
PasswordType: pulumi.String("string"),
Password: pulumi.String("string"),
SecretId: pulumi.String("string"),
},
CompartmentId: pulumi.String("string"),
SubnetId: pulumi.String("string"),
DefinedTags: pulumi.StringMap{
"string": pulumi.String("string"),
},
Description: pulumi.String("string"),
DisplayName: pulumi.String("string"),
FreeformTags: pulumi.StringMap{
"string": pulumi.String("string"),
},
IsMutualTlsRequired: pulumi.Bool(false),
LicenseModel: pulumi.String("string"),
NsgIds: pulumi.StringArray{
pulumi.String("string"),
},
})
var resourceAnalyticsResourceAnalyticsInstanceResource = new ResourceAnalyticsResourceAnalyticsInstance("resourceAnalyticsResourceAnalyticsInstanceResource", ResourceAnalyticsResourceAnalyticsInstanceArgs.builder()
.adwAdminPassword(ResourceAnalyticsResourceAnalyticsInstanceAdwAdminPasswordArgs.builder()
.passwordType("string")
.password("string")
.secretId("string")
.build())
.compartmentId("string")
.subnetId("string")
.definedTags(Map.of("string", "string"))
.description("string")
.displayName("string")
.freeformTags(Map.of("string", "string"))
.isMutualTlsRequired(false)
.licenseModel("string")
.nsgIds("string")
.build());
resource_analytics_resource_analytics_instance_resource = oci.oci.ResourceAnalyticsResourceAnalyticsInstance("resourceAnalyticsResourceAnalyticsInstanceResource",
adw_admin_password={
"password_type": "string",
"password": "string",
"secret_id": "string",
},
compartment_id="string",
subnet_id="string",
defined_tags={
"string": "string",
},
description="string",
display_name="string",
freeform_tags={
"string": "string",
},
is_mutual_tls_required=False,
license_model="string",
nsg_ids=["string"])
const resourceAnalyticsResourceAnalyticsInstanceResource = new oci.oci.ResourceAnalyticsResourceAnalyticsInstance("resourceAnalyticsResourceAnalyticsInstanceResource", {
adwAdminPassword: {
passwordType: "string",
password: "string",
secretId: "string",
},
compartmentId: "string",
subnetId: "string",
definedTags: {
string: "string",
},
description: "string",
displayName: "string",
freeformTags: {
string: "string",
},
isMutualTlsRequired: false,
licenseModel: "string",
nsgIds: ["string"],
});
type: oci:oci:ResourceAnalyticsResourceAnalyticsInstance
properties:
adwAdminPassword:
password: string
passwordType: string
secretId: string
compartmentId: string
definedTags:
string: string
description: string
displayName: string
freeformTags:
string: string
isMutualTlsRequired: false
licenseModel: string
nsgIds:
- string
subnetId: string
ResourceAnalyticsResourceAnalyticsInstance Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The ResourceAnalyticsResourceAnalyticsInstance resource accepts the following input properties:
- Adw
Admin ResourcePassword Analytics Resource Analytics Instance Adw Admin Password - Details for the ADW Admin password. Password can be passed as
VaultSecretPasswordDetailsorPlainTextPasswordDetails. Example:{"passwordType":"PLAIN_TEXT","password":"..."}Example:{"passwordType":"VAULT_SECRET","secretId":"ocid..."} - Compartment
Id string - (Updatable) The OCID of the compartment to create the ResourceAnalyticsInstance in.
- Subnet
Id string The OCID of the subnet the resource is associated with.
** 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
- Dictionary<string, string>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - Description string
- (Updatable) A description of the ResourceAnalyticsInstance instance.
- Display
Name string - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Dictionary<string, string>
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"} - Is
Mutual boolTls Required - Require mutual TLS (mTLS) when authenticating connections to the ADW database.
- License
Model string - The Oracle license model that applies to the ADW instance.
- Nsg
Ids List<string> - List of Network Security Group OCID's. Example:
["ocid...", "ocid..."]
- Adw
Admin ResourcePassword Analytics Resource Analytics Instance Adw Admin Password Args - Details for the ADW Admin password. Password can be passed as
VaultSecretPasswordDetailsorPlainTextPasswordDetails. Example:{"passwordType":"PLAIN_TEXT","password":"..."}Example:{"passwordType":"VAULT_SECRET","secretId":"ocid..."} - Compartment
Id string - (Updatable) The OCID of the compartment to create the ResourceAnalyticsInstance in.
- Subnet
Id string The OCID of the subnet the resource is associated with.
** 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
- map[string]string
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - Description string
- (Updatable) A description of the ResourceAnalyticsInstance instance.
- Display
Name string - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- map[string]string
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"} - Is
Mutual boolTls Required - Require mutual TLS (mTLS) when authenticating connections to the ADW database.
- License
Model string - The Oracle license model that applies to the ADW instance.
- Nsg
Ids []string - List of Network Security Group OCID's. Example:
["ocid...", "ocid..."]
- adw
Admin ResourcePassword Analytics Resource Analytics Instance Adw Admin Password - Details for the ADW Admin password. Password can be passed as
VaultSecretPasswordDetailsorPlainTextPasswordDetails. Example:{"passwordType":"PLAIN_TEXT","password":"..."}Example:{"passwordType":"VAULT_SECRET","secretId":"ocid..."} - compartment
Id String - (Updatable) The OCID of the compartment to create the ResourceAnalyticsInstance in.
- subnet
Id String The OCID of the subnet the resource is associated with.
** 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
- Map<String,String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - description String
- (Updatable) A description of the ResourceAnalyticsInstance instance.
- display
Name String - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Map<String,String>
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"} - is
Mutual BooleanTls Required - Require mutual TLS (mTLS) when authenticating connections to the ADW database.
- license
Model String - The Oracle license model that applies to the ADW instance.
- nsg
Ids List<String> - List of Network Security Group OCID's. Example:
["ocid...", "ocid..."]
- adw
Admin ResourcePassword Analytics Resource Analytics Instance Adw Admin Password - Details for the ADW Admin password. Password can be passed as
VaultSecretPasswordDetailsorPlainTextPasswordDetails. Example:{"passwordType":"PLAIN_TEXT","password":"..."}Example:{"passwordType":"VAULT_SECRET","secretId":"ocid..."} - compartment
Id string - (Updatable) The OCID of the compartment to create the ResourceAnalyticsInstance in.
- subnet
Id string The OCID of the subnet the resource is associated with.
** 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
- {[key: string]: string}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - description string
- (Updatable) A description of the ResourceAnalyticsInstance instance.
- display
Name string - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- {[key: string]: string}
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"} - is
Mutual booleanTls Required - Require mutual TLS (mTLS) when authenticating connections to the ADW database.
- license
Model string - The Oracle license model that applies to the ADW instance.
- nsg
Ids string[] - List of Network Security Group OCID's. Example:
["ocid...", "ocid..."]
- adw_
admin_ Resourcepassword Analytics Resource Analytics Instance Adw Admin Password Args - Details for the ADW Admin password. Password can be passed as
VaultSecretPasswordDetailsorPlainTextPasswordDetails. Example:{"passwordType":"PLAIN_TEXT","password":"..."}Example:{"passwordType":"VAULT_SECRET","secretId":"ocid..."} - compartment_
id str - (Updatable) The OCID of the compartment to create the ResourceAnalyticsInstance in.
- subnet_
id str The OCID of the subnet the resource is associated with.
** 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
- Mapping[str, str]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - description str
- (Updatable) A description of the ResourceAnalyticsInstance instance.
- display_
name str - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Mapping[str, str]
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"} - is_
mutual_ booltls_ required - Require mutual TLS (mTLS) when authenticating connections to the ADW database.
- license_
model str - The Oracle license model that applies to the ADW instance.
- nsg_
ids Sequence[str] - List of Network Security Group OCID's. Example:
["ocid...", "ocid..."]
- adw
Admin Property MapPassword - Details for the ADW Admin password. Password can be passed as
VaultSecretPasswordDetailsorPlainTextPasswordDetails. Example:{"passwordType":"PLAIN_TEXT","password":"..."}Example:{"passwordType":"VAULT_SECRET","secretId":"ocid..."} - compartment
Id String - (Updatable) The OCID of the compartment to create the ResourceAnalyticsInstance in.
- subnet
Id String The OCID of the subnet the resource is associated with.
** 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
- Map<String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - description String
- (Updatable) A description of the ResourceAnalyticsInstance instance.
- display
Name String - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Map<String>
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"} - is
Mutual BooleanTls Required - Require mutual TLS (mTLS) when authenticating connections to the ADW database.
- license
Model String - The Oracle license model that applies to the ADW instance.
- nsg
Ids List<String> - List of Network Security Group OCID's. Example:
["ocid...", "ocid..."]
Outputs
All input properties are implicitly available as output properties. Additionally, the ResourceAnalyticsResourceAnalyticsInstance resource produces the following output properties:
- Adw
Id string - The OCID of the created ADW instance.
- Id string
- The provider-assigned unique ID for this managed resource.
- Lifecycle
Details string - A message that describes the current state of the ResourceAnalyticsInstance in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
- Oac
Id string - The OCID of the OAC enabled for the ResourceAnalyticsInstance.
- State string
- The current state of the ResourceAnalyticsInstance.
- Dictionary<string, string>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - Time
Created string - The date and time the ResourceAnalyticsInstance was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - Time
Updated string - The date and time the ResourceAnalyticsInstance was updated, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z
- Adw
Id string - The OCID of the created ADW instance.
- Id string
- The provider-assigned unique ID for this managed resource.
- Lifecycle
Details string - A message that describes the current state of the ResourceAnalyticsInstance in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
- Oac
Id string - The OCID of the OAC enabled for the ResourceAnalyticsInstance.
- State string
- The current state of the ResourceAnalyticsInstance.
- map[string]string
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - Time
Created string - The date and time the ResourceAnalyticsInstance was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - Time
Updated string - The date and time the ResourceAnalyticsInstance was updated, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z
- adw
Id String - The OCID of the created ADW instance.
- id String
- The provider-assigned unique ID for this managed resource.
- lifecycle
Details String - A message that describes the current state of the ResourceAnalyticsInstance in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
- oac
Id String - The OCID of the OAC enabled for the ResourceAnalyticsInstance.
- state String
- The current state of the ResourceAnalyticsInstance.
- Map<String,String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - time
Created String - The date and time the ResourceAnalyticsInstance was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - time
Updated String - The date and time the ResourceAnalyticsInstance was updated, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z
- adw
Id string - The OCID of the created ADW instance.
- id string
- The provider-assigned unique ID for this managed resource.
- lifecycle
Details string - A message that describes the current state of the ResourceAnalyticsInstance in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
- oac
Id string - The OCID of the OAC enabled for the ResourceAnalyticsInstance.
- state string
- The current state of the ResourceAnalyticsInstance.
- {[key: string]: string}
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - time
Created string - The date and time the ResourceAnalyticsInstance was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - time
Updated string - The date and time the ResourceAnalyticsInstance was updated, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z
- adw_
id str - The OCID of the created ADW instance.
- id str
- The provider-assigned unique ID for this managed resource.
- lifecycle_
details str - A message that describes the current state of the ResourceAnalyticsInstance in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
- oac_
id str - The OCID of the OAC enabled for the ResourceAnalyticsInstance.
- state str
- The current state of the ResourceAnalyticsInstance.
- Mapping[str, str]
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - time_
created str - The date and time the ResourceAnalyticsInstance was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - time_
updated str - The date and time the ResourceAnalyticsInstance was updated, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z
- adw
Id String - The OCID of the created ADW instance.
- id String
- The provider-assigned unique ID for this managed resource.
- lifecycle
Details String - A message that describes the current state of the ResourceAnalyticsInstance in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
- oac
Id String - The OCID of the OAC enabled for the ResourceAnalyticsInstance.
- state String
- The current state of the ResourceAnalyticsInstance.
- Map<String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - time
Created String - The date and time the ResourceAnalyticsInstance was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - time
Updated String - The date and time the ResourceAnalyticsInstance was updated, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z
Look up Existing ResourceAnalyticsResourceAnalyticsInstance Resource
Get an existing ResourceAnalyticsResourceAnalyticsInstance 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?: ResourceAnalyticsResourceAnalyticsInstanceState, opts?: CustomResourceOptions): ResourceAnalyticsResourceAnalyticsInstance@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
adw_admin_password: Optional[ResourceAnalyticsResourceAnalyticsInstanceAdwAdminPasswordArgs] = None,
adw_id: Optional[str] = None,
compartment_id: Optional[str] = None,
defined_tags: Optional[Mapping[str, str]] = None,
description: Optional[str] = None,
display_name: Optional[str] = None,
freeform_tags: Optional[Mapping[str, str]] = None,
is_mutual_tls_required: Optional[bool] = None,
license_model: Optional[str] = None,
lifecycle_details: Optional[str] = None,
nsg_ids: Optional[Sequence[str]] = None,
oac_id: Optional[str] = None,
state: Optional[str] = None,
subnet_id: Optional[str] = None,
system_tags: Optional[Mapping[str, str]] = None,
time_created: Optional[str] = None,
time_updated: Optional[str] = None) -> ResourceAnalyticsResourceAnalyticsInstancefunc GetResourceAnalyticsResourceAnalyticsInstance(ctx *Context, name string, id IDInput, state *ResourceAnalyticsResourceAnalyticsInstanceState, opts ...ResourceOption) (*ResourceAnalyticsResourceAnalyticsInstance, error)public static ResourceAnalyticsResourceAnalyticsInstance Get(string name, Input<string> id, ResourceAnalyticsResourceAnalyticsInstanceState? state, CustomResourceOptions? opts = null)public static ResourceAnalyticsResourceAnalyticsInstance get(String name, Output<String> id, ResourceAnalyticsResourceAnalyticsInstanceState state, CustomResourceOptions options)resources: _: type: oci:oci:ResourceAnalyticsResourceAnalyticsInstance get: id: ${id}- 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.
- Adw
Admin ResourcePassword Analytics Resource Analytics Instance Adw Admin Password - Details for the ADW Admin password. Password can be passed as
VaultSecretPasswordDetailsorPlainTextPasswordDetails. Example:{"passwordType":"PLAIN_TEXT","password":"..."}Example:{"passwordType":"VAULT_SECRET","secretId":"ocid..."} - Adw
Id string - The OCID of the created ADW instance.
- Compartment
Id string - (Updatable) The OCID of the compartment to create the ResourceAnalyticsInstance in.
- Dictionary<string, string>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - Description string
- (Updatable) A description of the ResourceAnalyticsInstance instance.
- Display
Name string - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Dictionary<string, string>
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"} - Is
Mutual boolTls Required - Require mutual TLS (mTLS) when authenticating connections to the ADW database.
- License
Model string - The Oracle license model that applies to the ADW instance.
- Lifecycle
Details string - A message that describes the current state of the ResourceAnalyticsInstance in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
- Nsg
Ids List<string> - List of Network Security Group OCID's. Example:
["ocid...", "ocid..."] - Oac
Id string - The OCID of the OAC enabled for the ResourceAnalyticsInstance.
- State string
- The current state of the ResourceAnalyticsInstance.
- Subnet
Id string The OCID of the subnet the resource is associated with.
** 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
- Dictionary<string, string>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - Time
Created string - The date and time the ResourceAnalyticsInstance was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - Time
Updated string - The date and time the ResourceAnalyticsInstance was updated, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z
- Adw
Admin ResourcePassword Analytics Resource Analytics Instance Adw Admin Password Args - Details for the ADW Admin password. Password can be passed as
VaultSecretPasswordDetailsorPlainTextPasswordDetails. Example:{"passwordType":"PLAIN_TEXT","password":"..."}Example:{"passwordType":"VAULT_SECRET","secretId":"ocid..."} - Adw
Id string - The OCID of the created ADW instance.
- Compartment
Id string - (Updatable) The OCID of the compartment to create the ResourceAnalyticsInstance in.
- map[string]string
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - Description string
- (Updatable) A description of the ResourceAnalyticsInstance instance.
- Display
Name string - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- map[string]string
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"} - Is
Mutual boolTls Required - Require mutual TLS (mTLS) when authenticating connections to the ADW database.
- License
Model string - The Oracle license model that applies to the ADW instance.
- Lifecycle
Details string - A message that describes the current state of the ResourceAnalyticsInstance in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
- Nsg
Ids []string - List of Network Security Group OCID's. Example:
["ocid...", "ocid..."] - Oac
Id string - The OCID of the OAC enabled for the ResourceAnalyticsInstance.
- State string
- The current state of the ResourceAnalyticsInstance.
- Subnet
Id string The OCID of the subnet the resource is associated with.
** 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
- map[string]string
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - Time
Created string - The date and time the ResourceAnalyticsInstance was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - Time
Updated string - The date and time the ResourceAnalyticsInstance was updated, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z
- adw
Admin ResourcePassword Analytics Resource Analytics Instance Adw Admin Password - Details for the ADW Admin password. Password can be passed as
VaultSecretPasswordDetailsorPlainTextPasswordDetails. Example:{"passwordType":"PLAIN_TEXT","password":"..."}Example:{"passwordType":"VAULT_SECRET","secretId":"ocid..."} - adw
Id String - The OCID of the created ADW instance.
- compartment
Id String - (Updatable) The OCID of the compartment to create the ResourceAnalyticsInstance in.
- Map<String,String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - description String
- (Updatable) A description of the ResourceAnalyticsInstance instance.
- display
Name String - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Map<String,String>
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"} - is
Mutual BooleanTls Required - Require mutual TLS (mTLS) when authenticating connections to the ADW database.
- license
Model String - The Oracle license model that applies to the ADW instance.
- lifecycle
Details String - A message that describes the current state of the ResourceAnalyticsInstance in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
- nsg
Ids List<String> - List of Network Security Group OCID's. Example:
["ocid...", "ocid..."] - oac
Id String - The OCID of the OAC enabled for the ResourceAnalyticsInstance.
- state String
- The current state of the ResourceAnalyticsInstance.
- subnet
Id String The OCID of the subnet the resource is associated with.
** 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
- Map<String,String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - time
Created String - The date and time the ResourceAnalyticsInstance was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - time
Updated String - The date and time the ResourceAnalyticsInstance was updated, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z
- adw
Admin ResourcePassword Analytics Resource Analytics Instance Adw Admin Password - Details for the ADW Admin password. Password can be passed as
VaultSecretPasswordDetailsorPlainTextPasswordDetails. Example:{"passwordType":"PLAIN_TEXT","password":"..."}Example:{"passwordType":"VAULT_SECRET","secretId":"ocid..."} - adw
Id string - The OCID of the created ADW instance.
- compartment
Id string - (Updatable) The OCID of the compartment to create the ResourceAnalyticsInstance in.
- {[key: string]: string}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - description string
- (Updatable) A description of the ResourceAnalyticsInstance instance.
- display
Name string - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- {[key: string]: string}
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"} - is
Mutual booleanTls Required - Require mutual TLS (mTLS) when authenticating connections to the ADW database.
- license
Model string - The Oracle license model that applies to the ADW instance.
- lifecycle
Details string - A message that describes the current state of the ResourceAnalyticsInstance in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
- nsg
Ids string[] - List of Network Security Group OCID's. Example:
["ocid...", "ocid..."] - oac
Id string - The OCID of the OAC enabled for the ResourceAnalyticsInstance.
- state string
- The current state of the ResourceAnalyticsInstance.
- subnet
Id string The OCID of the subnet the resource is associated with.
** 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
- {[key: string]: string}
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - time
Created string - The date and time the ResourceAnalyticsInstance was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - time
Updated string - The date and time the ResourceAnalyticsInstance was updated, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z
- adw_
admin_ Resourcepassword Analytics Resource Analytics Instance Adw Admin Password Args - Details for the ADW Admin password. Password can be passed as
VaultSecretPasswordDetailsorPlainTextPasswordDetails. Example:{"passwordType":"PLAIN_TEXT","password":"..."}Example:{"passwordType":"VAULT_SECRET","secretId":"ocid..."} - adw_
id str - The OCID of the created ADW instance.
- compartment_
id str - (Updatable) The OCID of the compartment to create the ResourceAnalyticsInstance in.
- Mapping[str, str]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - description str
- (Updatable) A description of the ResourceAnalyticsInstance instance.
- display_
name str - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Mapping[str, str]
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"} - is_
mutual_ booltls_ required - Require mutual TLS (mTLS) when authenticating connections to the ADW database.
- license_
model str - The Oracle license model that applies to the ADW instance.
- lifecycle_
details str - A message that describes the current state of the ResourceAnalyticsInstance in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
- nsg_
ids Sequence[str] - List of Network Security Group OCID's. Example:
["ocid...", "ocid..."] - oac_
id str - The OCID of the OAC enabled for the ResourceAnalyticsInstance.
- state str
- The current state of the ResourceAnalyticsInstance.
- subnet_
id str The OCID of the subnet the resource is associated with.
** 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
- Mapping[str, str]
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - time_
created str - The date and time the ResourceAnalyticsInstance was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - time_
updated str - The date and time the ResourceAnalyticsInstance was updated, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z
- adw
Admin Property MapPassword - Details for the ADW Admin password. Password can be passed as
VaultSecretPasswordDetailsorPlainTextPasswordDetails. Example:{"passwordType":"PLAIN_TEXT","password":"..."}Example:{"passwordType":"VAULT_SECRET","secretId":"ocid..."} - adw
Id String - The OCID of the created ADW instance.
- compartment
Id String - (Updatable) The OCID of the compartment to create the ResourceAnalyticsInstance in.
- Map<String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - description String
- (Updatable) A description of the ResourceAnalyticsInstance instance.
- display
Name String - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Map<String>
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"} - is
Mutual BooleanTls Required - Require mutual TLS (mTLS) when authenticating connections to the ADW database.
- license
Model String - The Oracle license model that applies to the ADW instance.
- lifecycle
Details String - A message that describes the current state of the ResourceAnalyticsInstance in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
- nsg
Ids List<String> - List of Network Security Group OCID's. Example:
["ocid...", "ocid..."] - oac
Id String - The OCID of the OAC enabled for the ResourceAnalyticsInstance.
- state String
- The current state of the ResourceAnalyticsInstance.
- subnet
Id String The OCID of the subnet the resource is associated with.
** 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
- Map<String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - time
Created String - The date and time the ResourceAnalyticsInstance was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - time
Updated String - The date and time the ResourceAnalyticsInstance was updated, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z
Supporting Types
ResourceAnalyticsResourceAnalyticsInstanceAdwAdminPassword, ResourceAnalyticsResourceAnalyticsInstanceAdwAdminPasswordArgs
- Password
Type string - Password type
- Password string
- Password for the ADW to be created in User Tenancy. The password must be between 12 and 30 characters long, and must contain at least 1 uppercase, 1 lowercase, and 1 numeric character. It cannot contain the double quote symbol (") or the username "admin", regardless of casing.
- Secret
Id string - The OCID of the vault secret to use as the ADW admin password.
- Password
Type string - Password type
- Password string
- Password for the ADW to be created in User Tenancy. The password must be between 12 and 30 characters long, and must contain at least 1 uppercase, 1 lowercase, and 1 numeric character. It cannot contain the double quote symbol (") or the username "admin", regardless of casing.
- Secret
Id string - The OCID of the vault secret to use as the ADW admin password.
- password
Type String - Password type
- password String
- Password for the ADW to be created in User Tenancy. The password must be between 12 and 30 characters long, and must contain at least 1 uppercase, 1 lowercase, and 1 numeric character. It cannot contain the double quote symbol (") or the username "admin", regardless of casing.
- secret
Id String - The OCID of the vault secret to use as the ADW admin password.
- password
Type string - Password type
- password string
- Password for the ADW to be created in User Tenancy. The password must be between 12 and 30 characters long, and must contain at least 1 uppercase, 1 lowercase, and 1 numeric character. It cannot contain the double quote symbol (") or the username "admin", regardless of casing.
- secret
Id string - The OCID of the vault secret to use as the ADW admin password.
- password_
type str - Password type
- password str
- Password for the ADW to be created in User Tenancy. The password must be between 12 and 30 characters long, and must contain at least 1 uppercase, 1 lowercase, and 1 numeric character. It cannot contain the double quote symbol (") or the username "admin", regardless of casing.
- secret_
id str - The OCID of the vault secret to use as the ADW admin password.
- password
Type String - Password type
- password String
- Password for the ADW to be created in User Tenancy. The password must be between 12 and 30 characters long, and must contain at least 1 uppercase, 1 lowercase, and 1 numeric character. It cannot contain the double quote symbol (") or the username "admin", regardless of casing.
- secret
Id String - The OCID of the vault secret to use as the ADW admin password.
Import
ResourceAnalyticsInstances can be imported using the id, e.g.
$ pulumi import oci:oci/resourceAnalyticsResourceAnalyticsInstance:ResourceAnalyticsResourceAnalyticsInstance test_resource_analytics_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
ociTerraform Provider.
