azure-native.connectedcache.IspCustomer
Explore with Pulumi AI
Represents the high level Nodes needed to provision isp customer resources Azure REST API version: 2023-05-01-preview.
Example Usage
ispCustomer CreateOrUpdate - generated by [MaximumSet] rule
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var ispCustomer = new AzureNative.ConnectedCache.IspCustomer("ispCustomer", new()
{
CustomerResourceName = "MccRPTest2",
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 =
{
{ "key1878", "warz" },
},
});
});
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.NewIspCustomer(ctx, "ispCustomer", &connectedcache.IspCustomerArgs{
CustomerResourceName: pulumi.String("MccRPTest2"),
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{
"key1878": pulumi.String("warz"),
},
})
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.IspCustomer;
import com.pulumi.azurenative.connectedcache.IspCustomerArgs;
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 ispCustomer = new IspCustomer("ispCustomer", IspCustomerArgs.builder()
.customerResourceName("MccRPTest2")
.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("key1878", "warz"))
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
isp_customer = azure_native.connectedcache.IspCustomer("ispCustomer",
customer_resource_name="MccRPTest2",
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={
"key1878": "warz",
})
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const ispCustomer = new azure_native.connectedcache.IspCustomer("ispCustomer", {
customerResourceName: "MccRPTest2",
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: {
key1878: "warz",
},
});
resources:
ispCustomer:
type: azure-native:connectedcache:IspCustomer
properties:
customerResourceName: MccRPTest2
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:
key1878: warz
Create IspCustomer Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new IspCustomer(name: string, args: IspCustomerArgs, opts?: CustomResourceOptions);
@overload
def IspCustomer(resource_name: str,
args: IspCustomerArgs,
opts: Optional[ResourceOptions] = None)
@overload
def IspCustomer(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 NewIspCustomer(ctx *Context, name string, args IspCustomerArgs, opts ...ResourceOption) (*IspCustomer, error)
public IspCustomer(string name, IspCustomerArgs args, CustomResourceOptions? opts = null)
public IspCustomer(String name, IspCustomerArgs args)
public IspCustomer(String name, IspCustomerArgs args, CustomResourceOptions options)
type: azure-native:connectedcache:IspCustomer
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 IspCustomerArgs
- 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 IspCustomerArgs
- 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 IspCustomerArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args IspCustomerArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args IspCustomerArgs
- 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 ispCustomerResource = new AzureNative.ConnectedCache.IspCustomer("ispCustomerResource", 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.NewIspCustomer(ctx, "ispCustomerResource", &connectedcache.IspCustomerArgs{
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 ispCustomerResource = new IspCustomer("ispCustomerResource", IspCustomerArgs.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());
isp_customer_resource = azure_native.connectedcache.IspCustomer("ispCustomerResource",
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 ispCustomerResource = new azure_native.connectedcache.IspCustomer("ispCustomerResource", {
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:IspCustomer
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
IspCustomer 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 IspCustomer resource accepts the following input properties:
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Customer
Resource stringName - Name of the Customer resource
- Location string
- The geo-location where the resource lives
- Properties
Pulumi.
Azure Native. Connected Cache. Inputs. Customer Property - The resource-specific properties for this resource.
- Dictionary<string, string>
- Resource tags.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Customer
Resource stringName - Name of the Customer resource
- Location string
- The geo-location where the resource lives
- Properties
Customer
Property Args - The resource-specific properties for this resource.
- map[string]string
- Resource tags.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- customer
Resource StringName - Name of the Customer resource
- location String
- The geo-location where the resource lives
- properties
Customer
Property - The resource-specific properties for this resource.
- Map<String,String>
- Resource tags.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- customer
Resource stringName - Name of the Customer resource
- location string
- The geo-location where the resource lives
- properties
Customer
Property - The resource-specific properties for this resource.
- {[key: string]: string}
- Resource tags.
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- customer_
resource_ strname - Name of the Customer resource
- location str
- The geo-location where the resource lives
- properties
Customer
Property Args - The resource-specific properties for this resource.
- Mapping[str, str]
- Resource tags.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- customer
Resource StringName - Name of the Customer resource
- location String
- The geo-location where the resource lives
- properties Property Map
- The resource-specific properties for this resource.
- Map<String>
- Resource tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the IspCustomer resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- System
Data Pulumi.Azure Native. Connected Cache. Outputs. System Data Response - 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
- System
Data SystemData Response - 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
- system
Data SystemData Response - 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
- system
Data SystemData Response - 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 SystemData Response - 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
- system
Data 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
- Customer
Asn string - Customer resource Asn (autonomous system number).
- Customer
Email string - Customer resource contact email.
- Customer
Entitlement stringExpiration - Customer resource entitlement expiration date string.
- Customer
Entitlement stringSku Guid - Customer resource entitlement Sku Guid.
- Customer
Entitlement stringSku Id - Customer resource entitlement Sku Id.
- Customer
Entitlement stringSku Name - Customer resource entitlement Sku name.
- Customer
Transit stringAsn - Customer resource transit Asn (autonomous system number).
- Customer
Transit string | Pulumi.State Azure Native. Connected Cache. Customer Transit State - Customer resource transit state.
- Optional
Property1 string - Optional property #1 of Mcc response object.
- Optional
Property2 string - Optional property #2 of Mcc response object.
- Optional
Property3 string - Optional property #3 of Mcc response object.
- Optional
Property4 string - Optional property #4 of Mcc response object.
- Optional
Property5 string - Optional property #5 of Mcc response object.
- Customer
Asn string - Customer resource Asn (autonomous system number).
- Customer
Email string - Customer resource contact email.
- Customer
Entitlement stringExpiration - Customer resource entitlement expiration date string.
- Customer
Entitlement stringSku Guid - Customer resource entitlement Sku Guid.
- Customer
Entitlement stringSku Id - Customer resource entitlement Sku Id.
- Customer
Entitlement stringSku Name - Customer resource entitlement Sku name.
- Customer
Transit stringAsn - Customer resource transit Asn (autonomous system number).
- Customer
Transit string | CustomerState Transit State - Customer resource transit state.
- Optional
Property1 string - Optional property #1 of Mcc response object.
- Optional
Property2 string - Optional property #2 of Mcc response object.
- Optional
Property3 string - Optional property #3 of Mcc response object.
- Optional
Property4 string - Optional property #4 of Mcc response object.
- Optional
Property5 string - Optional property #5 of Mcc response object.
- customer
Asn String - Customer resource Asn (autonomous system number).
- customer
Email String - Customer resource contact email.
- customer
Entitlement StringExpiration - Customer resource entitlement expiration date string.
- customer
Entitlement StringSku Guid - Customer resource entitlement Sku Guid.
- customer
Entitlement StringSku Id - Customer resource entitlement Sku Id.
- customer
Entitlement StringSku Name - Customer resource entitlement Sku name.
- customer
Transit StringAsn - Customer resource transit Asn (autonomous system number).
- customer
Transit String | CustomerState Transit State - Customer resource transit state.
- optional
Property1 String - Optional property #1 of Mcc response object.
- optional
Property2 String - Optional property #2 of Mcc response object.
- optional
Property3 String - Optional property #3 of Mcc response object.
- optional
Property4 String - Optional property #4 of Mcc response object.
- optional
Property5 String - Optional property #5 of Mcc response object.
- customer
Asn string - Customer resource Asn (autonomous system number).
- customer
Email string - Customer resource contact email.
- customer
Entitlement stringExpiration - Customer resource entitlement expiration date string.
- customer
Entitlement stringSku Guid - Customer resource entitlement Sku Guid.
- customer
Entitlement stringSku Id - Customer resource entitlement Sku Id.
- customer
Entitlement stringSku Name - Customer resource entitlement Sku name.
- customer
Transit stringAsn - Customer resource transit Asn (autonomous system number).
- customer
Transit string | CustomerState Transit State - Customer resource transit state.
- optional
Property1 string - Optional property #1 of Mcc response object.
- optional
Property2 string - Optional property #2 of Mcc response object.
- optional
Property3 string - Optional property #3 of Mcc response object.
- optional
Property4 string - Optional property #4 of Mcc response object.
- optional
Property5 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_ strexpiration - Customer resource entitlement expiration date string.
- customer_
entitlement_ strsku_ guid - Customer resource entitlement Sku Guid.
- customer_
entitlement_ strsku_ id - Customer resource entitlement Sku Id.
- customer_
entitlement_ strsku_ name - Customer resource entitlement Sku name.
- customer_
transit_ strasn - Customer resource transit Asn (autonomous system number).
- customer_
transit_ str | Customerstate Transit State - 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.
- customer
Asn String - Customer resource Asn (autonomous system number).
- customer
Email String - Customer resource contact email.
- customer
Entitlement StringExpiration - Customer resource entitlement expiration date string.
- customer
Entitlement StringSku Guid - Customer resource entitlement Sku Guid.
- customer
Entitlement StringSku Id - Customer resource entitlement Sku Id.
- customer
Entitlement StringSku Name - Customer resource entitlement Sku name.
- customer
Transit StringAsn - Customer resource transit Asn (autonomous system number).
- customer
Transit String | "NoState Transit" | "Combined Transit" | "Transit Only" - Customer resource transit state.
- optional
Property1 String - Optional property #1 of Mcc response object.
- optional
Property2 String - Optional property #2 of Mcc response object.
- optional
Property3 String - Optional property #3 of Mcc response object.
- optional
Property4 String - Optional property #4 of Mcc response object.
- optional
Property5 String - Optional property #5 of Mcc response object.
AdditionalCustomerPropertiesResponse, AdditionalCustomerPropertiesResponseArgs
- Customer
Asn doubleEstimated Egress Peek Gbps - Customer resource estimated Asn peering peak in Gbps.
- Customer
Org stringName - Customer resource owner organization name.
- Customer
Properties doubleOverview Average Egress Mbps - Customer resource average egress in Mbps.
- Customer
Properties doubleOverview Average Miss Mbps - Customer resource average cache miss throughput in Mbps.
- Customer
Properties doubleOverview Cache Efficiency - Customer resource cache efficiency.
- Customer
Properties intOverview Cache Nodes Healthy Count - Customer resource total healthy cache nodes.
- Customer
Properties intOverview Cache Nodes Unhealthy Count - Customer resource total unhealthy cache nodes.
- Customer
Properties doubleOverview Egress Mbps Max - Customer resource maximum egress in Mbps.
- Customer
Properties stringOverview Egress Mbps Max Date Time - Customer resource peak egress timestamp.
- Customer
Properties doubleOverview Miss Mbps Max - Customer resource maximum cache miss throughput in Mbps.
- Customer
Properties stringOverview Miss Mbps Max Date Time - Customer resource peak cache miss throughput timestamp.
- Peering
Db stringLast Update Date - Customer resource last PeeringDB update timestamp.
- Peering
Db stringLast Update Time - Customer resource last PeeringDB update timestamp.
- Signup
Phase intStatus Code - Customer resource signup phase status code as integer.
- Signup
Phase stringStatus Text - Customer resource signup phase status as string text.
- Signup
Status bool - Customer resource signup status as boolean.
- Signup
Status intCode - Customer resource signup status as integer code.
- Signup
Status stringText - Customer resource signup status as string text.
- Customer
Asn string - Customer resource Asn (autonomous system number).
- Customer
Email string - Customer resource contact email.
- Customer
Entitlement stringExpiration - Customer resource entitlement expiration date string.
- Customer
Entitlement stringSku Guid - Customer resource entitlement Sku Guid.
- Customer
Entitlement stringSku Id - Customer resource entitlement Sku Id.
- Customer
Entitlement stringSku Name - Customer resource entitlement Sku name.
- Customer
Transit stringAsn - Customer resource transit Asn (autonomous system number).
- Customer
Transit stringState - Customer resource transit state.
- Optional
Property1 string - Optional property #1 of Mcc response object.
- Optional
Property2 string - Optional property #2 of Mcc response object.
- Optional
Property3 string - Optional property #3 of Mcc response object.
- Optional
Property4 string - Optional property #4 of Mcc response object.
- Optional
Property5 string - Optional property #5 of Mcc response object.
- Customer
Asn float64Estimated Egress Peek Gbps - Customer resource estimated Asn peering peak in Gbps.
- Customer
Org stringName - Customer resource owner organization name.
- Customer
Properties float64Overview Average Egress Mbps - Customer resource average egress in Mbps.
- Customer
Properties float64Overview Average Miss Mbps - Customer resource average cache miss throughput in Mbps.
- Customer
Properties float64Overview Cache Efficiency - Customer resource cache efficiency.
- Customer
Properties intOverview Cache Nodes Healthy Count - Customer resource total healthy cache nodes.
- Customer
Properties intOverview Cache Nodes Unhealthy Count - Customer resource total unhealthy cache nodes.
- Customer
Properties float64Overview Egress Mbps Max - Customer resource maximum egress in Mbps.
- Customer
Properties stringOverview Egress Mbps Max Date Time - Customer resource peak egress timestamp.
- Customer
Properties float64Overview Miss Mbps Max - Customer resource maximum cache miss throughput in Mbps.
- Customer
Properties stringOverview Miss Mbps Max Date Time - Customer resource peak cache miss throughput timestamp.
- Peering
Db stringLast Update Date - Customer resource last PeeringDB update timestamp.
- Peering
Db stringLast Update Time - Customer resource last PeeringDB update timestamp.
- Signup
Phase intStatus Code - Customer resource signup phase status code as integer.
- Signup
Phase stringStatus Text - Customer resource signup phase status as string text.
- Signup
Status bool - Customer resource signup status as boolean.
- Signup
Status intCode - Customer resource signup status as integer code.
- Signup
Status stringText - Customer resource signup status as string text.
- Customer
Asn string - Customer resource Asn (autonomous system number).
- Customer
Email string - Customer resource contact email.
- Customer
Entitlement stringExpiration - Customer resource entitlement expiration date string.
- Customer
Entitlement stringSku Guid - Customer resource entitlement Sku Guid.
- Customer
Entitlement stringSku Id - Customer resource entitlement Sku Id.
- Customer
Entitlement stringSku Name - Customer resource entitlement Sku name.
- Customer
Transit stringAsn - Customer resource transit Asn (autonomous system number).
- Customer
Transit stringState - Customer resource transit state.
- Optional
Property1 string - Optional property #1 of Mcc response object.
- Optional
Property2 string - Optional property #2 of Mcc response object.
- Optional
Property3 string - Optional property #3 of Mcc response object.
- Optional
Property4 string - Optional property #4 of Mcc response object.
- Optional
Property5 string - Optional property #5 of Mcc response object.
- customer
Asn DoubleEstimated Egress Peek Gbps - Customer resource estimated Asn peering peak in Gbps.
- customer
Org StringName - Customer resource owner organization name.
- customer
Properties DoubleOverview Average Egress Mbps - Customer resource average egress in Mbps.
- customer
Properties DoubleOverview Average Miss Mbps - Customer resource average cache miss throughput in Mbps.
- customer
Properties DoubleOverview Cache Efficiency - Customer resource cache efficiency.
- customer
Properties IntegerOverview Cache Nodes Healthy Count - Customer resource total healthy cache nodes.
- customer
Properties IntegerOverview Cache Nodes Unhealthy Count - Customer resource total unhealthy cache nodes.
- customer
Properties DoubleOverview Egress Mbps Max - Customer resource maximum egress in Mbps.
- customer
Properties StringOverview Egress Mbps Max Date Time - Customer resource peak egress timestamp.
- customer
Properties DoubleOverview Miss Mbps Max - Customer resource maximum cache miss throughput in Mbps.
- customer
Properties StringOverview Miss Mbps Max Date Time - Customer resource peak cache miss throughput timestamp.
- peering
Db StringLast Update Date - Customer resource last PeeringDB update timestamp.
- peering
Db StringLast Update Time - Customer resource last PeeringDB update timestamp.
- signup
Phase IntegerStatus Code - Customer resource signup phase status code as integer.
- signup
Phase StringStatus Text - Customer resource signup phase status as string text.
- signup
Status Boolean - Customer resource signup status as boolean.
- signup
Status IntegerCode - Customer resource signup status as integer code.
- signup
Status StringText - Customer resource signup status as string text.
- customer
Asn String - Customer resource Asn (autonomous system number).
- customer
Email String - Customer resource contact email.
- customer
Entitlement StringExpiration - Customer resource entitlement expiration date string.
- customer
Entitlement StringSku Guid - Customer resource entitlement Sku Guid.
- customer
Entitlement StringSku Id - Customer resource entitlement Sku Id.
- customer
Entitlement StringSku Name - Customer resource entitlement Sku name.
- customer
Transit StringAsn - Customer resource transit Asn (autonomous system number).
- customer
Transit StringState - Customer resource transit state.
- optional
Property1 String - Optional property #1 of Mcc response object.
- optional
Property2 String - Optional property #2 of Mcc response object.
- optional
Property3 String - Optional property #3 of Mcc response object.
- optional
Property4 String - Optional property #4 of Mcc response object.
- optional
Property5 String - Optional property #5 of Mcc response object.
- customer
Asn numberEstimated Egress Peek Gbps - Customer resource estimated Asn peering peak in Gbps.
- customer
Org stringName - Customer resource owner organization name.
- customer
Properties numberOverview Average Egress Mbps - Customer resource average egress in Mbps.
- customer
Properties numberOverview Average Miss Mbps - Customer resource average cache miss throughput in Mbps.
- customer
Properties numberOverview Cache Efficiency - Customer resource cache efficiency.
- customer
Properties numberOverview Cache Nodes Healthy Count - Customer resource total healthy cache nodes.
- customer
Properties numberOverview Cache Nodes Unhealthy Count - Customer resource total unhealthy cache nodes.
- customer
Properties numberOverview Egress Mbps Max - Customer resource maximum egress in Mbps.
- customer
Properties stringOverview Egress Mbps Max Date Time - Customer resource peak egress timestamp.
- customer
Properties numberOverview Miss Mbps Max - Customer resource maximum cache miss throughput in Mbps.
- customer
Properties stringOverview Miss Mbps Max Date Time - Customer resource peak cache miss throughput timestamp.
- peering
Db stringLast Update Date - Customer resource last PeeringDB update timestamp.
- peering
Db stringLast Update Time - Customer resource last PeeringDB update timestamp.
- signup
Phase numberStatus Code - Customer resource signup phase status code as integer.
- signup
Phase stringStatus Text - Customer resource signup phase status as string text.
- signup
Status boolean - Customer resource signup status as boolean.
- signup
Status numberCode - Customer resource signup status as integer code.
- signup
Status stringText - Customer resource signup status as string text.
- customer
Asn string - Customer resource Asn (autonomous system number).
- customer
Email string - Customer resource contact email.
- customer
Entitlement stringExpiration - Customer resource entitlement expiration date string.
- customer
Entitlement stringSku Guid - Customer resource entitlement Sku Guid.
- customer
Entitlement stringSku Id - Customer resource entitlement Sku Id.
- customer
Entitlement stringSku Name - Customer resource entitlement Sku name.
- customer
Transit stringAsn - Customer resource transit Asn (autonomous system number).
- customer
Transit stringState - Customer resource transit state.
- optional
Property1 string - Optional property #1 of Mcc response object.
- optional
Property2 string - Optional property #2 of Mcc response object.
- optional
Property3 string - Optional property #3 of Mcc response object.
- optional
Property4 string - Optional property #4 of Mcc response object.
- optional
Property5 string - Optional property #5 of Mcc response object.
- customer_
asn_ floatestimated_ egress_ peek_ gbps - Customer resource estimated Asn peering peak in Gbps.
- customer_
org_ strname - Customer resource owner organization name.
- customer_
properties_ floatoverview_ average_ egress_ mbps - Customer resource average egress in Mbps.
- customer_
properties_ floatoverview_ average_ miss_ mbps - Customer resource average cache miss throughput in Mbps.
- customer_
properties_ floatoverview_ cache_ efficiency - Customer resource cache efficiency.
- customer_
properties_ intoverview_ cache_ nodes_ healthy_ count - Customer resource total healthy cache nodes.
- customer_
properties_ intoverview_ cache_ nodes_ unhealthy_ count - Customer resource total unhealthy cache nodes.
- customer_
properties_ floatoverview_ egress_ mbps_ max - Customer resource maximum egress in Mbps.
- customer_
properties_ stroverview_ egress_ mbps_ max_ date_ time - Customer resource peak egress timestamp.
- customer_
properties_ floatoverview_ miss_ mbps_ max - Customer resource maximum cache miss throughput in Mbps.
- customer_
properties_ stroverview_ miss_ mbps_ max_ date_ time - Customer resource peak cache miss throughput timestamp.
- peering_
db_ strlast_ update_ date - Customer resource last PeeringDB update timestamp.
- peering_
db_ strlast_ update_ time - Customer resource last PeeringDB update timestamp.
- signup_
phase_ intstatus_ code - Customer resource signup phase status code as integer.
- signup_
phase_ strstatus_ text - Customer resource signup phase status as string text.
- signup_
status bool - Customer resource signup status as boolean.
- signup_
status_ intcode - Customer resource signup status as integer code.
- signup_
status_ strtext - 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_ strexpiration - Customer resource entitlement expiration date string.
- customer_
entitlement_ strsku_ guid - Customer resource entitlement Sku Guid.
- customer_
entitlement_ strsku_ id - Customer resource entitlement Sku Id.
- customer_
entitlement_ strsku_ name - Customer resource entitlement Sku name.
- customer_
transit_ strasn - Customer resource transit Asn (autonomous system number).
- customer_
transit_ strstate - 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.
- customer
Asn NumberEstimated Egress Peek Gbps - Customer resource estimated Asn peering peak in Gbps.
- customer
Org StringName - Customer resource owner organization name.
- customer
Properties NumberOverview Average Egress Mbps - Customer resource average egress in Mbps.
- customer
Properties NumberOverview Average Miss Mbps - Customer resource average cache miss throughput in Mbps.
- customer
Properties NumberOverview Cache Efficiency - Customer resource cache efficiency.
- customer
Properties NumberOverview Cache Nodes Healthy Count - Customer resource total healthy cache nodes.
- customer
Properties NumberOverview Cache Nodes Unhealthy Count - Customer resource total unhealthy cache nodes.
- customer
Properties NumberOverview Egress Mbps Max - Customer resource maximum egress in Mbps.
- customer
Properties StringOverview Egress Mbps Max Date Time - Customer resource peak egress timestamp.
- customer
Properties NumberOverview Miss Mbps Max - Customer resource maximum cache miss throughput in Mbps.
- customer
Properties StringOverview Miss Mbps Max Date Time - Customer resource peak cache miss throughput timestamp.
- peering
Db StringLast Update Date - Customer resource last PeeringDB update timestamp.
- peering
Db StringLast Update Time - Customer resource last PeeringDB update timestamp.
- signup
Phase NumberStatus Code - Customer resource signup phase status code as integer.
- signup
Phase StringStatus Text - Customer resource signup phase status as string text.
- signup
Status Boolean - Customer resource signup status as boolean.
- signup
Status NumberCode - Customer resource signup status as integer code.
- signup
Status StringText - Customer resource signup status as string text.
- customer
Asn String - Customer resource Asn (autonomous system number).
- customer
Email String - Customer resource contact email.
- customer
Entitlement StringExpiration - Customer resource entitlement expiration date string.
- customer
Entitlement StringSku Guid - Customer resource entitlement Sku Guid.
- customer
Entitlement StringSku Id - Customer resource entitlement Sku Id.
- customer
Entitlement StringSku Name - Customer resource entitlement Sku name.
- customer
Transit StringAsn - Customer resource transit Asn (autonomous system number).
- customer
Transit StringState - Customer resource transit state.
- optional
Property1 String - Optional property #1 of Mcc response object.
- optional
Property2 String - Optional property #2 of Mcc response object.
- optional
Property3 String - Optional property #3 of Mcc response object.
- optional
Property4 String - Optional property #4 of Mcc response object.
- optional
Property5 String - Optional property #5 of Mcc response object.
CustomerEntity, CustomerEntityArgs
- Client
Tenant stringId - Customer resource client tenant Id of subscription.
- Contact
Email string - Customer resource contact email.
- Contact
Name string - Customer resource contact full name.
- Contact
Phone string - Customer resource contact phone.
- Customer
Name string - Customer resource name.
- Fully
Qualified stringResource Id - Customer resource Azure fully qualified resource Id.
- Is
Enterprise boolManaged - 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 boolCode - Customer resource flag for resending signup code as boolean.
- Should
Migrate bool - Customer resource flag for migration.
- Verify
Signup boolCode - Customer resource flag for requiring verification of signup code as boolean.
- Verify
Signup stringPhrase - Customer resource phrase for verifying signup.
- Client
Tenant stringId - Customer resource client tenant Id of subscription.
- Contact
Email string - Customer resource contact email.
- Contact
Name string - Customer resource contact full name.
- Contact
Phone string - Customer resource contact phone.
- Customer
Name string - Customer resource name.
- Fully
Qualified stringResource Id - Customer resource Azure fully qualified resource Id.
- Is
Enterprise boolManaged - 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 boolCode - Customer resource flag for resending signup code as boolean.
- Should
Migrate bool - Customer resource flag for migration.
- Verify
Signup boolCode - Customer resource flag for requiring verification of signup code as boolean.
- Verify
Signup stringPhrase - Customer resource phrase for verifying signup.
- client
Tenant StringId - Customer resource client tenant Id of subscription.
- contact
Email String - Customer resource contact email.
- contact
Name String - Customer resource contact full name.
- contact
Phone String - Customer resource contact phone.
- customer
Name String - Customer resource name.
- fully
Qualified StringResource Id - Customer resource Azure fully qualified resource Id.
- is
Enterprise BooleanManaged - Customer resource flag for enterprise management as boolean.
- is
Entitled Boolean - Customer resource entitlement flag as boolean.
- release
Version Integer - Customer resource Mcc release version.
- resend
Signup BooleanCode - Customer resource flag for resending signup code as boolean.
- should
Migrate Boolean - Customer resource flag for migration.
- verify
Signup BooleanCode - Customer resource flag for requiring verification of signup code as boolean.
- verify
Signup StringPhrase - Customer resource phrase for verifying signup.
- client
Tenant stringId - Customer resource client tenant Id of subscription.
- contact
Email string - Customer resource contact email.
- contact
Name string - Customer resource contact full name.
- contact
Phone string - Customer resource contact phone.
- customer
Name string - Customer resource name.
- fully
Qualified stringResource Id - Customer resource Azure fully qualified resource Id.
- is
Enterprise booleanManaged - Customer resource flag for enterprise management as boolean.
- is
Entitled boolean - Customer resource entitlement flag as boolean.
- release
Version number - Customer resource Mcc release version.
- resend
Signup booleanCode - Customer resource flag for resending signup code as boolean.
- should
Migrate boolean - Customer resource flag for migration.
- verify
Signup booleanCode - Customer resource flag for requiring verification of signup code as boolean.
- verify
Signup stringPhrase - Customer resource phrase for verifying signup.
- client_
tenant_ strid - 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_ strresource_ id - Customer resource Azure fully qualified resource Id.
- is_
enterprise_ boolmanaged - 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_ boolcode - Customer resource flag for resending signup code as boolean.
- should_
migrate bool - Customer resource flag for migration.
- verify_
signup_ boolcode - Customer resource flag for requiring verification of signup code as boolean.
- verify_
signup_ strphrase - Customer resource phrase for verifying signup.
- client
Tenant StringId - Customer resource client tenant Id of subscription.
- contact
Email String - Customer resource contact email.
- contact
Name String - Customer resource contact full name.
- contact
Phone String - Customer resource contact phone.
- customer
Name String - Customer resource name.
- fully
Qualified StringResource Id - Customer resource Azure fully qualified resource Id.
- is
Enterprise BooleanManaged - Customer resource flag for enterprise management as boolean.
- is
Entitled Boolean - Customer resource entitlement flag as boolean.
- release
Version Number - Customer resource Mcc release version.
- resend
Signup BooleanCode - Customer resource flag for resending signup code as boolean.
- should
Migrate Boolean - Customer resource flag for migration.
- verify
Signup BooleanCode - Customer resource flag for requiring verification of signup code as boolean.
- verify
Signup StringPhrase - Customer resource phrase for verifying signup.
CustomerEntityResponse, CustomerEntityResponseArgs
- Create
Async stringOperation Id - Customer resource create async operation Id.
- Customer
Id string - Customer resource Guid Id.
- Delete
Async stringOperation Id - Customer resource deletion async operation Id.
- Last
Sync stringWith Azure Timestamp - Customer resource last Azure sync timestamp.
- Synch
With intAzure Attempts Count - Customer resource sync attempts.
- Client
Tenant stringId - Customer resource client tenant Id of subscription.
- Contact
Email string - Customer resource contact email.
- Contact
Name string - Customer resource contact full name.
- Contact
Phone string - Customer resource contact phone.
- Customer
Name string - Customer resource name.
- Fully
Qualified stringResource Id - Customer resource Azure fully qualified resource Id.
- Is
Enterprise boolManaged - 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 boolCode - Customer resource flag for resending signup code as boolean.
- Should
Migrate bool - Customer resource flag for migration.
- Verify
Signup boolCode - Customer resource flag for requiring verification of signup code as boolean.
- Create
Async stringOperation Id - Customer resource create async operation Id.
- Customer
Id string - Customer resource Guid Id.
- Delete
Async stringOperation Id - Customer resource deletion async operation Id.
- Last
Sync stringWith Azure Timestamp - Customer resource last Azure sync timestamp.
- Synch
With intAzure Attempts Count - Customer resource sync attempts.
- Client
Tenant stringId - Customer resource client tenant Id of subscription.
- Contact
Email string - Customer resource contact email.
- Contact
Name string - Customer resource contact full name.
- Contact
Phone string - Customer resource contact phone.
- Customer
Name string - Customer resource name.
- Fully
Qualified stringResource Id - Customer resource Azure fully qualified resource Id.
- Is
Enterprise boolManaged - 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 boolCode - Customer resource flag for resending signup code as boolean.
- Should
Migrate bool - Customer resource flag for migration.
- Verify
Signup boolCode - Customer resource flag for requiring verification of signup code as boolean.
- create
Async StringOperation Id - Customer resource create async operation Id.
- customer
Id String - Customer resource Guid Id.
- delete
Async StringOperation Id - Customer resource deletion async operation Id.
- last
Sync StringWith Azure Timestamp - Customer resource last Azure sync timestamp.
- synch
With IntegerAzure Attempts Count - Customer resource sync attempts.
- client
Tenant StringId - Customer resource client tenant Id of subscription.
- contact
Email String - Customer resource contact email.
- contact
Name String - Customer resource contact full name.
- contact
Phone String - Customer resource contact phone.
- customer
Name String - Customer resource name.
- fully
Qualified StringResource Id - Customer resource Azure fully qualified resource Id.
- is
Enterprise BooleanManaged - Customer resource flag for enterprise management as boolean.
- is
Entitled Boolean - Customer resource entitlement flag as boolean.
- release
Version Integer - Customer resource Mcc release version.
- resend
Signup BooleanCode - Customer resource flag for resending signup code as boolean.
- should
Migrate Boolean - Customer resource flag for migration.
- verify
Signup BooleanCode - Customer resource flag for requiring verification of signup code as boolean.
- create
Async stringOperation Id - Customer resource create async operation Id.
- customer
Id string - Customer resource Guid Id.
- delete
Async stringOperation Id - Customer resource deletion async operation Id.
- last
Sync stringWith Azure Timestamp - Customer resource last Azure sync timestamp.
- synch
With numberAzure Attempts Count - Customer resource sync attempts.
- client
Tenant stringId - Customer resource client tenant Id of subscription.
- contact
Email string - Customer resource contact email.
- contact
Name string - Customer resource contact full name.
- contact
Phone string - Customer resource contact phone.
- customer
Name string - Customer resource name.
- fully
Qualified stringResource Id - Customer resource Azure fully qualified resource Id.
- is
Enterprise booleanManaged - Customer resource flag for enterprise management as boolean.
- is
Entitled boolean - Customer resource entitlement flag as boolean.
- release
Version number - Customer resource Mcc release version.
- resend
Signup booleanCode - Customer resource flag for resending signup code as boolean.
- should
Migrate boolean - Customer resource flag for migration.
- verify
Signup booleanCode - Customer resource flag for requiring verification of signup code as boolean.
- create_
async_ stroperation_ id - Customer resource create async operation Id.
- customer_
id str - Customer resource Guid Id.
- delete_
async_ stroperation_ id - Customer resource deletion async operation Id.
- last_
sync_ strwith_ azure_ timestamp - Customer resource last Azure sync timestamp.
- synch_
with_ intazure_ attempts_ count - Customer resource sync attempts.
- client_
tenant_ strid - 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_ strresource_ id - Customer resource Azure fully qualified resource Id.
- is_
enterprise_ boolmanaged - 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_ boolcode - Customer resource flag for resending signup code as boolean.
- should_
migrate bool - Customer resource flag for migration.
- verify_
signup_ boolcode - Customer resource flag for requiring verification of signup code as boolean.
- create
Async StringOperation Id - Customer resource create async operation Id.
- customer
Id String - Customer resource Guid Id.
- delete
Async StringOperation Id - Customer resource deletion async operation Id.
- last
Sync StringWith Azure Timestamp - Customer resource last Azure sync timestamp.
- synch
With NumberAzure Attempts Count - Customer resource sync attempts.
- client
Tenant StringId - Customer resource client tenant Id of subscription.
- contact
Email String - Customer resource contact email.
- contact
Name String - Customer resource contact full name.
- contact
Phone String - Customer resource contact phone.
- customer
Name String - Customer resource name.
- fully
Qualified StringResource Id - Customer resource Azure fully qualified resource Id.
- is
Enterprise BooleanManaged - Customer resource flag for enterprise management as boolean.
- is
Entitled Boolean - Customer resource entitlement flag as boolean.
- release
Version Number - Customer resource Mcc release version.
- resend
Signup BooleanCode - Customer resource flag for resending signup code as boolean.
- should
Migrate Boolean - Customer resource flag for migration.
- verify
Signup BooleanCode - Customer resource flag for requiring verification of signup code as boolean.
CustomerProperty, CustomerPropertyArgs
- Additional
Customer Pulumi.Properties Azure Native. Connected Cache. Inputs. Additional Customer Properties - Mcc customer resource additional properties.
- Customer
Pulumi.
Azure Native. Connected Cache. Inputs. Customer Entity - Mcc customer resource (customer entity).
- Additional
Customer AdditionalProperties Customer Properties - Mcc customer resource additional properties.
- Customer
Customer
Entity - Mcc customer resource (customer entity).
- additional
Customer AdditionalProperties Customer Properties - Mcc customer resource additional properties.
- customer
Customer
Entity - Mcc customer resource (customer entity).
- additional
Customer AdditionalProperties Customer Properties - Mcc customer resource additional properties.
- customer
Customer
Entity - Mcc customer resource (customer entity).
- additional_
customer_ Additionalproperties Customer Properties - Mcc customer resource additional properties.
- customer
Customer
Entity - Mcc customer resource (customer entity).
- additional
Customer Property MapProperties - Mcc customer resource additional properties.
- customer Property Map
- Mcc customer resource (customer entity).
CustomerPropertyResponse, CustomerPropertyResponseArgs
- Error
Pulumi.
Azure Native. Connected Cache. Inputs. Error Detail Response - Mcc response error details.
- Provisioning
State string - The provisioned state of the resource
- Status string
- HTTP error status code.
- Status
Code string - Mcc response status code.
- Status
Details string - Mcc response status details for retrieving response inner details.
- Status
Text string - Mcc response status text as string for retrieving status details.
- Additional
Customer Pulumi.Properties Azure Native. Connected Cache. Inputs. Additional Customer Properties Response - Mcc customer resource additional properties.
- Customer
Pulumi.
Azure Native. Connected Cache. Inputs. Customer Entity Response - Mcc customer resource (customer entity).
- Error
Error
Detail Response - Mcc response error details.
- Provisioning
State string - The provisioned state of the resource
- Status string
- HTTP error status code.
- Status
Code string - Mcc response status code.
- Status
Details string - Mcc response status details for retrieving response inner details.
- Status
Text string - Mcc response status text as string for retrieving status details.
- Additional
Customer AdditionalProperties Customer Properties Response - Mcc customer resource additional properties.
- Customer
Customer
Entity Response - Mcc customer resource (customer entity).
- error
Error
Detail Response - Mcc response error details.
- provisioning
State String - The provisioned state of the resource
- status String
- HTTP error status code.
- status
Code String - Mcc response status code.
- status
Details String - Mcc response status details for retrieving response inner details.
- status
Text String - Mcc response status text as string for retrieving status details.
- additional
Customer AdditionalProperties Customer Properties Response - Mcc customer resource additional properties.
- customer
Customer
Entity Response - Mcc customer resource (customer entity).
- error
Error
Detail Response - Mcc response error details.
- provisioning
State string - The provisioned state of the resource
- status string
- HTTP error status code.
- status
Code string - Mcc response status code.
- status
Details string - Mcc response status details for retrieving response inner details.
- status
Text string - Mcc response status text as string for retrieving status details.
- additional
Customer AdditionalProperties Customer Properties Response - Mcc customer resource additional properties.
- customer
Customer
Entity Response - Mcc customer resource (customer entity).
- error
Error
Detail Response - 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_ Additionalproperties Customer Properties Response - Mcc customer resource additional properties.
- customer
Customer
Entity Response - Mcc customer resource (customer entity).
- error Property Map
- Mcc response error details.
- provisioning
State String - The provisioned state of the resource
- status String
- HTTP error status code.
- status
Code String - Mcc response status code.
- status
Details String - Mcc response status details for retrieving response inner details.
- status
Text String - Mcc response status text as string for retrieving status details.
- additional
Customer Property MapProperties - Mcc customer resource additional properties.
- customer Property Map
- Mcc customer resource (customer entity).
CustomerTransitState, CustomerTransitStateArgs
- No
Transit - NoTransitdo not have transit
- Combined
Transit - CombinedTransittransit provider and have own subscribers
- Transit
Only - TransitOnlypure transit provider or network service provider
- Customer
Transit State No Transit - NoTransitdo not have transit
- Customer
Transit State Combined Transit - CombinedTransittransit provider and have own subscribers
- Customer
Transit State Transit Only - 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
- No
Transit - NoTransitdo not have transit
- Combined
Transit - CombinedTransittransit provider and have own subscribers
- Transit
Only - 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
- "No
Transit" - NoTransitdo not have transit
- "Combined
Transit" - CombinedTransittransit provider and have own subscribers
- "Transit
Only" - TransitOnlypure transit provider or network service provider
ErrorAdditionalInfoResponse, ErrorAdditionalInfoResponseArgs
ErrorDetailResponse, ErrorDetailResponseArgs
- Additional
Info List<Pulumi.Azure Native. Connected Cache. Inputs. Error Additional Info Response> - The error additional info.
- Code string
- The error code.
- Details
List<Pulumi.
Azure Native. Connected Cache. Inputs. Error Detail Response> - The error details.
- Message string
- The error message.
- Target string
- The error target.
- Additional
Info []ErrorAdditional Info Response - The error additional info.
- Code string
- The error code.
- Details
[]Error
Detail Response - The error details.
- Message string
- The error message.
- Target string
- The error target.
- additional
Info List<ErrorAdditional Info Response> - The error additional info.
- code String
- The error code.
- details
List<Error
Detail Response> - The error details.
- message String
- The error message.
- target String
- The error target.
- additional
Info ErrorAdditional Info Response[] - The error additional info.
- code string
- The error code.
- details
Error
Detail Response[] - The error details.
- message string
- The error message.
- target string
- The error target.
- additional_
info Sequence[ErrorAdditional Info Response] - The error additional info.
- code str
- The error code.
- details
Sequence[Error
Detail Response] - The error details.
- message str
- The error message.
- target str
- The error target.
- additional
Info 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
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified stringBy Type - 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_ strtype - The type of identity that created the resource.
- last_
modified_ strat - The timestamp of resource last modification (UTC)
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ strby_ type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - 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:IspCustomer MCCTPTest2 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ConnectedCache/ispCustomers/{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