1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. oci
  5. ResourceAnalyticsResourceAnalyticsInstance
Oracle Cloud Infrastructure v3.11.1 published on Friday, Nov 14, 2025 by Pulumi
oci logo
Oracle Cloud Infrastructure v3.11.1 published on Friday, Nov 14, 2025 by Pulumi

    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:

    AdwAdminPassword ResourceAnalyticsResourceAnalyticsInstanceAdwAdminPassword
    Details for the ADW Admin password. Password can be passed as VaultSecretPasswordDetails or PlainTextPasswordDetails. Example: {"passwordType":"PLAIN_TEXT","password":"..."} Example: {"passwordType":"VAULT_SECRET","secretId":"ocid..."}
    CompartmentId string
    (Updatable) The OCID of the compartment to create the ResourceAnalyticsInstance in.
    SubnetId 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

    DefinedTags 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.
    DisplayName string
    (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    FreeformTags 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"}
    IsMutualTlsRequired bool
    Require mutual TLS (mTLS) when authenticating connections to the ADW database.
    LicenseModel string
    The Oracle license model that applies to the ADW instance.
    NsgIds List<string>
    List of Network Security Group OCID's. Example: ["ocid...", "ocid..."]
    AdwAdminPassword ResourceAnalyticsResourceAnalyticsInstanceAdwAdminPasswordArgs
    Details for the ADW Admin password. Password can be passed as VaultSecretPasswordDetails or PlainTextPasswordDetails. Example: {"passwordType":"PLAIN_TEXT","password":"..."} Example: {"passwordType":"VAULT_SECRET","secretId":"ocid..."}
    CompartmentId string
    (Updatable) The OCID of the compartment to create the ResourceAnalyticsInstance in.
    SubnetId 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

    DefinedTags 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.
    DisplayName string
    (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    FreeformTags 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"}
    IsMutualTlsRequired bool
    Require mutual TLS (mTLS) when authenticating connections to the ADW database.
    LicenseModel string
    The Oracle license model that applies to the ADW instance.
    NsgIds []string
    List of Network Security Group OCID's. Example: ["ocid...", "ocid..."]
    adwAdminPassword ResourceAnalyticsResourceAnalyticsInstanceAdwAdminPassword
    Details for the ADW Admin password. Password can be passed as VaultSecretPasswordDetails or PlainTextPasswordDetails. Example: {"passwordType":"PLAIN_TEXT","password":"..."} Example: {"passwordType":"VAULT_SECRET","secretId":"ocid..."}
    compartmentId String
    (Updatable) The OCID of the compartment to create the ResourceAnalyticsInstance in.
    subnetId 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

    definedTags 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.
    displayName String
    (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    freeformTags 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"}
    isMutualTlsRequired Boolean
    Require mutual TLS (mTLS) when authenticating connections to the ADW database.
    licenseModel String
    The Oracle license model that applies to the ADW instance.
    nsgIds List<String>
    List of Network Security Group OCID's. Example: ["ocid...", "ocid..."]
    adwAdminPassword ResourceAnalyticsResourceAnalyticsInstanceAdwAdminPassword
    Details for the ADW Admin password. Password can be passed as VaultSecretPasswordDetails or PlainTextPasswordDetails. Example: {"passwordType":"PLAIN_TEXT","password":"..."} Example: {"passwordType":"VAULT_SECRET","secretId":"ocid..."}
    compartmentId string
    (Updatable) The OCID of the compartment to create the ResourceAnalyticsInstance in.
    subnetId 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

    definedTags {[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.
    displayName string
    (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    freeformTags {[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"}
    isMutualTlsRequired boolean
    Require mutual TLS (mTLS) when authenticating connections to the ADW database.
    licenseModel string
    The Oracle license model that applies to the ADW instance.
    nsgIds string[]
    List of Network Security Group OCID's. Example: ["ocid...", "ocid..."]
    adw_admin_password ResourceAnalyticsResourceAnalyticsInstanceAdwAdminPasswordArgs
    Details for the ADW Admin password. Password can be passed as VaultSecretPasswordDetails or PlainTextPasswordDetails. 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

    defined_tags 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.
    freeform_tags 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_tls_required bool
    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..."]
    adwAdminPassword Property Map
    Details for the ADW Admin password. Password can be passed as VaultSecretPasswordDetails or PlainTextPasswordDetails. Example: {"passwordType":"PLAIN_TEXT","password":"..."} Example: {"passwordType":"VAULT_SECRET","secretId":"ocid..."}
    compartmentId String
    (Updatable) The OCID of the compartment to create the ResourceAnalyticsInstance in.
    subnetId 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

    definedTags 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.
    displayName String
    (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    freeformTags 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"}
    isMutualTlsRequired Boolean
    Require mutual TLS (mTLS) when authenticating connections to the ADW database.
    licenseModel String
    The Oracle license model that applies to the ADW instance.
    nsgIds 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:

    AdwId string
    The OCID of the created ADW instance.
    Id string
    The provider-assigned unique ID for this managed resource.
    LifecycleDetails 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.
    OacId string
    The OCID of the OAC enabled for the ResourceAnalyticsInstance.
    State string
    The current state of the ResourceAnalyticsInstance.
    SystemTags Dictionary<string, string>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    The date and time the ResourceAnalyticsInstance was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    TimeUpdated string
    The date and time the ResourceAnalyticsInstance was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    AdwId string
    The OCID of the created ADW instance.
    Id string
    The provider-assigned unique ID for this managed resource.
    LifecycleDetails 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.
    OacId string
    The OCID of the OAC enabled for the ResourceAnalyticsInstance.
    State string
    The current state of the ResourceAnalyticsInstance.
    SystemTags map[string]string
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    The date and time the ResourceAnalyticsInstance was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    TimeUpdated string
    The date and time the ResourceAnalyticsInstance was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    adwId String
    The OCID of the created ADW instance.
    id String
    The provider-assigned unique ID for this managed resource.
    lifecycleDetails 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.
    oacId String
    The OCID of the OAC enabled for the ResourceAnalyticsInstance.
    state String
    The current state of the ResourceAnalyticsInstance.
    systemTags Map<String,String>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    The date and time the ResourceAnalyticsInstance was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    timeUpdated String
    The date and time the ResourceAnalyticsInstance was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    adwId string
    The OCID of the created ADW instance.
    id string
    The provider-assigned unique ID for this managed resource.
    lifecycleDetails 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.
    oacId string
    The OCID of the OAC enabled for the ResourceAnalyticsInstance.
    state string
    The current state of the ResourceAnalyticsInstance.
    systemTags {[key: string]: string}
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated string
    The date and time the ResourceAnalyticsInstance was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    timeUpdated 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.
    system_tags 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
    adwId String
    The OCID of the created ADW instance.
    id String
    The provider-assigned unique ID for this managed resource.
    lifecycleDetails 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.
    oacId String
    The OCID of the OAC enabled for the ResourceAnalyticsInstance.
    state String
    The current state of the ResourceAnalyticsInstance.
    systemTags Map<String>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    The date and time the ResourceAnalyticsInstance was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    timeUpdated 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) -> ResourceAnalyticsResourceAnalyticsInstance
    func 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.
    The following state arguments are supported:
    AdwAdminPassword ResourceAnalyticsResourceAnalyticsInstanceAdwAdminPassword
    Details for the ADW Admin password. Password can be passed as VaultSecretPasswordDetails or PlainTextPasswordDetails. Example: {"passwordType":"PLAIN_TEXT","password":"..."} Example: {"passwordType":"VAULT_SECRET","secretId":"ocid..."}
    AdwId string
    The OCID of the created ADW instance.
    CompartmentId string
    (Updatable) The OCID of the compartment to create the ResourceAnalyticsInstance in.
    DefinedTags 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.
    DisplayName string
    (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    FreeformTags 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"}
    IsMutualTlsRequired bool
    Require mutual TLS (mTLS) when authenticating connections to the ADW database.
    LicenseModel string
    The Oracle license model that applies to the ADW instance.
    LifecycleDetails 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.
    NsgIds List<string>
    List of Network Security Group OCID's. Example: ["ocid...", "ocid..."]
    OacId string
    The OCID of the OAC enabled for the ResourceAnalyticsInstance.
    State string
    The current state of the ResourceAnalyticsInstance.
    SubnetId 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

    SystemTags Dictionary<string, string>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    The date and time the ResourceAnalyticsInstance was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    TimeUpdated string
    The date and time the ResourceAnalyticsInstance was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    AdwAdminPassword ResourceAnalyticsResourceAnalyticsInstanceAdwAdminPasswordArgs
    Details for the ADW Admin password. Password can be passed as VaultSecretPasswordDetails or PlainTextPasswordDetails. Example: {"passwordType":"PLAIN_TEXT","password":"..."} Example: {"passwordType":"VAULT_SECRET","secretId":"ocid..."}
    AdwId string
    The OCID of the created ADW instance.
    CompartmentId string
    (Updatable) The OCID of the compartment to create the ResourceAnalyticsInstance in.
    DefinedTags 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.
    DisplayName string
    (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    FreeformTags 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"}
    IsMutualTlsRequired bool
    Require mutual TLS (mTLS) when authenticating connections to the ADW database.
    LicenseModel string
    The Oracle license model that applies to the ADW instance.
    LifecycleDetails 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.
    NsgIds []string
    List of Network Security Group OCID's. Example: ["ocid...", "ocid..."]
    OacId string
    The OCID of the OAC enabled for the ResourceAnalyticsInstance.
    State string
    The current state of the ResourceAnalyticsInstance.
    SubnetId 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

    SystemTags map[string]string
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    The date and time the ResourceAnalyticsInstance was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    TimeUpdated string
    The date and time the ResourceAnalyticsInstance was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    adwAdminPassword ResourceAnalyticsResourceAnalyticsInstanceAdwAdminPassword
    Details for the ADW Admin password. Password can be passed as VaultSecretPasswordDetails or PlainTextPasswordDetails. Example: {"passwordType":"PLAIN_TEXT","password":"..."} Example: {"passwordType":"VAULT_SECRET","secretId":"ocid..."}
    adwId String
    The OCID of the created ADW instance.
    compartmentId String
    (Updatable) The OCID of the compartment to create the ResourceAnalyticsInstance in.
    definedTags 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.
    displayName String
    (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    freeformTags 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"}
    isMutualTlsRequired Boolean
    Require mutual TLS (mTLS) when authenticating connections to the ADW database.
    licenseModel String
    The Oracle license model that applies to the ADW instance.
    lifecycleDetails 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.
    nsgIds List<String>
    List of Network Security Group OCID's. Example: ["ocid...", "ocid..."]
    oacId String
    The OCID of the OAC enabled for the ResourceAnalyticsInstance.
    state String
    The current state of the ResourceAnalyticsInstance.
    subnetId 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

    systemTags Map<String,String>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    The date and time the ResourceAnalyticsInstance was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    timeUpdated String
    The date and time the ResourceAnalyticsInstance was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    adwAdminPassword ResourceAnalyticsResourceAnalyticsInstanceAdwAdminPassword
    Details for the ADW Admin password. Password can be passed as VaultSecretPasswordDetails or PlainTextPasswordDetails. Example: {"passwordType":"PLAIN_TEXT","password":"..."} Example: {"passwordType":"VAULT_SECRET","secretId":"ocid..."}
    adwId string
    The OCID of the created ADW instance.
    compartmentId string
    (Updatable) The OCID of the compartment to create the ResourceAnalyticsInstance in.
    definedTags {[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.
    displayName string
    (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    freeformTags {[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"}
    isMutualTlsRequired boolean
    Require mutual TLS (mTLS) when authenticating connections to the ADW database.
    licenseModel string
    The Oracle license model that applies to the ADW instance.
    lifecycleDetails 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.
    nsgIds string[]
    List of Network Security Group OCID's. Example: ["ocid...", "ocid..."]
    oacId string
    The OCID of the OAC enabled for the ResourceAnalyticsInstance.
    state string
    The current state of the ResourceAnalyticsInstance.
    subnetId 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

    systemTags {[key: string]: string}
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated string
    The date and time the ResourceAnalyticsInstance was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    timeUpdated 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_password ResourceAnalyticsResourceAnalyticsInstanceAdwAdminPasswordArgs
    Details for the ADW Admin password. Password can be passed as VaultSecretPasswordDetails or PlainTextPasswordDetails. 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.
    defined_tags 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.
    freeform_tags 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_tls_required bool
    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

    system_tags 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
    adwAdminPassword Property Map
    Details for the ADW Admin password. Password can be passed as VaultSecretPasswordDetails or PlainTextPasswordDetails. Example: {"passwordType":"PLAIN_TEXT","password":"..."} Example: {"passwordType":"VAULT_SECRET","secretId":"ocid..."}
    adwId String
    The OCID of the created ADW instance.
    compartmentId String
    (Updatable) The OCID of the compartment to create the ResourceAnalyticsInstance in.
    definedTags 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.
    displayName String
    (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    freeformTags 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"}
    isMutualTlsRequired Boolean
    Require mutual TLS (mTLS) when authenticating connections to the ADW database.
    licenseModel String
    The Oracle license model that applies to the ADW instance.
    lifecycleDetails 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.
    nsgIds List<String>
    List of Network Security Group OCID's. Example: ["ocid...", "ocid..."]
    oacId String
    The OCID of the OAC enabled for the ResourceAnalyticsInstance.
    state String
    The current state of the ResourceAnalyticsInstance.
    subnetId 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

    systemTags Map<String>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    The date and time the ResourceAnalyticsInstance was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    timeUpdated 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

    PasswordType 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.
    SecretId string
    The OCID of the vault secret to use as the ADW admin password.
    PasswordType 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.
    SecretId string
    The OCID of the vault secret to use as the ADW admin password.
    passwordType 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.
    secretId String
    The OCID of the vault secret to use as the ADW admin password.
    passwordType 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.
    secretId 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.
    passwordType 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.
    secretId 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 oci Terraform Provider.
    oci logo
    Oracle Cloud Infrastructure v3.11.1 published on Friday, Nov 14, 2025 by Pulumi
      Meet Neo: Your AI Platform Teammate