azure-native.connectedcache.IspCacheNodesOperation
Explore with Pulumi AI
Represents the high level Nodes needed to provision cache node resources Azure REST API version: 2023-05-01-preview.
Example Usage
IspCacheNodesOperations_CreateOrUpdate
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var ispCacheNodesOperation = new AzureNative.ConnectedCache.IspCacheNodesOperation("ispCacheNodesOperation", new()
    {
        CacheNodeResourceName = "cabakm",
        CustomerResourceName = "zpqzbmanlljgmkrthtydrtneavhlnlqkdmviq",
        Location = "westus",
        Properties = new AzureNative.ConnectedCache.Inputs.CacheNodePropertyArgs
        {
            AdditionalCacheNodeProperties = new AzureNative.ConnectedCache.Inputs.AdditionalCacheNodePropertiesArgs
            {
                BgpConfiguration = new AzureNative.ConnectedCache.Inputs.BgpConfigurationArgs
                {
                    AsnToIpAddressMapping = "pafcimhoog",
                },
                CacheNodePropertiesDetailsIssuesList = new[]
                {
                    "ex",
                },
                DriveConfiguration = new[]
                {
                    new AzureNative.ConnectedCache.Inputs.CacheNodeDriveConfigurationArgs
                    {
                        CacheNumber = 1,
                        NginxMapping = "lijygenjq",
                        PhysicalPath = "/mcc",
                        SizeInGb = 500,
                    },
                },
                OptionalProperty1 = "hvpmt",
                OptionalProperty2 = "talanelmsgxvksrzoeeontqkjzbpv",
                OptionalProperty3 = "bxkoxq",
                OptionalProperty4 = "pqlkcekupusoc",
                OptionalProperty5 = "nyvvmrjigqdufzjdvazdca",
                ProxyUrl = "qhux",
                ProxyUrlConfiguration = new AzureNative.ConnectedCache.Inputs.ProxyUrlConfigurationArgs
                {
                    ProxyUrl = "hplstyg",
                },
            },
            CacheNode = new AzureNative.ConnectedCache.Inputs.CacheNodeEntityArgs
            {
                CacheNodeId = "xjzffjftwcgsehanoxsl",
                CacheNodeName = "mfjxb",
                CidrCsv = new[]
                {
                    "nlqlvrthafvvljuupcbcw",
                },
                CidrSelectionType = 4,
                CustomerAsn = 4,
                CustomerIndex = "qtoiglqaswivmkjhzogburcxtszmek",
                CustomerName = "xwyqk",
                FullyQualifiedResourceId = "hskxkpbiqbrbjiwdzrxndru",
                IpAddress = "voctagljcwqgcpnionqdcbjk",
                IsEnabled = true,
                IsEnterpriseManaged = true,
                MaxAllowableEgressInMbps = 29,
                ShouldMigrate = true,
            },
            StatusCode = "1",
            StatusDetails = "djruqvptzxak",
            StatusText = "Success",
        },
        ResourceGroupName = "rgConnectedCache",
        Tags = 
        {
            { "key4171", "qtjlszkawsdujzpgohsbw" },
        },
    });
});
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.NewIspCacheNodesOperation(ctx, "ispCacheNodesOperation", &connectedcache.IspCacheNodesOperationArgs{
			CacheNodeResourceName: pulumi.String("cabakm"),
			CustomerResourceName:  pulumi.String("zpqzbmanlljgmkrthtydrtneavhlnlqkdmviq"),
			Location:              pulumi.String("westus"),
			Properties: &connectedcache.CacheNodePropertyArgs{
				AdditionalCacheNodeProperties: &connectedcache.AdditionalCacheNodePropertiesArgs{
					BgpConfiguration: &connectedcache.BgpConfigurationArgs{
						AsnToIpAddressMapping: pulumi.String("pafcimhoog"),
					},
					CacheNodePropertiesDetailsIssuesList: pulumi.StringArray{
						pulumi.String("ex"),
					},
					DriveConfiguration: connectedcache.CacheNodeDriveConfigurationArray{
						&connectedcache.CacheNodeDriveConfigurationArgs{
							CacheNumber:  pulumi.Int(1),
							NginxMapping: pulumi.String("lijygenjq"),
							PhysicalPath: pulumi.String("/mcc"),
							SizeInGb:     pulumi.Int(500),
						},
					},
					OptionalProperty1: pulumi.String("hvpmt"),
					OptionalProperty2: pulumi.String("talanelmsgxvksrzoeeontqkjzbpv"),
					OptionalProperty3: pulumi.String("bxkoxq"),
					OptionalProperty4: pulumi.String("pqlkcekupusoc"),
					OptionalProperty5: pulumi.String("nyvvmrjigqdufzjdvazdca"),
					ProxyUrl:          pulumi.String("qhux"),
					ProxyUrlConfiguration: &connectedcache.ProxyUrlConfigurationArgs{
						ProxyUrl: pulumi.String("hplstyg"),
					},
				},
				CacheNode: &connectedcache.CacheNodeEntityArgs{
					CacheNodeId:   pulumi.String("xjzffjftwcgsehanoxsl"),
					CacheNodeName: pulumi.String("mfjxb"),
					CidrCsv: pulumi.StringArray{
						pulumi.String("nlqlvrthafvvljuupcbcw"),
					},
					CidrSelectionType:        pulumi.Int(4),
					CustomerAsn:              pulumi.Int(4),
					CustomerIndex:            pulumi.String("qtoiglqaswivmkjhzogburcxtszmek"),
					CustomerName:             pulumi.String("xwyqk"),
					FullyQualifiedResourceId: pulumi.String("hskxkpbiqbrbjiwdzrxndru"),
					IpAddress:                pulumi.String("voctagljcwqgcpnionqdcbjk"),
					IsEnabled:                pulumi.Bool(true),
					IsEnterpriseManaged:      pulumi.Bool(true),
					MaxAllowableEgressInMbps: pulumi.Int(29),
					ShouldMigrate:            pulumi.Bool(true),
				},
				StatusCode:    pulumi.String("1"),
				StatusDetails: pulumi.String("djruqvptzxak"),
				StatusText:    pulumi.String("Success"),
			},
			ResourceGroupName: pulumi.String("rgConnectedCache"),
			Tags: pulumi.StringMap{
				"key4171": pulumi.String("qtjlszkawsdujzpgohsbw"),
			},
		})
		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.IspCacheNodesOperation;
