import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Analytics Instance resource in Oracle Cloud Infrastructure Analytics service. * * Information about a specific Analytics instance. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testAnalyticsInstance = oci.analytics.getAnalyticsInstance({ * analyticsInstanceId: testAnalyticsInstanceOciAnalyticsAnalyticsInstance.id, * }); * ``` */ export declare function getAnalyticsInstance(args: GetAnalyticsInstanceArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getAnalyticsInstance. */ export interface GetAnalyticsInstanceArgs { /** * The OCID of the Analytics instance. */ analyticsInstanceId: string; } /** * A collection of values returned by getAnalyticsInstance. */ export interface GetAnalyticsInstanceResult { readonly adminUser: string; readonly analyticsInstanceId: string; /** * The capacity (in OCPU's) to be allocated for this resource. */ readonly capacities: outputs.Analytics.GetAnalyticsInstanceCapacity[]; /** * The OCID of the compartment. */ readonly compartmentId: string; /** * Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}` */ readonly definedTags: { [key: string]: string; }; /** * Description of the vanity URL. */ readonly description: string; /** * Identity domain OCID. */ readonly domainId: string; /** * Email address receiving notifications. */ readonly emailNotification: string; /** * The feature set of an Analytics instance. */ readonly featureBundle: string; /** * The feature set. Either `SELF_SERVICE_ANALYTICS` (Professional Edition) or `ENTERPRISE_ANALYTICS` (Enterprise Edition). */ readonly featureSet: 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](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}` */ readonly freeformTags: { [key: string]: string; }; /** * Unique identifier and name of resource group. Must be unique within the instance */ readonly id: string; readonly idcsAccessToken: string; /** * OCID of the Oracle Cloud Infrastructure Vault Key encrypting the customer data stored in this Analytics instance. A null value indicates that the default Oracle-managed encryption is used. */ readonly kmsKeyId: string; /** * The license used for the service. */ readonly licenseType: string; /** * The name of the Analytics instance. This name must be unique in the tenancy and can't be changed. The name must start with a letter and can contain only letters, numbers and dash (-). */ readonly name: string; /** * Base representation of a network endpoint. */ readonly networkEndpointDetails: outputs.Analytics.GetAnalyticsInstanceNetworkEndpointDetail[]; /** * List of resource groups for this Analytics instance. The resource group id must be unique within the instance. */ readonly resourceGroups: outputs.Analytics.GetAnalyticsInstanceResourceGroup[]; /** * URL of the Analytics instance. */ readonly serviceUrl: string; /** * The current state of the Analytics instance. */ readonly state: string; /** * System tags for this resource. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.key": "value"}` */ readonly systemTags: { [key: string]: string; }; /** * The date and time the Analytics instance was created, in the format defined by RFC3339. Example: `2016-08-25T21:10:29.600Z` */ readonly timeCreated: string; /** * The date and time the Analytics instance was last updated (in the format defined by RFC3339). This timestamp represents updates made through this API. External events don't affect it. */ readonly timeUpdated: string; /** * The Analytics instance update cycle. */ readonly updateChannel: string; } /** * This data source provides details about a specific Analytics Instance resource in Oracle Cloud Infrastructure Analytics service. * * Information about a specific Analytics instance. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testAnalyticsInstance = oci.analytics.getAnalyticsInstance({ * analyticsInstanceId: testAnalyticsInstanceOciAnalyticsAnalyticsInstance.id, * }); * ``` */ export declare function getAnalyticsInstanceOutput(args: GetAnalyticsInstanceOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getAnalyticsInstance. */ export interface GetAnalyticsInstanceOutputArgs { /** * The OCID of the Analytics instance. */ analyticsInstanceId: pulumi.Input; } //# sourceMappingURL=getAnalyticsInstance.d.ts.map