1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. Analytics
  5. getAnalyticsInstances
Oracle Cloud Infrastructure v2.31.0 published on Thursday, Apr 17, 2025 by Pulumi

oci.Analytics.getAnalyticsInstances

Explore with Pulumi AI

Oracle Cloud Infrastructure v2.31.0 published on Thursday, Apr 17, 2025 by Pulumi

This data source provides the list of Analytics Instances in Oracle Cloud Infrastructure Analytics service.

List Analytics instances.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";

const testAnalyticsInstances = oci.Analytics.getAnalyticsInstances({
    compartmentId: compartmentId,
    capacityType: analyticsInstanceCapacityType,
    featureSet: analyticsInstanceFeatureSet,
    name: analyticsInstanceName,
    state: analyticsInstanceState,
});
Copy
import pulumi
import pulumi_oci as oci

test_analytics_instances = oci.Analytics.get_analytics_instances(compartment_id=compartment_id,
    capacity_type=analytics_instance_capacity_type,
    feature_set=analytics_instance_feature_set,
    name=analytics_instance_name,
    state=analytics_instance_state)
Copy
package main

import (
	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/analytics"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := analytics.GetAnalyticsInstances(ctx, &analytics.GetAnalyticsInstancesArgs{
			CompartmentId: compartmentId,
			CapacityType:  pulumi.StringRef(analyticsInstanceCapacityType),
			FeatureSet:    pulumi.StringRef(analyticsInstanceFeatureSet),
			Name:          pulumi.StringRef(analyticsInstanceName),
			State:         pulumi.StringRef(analyticsInstanceState),
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;

return await Deployment.RunAsync(() => 
{
    var testAnalyticsInstances = Oci.Analytics.GetAnalyticsInstances.Invoke(new()
    {
        CompartmentId = compartmentId,
        CapacityType = analyticsInstanceCapacityType,
        FeatureSet = analyticsInstanceFeatureSet,
        Name = analyticsInstanceName,
        State = analyticsInstanceState,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Analytics.AnalyticsFunctions;
import com.pulumi.oci.Analytics.inputs.GetAnalyticsInstancesArgs;
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) {
        final var testAnalyticsInstances = AnalyticsFunctions.getAnalyticsInstances(GetAnalyticsInstancesArgs.builder()
            .compartmentId(compartmentId)
            .capacityType(analyticsInstanceCapacityType)
            .featureSet(analyticsInstanceFeatureSet)
            .name(analyticsInstanceName)
            .state(analyticsInstanceState)
            .build());

    }
}
Copy
variables:
  testAnalyticsInstances:
    fn::invoke:
      function: oci:Analytics:getAnalyticsInstances
      arguments:
        compartmentId: ${compartmentId}
        capacityType: ${analyticsInstanceCapacityType}
        featureSet: ${analyticsInstanceFeatureSet}
        name: ${analyticsInstanceName}
        state: ${analyticsInstanceState}
Copy

Using getAnalyticsInstances

Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

function getAnalyticsInstances(args: GetAnalyticsInstancesArgs, opts?: InvokeOptions): Promise<GetAnalyticsInstancesResult>
function getAnalyticsInstancesOutput(args: GetAnalyticsInstancesOutputArgs, opts?: InvokeOptions): Output<GetAnalyticsInstancesResult>
Copy
def get_analytics_instances(capacity_type: Optional[str] = None,
                            compartment_id: Optional[str] = None,
                            feature_set: Optional[str] = None,
                            filters: Optional[Sequence[_analytics.GetAnalyticsInstancesFilter]] = None,
                            name: Optional[str] = None,
                            state: Optional[str] = None,
                            opts: Optional[InvokeOptions] = None) -> GetAnalyticsInstancesResult
def get_analytics_instances_output(capacity_type: Optional[pulumi.Input[str]] = None,
                            compartment_id: Optional[pulumi.Input[str]] = None,
                            feature_set: Optional[pulumi.Input[str]] = None,
                            filters: Optional[pulumi.Input[Sequence[pulumi.Input[_analytics.GetAnalyticsInstancesFilterArgs]]]] = None,
                            name: Optional[pulumi.Input[str]] = None,
                            state: Optional[pulumi.Input[str]] = None,
                            opts: Optional[InvokeOptions] = None) -> Output[GetAnalyticsInstancesResult]
Copy
func GetAnalyticsInstances(ctx *Context, args *GetAnalyticsInstancesArgs, opts ...InvokeOption) (*GetAnalyticsInstancesResult, error)
func GetAnalyticsInstancesOutput(ctx *Context, args *GetAnalyticsInstancesOutputArgs, opts ...InvokeOption) GetAnalyticsInstancesResultOutput
Copy

> Note: This function is named GetAnalyticsInstances in the Go SDK.

public static class GetAnalyticsInstances 
{
    public static Task<GetAnalyticsInstancesResult> InvokeAsync(GetAnalyticsInstancesArgs args, InvokeOptions? opts = null)
    public static Output<GetAnalyticsInstancesResult> Invoke(GetAnalyticsInstancesInvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetAnalyticsInstancesResult> getAnalyticsInstances(GetAnalyticsInstancesArgs args, InvokeOptions options)
public static Output<GetAnalyticsInstancesResult> getAnalyticsInstances(GetAnalyticsInstancesArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: oci:Analytics/getAnalyticsInstances:getAnalyticsInstances
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

CompartmentId This property is required. string
The OCID of the compartment.
CapacityType string
A filter to only return resources matching the capacity type enum. Values are case-insensitive.
FeatureSet string
A filter to only return resources matching the feature set. Values are case-insensitive.
Filters Changes to this property will trigger replacement. List<GetAnalyticsInstancesFilter>
Name string
A filter to return only resources that match the given name exactly.
State string
A filter to only return resources matching the lifecycle state. The state value is case-insensitive.
CompartmentId This property is required. string
The OCID of the compartment.
CapacityType string
A filter to only return resources matching the capacity type enum. Values are case-insensitive.
FeatureSet string
A filter to only return resources matching the feature set. Values are case-insensitive.
Filters Changes to this property will trigger replacement. []GetAnalyticsInstancesFilter
Name string
A filter to return only resources that match the given name exactly.
State string
A filter to only return resources matching the lifecycle state. The state value is case-insensitive.
compartmentId This property is required. String
The OCID of the compartment.
capacityType String
A filter to only return resources matching the capacity type enum. Values are case-insensitive.
featureSet String
A filter to only return resources matching the feature set. Values are case-insensitive.
filters Changes to this property will trigger replacement. List<GetInstancesFilter>
name String
A filter to return only resources that match the given name exactly.
state String
A filter to only return resources matching the lifecycle state. The state value is case-insensitive.
compartmentId This property is required. string
The OCID of the compartment.
capacityType string
A filter to only return resources matching the capacity type enum. Values are case-insensitive.
featureSet string
A filter to only return resources matching the feature set. Values are case-insensitive.
filters Changes to this property will trigger replacement. GetAnalyticsInstancesFilter[]
name string
A filter to return only resources that match the given name exactly.
state string
A filter to only return resources matching the lifecycle state. The state value is case-insensitive.
compartment_id This property is required. str
The OCID of the compartment.
capacity_type str
A filter to only return resources matching the capacity type enum. Values are case-insensitive.
feature_set str
A filter to only return resources matching the feature set. Values are case-insensitive.
filters Changes to this property will trigger replacement. Sequence[analytics.GetAnalyticsInstancesFilter]
name str
A filter to return only resources that match the given name exactly.
state str
A filter to only return resources matching the lifecycle state. The state value is case-insensitive.
compartmentId This property is required. String
The OCID of the compartment.
capacityType String
A filter to only return resources matching the capacity type enum. Values are case-insensitive.
featureSet String
A filter to only return resources matching the feature set. Values are case-insensitive.
filters Changes to this property will trigger replacement. List<Property Map>
name String
A filter to return only resources that match the given name exactly.
state String
A filter to only return resources matching the lifecycle state. The state value is case-insensitive.

getAnalyticsInstances Result

The following output properties are available:

AnalyticsInstances List<GetAnalyticsInstancesAnalyticsInstance>
The list of analytics_instances.
CompartmentId string
The OCID of the compartment.
Id string
The provider-assigned unique ID for this managed resource.
CapacityType string
The capacity model to use. Accepted values are: OLPU_COUNT, USER_COUNT
FeatureSet string
Analytics feature set.
Filters List<GetAnalyticsInstancesFilter>
Name string
The name of the Analytics instance. This name must be unique in the tenancy and cannot be changed.
State string
The current state of an instance.
AnalyticsInstances []GetAnalyticsInstancesAnalyticsInstance
The list of analytics_instances.
CompartmentId string
The OCID of the compartment.
Id string
The provider-assigned unique ID for this managed resource.
CapacityType string
The capacity model to use. Accepted values are: OLPU_COUNT, USER_COUNT
FeatureSet string
Analytics feature set.
Filters []GetAnalyticsInstancesFilter
Name string
The name of the Analytics instance. This name must be unique in the tenancy and cannot be changed.
State string
The current state of an instance.
analyticsInstances List<GetInstancesInstance>
The list of analytics_instances.
compartmentId String
The OCID of the compartment.
id String
The provider-assigned unique ID for this managed resource.
capacityType String
The capacity model to use. Accepted values are: OLPU_COUNT, USER_COUNT
featureSet String
Analytics feature set.
filters List<GetInstancesFilter>
name String
The name of the Analytics instance. This name must be unique in the tenancy and cannot be changed.
state String
The current state of an instance.
analyticsInstances GetAnalyticsInstancesAnalyticsInstance[]
The list of analytics_instances.
compartmentId string
The OCID of the compartment.
id string
The provider-assigned unique ID for this managed resource.
capacityType string
The capacity model to use. Accepted values are: OLPU_COUNT, USER_COUNT
featureSet string
Analytics feature set.
filters GetAnalyticsInstancesFilter[]
name string
The name of the Analytics instance. This name must be unique in the tenancy and cannot be changed.
state string
The current state of an instance.
analytics_instances Sequence[analytics.GetAnalyticsInstancesAnalyticsInstance]
The list of analytics_instances.
compartment_id str
The OCID of the compartment.
id str
The provider-assigned unique ID for this managed resource.
capacity_type str
The capacity model to use. Accepted values are: OLPU_COUNT, USER_COUNT
feature_set str
Analytics feature set.
filters Sequence[analytics.GetAnalyticsInstancesFilter]
name str
The name of the Analytics instance. This name must be unique in the tenancy and cannot be changed.
state str
The current state of an instance.
analyticsInstances List<Property Map>
The list of analytics_instances.
compartmentId String
The OCID of the compartment.
id String
The provider-assigned unique ID for this managed resource.
capacityType String
The capacity model to use. Accepted values are: OLPU_COUNT, USER_COUNT
featureSet String
Analytics feature set.
filters List<Property Map>
name String
The name of the Analytics instance. This name must be unique in the tenancy and cannot be changed.
state String
The current state of an instance.

Supporting Types

GetAnalyticsInstancesAnalyticsInstance

AdminUser This property is required. string
Capacities This property is required. List<GetAnalyticsInstancesAnalyticsInstanceCapacity>
Service instance capacity metadata (e.g.: OLPU count, number of users, ...etc...).
CompartmentId This property is required. string
The OCID of the compartment.
DefinedTags This property is required. Dictionary<string, string>
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 This property is required. string
Description of the vanity url.
DomainId This property is required. string
Identity domain OCID.
EmailNotification This property is required. string
Email address receiving notifications.
FeatureBundle This property is required. string
The feature set of an Analytics instance.
FeatureSet This property is required. string
A filter to only return resources matching the feature set. Values are case-insensitive.
FreeformTags This property is required. Dictionary<string, string>
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"}
Id This property is required. string
The Virtual Cloud Network OCID.
IdcsAccessToken This property is required. string
KmsKeyId This property is required. string
OCID of the Oracle Cloud Infrastructure Vault Key encrypting the customer data stored in this Analytics instance. A null value indicates Oracle managed default encryption.
LicenseType This property is required. string
The license used for the service.
Name This property is required. string
A filter to return only resources that match the given name exactly.
NetworkEndpointDetails This property is required. List<GetAnalyticsInstancesAnalyticsInstanceNetworkEndpointDetail>
Base representation of a network endpoint.
ServiceUrl This property is required. string
URL of the Analytics service.
State This property is required. string
A filter to only return resources matching the lifecycle state. The state value is case-insensitive.
SystemTags This property is required. Dictionary<string, string>
System tags for this resource. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.key": "value"}
TimeCreated This property is required. string
The date and time the instance was created, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z
TimeUpdated This property is required. string
The date and time the instance was last updated (in the format defined by RFC3339). This timestamp represents updates made through this API. External events do not influence it.
UpdateChannel This property is required. string
Analytics instance update channel.
AdminUser This property is required. string
Capacities This property is required. []GetAnalyticsInstancesAnalyticsInstanceCapacity
Service instance capacity metadata (e.g.: OLPU count, number of users, ...etc...).
CompartmentId This property is required. string
The OCID of the compartment.
DefinedTags This property is required. map[string]string
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 This property is required. string
Description of the vanity url.
DomainId This property is required. string
Identity domain OCID.
EmailNotification This property is required. string
Email address receiving notifications.
FeatureBundle This property is required. string
The feature set of an Analytics instance.
FeatureSet This property is required. string
A filter to only return resources matching the feature set. Values are case-insensitive.
FreeformTags This property is required. map[string]string
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"}
Id This property is required. string
The Virtual Cloud Network OCID.
IdcsAccessToken This property is required. string
KmsKeyId This property is required. string
OCID of the Oracle Cloud Infrastructure Vault Key encrypting the customer data stored in this Analytics instance. A null value indicates Oracle managed default encryption.
LicenseType This property is required. string
The license used for the service.
Name This property is required. string
A filter to return only resources that match the given name exactly.
NetworkEndpointDetails This property is required. []GetAnalyticsInstancesAnalyticsInstanceNetworkEndpointDetail
Base representation of a network endpoint.
ServiceUrl This property is required. string
URL of the Analytics service.
State This property is required. string
A filter to only return resources matching the lifecycle state. The state value is case-insensitive.
SystemTags This property is required. map[string]string
System tags for this resource. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.key": "value"}
TimeCreated This property is required. string
The date and time the instance was created, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z
TimeUpdated This property is required. string
The date and time the instance was last updated (in the format defined by RFC3339). This timestamp represents updates made through this API. External events do not influence it.
UpdateChannel This property is required. string
Analytics instance update channel.
adminUser This property is required. String
capacities This property is required. List<GetInstancesInstanceCapacity>
Service instance capacity metadata (e.g.: OLPU count, number of users, ...etc...).
compartmentId This property is required. String
The OCID of the compartment.
definedTags This property is required. Map<String,String>
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 This property is required. String
Description of the vanity url.
domainId This property is required. String
Identity domain OCID.
emailNotification This property is required. String
Email address receiving notifications.
featureBundle This property is required. String
The feature set of an Analytics instance.
featureSet This property is required. String
A filter to only return resources matching the feature set. Values are case-insensitive.
freeformTags This property is required. Map<String,String>
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"}
id This property is required. String
The Virtual Cloud Network OCID.
idcsAccessToken This property is required. String
kmsKeyId This property is required. String
OCID of the Oracle Cloud Infrastructure Vault Key encrypting the customer data stored in this Analytics instance. A null value indicates Oracle managed default encryption.
licenseType This property is required. String
The license used for the service.
name This property is required. String
A filter to return only resources that match the given name exactly.
networkEndpointDetails This property is required. List<GetInstancesInstanceNetworkEndpointDetail>
Base representation of a network endpoint.
serviceUrl This property is required. String
URL of the Analytics service.
state This property is required. String
A filter to only return resources matching the lifecycle state. The state value is case-insensitive.
systemTags This property is required. Map<String,String>
System tags for this resource. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.key": "value"}
timeCreated This property is required. String
The date and time the instance was created, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z
timeUpdated This property is required. String
The date and time the instance was last updated (in the format defined by RFC3339). This timestamp represents updates made through this API. External events do not influence it.
updateChannel This property is required. String
Analytics instance update channel.
adminUser This property is required. string
capacities This property is required. GetAnalyticsInstancesAnalyticsInstanceCapacity[]
Service instance capacity metadata (e.g.: OLPU count, number of users, ...etc...).
compartmentId This property is required. string
The OCID of the compartment.
definedTags This property is required. {[key: string]: string}
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 This property is required. string
Description of the vanity url.
domainId This property is required. string
Identity domain OCID.
emailNotification This property is required. string
Email address receiving notifications.
featureBundle This property is required. string
The feature set of an Analytics instance.
featureSet This property is required. string
A filter to only return resources matching the feature set. Values are case-insensitive.
freeformTags This property is required. {[key: string]: string}
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"}
id This property is required. string
The Virtual Cloud Network OCID.
idcsAccessToken This property is required. string
kmsKeyId This property is required. string
OCID of the Oracle Cloud Infrastructure Vault Key encrypting the customer data stored in this Analytics instance. A null value indicates Oracle managed default encryption.
licenseType This property is required. string
The license used for the service.
name This property is required. string
A filter to return only resources that match the given name exactly.
networkEndpointDetails This property is required. GetAnalyticsInstancesAnalyticsInstanceNetworkEndpointDetail[]
Base representation of a network endpoint.
serviceUrl This property is required. string
URL of the Analytics service.
state This property is required. string
A filter to only return resources matching the lifecycle state. The state value is case-insensitive.
systemTags This property is required. {[key: string]: string}
System tags for this resource. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.key": "value"}
timeCreated This property is required. string
The date and time the instance was created, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z
timeUpdated This property is required. string
The date and time the instance was last updated (in the format defined by RFC3339). This timestamp represents updates made through this API. External events do not influence it.
updateChannel This property is required. string
Analytics instance update channel.
admin_user This property is required. str
capacities This property is required. Sequence[analytics.GetAnalyticsInstancesAnalyticsInstanceCapacity]
Service instance capacity metadata (e.g.: OLPU count, number of users, ...etc...).
compartment_id This property is required. str
The OCID of the compartment.
defined_tags This property is required. Mapping[str, str]
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 This property is required. str
Description of the vanity url.
domain_id This property is required. str
Identity domain OCID.
email_notification This property is required. str
Email address receiving notifications.
feature_bundle This property is required. str
The feature set of an Analytics instance.
feature_set This property is required. str
A filter to only return resources matching the feature set. Values are case-insensitive.
freeform_tags This property is required. Mapping[str, str]
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"}
id This property is required. str
The Virtual Cloud Network OCID.
idcs_access_token This property is required. str
kms_key_id This property is required. str
OCID of the Oracle Cloud Infrastructure Vault Key encrypting the customer data stored in this Analytics instance. A null value indicates Oracle managed default encryption.
license_type This property is required. str
The license used for the service.
name This property is required. str
A filter to return only resources that match the given name exactly.
network_endpoint_details This property is required. Sequence[analytics.GetAnalyticsInstancesAnalyticsInstanceNetworkEndpointDetail]
Base representation of a network endpoint.
service_url This property is required. str
URL of the Analytics service.
state This property is required. str
A filter to only return resources matching the lifecycle state. The state value is case-insensitive.
system_tags This property is required. Mapping[str, str]
System tags for this resource. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.key": "value"}
time_created This property is required. str
The date and time the instance was created, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z
time_updated This property is required. str
The date and time the instance was last updated (in the format defined by RFC3339). This timestamp represents updates made through this API. External events do not influence it.
update_channel This property is required. str
Analytics instance update channel.
adminUser This property is required. String
capacities This property is required. List<Property Map>
Service instance capacity metadata (e.g.: OLPU count, number of users, ...etc...).
compartmentId This property is required. String
The OCID of the compartment.
definedTags This property is required. Map<String>
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 This property is required. String
Description of the vanity url.
domainId This property is required. String
Identity domain OCID.
emailNotification This property is required. String
Email address receiving notifications.
featureBundle This property is required. String
The feature set of an Analytics instance.
featureSet This property is required. String
A filter to only return resources matching the feature set. Values are case-insensitive.
freeformTags This property is required. Map<String>
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"}
id This property is required. String
The Virtual Cloud Network OCID.
idcsAccessToken This property is required. String
kmsKeyId This property is required. String
OCID of the Oracle Cloud Infrastructure Vault Key encrypting the customer data stored in this Analytics instance. A null value indicates Oracle managed default encryption.
licenseType This property is required. String
The license used for the service.
name This property is required. String
A filter to return only resources that match the given name exactly.
networkEndpointDetails This property is required. List<Property Map>
Base representation of a network endpoint.
serviceUrl This property is required. String
URL of the Analytics service.
state This property is required. String
A filter to only return resources matching the lifecycle state. The state value is case-insensitive.
systemTags This property is required. Map<String>
System tags for this resource. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.key": "value"}
timeCreated This property is required. String
The date and time the instance was created, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z
timeUpdated This property is required. String
The date and time the instance was last updated (in the format defined by RFC3339). This timestamp represents updates made through this API. External events do not influence it.
updateChannel This property is required. String
Analytics instance update channel.

GetAnalyticsInstancesAnalyticsInstanceCapacity

CapacityType This property is required. string
A filter to only return resources matching the capacity type enum. Values are case-insensitive.
CapacityValue This property is required. int
The capacity value selected, either the number of OCPUs (OLPU_COUNT) or the number of users (USER_COUNT). This parameter affects the number of OCPUs, amount of memory, and other resources allocated to the instance.
CapacityType This property is required. string
A filter to only return resources matching the capacity type enum. Values are case-insensitive.
CapacityValue This property is required. int
The capacity value selected, either the number of OCPUs (OLPU_COUNT) or the number of users (USER_COUNT). This parameter affects the number of OCPUs, amount of memory, and other resources allocated to the instance.
capacityType This property is required. String
A filter to only return resources matching the capacity type enum. Values are case-insensitive.
capacityValue This property is required. Integer
The capacity value selected, either the number of OCPUs (OLPU_COUNT) or the number of users (USER_COUNT). This parameter affects the number of OCPUs, amount of memory, and other resources allocated to the instance.
capacityType This property is required. string
A filter to only return resources matching the capacity type enum. Values are case-insensitive.
capacityValue This property is required. number
The capacity value selected, either the number of OCPUs (OLPU_COUNT) or the number of users (USER_COUNT). This parameter affects the number of OCPUs, amount of memory, and other resources allocated to the instance.
capacity_type This property is required. str
A filter to only return resources matching the capacity type enum. Values are case-insensitive.
capacity_value This property is required. int
The capacity value selected, either the number of OCPUs (OLPU_COUNT) or the number of users (USER_COUNT). This parameter affects the number of OCPUs, amount of memory, and other resources allocated to the instance.
capacityType This property is required. String
A filter to only return resources matching the capacity type enum. Values are case-insensitive.
capacityValue This property is required. Number
The capacity value selected, either the number of OCPUs (OLPU_COUNT) or the number of users (USER_COUNT). This parameter affects the number of OCPUs, amount of memory, and other resources allocated to the instance.

GetAnalyticsInstancesAnalyticsInstanceNetworkEndpointDetail

NetworkEndpointType This property is required. string
The type of network endpoint.
NetworkSecurityGroupIds This property is required. List<string>
Network Security Group OCIDs for an Analytics instance.
SubnetId This property is required. string
OCID of the customer subnet connected to private access channel.
VcnId This property is required. string
OCID of the customer VCN peered with private access channel.
WhitelistedIps This property is required. List<string>
Source IP addresses or IP address ranges in ingress rules.
WhitelistedServices This property is required. List<string>
Oracle Cloud Services that are allowed to access this Analytics instance.
WhitelistedVcns This property is required. List<GetAnalyticsInstancesAnalyticsInstanceNetworkEndpointDetailWhitelistedVcn>
Virtual Cloud Networks allowed to access this network endpoint.
NetworkEndpointType This property is required. string
The type of network endpoint.
NetworkSecurityGroupIds This property is required. []string
Network Security Group OCIDs for an Analytics instance.
SubnetId This property is required. string
OCID of the customer subnet connected to private access channel.
VcnId This property is required. string
OCID of the customer VCN peered with private access channel.
WhitelistedIps This property is required. []string
Source IP addresses or IP address ranges in ingress rules.
WhitelistedServices This property is required. []string
Oracle Cloud Services that are allowed to access this Analytics instance.
WhitelistedVcns This property is required. []GetAnalyticsInstancesAnalyticsInstanceNetworkEndpointDetailWhitelistedVcn
Virtual Cloud Networks allowed to access this network endpoint.
networkEndpointType This property is required. String
The type of network endpoint.
networkSecurityGroupIds This property is required. List<String>
Network Security Group OCIDs for an Analytics instance.
subnetId This property is required. String
OCID of the customer subnet connected to private access channel.
vcnId This property is required. String
OCID of the customer VCN peered with private access channel.
whitelistedIps This property is required. List<String>
Source IP addresses or IP address ranges in ingress rules.
whitelistedServices This property is required. List<String>
Oracle Cloud Services that are allowed to access this Analytics instance.
whitelistedVcns This property is required. List<GetInstancesInstanceNetworkEndpointDetailWhitelistedVcn>
Virtual Cloud Networks allowed to access this network endpoint.
networkEndpointType This property is required. string
The type of network endpoint.
networkSecurityGroupIds This property is required. string[]
Network Security Group OCIDs for an Analytics instance.
subnetId This property is required. string
OCID of the customer subnet connected to private access channel.
vcnId This property is required. string
OCID of the customer VCN peered with private access channel.
whitelistedIps This property is required. string[]
Source IP addresses or IP address ranges in ingress rules.
whitelistedServices This property is required. string[]
Oracle Cloud Services that are allowed to access this Analytics instance.
whitelistedVcns This property is required. GetAnalyticsInstancesAnalyticsInstanceNetworkEndpointDetailWhitelistedVcn[]
Virtual Cloud Networks allowed to access this network endpoint.
network_endpoint_type This property is required. str
The type of network endpoint.
network_security_group_ids This property is required. Sequence[str]
Network Security Group OCIDs for an Analytics instance.
subnet_id This property is required. str
OCID of the customer subnet connected to private access channel.
vcn_id This property is required. str
OCID of the customer VCN peered with private access channel.
whitelisted_ips This property is required. Sequence[str]
Source IP addresses or IP address ranges in ingress rules.
whitelisted_services This property is required. Sequence[str]
Oracle Cloud Services that are allowed to access this Analytics instance.
whitelisted_vcns This property is required. Sequence[analytics.GetAnalyticsInstancesAnalyticsInstanceNetworkEndpointDetailWhitelistedVcn]
Virtual Cloud Networks allowed to access this network endpoint.
networkEndpointType This property is required. String
The type of network endpoint.
networkSecurityGroupIds This property is required. List<String>
Network Security Group OCIDs for an Analytics instance.
subnetId This property is required. String
OCID of the customer subnet connected to private access channel.
vcnId This property is required. String
OCID of the customer VCN peered with private access channel.
whitelistedIps This property is required. List<String>
Source IP addresses or IP address ranges in ingress rules.
whitelistedServices This property is required. List<String>
Oracle Cloud Services that are allowed to access this Analytics instance.
whitelistedVcns This property is required. List<Property Map>
Virtual Cloud Networks allowed to access this network endpoint.

GetAnalyticsInstancesAnalyticsInstanceNetworkEndpointDetailWhitelistedVcn

Id This property is required. string
The Virtual Cloud Network OCID.
WhitelistedIps This property is required. List<string>
Source IP addresses or IP address ranges in ingress rules.
Id This property is required. string
The Virtual Cloud Network OCID.
WhitelistedIps This property is required. []string
Source IP addresses or IP address ranges in ingress rules.
id This property is required. String
The Virtual Cloud Network OCID.
whitelistedIps This property is required. List<String>
Source IP addresses or IP address ranges in ingress rules.
id This property is required. string
The Virtual Cloud Network OCID.
whitelistedIps This property is required. string[]
Source IP addresses or IP address ranges in ingress rules.
id This property is required. str
The Virtual Cloud Network OCID.
whitelisted_ips This property is required. Sequence[str]
Source IP addresses or IP address ranges in ingress rules.
id This property is required. String
The Virtual Cloud Network OCID.
whitelistedIps This property is required. List<String>
Source IP addresses or IP address ranges in ingress rules.

GetAnalyticsInstancesFilter

Name This property is required. string
A filter to return only resources that match the given name exactly.
Values This property is required. List<string>
Regex bool
Name This property is required. string
A filter to return only resources that match the given name exactly.
Values This property is required. []string
Regex bool
name This property is required. String
A filter to return only resources that match the given name exactly.
values This property is required. List<String>
regex Boolean
name This property is required. string
A filter to return only resources that match the given name exactly.
values This property is required. string[]
regex boolean
name This property is required. str
A filter to return only resources that match the given name exactly.
values This property is required. Sequence[str]
regex bool
name This property is required. String
A filter to return only resources that match the given name exactly.
values This property is required. List<String>
regex Boolean

Package Details

Repository
oci pulumi/pulumi-oci
License
Apache-2.0
Notes
This Pulumi package is based on the oci Terraform Provider.
Oracle Cloud Infrastructure v2.31.0 published on Thursday, Apr 17, 2025 by Pulumi