import com.pulumi.azurenative.connectedcache.IspCacheNodesOperationArgs;
import com.pulumi.azurenative.connectedcache.inputs.CacheNodePropertyArgs;
import com.pulumi.azurenative.connectedcache.inputs.AdditionalCacheNodePropertiesArgs;
import com.pulumi.azurenative.connectedcache.inputs.BgpConfigurationArgs;
import com.pulumi.azurenative.connectedcache.inputs.ProxyUrlConfigurationArgs;
import com.pulumi.azurenative.connectedcache.inputs.CacheNodeEntityArgs;
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 ispCacheNodesOperation = new IspCacheNodesOperation("ispCacheNodesOperation", IspCacheNodesOperationArgs.builder()
            .cacheNodeResourceName("cabakm")
            .customerResourceName("zpqzbmanlljgmkrthtydrtneavhlnlqkdmviq")
            .location("westus")
            .properties(CacheNodePropertyArgs.builder()
                .additionalCacheNodeProperties(AdditionalCacheNodePropertiesArgs.builder()
                    .bgpConfiguration(BgpConfigurationArgs.builder()
                        .asnToIpAddressMapping("pafcimhoog")
                        .build())
                    .cacheNodePropertiesDetailsIssuesList("ex")
                    .driveConfiguration(CacheNodeDriveConfigurationArgs.builder()
                        .cacheNumber(1)
                        .nginxMapping("lijygenjq")
                        .physicalPath("/mcc")
                        .sizeInGb(500)
                        .build())
                    .optionalProperty1("hvpmt")
                    .optionalProperty2("talanelmsgxvksrzoeeontqkjzbpv")
                    .optionalProperty3("bxkoxq")
                    .optionalProperty4("pqlkcekupusoc")
                    .optionalProperty5("nyvvmrjigqdufzjdvazdca")
                    .proxyUrl("qhux")
                    .proxyUrlConfiguration(ProxyUrlConfigurationArgs.builder()
                        .proxyUrl("hplstyg")
                        .build())
                    .build())
                .cacheNode(CacheNodeEntityArgs.builder()
                    .cacheNodeId("xjzffjftwcgsehanoxsl")
                    .cacheNodeName("mfjxb")
                    .cidrCsv("nlqlvrthafvvljuupcbcw")
                    .cidrSelectionType(4)
                    .customerAsn(4)
                    .customerIndex("qtoiglqaswivmkjhzogburcxtszmek")
                    .customerName("xwyqk")
                    .fullyQualifiedResourceId("hskxkpbiqbrbjiwdzrxndru")
                    .ipAddress("voctagljcwqgcpnionqdcbjk")
                    .isEnabled(true)
                    .isEnterpriseManaged(true)
                    .maxAllowableEgressInMbps(29)
                    .shouldMigrate(true)
                    .build())
                .statusCode("1")
                .statusDetails("djruqvptzxak")
                .statusText("Success")
                .build())
            .resourceGroupName("rgConnectedCache")
            .tags(Map.of("key4171", "qtjlszkawsdujzpgohsbw"))
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const ispCacheNodesOperation = new azure_native.connectedcache.IspCacheNodesOperation("ispCacheNodesOperation", {
    cacheNodeResourceName: "cabakm",
    customerResourceName: "zpqzbmanlljgmkrthtydrtneavhlnlqkdmviq",
    location: "westus",
    properties: {
        additionalCacheNodeProperties: {
            bgpConfiguration: {
                asnToIpAddressMapping: "pafcimhoog",
            },
            cacheNodePropertiesDetailsIssuesList: ["ex"],
            driveConfiguration: [{
                cacheNumber: 1,
                nginxMapping: "lijygenjq",
                physicalPath: "/mcc",
                sizeInGb: 500,
            }],
            optionalProperty1: "hvpmt",
            optionalProperty2: "talanelmsgxvksrzoeeontqkjzbpv",
            optionalProperty3: "bxkoxq",
            optionalProperty4: "pqlkcekupusoc",
            optionalProperty5: "nyvvmrjigqdufzjdvazdca",
            proxyUrl: "qhux",
            proxyUrlConfiguration: {
                proxyUrl: "hplstyg",
            },
        },
        cacheNode: {
            cacheNodeId: "xjzffjftwcgsehanoxsl",
            cacheNodeName: "mfjxb",
            cidrCsv: ["nlqlvrthafvvljuupcbcw"],
            cidrSelectionType: 4,
            customerAsn: 4,
            customerIndex: "qtoiglqaswivmkjhzogburcxtszmek",
            customerName: "xwyqk",
            fullyQualifiedResourceId: "hskxkpbiqbrbjiwdzrxndru",
            ipAddress: "voctagljcwqgcpnionqdcbjk",
            isEnabled: true,
            isEnterpriseManaged: true,
            maxAllowableEgressInMbps: 29,
            shouldMigrate: true,
        },
        statusCode: "1",
        statusDetails: "djruqvptzxak",
        statusText: "Success",
    },
    resourceGroupName: "rgConnectedCache",
    tags: {
        key4171: "qtjlszkawsdujzpgohsbw",
    },
});
import pulumi
import pulumi_azure_native as azure_native
isp_cache_nodes_operation = azure_native.connectedcache.IspCacheNodesOperation("ispCacheNodesOperation",
    cache_node_resource_name="cabakm",
    customer_resource_name="zpqzbmanlljgmkrthtydrtneavhlnlqkdmviq",
    location="westus",
    properties={
        "additional_cache_node_properties": {
            "bgp_configuration": {
                "asn_to_ip_address_mapping": "pafcimhoog",
            },
            "cache_node_properties_details_issues_list": ["ex"],
            "drive_configuration": [{
                "cache_number": 1,
                "nginx_mapping": "lijygenjq",
                "physical_path": "/mcc",
                "size_in_gb": 500,
            }],
            "optional_property1": "hvpmt",
            "optional_property2": "talanelmsgxvksrzoeeontqkjzbpv",
            "optional_property3": "bxkoxq",
            "optional_property4": "pqlkcekupusoc",
            "optional_property5": "nyvvmrjigqdufzjdvazdca",
            "proxy_url": "qhux",
            "proxy_url_configuration": {
                "proxy_url": "hplstyg",
            },
        },
        "cache_node": {
            "cache_node_id": "xjzffjftwcgsehanoxsl",
            "cache_node_name": "mfjxb",
            "cidr_csv": ["nlqlvrthafvvljuupcbcw"],
            "cidr_selection_type": 4,
            "customer_asn": 4,
            "customer_index": "qtoiglqaswivmkjhzogburcxtszmek",
            "customer_name": "xwyqk",
            "fully_qualified_resource_id": "hskxkpbiqbrbjiwdzrxndru",
            "ip_address": "voctagljcwqgcpnionqdcbjk",
            "is_enabled": True,
            "is_enterprise_managed": True,
            "max_allowable_egress_in_mbps": 29,
            "should_migrate": True,
        },
        "status_code": "1",
        "status_details": "djruqvptzxak",
        "status_text": "Success",
    },
    resource_group_name="rgConnectedCache",
    tags={
        "key4171": "qtjlszkawsdujzpgohsbw",
    })
resources:
  ispCacheNodesOperation:
    type: azure-native:connectedcache:IspCacheNodesOperation
    properties:
      cacheNodeResourceName: cabakm
      customerResourceName: zpqzbmanlljgmkrthtydrtneavhlnlqkdmviq
      location: westus
      properties:
        additionalCacheNodeProperties:
          bgpConfiguration:
            asnToIpAddressMapping: pafcimhoog
          cacheNodePropertiesDetailsIssuesList:
            - ex
          driveConfiguration:
            - cacheNumber: 1
              nginxMapping: lijygenjq
              physicalPath: /mcc
              sizeInGb: 500
          optionalProperty1: hvpmt
          optionalProperty2: talanelmsgxvksrzoeeontqkjzbpv
          optionalProperty3: bxkoxq
          optionalProperty4: pqlkcekupusoc
          optionalProperty5: nyvvmrjigqdufzjdvazdca
          proxyUrl: qhux
          proxyUrlConfiguration:
            proxyUrl: hplstyg
        cacheNode:
          cacheNodeId: xjzffjftwcgsehanoxsl
          cacheNodeName: mfjxb
          cidrCsv:
            - nlqlvrthafvvljuupcbcw
          cidrSelectionType: 4
          customerAsn: 4
          customerIndex: qtoiglqaswivmkjhzogburcxtszmek
          customerName: xwyqk
          fullyQualifiedResourceId: hskxkpbiqbrbjiwdzrxndru
          ipAddress: voctagljcwqgcpnionqdcbjk
          isEnabled: true
          isEnterpriseManaged: true
          maxAllowableEgressInMbps: 29
          shouldMigrate: true
        statusCode: '1'
        statusDetails: djruqvptzxak
        statusText: Success
      resourceGroupName: rgConnectedCache
      tags:
        key4171: qtjlszkawsdujzpgohsbw
Create IspCacheNodesOperation Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new IspCacheNodesOperation(name: string, args: IspCacheNodesOperationArgs, opts?: CustomResourceOptions);@overload
def IspCacheNodesOperation(resource_name: str,
                           args: IspCacheNodesOperationArgs,
                           opts: Optional[ResourceOptions] = None)
@overload
def IspCacheNodesOperation(resource_name: str,
                           opts: Optional[ResourceOptions] = None,
                           customer_resource_name: Optional[str] = None,
                           resource_group_name: Optional[str] = None,
                           cache_node_resource_name: Optional[str] = None,
                           location: Optional[str] = None,
                           properties: Optional[CacheNodePropertyArgs] = None,
                           tags: Optional[Mapping[str, str]] = None)func NewIspCacheNodesOperation(ctx *Context, name string, args IspCacheNodesOperationArgs, opts ...ResourceOption) (*IspCacheNodesOperation, error)public IspCacheNodesOperation(string name, IspCacheNodesOperationArgs args, CustomResourceOptions? opts = null)
public IspCacheNodesOperation(String name, IspCacheNodesOperationArgs args)
public IspCacheNodesOperation(String name, IspCacheNodesOperationArgs args, CustomResourceOptions options)
type: azure-native:connectedcache:IspCacheNodesOperation
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 IspCacheNodesOperationArgs
- 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 IspCacheNodesOperationArgs
- 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 IspCacheNodesOperationArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args IspCacheNodesOperationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args IspCacheNodesOperationArgs
- 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 ispCacheNodesOperationResource = new AzureNative.ConnectedCache.IspCacheNodesOperation("ispCacheNodesOperationResource", new()
{
    CustomerResourceName = "string",
    ResourceGroupName = "string",
    CacheNodeResourceName = "string",
    Location = "string",
    Properties = new AzureNative.ConnectedCache.Inputs.CacheNodePropertyArgs
    {
        AdditionalCacheNodeProperties = new AzureNative.ConnectedCache.Inputs.AdditionalCacheNodePropertiesArgs
        {
            AutoUpdateVersion = "string",
            BgpConfiguration = new AzureNative.ConnectedCache.Inputs.BgpConfigurationArgs
            {
                AsnToIpAddressMapping = "string",
            },
            CacheNodePropertiesDetailsIssuesList = new[]
            {
                "string",
            },
            DriveConfiguration = new[]
            {
                new AzureNative.ConnectedCache.Inputs.CacheNodeDriveConfigurationArgs
                {
                    CacheNumber = 0,
                    NginxMapping = "string",
                    PhysicalPath = "string",
                    SizeInGb = 0,
                },
            },
            IsProxyRequired = "string",
            OptionalProperty1 = "string",
            OptionalProperty2 = "string",
            OptionalProperty3 = "string",
            OptionalProperty4 = "string",
            OptionalProperty5 = "string",
            OsType = "string",
            ProxyUrl = "string",
            ProxyUrlConfiguration = new AzureNative.ConnectedCache.Inputs.ProxyUrlConfigurationArgs
            {
                ProxyUrl = "string",
            },
            UpdateCycleType = "string",
            UpdateInfoDetails = "string",
            UpdateRequestedDateTime = "string",
        },
        CacheNode = new AzureNative.ConnectedCache.Inputs.CacheNodeEntityArgs
        {
            AutoUpdateRequestedDay = 0,
            AutoUpdateRequestedTime = "string",
            AutoUpdateRequestedWeek = 0,
            AutoUpdateRingType = "string",
            CacheNodeId = "string",
            CacheNodeName = "string",
            CidrCsv = new[]
            {
                "string",
            },
            CidrSelectionType = 0,
            CustomerAsn = 0,
            CustomerIndex = "string",
            CustomerName = "string",
            FullyQualifiedDomainName = "string",
            FullyQualifiedResourceId = "string",
            IpAddress = "string",
            IsEnabled = false,
            IsEnterpriseManaged = false,
            MaxAllowableEgressInMbps = 0,
            ShouldMigrate = false,
        },
        StatusCode = "string",
        StatusDetails = "string",
        StatusText = "string",
    },
    Tags = 
    {
        { "string", "string" },
    },
});
example, err := connectedcache.NewIspCacheNodesOperation(ctx, "ispCacheNodesOperationResource", &connectedcache.IspCacheNodesOperationArgs{
	CustomerResourceName:  pulumi.String("string"),
	ResourceGroupName:     pulumi.String("string"),
	CacheNodeResourceName: pulumi.String("string"),
	Location:              pulumi.String("string"),
	Properties: &connectedcache.CacheNodePropertyArgs{
		AdditionalCacheNodeProperties: &connectedcache.AdditionalCacheNodePropertiesArgs{
			AutoUpdateVersion: pulumi.String("string"),
			BgpConfiguration: &connectedcache.BgpConfigurationArgs{
				AsnToIpAddressMapping: pulumi.String("string"),
			},
			CacheNodePropertiesDetailsIssuesList: pulumi.StringArray{
				pulumi.String("string"),
			},
			DriveConfiguration: connectedcache.CacheNodeDriveConfigurationArray{
				&connectedcache.CacheNodeDriveConfigurationArgs{
					CacheNumber:  pulumi.Int(0),
					NginxMapping: pulumi.String("string"),
					PhysicalPath: pulumi.String("string"),
					SizeInGb:     pulumi.Int(0),
				},
			},
			IsProxyRequired:   pulumi.String("string"),
			OptionalProperty1: pulumi.String("string"),
			OptionalProperty2: pulumi.String("string"),
			OptionalProperty3: pulumi.String("string"),
			OptionalProperty4: pulumi.String("string"),
			OptionalProperty5: pulumi.String("string"),
			OsType:            pulumi.String("string"),
			ProxyUrl:          pulumi.String("string"),
			ProxyUrlConfiguration: &connectedcache.ProxyUrlConfigurationArgs{
				ProxyUrl: pulumi.String("string"),
			},
			UpdateCycleType:         pulumi.String("string"),
			UpdateInfoDetails:       pulumi.String("string"),
			UpdateRequestedDateTime: pulumi.String("string"),
		},
		CacheNode: &connectedcache.CacheNodeEntityArgs{
			AutoUpdateRequestedDay:  pulumi.Int(0),
			AutoUpdateRequestedTime: pulumi.String("string"),
			AutoUpdateRequestedWeek: pulumi.Int(0),
			AutoUpdateRingType:      pulumi.String("string"),
			CacheNodeId:             pulumi.String("string"),
			CacheNodeName:           pulumi.String("string"),
			CidrCsv: pulumi.StringArray{
				pulumi.String("string"),
			},
			CidrSelectionType:        pulumi.Int(0),
			CustomerAsn:              pulumi.Int(0),
			CustomerIndex:            pulumi.String("string"),
			CustomerName:             pulumi.String("string"),
			FullyQualifiedDomainName: pulumi.String("string"),
			FullyQualifiedResourceId: pulumi.String("string"),
			IpAddress:                pulumi.String("string"),
			IsEnabled:                pulumi.Bool(false),
			IsEnterpriseManaged:      pulumi.Bool(false),
			MaxAllowableEgressInMbps: pulumi.Int(0),
			ShouldMigrate:            pulumi.Bool(false),
		},
		StatusCode:    pulumi.String("string"),
		StatusDetails: pulumi.String("string"),
		StatusText:    pulumi.String("string"),
	},
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
var ispCacheNodesOperationResource = new IspCacheNodesOperation("ispCacheNodesOperationResource", IspCacheNodesOperationArgs.builder()
    .customerResourceName("string")
    .resourceGroupName("string")
    .cacheNodeResourceName("string")
    .location("string")
    .properties(CacheNodePropertyArgs.builder()
        .additionalCacheNodeProperties(AdditionalCacheNodePropertiesArgs.builder()
            .autoUpdateVersion("string")
            .bgpConfiguration(BgpConfigurationArgs.builder()
                .asnToIpAddressMapping("string")
                .build())
            .cacheNodePropertiesDetailsIssuesList("string")
            .driveConfiguration(CacheNodeDriveConfigurationArgs.builder()
                .cacheNumber(0)
                .nginxMapping("string")
                .physicalPath("string")
                .sizeInGb(0)
                .build())
            .isProxyRequired("string")
            .optionalProperty1("string")
            .optionalProperty2("string")
            .optionalProperty3("string")
            .optionalProperty4("string")
            .optionalProperty5("string")
            .osType("string")
            .proxyUrl("string")
            .proxyUrlConfiguration(ProxyUrlConfigurationArgs.builder()
                .proxyUrl("string")
                .build())
            .updateCycleType("string")
            .updateInfoDetails("string")
            .updateRequestedDateTime("string")
            .build())
        .cacheNode(CacheNodeEntityArgs.builder()
            .autoUpdateRequestedDay(0)
            .autoUpdateRequestedTime("string")
            .autoUpdateRequestedWeek(0)
            .autoUpdateRingType("string")
            .cacheNodeId("string")
            .cacheNodeName("string")
            .cidrCsv("string")
            .cidrSelectionType(0)
            .customerAsn(0)
            .customerIndex("string")
            .customerName("string")
            .fullyQualifiedDomainName("string")
            .fullyQualifiedResourceId("string")
            .ipAddress("string")
            .isEnabled(false)
            .isEnterpriseManaged(false)
            .maxAllowableEgressInMbps(0)
            .shouldMigrate(false)
            .build())
        .statusCode("string")
        .statusDetails("string")
        .statusText("string")
        .build())
    .tags(Map.of("string", "string"))
    .build());
isp_cache_nodes_operation_resource = azure_native.connectedcache.IspCacheNodesOperation("ispCacheNodesOperationResource",
    customer_resource_name="string",
    resource_group_name="string",
    cache_node_resource_name="string",
    location="string",
    properties={
        "additional_cache_node_properties": {
            "auto_update_version": "string",
            "bgp_configuration": {
                "asn_to_ip_address_mapping": "string",
            },
            "cache_node_properties_details_issues_list": ["string"],
            "drive_configuration": [{
                "cache_number": 0,
                "nginx_mapping": "string",
                "physical_path": "string",
                "size_in_gb": 0,
            }],
            "is_proxy_required": "string",
            "optional_property1": "string",
            "optional_property2": "string",
            "optional_property3": "string",
            "optional_property4": "string",
            "optional_property5": "string",
            "os_type": "string",
            "proxy_url": "string",
            "proxy_url_configuration": {
                "proxy_url": "string",
            },
            "update_cycle_type": "string",
            "update_info_details": "string",
            "update_requested_date_time": "string",
        },
        "cache_node": {
            "auto_update_requested_day": 0,
            "auto_update_requested_time": "string",
            "auto_update_requested_week": 0,
            "auto_update_ring_type": "string",
            "cache_node_id": "string",
            "cache_node_name": "string",
            "cidr_csv": ["string"],
            "cidr_selection_type": 0,
            "customer_asn": 0,
            "customer_index": "string",
            "customer_name": "string",
            "fully_qualified_domain_name": "string",
            "fully_qualified_resource_id": "string",
            "ip_address": "string",
            "is_enabled": False,
            "is_enterprise_managed": False,
            "max_allowable_egress_in_mbps": 0,
            "should_migrate": False,
        },
        "status_code": "string",
        "status_details": "string",
        "status_text": "string",
    },
    tags={
        "string": "string",
    })
const ispCacheNodesOperationResource = new azure_native.connectedcache.IspCacheNodesOperation("ispCacheNodesOperationResource", {
    customerResourceName: "string",
    resourceGroupName: "string",
    cacheNodeResourceName: "string",
    location: "string",
    properties: {
        additionalCacheNodeProperties: {
            autoUpdateVersion: "string",
            bgpConfiguration: {
                asnToIpAddressMapping: "string",
            },
            cacheNodePropertiesDetailsIssuesList: ["string"],
            driveConfiguration: [{
                cacheNumber: 0,
                nginxMapping: "string",
                physicalPath: "string",
                sizeInGb: 0,
            }],
            isProxyRequired: "string",
            optionalProperty1: "string",
            optionalProperty2: "string",
            optionalProperty3: "string",
            optionalProperty4: "string",
            optionalProperty5: "string",
            osType: "string",
            proxyUrl: "string",
            proxyUrlConfiguration: {
                proxyUrl: "string",
            },
            updateCycleType: "string",
            updateInfoDetails: "string",
            updateRequestedDateTime: "string",
        },
        cacheNode: {
            autoUpdateRequestedDay: 0,
            autoUpdateRequestedTime: "string",
            autoUpdateRequestedWeek: 0,
            autoUpdateRingType: "string",
            cacheNodeId: "string",
            cacheNodeName: "string",
            cidrCsv: ["string"],
            cidrSelectionType: 0,
            customerAsn: 0,
            customerIndex: "string",
            customerName: "string",
            fullyQualifiedDomainName: "string",
            fullyQualifiedResourceId: "string",
            ipAddress: "string",
            isEnabled: false,
            isEnterpriseManaged: false,
            maxAllowableEgressInMbps: 0,
            shouldMigrate: false,
        },
        statusCode: "string",
        statusDetails: "string",
        statusText: "string",
    },
    tags: {
        string: "string",
    },
});
type: azure-native:connectedcache:IspCacheNodesOperation
properties:
    cacheNodeResourceName: string
    customerResourceName: string
    location: string
    properties:
        additionalCacheNodeProperties:
            autoUpdateVersion: string
            bgpConfiguration:
                asnToIpAddressMapping: string
            cacheNodePropertiesDetailsIssuesList:
                - string
            driveConfiguration:
                - cacheNumber: 0
                  nginxMapping: string
                  physicalPath: string
                  sizeInGb: 0
            isProxyRequired: string
            optionalProperty1: string
            optionalProperty2: string
            optionalProperty3: string
            optionalProperty4: string
            optionalProperty5: string
            osType: string
            proxyUrl: string
            proxyUrlConfiguration:
                proxyUrl: string
            updateCycleType: string
            updateInfoDetails: string
            updateRequestedDateTime: string
        cacheNode:
            autoUpdateRequestedDay: 0
            autoUpdateRequestedTime: string
            autoUpdateRequestedWeek: 0
            autoUpdateRingType: string
            cacheNodeId: string
            cacheNodeName: string
            cidrCsv:
                - string
            cidrSelectionType: 0
            customerAsn: 0
            customerIndex: string
            customerName: string
            fullyQualifiedDomainName: string
            fullyQualifiedResourceId: string
            ipAddress: string
            isEnabled: false
            isEnterpriseManaged: false
            maxAllowableEgressInMbps: 0
            shouldMigrate: false
        statusCode: string
        statusDetails: string
        statusText: string
    resourceGroupName: string
    tags:
        string: string
IspCacheNodesOperation 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 IspCacheNodesOperation resource accepts the following input properties:
- CustomerResource stringName 
- Name of the Customer resource
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- CacheNode stringResource Name 
- Name of the ConnectedCache resource
- Location string
- The geo-location where the resource lives
- Properties
Pulumi.Azure Native. Connected Cache. Inputs. Cache Node Property 
- The resource-specific properties for this resource.
- Dictionary<string, string>
- Resource tags.
- CustomerResource stringName 
- Name of the Customer resource
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- CacheNode stringResource Name 
- Name of the ConnectedCache resource
- Location string
- The geo-location where the resource lives
- Properties
CacheNode Property Args 
- The resource-specific properties for this resource.
- map[string]string
- Resource tags.
- customerResource StringName 
- Name of the Customer resource
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- cacheNode StringResource Name 
- Name of the ConnectedCache resource
- location String
- The geo-location where the resource lives
- properties
CacheNode Property 
- The resource-specific properties for this resource.
- Map<String,String>
- Resource tags.
- customerResource stringName 
- Name of the Customer resource
- resourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- cacheNode stringResource Name 
- Name of the ConnectedCache resource
- location string
- The geo-location where the resource lives
- properties
CacheNode Property 
- The resource-specific properties for this resource.
- {[key: string]: string}
- Resource tags.
- customer_resource_ strname 
- Name of the Customer resource
- resource_group_ strname 
- The name of the resource group. The name is case insensitive.
- cache_node_ strresource_ name 
- Name of the ConnectedCache resource
- location str
- The geo-location where the resource lives
- properties
CacheNode Property Args 
- The resource-specific properties for this resource.
- Mapping[str, str]
- Resource tags.
- customerResource StringName 
- Name of the Customer resource
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- cacheNode StringResource Name 
- Name of the ConnectedCache 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 IspCacheNodesOperation 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.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
- SystemData 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
- systemData 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
- systemData 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
- 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
AdditionalCacheNodeProperties, AdditionalCacheNodePropertiesArgs        
- AutoUpdate stringVersion 
- Auto update or fast update version
- BgpConfiguration Pulumi.Azure Native. Connected Cache. Inputs. Bgp Configuration 
- Cache node resource Bgp configuration.
- CacheNode List<string>Properties Details Issues List 
- issues list to return the issues as part of the additional cache node properties
- DriveConfiguration List<Pulumi.Azure Native. Connected Cache. Inputs. Cache Node Drive Configuration> 
- Cache node resource drive configurations.
- IsProxy string | Pulumi.Required Azure Native. Connected Cache. Proxy Required 
- Cache node resource requires a proxy
- 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
- OsType string | Pulumi.Azure Native. Connected Cache. Os Type 
- Operating system of the cache node
- ProxyUrl string
- Cache node resource Mcc proxy Url
- ProxyUrl Pulumi.Configuration Azure Native. Connected Cache. Inputs. Proxy Url Configuration 
- proxyUrl configuration of the cache node
- UpdateCycle string | Pulumi.Type Azure Native. Connected Cache. Cycle Type 
- Update Cycle Type
- UpdateInfo stringDetails 
- Update related information details
- UpdateRequested stringDate Time 
- customer requested date time for mcc install of update cycle
- AutoUpdate stringVersion 
- Auto update or fast update version
- BgpConfiguration BgpConfiguration 
- Cache node resource Bgp configuration.
- CacheNode []stringProperties Details Issues List 
- issues list to return the issues as part of the additional cache node properties
- DriveConfiguration []CacheNode Drive Configuration 
- Cache node resource drive configurations.
- IsProxy string | ProxyRequired Required 
- Cache node resource requires a proxy
- 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
- OsType string | OsType 
- Operating system of the cache node
- ProxyUrl string
- Cache node resource Mcc proxy Url
- ProxyUrl ProxyConfiguration Url Configuration 
- proxyUrl configuration of the cache node
- UpdateCycle string | CycleType Type 
- Update Cycle Type
- UpdateInfo stringDetails 
- Update related information details
- UpdateRequested stringDate Time 
- customer requested date time for mcc install of update cycle
- autoUpdate StringVersion 
- Auto update or fast update version
- bgpConfiguration BgpConfiguration 
- Cache node resource Bgp configuration.
- cacheNode List<String>Properties Details Issues List 
- issues list to return the issues as part of the additional cache node properties
- driveConfiguration List<CacheNode Drive Configuration> 
- Cache node resource drive configurations.
- isProxy String | ProxyRequired Required 
- Cache node resource requires a proxy
- 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
- osType String | OsType 
- Operating system of the cache node
- proxyUrl String
- Cache node resource Mcc proxy Url
- proxyUrl ProxyConfiguration Url Configuration 
- proxyUrl configuration of the cache node
- updateCycle String | CycleType Type 
- Update Cycle Type
- updateInfo StringDetails 
- Update related information details
- updateRequested StringDate Time 
- customer requested date time for mcc install of update cycle
- autoUpdate stringVersion 
- Auto update or fast update version
- bgpConfiguration BgpConfiguration 
- Cache node resource Bgp configuration.
- cacheNode string[]Properties Details Issues List 
- issues list to return the issues as part of the additional cache node properties
- driveConfiguration CacheNode Drive Configuration[] 
- Cache node resource drive configurations.
- isProxy string | ProxyRequired Required 
- Cache node resource requires a proxy
- 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
- osType string | OsType 
- Operating system of the cache node
- proxyUrl string
- Cache node resource Mcc proxy Url
- proxyUrl ProxyConfiguration Url Configuration 
- proxyUrl configuration of the cache node
- updateCycle string | CycleType Type 
- Update Cycle Type
- updateInfo stringDetails 
- Update related information details
- updateRequested stringDate Time 
- customer requested date time for mcc install of update cycle
- auto_update_ strversion 
- Auto update or fast update version
- bgp_configuration BgpConfiguration 
- Cache node resource Bgp configuration.
- cache_node_ Sequence[str]properties_ details_ issues_ list 
- issues list to return the issues as part of the additional cache node properties
- drive_configuration Sequence[CacheNode Drive Configuration] 
- Cache node resource drive configurations.
- is_proxy_ str | Proxyrequired Required 
- Cache node resource requires a proxy
- 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
- os_type str | OsType 
- Operating system of the cache node
- proxy_url str
- Cache node resource Mcc proxy Url
- proxy_url_ Proxyconfiguration Url Configuration 
- proxyUrl configuration of the cache node
- update_cycle_ str | Cycletype Type 
- Update Cycle Type
- update_info_ strdetails 
- Update related information details
- update_requested_ strdate_ time 
- customer requested date time for mcc install of update cycle
- autoUpdate StringVersion 
- Auto update or fast update version
- bgpConfiguration Property Map
- Cache node resource Bgp configuration.
- cacheNode List<String>Properties Details Issues List 
- issues list to return the issues as part of the additional cache node properties
- driveConfiguration List<Property Map>
- Cache node resource drive configurations.
- isProxy String | "None" | "Required"Required 
- Cache node resource requires a proxy
- 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
- osType String | "Windows" | "Linux" | "Eflow"
- Operating system of the cache node
- proxyUrl String
- Cache node resource Mcc proxy Url
- proxyUrl Property MapConfiguration 
- proxyUrl configuration of the cache node
- updateCycle String | "Preview" | "Slow" | "Fast"Type 
- Update Cycle Type
- updateInfo StringDetails 
- Update related information details
- updateRequested StringDate Time 
- customer requested date time for mcc install of update cycle
AdditionalCacheNodePropertiesResponse, AdditionalCacheNodePropertiesResponseArgs          
- AggregatedStatus intCode 
- Cache node resource aggregated status code.
- AggregatedStatus stringDetails 
- Cache node resource aggregated status details.
- AggregatedStatus stringText 
- Cache node resource aggregated status text.
- AutoUpdate stringApplied Version 
- Auto update version that is the applied to update on mcc cache node
- AutoUpdate stringLast Applied Date Time 
- Auto update last applied date time of mcc install
- AutoUpdate stringLast Applied Details 
- Auto Update status details from the backend after applying the new version details
- AutoUpdate stringLast Applied State 
- Last applied auto update state for mcc install of auto update cycle
- AutoUpdate stringLast Triggered Date Time 
- Auto update last triggered date time of mcc install
- AutoUpdate stringNext Available Date Time 
- Auto update last applied date time of mcc install
- AutoUpdate stringNext Available Version 
- Auto update version that is the Next available version to update on mcc cache node
- CacheNode intState 
- Cache node resource state as integer.
- CacheNode stringState Detailed Text 
- Cache node resource detailed state text.
- CacheNode stringState Short Text 
- Cache node resource short state text.
- IsProvisioned bool
- Cache node resource flag indicating if cache node has been physically installed or provisioned on their physical lab.
- ProductVersion string
- Cache node resource Mcc product version.
- AutoUpdate stringVersion 
- Auto update or fast update version
- BgpConfiguration Pulumi.Azure Native. Connected Cache. Inputs. Bgp Configuration Response 
- Cache node resource Bgp configuration.
- CacheNode List<string>Properties Details Issues List 
- issues list to return the issues as part of the additional cache node properties
- DriveConfiguration List<Pulumi.Azure Native. Connected Cache. Inputs. Cache Node Drive Configuration Response> 
- Cache node resource drive configurations.
- IsProxy stringRequired 
- Cache node resource requires a proxy
- 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
- OsType string
- Operating system of the cache node
- ProxyUrl string
- Cache node resource Mcc proxy Url
- ProxyUrl Pulumi.Configuration Azure Native. Connected Cache. Inputs. Proxy Url Configuration Response 
- proxyUrl configuration of the cache node
- UpdateCycle stringType 
- Update Cycle Type
- UpdateInfo stringDetails 
- Update related information details
- UpdateRequested stringDate Time 
- customer requested date time for mcc install of update cycle
- AggregatedStatus intCode 
- Cache node resource aggregated status code.
- AggregatedStatus stringDetails 
- Cache node resource aggregated status details.
- AggregatedStatus stringText 
- Cache node resource aggregated status text.
- AutoUpdate stringApplied Version 
- Auto update version that is the applied to update on mcc cache node
- AutoUpdate stringLast Applied Date Time 
- Auto update last applied date time of mcc install
- AutoUpdate stringLast Applied Details 
- Auto Update status details from the backend after applying the new version details
- AutoUpdate stringLast Applied State 
- Last applied auto update state for mcc install of auto update cycle
- AutoUpdate stringLast Triggered Date Time 
- Auto update last triggered date time of mcc install
- AutoUpdate stringNext Available Date Time 
- Auto update last applied date time of mcc install
- AutoUpdate stringNext Available Version 
- Auto update version that is the Next available version to update on mcc cache node
- CacheNode intState 
- Cache node resource state as integer.
- CacheNode stringState Detailed Text 
- Cache node resource detailed state text.
- CacheNode stringState Short Text 
- Cache node resource short state text.
- IsProvisioned bool
- Cache node resource flag indicating if cache node has been physically installed or provisioned on their physical lab.
- ProductVersion string
- Cache node resource Mcc product version.
- AutoUpdate stringVersion 
- Auto update or fast update version
- BgpConfiguration BgpConfiguration Response 
- Cache node resource Bgp configuration.
- CacheNode []stringProperties Details Issues List 
- issues list to return the issues as part of the additional cache node properties
- DriveConfiguration []CacheNode Drive Configuration Response 
- Cache node resource drive configurations.
- IsProxy stringRequired 
- Cache node resource requires a proxy
- 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
- OsType string
- Operating system of the cache node
- ProxyUrl string
- Cache node resource Mcc proxy Url
- ProxyUrl ProxyConfiguration Url Configuration Response 
- proxyUrl configuration of the cache node
- UpdateCycle stringType 
- Update Cycle Type
- UpdateInfo stringDetails 
- Update related information details
- UpdateRequested stringDate Time 
- customer requested date time for mcc install of update cycle
- aggregatedStatus IntegerCode 
- Cache node resource aggregated status code.
- aggregatedStatus StringDetails 
- Cache node resource aggregated status details.
- aggregatedStatus StringText 
- Cache node resource aggregated status text.
- autoUpdate StringApplied Version 
- Auto update version that is the applied to update on mcc cache node
- autoUpdate StringLast Applied Date Time 
- Auto update last applied date time of mcc install
- autoUpdate StringLast Applied Details 
- Auto Update status details from the backend after applying the new version details
- autoUpdate StringLast Applied State 
- Last applied auto update state for mcc install of auto update cycle
- autoUpdate StringLast Triggered Date Time 
- Auto update last triggered date time of mcc install
- autoUpdate StringNext Available Date Time 
- Auto update last applied date time of mcc install
- autoUpdate StringNext Available Version 
- Auto update version that is the Next available version to update on mcc cache node
- cacheNode IntegerState 
- Cache node resource state as integer.
- cacheNode StringState Detailed Text 
- Cache node resource detailed state text.
- cacheNode StringState Short Text 
- Cache node resource short state text.
- isProvisioned Boolean
- Cache node resource flag indicating if cache node has been physically installed or provisioned on their physical lab.
- productVersion String
- Cache node resource Mcc product version.
- autoUpdate StringVersion 
- Auto update or fast update version
- bgpConfiguration BgpConfiguration Response 
- Cache node resource Bgp configuration.
- cacheNode List<String>Properties Details Issues List 
- issues list to return the issues as part of the additional cache node properties
- driveConfiguration List<CacheNode Drive Configuration Response> 
- Cache node resource drive configurations.
- isProxy StringRequired 
- Cache node resource requires a proxy
- 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
- osType String
- Operating system of the cache node
- proxyUrl String
- Cache node resource Mcc proxy Url
- proxyUrl ProxyConfiguration Url Configuration Response 
- proxyUrl configuration of the cache node
- updateCycle StringType 
- Update Cycle Type
- updateInfo StringDetails 
- Update related information details
- updateRequested StringDate Time 
- customer requested date time for mcc install of update cycle
- aggregatedStatus numberCode 
- Cache node resource aggregated status code.
- aggregatedStatus stringDetails 
- Cache node resource aggregated status details.
- aggregatedStatus stringText 
- Cache node resource aggregated status text.
- autoUpdate stringApplied Version 
- Auto update version that is the applied to update on mcc cache node
- autoUpdate stringLast Applied Date Time 
- Auto update last applied date time of mcc install
- autoUpdate stringLast Applied Details 
- Auto Update status details from the backend after applying the new version details
- autoUpdate stringLast Applied State 
- Last applied auto update state for mcc install of auto update cycle
- autoUpdate stringLast Triggered Date Time 
- Auto update last triggered date time of mcc install
- autoUpdate stringNext Available Date Time 
- Auto update last applied date time of mcc install
- autoUpdate stringNext Available Version 
- Auto update version that is the Next available version to update on mcc cache node
- cacheNode numberState 
- Cache node resource state as integer.
- cacheNode stringState Detailed Text 
- Cache node resource detailed state text.
- cacheNode stringState Short Text 
- Cache node resource short state text.
- isProvisioned boolean
- Cache node resource flag indicating if cache node has been physically installed or provisioned on their physical lab.
- productVersion string
- Cache node resource Mcc product version.
- autoUpdate stringVersion 
- Auto update or fast update version
- bgpConfiguration BgpConfiguration Response 
- Cache node resource Bgp configuration.
- cacheNode string[]Properties Details Issues List 
- issues list to return the issues as part of the additional cache node properties
- driveConfiguration CacheNode Drive Configuration Response[] 
- Cache node resource drive configurations.
- isProxy stringRequired 
- Cache node resource requires a proxy
- 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
- osType string
- Operating system of the cache node
- proxyUrl string
- Cache node resource Mcc proxy Url
- proxyUrl ProxyConfiguration Url Configuration Response 
- proxyUrl configuration of the cache node
- updateCycle stringType 
- Update Cycle Type
- updateInfo stringDetails 
- Update related information details
- updateRequested stringDate Time 
- customer requested date time for mcc install of update cycle
- aggregated_status_ intcode 
- Cache node resource aggregated status code.
- aggregated_status_ strdetails 
- Cache node resource aggregated status details.
- aggregated_status_ strtext 
- Cache node resource aggregated status text.
- auto_update_ strapplied_ version 
- Auto update version that is the applied to update on mcc cache node
- auto_update_ strlast_ applied_ date_ time 
- Auto update last applied date time of mcc install
- auto_update_ strlast_ applied_ details 
- Auto Update status details from the backend after applying the new version details
- auto_update_ strlast_ applied_ state 
- Last applied auto update state for mcc install of auto update cycle
- auto_update_ strlast_ triggered_ date_ time 
- Auto update last triggered date time of mcc install
- auto_update_ strnext_ available_ date_ time 
- Auto update last applied date time of mcc install
- auto_update_ strnext_ available_ version 
- Auto update version that is the Next available version to update on mcc cache node
- cache_node_ intstate 
- Cache node resource state as integer.
- cache_node_ strstate_ detailed_ text 
- Cache node resource detailed state text.
- cache_node_ strstate_ short_ text 
- Cache node resource short state text.
- is_provisioned bool
- Cache node resource flag indicating if cache node has been physically installed or provisioned on their physical lab.
- product_version str
- Cache node resource Mcc product version.
- auto_update_ strversion 
- Auto update or fast update version
- bgp_configuration BgpConfiguration Response 
- Cache node resource Bgp configuration.
- cache_node_ Sequence[str]properties_ details_ issues_ list 
- issues list to return the issues as part of the additional cache node properties
- drive_configuration Sequence[CacheNode Drive Configuration Response] 
- Cache node resource drive configurations.
- is_proxy_ strrequired 
- Cache node resource requires a proxy
- 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
- os_type str
- Operating system of the cache node
- proxy_url str
- Cache node resource Mcc proxy Url
- proxy_url_ Proxyconfiguration Url Configuration Response 
- proxyUrl configuration of the cache node
- update_cycle_ strtype 
- Update Cycle Type
- update_info_ strdetails 
- Update related information details
- update_requested_ strdate_ time 
- customer requested date time for mcc install of update cycle
- aggregatedStatus NumberCode 
- Cache node resource aggregated status code.
- aggregatedStatus StringDetails 
- Cache node resource aggregated status details.
- aggregatedStatus StringText 
- Cache node resource aggregated status text.
- autoUpdate StringApplied Version 
- Auto update version that is the applied to update on mcc cache node
- autoUpdate StringLast Applied Date Time 
- Auto update last applied date time of mcc install
- autoUpdate StringLast Applied Details 
- Auto Update status details from the backend after applying the new version details
- autoUpdate StringLast Applied State 
- Last applied auto update state for mcc install of auto update cycle
- autoUpdate StringLast Triggered Date Time 
- Auto update last triggered date time of mcc install
- autoUpdate StringNext Available Date Time 
- Auto update last applied date time of mcc install
- autoUpdate StringNext Available Version 
- Auto update version that is the Next available version to update on mcc cache node
- cacheNode NumberState 
- Cache node resource state as integer.
- cacheNode StringState Detailed Text 
- Cache node resource detailed state text.
- cacheNode StringState Short Text 
- Cache node resource short state text.
- isProvisioned Boolean
- Cache node resource flag indicating if cache node has been physically installed or provisioned on their physical lab.
- productVersion String
- Cache node resource Mcc product version.
- autoUpdate StringVersion 
- Auto update or fast update version
- bgpConfiguration Property Map
- Cache node resource Bgp configuration.
- cacheNode List<String>Properties Details Issues List 
- issues list to return the issues as part of the additional cache node properties
- driveConfiguration List<Property Map>
- Cache node resource drive configurations.
- isProxy StringRequired 
- Cache node resource requires a proxy
- 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
- osType String
- Operating system of the cache node
- proxyUrl String
- Cache node resource Mcc proxy Url
- proxyUrl Property MapConfiguration 
- proxyUrl configuration of the cache node
- updateCycle StringType 
- Update Cycle Type
- updateInfo StringDetails 
- Update related information details
- updateRequested StringDate Time 
- customer requested date time for mcc install of update cycle
AutoUpdateRingType, AutoUpdateRingTypeArgs        
- Preview
- Previewcustomer selection of preview update install mcc on their physical vm
- Slow
- Slowcustomer selection of slow update to install mcc on their physical vm
- Fast
- Fastcustomer selection of fast / auto update to install mcc on their physical vm
- AutoUpdate Ring Type Preview 
- Previewcustomer selection of preview update install mcc on their physical vm
- AutoUpdate Ring Type Slow 
- Slowcustomer selection of slow update to install mcc on their physical vm
- AutoUpdate Ring Type Fast 
- Fastcustomer selection of fast / auto update to install mcc on their physical vm
- Preview
- Previewcustomer selection of preview update install mcc on their physical vm
- Slow
- Slowcustomer selection of slow update to install mcc on their physical vm
- Fast
- Fastcustomer selection of fast / auto update to install mcc on their physical vm
- Preview
- Previewcustomer selection of preview update install mcc on their physical vm
- Slow
- Slowcustomer selection of slow update to install mcc on their physical vm
- Fast
- Fastcustomer selection of fast / auto update to install mcc on their physical vm
- PREVIEW
- Previewcustomer selection of preview update install mcc on their physical vm
- SLOW
- Slowcustomer selection of slow update to install mcc on their physical vm
- FAST
- Fastcustomer selection of fast / auto update to install mcc on their physical vm
- "Preview"
- Previewcustomer selection of preview update install mcc on their physical vm
- "Slow"
- Slowcustomer selection of slow update to install mcc on their physical vm
- "Fast"
- Fastcustomer selection of fast / auto update to install mcc on their physical vm
BgpConfiguration, BgpConfigurationArgs    
- AsnTo stringIp Address Mapping 
- Asn to ip address mapping
- AsnTo stringIp Address Mapping 
- Asn to ip address mapping
- asnTo StringIp Address Mapping 
- Asn to ip address mapping
- asnTo stringIp Address Mapping 
- Asn to ip address mapping
- asn_to_ strip_ address_ mapping 
- Asn to ip address mapping
- asnTo StringIp Address Mapping 
- Asn to ip address mapping
BgpConfigurationResponse, BgpConfigurationResponseArgs      
- AsnTo stringIp Address Mapping 
- Asn to ip address mapping
- AsnTo stringIp Address Mapping 
- Asn to ip address mapping
- asnTo StringIp Address Mapping 
- Asn to ip address mapping
- asnTo stringIp Address Mapping 
- Asn to ip address mapping
- asn_to_ strip_ address_ mapping 
- Asn to ip address mapping
- asnTo StringIp Address Mapping 
- Asn to ip address mapping
CacheNodeDriveConfiguration, CacheNodeDriveConfigurationArgs        
- CacheNumber int
- corresponding nginx cache number. Valid cache numbers are 1 - 20
- NginxMapping string
- full binding for corresponding nginx cache drive
- PhysicalPath string
- physical path location of the folder used for caching content
- SizeIn intGb 
- physical size of the drive used for caching content
- CacheNumber int
- corresponding nginx cache number. Valid cache numbers are 1 - 20
- NginxMapping string
- full binding for corresponding nginx cache drive
- PhysicalPath string
- physical path location of the folder used for caching content
- SizeIn intGb 
- physical size of the drive used for caching content
- cacheNumber Integer
- corresponding nginx cache number. Valid cache numbers are 1 - 20
- nginxMapping String
- full binding for corresponding nginx cache drive
- physicalPath String
- physical path location of the folder used for caching content
- sizeIn IntegerGb 
- physical size of the drive used for caching content
- cacheNumber number
- corresponding nginx cache number. Valid cache numbers are 1 - 20
- nginxMapping string
- full binding for corresponding nginx cache drive
- physicalPath string
- physical path location of the folder used for caching content
- sizeIn numberGb 
- physical size of the drive used for caching content
- cache_number int
- corresponding nginx cache number. Valid cache numbers are 1 - 20
- nginx_mapping str
- full binding for corresponding nginx cache drive
- physical_path str
- physical path location of the folder used for caching content
- size_in_ intgb 
- physical size of the drive used for caching content
- cacheNumber Number
- corresponding nginx cache number. Valid cache numbers are 1 - 20
- nginxMapping String
- full binding for corresponding nginx cache drive
- physicalPath String
- physical path location of the folder used for caching content
- sizeIn NumberGb 
- physical size of the drive used for caching content
CacheNodeDriveConfigurationResponse, CacheNodeDriveConfigurationResponseArgs          
- CacheNumber int
- corresponding nginx cache number. Valid cache numbers are 1 - 20
- NginxMapping string
- full binding for corresponding nginx cache drive
- PhysicalPath string
- physical path location of the folder used for caching content
- SizeIn intGb 
- physical size of the drive used for caching content
- CacheNumber int
- corresponding nginx cache number. Valid cache numbers are 1 - 20
- NginxMapping string
- full binding for corresponding nginx cache drive
- PhysicalPath string
- physical path location of the folder used for caching content
- SizeIn intGb 
- physical size of the drive used for caching content
- cacheNumber Integer
- corresponding nginx cache number. Valid cache numbers are 1 - 20
- nginxMapping String
- full binding for corresponding nginx cache drive
- physicalPath String
- physical path location of the folder used for caching content
- sizeIn IntegerGb 
- physical size of the drive used for caching content
- cacheNumber number
- corresponding nginx cache number. Valid cache numbers are 1 - 20
- nginxMapping string
- full binding for corresponding nginx cache drive
- physicalPath string
- physical path location of the folder used for caching content
- sizeIn numberGb 
- physical size of the drive used for caching content
- cache_number int
- corresponding nginx cache number. Valid cache numbers are 1 - 20
- nginx_mapping str
- full binding for corresponding nginx cache drive
- physical_path str
- physical path location of the folder used for caching content
- size_in_ intgb 
- physical size of the drive used for caching content
- cacheNumber Number
- corresponding nginx cache number. Valid cache numbers are 1 - 20
- nginxMapping String
- full binding for corresponding nginx cache drive
- physicalPath String
- physical path location of the folder used for caching content
- sizeIn NumberGb 
- physical size of the drive used for caching content
CacheNodeEntity, CacheNodeEntityArgs      
- AutoUpdate intRequested Day 
- Customer requested day of week for mcc install of auto update cycle
- AutoUpdate stringRequested Time 
- Customer requested time of the day for mcc install of auto update cycle, should be hh:mm
- AutoUpdate intRequested Week 
- Customer requested week of month for mcc install of auto update cycle
- AutoUpdate string | Pulumi.Ring Type Azure Native. Connected Cache. Auto Update Ring Type 
- Auto Update Ring Type which is slow or fast etc.
- CacheNode stringId 
- Cache node resource identifier of the cache node
- CacheNode stringName 
- Cache node resource name.
- CidrCsv List<string>
- Cache node resource comma separated values of Cidrs.
- CidrSelection intType 
- Cache node resource current Cidr range precedence selection type.
- CustomerAsn int
- Cache node resource customer resource Asn (autonomous system number)
- CustomerIndex string
- Cache node resource customer index as string.
- CustomerName string
- Cache node resource customer resource name.
- FullyQualified stringDomain Name 
- FQDN(fully qualified domain name) value of the mcc cache node
- FullyQualified stringResource Id 
- Cache node resource Azure fully qualified resource Id.
- IpAddress string
- Cache node resource Ip address.
- IsEnabled bool
- Cache node resource flag for indicating if cache node is enabled.
- IsEnterprise boolManaged 
- Cache node resource flag for determining if managed by enterprise as boolean.
- MaxAllowable intEgress In Mbps 
- Cache node resource maximum allowed egress in Mbps.
- ShouldMigrate bool
- Cache node resource flag for determining if customer will be migrated.
- AutoUpdate intRequested Day 
- Customer requested day of week for mcc install of auto update cycle
- AutoUpdate stringRequested Time 
- Customer requested time of the day for mcc install of auto update cycle, should be hh:mm
- AutoUpdate intRequested Week 
- Customer requested week of month for mcc install of auto update cycle
- AutoUpdate string | AutoRing Type Update Ring Type 
- Auto Update Ring Type which is slow or fast etc.
- CacheNode stringId 
- Cache node resource identifier of the cache node
- CacheNode stringName 
- Cache node resource name.
- CidrCsv []string
- Cache node resource comma separated values of Cidrs.
- CidrSelection intType 
- Cache node resource current Cidr range precedence selection type.
- CustomerAsn int
- Cache node resource customer resource Asn (autonomous system number)
- CustomerIndex string
- Cache node resource customer index as string.
- CustomerName string
- Cache node resource customer resource name.
- FullyQualified stringDomain Name 
- FQDN(fully qualified domain name) value of the mcc cache node
- FullyQualified stringResource Id 
- Cache node resource Azure fully qualified resource Id.
- IpAddress string
- Cache node resource Ip address.
- IsEnabled bool
- Cache node resource flag for indicating if cache node is enabled.
- IsEnterprise boolManaged 
- Cache node resource flag for determining if managed by enterprise as boolean.
- MaxAllowable intEgress In Mbps 
- Cache node resource maximum allowed egress in Mbps.
- ShouldMigrate bool
- Cache node resource flag for determining if customer will be migrated.
- autoUpdate IntegerRequested Day 
- Customer requested day of week for mcc install of auto update cycle
- autoUpdate StringRequested Time 
- Customer requested time of the day for mcc install of auto update cycle, should be hh:mm
- autoUpdate IntegerRequested Week 
- Customer requested week of month for mcc install of auto update cycle
- autoUpdate String | AutoRing Type Update Ring Type 
- Auto Update Ring Type which is slow or fast etc.
- cacheNode StringId 
- Cache node resource identifier of the cache node
- cacheNode StringName 
- Cache node resource name.
- cidrCsv List<String>
- Cache node resource comma separated values of Cidrs.
- cidrSelection IntegerType 
- Cache node resource current Cidr range precedence selection type.
- customerAsn Integer
- Cache node resource customer resource Asn (autonomous system number)
- customerIndex String
- Cache node resource customer index as string.
- customerName String
- Cache node resource customer resource name.
- fullyQualified StringDomain Name 
- FQDN(fully qualified domain name) value of the mcc cache node
- fullyQualified StringResource Id 
- Cache node resource Azure fully qualified resource Id.
- ipAddress String
- Cache node resource Ip address.
- isEnabled Boolean
- Cache node resource flag for indicating if cache node is enabled.
- isEnterprise BooleanManaged 
- Cache node resource flag for determining if managed by enterprise as boolean.
- maxAllowable IntegerEgress In Mbps 
- Cache node resource maximum allowed egress in Mbps.
- shouldMigrate Boolean
- Cache node resource flag for determining if customer will be migrated.
- autoUpdate numberRequested Day 
- Customer requested day of week for mcc install of auto update cycle
- autoUpdate stringRequested Time 
- Customer requested time of the day for mcc install of auto update cycle, should be hh:mm
- autoUpdate numberRequested Week 
- Customer requested week of month for mcc install of auto update cycle
- autoUpdate string | AutoRing Type Update Ring Type 
- Auto Update Ring Type which is slow or fast etc.
- cacheNode stringId 
- Cache node resource identifier of the cache node
- cacheNode stringName 
- Cache node resource name.
- cidrCsv string[]
- Cache node resource comma separated values of Cidrs.
- cidrSelection numberType 
- Cache node resource current Cidr range precedence selection type.
- customerAsn number
- Cache node resource customer resource Asn (autonomous system number)
- customerIndex string
- Cache node resource customer index as string.
- customerName string
- Cache node resource customer resource name.
- fullyQualified stringDomain Name 
- FQDN(fully qualified domain name) value of the mcc cache node
- fullyQualified stringResource Id 
- Cache node resource Azure fully qualified resource Id.
- ipAddress string
- Cache node resource Ip address.
- isEnabled boolean
- Cache node resource flag for indicating if cache node is enabled.
- isEnterprise booleanManaged 
- Cache node resource flag for determining if managed by enterprise as boolean.
- maxAllowable numberEgress In Mbps 
- Cache node resource maximum allowed egress in Mbps.
- shouldMigrate boolean
- Cache node resource flag for determining if customer will be migrated.
- auto_update_ intrequested_ day 
- Customer requested day of week for mcc install of auto update cycle
- auto_update_ strrequested_ time 
- Customer requested time of the day for mcc install of auto update cycle, should be hh:mm
- auto_update_ intrequested_ week 
- Customer requested week of month for mcc install of auto update cycle
- auto_update_ str | Autoring_ type Update Ring Type 
- Auto Update Ring Type which is slow or fast etc.
- cache_node_ strid 
- Cache node resource identifier of the cache node
- cache_node_ strname 
- Cache node resource name.
- cidr_csv Sequence[str]
- Cache node resource comma separated values of Cidrs.
- cidr_selection_ inttype 
- Cache node resource current Cidr range precedence selection type.
- customer_asn int
- Cache node resource customer resource Asn (autonomous system number)
- customer_index str
- Cache node resource customer index as string.
- customer_name str
- Cache node resource customer resource name.
- fully_qualified_ strdomain_ name 
- FQDN(fully qualified domain name) value of the mcc cache node
- fully_qualified_ strresource_ id 
- Cache node resource Azure fully qualified resource Id.
- ip_address str
- Cache node resource Ip address.
- is_enabled bool
- Cache node resource flag for indicating if cache node is enabled.
- is_enterprise_ boolmanaged 
- Cache node resource flag for determining if managed by enterprise as boolean.
- max_allowable_ integress_ in_ mbps 
- Cache node resource maximum allowed egress in Mbps.
- should_migrate bool
- Cache node resource flag for determining if customer will be migrated.
- autoUpdate NumberRequested Day 
- Customer requested day of week for mcc install of auto update cycle
- autoUpdate StringRequested Time 
- Customer requested time of the day for mcc install of auto update cycle, should be hh:mm
- autoUpdate NumberRequested Week 
- Customer requested week of month for mcc install of auto update cycle
- autoUpdate String | "Preview" | "Slow" | "Fast"Ring Type 
- Auto Update Ring Type which is slow or fast etc.
- cacheNode StringId 
- Cache node resource identifier of the cache node
- cacheNode StringName 
- Cache node resource name.
- cidrCsv List<String>
- Cache node resource comma separated values of Cidrs.
- cidrSelection NumberType 
- Cache node resource current Cidr range precedence selection type.
- customerAsn Number
- Cache node resource customer resource Asn (autonomous system number)
- customerIndex String
- Cache node resource customer index as string.
- customerName String
- Cache node resource customer resource name.
- fullyQualified StringDomain Name 
- FQDN(fully qualified domain name) value of the mcc cache node
- fullyQualified StringResource Id 
- Cache node resource Azure fully qualified resource Id.
- ipAddress String
- Cache node resource Ip address.
- isEnabled Boolean
- Cache node resource flag for indicating if cache node is enabled.
- isEnterprise BooleanManaged 
- Cache node resource flag for determining if managed by enterprise as boolean.
- maxAllowable NumberEgress In Mbps 
- Cache node resource maximum allowed egress in Mbps.
- shouldMigrate Boolean
- Cache node resource flag for determining if customer will be migrated.
CacheNodeEntityResponse, CacheNodeEntityResponseArgs        
- AddressSpace int
- Cache node resource total addressable space defined by the Cidr Csv block.
- BgpAddress intSpace 
- Cache node resource total addressable space defined by Bgp and Cidr Csv blocks.
- BgpCidr intBlocks Count 
- Cache node resource Bgp block count.
- BgpCidr stringCsv Last Update Time 
- Cache node resource last Bgp Cidr Csv update timestamp
- BgpFile intBytes Truncated 
- Cache node resource bytes truncated from Bgp output file.
- BgpLast stringReported Time 
- Cache node resource last Bgp report timestamp.
- BgpNumber intOf Records 
- Cache node resource Bgp record count.
- BgpNumber intOf Times Updated 
- Cache node resource Bgp update count.
- BgpReview stringFeedback 
- Cache node resource Bgp review feedback text.
- BgpReview stringState 
- Cache node resource Bgp review state string text.
- BgpReview stringState Text 
- Cache node resource Bgp review state string text in detail.
- Category string
- Cache node resource category.
- CidrCsv stringLast Update Time 
- Cache node resource last Cidr Csv update timestamp
- ClientTenant stringId 
- Cache node resource customer resource client tenant Id of subscription.
- ConfigurationState string
- Cache node resource configuration state.
- ConfigurationState stringText 
- Cache node resource configuration state text.
- ContainerConfigurations string
- Cache node resource container configuration details.
- ContainerResync intTrigger 
- Cache node resource Mcc container configuration details re-sync trigger.
- CreateAsync stringOperation Id 
- Cache node resource create async operation Id.
- CustomerId string
- Cache node resource customer resource GUID Id.
- DeleteAsync stringOperation Id 
- Cache node resource deletion async operation Id.
- ImageUri string
- Cache node resource Mcc Container Id Uri.
- IsFrozen bool
- Cache node resource flag for indicating the cache node resource is frozen (not selectable, not editable in UI).
- LastSync stringWith Azure Timestamp 
- Cache node resource last sync timestamp.
- LastUpdated stringTimestamp 
- Cache node resource last backend updated timestamp.
- MaxAllowable doubleProbability 
- Cache node resource maximum allowed probability of egress.
- ReleaseVersion int
- Cache node resource release version.
- ReviewFeedback string
- Cache node resource review feedback text.
- ReviewState int
- Cache node resource review process state as integer
- ReviewState stringText 
- Cache node resource review state text.
- SynchWith intAzure Attempts Count 
- Cache node resource attempts to sync with Azure.
- WorkerConnections int
- Cache node resource Mcc container deployment worker connection count.
- WorkerConnections stringLast Updated Date Time 
- Cache node resource last updated Mcc container deployment worker connection count timestamp.
- XCid string
- Cache node resource Azure XCid.
- AutoUpdate intRequested Day 
- Customer requested day of week for mcc install of auto update cycle
- AutoUpdate stringRequested Time 
- Customer requested time of the day for mcc install of auto update cycle, should be hh:mm
- AutoUpdate intRequested Week 
- Customer requested week of month for mcc install of auto update cycle
- AutoUpdate stringRing Type 
- Auto Update Ring Type which is slow or fast etc.
- CacheNode stringId 
- Cache node resource identifier of the cache node
- CacheNode stringName 
- Cache node resource name.
- CidrCsv List<string>
- Cache node resource comma separated values of Cidrs.
- CidrSelection intType 
- Cache node resource current Cidr range precedence selection type.
- CustomerAsn int
- Cache node resource customer resource Asn (autonomous system number)
- CustomerIndex string
- Cache node resource customer index as string.
- CustomerName string
- Cache node resource customer resource name.
- FullyQualified stringDomain Name 
- FQDN(fully qualified domain name) value of the mcc cache node
- FullyQualified stringResource Id 
- Cache node resource Azure fully qualified resource Id.
- IpAddress string
- Cache node resource Ip address.
- IsEnabled bool
- Cache node resource flag for indicating if cache node is enabled.
- IsEnterprise boolManaged 
- Cache node resource flag for determining if managed by enterprise as boolean.
- MaxAllowable intEgress In Mbps 
- Cache node resource maximum allowed egress in Mbps.
- ShouldMigrate bool
- Cache node resource flag for determining if customer will be migrated.
- AddressSpace int
- Cache node resource total addressable space defined by the Cidr Csv block.
- BgpAddress intSpace 
- Cache node resource total addressable space defined by Bgp and Cidr Csv blocks.
- BgpCidr intBlocks Count 
- Cache node resource Bgp block count.
- BgpCidr stringCsv Last Update Time 
- Cache node resource last Bgp Cidr Csv update timestamp
- BgpFile intBytes Truncated 
- Cache node resource bytes truncated from Bgp output file.
- BgpLast stringReported Time 
- Cache node resource last Bgp report timestamp.
- BgpNumber intOf Records 
- Cache node resource Bgp record count.
- BgpNumber intOf Times Updated 
- Cache node resource Bgp update count.
- BgpReview stringFeedback 
- Cache node resource Bgp review feedback text.
- BgpReview stringState 
- Cache node resource Bgp review state string text.
- BgpReview stringState Text 
- Cache node resource Bgp review state string text in detail.
- Category string
- Cache node resource category.
- CidrCsv stringLast Update Time 
- Cache node resource last Cidr Csv update timestamp
- ClientTenant stringId 
- Cache node resource customer resource client tenant Id of subscription.
- ConfigurationState string
- Cache node resource configuration state.
- ConfigurationState stringText 
- Cache node resource configuration state text.
- ContainerConfigurations string
- Cache node resource container configuration details.
- ContainerResync intTrigger 
- Cache node resource Mcc container configuration details re-sync trigger.
- CreateAsync stringOperation Id 
- Cache node resource create async operation Id.
- CustomerId string
- Cache node resource customer resource GUID Id.
- DeleteAsync stringOperation Id 
- Cache node resource deletion async operation Id.
- ImageUri string
- Cache node resource Mcc Container Id Uri.
- IsFrozen bool
- Cache node resource flag for indicating the cache node resource is frozen (not selectable, not editable in UI).
- LastSync stringWith Azure Timestamp 
- Cache node resource last sync timestamp.
- LastUpdated stringTimestamp 
- Cache node resource last backend updated timestamp.
- MaxAllowable float64Probability 
- Cache node resource maximum allowed probability of egress.
- ReleaseVersion int
- Cache node resource release version.
- ReviewFeedback string
- Cache node resource review feedback text.
- ReviewState int
- Cache node resource review process state as integer
- ReviewState stringText 
- Cache node resource review state text.
- SynchWith intAzure Attempts Count 
- Cache node resource attempts to sync with Azure.
- WorkerConnections int
- Cache node resource Mcc container deployment worker connection count.
- WorkerConnections stringLast Updated Date Time 
- Cache node resource last updated Mcc container deployment worker connection count timestamp.
- XCid string
- Cache node resource Azure XCid.
- AutoUpdate intRequested Day 
- Customer requested day of week for mcc install of auto update cycle
- AutoUpdate stringRequested Time 
- Customer requested time of the day for mcc install of auto update cycle, should be hh:mm
- AutoUpdate intRequested Week 
- Customer requested week of month for mcc install of auto update cycle
- AutoUpdate stringRing Type 
- Auto Update Ring Type which is slow or fast etc.
- CacheNode stringId 
- Cache node resource identifier of the cache node
- CacheNode stringName 
- Cache node resource name.
- CidrCsv []string
- Cache node resource comma separated values of Cidrs.
- CidrSelection intType 
- Cache node resource current Cidr range precedence selection type.
- CustomerAsn int
- Cache node resource customer resource Asn (autonomous system number)
- CustomerIndex string
- Cache node resource customer index as string.
- CustomerName string
- Cache node resource customer resource name.
- FullyQualified stringDomain Name 
- FQDN(fully qualified domain name) value of the mcc cache node
- FullyQualified stringResource Id 
- Cache node resource Azure fully qualified resource Id.
- IpAddress string
- Cache node resource Ip address.
- IsEnabled bool
- Cache node resource flag for indicating if cache node is enabled.
- IsEnterprise boolManaged 
- Cache node resource flag for determining if managed by enterprise as boolean.
- MaxAllowable intEgress In Mbps 
- Cache node resource maximum allowed egress in Mbps.
- ShouldMigrate bool
- Cache node resource flag for determining if customer will be migrated.
- addressSpace Integer
- Cache node resource total addressable space defined by the Cidr Csv block.
- bgpAddress IntegerSpace 
- Cache node resource total addressable space defined by Bgp and Cidr Csv blocks.
- bgpCidr IntegerBlocks Count 
- Cache node resource Bgp block count.
- bgpCidr StringCsv Last Update Time 
- Cache node resource last Bgp Cidr Csv update timestamp
- bgpFile IntegerBytes Truncated 
- Cache node resource bytes truncated from Bgp output file.
- bgpLast StringReported Time 
- Cache node resource last Bgp report timestamp.
- bgpNumber IntegerOf Records 
- Cache node resource Bgp record count.
- bgpNumber IntegerOf Times Updated 
- Cache node resource Bgp update count.
- bgpReview StringFeedback 
- Cache node resource Bgp review feedback text.
- bgpReview StringState 
- Cache node resource Bgp review state string text.
- bgpReview StringState Text 
- Cache node resource Bgp review state string text in detail.
- category String
- Cache node resource category.
- cidrCsv StringLast Update Time 
- Cache node resource last Cidr Csv update timestamp
- clientTenant StringId 
- Cache node resource customer resource client tenant Id of subscription.
- configurationState String
- Cache node resource configuration state.
- configurationState StringText 
- Cache node resource configuration state text.
- containerConfigurations String
- Cache node resource container configuration details.
- containerResync IntegerTrigger 
- Cache node resource Mcc container configuration details re-sync trigger.
- createAsync StringOperation Id 
- Cache node resource create async operation Id.
- customerId String
- Cache node resource customer resource GUID Id.
- deleteAsync StringOperation Id 
- Cache node resource deletion async operation Id.
- imageUri String
- Cache node resource Mcc Container Id Uri.
- isFrozen Boolean
- Cache node resource flag for indicating the cache node resource is frozen (not selectable, not editable in UI).
- lastSync StringWith Azure Timestamp 
- Cache node resource last sync timestamp.
- lastUpdated StringTimestamp 
- Cache node resource last backend updated timestamp.
- maxAllowable DoubleProbability 
- Cache node resource maximum allowed probability of egress.
- releaseVersion Integer
- Cache node resource release version.
- reviewFeedback String
- Cache node resource review feedback text.
- reviewState Integer
- Cache node resource review process state as integer
- reviewState StringText 
- Cache node resource review state text.
- synchWith IntegerAzure Attempts Count 
- Cache node resource attempts to sync with Azure.
- workerConnections Integer
- Cache node resource Mcc container deployment worker connection count.
- workerConnections StringLast Updated Date Time 
- Cache node resource last updated Mcc container deployment worker connection count timestamp.
- xCid String
- Cache node resource Azure XCid.
- autoUpdate IntegerRequested Day 
- Customer requested day of week for mcc install of auto update cycle
- autoUpdate StringRequested Time 
- Customer requested time of the day for mcc install of auto update cycle, should be hh:mm
- autoUpdate IntegerRequested Week 
- Customer requested week of month for mcc install of auto update cycle
- autoUpdate StringRing Type 
- Auto Update Ring Type which is slow or fast etc.
- cacheNode StringId 
- Cache node resource identifier of the cache node
- cacheNode StringName 
- Cache node resource name.
- cidrCsv List<String>
- Cache node resource comma separated values of Cidrs.
- cidrSelection IntegerType 
- Cache node resource current Cidr range precedence selection type.
- customerAsn Integer
- Cache node resource customer resource Asn (autonomous system number)
- customerIndex String
- Cache node resource customer index as string.
- customerName String
- Cache node resource customer resource name.
- fullyQualified StringDomain Name 
- FQDN(fully qualified domain name) value of the mcc cache node
- fullyQualified StringResource Id 
- Cache node resource Azure fully qualified resource Id.
- ipAddress String
- Cache node resource Ip address.
- isEnabled Boolean
- Cache node resource flag for indicating if cache node is enabled.
- isEnterprise BooleanManaged 
- Cache node resource flag for determining if managed by enterprise as boolean.
- maxAllowable IntegerEgress In Mbps 
- Cache node resource maximum allowed egress in Mbps.
- shouldMigrate Boolean
- Cache node resource flag for determining if customer will be migrated.
- addressSpace number
- Cache node resource total addressable space defined by the Cidr Csv block.
- bgpAddress numberSpace 
- Cache node resource total addressable space defined by Bgp and Cidr Csv blocks.
- bgpCidr numberBlocks Count 
- Cache node resource Bgp block count.
- bgpCidr stringCsv Last Update Time 
- Cache node resource last Bgp Cidr Csv update timestamp
- bgpFile numberBytes Truncated 
- Cache node resource bytes truncated from Bgp output file.
- bgpLast stringReported Time 
- Cache node resource last Bgp report timestamp.
- bgpNumber numberOf Records 
- Cache node resource Bgp record count.
- bgpNumber numberOf Times Updated 
- Cache node resource Bgp update count.
- bgpReview stringFeedback 
- Cache node resource Bgp review feedback text.
- bgpReview stringState 
- Cache node resource Bgp review state string text.
- bgpReview stringState Text 
- Cache node resource Bgp review state string text in detail.
- category string
- Cache node resource category.
- cidrCsv stringLast Update Time 
- Cache node resource last Cidr Csv update timestamp
- clientTenant stringId 
- Cache node resource customer resource client tenant Id of subscription.
- configurationState string
- Cache node resource configuration state.
- configurationState stringText 
- Cache node resource configuration state text.
- containerConfigurations string
- Cache node resource container configuration details.
- containerResync numberTrigger 
- Cache node resource Mcc container configuration details re-sync trigger.
- createAsync stringOperation Id 
- Cache node resource create async operation Id.
- customerId string
- Cache node resource customer resource GUID Id.
- deleteAsync stringOperation Id 
- Cache node resource deletion async operation Id.
- imageUri string
- Cache node resource Mcc Container Id Uri.
- isFrozen boolean
- Cache node resource flag for indicating the cache node resource is frozen (not selectable, not editable in UI).
- lastSync stringWith Azure Timestamp 
- Cache node resource last sync timestamp.
- lastUpdated stringTimestamp 
- Cache node resource last backend updated timestamp.
- maxAllowable numberProbability 
- Cache node resource maximum allowed probability of egress.
- releaseVersion number
- Cache node resource release version.
- reviewFeedback string
- Cache node resource review feedback text.
- reviewState number
- Cache node resource review process state as integer
- reviewState stringText 
- Cache node resource review state text.
- synchWith numberAzure Attempts Count 
- Cache node resource attempts to sync with Azure.
- workerConnections number
- Cache node resource Mcc container deployment worker connection count.
- workerConnections stringLast Updated Date Time 
- Cache node resource last updated Mcc container deployment worker connection count timestamp.
- xCid string
- Cache node resource Azure XCid.
- autoUpdate numberRequested Day 
- Customer requested day of week for mcc install of auto update cycle
- autoUpdate stringRequested Time 
- Customer requested time of the day for mcc install of auto update cycle, should be hh:mm
- autoUpdate numberRequested Week 
- Customer requested week of month for mcc install of auto update cycle
- autoUpdate stringRing Type 
- Auto Update Ring Type which is slow or fast etc.
- cacheNode stringId 
- Cache node resource identifier of the cache node
- cacheNode stringName 
- Cache node resource name.
- cidrCsv string[]
- Cache node resource comma separated values of Cidrs.
- cidrSelection numberType 
- Cache node resource current Cidr range precedence selection type.
- customerAsn number
- Cache node resource customer resource Asn (autonomous system number)
- customerIndex string
- Cache node resource customer index as string.
- customerName string
- Cache node resource customer resource name.
- fullyQualified stringDomain Name 
- FQDN(fully qualified domain name) value of the mcc cache node
- fullyQualified stringResource Id 
- Cache node resource Azure fully qualified resource Id.
- ipAddress string
- Cache node resource Ip address.
- isEnabled boolean
- Cache node resource flag for indicating if cache node is enabled.
- isEnterprise booleanManaged 
- Cache node resource flag for determining if managed by enterprise as boolean.
- maxAllowable numberEgress In Mbps 
- Cache node resource maximum allowed egress in Mbps.
- shouldMigrate boolean
- Cache node resource flag for determining if customer will be migrated.
- address_space int
- Cache node resource total addressable space defined by the Cidr Csv block.
- bgp_address_ intspace 
- Cache node resource total addressable space defined by Bgp and Cidr Csv blocks.
- bgp_cidr_ intblocks_ count 
- Cache node resource Bgp block count.
- bgp_cidr_ strcsv_ last_ update_ time 
- Cache node resource last Bgp Cidr Csv update timestamp
- bgp_file_ intbytes_ truncated 
- Cache node resource bytes truncated from Bgp output file.
- bgp_last_ strreported_ time 
- Cache node resource last Bgp report timestamp.
- bgp_number_ intof_ records 
- Cache node resource Bgp record count.
- bgp_number_ intof_ times_ updated 
- Cache node resource Bgp update count.
- bgp_review_ strfeedback 
- Cache node resource Bgp review feedback text.
- bgp_review_ strstate 
- Cache node resource Bgp review state string text.
- bgp_review_ strstate_ text 
- Cache node resource Bgp review state string text in detail.
- category str
- Cache node resource category.
- cidr_csv_ strlast_ update_ time 
- Cache node resource last Cidr Csv update timestamp
- client_tenant_ strid 
- Cache node resource customer resource client tenant Id of subscription.
- configuration_state str
- Cache node resource configuration state.
- configuration_state_ strtext 
- Cache node resource configuration state text.
- container_configurations str
- Cache node resource container configuration details.
- container_resync_ inttrigger 
- Cache node resource Mcc container configuration details re-sync trigger.
- create_async_ stroperation_ id 
- Cache node resource create async operation Id.
- customer_id str
- Cache node resource customer resource GUID Id.
- delete_async_ stroperation_ id 
- Cache node resource deletion async operation Id.
- image_uri str
- Cache node resource Mcc Container Id Uri.
- is_frozen bool
- Cache node resource flag for indicating the cache node resource is frozen (not selectable, not editable in UI).
- last_sync_ strwith_ azure_ timestamp 
- Cache node resource last sync timestamp.
- last_updated_ strtimestamp 
- Cache node resource last backend updated timestamp.
- max_allowable_ floatprobability 
- Cache node resource maximum allowed probability of egress.
- release_version int
- Cache node resource release version.
- review_feedback str
- Cache node resource review feedback text.
- review_state int
- Cache node resource review process state as integer
- review_state_ strtext 
- Cache node resource review state text.
- synch_with_ intazure_ attempts_ count 
- Cache node resource attempts to sync with Azure.
- worker_connections int
- Cache node resource Mcc container deployment worker connection count.
- worker_connections_ strlast_ updated_ date_ time 
- Cache node resource last updated Mcc container deployment worker connection count timestamp.
- x_cid str
- Cache node resource Azure XCid.
- auto_update_ intrequested_ day 
- Customer requested day of week for mcc install of auto update cycle
- auto_update_ strrequested_ time 
- Customer requested time of the day for mcc install of auto update cycle, should be hh:mm
- auto_update_ intrequested_ week 
- Customer requested week of month for mcc install of auto update cycle
- auto_update_ strring_ type 
- Auto Update Ring Type which is slow or fast etc.
- cache_node_ strid 
- Cache node resource identifier of the cache node
- cache_node_ strname 
- Cache node resource name.
- cidr_csv Sequence[str]
- Cache node resource comma separated values of Cidrs.
- cidr_selection_ inttype 
- Cache node resource current Cidr range precedence selection type.
- customer_asn int
- Cache node resource customer resource Asn (autonomous system number)
- customer_index str
- Cache node resource customer index as string.
- customer_name str
- Cache node resource customer resource name.
- fully_qualified_ strdomain_ name 
- FQDN(fully qualified domain name) value of the mcc cache node
- fully_qualified_ strresource_ id 
- Cache node resource Azure fully qualified resource Id.
- ip_address str
- Cache node resource Ip address.
- is_enabled bool
- Cache node resource flag for indicating if cache node is enabled.
- is_enterprise_ boolmanaged 
- Cache node resource flag for determining if managed by enterprise as boolean.
- max_allowable_ integress_ in_ mbps 
- Cache node resource maximum allowed egress in Mbps.
- should_migrate bool
- Cache node resource flag for determining if customer will be migrated.
- addressSpace Number
- Cache node resource total addressable space defined by the Cidr Csv block.
- bgpAddress NumberSpace 
- Cache node resource total addressable space defined by Bgp and Cidr Csv blocks.
- bgpCidr NumberBlocks Count 
- Cache node resource Bgp block count.
- bgpCidr StringCsv Last Update Time 
- Cache node resource last Bgp Cidr Csv update timestamp
- bgpFile NumberBytes Truncated 
- Cache node resource bytes truncated from Bgp output file.
- bgpLast StringReported Time 
- Cache node resource last Bgp report timestamp.
- bgpNumber NumberOf Records 
- Cache node resource Bgp record count.
- bgpNumber NumberOf Times Updated 
- Cache node resource Bgp update count.
- bgpReview StringFeedback 
- Cache node resource Bgp review feedback text.
- bgpReview StringState 
- Cache node resource Bgp review state string text.
- bgpReview StringState Text 
- Cache node resource Bgp review state string text in detail.
- category String
- Cache node resource category.
- cidrCsv StringLast Update Time 
- Cache node resource last Cidr Csv update timestamp
- clientTenant StringId 
- Cache node resource customer resource client tenant Id of subscription.
- configurationState String
- Cache node resource configuration state.
- configurationState StringText 
- Cache node resource configuration state text.
- containerConfigurations String
- Cache node resource container configuration details.
- containerResync NumberTrigger 
- Cache node resource Mcc container configuration details re-sync trigger.
- createAsync StringOperation Id 
- Cache node resource create async operation Id.
- customerId String
- Cache node resource customer resource GUID Id.
- deleteAsync StringOperation Id 
- Cache node resource deletion async operation Id.
- imageUri String
- Cache node resource Mcc Container Id Uri.
- isFrozen Boolean
- Cache node resource flag for indicating the cache node resource is frozen (not selectable, not editable in UI).
- lastSync StringWith Azure Timestamp 
- Cache node resource last sync timestamp.
- lastUpdated StringTimestamp 
- Cache node resource last backend updated timestamp.
- maxAllowable NumberProbability 
- Cache node resource maximum allowed probability of egress.
- releaseVersion Number
- Cache node resource release version.
- reviewFeedback String
- Cache node resource review feedback text.
- reviewState Number
- Cache node resource review process state as integer
- reviewState StringText 
- Cache node resource review state text.
- synchWith NumberAzure Attempts Count 
- Cache node resource attempts to sync with Azure.
- workerConnections Number
- Cache node resource Mcc container deployment worker connection count.
- workerConnections StringLast Updated Date Time 
- Cache node resource last updated Mcc container deployment worker connection count timestamp.
- xCid String
- Cache node resource Azure XCid.
- autoUpdate NumberRequested Day 
- Customer requested day of week for mcc install of auto update cycle
- autoUpdate StringRequested Time 
- Customer requested time of the day for mcc install of auto update cycle, should be hh:mm
- autoUpdate NumberRequested Week 
- Customer requested week of month for mcc install of auto update cycle
- autoUpdate StringRing Type 
- Auto Update Ring Type which is slow or fast etc.
- cacheNode StringId 
- Cache node resource identifier of the cache node
- cacheNode StringName 
- Cache node resource name.
- cidrCsv List<String>
- Cache node resource comma separated values of Cidrs.
- cidrSelection NumberType 
- Cache node resource current Cidr range precedence selection type.
- customerAsn Number
- Cache node resource customer resource Asn (autonomous system number)
- customerIndex String
- Cache node resource customer index as string.
- customerName String
- Cache node resource customer resource name.
- fullyQualified StringDomain Name 
- FQDN(fully qualified domain name) value of the mcc cache node
- fullyQualified StringResource Id 
- Cache node resource Azure fully qualified resource Id.
- ipAddress String
- Cache node resource Ip address.
- isEnabled Boolean
- Cache node resource flag for indicating if cache node is enabled.
- isEnterprise BooleanManaged 
- Cache node resource flag for determining if managed by enterprise as boolean.
- maxAllowable NumberEgress In Mbps 
- Cache node resource maximum allowed egress in Mbps.
- shouldMigrate Boolean
- Cache node resource flag for determining if customer will be migrated.
CacheNodeProperty, CacheNodePropertyArgs      
- AdditionalCache Pulumi.Node Properties Azure Native. Connected Cache. Inputs. Additional Cache Node Properties 
- Mcc cache node resource additional properties.
- CacheNode Pulumi.Azure Native. Connected Cache. Inputs. Cache Node Entity 
- Mcc cache node resource (cache node entity).
- 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.
- AdditionalCache AdditionalNode Properties Cache Node Properties 
- Mcc cache node resource additional properties.
- CacheNode CacheNode Entity 
- Mcc cache node resource (cache node entity).
- 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.
- additionalCache AdditionalNode Properties Cache Node Properties 
- Mcc cache node resource additional properties.
- cacheNode CacheNode Entity 
- Mcc cache node resource (cache node entity).
- 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.
- additionalCache AdditionalNode Properties Cache Node Properties 
- Mcc cache node resource additional properties.
- cacheNode CacheNode Entity 
- Mcc cache node resource (cache node entity).
- 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.
- additional_cache_ Additionalnode_ properties Cache Node Properties 
- Mcc cache node resource additional properties.
- cache_node CacheNode Entity 
- Mcc cache node resource (cache node entity).
- 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.
- additionalCache Property MapNode Properties 
- Mcc cache node resource additional properties.
- cacheNode Property Map
- Mcc cache node resource (cache node entity).
- 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.
CacheNodePropertyResponse, CacheNodePropertyResponseArgs        
- ProvisioningState string
- The provisioned state of the resource
- Status string
- HTTP error status code.
- AdditionalCache Pulumi.Node Properties Azure Native. Connected Cache. Inputs. Additional Cache Node Properties Response 
- Mcc cache node resource additional properties.
- CacheNode Pulumi.Azure Native. Connected Cache. Inputs. Cache Node Entity Response 
- Mcc cache node resource (cache node entity).
- Error
Pulumi.Azure Native. Connected Cache. Inputs. Error Detail Response 
- Mcc response error details.
- 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.
- ProvisioningState string
- The provisioned state of the resource
- Status string
- HTTP error status code.
- AdditionalCache AdditionalNode Properties Cache Node Properties Response 
- Mcc cache node resource additional properties.
- CacheNode CacheNode Entity Response 
- Mcc cache node resource (cache node entity).
- Error
ErrorDetail Response 
- Mcc response error details.
- 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.
- provisioningState String
- The provisioned state of the resource
- status String
- HTTP error status code.
- additionalCache AdditionalNode Properties Cache Node Properties Response 
- Mcc cache node resource additional properties.
- cacheNode CacheNode Entity Response 
- Mcc cache node resource (cache node entity).
- error
ErrorDetail Response 
- Mcc response error details.
- 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.
- provisioningState string
- The provisioned state of the resource
- status string
- HTTP error status code.
- additionalCache AdditionalNode Properties Cache Node Properties Response 
- Mcc cache node resource additional properties.
- cacheNode CacheNode Entity Response 
- Mcc cache node resource (cache node entity).
- error
ErrorDetail Response 
- Mcc response error details.
- 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.
- provisioning_state str
- The provisioned state of the resource
- status str
- HTTP error status code.
- additional_cache_ Additionalnode_ properties Cache Node Properties Response 
- Mcc cache node resource additional properties.
- cache_node CacheNode Entity Response 
- Mcc cache node resource (cache node entity).
- error
ErrorDetail Response 
- Mcc response error details.
- 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.
- provisioningState String
- The provisioned state of the resource
- status String
- HTTP error status code.
- additionalCache Property MapNode Properties 
- Mcc cache node resource additional properties.
- cacheNode Property Map
- Mcc cache node resource (cache node entity).
- error Property Map
- Mcc response error details.
- 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.
CycleType, CycleTypeArgs    
- Preview
- Previewcustomer selection of preview update install mcc on their physical vm
- Slow
- Slowcustomer selection of slow update to install mcc on their physical vm
- Fast
- Fastcustomer selection of fast / auto update to install mcc on their physical vm
- CycleType Preview 
- Previewcustomer selection of preview update install mcc on their physical vm
- CycleType Slow 
- Slowcustomer selection of slow update to install mcc on their physical vm
- CycleType Fast 
- Fastcustomer selection of fast / auto update to install mcc on their physical vm
- Preview
- Previewcustomer selection of preview update install mcc on their physical vm
- Slow
- Slowcustomer selection of slow update to install mcc on their physical vm
- Fast
- Fastcustomer selection of fast / auto update to install mcc on their physical vm
- Preview
- Previewcustomer selection of preview update install mcc on their physical vm
- Slow
- Slowcustomer selection of slow update to install mcc on their physical vm
- Fast
- Fastcustomer selection of fast / auto update to install mcc on their physical vm
- PREVIEW
- Previewcustomer selection of preview update install mcc on their physical vm
- SLOW
- Slowcustomer selection of slow update to install mcc on their physical vm
- FAST
- Fastcustomer selection of fast / auto update to install mcc on their physical vm
- "Preview"
- Previewcustomer selection of preview update install mcc on their physical vm
- "Slow"
- Slowcustomer selection of slow update to install mcc on their physical vm
- "Fast"
- Fastcustomer selection of fast / auto update to install mcc on their physical vm
ErrorAdditionalInfoResponse, ErrorAdditionalInfoResponseArgs        
ErrorDetailResponse, ErrorDetailResponseArgs      
- AdditionalInfo 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.
- AdditionalInfo []ErrorAdditional Info Response 
- The error additional info.
- Code string
- The error code.
- Details
[]ErrorDetail Response 
- The error details.
- Message string
- The error message.
- Target string
- The error target.
- additionalInfo List<ErrorAdditional Info Response> 
- The error additional info.
- code String
- The error code.
- details
List<ErrorDetail Response> 
- The error details.
- message String
- The error message.
- target String
- The error target.
- additionalInfo ErrorAdditional Info Response[] 
- The error additional info.
- code string
- The error code.
- details
ErrorDetail 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[ErrorDetail Response] 
- 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.
OsType, OsTypeArgs    
- Windows
- Windowscache node installs on windows operating system
- Linux
- Linuxcache node installs on Linux Operating system
- Eflow
- Eflowcache node installs on Azure Eflow
- OsType Windows 
- Windowscache node installs on windows operating system
- OsType Linux 
- Linuxcache node installs on Linux Operating system
- OsType Eflow 
- Eflowcache node installs on Azure Eflow
- Windows
- Windowscache node installs on windows operating system
- Linux
- Linuxcache node installs on Linux Operating system
- Eflow
- Eflowcache node installs on Azure Eflow
- Windows
- Windowscache node installs on windows operating system
- Linux
- Linuxcache node installs on Linux Operating system
- Eflow
- Eflowcache node installs on Azure Eflow
- WINDOWS
- Windowscache node installs on windows operating system
- LINUX
- Linuxcache node installs on Linux Operating system
- EFLOW
- Eflowcache node installs on Azure Eflow
- "Windows"
- Windowscache node installs on windows operating system
- "Linux"
- Linuxcache node installs on Linux Operating system
- "Eflow"
- Eflowcache node installs on Azure Eflow
ProxyRequired, ProxyRequiredArgs    
- None
- NoneProxy is not required in setup
- Required
- Requiredproxy is required in setup
- ProxyRequired None 
- NoneProxy is not required in setup
- ProxyRequired Required 
- Requiredproxy is required in setup
- None
- NoneProxy is not required in setup
- Required
- Requiredproxy is required in setup
- None
- NoneProxy is not required in setup
- Required
- Requiredproxy is required in setup
- NONE
- NoneProxy is not required in setup
- REQUIRED
- Requiredproxy is required in setup
- "None"
- NoneProxy is not required in setup
- "Required"
- Requiredproxy is required in setup
ProxyUrlConfiguration, ProxyUrlConfigurationArgs      
- ProxyUrl string
- Host Proxy Address configuration along with port number. This can be a proxy or ip address. ex: xx.xx.xx.xxxx:80 or host name http://exampleproxy.com:80
- ProxyUrl string
- Host Proxy Address configuration along with port number. This can be a proxy or ip address. ex: xx.xx.xx.xxxx:80 or host name http://exampleproxy.com:80
- proxyUrl String
- Host Proxy Address configuration along with port number. This can be a proxy or ip address. ex: xx.xx.xx.xxxx:80 or host name http://exampleproxy.com:80
- proxyUrl string
- Host Proxy Address configuration along with port number. This can be a proxy or ip address. ex: xx.xx.xx.xxxx:80 or host name http://exampleproxy.com:80
- proxy_url str
- Host Proxy Address configuration along with port number. This can be a proxy or ip address. ex: xx.xx.xx.xxxx:80 or host name http://exampleproxy.com:80
- proxyUrl String
- Host Proxy Address configuration along with port number. This can be a proxy or ip address. ex: xx.xx.xx.xxxx:80 or host name http://exampleproxy.com:80
ProxyUrlConfigurationResponse, ProxyUrlConfigurationResponseArgs        
- ProxyUrl string
- Host Proxy Address configuration along with port number. This can be a proxy or ip address. ex: xx.xx.xx.xxxx:80 or host name http://exampleproxy.com:80
- ProxyUrl string
- Host Proxy Address configuration along with port number. This can be a proxy or ip address. ex: xx.xx.xx.xxxx:80 or host name http://exampleproxy.com:80
- proxyUrl String
- Host Proxy Address configuration along with port number. This can be a proxy or ip address. ex: xx.xx.xx.xxxx:80 or host name http://exampleproxy.com:80
- proxyUrl string
- Host Proxy Address configuration along with port number. This can be a proxy or ip address. ex: xx.xx.xx.xxxx:80 or host name http://exampleproxy.com:80
- proxy_url str
- Host Proxy Address configuration along with port number. This can be a proxy or ip address. ex: xx.xx.xx.xxxx:80 or host name http://exampleproxy.com:80
- proxyUrl String
- Host Proxy Address configuration along with port number. This can be a proxy or ip address. ex: xx.xx.xx.xxxx:80 or host name http://exampleproxy.com:80
SystemDataResponse, SystemDataResponseArgs      
- CreatedAt string
- The timestamp of resource creation (UTC).
- CreatedBy string
- The identity that created the resource.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- 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.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- 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.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- 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.
- createdBy stringType 
- The type of identity that created the resource.
- lastModified stringAt 
- The timestamp of resource last modification (UTC)
- lastModified stringBy 
- The identity that last modified the resource.
- lastModified 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.
- createdAt String
- The timestamp of resource creation (UTC).
- createdBy String
- The identity that created the resource.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified 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:IspCacheNodesOperation MccRPTest1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ConnectedCache/ispCustomers/{customerResourceName}/ispCacheNodes/{cacheNodeResourceName} 
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0