1. Packages
  2. Azure Native v2
  3. API Docs
  4. connectedcache
  5. IspCacheNodesOperation
These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi

azure-native-v2.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" },
        },
    });

});
Copy
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
	})
}
Copy
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());

    }
}
Copy
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",
    },
});
Copy
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",
    })
Copy
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
Copy

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 This property is required. string
The unique name of the resource.
args This property is required. IspCacheNodesOperationArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. 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 This property is required. string
The unique name of the resource.
args This property is required. IspCacheNodesOperationArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. IspCacheNodesOperationArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. 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 = 
    {
        { "additionalCacheNodeProperties", 
        {
            { "autoUpdateVersion", "string" },
            { "bgpConfiguration", 
            {
                { "asnToIpAddressMapping", "string" },
            } },
            { "cacheNodePropertiesDetailsIssuesList", new[]
            {
                "string",
            } },
            { "driveConfiguration", new[]
            {
                
                {
                    { "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", 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" },
    },
});
Copy
example, err := connectedcache.NewIspCacheNodesOperation(ctx, "ispCacheNodesOperationResource", &connectedcache.IspCacheNodesOperationArgs{
	CustomerResourceName:  "string",
	ResourceGroupName:     "string",
	CacheNodeResourceName: "string",
	Location:              "string",
	Properties: map[string]interface{}{
		"additionalCacheNodeProperties": map[string]interface{}{
			"autoUpdateVersion": "string",
			"bgpConfiguration": map[string]interface{}{
				"asnToIpAddressMapping": "string",
			},
			"cacheNodePropertiesDetailsIssuesList": []string{
				"string",
			},
			"driveConfiguration": []map[string]interface{}{
				map[string]interface{}{
					"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": map[string]interface{}{
				"proxyUrl": "string",
			},
			"updateCycleType":         "string",
			"updateInfoDetails":       "string",
			"updateRequestedDateTime": "string",
		},
		"cacheNode": map[string]interface{}{
			"autoUpdateRequestedDay":  0,
			"autoUpdateRequestedTime": "string",
			"autoUpdateRequestedWeek": 0,
			"autoUpdateRingType":      "string",
			"cacheNodeId":             "string",
			"cacheNodeName":           "string",
			"cidrCsv": []string{
				"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: map[string]interface{}{
		"string": "string",
	},
})
Copy
var ispCacheNodesOperationResource = new IspCacheNodesOperation("ispCacheNodesOperationResource", IspCacheNodesOperationArgs.builder()
    .customerResourceName("string")
    .resourceGroupName("string")
    .cacheNodeResourceName("string")
    .location("string")
    .properties(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .tags(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .build());
Copy
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={
        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,
    })
Copy
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",
    },
});
Copy
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
Copy

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:

CustomerResourceName
This property is required.
Changes to this property will trigger replacement.
string
Name of the Customer resource
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
CacheNodeResourceName Changes to this property will trigger replacement. string
Name of the ConnectedCache resource
Location Changes to this property will trigger replacement. string
The geo-location where the resource lives
Properties Pulumi.AzureNative.ConnectedCache.Inputs.CacheNodeProperty
The resource-specific properties for this resource.
Tags Dictionary<string, string>
Resource tags.
CustomerResourceName
This property is required.
Changes to this property will trigger replacement.
string
Name of the Customer resource
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
CacheNodeResourceName Changes to this property will trigger replacement. string
Name of the ConnectedCache resource
Location Changes to this property will trigger replacement. string
The geo-location where the resource lives
Properties CacheNodePropertyArgs
The resource-specific properties for this resource.
Tags map[string]string
Resource tags.
customerResourceName
This property is required.
Changes to this property will trigger replacement.
String
Name of the Customer resource
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
cacheNodeResourceName Changes to this property will trigger replacement. String
Name of the ConnectedCache resource
location Changes to this property will trigger replacement. String
The geo-location where the resource lives
properties CacheNodeProperty
The resource-specific properties for this resource.
tags Map<String,String>
Resource tags.
customerResourceName
This property is required.
Changes to this property will trigger replacement.
string
Name of the Customer resource
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
cacheNodeResourceName Changes to this property will trigger replacement. string
Name of the ConnectedCache resource
location Changes to this property will trigger replacement. string
The geo-location where the resource lives
properties CacheNodeProperty
The resource-specific properties for this resource.
tags {[key: string]: string}
Resource tags.
customer_resource_name
This property is required.
Changes to this property will trigger replacement.
str
Name of the Customer resource
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the resource group. The name is case insensitive.
cache_node_resource_name Changes to this property will trigger replacement. str
Name of the ConnectedCache resource
location Changes to this property will trigger replacement. str
The geo-location where the resource lives
properties CacheNodePropertyArgs
The resource-specific properties for this resource.
tags Mapping[str, str]
Resource tags.
customerResourceName
This property is required.
Changes to this property will trigger replacement.
String
Name of the Customer resource
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
cacheNodeResourceName Changes to this property will trigger replacement. String
Name of the ConnectedCache resource
location Changes to this property will trigger replacement. String
The geo-location where the resource lives
properties Property Map
The resource-specific properties for this resource.
tags Map<String>
Resource tags.

Outputs

All input properties are implicitly available as output properties. Additionally, the 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.AzureNative.ConnectedCache.Outputs.SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
Type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
Id string
The provider-assigned unique ID for this managed resource.
Name string
The name of the resource
SystemData SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
Type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
id String
The provider-assigned unique ID for this managed resource.
name String
The name of the resource
systemData SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type String
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
id string
The provider-assigned unique ID for this managed resource.
name string
The name of the resource
systemData SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
id str
The provider-assigned unique ID for this managed resource.
name str
The name of the resource
system_data SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type str
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
id String
The provider-assigned unique ID for this managed resource.
name String
The name of the resource
systemData Property Map
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type String
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

Supporting Types

AdditionalCacheNodeProperties
, AdditionalCacheNodePropertiesArgs

AutoUpdateVersion string
Auto update or fast update version
BgpConfiguration Pulumi.AzureNative.ConnectedCache.Inputs.BgpConfiguration
Cache node resource Bgp configuration.
CacheNodePropertiesDetailsIssuesList List<string>
issues list to return the issues as part of the additional cache node properties
DriveConfiguration List<Pulumi.AzureNative.ConnectedCache.Inputs.CacheNodeDriveConfiguration>
Cache node resource drive configurations.
IsProxyRequired string | Pulumi.AzureNative.ConnectedCache.ProxyRequired
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.AzureNative.ConnectedCache.OsType
Operating system of the cache node
ProxyUrl string
Cache node resource Mcc proxy Url
ProxyUrlConfiguration Pulumi.AzureNative.ConnectedCache.Inputs.ProxyUrlConfiguration
proxyUrl configuration of the cache node
UpdateCycleType string | Pulumi.AzureNative.ConnectedCache.CycleType
Update Cycle Type
UpdateInfoDetails string
Update related information details
UpdateRequestedDateTime string
customer requested date time for mcc install of update cycle
AutoUpdateVersion string
Auto update or fast update version
BgpConfiguration BgpConfiguration
Cache node resource Bgp configuration.
CacheNodePropertiesDetailsIssuesList []string
issues list to return the issues as part of the additional cache node properties
DriveConfiguration []CacheNodeDriveConfiguration
Cache node resource drive configurations.
IsProxyRequired string | ProxyRequired
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
ProxyUrlConfiguration ProxyUrlConfiguration
proxyUrl configuration of the cache node
UpdateCycleType string | CycleType
Update Cycle Type
UpdateInfoDetails string
Update related information details
UpdateRequestedDateTime string
customer requested date time for mcc install of update cycle
autoUpdateVersion String
Auto update or fast update version
bgpConfiguration BgpConfiguration
Cache node resource Bgp configuration.
cacheNodePropertiesDetailsIssuesList List<String>
issues list to return the issues as part of the additional cache node properties
driveConfiguration List<CacheNodeDriveConfiguration>
Cache node resource drive configurations.
isProxyRequired String | ProxyRequired
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
proxyUrlConfiguration ProxyUrlConfiguration
proxyUrl configuration of the cache node
updateCycleType String | CycleType
Update Cycle Type
updateInfoDetails String
Update related information details
updateRequestedDateTime String
customer requested date time for mcc install of update cycle
autoUpdateVersion string
Auto update or fast update version
bgpConfiguration BgpConfiguration
Cache node resource Bgp configuration.
cacheNodePropertiesDetailsIssuesList string[]
issues list to return the issues as part of the additional cache node properties
driveConfiguration CacheNodeDriveConfiguration[]
Cache node resource drive configurations.
isProxyRequired string | ProxyRequired
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
proxyUrlConfiguration ProxyUrlConfiguration
proxyUrl configuration of the cache node
updateCycleType string | CycleType
Update Cycle Type
updateInfoDetails string
Update related information details
updateRequestedDateTime string
customer requested date time for mcc install of update cycle
auto_update_version str
Auto update or fast update version
bgp_configuration BgpConfiguration
Cache node resource Bgp configuration.
cache_node_properties_details_issues_list Sequence[str]
issues list to return the issues as part of the additional cache node properties
drive_configuration Sequence[CacheNodeDriveConfiguration]
Cache node resource drive configurations.
is_proxy_required str | ProxyRequired
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_configuration ProxyUrlConfiguration
proxyUrl configuration of the cache node
update_cycle_type str | CycleType
Update Cycle Type
update_info_details str
Update related information details
update_requested_date_time str
customer requested date time for mcc install of update cycle
autoUpdateVersion String
Auto update or fast update version
bgpConfiguration Property Map
Cache node resource Bgp configuration.
cacheNodePropertiesDetailsIssuesList List<String>
issues list to return the issues as part of the additional cache node properties
driveConfiguration List<Property Map>
Cache node resource drive configurations.
isProxyRequired String | "None" | "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
proxyUrlConfiguration Property Map
proxyUrl configuration of the cache node
updateCycleType String | "Preview" | "Slow" | "Fast"
Update Cycle Type
updateInfoDetails String
Update related information details
updateRequestedDateTime String
customer requested date time for mcc install of update cycle

AdditionalCacheNodePropertiesResponse
, AdditionalCacheNodePropertiesResponseArgs

AggregatedStatusCode This property is required. int
Cache node resource aggregated status code.
AggregatedStatusDetails This property is required. string
Cache node resource aggregated status details.
AggregatedStatusText This property is required. string
Cache node resource aggregated status text.
AutoUpdateAppliedVersion This property is required. string
Auto update version that is the applied to update on mcc cache node
AutoUpdateLastAppliedDateTime This property is required. string
Auto update last applied date time of mcc install
AutoUpdateLastAppliedDetails This property is required. string
Auto Update status details from the backend after applying the new version details
AutoUpdateLastAppliedState This property is required. string
Last applied auto update state for mcc install of auto update cycle
AutoUpdateLastTriggeredDateTime This property is required. string
Auto update last triggered date time of mcc install
AutoUpdateNextAvailableDateTime This property is required. string
Auto update last applied date time of mcc install
AutoUpdateNextAvailableVersion This property is required. string
Auto update version that is the Next available version to update on mcc cache node
CacheNodeState This property is required. int
Cache node resource state as integer.
CacheNodeStateDetailedText This property is required. string
Cache node resource detailed state text.
CacheNodeStateShortText This property is required. string
Cache node resource short state text.
IsProvisioned This property is required. bool
Cache node resource flag indicating if cache node has been physically installed or provisioned on their physical lab.
ProductVersion This property is required. string
Cache node resource Mcc product version.
AutoUpdateVersion string
Auto update or fast update version
BgpConfiguration Pulumi.AzureNative.ConnectedCache.Inputs.BgpConfigurationResponse
Cache node resource Bgp configuration.
CacheNodePropertiesDetailsIssuesList List<string>
issues list to return the issues as part of the additional cache node properties
DriveConfiguration List<Pulumi.AzureNative.ConnectedCache.Inputs.CacheNodeDriveConfigurationResponse>
Cache node resource drive configurations.
IsProxyRequired string
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
ProxyUrlConfiguration Pulumi.AzureNative.ConnectedCache.Inputs.ProxyUrlConfigurationResponse
proxyUrl configuration of the cache node
UpdateCycleType string
Update Cycle Type
UpdateInfoDetails string
Update related information details
UpdateRequestedDateTime string
customer requested date time for mcc install of update cycle
AggregatedStatusCode This property is required. int
Cache node resource aggregated status code.
AggregatedStatusDetails This property is required. string
Cache node resource aggregated status details.
AggregatedStatusText This property is required. string
Cache node resource aggregated status text.
AutoUpdateAppliedVersion This property is required. string
Auto update version that is the applied to update on mcc cache node
AutoUpdateLastAppliedDateTime This property is required. string
Auto update last applied date time of mcc install
AutoUpdateLastAppliedDetails This property is required. string
Auto Update status details from the backend after applying the new version details
AutoUpdateLastAppliedState This property is required. string
Last applied auto update state for mcc install of auto update cycle
AutoUpdateLastTriggeredDateTime This property is required. string
Auto update last triggered date time of mcc install
AutoUpdateNextAvailableDateTime This property is required. string
Auto update last applied date time of mcc install
AutoUpdateNextAvailableVersion This property is required. string
Auto update version that is the Next available version to update on mcc cache node
CacheNodeState This property is required. int
Cache node resource state as integer.
CacheNodeStateDetailedText This property is required. string
Cache node resource detailed state text.
CacheNodeStateShortText This property is required. string
Cache node resource short state text.
IsProvisioned This property is required. bool
Cache node resource flag indicating if cache node has been physically installed or provisioned on their physical lab.
ProductVersion This property is required. string
Cache node resource Mcc product version.
AutoUpdateVersion string
Auto update or fast update version
BgpConfiguration BgpConfigurationResponse
Cache node resource Bgp configuration.
CacheNodePropertiesDetailsIssuesList []string
issues list to return the issues as part of the additional cache node properties
DriveConfiguration []CacheNodeDriveConfigurationResponse
Cache node resource drive configurations.
IsProxyRequired string
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
ProxyUrlConfiguration ProxyUrlConfigurationResponse
proxyUrl configuration of the cache node
UpdateCycleType string
Update Cycle Type
UpdateInfoDetails string
Update related information details
UpdateRequestedDateTime string
customer requested date time for mcc install of update cycle
aggregatedStatusCode This property is required. Integer
Cache node resource aggregated status code.
aggregatedStatusDetails This property is required. String
Cache node resource aggregated status details.
aggregatedStatusText This property is required. String
Cache node resource aggregated status text.
autoUpdateAppliedVersion This property is required. String
Auto update version that is the applied to update on mcc cache node
autoUpdateLastAppliedDateTime This property is required. String
Auto update last applied date time of mcc install
autoUpdateLastAppliedDetails This property is required. String
Auto Update status details from the backend after applying the new version details
autoUpdateLastAppliedState This property is required. String
Last applied auto update state for mcc install of auto update cycle
autoUpdateLastTriggeredDateTime This property is required. String
Auto update last triggered date time of mcc install
autoUpdateNextAvailableDateTime This property is required. String
Auto update last applied date time of mcc install
autoUpdateNextAvailableVersion This property is required. String
Auto update version that is the Next available version to update on mcc cache node
cacheNodeState This property is required. Integer
Cache node resource state as integer.
cacheNodeStateDetailedText This property is required. String
Cache node resource detailed state text.
cacheNodeStateShortText This property is required. String
Cache node resource short state text.
isProvisioned This property is required. Boolean
Cache node resource flag indicating if cache node has been physically installed or provisioned on their physical lab.
productVersion This property is required. String
Cache node resource Mcc product version.
autoUpdateVersion String
Auto update or fast update version
bgpConfiguration BgpConfigurationResponse
Cache node resource Bgp configuration.
cacheNodePropertiesDetailsIssuesList List<String>
issues list to return the issues as part of the additional cache node properties
driveConfiguration List<CacheNodeDriveConfigurationResponse>
Cache node resource drive configurations.
isProxyRequired String
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
proxyUrlConfiguration ProxyUrlConfigurationResponse
proxyUrl configuration of the cache node
updateCycleType String
Update Cycle Type
updateInfoDetails String
Update related information details
updateRequestedDateTime String
customer requested date time for mcc install of update cycle
aggregatedStatusCode This property is required. number
Cache node resource aggregated status code.
aggregatedStatusDetails This property is required. string
Cache node resource aggregated status details.
aggregatedStatusText This property is required. string
Cache node resource aggregated status text.
autoUpdateAppliedVersion This property is required. string
Auto update version that is the applied to update on mcc cache node
autoUpdateLastAppliedDateTime This property is required. string
Auto update last applied date time of mcc install
autoUpdateLastAppliedDetails This property is required. string
Auto Update status details from the backend after applying the new version details
autoUpdateLastAppliedState This property is required. string
Last applied auto update state for mcc install of auto update cycle
autoUpdateLastTriggeredDateTime This property is required. string
Auto update last triggered date time of mcc install
autoUpdateNextAvailableDateTime This property is required. string
Auto update last applied date time of mcc install
autoUpdateNextAvailableVersion This property is required. string
Auto update version that is the Next available version to update on mcc cache node
cacheNodeState This property is required. number
Cache node resource state as integer.
cacheNodeStateDetailedText This property is required. string
Cache node resource detailed state text.
cacheNodeStateShortText This property is required. string
Cache node resource short state text.
isProvisioned This property is required. boolean
Cache node resource flag indicating if cache node has been physically installed or provisioned on their physical lab.
productVersion This property is required. string
Cache node resource Mcc product version.
autoUpdateVersion string
Auto update or fast update version
bgpConfiguration BgpConfigurationResponse
Cache node resource Bgp configuration.
cacheNodePropertiesDetailsIssuesList string[]
issues list to return the issues as part of the additional cache node properties
driveConfiguration CacheNodeDriveConfigurationResponse[]
Cache node resource drive configurations.
isProxyRequired string
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
proxyUrlConfiguration ProxyUrlConfigurationResponse
proxyUrl configuration of the cache node
updateCycleType string
Update Cycle Type
updateInfoDetails string
Update related information details
updateRequestedDateTime string
customer requested date time for mcc install of update cycle
aggregated_status_code This property is required. int
Cache node resource aggregated status code.
aggregated_status_details This property is required. str
Cache node resource aggregated status details.
aggregated_status_text This property is required. str
Cache node resource aggregated status text.
auto_update_applied_version This property is required. str
Auto update version that is the applied to update on mcc cache node
auto_update_last_applied_date_time This property is required. str
Auto update last applied date time of mcc install
auto_update_last_applied_details This property is required. str
Auto Update status details from the backend after applying the new version details
auto_update_last_applied_state This property is required. str
Last applied auto update state for mcc install of auto update cycle
auto_update_last_triggered_date_time This property is required. str
Auto update last triggered date time of mcc install
auto_update_next_available_date_time This property is required. str
Auto update last applied date time of mcc install
auto_update_next_available_version This property is required. str
Auto update version that is the Next available version to update on mcc cache node
cache_node_state This property is required. int
Cache node resource state as integer.
cache_node_state_detailed_text This property is required. str
Cache node resource detailed state text.
cache_node_state_short_text This property is required. str
Cache node resource short state text.
is_provisioned This property is required. bool
Cache node resource flag indicating if cache node has been physically installed or provisioned on their physical lab.
product_version This property is required. str
Cache node resource Mcc product version.
auto_update_version str
Auto update or fast update version
bgp_configuration BgpConfigurationResponse
Cache node resource Bgp configuration.
cache_node_properties_details_issues_list Sequence[str]
issues list to return the issues as part of the additional cache node properties
drive_configuration Sequence[CacheNodeDriveConfigurationResponse]
Cache node resource drive configurations.
is_proxy_required str
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_configuration ProxyUrlConfigurationResponse
proxyUrl configuration of the cache node
update_cycle_type str
Update Cycle Type
update_info_details str
Update related information details
update_requested_date_time str
customer requested date time for mcc install of update cycle
aggregatedStatusCode This property is required. Number
Cache node resource aggregated status code.
aggregatedStatusDetails This property is required. String
Cache node resource aggregated status details.
aggregatedStatusText This property is required. String
Cache node resource aggregated status text.
autoUpdateAppliedVersion This property is required. String
Auto update version that is the applied to update on mcc cache node
autoUpdateLastAppliedDateTime This property is required. String
Auto update last applied date time of mcc install
autoUpdateLastAppliedDetails This property is required. String
Auto Update status details from the backend after applying the new version details
autoUpdateLastAppliedState This property is required. String
Last applied auto update state for mcc install of auto update cycle
autoUpdateLastTriggeredDateTime This property is required. String
Auto update last triggered date time of mcc install
autoUpdateNextAvailableDateTime This property is required. String
Auto update last applied date time of mcc install
autoUpdateNextAvailableVersion This property is required. String
Auto update version that is the Next available version to update on mcc cache node
cacheNodeState This property is required. Number
Cache node resource state as integer.
cacheNodeStateDetailedText This property is required. String
Cache node resource detailed state text.
cacheNodeStateShortText This property is required. String
Cache node resource short state text.
isProvisioned This property is required. Boolean
Cache node resource flag indicating if cache node has been physically installed or provisioned on their physical lab.
productVersion This property is required. String
Cache node resource Mcc product version.
autoUpdateVersion String
Auto update or fast update version
bgpConfiguration Property Map
Cache node resource Bgp configuration.
cacheNodePropertiesDetailsIssuesList List<String>
issues list to return the issues as part of the additional cache node properties
driveConfiguration List<Property Map>
Cache node resource drive configurations.
isProxyRequired String
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
proxyUrlConfiguration Property Map
proxyUrl configuration of the cache node
updateCycleType String
Update Cycle Type
updateInfoDetails String
Update related information details
updateRequestedDateTime String
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
AutoUpdateRingTypePreview
Previewcustomer selection of preview update install mcc on their physical vm
AutoUpdateRingTypeSlow
Slowcustomer selection of slow update to install mcc on their physical vm
AutoUpdateRingTypeFast
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

AsnToIpAddressMapping string
Asn to ip address mapping
AsnToIpAddressMapping string
Asn to ip address mapping
asnToIpAddressMapping String
Asn to ip address mapping
asnToIpAddressMapping string
Asn to ip address mapping
asn_to_ip_address_mapping str
Asn to ip address mapping
asnToIpAddressMapping String
Asn to ip address mapping

BgpConfigurationResponse
, BgpConfigurationResponseArgs

AsnToIpAddressMapping string
Asn to ip address mapping
AsnToIpAddressMapping string
Asn to ip address mapping
asnToIpAddressMapping String
Asn to ip address mapping
asnToIpAddressMapping string
Asn to ip address mapping
asn_to_ip_address_mapping str
Asn to ip address mapping
asnToIpAddressMapping String
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
SizeInGb int
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
SizeInGb int
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
sizeInGb Integer
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
sizeInGb number
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_gb int
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
sizeInGb Number
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
SizeInGb int
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
SizeInGb int
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
sizeInGb Integer
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
sizeInGb number
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_gb int
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
sizeInGb Number
physical size of the drive used for caching content

CacheNodeEntity
, CacheNodeEntityArgs

AutoUpdateRequestedDay int
Customer requested day of week for mcc install of auto update cycle
AutoUpdateRequestedTime string
Customer requested time of the day for mcc install of auto update cycle, should be hh:mm
AutoUpdateRequestedWeek int
Customer requested week of month for mcc install of auto update cycle
AutoUpdateRingType string | Pulumi.AzureNative.ConnectedCache.AutoUpdateRingType
Auto Update Ring Type which is slow or fast etc.
CacheNodeId string
Cache node resource identifier of the cache node
CacheNodeName string
Cache node resource name.
CidrCsv List<string>
Cache node resource comma separated values of Cidrs.
CidrSelectionType int
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.
FullyQualifiedDomainName string
FQDN(fully qualified domain name) value of the mcc cache node
FullyQualifiedResourceId string
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.
IsEnterpriseManaged bool
Cache node resource flag for determining if managed by enterprise as boolean.
MaxAllowableEgressInMbps int
Cache node resource maximum allowed egress in Mbps.
ShouldMigrate bool
Cache node resource flag for determining if customer will be migrated.
AutoUpdateRequestedDay int
Customer requested day of week for mcc install of auto update cycle
AutoUpdateRequestedTime string
Customer requested time of the day for mcc install of auto update cycle, should be hh:mm
AutoUpdateRequestedWeek int
Customer requested week of month for mcc install of auto update cycle
AutoUpdateRingType string | AutoUpdateRingType
Auto Update Ring Type which is slow or fast etc.
CacheNodeId string
Cache node resource identifier of the cache node
CacheNodeName string
Cache node resource name.
CidrCsv []string
Cache node resource comma separated values of Cidrs.
CidrSelectionType int
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.
FullyQualifiedDomainName string
FQDN(fully qualified domain name) value of the mcc cache node
FullyQualifiedResourceId string
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.
IsEnterpriseManaged bool
Cache node resource flag for determining if managed by enterprise as boolean.
MaxAllowableEgressInMbps int
Cache node resource maximum allowed egress in Mbps.
ShouldMigrate bool
Cache node resource flag for determining if customer will be migrated.
autoUpdateRequestedDay Integer
Customer requested day of week for mcc install of auto update cycle
autoUpdateRequestedTime String
Customer requested time of the day for mcc install of auto update cycle, should be hh:mm
autoUpdateRequestedWeek Integer
Customer requested week of month for mcc install of auto update cycle
autoUpdateRingType String | AutoUpdateRingType
Auto Update Ring Type which is slow or fast etc.
cacheNodeId String
Cache node resource identifier of the cache node
cacheNodeName String
Cache node resource name.
cidrCsv List<String>
Cache node resource comma separated values of Cidrs.
cidrSelectionType Integer
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.
fullyQualifiedDomainName String
FQDN(fully qualified domain name) value of the mcc cache node
fullyQualifiedResourceId String
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.
isEnterpriseManaged Boolean
Cache node resource flag for determining if managed by enterprise as boolean.
maxAllowableEgressInMbps Integer
Cache node resource maximum allowed egress in Mbps.
shouldMigrate Boolean
Cache node resource flag for determining if customer will be migrated.
autoUpdateRequestedDay number
Customer requested day of week for mcc install of auto update cycle
autoUpdateRequestedTime string
Customer requested time of the day for mcc install of auto update cycle, should be hh:mm
autoUpdateRequestedWeek number
Customer requested week of month for mcc install of auto update cycle
autoUpdateRingType string | AutoUpdateRingType
Auto Update Ring Type which is slow or fast etc.
cacheNodeId string
Cache node resource identifier of the cache node
cacheNodeName string
Cache node resource name.
cidrCsv string[]
Cache node resource comma separated values of Cidrs.
cidrSelectionType number
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.
fullyQualifiedDomainName string
FQDN(fully qualified domain name) value of the mcc cache node
fullyQualifiedResourceId string
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.
isEnterpriseManaged boolean
Cache node resource flag for determining if managed by enterprise as boolean.
maxAllowableEgressInMbps number
Cache node resource maximum allowed egress in Mbps.
shouldMigrate boolean
Cache node resource flag for determining if customer will be migrated.
auto_update_requested_day int
Customer requested day of week for mcc install of auto update cycle
auto_update_requested_time str
Customer requested time of the day for mcc install of auto update cycle, should be hh:mm
auto_update_requested_week int
Customer requested week of month for mcc install of auto update cycle
auto_update_ring_type str | AutoUpdateRingType
Auto Update Ring Type which is slow or fast etc.
cache_node_id str
Cache node resource identifier of the cache node
cache_node_name str
Cache node resource name.
cidr_csv Sequence[str]
Cache node resource comma separated values of Cidrs.
cidr_selection_type int
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_domain_name str
FQDN(fully qualified domain name) value of the mcc cache node
fully_qualified_resource_id str
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_managed bool
Cache node resource flag for determining if managed by enterprise as boolean.
max_allowable_egress_in_mbps int
Cache node resource maximum allowed egress in Mbps.
should_migrate bool
Cache node resource flag for determining if customer will be migrated.
autoUpdateRequestedDay Number
Customer requested day of week for mcc install of auto update cycle
autoUpdateRequestedTime String
Customer requested time of the day for mcc install of auto update cycle, should be hh:mm
autoUpdateRequestedWeek Number
Customer requested week of month for mcc install of auto update cycle
autoUpdateRingType String | "Preview" | "Slow" | "Fast"
Auto Update Ring Type which is slow or fast etc.
cacheNodeId String
Cache node resource identifier of the cache node
cacheNodeName String
Cache node resource name.
cidrCsv List<String>
Cache node resource comma separated values of Cidrs.
cidrSelectionType Number
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.
fullyQualifiedDomainName String
FQDN(fully qualified domain name) value of the mcc cache node
fullyQualifiedResourceId String
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.
isEnterpriseManaged Boolean
Cache node resource flag for determining if managed by enterprise as boolean.
maxAllowableEgressInMbps Number
Cache node resource maximum allowed egress in Mbps.
shouldMigrate Boolean
Cache node resource flag for determining if customer will be migrated.

CacheNodeEntityResponse
, CacheNodeEntityResponseArgs

AddressSpace This property is required. int
Cache node resource total addressable space defined by the Cidr Csv block.
BgpAddressSpace This property is required. int
Cache node resource total addressable space defined by Bgp and Cidr Csv blocks.
BgpCidrBlocksCount This property is required. int
Cache node resource Bgp block count.
BgpCidrCsvLastUpdateTime This property is required. string
Cache node resource last Bgp Cidr Csv update timestamp
BgpFileBytesTruncated This property is required. int
Cache node resource bytes truncated from Bgp output file.
BgpLastReportedTime This property is required. string
Cache node resource last Bgp report timestamp.
BgpNumberOfRecords This property is required. int
Cache node resource Bgp record count.
BgpNumberOfTimesUpdated This property is required. int
Cache node resource Bgp update count.
BgpReviewFeedback This property is required. string
Cache node resource Bgp review feedback text.
BgpReviewState This property is required. string
Cache node resource Bgp review state string text.
BgpReviewStateText This property is required. string
Cache node resource Bgp review state string text in detail.
Category This property is required. string
Cache node resource category.
CidrCsvLastUpdateTime This property is required. string
Cache node resource last Cidr Csv update timestamp
ClientTenantId This property is required. string
Cache node resource customer resource client tenant Id of subscription.
ConfigurationState This property is required. string
Cache node resource configuration state.
ConfigurationStateText This property is required. string
Cache node resource configuration state text.
ContainerConfigurations This property is required. string
Cache node resource container configuration details.
ContainerResyncTrigger This property is required. int
Cache node resource Mcc container configuration details re-sync trigger.
CreateAsyncOperationId This property is required. string
Cache node resource create async operation Id.
CustomerId This property is required. string
Cache node resource customer resource GUID Id.
DeleteAsyncOperationId This property is required. string
Cache node resource deletion async operation Id.
ImageUri This property is required. string
Cache node resource Mcc Container Id Uri.
IsFrozen This property is required. bool
Cache node resource flag for indicating the cache node resource is frozen (not selectable, not editable in UI).
LastSyncWithAzureTimestamp This property is required. string
Cache node resource last sync timestamp.
LastUpdatedTimestamp This property is required. string
Cache node resource last backend updated timestamp.
MaxAllowableProbability This property is required. double
Cache node resource maximum allowed probability of egress.
ReleaseVersion This property is required. int
Cache node resource release version.
ReviewFeedback This property is required. string
Cache node resource review feedback text.
ReviewState This property is required. int
Cache node resource review process state as integer
ReviewStateText This property is required. string
Cache node resource review state text.
SynchWithAzureAttemptsCount This property is required. int
Cache node resource attempts to sync with Azure.
WorkerConnections This property is required. int
Cache node resource Mcc container deployment worker connection count.
WorkerConnectionsLastUpdatedDateTime This property is required. string
Cache node resource last updated Mcc container deployment worker connection count timestamp.
XCid This property is required. string
Cache node resource Azure XCid.
AutoUpdateRequestedDay int
Customer requested day of week for mcc install of auto update cycle
AutoUpdateRequestedTime string
Customer requested time of the day for mcc install of auto update cycle, should be hh:mm
AutoUpdateRequestedWeek int
Customer requested week of month for mcc install of auto update cycle
AutoUpdateRingType string
Auto Update Ring Type which is slow or fast etc.
CacheNodeId string
Cache node resource identifier of the cache node
CacheNodeName string
Cache node resource name.
CidrCsv List<string>
Cache node resource comma separated values of Cidrs.
CidrSelectionType int
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.
FullyQualifiedDomainName string
FQDN(fully qualified domain name) value of the mcc cache node
FullyQualifiedResourceId string
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.
IsEnterpriseManaged bool
Cache node resource flag for determining if managed by enterprise as boolean.
MaxAllowableEgressInMbps int
Cache node resource maximum allowed egress in Mbps.
ShouldMigrate bool
Cache node resource flag for determining if customer will be migrated.
AddressSpace This property is required. int
Cache node resource total addressable space defined by the Cidr Csv block.
BgpAddressSpace This property is required. int
Cache node resource total addressable space defined by Bgp and Cidr Csv blocks.
BgpCidrBlocksCount This property is required. int
Cache node resource Bgp block count.
BgpCidrCsvLastUpdateTime This property is required. string
Cache node resource last Bgp Cidr Csv update timestamp
BgpFileBytesTruncated This property is required. int
Cache node resource bytes truncated from Bgp output file.
BgpLastReportedTime This property is required. string
Cache node resource last Bgp report timestamp.
BgpNumberOfRecords This property is required. int
Cache node resource Bgp record count.
BgpNumberOfTimesUpdated This property is required. int
Cache node resource Bgp update count.
BgpReviewFeedback This property is required. string
Cache node resource Bgp review feedback text.
BgpReviewState This property is required. string
Cache node resource Bgp review state string text.
BgpReviewStateText This property is required. string
Cache node resource Bgp review state string text in detail.
Category This property is required. string
Cache node resource category.
CidrCsvLastUpdateTime This property is required. string
Cache node resource last Cidr Csv update timestamp
ClientTenantId This property is required. string
Cache node resource customer resource client tenant Id of subscription.
ConfigurationState This property is required. string
Cache node resource configuration state.
ConfigurationStateText This property is required. string
Cache node resource configuration state text.
ContainerConfigurations This property is required. string
Cache node resource container configuration details.
ContainerResyncTrigger This property is required. int
Cache node resource Mcc container configuration details re-sync trigger.
CreateAsyncOperationId This property is required. string
Cache node resource create async operation Id.
CustomerId This property is required. string
Cache node resource customer resource GUID Id.
DeleteAsyncOperationId This property is required. string
Cache node resource deletion async operation Id.
ImageUri This property is required. string
Cache node resource Mcc Container Id Uri.
IsFrozen This property is required. bool
Cache node resource flag for indicating the cache node resource is frozen (not selectable, not editable in UI).
LastSyncWithAzureTimestamp This property is required. string
Cache node resource last sync timestamp.
LastUpdatedTimestamp This property is required. string
Cache node resource last backend updated timestamp.
MaxAllowableProbability This property is required. float64
Cache node resource maximum allowed probability of egress.
ReleaseVersion This property is required. int
Cache node resource release version.
ReviewFeedback This property is required. string
Cache node resource review feedback text.
ReviewState This property is required. int
Cache node resource review process state as integer
ReviewStateText This property is required. string
Cache node resource review state text.
SynchWithAzureAttemptsCount This property is required. int
Cache node resource attempts to sync with Azure.
WorkerConnections This property is required. int
Cache node resource Mcc container deployment worker connection count.
WorkerConnectionsLastUpdatedDateTime This property is required. string
Cache node resource last updated Mcc container deployment worker connection count timestamp.
XCid This property is required. string
Cache node resource Azure XCid.
AutoUpdateRequestedDay int
Customer requested day of week for mcc install of auto update cycle
AutoUpdateRequestedTime string
Customer requested time of the day for mcc install of auto update cycle, should be hh:mm
AutoUpdateRequestedWeek int
Customer requested week of month for mcc install of auto update cycle
AutoUpdateRingType string
Auto Update Ring Type which is slow or fast etc.
CacheNodeId string
Cache node resource identifier of the cache node
CacheNodeName string
Cache node resource name.
CidrCsv []string
Cache node resource comma separated values of Cidrs.
CidrSelectionType int
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.
FullyQualifiedDomainName string
FQDN(fully qualified domain name) value of the mcc cache node
FullyQualifiedResourceId string
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.
IsEnterpriseManaged bool
Cache node resource flag for determining if managed by enterprise as boolean.
MaxAllowableEgressInMbps int
Cache node resource maximum allowed egress in Mbps.
ShouldMigrate bool
Cache node resource flag for determining if customer will be migrated.
addressSpace This property is required. Integer
Cache node resource total addressable space defined by the Cidr Csv block.
bgpAddressSpace This property is required. Integer
Cache node resource total addressable space defined by Bgp and Cidr Csv blocks.
bgpCidrBlocksCount This property is required. Integer
Cache node resource Bgp block count.
bgpCidrCsvLastUpdateTime This property is required. String
Cache node resource last Bgp Cidr Csv update timestamp
bgpFileBytesTruncated This property is required. Integer
Cache node resource bytes truncated from Bgp output file.
bgpLastReportedTime This property is required. String
Cache node resource last Bgp report timestamp.
bgpNumberOfRecords This property is required. Integer
Cache node resource Bgp record count.
bgpNumberOfTimesUpdated This property is required. Integer
Cache node resource Bgp update count.
bgpReviewFeedback This property is required. String
Cache node resource Bgp review feedback text.
bgpReviewState This property is required. String
Cache node resource Bgp review state string text.
bgpReviewStateText This property is required. String
Cache node resource Bgp review state string text in detail.
category This property is required. String
Cache node resource category.
cidrCsvLastUpdateTime This property is required. String
Cache node resource last Cidr Csv update timestamp
clientTenantId This property is required. String
Cache node resource customer resource client tenant Id of subscription.
configurationState This property is required. String
Cache node resource configuration state.
configurationStateText This property is required. String
Cache node resource configuration state text.
containerConfigurations This property is required. String
Cache node resource container configuration details.
containerResyncTrigger This property is required. Integer
Cache node resource Mcc container configuration details re-sync trigger.
createAsyncOperationId This property is required. String
Cache node resource create async operation Id.
customerId This property is required. String
Cache node resource customer resource GUID Id.
deleteAsyncOperationId This property is required. String
Cache node resource deletion async operation Id.
imageUri This property is required. String
Cache node resource Mcc Container Id Uri.
isFrozen This property is required. Boolean
Cache node resource flag for indicating the cache node resource is frozen (not selectable, not editable in UI).
lastSyncWithAzureTimestamp This property is required. String
Cache node resource last sync timestamp.
lastUpdatedTimestamp This property is required. String
Cache node resource last backend updated timestamp.
maxAllowableProbability This property is required. Double
Cache node resource maximum allowed probability of egress.
releaseVersion This property is required. Integer
Cache node resource release version.
reviewFeedback This property is required. String
Cache node resource review feedback text.
reviewState This property is required. Integer
Cache node resource review process state as integer
reviewStateText This property is required. String
Cache node resource review state text.
synchWithAzureAttemptsCount This property is required. Integer
Cache node resource attempts to sync with Azure.
workerConnections This property is required. Integer
Cache node resource Mcc container deployment worker connection count.
workerConnectionsLastUpdatedDateTime This property is required. String
Cache node resource last updated Mcc container deployment worker connection count timestamp.
xCid This property is required. String
Cache node resource Azure XCid.
autoUpdateRequestedDay Integer
Customer requested day of week for mcc install of auto update cycle
autoUpdateRequestedTime String
Customer requested time of the day for mcc install of auto update cycle, should be hh:mm
autoUpdateRequestedWeek Integer
Customer requested week of month for mcc install of auto update cycle
autoUpdateRingType String
Auto Update Ring Type which is slow or fast etc.
cacheNodeId String
Cache node resource identifier of the cache node
cacheNodeName String
Cache node resource name.
cidrCsv List<String>
Cache node resource comma separated values of Cidrs.
cidrSelectionType Integer
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.
fullyQualifiedDomainName String
FQDN(fully qualified domain name) value of the mcc cache node
fullyQualifiedResourceId String
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.
isEnterpriseManaged Boolean
Cache node resource flag for determining if managed by enterprise as boolean.
maxAllowableEgressInMbps Integer
Cache node resource maximum allowed egress in Mbps.
shouldMigrate Boolean
Cache node resource flag for determining if customer will be migrated.
addressSpace This property is required. number
Cache node resource total addressable space defined by the Cidr Csv block.
bgpAddressSpace This property is required. number
Cache node resource total addressable space defined by Bgp and Cidr Csv blocks.
bgpCidrBlocksCount This property is required. number
Cache node resource Bgp block count.
bgpCidrCsvLastUpdateTime This property is required. string
Cache node resource last Bgp Cidr Csv update timestamp
bgpFileBytesTruncated This property is required. number
Cache node resource bytes truncated from Bgp output file.
bgpLastReportedTime This property is required. string
Cache node resource last Bgp report timestamp.
bgpNumberOfRecords This property is required. number
Cache node resource Bgp record count.
bgpNumberOfTimesUpdated This property is required. number
Cache node resource Bgp update count.
bgpReviewFeedback This property is required. string
Cache node resource Bgp review feedback text.
bgpReviewState This property is required. string
Cache node resource Bgp review state string text.
bgpReviewStateText This property is required. string
Cache node resource Bgp review state string text in detail.
category This property is required. string
Cache node resource category.
cidrCsvLastUpdateTime This property is required. string
Cache node resource last Cidr Csv update timestamp
clientTenantId This property is required. string
Cache node resource customer resource client tenant Id of subscription.
configurationState This property is required. string
Cache node resource configuration state.
configurationStateText This property is required. string
Cache node resource configuration state text.
containerConfigurations This property is required. string
Cache node resource container configuration details.
containerResyncTrigger This property is required. number
Cache node resource Mcc container configuration details re-sync trigger.
createAsyncOperationId This property is required. string
Cache node resource create async operation Id.
customerId This property is required. string
Cache node resource customer resource GUID Id.
deleteAsyncOperationId This property is required. string
Cache node resource deletion async operation Id.
imageUri This property is required. string
Cache node resource Mcc Container Id Uri.
isFrozen This property is required. boolean
Cache node resource flag for indicating the cache node resource is frozen (not selectable, not editable in UI).
lastSyncWithAzureTimestamp This property is required. string
Cache node resource last sync timestamp.
lastUpdatedTimestamp This property is required. string
Cache node resource last backend updated timestamp.
maxAllowableProbability This property is required. number
Cache node resource maximum allowed probability of egress.
releaseVersion This property is required. number
Cache node resource release version.
reviewFeedback This property is required. string
Cache node resource review feedback text.
reviewState This property is required. number
Cache node resource review process state as integer
reviewStateText This property is required. string
Cache node resource review state text.
synchWithAzureAttemptsCount This property is required. number
Cache node resource attempts to sync with Azure.
workerConnections This property is required. number
Cache node resource Mcc container deployment worker connection count.
workerConnectionsLastUpdatedDateTime This property is required. string
Cache node resource last updated Mcc container deployment worker connection count timestamp.
xCid This property is required. string
Cache node resource Azure XCid.
autoUpdateRequestedDay number
Customer requested day of week for mcc install of auto update cycle
autoUpdateRequestedTime string
Customer requested time of the day for mcc install of auto update cycle, should be hh:mm
autoUpdateRequestedWeek number
Customer requested week of month for mcc install of auto update cycle
autoUpdateRingType string
Auto Update Ring Type which is slow or fast etc.
cacheNodeId string
Cache node resource identifier of the cache node
cacheNodeName string
Cache node resource name.
cidrCsv string[]
Cache node resource comma separated values of Cidrs.
cidrSelectionType number
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.
fullyQualifiedDomainName string
FQDN(fully qualified domain name) value of the mcc cache node
fullyQualifiedResourceId string
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.
isEnterpriseManaged boolean
Cache node resource flag for determining if managed by enterprise as boolean.
maxAllowableEgressInMbps number
Cache node resource maximum allowed egress in Mbps.
shouldMigrate boolean
Cache node resource flag for determining if customer will be migrated.
address_space This property is required. int
Cache node resource total addressable space defined by the Cidr Csv block.
bgp_address_space This property is required. int
Cache node resource total addressable space defined by Bgp and Cidr Csv blocks.
bgp_cidr_blocks_count This property is required. int
Cache node resource Bgp block count.
bgp_cidr_csv_last_update_time This property is required. str
Cache node resource last Bgp Cidr Csv update timestamp
bgp_file_bytes_truncated This property is required. int
Cache node resource bytes truncated from Bgp output file.
bgp_last_reported_time This property is required. str
Cache node resource last Bgp report timestamp.
bgp_number_of_records This property is required. int
Cache node resource Bgp record count.
bgp_number_of_times_updated This property is required. int
Cache node resource Bgp update count.
bgp_review_feedback This property is required. str
Cache node resource Bgp review feedback text.
bgp_review_state This property is required. str
Cache node resource Bgp review state string text.
bgp_review_state_text This property is required. str
Cache node resource Bgp review state string text in detail.
category This property is required. str
Cache node resource category.
cidr_csv_last_update_time This property is required. str
Cache node resource last Cidr Csv update timestamp
client_tenant_id This property is required. str
Cache node resource customer resource client tenant Id of subscription.
configuration_state This property is required. str
Cache node resource configuration state.
configuration_state_text This property is required. str
Cache node resource configuration state text.
container_configurations This property is required. str
Cache node resource container configuration details.
container_resync_trigger This property is required. int
Cache node resource Mcc container configuration details re-sync trigger.
create_async_operation_id This property is required. str
Cache node resource create async operation Id.
customer_id This property is required. str
Cache node resource customer resource GUID Id.
delete_async_operation_id This property is required. str
Cache node resource deletion async operation Id.
image_uri This property is required. str
Cache node resource Mcc Container Id Uri.
is_frozen This property is required. bool
Cache node resource flag for indicating the cache node resource is frozen (not selectable, not editable in UI).
last_sync_with_azure_timestamp This property is required. str
Cache node resource last sync timestamp.
last_updated_timestamp This property is required. str
Cache node resource last backend updated timestamp.
max_allowable_probability This property is required. float
Cache node resource maximum allowed probability of egress.
release_version This property is required. int
Cache node resource release version.
review_feedback This property is required. str
Cache node resource review feedback text.
review_state This property is required. int
Cache node resource review process state as integer
review_state_text This property is required. str
Cache node resource review state text.
synch_with_azure_attempts_count This property is required. int
Cache node resource attempts to sync with Azure.
worker_connections This property is required. int
Cache node resource Mcc container deployment worker connection count.
worker_connections_last_updated_date_time This property is required. str
Cache node resource last updated Mcc container deployment worker connection count timestamp.
x_cid This property is required. str
Cache node resource Azure XCid.
auto_update_requested_day int
Customer requested day of week for mcc install of auto update cycle
auto_update_requested_time str
Customer requested time of the day for mcc install of auto update cycle, should be hh:mm
auto_update_requested_week int
Customer requested week of month for mcc install of auto update cycle
auto_update_ring_type str
Auto Update Ring Type which is slow or fast etc.
cache_node_id str
Cache node resource identifier of the cache node
cache_node_name str
Cache node resource name.
cidr_csv Sequence[str]
Cache node resource comma separated values of Cidrs.
cidr_selection_type int
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_domain_name str
FQDN(fully qualified domain name) value of the mcc cache node
fully_qualified_resource_id str
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_managed bool
Cache node resource flag for determining if managed by enterprise as boolean.
max_allowable_egress_in_mbps int
Cache node resource maximum allowed egress in Mbps.
should_migrate bool
Cache node resource flag for determining if customer will be migrated.
addressSpace This property is required. Number
Cache node resource total addressable space defined by the Cidr Csv block.
bgpAddressSpace This property is required. Number
Cache node resource total addressable space defined by Bgp and Cidr Csv blocks.
bgpCidrBlocksCount This property is required. Number
Cache node resource Bgp block count.
bgpCidrCsvLastUpdateTime This property is required. String
Cache node resource last Bgp Cidr Csv update timestamp
bgpFileBytesTruncated This property is required. Number
Cache node resource bytes truncated from Bgp output file.
bgpLastReportedTime This property is required. String
Cache node resource last Bgp report timestamp.
bgpNumberOfRecords This property is required. Number
Cache node resource Bgp record count.
bgpNumberOfTimesUpdated This property is required. Number
Cache node resource Bgp update count.
bgpReviewFeedback This property is required. String
Cache node resource Bgp review feedback text.
bgpReviewState This property is required. String
Cache node resource Bgp review state string text.
bgpReviewStateText This property is required. String
Cache node resource Bgp review state string text in detail.
category This property is required. String
Cache node resource category.
cidrCsvLastUpdateTime This property is required. String
Cache node resource last Cidr Csv update timestamp
clientTenantId This property is required. String
Cache node resource customer resource client tenant Id of subscription.
configurationState This property is required. String
Cache node resource configuration state.
configurationStateText This property is required. String
Cache node resource configuration state text.
containerConfigurations This property is required. String
Cache node resource container configuration details.
containerResyncTrigger This property is required. Number
Cache node resource Mcc container configuration details re-sync trigger.
createAsyncOperationId This property is required. String
Cache node resource create async operation Id.
customerId This property is required. String
Cache node resource customer resource GUID Id.
deleteAsyncOperationId This property is required. String
Cache node resource deletion async operation Id.
imageUri This property is required. String
Cache node resource Mcc Container Id Uri.
isFrozen This property is required. Boolean
Cache node resource flag for indicating the cache node resource is frozen (not selectable, not editable in UI).
lastSyncWithAzureTimestamp This property is required. String
Cache node resource last sync timestamp.
lastUpdatedTimestamp This property is required. String
Cache node resource last backend updated timestamp.
maxAllowableProbability This property is required. Number
Cache node resource maximum allowed probability of egress.
releaseVersion This property is required. Number
Cache node resource release version.
reviewFeedback This property is required. String
Cache node resource review feedback text.
reviewState This property is required. Number
Cache node resource review process state as integer
reviewStateText This property is required. String
Cache node resource review state text.
synchWithAzureAttemptsCount This property is required. Number
Cache node resource attempts to sync with Azure.
workerConnections This property is required. Number
Cache node resource Mcc container deployment worker connection count.
workerConnectionsLastUpdatedDateTime This property is required. String
Cache node resource last updated Mcc container deployment worker connection count timestamp.
xCid This property is required. String
Cache node resource Azure XCid.
autoUpdateRequestedDay Number
Customer requested day of week for mcc install of auto update cycle
autoUpdateRequestedTime String
Customer requested time of the day for mcc install of auto update cycle, should be hh:mm
autoUpdateRequestedWeek Number
Customer requested week of month for mcc install of auto update cycle
autoUpdateRingType String
Auto Update Ring Type which is slow or fast etc.
cacheNodeId String
Cache node resource identifier of the cache node
cacheNodeName String
Cache node resource name.
cidrCsv List<String>
Cache node resource comma separated values of Cidrs.
cidrSelectionType Number
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.
fullyQualifiedDomainName String
FQDN(fully qualified domain name) value of the mcc cache node
fullyQualifiedResourceId String
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.
isEnterpriseManaged Boolean
Cache node resource flag for determining if managed by enterprise as boolean.
maxAllowableEgressInMbps Number
Cache node resource maximum allowed egress in Mbps.
shouldMigrate Boolean
Cache node resource flag for determining if customer will be migrated.

CacheNodeProperty
, CacheNodePropertyArgs

AdditionalCacheNodeProperties Pulumi.AzureNative.ConnectedCache.Inputs.AdditionalCacheNodeProperties
Mcc cache node resource additional properties.
CacheNode Pulumi.AzureNative.ConnectedCache.Inputs.CacheNodeEntity
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.
AdditionalCacheNodeProperties AdditionalCacheNodeProperties
Mcc cache node resource additional properties.
CacheNode CacheNodeEntity
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.
additionalCacheNodeProperties AdditionalCacheNodeProperties
Mcc cache node resource additional properties.
cacheNode CacheNodeEntity
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.
additionalCacheNodeProperties AdditionalCacheNodeProperties
Mcc cache node resource additional properties.
cacheNode CacheNodeEntity
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_node_properties AdditionalCacheNodeProperties
Mcc cache node resource additional properties.
cache_node CacheNodeEntity
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.
additionalCacheNodeProperties Property Map
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 This property is required. string
The provisioned state of the resource
Status This property is required. string
HTTP error status code.
AdditionalCacheNodeProperties Pulumi.AzureNative.ConnectedCache.Inputs.AdditionalCacheNodePropertiesResponse
Mcc cache node resource additional properties.
CacheNode Pulumi.AzureNative.ConnectedCache.Inputs.CacheNodeEntityResponse
Mcc cache node resource (cache node entity).
Error Pulumi.AzureNative.ConnectedCache.Inputs.ErrorDetailResponse
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 This property is required. string
The provisioned state of the resource
Status This property is required. string
HTTP error status code.
AdditionalCacheNodeProperties AdditionalCacheNodePropertiesResponse
Mcc cache node resource additional properties.
CacheNode CacheNodeEntityResponse
Mcc cache node resource (cache node entity).
Error ErrorDetailResponse
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 This property is required. String
The provisioned state of the resource
status This property is required. String
HTTP error status code.
additionalCacheNodeProperties AdditionalCacheNodePropertiesResponse
Mcc cache node resource additional properties.
cacheNode CacheNodeEntityResponse
Mcc cache node resource (cache node entity).
error ErrorDetailResponse
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 This property is required. string
The provisioned state of the resource
status This property is required. string
HTTP error status code.
additionalCacheNodeProperties AdditionalCacheNodePropertiesResponse
Mcc cache node resource additional properties.
cacheNode CacheNodeEntityResponse
Mcc cache node resource (cache node entity).
error ErrorDetailResponse
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 This property is required. str
The provisioned state of the resource
status This property is required. str
HTTP error status code.
additional_cache_node_properties AdditionalCacheNodePropertiesResponse
Mcc cache node resource additional properties.
cache_node CacheNodeEntityResponse
Mcc cache node resource (cache node entity).
error ErrorDetailResponse
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 This property is required. String
The provisioned state of the resource
status This property is required. String
HTTP error status code.
additionalCacheNodeProperties Property Map
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
CycleTypePreview
Previewcustomer selection of preview update install mcc on their physical vm
CycleTypeSlow
Slowcustomer selection of slow update to install mcc on their physical vm
CycleTypeFast
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

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

ErrorDetailResponse
, ErrorDetailResponseArgs

AdditionalInfo This property is required. List<Pulumi.AzureNative.ConnectedCache.Inputs.ErrorAdditionalInfoResponse>
The error additional info.
Code This property is required. string
The error code.
Details This property is required. List<Pulumi.AzureNative.ConnectedCache.Inputs.ErrorDetailResponse>
The error details.
Message This property is required. string
The error message.
Target This property is required. string
The error target.
AdditionalInfo This property is required. []ErrorAdditionalInfoResponse
The error additional info.
Code This property is required. string
The error code.
Details This property is required. []ErrorDetailResponse
The error details.
Message This property is required. string
The error message.
Target This property is required. string
The error target.
additionalInfo This property is required. List<ErrorAdditionalInfoResponse>
The error additional info.
code This property is required. String
The error code.
details This property is required. List<ErrorDetailResponse>
The error details.
message This property is required. String
The error message.
target This property is required. String
The error target.
additionalInfo This property is required. ErrorAdditionalInfoResponse[]
The error additional info.
code This property is required. string
The error code.
details This property is required. ErrorDetailResponse[]
The error details.
message This property is required. string
The error message.
target This property is required. string
The error target.
additional_info This property is required. Sequence[ErrorAdditionalInfoResponse]
The error additional info.
code This property is required. str
The error code.
details This property is required. Sequence[ErrorDetailResponse]
The error details.
message This property is required. str
The error message.
target This property is required. str
The error target.
additionalInfo This property is required. List<Property Map>
The error additional info.
code This property is required. String
The error code.
details This property is required. List<Property Map>
The error details.
message This property is required. String
The error message.
target This property is required. 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
OsTypeWindows
Windowscache node installs on windows operating system
OsTypeLinux
Linuxcache node installs on Linux Operating system
OsTypeEflow
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
ProxyRequiredNone
NoneProxy is not required in setup
ProxyRequiredRequired
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.
CreatedByType string
The type of identity that created the resource.
LastModifiedAt string
The timestamp of resource last modification (UTC)
LastModifiedBy string
The identity that last modified the resource.
LastModifiedByType string
The type of identity that last modified the resource.
CreatedAt string
The timestamp of resource creation (UTC).
CreatedBy string
The identity that created the resource.
CreatedByType string
The type of identity that created the resource.
LastModifiedAt string
The timestamp of resource last modification (UTC)
LastModifiedBy string
The identity that last modified the resource.
LastModifiedByType string
The type of identity that last modified the resource.
createdAt String
The timestamp of resource creation (UTC).
createdBy String
The identity that created the resource.
createdByType String
The type of identity that created the resource.
lastModifiedAt String
The timestamp of resource last modification (UTC)
lastModifiedBy String
The identity that last modified the resource.
lastModifiedByType String
The type of identity that last modified the resource.
createdAt string
The timestamp of resource creation (UTC).
createdBy string
The identity that created the resource.
createdByType string
The type of identity that created the resource.
lastModifiedAt string
The timestamp of resource last modification (UTC)
lastModifiedBy string
The identity that last modified the resource.
lastModifiedByType string
The type of identity that last modified the resource.
created_at str
The timestamp of resource creation (UTC).
created_by str
The identity that created the resource.
created_by_type str
The type of identity that created the resource.
last_modified_at str
The timestamp of resource last modification (UTC)
last_modified_by str
The identity that last modified the resource.
last_modified_by_type str
The type of identity that last modified the resource.
createdAt String
The timestamp of resource creation (UTC).
createdBy String
The identity that created the resource.
createdByType String
The type of identity that created the resource.
lastModifiedAt String
The timestamp of resource last modification (UTC)
lastModifiedBy String
The identity that last modified the resource.
lastModifiedByType String
The type of identity that last modified the resource.

Import

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

$ pulumi import azure-native:connectedcache:IspCacheNodesOperation MccRPTest1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ConnectedCache/ispCustomers/{customerResourceName}/ispCacheNodes/{cacheNodeResourceName} 
Copy

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

Package Details

Repository
azure-native-v2 pulumi/pulumi-azure-native
License
Apache-2.0