import * as pulumi from "@pulumi/pulumi"; /** * This resource provides the Occ Customer Group Occ Customer resource in Oracle Cloud Infrastructure Capacity Management service. * Api doc link for the resource: https://docs.oracle.com/iaas/api/#/en/occcm/latest/OccCustomerGroupOccCustomer * * Example terraform configs related to the resource : https://github.com/oracle/terraform-provider-oci/tree/master/examples/capacity_management * * Create customer. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testOccCustomerGroupOccCustomer = new oci.capacitymanagement.OccCustomerGroupOccCustomer("test_occ_customer_group_occ_customer", { * displayName: occCustomerGroupOccCustomerDisplayName, * occCustomerGroupId: testOccCustomerGroup.id, * tenancyId: testTenancy.id, * description: occCustomerGroupOccCustomerDescription, * status: occCustomerGroupOccCustomerStatus, * }); * ``` * * ## Import * * OccCustomerGroupOccCustomers can be imported using the `id`, e.g. * * ```sh * $ pulumi import oci:CapacityManagement/occCustomerGroupOccCustomer:OccCustomerGroupOccCustomer test_occ_customer_group_occ_customer "id" * ``` */ export declare class OccCustomerGroupOccCustomer extends pulumi.CustomResource { /** * Get an existing OccCustomerGroupOccCustomer 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?: OccCustomerGroupOccCustomerState, opts?: pulumi.CustomResourceOptions): OccCustomerGroupOccCustomer; /** * Returns true if the given object is an instance of OccCustomerGroupOccCustomer. 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 OccCustomerGroupOccCustomer; /** * (Updatable) The description about the customer group. */ readonly description: pulumi.Output; /** * (Updatable) The display name for the customer. */ readonly displayName: pulumi.Output; /** * The OCID of the customer group. */ readonly occCustomerGroupId: pulumi.Output; /** * (Updatable) To determine whether the customer is enabled/disabled. */ readonly status: pulumi.Output; /** * The OCID of the tenancy belonging to the customer. * * ** 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 tenancyId: pulumi.Output; /** * Create a OccCustomerGroupOccCustomer 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: OccCustomerGroupOccCustomerArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering OccCustomerGroupOccCustomer resources. */ export interface OccCustomerGroupOccCustomerState { /** * (Updatable) The description about the customer group. */ description?: pulumi.Input; /** * (Updatable) The display name for the customer. */ displayName?: pulumi.Input; /** * The OCID of the customer group. */ occCustomerGroupId?: pulumi.Input; /** * (Updatable) To determine whether the customer is enabled/disabled. */ status?: pulumi.Input; /** * The OCID of the tenancy belonging to the customer. * * ** 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 */ tenancyId?: pulumi.Input; } /** * The set of arguments for constructing a OccCustomerGroupOccCustomer resource. */ export interface OccCustomerGroupOccCustomerArgs { /** * (Updatable) The description about the customer group. */ description?: pulumi.Input; /** * (Updatable) The display name for the customer. */ displayName: pulumi.Input; /** * The OCID of the customer group. */ occCustomerGroupId: pulumi.Input; /** * (Updatable) To determine whether the customer is enabled/disabled. */ status?: pulumi.Input; /** * The OCID of the tenancy belonging to the customer. * * ** 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 */ tenancyId: pulumi.Input; } //# sourceMappingURL=occCustomerGroupOccCustomer.d.ts.map