import * as pulumi from "@pulumi/pulumi"; /** * This resource provides the Analytics Instance Resource Group resource in Oracle Cloud Infrastructure Analytics service. * Api doc link for the resource: https://docs.oracle.com/iaas/api/#/en/analytics/latest/ResourceGroup * * Example terraform configs related to the resource : https://github.com/oracle/terraform-provider-oci/tree/master/examples/analytics * * Create a new resource group for the instance * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testAnalyticsInstanceResourceGroup = new oci.analytics.AnalyticsInstanceResourceGroup("test_analytics_instance_resource_group", { * analyticsInstanceId: testAnalyticsInstance.id, * capacity: Number(analyticsInstanceResourceGroupCapacity), * resourceName: testResource.name, * description: analyticsInstanceResourceGroupDescription, * displayName: analyticsInstanceResourceGroupDisplayName, * }); * ``` * * ## Import * * AnalyticsInstanceResourceGroups can be imported using the `id`, e.g. * * ```sh * $ pulumi import oci:Analytics/analyticsInstanceResourceGroup:AnalyticsInstanceResourceGroup test_analytics_instance_resource_group "analyticsInstances/{analyticsInstanceId}/resourceGroups/{analyticsInstanceResourceGroupId}" * ``` */ export declare class AnalyticsInstanceResourceGroup extends pulumi.CustomResource { /** * Get an existing AnalyticsInstanceResourceGroup resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: AnalyticsInstanceResourceGroupState, opts?: pulumi.CustomResourceOptions): AnalyticsInstanceResourceGroup; /** * Returns true if the given object is an instance of AnalyticsInstanceResourceGroup. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is AnalyticsInstanceResourceGroup; /** * The OCID of the Analytics instance. */ readonly analyticsInstanceId: pulumi.Output; /** * (Updatable) The capacity (in OCPU's) to be allocated for this resource. */ readonly capacity: pulumi.Output; /** * (Updatable) Optional description of the resource group */ readonly description: pulumi.Output; /** * (Updatable) Meaningful name of resource group for end user */ readonly displayName: pulumi.Output; /** * (Updatable) Meaningful name of resource group for end user * * ** 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 */ readonly resourceName: pulumi.Output; /** * Create a AnalyticsInstanceResourceGroup resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: AnalyticsInstanceResourceGroupArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering AnalyticsInstanceResourceGroup resources. */ export interface AnalyticsInstanceResourceGroupState { /** * The OCID of the Analytics instance. */ analyticsInstanceId?: pulumi.Input; /** * (Updatable) The capacity (in OCPU's) to be allocated for this resource. */ capacity?: pulumi.Input; /** * (Updatable) Optional description of the resource group */ description?: pulumi.Input; /** * (Updatable) Meaningful name of resource group for end user */ displayName?: pulumi.Input; /** * (Updatable) Meaningful name of resource group for end user * * ** 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 */ resourceName?: pulumi.Input; } /** * The set of arguments for constructing a AnalyticsInstanceResourceGroup resource. */ export interface AnalyticsInstanceResourceGroupArgs { /** * The OCID of the Analytics instance. */ analyticsInstanceId: pulumi.Input; /** * (Updatable) The capacity (in OCPU's) to be allocated for this resource. */ capacity: pulumi.Input; /** * (Updatable) Optional description of the resource group */ description?: pulumi.Input; /** * (Updatable) Meaningful name of resource group for end user */ displayName?: pulumi.Input; /** * (Updatable) Meaningful name of resource group for end user * * ** 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 */ resourceName: pulumi.Input; } //# sourceMappingURL=analyticsInstanceResourceGroup.d.ts.map