1. Packages
  2. Azure Native
  3. API Docs
  4. connectedcache
  5. EnterpriseMccCustomer
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.73.0 published on Wednesday, Nov 20, 2024 by Pulumi

azure-native.connectedcache.EnterpriseMccCustomer

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.73.0 published on Wednesday, Nov 20, 2024 by Pulumi

    Represents the high level Nodes needed to provision customer resources Azure REST API version: 2023-05-01-preview.

    Example Usage

    EnterpriseMccCustomers_CreateOrUpdate

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var enterpriseMccCustomer = new AzureNative.ConnectedCache.EnterpriseMccCustomer("enterpriseMccCustomer", new()
        {
            CustomerResourceName = "MccRPTest1",
            Location = "westus",
            Properties = new AzureNative.ConnectedCache.Inputs.CustomerPropertyArgs
            {
                AdditionalCustomerProperties = new AzureNative.ConnectedCache.Inputs.AdditionalCustomerPropertiesArgs
                {
                    CustomerAsn = "hgrelgnrtdkleisnepfolu",
                    CustomerEmail = "zdjgibsidydyzm",
                    CustomerEntitlementExpiration = "2024-01-30T00:54:04.773Z",
                    CustomerEntitlementSkuGuid = "rvzmdpxyflgqetvpwupnfaxsweiiz",
                    CustomerEntitlementSkuId = "b",
                    CustomerEntitlementSkuName = "waaqfijr",
                    CustomerTransitAsn = "habgklnxqzmozqpazoyejwiphezpi",
                    CustomerTransitState = "voblixkxfejbmhxilb",
                    OptionalProperty1 = "qhmwxza",
                    OptionalProperty2 = "l",
                    OptionalProperty3 = "mblwwvbie",
                    OptionalProperty4 = "vzuek",
                    OptionalProperty5 = "fzjodscdfcdr",
                },
                Customer = new AzureNative.ConnectedCache.Inputs.CustomerEntityArgs
                {
                    ClientTenantId = "fproidkpgvpdnac",
                    ContactEmail = "xquos",
                    ContactName = "wxyqjoyoscmvimgwhpitxky",
                    ContactPhone = "vue",
                    CustomerName = "mkpzynfqihnjfdbaqbqwyhd",
                    FullyQualifiedResourceId = "uqsbtgae",
                    IsEnterpriseManaged = true,
                    IsEntitled = true,
                    ReleaseVersion = 20,
                    ResendSignupCode = true,
                    ShouldMigrate = true,
                    VerifySignupCode = true,
                    VerifySignupPhrase = "tprjvttkgmrqlsyicnidhm",
                },
            },
            ResourceGroupName = "rgConnectedCache",
            Tags = 
            {
                { "key3379", "dpyqeaqhcnutzezom" },
            },
        });
    
    });
    
    package main
    
    import (
    	connectedcache "github.com/pulumi/pulumi-azure-native-sdk/connectedcache/v2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := connectedcache.NewEnterpriseMccCustomer(ctx, "enterpriseMccCustomer", &connectedcache.EnterpriseMccCustomerArgs{
    			CustomerResourceName: pulumi.String("MccRPTest1"),
    			Location:             pulumi.String("westus"),
    			Properties: &connectedcache.CustomerPropertyArgs{
    				AdditionalCustomerProperties: &connectedcache.AdditionalCustomerPropertiesArgs{
    					CustomerAsn:                   pulumi.String("hgrelgnrtdkleisnepfolu"),
    					CustomerEmail:                 pulumi.String("zdjgibsidydyzm"),
    					CustomerEntitlementExpiration: pulumi.String("2024-01-30T00:54:04.773Z"),
    					CustomerEntitlementSkuGuid:    pulumi.String("rvzmdpxyflgqetvpwupnfaxsweiiz"),
    					CustomerEntitlementSkuId:      pulumi.String("b"),
    					CustomerEntitlementSkuName:    pulumi.String("waaqfijr"),
    					CustomerTransitAsn:            pulumi.String("habgklnxqzmozqpazoyejwiphezpi"),
    					CustomerTransitState:          pulumi.String("voblixkxfejbmhxilb"),
    					OptionalProperty1:             pulumi.String("qhmwxza"),
    					OptionalProperty2:             pulumi.String("l"),
    					OptionalProperty3:             pulumi.String("mblwwvbie"),
    					OptionalProperty4:             pulumi.String("vzuek"),
    					OptionalProperty5:             pulumi.String("fzjodscdfcdr"),
    				},
    				Customer: &connectedcache.CustomerEntityArgs{
    					ClientTenantId:           pulumi.String("fproidkpgvpdnac"),
    					ContactEmail:             pulumi.String("xquos"),
    					ContactName:              pulumi.String("wxyqjoyoscmvimgwhpitxky"),
    					ContactPhone:             pulumi.String("vue"),
    					CustomerName:             pulumi.String("mkpzynfqihnjfdbaqbqwyhd"),
    					FullyQualifiedResourceId: pulumi.String("uqsbtgae"),
    					IsEnterpriseManaged:      pulumi.Bool(true),
    					IsEntitled:               pulumi.Bool(true),
    					ReleaseVersion:           pulumi.Int(20),
    					ResendSignupCode:         pulumi.Bool(true),
    					ShouldMigrate:            pulumi.Bool(true),
    					VerifySignupCode:         pulumi.Bool(true),
    					VerifySignupPhrase:       pulumi.String("tprjvttkgmrqlsyicnidhm"),
    				},
    			},
    			ResourceGroupName: pulumi.String("rgConnectedCache"),
    			Tags: pulumi.StringMap{
    				"key3379": pulumi.String("dpyqeaqhcnutzezom"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azurenative.connectedcache.EnterpriseMccCustomer;
    import com.pulumi.azurenative.connectedcache.EnterpriseMccCustomerArgs;
    import com.pulumi.azurenative.connectedcache.inputs.CustomerPropertyArgs;
    import com.pulumi.azurenative.connectedcache.inputs.AdditionalCustomerPropertiesArgs;
    import com.pulumi.azurenative.connectedcache.inputs.CustomerEntityArgs;
    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 enterpriseMccCustomer = new EnterpriseMccCustomer("enterpriseMccCustomer", EnterpriseMccCustomerArgs.builder()
                .customerResourceName("MccRPTest1")
                .location("westus")
                .properties(CustomerPropertyArgs.builder()
                    .additionalCustomerProperties(AdditionalCustomerPropertiesArgs.builder()
                        .customerAsn("hgrelgnrtdkleisnepfolu")
                        .customerEmail("zdjgibsidydyzm")
                        .customerEntitlementExpiration("2024-01-30T00:54:04.773Z")
                        .customerEntitlementSkuGuid("rvzmdpxyflgqetvpwupnfaxsweiiz")
                        .customerEntitlementSkuId("b")
                        .customerEntitlementSkuName("waaqfijr")
                        .customerTransitAsn("habgklnxqzmozqpazoyejwiphezpi")
                        .customerTransitState("voblixkxfejbmhxilb")
                        .optionalProperty1("qhmwxza")
                        .optionalProperty2("l")
                        .optionalProperty3("mblwwvbie")
                        .optionalProperty4("vzuek")
                        .optionalProperty5("fzjodscdfcdr")
                        .build())
                    .customer(CustomerEntityArgs.builder()
                        .clientTenantId("fproidkpgvpdnac")
                        .contactEmail("xquos")
                        .contactName("wxyqjoyoscmvimgwhpitxky")
                        .contactPhone("vue")
                        .customerName("mkpzynfqihnjfdbaqbqwyhd")
                        .fullyQualifiedResourceId("uqsbtgae")
                        .isEnterpriseManaged(true)
                        .isEntitled(true)
                        .releaseVersion(20)
                        .resendSignupCode(true)
                        .shouldMigrate(true)
                        .verifySignupCode(true)
                        .verifySignupPhrase("tprjvttkgmrqlsyicnidhm")
                        .build())
                    .build())
                .resourceGroupName("rgConnectedCache")
                .tags(Map.of("key3379", "dpyqeaqhcnutzezom"))
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    enterprise_mcc_customer = azure_native.connectedcache.EnterpriseMccCustomer("enterpriseMccCustomer",
        customer_resource_name="MccRPTest1",
        location="westus",
        properties={
            "additional_customer_properties": {
                "customer_asn": "hgrelgnrtdkleisnepfolu",
                "customer_email": "zdjgibsidydyzm",
                "customer_entitlement_expiration": "2024-01-30T00:54:04.773Z",
                "customer_entitlement_sku_guid": "rvzmdpxyflgqetvpwupnfaxsweiiz",
                "customer_entitlement_sku_id": "b",
                "customer_entitlement_sku_name": "waaqfijr",
                "customer_transit_asn": "habgklnxqzmozqpazoyejwiphezpi",
                "customer_transit_state": "voblixkxfejbmhxilb",
                "optional_property1": "qhmwxza",
                "optional_property2": "l",
                "optional_property3": "mblwwvbie",
                "optional_property4": "vzuek",
                "optional_property5": "fzjodscdfcdr",
            },
            "customer": {
                "client_tenant_id": "fproidkpgvpdnac",
                "contact_email": "xquos",
                "contact_name": "wxyqjoyoscmvimgwhpitxky",
                "contact_phone": "vue",
                "customer_name": "mkpzynfqihnjfdbaqbqwyhd",
                "fully_qualified_resource_id": "uqsbtgae",
                "is_enterprise_managed": True,
                "is_entitled": True,
                "release_version": 20,
                "resend_signup_code": True,
                "should_migrate": True,
                "verify_signup_code": True,
                "verify_signup_phrase": "tprjvttkgmrqlsyicnidhm",
            },
        },
        resource_group_name="rgConnectedCache",
        tags={
            "key3379": "dpyqeaqhcnutzezom",
        })
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const enterpriseMccCustomer = new azure_native.connectedcache.EnterpriseMccCustomer("enterpriseMccCustomer", {
        customerResourceName: "MccRPTest1",
        location: "westus",
        properties: {
            additionalCustomerProperties: {
                customerAsn: "hgrelgnrtdkleisnepfolu",
                customerEmail: "zdjgibsidydyzm",
                customerEntitlementExpiration: "2024-01-30T00:54:04.773Z",
                customerEntitlementSkuGuid: "rvzmdpxyflgqetvpwupnfaxsweiiz",
                customerEntitlementSkuId: "b",
                customerEntitlementSkuName: "waaqfijr",
                customerTransitAsn: "habgklnxqzmozqpazoyejwiphezpi",
                customerTransitState: "voblixkxfejbmhxilb",
                optionalProperty1: "qhmwxza",
                optionalProperty2: "l",
                optionalProperty3: "mblwwvbie",
                optionalProperty4: "vzuek",
                optionalProperty5: "fzjodscdfcdr",
            },
            customer: {
                clientTenantId: "fproidkpgvpdnac",
                contactEmail: "xquos",
                contactName: "wxyqjoyoscmvimgwhpitxky",
                contactPhone: "vue",
                customerName: "mkpzynfqihnjfdbaqbqwyhd",
                fullyQualifiedResourceId: "uqsbtgae",
                isEnterpriseManaged: true,
                isEntitled: true,
                releaseVersion: 20,
                resendSignupCode: true,
                shouldMigrate: true,
                verifySignupCode: true,
                verifySignupPhrase: "tprjvttkgmrqlsyicnidhm",
            },
        },
        resourceGroupName: "rgConnectedCache",
        tags: {
            key3379: "dpyqeaqhcnutzezom",
        },
    });
    
    resources:
      enterpriseMccCustomer:
        type: azure-native:connectedcache:EnterpriseMccCustomer
        properties:
          customerResourceName: MccRPTest1
          location: westus
          properties:
            additionalCustomerProperties:
              customerAsn: hgrelgnrtdkleisnepfolu
              customerEmail: zdjgibsidydyzm
              customerEntitlementExpiration: 2024-01-30T00:54:04.773Z
              customerEntitlementSkuGuid: rvzmdpxyflgqetvpwupnfaxsweiiz
              customerEntitlementSkuId: b
              customerEntitlementSkuName: waaqfijr
              customerTransitAsn: habgklnxqzmozqpazoyejwiphezpi
              customerTransitState: voblixkxfejbmhxilb
              optionalProperty1: qhmwxza
              optionalProperty2: l
              optionalProperty3: mblwwvbie
              optionalProperty4: vzuek
              optionalProperty5: fzjodscdfcdr
            customer:
              clientTenantId: fproidkpgvpdnac
              contactEmail: xquos
              contactName: wxyqjoyoscmvimgwhpitxky
              contactPhone: vue
              customerName: mkpzynfqihnjfdbaqbqwyhd
              fullyQualifiedResourceId: uqsbtgae
              isEnterpriseManaged: true
              isEntitled: true
              releaseVersion: 20
              resendSignupCode: true
              shouldMigrate: true
              verifySignupCode: true
              verifySignupPhrase: tprjvttkgmrqlsyicnidhm
          resourceGroupName: rgConnectedCache
          tags:
            key3379: dpyqeaqhcnutzezom
    

    Create EnterpriseMccCustomer Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new EnterpriseMccCustomer(name: string, args: EnterpriseMccCustomerArgs, opts?: CustomResourceOptions);
    @overload
    def EnterpriseMccCustomer(resource_name: str,
                              args: EnterpriseMccCustomerArgs,
                              opts: Optional[ResourceOptions] = None)
    
    @overload
    def EnterpriseMccCustomer(resource_name: str,
                              opts: Optional[ResourceOptions] = None,
                              resource_group_name: Optional[str] = None,
                              customer_resource_name: Optional[str] = None,
                              location: Optional[str] = None,
                              properties: Optional[CustomerPropertyArgs] = None,
                              tags: Optional[Mapping[str, str]] = None)
    func NewEnterpriseMccCustomer(ctx *Context, name string, args EnterpriseMccCustomerArgs, opts ...ResourceOption) (*EnterpriseMccCustomer, error)
    public EnterpriseMccCustomer(string name, EnterpriseMccCustomerArgs args, CustomResourceOptions? opts = null)
    public EnterpriseMccCustomer(String name, EnterpriseMccCustomerArgs args)
    public EnterpriseMccCustomer(String name, EnterpriseMccCustomerArgs args, CustomResourceOptions options)
    
    type: azure-native:connectedcache:EnterpriseMccCustomer
    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 EnterpriseMccCustomerArgs
    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 EnterpriseMccCustomerArgs
    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 EnterpriseMccCustomerArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args EnterpriseMccCustomerArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args EnterpriseMccCustomerArgs
    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 enterpriseMccCustomerResource = new AzureNative.ConnectedCache.EnterpriseMccCustomer("enterpriseMccCustomerResource", new()
    {
        ResourceGroupName = "string",
        CustomerResourceName = "string",
        Location = "string",
        Properties = new AzureNative.ConnectedCache.Inputs.CustomerPropertyArgs
        {
            AdditionalCustomerProperties = new AzureNative.ConnectedCache.Inputs.AdditionalCustomerPropertiesArgs
            {
                CustomerAsn = "string",
                CustomerEmail = "string",
                CustomerEntitlementExpiration = "string",
                CustomerEntitlementSkuGuid = "string",
                CustomerEntitlementSkuId = "string",
                CustomerEntitlementSkuName = "string",
                CustomerTransitAsn = "string",
                CustomerTransitState = "string",
                OptionalProperty1 = "string",
                OptionalProperty2 = "string",
                OptionalProperty3 = "string",
                OptionalProperty4 = "string",
                OptionalProperty5 = "string",
            },
            Customer = new AzureNative.ConnectedCache.Inputs.CustomerEntityArgs
            {
                ClientTenantId = "string",
                ContactEmail = "string",
                ContactName = "string",
                ContactPhone = "string",
                CustomerName = "string",
                FullyQualifiedResourceId = "string",
                IsEnterpriseManaged = false,
                IsEntitled = false,
                ReleaseVersion = 0,
                ResendSignupCode = false,
                ShouldMigrate = false,
                VerifySignupCode = false,
                VerifySignupPhrase = "string",
            },
        },
        Tags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := connectedcache.NewEnterpriseMccCustomer(ctx, "enterpriseMccCustomerResource", &connectedcache.EnterpriseMccCustomerArgs{
    	ResourceGroupName:    pulumi.String("string"),
    	CustomerResourceName: pulumi.String("string"),
    	Location:             pulumi.String("string"),
    	Properties: &connectedcache.CustomerPropertyArgs{
    		AdditionalCustomerProperties: &connectedcache.AdditionalCustomerPropertiesArgs{
    			CustomerAsn:                   pulumi.String("string"),
    			CustomerEmail:                 pulumi.String("string"),
    			CustomerEntitlementExpiration: pulumi.String("string"),
    			CustomerEntitlementSkuGuid:    pulumi.String("string"),
    			CustomerEntitlementSkuId:      pulumi.String("string"),
    			CustomerEntitlementSkuName:    pulumi.String("string"),
    			CustomerTransitAsn:            pulumi.String("string"),
    			CustomerTransitState:          pulumi.String("string"),
    			OptionalProperty1:             pulumi.String("string"),
    			OptionalProperty2:             pulumi.String("string"),
    			OptionalProperty3:             pulumi.String("string"),
    			OptionalProperty4:             pulumi.String("string"),
    			OptionalProperty5:             pulumi.String("string"),
    		},
    		Customer: &connectedcache.CustomerEntityArgs{
    			ClientTenantId:           pulumi.String("string"),
    			ContactEmail:             pulumi.String("string"),
    			ContactName:              pulumi.String("string"),
    			ContactPhone:             pulumi.String("string"),
    			CustomerName:             pulumi.String("string"),
    			FullyQualifiedResourceId: pulumi.String("string"),
    			IsEnterpriseManaged:      pulumi.Bool(false),
    			IsEntitled:               pulumi.Bool(false),
    			ReleaseVersion:           pulumi.Int(0),
    			ResendSignupCode:         pulumi.Bool(false),
    			ShouldMigrate:            pulumi.Bool(false),
    			VerifySignupCode:         pulumi.Bool(false),
    			VerifySignupPhrase:       pulumi.String("string"),
    		},
    	},
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    })
    
    var enterpriseMccCustomerResource = new EnterpriseMccCustomer("enterpriseMccCustomerResource", EnterpriseMccCustomerArgs.builder()
        .resourceGroupName("string")
        .customerResourceName("string")
        .location("string")
        .properties(CustomerPropertyArgs.builder()
            .additionalCustomerProperties(AdditionalCustomerPropertiesArgs.builder()
                .customerAsn("string")
                .customerEmail("string")
                .customerEntitlementExpiration("string")
                .customerEntitlementSkuGuid("string")
                .customerEntitlementSkuId("string")
                .customerEntitlementSkuName("string")
                .customerTransitAsn("string")
                .customerTransitState("string")
                .optionalProperty1("string")
                .optionalProperty2("string")
                .optionalProperty3("string")
                .optionalProperty4("string")
                .optionalProperty5("string")
                .build())
            .customer(CustomerEntityArgs.builder()
                .clientTenantId("string")
                .contactEmail("string")
                .contactName("string")
                .contactPhone("string")
                .customerName("string")
                .fullyQualifiedResourceId("string")
                .isEnterpriseManaged(false)
                .isEntitled(false)
                .releaseVersion(0)
                .resendSignupCode(false)
                .shouldMigrate(false)
                .verifySignupCode(false)
                .verifySignupPhrase("string")
                .build())
            .build())
        .tags(Map.of("string", "string"))
        .build());
    
    enterprise_mcc_customer_resource = azure_native.connectedcache.EnterpriseMccCustomer("enterpriseMccCustomerResource",
        resource_group_name="string",
        customer_resource_name="string",
        location="string",
        properties={
            "additional_customer_properties": {
                "customer_asn": "string",
                "customer_email": "string",
                "customer_entitlement_expiration": "string",
                "customer_entitlement_sku_guid": "string",
                "customer_entitlement_sku_id": "string",
                "customer_entitlement_sku_name": "string",
                "customer_transit_asn": "string",
                "customer_transit_state": "string",
                "optional_property1": "string",
                "optional_property2": "string",
                "optional_property3": "string",
                "optional_property4": "string",
                "optional_property5": "string",
            },
            "customer": {
                "client_tenant_id": "string",
                "contact_email": "string",
                "contact_name": "string",
                "contact_phone": "string",
                "customer_name": "string",
                "fully_qualified_resource_id": "string",
                "is_enterprise_managed": False,
                "is_entitled": False,
                "release_version": 0,
                "resend_signup_code": False,
                "should_migrate": False,
                "verify_signup_code": False,
                "verify_signup_phrase": "string",
            },
        },
        tags={
            "string": "string",
        })
    
    const enterpriseMccCustomerResource = new azure_native.connectedcache.EnterpriseMccCustomer("enterpriseMccCustomerResource", {
        resourceGroupName: "string",
        customerResourceName: "string",
        location: "string",
        properties: {
            additionalCustomerProperties: {
                customerAsn: "string",
                customerEmail: "string",
                customerEntitlementExpiration: "string",
                customerEntitlementSkuGuid: "string",
                customerEntitlementSkuId: "string",
                customerEntitlementSkuName: "string",
                customerTransitAsn: "string",
                customerTransitState: "string",
                optionalProperty1: "string",
                optionalProperty2: "string",
                optionalProperty3: "string",
                optionalProperty4: "string",
                optionalProperty5: "string",
            },
            customer: {
                clientTenantId: "string",
                contactEmail: "string",
                contactName: "string",
                contactPhone: "string",
                customerName: "string",
                fullyQualifiedResourceId: "string",
                isEnterpriseManaged: false,
                isEntitled: false,
                releaseVersion: 0,
                resendSignupCode: false,
                shouldMigrate: false,
                verifySignupCode: false,
                verifySignupPhrase: "string",
            },
        },
        tags: {
            string: "string",
        },
    });
    
    type: azure-native:connectedcache:EnterpriseMccCustomer
    properties:
        customerResourceName: string
        location: string
        properties:
            additionalCustomerProperties:
                customerAsn: string
                customerEmail: string
                customerEntitlementExpiration: string
                customerEntitlementSkuGuid: string
                customerEntitlementSkuId: string
                customerEntitlementSkuName: string
                customerTransitAsn: string
                customerTransitState: string
                optionalProperty1: string
                optionalProperty2: string
                optionalProperty3: string
                optionalProperty4: string
                optionalProperty5: string
            customer:
                clientTenantId: string
                contactEmail: string
                contactName: string
                contactPhone: string
                customerName: string
                fullyQualifiedResourceId: string
                isEnterpriseManaged: false
                isEntitled: false
                releaseVersion: 0
                resendSignupCode: false
                shouldMigrate: false
                verifySignupCode: false
                verifySignupPhrase: string
        resourceGroupName: string
        tags:
            string: string
    

    EnterpriseMccCustomer 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 EnterpriseMccCustomer resource accepts the following input properties:

    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    CustomerResourceName string
    Name of the Customer resource
    Location string
    The geo-location where the resource lives
    Properties Pulumi.AzureNative.ConnectedCache.Inputs.CustomerProperty
    The resource-specific properties for this resource.
    Tags Dictionary<string, string>
    Resource tags.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    CustomerResourceName string
    Name of the Customer resource
    Location string
    The geo-location where the resource lives
    Properties CustomerPropertyArgs
    The resource-specific properties for this resource.
    Tags map[string]string
    Resource tags.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    customerResourceName String
    Name of the Customer resource
    location String
    The geo-location where the resource lives
    properties CustomerProperty
    The resource-specific properties for this resource.
    tags Map<String,String>
    Resource tags.
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    customerResourceName string
    Name of the Customer resource
    location string
    The geo-location where the resource lives
    properties CustomerProperty
    The resource-specific properties for this resource.
    tags {[key: string]: string}
    Resource tags.
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    customer_resource_name str
    Name of the Customer resource
    location str
    The geo-location where the resource lives
    properties CustomerPropertyArgs
    The resource-specific properties for this resource.
    tags Mapping[str, str]
    Resource tags.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    customerResourceName String
    Name of the Customer resource
    location String
    The geo-location where the resource lives
    properties Property Map
    The resource-specific properties for this resource.
    tags Map<String>
    Resource tags.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the EnterpriseMccCustomer resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    SystemData Pulumi.AzureNative.ConnectedCache.Outputs.SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    SystemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The name of the resource
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    The name of the resource
    system_data SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type str
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    systemData Property Map
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

    Supporting Types

    AdditionalCustomerProperties, AdditionalCustomerPropertiesArgs

    CustomerAsn string
    Customer resource Asn (autonomous system number).
    CustomerEmail string
    Customer resource contact email.
    CustomerEntitlementExpiration string
    Customer resource entitlement expiration date string.
    CustomerEntitlementSkuGuid string
    Customer resource entitlement Sku Guid.
    CustomerEntitlementSkuId string
    Customer resource entitlement Sku Id.
    CustomerEntitlementSkuName string
    Customer resource entitlement Sku name.
    CustomerTransitAsn string
    Customer resource transit Asn (autonomous system number).
    CustomerTransitState string | Pulumi.AzureNative.ConnectedCache.CustomerTransitState
    Customer resource transit state.
    OptionalProperty1 string
    Optional property #1 of Mcc response object.
    OptionalProperty2 string
    Optional property #2 of Mcc response object.
    OptionalProperty3 string
    Optional property #3 of Mcc response object.
    OptionalProperty4 string
    Optional property #4 of Mcc response object.
    OptionalProperty5 string
    Optional property #5 of Mcc response object.
    CustomerAsn string
    Customer resource Asn (autonomous system number).
    CustomerEmail string
    Customer resource contact email.
    CustomerEntitlementExpiration string
    Customer resource entitlement expiration date string.
    CustomerEntitlementSkuGuid string
    Customer resource entitlement Sku Guid.
    CustomerEntitlementSkuId string
    Customer resource entitlement Sku Id.
    CustomerEntitlementSkuName string
    Customer resource entitlement Sku name.
    CustomerTransitAsn string
    Customer resource transit Asn (autonomous system number).
    CustomerTransitState string | CustomerTransitState
    Customer resource transit state.
    OptionalProperty1 string
    Optional property #1 of Mcc response object.
    OptionalProperty2 string
    Optional property #2 of Mcc response object.
    OptionalProperty3 string
    Optional property #3 of Mcc response object.
    OptionalProperty4 string
    Optional property #4 of Mcc response object.
    OptionalProperty5 string
    Optional property #5 of Mcc response object.
    customerAsn String
    Customer resource Asn (autonomous system number).
    customerEmail String
    Customer resource contact email.
    customerEntitlementExpiration String
    Customer resource entitlement expiration date string.
    customerEntitlementSkuGuid String
    Customer resource entitlement Sku Guid.
    customerEntitlementSkuId String
    Customer resource entitlement Sku Id.
    customerEntitlementSkuName String
    Customer resource entitlement Sku name.
    customerTransitAsn String
    Customer resource transit Asn (autonomous system number).
    customerTransitState String | CustomerTransitState
    Customer resource transit state.
    optionalProperty1 String
    Optional property #1 of Mcc response object.
    optionalProperty2 String
    Optional property #2 of Mcc response object.
    optionalProperty3 String
    Optional property #3 of Mcc response object.
    optionalProperty4 String
    Optional property #4 of Mcc response object.
    optionalProperty5 String
    Optional property #5 of Mcc response object.
    customerAsn string
    Customer resource Asn (autonomous system number).
    customerEmail string
    Customer resource contact email.
    customerEntitlementExpiration string
    Customer resource entitlement expiration date string.
    customerEntitlementSkuGuid string
    Customer resource entitlement Sku Guid.
    customerEntitlementSkuId string
    Customer resource entitlement Sku Id.
    customerEntitlementSkuName string
    Customer resource entitlement Sku name.
    customerTransitAsn string
    Customer resource transit Asn (autonomous system number).
    customerTransitState string | CustomerTransitState
    Customer resource transit state.
    optionalProperty1 string
    Optional property #1 of Mcc response object.
    optionalProperty2 string
    Optional property #2 of Mcc response object.
    optionalProperty3 string
    Optional property #3 of Mcc response object.
    optionalProperty4 string
    Optional property #4 of Mcc response object.
    optionalProperty5 string
    Optional property #5 of Mcc response object.
    customer_asn str
    Customer resource Asn (autonomous system number).
    customer_email str
    Customer resource contact email.
    customer_entitlement_expiration str
    Customer resource entitlement expiration date string.
    customer_entitlement_sku_guid str
    Customer resource entitlement Sku Guid.
    customer_entitlement_sku_id str
    Customer resource entitlement Sku Id.
    customer_entitlement_sku_name str
    Customer resource entitlement Sku name.
    customer_transit_asn str
    Customer resource transit Asn (autonomous system number).
    customer_transit_state str | CustomerTransitState
    Customer resource transit state.
    optional_property1 str
    Optional property #1 of Mcc response object.
    optional_property2 str
    Optional property #2 of Mcc response object.
    optional_property3 str
    Optional property #3 of Mcc response object.
    optional_property4 str
    Optional property #4 of Mcc response object.
    optional_property5 str
    Optional property #5 of Mcc response object.
    customerAsn String
    Customer resource Asn (autonomous system number).
    customerEmail String
    Customer resource contact email.
    customerEntitlementExpiration String
    Customer resource entitlement expiration date string.
    customerEntitlementSkuGuid String
    Customer resource entitlement Sku Guid.
    customerEntitlementSkuId String
    Customer resource entitlement Sku Id.
    customerEntitlementSkuName String
    Customer resource entitlement Sku name.
    customerTransitAsn String
    Customer resource transit Asn (autonomous system number).
    customerTransitState String | "NoTransit" | "CombinedTransit" | "TransitOnly"
    Customer resource transit state.
    optionalProperty1 String
    Optional property #1 of Mcc response object.
    optionalProperty2 String
    Optional property #2 of Mcc response object.
    optionalProperty3 String
    Optional property #3 of Mcc response object.
    optionalProperty4 String
    Optional property #4 of Mcc response object.
    optionalProperty5 String
    Optional property #5 of Mcc response object.

    AdditionalCustomerPropertiesResponse, AdditionalCustomerPropertiesResponseArgs

    CustomerAsnEstimatedEgressPeekGbps double
    Customer resource estimated Asn peering peak in Gbps.
    CustomerOrgName string
    Customer resource owner organization name.
    CustomerPropertiesOverviewAverageEgressMbps double
    Customer resource average egress in Mbps.
    CustomerPropertiesOverviewAverageMissMbps double
    Customer resource average cache miss throughput in Mbps.
    CustomerPropertiesOverviewCacheEfficiency double
    Customer resource cache efficiency.
    CustomerPropertiesOverviewCacheNodesHealthyCount int
    Customer resource total healthy cache nodes.
    CustomerPropertiesOverviewCacheNodesUnhealthyCount int
    Customer resource total unhealthy cache nodes.
    CustomerPropertiesOverviewEgressMbpsMax double
    Customer resource maximum egress in Mbps.
    CustomerPropertiesOverviewEgressMbpsMaxDateTime string
    Customer resource peak egress timestamp.
    CustomerPropertiesOverviewMissMbpsMax double
    Customer resource maximum cache miss throughput in Mbps.
    CustomerPropertiesOverviewMissMbpsMaxDateTime string
    Customer resource peak cache miss throughput timestamp.
    PeeringDbLastUpdateDate string
    Customer resource last PeeringDB update timestamp.
    PeeringDbLastUpdateTime string
    Customer resource last PeeringDB update timestamp.
    SignupPhaseStatusCode int
    Customer resource signup phase status code as integer.
    SignupPhaseStatusText string
    Customer resource signup phase status as string text.
    SignupStatus bool
    Customer resource signup status as boolean.
    SignupStatusCode int
    Customer resource signup status as integer code.
    SignupStatusText string
    Customer resource signup status as string text.
    CustomerAsn string
    Customer resource Asn (autonomous system number).
    CustomerEmail string
    Customer resource contact email.
    CustomerEntitlementExpiration string
    Customer resource entitlement expiration date string.
    CustomerEntitlementSkuGuid string
    Customer resource entitlement Sku Guid.
    CustomerEntitlementSkuId string
    Customer resource entitlement Sku Id.
    CustomerEntitlementSkuName string
    Customer resource entitlement Sku name.
    CustomerTransitAsn string
    Customer resource transit Asn (autonomous system number).
    CustomerTransitState string
    Customer resource transit state.
    OptionalProperty1 string
    Optional property #1 of Mcc response object.
    OptionalProperty2 string
    Optional property #2 of Mcc response object.
    OptionalProperty3 string
    Optional property #3 of Mcc response object.
    OptionalProperty4 string
    Optional property #4 of Mcc response object.
    OptionalProperty5 string
    Optional property #5 of Mcc response object.
    CustomerAsnEstimatedEgressPeekGbps float64
    Customer resource estimated Asn peering peak in Gbps.
    CustomerOrgName string
    Customer resource owner organization name.
    CustomerPropertiesOverviewAverageEgressMbps float64
    Customer resource average egress in Mbps.
    CustomerPropertiesOverviewAverageMissMbps float64
    Customer resource average cache miss throughput in Mbps.
    CustomerPropertiesOverviewCacheEfficiency float64
    Customer resource cache efficiency.
    CustomerPropertiesOverviewCacheNodesHealthyCount int
    Customer resource total healthy cache nodes.
    CustomerPropertiesOverviewCacheNodesUnhealthyCount int
    Customer resource total unhealthy cache nodes.
    CustomerPropertiesOverviewEgressMbpsMax float64
    Customer resource maximum egress in Mbps.
    CustomerPropertiesOverviewEgressMbpsMaxDateTime string
    Customer resource peak egress timestamp.
    CustomerPropertiesOverviewMissMbpsMax float64
    Customer resource maximum cache miss throughput in Mbps.
    CustomerPropertiesOverviewMissMbpsMaxDateTime string
    Customer resource peak cache miss throughput timestamp.
    PeeringDbLastUpdateDate string
    Customer resource last PeeringDB update timestamp.
    PeeringDbLastUpdateTime string
    Customer resource last PeeringDB update timestamp.
    SignupPhaseStatusCode int
    Customer resource signup phase status code as integer.
    SignupPhaseStatusText string
    Customer resource signup phase status as string text.
    SignupStatus bool
    Customer resource signup status as boolean.
    SignupStatusCode int
    Customer resource signup status as integer code.
    SignupStatusText string
    Customer resource signup status as string text.
    CustomerAsn string
    Customer resource Asn (autonomous system number).
    CustomerEmail string
    Customer resource contact email.
    CustomerEntitlementExpiration string
    Customer resource entitlement expiration date string.
    CustomerEntitlementSkuGuid string
    Customer resource entitlement Sku Guid.
    CustomerEntitlementSkuId string
    Customer resource entitlement Sku Id.
    CustomerEntitlementSkuName string
    Customer resource entitlement Sku name.
    CustomerTransitAsn string
    Customer resource transit Asn (autonomous system number).
    CustomerTransitState string
    Customer resource transit state.
    OptionalProperty1 string
    Optional property #1 of Mcc response object.
    OptionalProperty2 string
    Optional property #2 of Mcc response object.
    OptionalProperty3 string
    Optional property #3 of Mcc response object.
    OptionalProperty4 string
    Optional property #4 of Mcc response object.
    OptionalProperty5 string
    Optional property #5 of Mcc response object.
    customerAsnEstimatedEgressPeekGbps Double
    Customer resource estimated Asn peering peak in Gbps.
    customerOrgName String
    Customer resource owner organization name.
    customerPropertiesOverviewAverageEgressMbps Double
    Customer resource average egress in Mbps.
    customerPropertiesOverviewAverageMissMbps Double
    Customer resource average cache miss throughput in Mbps.
    customerPropertiesOverviewCacheEfficiency Double
    Customer resource cache efficiency.
    customerPropertiesOverviewCacheNodesHealthyCount Integer
    Customer resource total healthy cache nodes.
    customerPropertiesOverviewCacheNodesUnhealthyCount Integer
    Customer resource total unhealthy cache nodes.
    customerPropertiesOverviewEgressMbpsMax Double
    Customer resource maximum egress in Mbps.
    customerPropertiesOverviewEgressMbpsMaxDateTime String
    Customer resource peak egress timestamp.
    customerPropertiesOverviewMissMbpsMax Double
    Customer resource maximum cache miss throughput in Mbps.
    customerPropertiesOverviewMissMbpsMaxDateTime String
    Customer resource peak cache miss throughput timestamp.
    peeringDbLastUpdateDate String
    Customer resource last PeeringDB update timestamp.
    peeringDbLastUpdateTime String
    Customer resource last PeeringDB update timestamp.
    signupPhaseStatusCode Integer
    Customer resource signup phase status code as integer.
    signupPhaseStatusText String
    Customer resource signup phase status as string text.
    signupStatus Boolean
    Customer resource signup status as boolean.
    signupStatusCode Integer
    Customer resource signup status as integer code.
    signupStatusText String
    Customer resource signup status as string text.
    customerAsn String
    Customer resource Asn (autonomous system number).
    customerEmail String
    Customer resource contact email.
    customerEntitlementExpiration String
    Customer resource entitlement expiration date string.
    customerEntitlementSkuGuid String
    Customer resource entitlement Sku Guid.
    customerEntitlementSkuId String
    Customer resource entitlement Sku Id.
    customerEntitlementSkuName String
    Customer resource entitlement Sku name.
    customerTransitAsn String
    Customer resource transit Asn (autonomous system number).
    customerTransitState String
    Customer resource transit state.
    optionalProperty1 String
    Optional property #1 of Mcc response object.
    optionalProperty2 String
    Optional property #2 of Mcc response object.
    optionalProperty3 String
    Optional property #3 of Mcc response object.
    optionalProperty4 String
    Optional property #4 of Mcc response object.
    optionalProperty5 String
    Optional property #5 of Mcc response object.
    customerAsnEstimatedEgressPeekGbps number
    Customer resource estimated Asn peering peak in Gbps.
    customerOrgName string
    Customer resource owner organization name.
    customerPropertiesOverviewAverageEgressMbps number
    Customer resource average egress in Mbps.
    customerPropertiesOverviewAverageMissMbps number
    Customer resource average cache miss throughput in Mbps.
    customerPropertiesOverviewCacheEfficiency number
    Customer resource cache efficiency.
    customerPropertiesOverviewCacheNodesHealthyCount number
    Customer resource total healthy cache nodes.
    customerPropertiesOverviewCacheNodesUnhealthyCount number
    Customer resource total unhealthy cache nodes.
    customerPropertiesOverviewEgressMbpsMax number
    Customer resource maximum egress in Mbps.
    customerPropertiesOverviewEgressMbpsMaxDateTime string
    Customer resource peak egress timestamp.
    customerPropertiesOverviewMissMbpsMax number
    Customer resource maximum cache miss throughput in Mbps.
    customerPropertiesOverviewMissMbpsMaxDateTime string
    Customer resource peak cache miss throughput timestamp.
    peeringDbLastUpdateDate string
    Customer resource last PeeringDB update timestamp.
    peeringDbLastUpdateTime string
    Customer resource last PeeringDB update timestamp.
    signupPhaseStatusCode number
    Customer resource signup phase status code as integer.
    signupPhaseStatusText string
    Customer resource signup phase status as string text.
    signupStatus boolean
    Customer resource signup status as boolean.
    signupStatusCode number
    Customer resource signup status as integer code.
    signupStatusText string
    Customer resource signup status as string text.
    customerAsn string
    Customer resource Asn (autonomous system number).
    customerEmail string
    Customer resource contact email.
    customerEntitlementExpiration string
    Customer resource entitlement expiration date string.
    customerEntitlementSkuGuid string
    Customer resource entitlement Sku Guid.
    customerEntitlementSkuId string
    Customer resource entitlement Sku Id.
    customerEntitlementSkuName string
    Customer resource entitlement Sku name.
    customerTransitAsn string
    Customer resource transit Asn (autonomous system number).
    customerTransitState string
    Customer resource transit state.
    optionalProperty1 string
    Optional property #1 of Mcc response object.
    optionalProperty2 string
    Optional property #2 of Mcc response object.
    optionalProperty3 string
    Optional property #3 of Mcc response object.
    optionalProperty4 string
    Optional property #4 of Mcc response object.
    optionalProperty5 string
    Optional property #5 of Mcc response object.
    customer_asn_estimated_egress_peek_gbps float
    Customer resource estimated Asn peering peak in Gbps.
    customer_org_name str
    Customer resource owner organization name.
    customer_properties_overview_average_egress_mbps float
    Customer resource average egress in Mbps.
    customer_properties_overview_average_miss_mbps float
    Customer resource average cache miss throughput in Mbps.
    customer_properties_overview_cache_efficiency float
    Customer resource cache efficiency.
    customer_properties_overview_cache_nodes_healthy_count int
    Customer resource total healthy cache nodes.
    customer_properties_overview_cache_nodes_unhealthy_count int
    Customer resource total unhealthy cache nodes.
    customer_properties_overview_egress_mbps_max float
    Customer resource maximum egress in Mbps.
    customer_properties_overview_egress_mbps_max_date_time str
    Customer resource peak egress timestamp.
    customer_properties_overview_miss_mbps_max float
    Customer resource maximum cache miss throughput in Mbps.
    customer_properties_overview_miss_mbps_max_date_time str
    Customer resource peak cache miss throughput timestamp.
    peering_db_last_update_date str
    Customer resource last PeeringDB update timestamp.
    peering_db_last_update_time str
    Customer resource last PeeringDB update timestamp.
    signup_phase_status_code int
    Customer resource signup phase status code as integer.
    signup_phase_status_text str
    Customer resource signup phase status as string text.
    signup_status bool
    Customer resource signup status as boolean.
    signup_status_code int
    Customer resource signup status as integer code.
    signup_status_text str
    Customer resource signup status as string text.
    customer_asn str
    Customer resource Asn (autonomous system number).
    customer_email str
    Customer resource contact email.
    customer_entitlement_expiration str
    Customer resource entitlement expiration date string.
    customer_entitlement_sku_guid str
    Customer resource entitlement Sku Guid.
    customer_entitlement_sku_id str
    Customer resource entitlement Sku Id.
    customer_entitlement_sku_name str
    Customer resource entitlement Sku name.
    customer_transit_asn str
    Customer resource transit Asn (autonomous system number).
    customer_transit_state str
    Customer resource transit state.
    optional_property1 str
    Optional property #1 of Mcc response object.
    optional_property2 str
    Optional property #2 of Mcc response object.
    optional_property3 str
    Optional property #3 of Mcc response object.
    optional_property4 str
    Optional property #4 of Mcc response object.
    optional_property5 str
    Optional property #5 of Mcc response object.
    customerAsnEstimatedEgressPeekGbps Number
    Customer resource estimated Asn peering peak in Gbps.
    customerOrgName String
    Customer resource owner organization name.
    customerPropertiesOverviewAverageEgressMbps Number
    Customer resource average egress in Mbps.
    customerPropertiesOverviewAverageMissMbps Number
    Customer resource average cache miss throughput in Mbps.
    customerPropertiesOverviewCacheEfficiency Number
    Customer resource cache efficiency.
    customerPropertiesOverviewCacheNodesHealthyCount Number
    Customer resource total healthy cache nodes.
    customerPropertiesOverviewCacheNodesUnhealthyCount Number
    Customer resource total unhealthy cache nodes.
    customerPropertiesOverviewEgressMbpsMax Number
    Customer resource maximum egress in Mbps.
    customerPropertiesOverviewEgressMbpsMaxDateTime String
    Customer resource peak egress timestamp.
    customerPropertiesOverviewMissMbpsMax Number
    Customer resource maximum cache miss throughput in Mbps.
    customerPropertiesOverviewMissMbpsMaxDateTime String
    Customer resource peak cache miss throughput timestamp.
    peeringDbLastUpdateDate String
    Customer resource last PeeringDB update timestamp.
    peeringDbLastUpdateTime String
    Customer resource last PeeringDB update timestamp.
    signupPhaseStatusCode Number
    Customer resource signup phase status code as integer.
    signupPhaseStatusText String
    Customer resource signup phase status as string text.
    signupStatus Boolean
    Customer resource signup status as boolean.
    signupStatusCode Number
    Customer resource signup status as integer code.
    signupStatusText String
    Customer resource signup status as string text.
    customerAsn String
    Customer resource Asn (autonomous system number).
    customerEmail String
    Customer resource contact email.
    customerEntitlementExpiration String
    Customer resource entitlement expiration date string.
    customerEntitlementSkuGuid String
    Customer resource entitlement Sku Guid.
    customerEntitlementSkuId String
    Customer resource entitlement Sku Id.
    customerEntitlementSkuName String
    Customer resource entitlement Sku name.
    customerTransitAsn String
    Customer resource transit Asn (autonomous system number).
    customerTransitState String
    Customer resource transit state.
    optionalProperty1 String
    Optional property #1 of Mcc response object.
    optionalProperty2 String
    Optional property #2 of Mcc response object.
    optionalProperty3 String
    Optional property #3 of Mcc response object.
    optionalProperty4 String
    Optional property #4 of Mcc response object.
    optionalProperty5 String
    Optional property #5 of Mcc response object.

    CustomerEntity, CustomerEntityArgs

    ClientTenantId string
    Customer resource client tenant Id of subscription.
    ContactEmail string
    Customer resource contact email.
    ContactName string
    Customer resource contact full name.
    ContactPhone string
    Customer resource contact phone.
    CustomerName string
    Customer resource name.
    FullyQualifiedResourceId string
    Customer resource Azure fully qualified resource Id.
    IsEnterpriseManaged bool
    Customer resource flag for enterprise management as boolean.
    IsEntitled bool
    Customer resource entitlement flag as boolean.
    ReleaseVersion int
    Customer resource Mcc release version.
    ResendSignupCode bool
    Customer resource flag for resending signup code as boolean.
    ShouldMigrate bool
    Customer resource flag for migration.
    VerifySignupCode bool
    Customer resource flag for requiring verification of signup code as boolean.
    VerifySignupPhrase string
    Customer resource phrase for verifying signup.
    ClientTenantId string
    Customer resource client tenant Id of subscription.
    ContactEmail string
    Customer resource contact email.
    ContactName string
    Customer resource contact full name.
    ContactPhone string
    Customer resource contact phone.
    CustomerName string
    Customer resource name.
    FullyQualifiedResourceId string
    Customer resource Azure fully qualified resource Id.
    IsEnterpriseManaged bool
    Customer resource flag for enterprise management as boolean.
    IsEntitled bool
    Customer resource entitlement flag as boolean.
    ReleaseVersion int
    Customer resource Mcc release version.
    ResendSignupCode bool
    Customer resource flag for resending signup code as boolean.
    ShouldMigrate bool
    Customer resource flag for migration.
    VerifySignupCode bool
    Customer resource flag for requiring verification of signup code as boolean.
    VerifySignupPhrase string
    Customer resource phrase for verifying signup.
    clientTenantId String
    Customer resource client tenant Id of subscription.
    contactEmail String
    Customer resource contact email.
    contactName String
    Customer resource contact full name.
    contactPhone String
    Customer resource contact phone.
    customerName String
    Customer resource name.
    fullyQualifiedResourceId String
    Customer resource Azure fully qualified resource Id.
    isEnterpriseManaged Boolean
    Customer resource flag for enterprise management as boolean.
    isEntitled Boolean
    Customer resource entitlement flag as boolean.
    releaseVersion Integer
    Customer resource Mcc release version.
    resendSignupCode Boolean
    Customer resource flag for resending signup code as boolean.
    shouldMigrate Boolean
    Customer resource flag for migration.
    verifySignupCode Boolean
    Customer resource flag for requiring verification of signup code as boolean.
    verifySignupPhrase String
    Customer resource phrase for verifying signup.
    clientTenantId string
    Customer resource client tenant Id of subscription.
    contactEmail string
    Customer resource contact email.
    contactName string
    Customer resource contact full name.
    contactPhone string
    Customer resource contact phone.
    customerName string
    Customer resource name.
    fullyQualifiedResourceId string
    Customer resource Azure fully qualified resource Id.
    isEnterpriseManaged boolean
    Customer resource flag for enterprise management as boolean.
    isEntitled boolean
    Customer resource entitlement flag as boolean.
    releaseVersion number
    Customer resource Mcc release version.
    resendSignupCode boolean
    Customer resource flag for resending signup code as boolean.
    shouldMigrate boolean
    Customer resource flag for migration.
    verifySignupCode boolean
    Customer resource flag for requiring verification of signup code as boolean.
    verifySignupPhrase string
    Customer resource phrase for verifying signup.
    client_tenant_id str
    Customer resource client tenant Id of subscription.
    contact_email str
    Customer resource contact email.
    contact_name str
    Customer resource contact full name.
    contact_phone str
    Customer resource contact phone.
    customer_name str
    Customer resource name.
    fully_qualified_resource_id str
    Customer resource Azure fully qualified resource Id.
    is_enterprise_managed bool
    Customer resource flag for enterprise management as boolean.
    is_entitled bool
    Customer resource entitlement flag as boolean.
    release_version int
    Customer resource Mcc release version.
    resend_signup_code bool
    Customer resource flag for resending signup code as boolean.
    should_migrate bool
    Customer resource flag for migration.
    verify_signup_code bool
    Customer resource flag for requiring verification of signup code as boolean.
    verify_signup_phrase str
    Customer resource phrase for verifying signup.
    clientTenantId String
    Customer resource client tenant Id of subscription.
    contactEmail String
    Customer resource contact email.
    contactName String
    Customer resource contact full name.
    contactPhone String
    Customer resource contact phone.
    customerName String
    Customer resource name.
    fullyQualifiedResourceId String
    Customer resource Azure fully qualified resource Id.
    isEnterpriseManaged Boolean
    Customer resource flag for enterprise management as boolean.
    isEntitled Boolean
    Customer resource entitlement flag as boolean.
    releaseVersion Number
    Customer resource Mcc release version.
    resendSignupCode Boolean
    Customer resource flag for resending signup code as boolean.
    shouldMigrate Boolean
    Customer resource flag for migration.
    verifySignupCode Boolean
    Customer resource flag for requiring verification of signup code as boolean.
    verifySignupPhrase String
    Customer resource phrase for verifying signup.

    CustomerEntityResponse, CustomerEntityResponseArgs

    CreateAsyncOperationId string
    Customer resource create async operation Id.
    CustomerId string
    Customer resource Guid Id.
    DeleteAsyncOperationId string
    Customer resource deletion async operation Id.
    LastSyncWithAzureTimestamp string
    Customer resource last Azure sync timestamp.
    SynchWithAzureAttemptsCount int
    Customer resource sync attempts.
    ClientTenantId string
    Customer resource client tenant Id of subscription.
    ContactEmail string
    Customer resource contact email.
    ContactName string
    Customer resource contact full name.
    ContactPhone string
    Customer resource contact phone.
    CustomerName string
    Customer resource name.
    FullyQualifiedResourceId string
    Customer resource Azure fully qualified resource Id.
    IsEnterpriseManaged bool
    Customer resource flag for enterprise management as boolean.
    IsEntitled bool
    Customer resource entitlement flag as boolean.
    ReleaseVersion int
    Customer resource Mcc release version.
    ResendSignupCode bool
    Customer resource flag for resending signup code as boolean.
    ShouldMigrate bool
    Customer resource flag for migration.
    VerifySignupCode bool
    Customer resource flag for requiring verification of signup code as boolean.
    CreateAsyncOperationId string
    Customer resource create async operation Id.
    CustomerId string
    Customer resource Guid Id.
    DeleteAsyncOperationId string
    Customer resource deletion async operation Id.
    LastSyncWithAzureTimestamp string
    Customer resource last Azure sync timestamp.
    SynchWithAzureAttemptsCount int
    Customer resource sync attempts.
    ClientTenantId string
    Customer resource client tenant Id of subscription.
    ContactEmail string
    Customer resource contact email.
    ContactName string
    Customer resource contact full name.
    ContactPhone string
    Customer resource contact phone.
    CustomerName string
    Customer resource name.
    FullyQualifiedResourceId string
    Customer resource Azure fully qualified resource Id.
    IsEnterpriseManaged bool
    Customer resource flag for enterprise management as boolean.
    IsEntitled bool
    Customer resource entitlement flag as boolean.
    ReleaseVersion int
    Customer resource Mcc release version.
    ResendSignupCode bool
    Customer resource flag for resending signup code as boolean.
    ShouldMigrate bool
    Customer resource flag for migration.
    VerifySignupCode bool
    Customer resource flag for requiring verification of signup code as boolean.
    createAsyncOperationId String
    Customer resource create async operation Id.
    customerId String
    Customer resource Guid Id.
    deleteAsyncOperationId String
    Customer resource deletion async operation Id.
    lastSyncWithAzureTimestamp String
    Customer resource last Azure sync timestamp.
    synchWithAzureAttemptsCount Integer
    Customer resource sync attempts.
    clientTenantId String
    Customer resource client tenant Id of subscription.
    contactEmail String
    Customer resource contact email.
    contactName String
    Customer resource contact full name.
    contactPhone String
    Customer resource contact phone.
    customerName String
    Customer resource name.
    fullyQualifiedResourceId String
    Customer resource Azure fully qualified resource Id.
    isEnterpriseManaged Boolean
    Customer resource flag for enterprise management as boolean.
    isEntitled Boolean
    Customer resource entitlement flag as boolean.
    releaseVersion Integer
    Customer resource Mcc release version.
    resendSignupCode Boolean
    Customer resource flag for resending signup code as boolean.
    shouldMigrate Boolean
    Customer resource flag for migration.
    verifySignupCode Boolean
    Customer resource flag for requiring verification of signup code as boolean.
    createAsyncOperationId string
    Customer resource create async operation Id.
    customerId string
    Customer resource Guid Id.
    deleteAsyncOperationId string
    Customer resource deletion async operation Id.
    lastSyncWithAzureTimestamp string
    Customer resource last Azure sync timestamp.
    synchWithAzureAttemptsCount number
    Customer resource sync attempts.
    clientTenantId string
    Customer resource client tenant Id of subscription.
    contactEmail string
    Customer resource contact email.
    contactName string
    Customer resource contact full name.
    contactPhone string
    Customer resource contact phone.
    customerName string
    Customer resource name.
    fullyQualifiedResourceId string
    Customer resource Azure fully qualified resource Id.
    isEnterpriseManaged boolean
    Customer resource flag for enterprise management as boolean.
    isEntitled boolean
    Customer resource entitlement flag as boolean.
    releaseVersion number
    Customer resource Mcc release version.
    resendSignupCode boolean
    Customer resource flag for resending signup code as boolean.
    shouldMigrate boolean
    Customer resource flag for migration.
    verifySignupCode boolean
    Customer resource flag for requiring verification of signup code as boolean.
    create_async_operation_id str
    Customer resource create async operation Id.
    customer_id str
    Customer resource Guid Id.
    delete_async_operation_id str
    Customer resource deletion async operation Id.
    last_sync_with_azure_timestamp str
    Customer resource last Azure sync timestamp.
    synch_with_azure_attempts_count int
    Customer resource sync attempts.
    client_tenant_id str
    Customer resource client tenant Id of subscription.
    contact_email str
    Customer resource contact email.
    contact_name str
    Customer resource contact full name.
    contact_phone str
    Customer resource contact phone.
    customer_name str
    Customer resource name.
    fully_qualified_resource_id str
    Customer resource Azure fully qualified resource Id.
    is_enterprise_managed bool
    Customer resource flag for enterprise management as boolean.
    is_entitled bool
    Customer resource entitlement flag as boolean.
    release_version int
    Customer resource Mcc release version.
    resend_signup_code bool
    Customer resource flag for resending signup code as boolean.
    should_migrate bool
    Customer resource flag for migration.
    verify_signup_code bool
    Customer resource flag for requiring verification of signup code as boolean.
    createAsyncOperationId String
    Customer resource create async operation Id.
    customerId String
    Customer resource Guid Id.
    deleteAsyncOperationId String
    Customer resource deletion async operation Id.
    lastSyncWithAzureTimestamp String
    Customer resource last Azure sync timestamp.
    synchWithAzureAttemptsCount Number
    Customer resource sync attempts.
    clientTenantId String
    Customer resource client tenant Id of subscription.
    contactEmail String
    Customer resource contact email.
    contactName String
    Customer resource contact full name.
    contactPhone String
    Customer resource contact phone.
    customerName String
    Customer resource name.
    fullyQualifiedResourceId String
    Customer resource Azure fully qualified resource Id.
    isEnterpriseManaged Boolean
    Customer resource flag for enterprise management as boolean.
    isEntitled Boolean
    Customer resource entitlement flag as boolean.
    releaseVersion Number
    Customer resource Mcc release version.
    resendSignupCode Boolean
    Customer resource flag for resending signup code as boolean.
    shouldMigrate Boolean
    Customer resource flag for migration.
    verifySignupCode Boolean
    Customer resource flag for requiring verification of signup code as boolean.

    CustomerProperty, CustomerPropertyArgs

    AdditionalCustomerProperties AdditionalCustomerProperties
    Mcc customer resource additional properties.
    Customer CustomerEntity
    Mcc customer resource (customer entity).
    additionalCustomerProperties AdditionalCustomerProperties
    Mcc customer resource additional properties.
    customer CustomerEntity
    Mcc customer resource (customer entity).
    additionalCustomerProperties AdditionalCustomerProperties
    Mcc customer resource additional properties.
    customer CustomerEntity
    Mcc customer resource (customer entity).
    additional_customer_properties AdditionalCustomerProperties
    Mcc customer resource additional properties.
    customer CustomerEntity
    Mcc customer resource (customer entity).
    additionalCustomerProperties Property Map
    Mcc customer resource additional properties.
    customer Property Map
    Mcc customer resource (customer entity).

    CustomerPropertyResponse, CustomerPropertyResponseArgs

    Error Pulumi.AzureNative.ConnectedCache.Inputs.ErrorDetailResponse
    Mcc response error details.
    ProvisioningState string
    The provisioned state of the resource
    Status string
    HTTP error status code.
    StatusCode string
    Mcc response status code.
    StatusDetails string
    Mcc response status details for retrieving response inner details.
    StatusText string
    Mcc response status text as string for retrieving status details.
    AdditionalCustomerProperties Pulumi.AzureNative.ConnectedCache.Inputs.AdditionalCustomerPropertiesResponse
    Mcc customer resource additional properties.
    Customer Pulumi.AzureNative.ConnectedCache.Inputs.CustomerEntityResponse
    Mcc customer resource (customer entity).
    Error ErrorDetailResponse
    Mcc response error details.
    ProvisioningState string
    The provisioned state of the resource
    Status string
    HTTP error status code.
    StatusCode string
    Mcc response status code.
    StatusDetails string
    Mcc response status details for retrieving response inner details.
    StatusText string
    Mcc response status text as string for retrieving status details.
    AdditionalCustomerProperties AdditionalCustomerPropertiesResponse
    Mcc customer resource additional properties.
    Customer CustomerEntityResponse
    Mcc customer resource (customer entity).
    error ErrorDetailResponse
    Mcc response error details.
    provisioningState String
    The provisioned state of the resource
    status String
    HTTP error status code.
    statusCode String
    Mcc response status code.
    statusDetails String
    Mcc response status details for retrieving response inner details.
    statusText String
    Mcc response status text as string for retrieving status details.
    additionalCustomerProperties AdditionalCustomerPropertiesResponse
    Mcc customer resource additional properties.
    customer CustomerEntityResponse
    Mcc customer resource (customer entity).
    error ErrorDetailResponse
    Mcc response error details.
    provisioningState string
    The provisioned state of the resource
    status string
    HTTP error status code.
    statusCode string
    Mcc response status code.
    statusDetails string
    Mcc response status details for retrieving response inner details.
    statusText string
    Mcc response status text as string for retrieving status details.
    additionalCustomerProperties AdditionalCustomerPropertiesResponse
    Mcc customer resource additional properties.
    customer CustomerEntityResponse
    Mcc customer resource (customer entity).
    error ErrorDetailResponse
    Mcc response error details.
    provisioning_state str
    The provisioned state of the resource
    status str
    HTTP error status code.
    status_code str
    Mcc response status code.
    status_details str
    Mcc response status details for retrieving response inner details.
    status_text str
    Mcc response status text as string for retrieving status details.
    additional_customer_properties AdditionalCustomerPropertiesResponse
    Mcc customer resource additional properties.
    customer CustomerEntityResponse
    Mcc customer resource (customer entity).
    error Property Map
    Mcc response error details.
    provisioningState String
    The provisioned state of the resource
    status String
    HTTP error status code.
    statusCode String
    Mcc response status code.
    statusDetails String
    Mcc response status details for retrieving response inner details.
    statusText String
    Mcc response status text as string for retrieving status details.
    additionalCustomerProperties Property Map
    Mcc customer resource additional properties.
    customer Property Map
    Mcc customer resource (customer entity).

    CustomerTransitState, CustomerTransitStateArgs

    NoTransit
    NoTransitdo not have transit
    CombinedTransit
    CombinedTransittransit provider and have own subscribers
    TransitOnly
    TransitOnlypure transit provider or network service provider
    CustomerTransitStateNoTransit
    NoTransitdo not have transit
    CustomerTransitStateCombinedTransit
    CombinedTransittransit provider and have own subscribers
    CustomerTransitStateTransitOnly
    TransitOnlypure transit provider or network service provider
    NoTransit
    NoTransitdo not have transit
    CombinedTransit
    CombinedTransittransit provider and have own subscribers
    TransitOnly
    TransitOnlypure transit provider or network service provider
    NoTransit
    NoTransitdo not have transit
    CombinedTransit
    CombinedTransittransit provider and have own subscribers
    TransitOnly
    TransitOnlypure transit provider or network service provider
    NO_TRANSIT
    NoTransitdo not have transit
    COMBINED_TRANSIT
    CombinedTransittransit provider and have own subscribers
    TRANSIT_ONLY
    TransitOnlypure transit provider or network service provider
    "NoTransit"
    NoTransitdo not have transit
    "CombinedTransit"
    CombinedTransittransit provider and have own subscribers
    "TransitOnly"
    TransitOnlypure transit provider or network service provider

    ErrorAdditionalInfoResponse, ErrorAdditionalInfoResponseArgs

    Info object
    The additional info.
    Type string
    The additional info type.
    Info interface{}
    The additional info.
    Type string
    The additional info type.
    info Object
    The additional info.
    type String
    The additional info type.
    info any
    The additional info.
    type string
    The additional info type.
    info Any
    The additional info.
    type str
    The additional info type.
    info Any
    The additional info.
    type String
    The additional info type.

    ErrorDetailResponse, ErrorDetailResponseArgs

    AdditionalInfo []ErrorAdditionalInfoResponse
    The error additional info.
    Code string
    The error code.
    Details []ErrorDetailResponse
    The error details.
    Message string
    The error message.
    Target string
    The error target.
    additionalInfo List<ErrorAdditionalInfoResponse>
    The error additional info.
    code String
    The error code.
    details List<ErrorDetailResponse>
    The error details.
    message String
    The error message.
    target String
    The error target.
    additionalInfo ErrorAdditionalInfoResponse[]
    The error additional info.
    code string
    The error code.
    details ErrorDetailResponse[]
    The error details.
    message string
    The error message.
    target string
    The error target.
    additional_info Sequence[ErrorAdditionalInfoResponse]
    The error additional info.
    code str
    The error code.
    details Sequence[ErrorDetailResponse]
    The error details.
    message str
    The error message.
    target str
    The error target.
    additionalInfo List<Property Map>
    The error additional info.
    code String
    The error code.
    details List<Property Map>
    The error details.
    message String
    The error message.
    target String
    The error target.

    SystemDataResponse, SystemDataResponseArgs

    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    The type of identity that last modified the resource.
    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.
    createdAt string
    The timestamp of resource creation (UTC).
    createdBy string
    The identity that created the resource.
    createdByType string
    The type of identity that created the resource.
    lastModifiedAt string
    The timestamp of resource last modification (UTC)
    lastModifiedBy string
    The identity that last modified the resource.
    lastModifiedByType string
    The type of identity that last modified the resource.
    created_at str
    The timestamp of resource creation (UTC).
    created_by str
    The identity that created the resource.
    created_by_type str
    The type of identity that created the resource.
    last_modified_at str
    The timestamp of resource last modification (UTC)
    last_modified_by str
    The identity that last modified the resource.
    last_modified_by_type str
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.

    Import

    An existing resource can be imported using its type token, name, and identifier, e.g.

    $ pulumi import azure-native:connectedcache:EnterpriseMccCustomer MccRPTest1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ConnectedCache/enterpriseMccCustomers/{customerResourceName} 
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
    Azure Native v2.73.0 published on Wednesday, Nov 20, 2024 by Pulumi