azure-native.connectedcache.IspCacheNodesOperation
Explore with Pulumi AI
Represents the high level Nodes needed to provision cache node resources Azure REST API version: 2023-05-01-preview.
Example Usage
IspCacheNodesOperations_CreateOrUpdate
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var ispCacheNodesOperation = new AzureNative.ConnectedCache.IspCacheNodesOperation("ispCacheNodesOperation", new()
{
CacheNodeResourceName = "cabakm",
CustomerResourceName = "zpqzbmanlljgmkrthtydrtneavhlnlqkdmviq",
Location = "westus",
Properties = new AzureNative.ConnectedCache.Inputs.CacheNodePropertyArgs
{
AdditionalCacheNodeProperties = new AzureNative.ConnectedCache.Inputs.AdditionalCacheNodePropertiesArgs
{
BgpConfiguration = new AzureNative.ConnectedCache.Inputs.BgpConfigurationArgs
{
AsnToIpAddressMapping = "pafcimhoog",
},
CacheNodePropertiesDetailsIssuesList = new[]
{
"ex",
},
DriveConfiguration = new[]
{
new AzureNative.ConnectedCache.Inputs.CacheNodeDriveConfigurationArgs
{
CacheNumber = 1,
NginxMapping = "lijygenjq",
PhysicalPath = "/mcc",
SizeInGb = 500,
},
},
OptionalProperty1 = "hvpmt",
OptionalProperty2 = "talanelmsgxvksrzoeeontqkjzbpv",
OptionalProperty3 = "bxkoxq",
OptionalProperty4 = "pqlkcekupusoc",
OptionalProperty5 = "nyvvmrjigqdufzjdvazdca",
ProxyUrl = "qhux",
ProxyUrlConfiguration = new AzureNative.ConnectedCache.Inputs.ProxyUrlConfigurationArgs
{
ProxyUrl = "hplstyg",
},
},
CacheNode = new AzureNative.ConnectedCache.Inputs.CacheNodeEntityArgs
{
CacheNodeId = "xjzffjftwcgsehanoxsl",
CacheNodeName = "mfjxb",
CidrCsv = new[]
{
"nlqlvrthafvvljuupcbcw",
},
CidrSelectionType = 4,
CustomerAsn = 4,
CustomerIndex = "qtoiglqaswivmkjhzogburcxtszmek",
CustomerName = "xwyqk",
FullyQualifiedResourceId = "hskxkpbiqbrbjiwdzrxndru",
IpAddress = "voctagljcwqgcpnionqdcbjk",
IsEnabled = true,
IsEnterpriseManaged = true,
MaxAllowableEgressInMbps = 29,
ShouldMigrate = true,
},
StatusCode = "1",
StatusDetails = "djruqvptzxak",
StatusText = "Success",
},
ResourceGroupName = "rgConnectedCache",
Tags =
{
{ "key4171", "qtjlszkawsdujzpgohsbw" },
},
});
});
package main
import (
connectedcache "github.com/pulumi/pulumi-azure-native-sdk/connectedcache/v2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := connectedcache.NewIspCacheNodesOperation(ctx, "ispCacheNodesOperation", &connectedcache.IspCacheNodesOperationArgs{
CacheNodeResourceName: pulumi.String("cabakm"),
CustomerResourceName: pulumi.String("zpqzbmanlljgmkrthtydrtneavhlnlqkdmviq"),
Location: pulumi.String("westus"),
Properties: &connectedcache.CacheNodePropertyArgs{
AdditionalCacheNodeProperties: &connectedcache.AdditionalCacheNodePropertiesArgs{
BgpConfiguration: &connectedcache.BgpConfigurationArgs{
AsnToIpAddressMapping: pulumi.String("pafcimhoog"),
},
CacheNodePropertiesDetailsIssuesList: pulumi.StringArray{
pulumi.String("ex"),
},
DriveConfiguration: connectedcache.CacheNodeDriveConfigurationArray{
&connectedcache.CacheNodeDriveConfigurationArgs{
CacheNumber: pulumi.Int(1),
NginxMapping: pulumi.String("lijygenjq"),
PhysicalPath: pulumi.String("/mcc"),
SizeInGb: pulumi.Int(500),
},
},
OptionalProperty1: pulumi.String("hvpmt"),
OptionalProperty2: pulumi.String("talanelmsgxvksrzoeeontqkjzbpv"),
OptionalProperty3: pulumi.String("bxkoxq"),
OptionalProperty4: pulumi.String("pqlkcekupusoc"),
OptionalProperty5: pulumi.String("nyvvmrjigqdufzjdvazdca"),
ProxyUrl: pulumi.String("qhux"),
ProxyUrlConfiguration: &connectedcache.ProxyUrlConfigurationArgs{
ProxyUrl: pulumi.String("hplstyg"),
},
},
CacheNode: &connectedcache.CacheNodeEntityArgs{
CacheNodeId: pulumi.String("xjzffjftwcgsehanoxsl"),
CacheNodeName: pulumi.String("mfjxb"),
CidrCsv: pulumi.StringArray{
pulumi.String("nlqlvrthafvvljuupcbcw"),
},
CidrSelectionType: pulumi.Int(4),
CustomerAsn: pulumi.Int(4),
CustomerIndex: pulumi.String("qtoiglqaswivmkjhzogburcxtszmek"),
CustomerName: pulumi.String("xwyqk"),
FullyQualifiedResourceId: pulumi.String("hskxkpbiqbrbjiwdzrxndru"),
IpAddress: pulumi.String("voctagljcwqgcpnionqdcbjk"),
IsEnabled: pulumi.Bool(true),
IsEnterpriseManaged: pulumi.Bool(true),
MaxAllowableEgressInMbps: pulumi.Int(29),
ShouldMigrate: pulumi.Bool(true),
},
StatusCode: pulumi.String("1"),
StatusDetails: pulumi.String("djruqvptzxak"),
StatusText: pulumi.String("Success"),
},
ResourceGroupName: pulumi.String("rgConnectedCache"),
Tags: pulumi.StringMap{
"key4171": pulumi.String("qtjlszkawsdujzpgohsbw"),
},
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.connectedcache.IspCacheNodesOperation;
import com.pulumi.azurenative.connectedcache.IspCacheNodesOperationArgs;
import com.pulumi.azurenative.connectedcache.inputs.CacheNodePropertyArgs;
import com.pulumi.azurenative.connectedcache.inputs.AdditionalCacheNodePropertiesArgs;
import com.pulumi.azurenative.connectedcache.inputs.BgpConfigurationArgs;
import com.pulumi.azurenative.connectedcache.inputs.ProxyUrlConfigurationArgs;
import com.pulumi.azurenative.connectedcache.inputs.CacheNodeEntityArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var ispCacheNodesOperation = new IspCacheNodesOperation("ispCacheNodesOperation", IspCacheNodesOperationArgs.builder()
.cacheNodeResourceName("cabakm")
.customerResourceName("zpqzbmanlljgmkrthtydrtneavhlnlqkdmviq")
.location("westus")
.properties(CacheNodePropertyArgs.builder()
.additionalCacheNodeProperties(AdditionalCacheNodePropertiesArgs.builder()
.bgpConfiguration(BgpConfigurationArgs.builder()
.asnToIpAddressMapping("pafcimhoog")
.build())
.cacheNodePropertiesDetailsIssuesList("ex")
.driveConfiguration(CacheNodeDriveConfigurationArgs.builder()
.cacheNumber(1)
.nginxMapping("lijygenjq")
.physicalPath("/mcc")
.sizeInGb(500)
.build())
.optionalProperty1("hvpmt")
.optionalProperty2("talanelmsgxvksrzoeeontqkjzbpv")
.optionalProperty3("bxkoxq")
.optionalProperty4("pqlkcekupusoc")
.optionalProperty5("nyvvmrjigqdufzjdvazdca")
.proxyUrl("qhux")
.proxyUrlConfiguration(ProxyUrlConfigurationArgs.builder()
.proxyUrl("hplstyg")
.build())
.build())
.cacheNode(CacheNodeEntityArgs.builder()
.cacheNodeId("xjzffjftwcgsehanoxsl")
.cacheNodeName("mfjxb")
.cidrCsv("nlqlvrthafvvljuupcbcw")
.cidrSelectionType(4)
.customerAsn(4)
.customerIndex("qtoiglqaswivmkjhzogburcxtszmek")
.customerName("xwyqk")
.fullyQualifiedResourceId("hskxkpbiqbrbjiwdzrxndru")
.ipAddress("voctagljcwqgcpnionqdcbjk")
.isEnabled(true)
.isEnterpriseManaged(true)
.maxAllowableEgressInMbps(29)
.shouldMigrate(true)
.build())
.statusCode("1")
.statusDetails("djruqvptzxak")
.statusText("Success")
.build())
.resourceGroupName("rgConnectedCache")
.tags(Map.of("key4171", "qtjlszkawsdujzpgohsbw"))
.build());
}
}
import 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",
})
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",
},
});
resources:
ispCacheNodesOperation:
type: azure-native:connectedcache:IspCacheNodesOperation
properties:
cacheNodeResourceName: cabakm
customerResourceName: zpqzbmanlljgmkrthtydrtneavhlnlqkdmviq
location: westus
properties:
additionalCacheNodeProperties:
bgpConfiguration:
asnToIpAddressMapping: pafcimhoog
cacheNodePropertiesDetailsIssuesList:
- ex
driveConfiguration:
- cacheNumber: 1
nginxMapping: lijygenjq
physicalPath: /mcc
sizeInGb: 500
optionalProperty1: hvpmt
optionalProperty2: talanelmsgxvksrzoeeontqkjzbpv
optionalProperty3: bxkoxq
optionalProperty4: pqlkcekupusoc
optionalProperty5: nyvvmrjigqdufzjdvazdca
proxyUrl: qhux
proxyUrlConfiguration:
proxyUrl: hplstyg
cacheNode:
cacheNodeId: xjzffjftwcgsehanoxsl
cacheNodeName: mfjxb
cidrCsv:
- nlqlvrthafvvljuupcbcw
cidrSelectionType: 4
customerAsn: 4
customerIndex: qtoiglqaswivmkjhzogburcxtszmek
customerName: xwyqk
fullyQualifiedResourceId: hskxkpbiqbrbjiwdzrxndru
ipAddress: voctagljcwqgcpnionqdcbjk
isEnabled: true
isEnterpriseManaged: true
maxAllowableEgressInMbps: 29
shouldMigrate: true
statusCode: '1'
statusDetails: djruqvptzxak
statusText: Success
resourceGroupName: rgConnectedCache
tags:
key4171: qtjlszkawsdujzpgohsbw
Create IspCacheNodesOperation Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new IspCacheNodesOperation(name: string, args: IspCacheNodesOperationArgs, opts?: CustomResourceOptions);
@overload
def IspCacheNodesOperation(resource_name: str,
args: IspCacheNodesOperationArgs,
opts: Optional[ResourceOptions] = None)
@overload
def IspCacheNodesOperation(resource_name: str,
opts: Optional[ResourceOptions] = None,
customer_resource_name: Optional[str] = None,
resource_group_name: Optional[str] = None,
cache_node_resource_name: Optional[str] = None,
location: Optional[str] = None,
properties: Optional[CacheNodePropertyArgs] = None,
tags: Optional[Mapping[str, str]] = None)
func NewIspCacheNodesOperation(ctx *Context, name string, args IspCacheNodesOperationArgs, opts ...ResourceOption) (*IspCacheNodesOperation, error)
public IspCacheNodesOperation(string name, IspCacheNodesOperationArgs args, CustomResourceOptions? opts = null)
public IspCacheNodesOperation(String name, IspCacheNodesOperationArgs args)
public IspCacheNodesOperation(String name, IspCacheNodesOperationArgs args, CustomResourceOptions options)
type: azure-native:connectedcache:IspCacheNodesOperation
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args IspCacheNodesOperationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args IspCacheNodesOperationArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args IspCacheNodesOperationArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args IspCacheNodesOperationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args IspCacheNodesOperationArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var ispCacheNodesOperationResource = new AzureNative.ConnectedCache.IspCacheNodesOperation("ispCacheNodesOperationResource", new()
{
CustomerResourceName = "string",
ResourceGroupName = "string",
CacheNodeResourceName = "string",
Location = "string",
Properties = new AzureNative.ConnectedCache.Inputs.CacheNodePropertyArgs
{
AdditionalCacheNodeProperties = new AzureNative.ConnectedCache.Inputs.AdditionalCacheNodePropertiesArgs
{
AutoUpdateVersion = "string",
BgpConfiguration = new AzureNative.ConnectedCache.Inputs.BgpConfigurationArgs
{
AsnToIpAddressMapping = "string",
},
CacheNodePropertiesDetailsIssuesList = new[]
{
"string",
},
DriveConfiguration = new[]
{
new AzureNative.ConnectedCache.Inputs.CacheNodeDriveConfigurationArgs
{
CacheNumber = 0,
NginxMapping = "string",
PhysicalPath = "string",
SizeInGb = 0,
},
},
IsProxyRequired = "string",
OptionalProperty1 = "string",
OptionalProperty2 = "string",
OptionalProperty3 = "string",
OptionalProperty4 = "string",
OptionalProperty5 = "string",
OsType = "string",
ProxyUrl = "string",
ProxyUrlConfiguration = new AzureNative.ConnectedCache.Inputs.ProxyUrlConfigurationArgs
{
ProxyUrl = "string",
},
UpdateCycleType = "string",
UpdateInfoDetails = "string",
UpdateRequestedDateTime = "string",
},
CacheNode = new AzureNative.ConnectedCache.Inputs.CacheNodeEntityArgs
{
AutoUpdateRequestedDay = 0,
AutoUpdateRequestedTime = "string",
AutoUpdateRequestedWeek = 0,
AutoUpdateRingType = "string",
CacheNodeId = "string",
CacheNodeName = "string",
CidrCsv = new[]
{
"string",
},
CidrSelectionType = 0,
CustomerAsn = 0,
CustomerIndex = "string",
CustomerName = "string",
FullyQualifiedDomainName = "string",
FullyQualifiedResourceId = "string",
IpAddress = "string",
IsEnabled = false,
IsEnterpriseManaged = false,
MaxAllowableEgressInMbps = 0,
ShouldMigrate = false,
},
StatusCode = "string",
StatusDetails = "string",
StatusText = "string",
},
Tags =
{
{ "string", "string" },
},
});
example, err := connectedcache.NewIspCacheNodesOperation(ctx, "ispCacheNodesOperationResource", &connectedcache.IspCacheNodesOperationArgs{
CustomerResourceName: pulumi.String("string"),
ResourceGroupName: pulumi.String("string"),
CacheNodeResourceName: pulumi.String("string"),
Location: pulumi.String("string"),
Properties: &connectedcache.CacheNodePropertyArgs{
AdditionalCacheNodeProperties: &connectedcache.AdditionalCacheNodePropertiesArgs{
AutoUpdateVersion: pulumi.String("string"),
BgpConfiguration: &connectedcache.BgpConfigurationArgs{
AsnToIpAddressMapping: pulumi.String("string"),
},
CacheNodePropertiesDetailsIssuesList: pulumi.StringArray{
pulumi.String("string"),
},
DriveConfiguration: connectedcache.CacheNodeDriveConfigurationArray{
&connectedcache.CacheNodeDriveConfigurationArgs{
CacheNumber: pulumi.Int(0),
NginxMapping: pulumi.String("string"),
PhysicalPath: pulumi.String("string"),
SizeInGb: pulumi.Int(0),
},
},
IsProxyRequired: pulumi.String("string"),
OptionalProperty1: pulumi.String("string"),
OptionalProperty2: pulumi.String("string"),
OptionalProperty3: pulumi.String("string"),
OptionalProperty4: pulumi.String("string"),
OptionalProperty5: pulumi.String("string"),
OsType: pulumi.String("string"),
ProxyUrl: pulumi.String("string"),
ProxyUrlConfiguration: &connectedcache.ProxyUrlConfigurationArgs{
ProxyUrl: pulumi.String("string"),
},
UpdateCycleType: pulumi.String("string"),
UpdateInfoDetails: pulumi.String("string"),
UpdateRequestedDateTime: pulumi.String("string"),
},
CacheNode: &connectedcache.CacheNodeEntityArgs{
AutoUpdateRequestedDay: pulumi.Int(0),
AutoUpdateRequestedTime: pulumi.String("string"),
AutoUpdateRequestedWeek: pulumi.Int(0),
AutoUpdateRingType: pulumi.String("string"),
CacheNodeId: pulumi.String("string"),
CacheNodeName: pulumi.String("string"),
CidrCsv: pulumi.StringArray{
pulumi.String("string"),
},
CidrSelectionType: pulumi.Int(0),
CustomerAsn: pulumi.Int(0),
CustomerIndex: pulumi.String("string"),
CustomerName: pulumi.String("string"),
FullyQualifiedDomainName: pulumi.String("string"),
FullyQualifiedResourceId: pulumi.String("string"),
IpAddress: pulumi.String("string"),
IsEnabled: pulumi.Bool(false),
IsEnterpriseManaged: pulumi.Bool(false),
MaxAllowableEgressInMbps: pulumi.Int(0),
ShouldMigrate: pulumi.Bool(false),
},
StatusCode: pulumi.String("string"),
StatusDetails: pulumi.String("string"),
StatusText: pulumi.String("string"),
},
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var ispCacheNodesOperationResource = new IspCacheNodesOperation("ispCacheNodesOperationResource", IspCacheNodesOperationArgs.builder()
.customerResourceName("string")
.resourceGroupName("string")
.cacheNodeResourceName("string")
.location("string")
.properties(CacheNodePropertyArgs.builder()
.additionalCacheNodeProperties(AdditionalCacheNodePropertiesArgs.builder()
.autoUpdateVersion("string")
.bgpConfiguration(BgpConfigurationArgs.builder()
.asnToIpAddressMapping("string")
.build())
.cacheNodePropertiesDetailsIssuesList("string")
.driveConfiguration(CacheNodeDriveConfigurationArgs.builder()
.cacheNumber(0)
.nginxMapping("string")
.physicalPath("string")
.sizeInGb(0)
.build())
.isProxyRequired("string")
.optionalProperty1("string")
.optionalProperty2("string")
.optionalProperty3("string")
.optionalProperty4("string")
.optionalProperty5("string")
.osType("string")
.proxyUrl("string")
.proxyUrlConfiguration(ProxyUrlConfigurationArgs.builder()
.proxyUrl("string")
.build())
.updateCycleType("string")
.updateInfoDetails("string")
.updateRequestedDateTime("string")
.build())
.cacheNode(CacheNodeEntityArgs.builder()
.autoUpdateRequestedDay(0)
.autoUpdateRequestedTime("string")
.autoUpdateRequestedWeek(0)
.autoUpdateRingType("string")
.cacheNodeId("string")
.cacheNodeName("string")
.cidrCsv("string")
.cidrSelectionType(0)
.customerAsn(0)
.customerIndex("string")
.customerName("string")
.fullyQualifiedDomainName("string")
.fullyQualifiedResourceId("string")
.ipAddress("string")
.isEnabled(false)
.isEnterpriseManaged(false)
.maxAllowableEgressInMbps(0)
.shouldMigrate(false)
.build())
.statusCode("string")
.statusDetails("string")
.statusText("string")
.build())
.tags(Map.of("string", "string"))
.build());
isp_cache_nodes_operation_resource = azure_native.connectedcache.IspCacheNodesOperation("ispCacheNodesOperationResource",
customer_resource_name="string",
resource_group_name="string",
cache_node_resource_name="string",
location="string",
properties={
"additional_cache_node_properties": {
"auto_update_version": "string",
"bgp_configuration": {
"asn_to_ip_address_mapping": "string",
},
"cache_node_properties_details_issues_list": ["string"],
"drive_configuration": [{
"cache_number": 0,
"nginx_mapping": "string",
"physical_path": "string",
"size_in_gb": 0,
}],
"is_proxy_required": "string",
"optional_property1": "string",
"optional_property2": "string",
"optional_property3": "string",
"optional_property4": "string",
"optional_property5": "string",
"os_type": "string",
"proxy_url": "string",
"proxy_url_configuration": {
"proxy_url": "string",
},
"update_cycle_type": "string",
"update_info_details": "string",
"update_requested_date_time": "string",
},
"cache_node": {
"auto_update_requested_day": 0,
"auto_update_requested_time": "string",
"auto_update_requested_week": 0,
"auto_update_ring_type": "string",
"cache_node_id": "string",
"cache_node_name": "string",
"cidr_csv": ["string"],
"cidr_selection_type": 0,
"customer_asn": 0,
"customer_index": "string",
"customer_name": "string",
"fully_qualified_domain_name": "string",
"fully_qualified_resource_id": "string",
"ip_address": "string",
"is_enabled": False,
"is_enterprise_managed": False,
"max_allowable_egress_in_mbps": 0,
"should_migrate": False,
},
"status_code": "string",
"status_details": "string",
"status_text": "string",
},
tags={
"string": "string",
})
const ispCacheNodesOperationResource = new azure_native.connectedcache.IspCacheNodesOperation("ispCacheNodesOperationResource", {
customerResourceName: "string",
resourceGroupName: "string",
cacheNodeResourceName: "string",
location: "string",
properties: {
additionalCacheNodeProperties: {
autoUpdateVersion: "string",
bgpConfiguration: {
asnToIpAddressMapping: "string",
},
cacheNodePropertiesDetailsIssuesList: ["string"],
driveConfiguration: [{
cacheNumber: 0,
nginxMapping: "string",
physicalPath: "string",
sizeInGb: 0,
}],
isProxyRequired: "string",
optionalProperty1: "string",
optionalProperty2: "string",
optionalProperty3: "string",
optionalProperty4: "string",
optionalProperty5: "string",
osType: "string",
proxyUrl: "string",
proxyUrlConfiguration: {
proxyUrl: "string",
},
updateCycleType: "string",
updateInfoDetails: "string",
updateRequestedDateTime: "string",
},
cacheNode: {
autoUpdateRequestedDay: 0,
autoUpdateRequestedTime: "string",
autoUpdateRequestedWeek: 0,
autoUpdateRingType: "string",
cacheNodeId: "string",
cacheNodeName: "string",
cidrCsv: ["string"],
cidrSelectionType: 0,
customerAsn: 0,
customerIndex: "string",
customerName: "string",
fullyQualifiedDomainName: "string",
fullyQualifiedResourceId: "string",
ipAddress: "string",
isEnabled: false,
isEnterpriseManaged: false,
maxAllowableEgressInMbps: 0,
shouldMigrate: false,
},
statusCode: "string",
statusDetails: "string",
statusText: "string",
},
tags: {
string: "string",
},
});
type: azure-native:connectedcache:IspCacheNodesOperation
properties:
cacheNodeResourceName: string
customerResourceName: string
location: string
properties:
additionalCacheNodeProperties:
autoUpdateVersion: string
bgpConfiguration:
asnToIpAddressMapping: string
cacheNodePropertiesDetailsIssuesList:
- string
driveConfiguration:
- cacheNumber: 0
nginxMapping: string
physicalPath: string
sizeInGb: 0
isProxyRequired: string
optionalProperty1: string
optionalProperty2: string
optionalProperty3: string
optionalProperty4: string
optionalProperty5: string
osType: string
proxyUrl: string
proxyUrlConfiguration:
proxyUrl: string
updateCycleType: string
updateInfoDetails: string
updateRequestedDateTime: string
cacheNode:
autoUpdateRequestedDay: 0
autoUpdateRequestedTime: string
autoUpdateRequestedWeek: 0
autoUpdateRingType: string
cacheNodeId: string
cacheNodeName: string
cidrCsv:
- string
cidrSelectionType: 0
customerAsn: 0
customerIndex: string
customerName: string
fullyQualifiedDomainName: string
fullyQualifiedResourceId: string
ipAddress: string
isEnabled: false
isEnterpriseManaged: false
maxAllowableEgressInMbps: 0
shouldMigrate: false
statusCode: string
statusDetails: string
statusText: string
resourceGroupName: string
tags:
string: string
IspCacheNodesOperation Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The IspCacheNodesOperation resource accepts the following input properties:
- Customer
Resource stringName - Name of the Customer resource
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Cache
Node stringResource Name - Name of the ConnectedCache resource
- Location string
- The geo-location where the resource lives
- Properties
Pulumi.
Azure Native. Connected Cache. Inputs. Cache Node Property - The resource-specific properties for this resource.
- Dictionary<string, string>
- Resource tags.
- Customer
Resource stringName - Name of the Customer resource
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Cache
Node stringResource Name - Name of the ConnectedCache resource
- Location string
- The geo-location where the resource lives
- Properties
Cache
Node Property Args - The resource-specific properties for this resource.
- map[string]string
- Resource tags.
- customer
Resource StringName - Name of the Customer resource
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- cache
Node StringResource Name - Name of the ConnectedCache resource
- location String
- The geo-location where the resource lives
- properties
Cache
Node Property - The resource-specific properties for this resource.
- Map<String,String>
- Resource tags.
- customer
Resource stringName - Name of the Customer resource
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- cache
Node stringResource Name - Name of the ConnectedCache resource
- location string
- The geo-location where the resource lives
- properties
Cache
Node Property - The resource-specific properties for this resource.
- {[key: string]: string}
- Resource tags.
- customer_
resource_ strname - Name of the Customer resource
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- cache_
node_ strresource_ name - Name of the ConnectedCache resource
- location str
- The geo-location where the resource lives
- properties
Cache
Node Property Args - The resource-specific properties for this resource.
- Mapping[str, str]
- Resource tags.
- customer
Resource StringName - Name of the Customer resource
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- cache
Node StringResource Name - Name of the ConnectedCache resource
- location String
- The geo-location where the resource lives
- properties Property Map
- The resource-specific properties for this resource.
- Map<String>
- Resource tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the IspCacheNodesOperation resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- System
Data Pulumi.Azure Native. Connected Cache. Outputs. System Data Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- System
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the resource
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- The name of the resource
- system_
data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type str
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- system
Data Property Map - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
Supporting Types
AdditionalCacheNodeProperties, AdditionalCacheNodePropertiesArgs
- Auto
Update stringVersion - Auto update or fast update version
- Bgp
Configuration Pulumi.Azure Native. Connected Cache. Inputs. Bgp Configuration - Cache node resource Bgp configuration.
- Cache
Node List<string>Properties Details Issues List - issues list to return the issues as part of the additional cache node properties
- Drive
Configuration List<Pulumi.Azure Native. Connected Cache. Inputs. Cache Node Drive Configuration> - Cache node resource drive configurations.
- Is
Proxy string | Pulumi.Required Azure Native. Connected Cache. Proxy Required - Cache node resource requires a proxy
- Optional
Property1 string - Optional property #1 of Mcc response object
- Optional
Property2 string - Optional property #2 of Mcc response object
- Optional
Property3 string - Optional property #3 of Mcc response object
- Optional
Property4 string - Optional property #4 of Mcc response object
- Optional
Property5 string - Optional property #5 of Mcc response object
- Os
Type string | Pulumi.Azure Native. Connected Cache. Os Type - Operating system of the cache node
- Proxy
Url string - Cache node resource Mcc proxy Url
- Proxy
Url Pulumi.Configuration Azure Native. Connected Cache. Inputs. Proxy Url Configuration - proxyUrl configuration of the cache node
- Update
Cycle string | Pulumi.Type Azure Native. Connected Cache. Cycle Type - Update Cycle Type
- Update
Info stringDetails - Update related information details
- Update
Requested stringDate Time - customer requested date time for mcc install of update cycle
- Auto
Update stringVersion - Auto update or fast update version
- Bgp
Configuration BgpConfiguration - Cache node resource Bgp configuration.
- Cache
Node []stringProperties Details Issues List - issues list to return the issues as part of the additional cache node properties
- Drive
Configuration []CacheNode Drive Configuration - Cache node resource drive configurations.
- Is
Proxy string | ProxyRequired Required - Cache node resource requires a proxy
- Optional
Property1 string - Optional property #1 of Mcc response object
- Optional
Property2 string - Optional property #2 of Mcc response object
- Optional
Property3 string - Optional property #3 of Mcc response object
- Optional
Property4 string - Optional property #4 of Mcc response object
- Optional
Property5 string - Optional property #5 of Mcc response object
- Os
Type string | OsType - Operating system of the cache node
- Proxy
Url string - Cache node resource Mcc proxy Url
- Proxy
Url ProxyConfiguration Url Configuration - proxyUrl configuration of the cache node
- Update
Cycle string | CycleType Type - Update Cycle Type
- Update
Info stringDetails - Update related information details
- Update
Requested stringDate Time - customer requested date time for mcc install of update cycle
- auto
Update StringVersion - Auto update or fast update version
- bgp
Configuration BgpConfiguration - Cache node resource Bgp configuration.
- cache
Node List<String>Properties Details Issues List - issues list to return the issues as part of the additional cache node properties
- drive
Configuration List<CacheNode Drive Configuration> - Cache node resource drive configurations.
- is
Proxy String | ProxyRequired Required - Cache node resource requires a proxy
- optional
Property1 String - Optional property #1 of Mcc response object
- optional
Property2 String - Optional property #2 of Mcc response object
- optional
Property3 String - Optional property #3 of Mcc response object
- optional
Property4 String - Optional property #4 of Mcc response object
- optional
Property5 String - Optional property #5 of Mcc response object
- os
Type String | OsType - Operating system of the cache node
- proxy
Url String - Cache node resource Mcc proxy Url
- proxy
Url ProxyConfiguration Url Configuration - proxyUrl configuration of the cache node
- update
Cycle String | CycleType Type - Update Cycle Type
- update
Info StringDetails - Update related information details
- update
Requested StringDate Time - customer requested date time for mcc install of update cycle
- auto
Update stringVersion - Auto update or fast update version
- bgp
Configuration BgpConfiguration - Cache node resource Bgp configuration.
- cache
Node string[]Properties Details Issues List - issues list to return the issues as part of the additional cache node properties
- drive
Configuration CacheNode Drive Configuration[] - Cache node resource drive configurations.
- is
Proxy string | ProxyRequired Required - Cache node resource requires a proxy
- optional
Property1 string - Optional property #1 of Mcc response object
- optional
Property2 string - Optional property #2 of Mcc response object
- optional
Property3 string - Optional property #3 of Mcc response object
- optional
Property4 string - Optional property #4 of Mcc response object
- optional
Property5 string - Optional property #5 of Mcc response object
- os
Type string | OsType - Operating system of the cache node
- proxy
Url string - Cache node resource Mcc proxy Url
- proxy
Url ProxyConfiguration Url Configuration - proxyUrl configuration of the cache node
- update
Cycle string | CycleType Type - Update Cycle Type
- update
Info stringDetails - Update related information details
- update
Requested stringDate Time - customer requested date time for mcc install of update cycle
- auto_
update_ strversion - Auto update or fast update version
- bgp_
configuration BgpConfiguration - Cache node resource Bgp configuration.
- cache_
node_ Sequence[str]properties_ details_ issues_ list - issues list to return the issues as part of the additional cache node properties
- drive_
configuration Sequence[CacheNode Drive Configuration] - Cache node resource drive configurations.
- is_
proxy_ str | Proxyrequired Required - Cache node resource requires a proxy
- optional_
property1 str - Optional property #1 of Mcc response object
- optional_
property2 str - Optional property #2 of Mcc response object
- optional_
property3 str - Optional property #3 of Mcc response object
- optional_
property4 str - Optional property #4 of Mcc response object
- optional_
property5 str - Optional property #5 of Mcc response object
- os_
type str | OsType - Operating system of the cache node
- proxy_
url str - Cache node resource Mcc proxy Url
- proxy_
url_ Proxyconfiguration Url Configuration - proxyUrl configuration of the cache node
- update_
cycle_ str | Cycletype Type - Update Cycle Type
- update_
info_ strdetails - Update related information details
- update_
requested_ strdate_ time - customer requested date time for mcc install of update cycle
- auto
Update StringVersion - Auto update or fast update version
- bgp
Configuration Property Map - Cache node resource Bgp configuration.
- cache
Node List<String>Properties Details Issues List - issues list to return the issues as part of the additional cache node properties
- drive
Configuration List<Property Map> - Cache node resource drive configurations.
- is
Proxy String | "None" | "Required"Required - Cache node resource requires a proxy
- optional
Property1 String - Optional property #1 of Mcc response object
- optional
Property2 String - Optional property #2 of Mcc response object
- optional
Property3 String - Optional property #3 of Mcc response object
- optional
Property4 String - Optional property #4 of Mcc response object
- optional
Property5 String - Optional property #5 of Mcc response object
- os
Type String | "Windows" | "Linux" | "Eflow" - Operating system of the cache node
- proxy
Url String - Cache node resource Mcc proxy Url
- proxy
Url Property MapConfiguration - proxyUrl configuration of the cache node
- update
Cycle String | "Preview" | "Slow" | "Fast"Type - Update Cycle Type
- update
Info StringDetails - Update related information details
- update
Requested StringDate Time - customer requested date time for mcc install of update cycle
AdditionalCacheNodePropertiesResponse, AdditionalCacheNodePropertiesResponseArgs
- Aggregated
Status intCode - Cache node resource aggregated status code.
- Aggregated
Status stringDetails - Cache node resource aggregated status details.
- Aggregated
Status stringText - Cache node resource aggregated status text.
- Auto
Update stringApplied Version - Auto update version that is the applied to update on mcc cache node
- Auto
Update stringLast Applied Date Time - Auto update last applied date time of mcc install
- Auto
Update stringLast Applied Details - Auto Update status details from the backend after applying the new version details
- Auto
Update stringLast Applied State - Last applied auto update state for mcc install of auto update cycle
- Auto
Update stringLast Triggered Date Time - Auto update last triggered date time of mcc install
- Auto
Update stringNext Available Date Time - Auto update last applied date time of mcc install
- Auto
Update stringNext Available Version - Auto update version that is the Next available version to update on mcc cache node
- Cache
Node intState - Cache node resource state as integer.
- Cache
Node stringState Detailed Text - Cache node resource detailed state text.
- Cache
Node stringState Short Text - Cache node resource short state text.
- Is
Provisioned bool - Cache node resource flag indicating if cache node has been physically installed or provisioned on their physical lab.
- Product
Version string - Cache node resource Mcc product version.
- Auto
Update stringVersion - Auto update or fast update version
- Bgp
Configuration Pulumi.Azure Native. Connected Cache. Inputs. Bgp Configuration Response - Cache node resource Bgp configuration.
- Cache
Node List<string>Properties Details Issues List - issues list to return the issues as part of the additional cache node properties
- Drive
Configuration List<Pulumi.Azure Native. Connected Cache. Inputs. Cache Node Drive Configuration Response> - Cache node resource drive configurations.
- Is
Proxy stringRequired - Cache node resource requires a proxy
- Optional
Property1 string - Optional property #1 of Mcc response object
- Optional
Property2 string - Optional property #2 of Mcc response object
- Optional
Property3 string - Optional property #3 of Mcc response object
- Optional
Property4 string - Optional property #4 of Mcc response object
- Optional
Property5 string - Optional property #5 of Mcc response object
- Os
Type string - Operating system of the cache node
- Proxy
Url string - Cache node resource Mcc proxy Url
- Proxy
Url Pulumi.Configuration Azure Native. Connected Cache. Inputs. Proxy Url Configuration Response - proxyUrl configuration of the cache node
- Update
Cycle stringType - Update Cycle Type
- Update
Info stringDetails - Update related information details
- Update
Requested stringDate Time - customer requested date time for mcc install of update cycle
- Aggregated
Status intCode - Cache node resource aggregated status code.
- Aggregated
Status stringDetails - Cache node resource aggregated status details.
- Aggregated
Status stringText - Cache node resource aggregated status text.
- Auto
Update stringApplied Version - Auto update version that is the applied to update on mcc cache node
- Auto
Update stringLast Applied Date Time - Auto update last applied date time of mcc install
- Auto
Update stringLast Applied Details - Auto Update status details from the backend after applying the new version details
- Auto
Update stringLast Applied State - Last applied auto update state for mcc install of auto update cycle
- Auto
Update stringLast Triggered Date Time - Auto update last triggered date time of mcc install
- Auto
Update stringNext Available Date Time - Auto update last applied date time of mcc install
- Auto
Update stringNext Available Version - Auto update version that is the Next available version to update on mcc cache node
- Cache
Node intState - Cache node resource state as integer.
- Cache
Node stringState Detailed Text - Cache node resource detailed state text.
- Cache
Node stringState Short Text - Cache node resource short state text.
- Is
Provisioned bool - Cache node resource flag indicating if cache node has been physically installed or provisioned on their physical lab.
- Product
Version string - Cache node resource Mcc product version.
- Auto
Update stringVersion - Auto update or fast update version
- Bgp
Configuration BgpConfiguration Response - Cache node resource Bgp configuration.
- Cache
Node []stringProperties Details Issues List - issues list to return the issues as part of the additional cache node properties
- Drive
Configuration []CacheNode Drive Configuration Response - Cache node resource drive configurations.
- Is
Proxy stringRequired - Cache node resource requires a proxy
- Optional
Property1 string - Optional property #1 of Mcc response object
- Optional
Property2 string - Optional property #2 of Mcc response object
- Optional
Property3 string - Optional property #3 of Mcc response object
- Optional
Property4 string - Optional property #4 of Mcc response object
- Optional
Property5 string - Optional property #5 of Mcc response object
- Os
Type string - Operating system of the cache node
- Proxy
Url string - Cache node resource Mcc proxy Url
- Proxy
Url ProxyConfiguration Url Configuration Response - proxyUrl configuration of the cache node
- Update
Cycle stringType - Update Cycle Type
- Update
Info stringDetails - Update related information details
- Update
Requested stringDate Time - customer requested date time for mcc install of update cycle
- aggregated
Status IntegerCode - Cache node resource aggregated status code.
- aggregated
Status StringDetails - Cache node resource aggregated status details.
- aggregated
Status StringText - Cache node resource aggregated status text.
- auto
Update StringApplied Version - Auto update version that is the applied to update on mcc cache node
- auto
Update StringLast Applied Date Time - Auto update last applied date time of mcc install
- auto
Update StringLast Applied Details - Auto Update status details from the backend after applying the new version details
- auto
Update StringLast Applied State - Last applied auto update state for mcc install of auto update cycle
- auto
Update StringLast Triggered Date Time - Auto update last triggered date time of mcc install
- auto
Update StringNext Available Date Time - Auto update last applied date time of mcc install
- auto
Update StringNext Available Version - Auto update version that is the Next available version to update on mcc cache node
- cache
Node IntegerState - Cache node resource state as integer.
- cache
Node StringState Detailed Text - Cache node resource detailed state text.
- cache
Node StringState Short Text - Cache node resource short state text.
- is
Provisioned Boolean - Cache node resource flag indicating if cache node has been physically installed or provisioned on their physical lab.
- product
Version String - Cache node resource Mcc product version.
- auto
Update StringVersion - Auto update or fast update version
- bgp
Configuration BgpConfiguration Response - Cache node resource Bgp configuration.
- cache
Node List<String>Properties Details Issues List - issues list to return the issues as part of the additional cache node properties
- drive
Configuration List<CacheNode Drive Configuration Response> - Cache node resource drive configurations.
- is
Proxy StringRequired - Cache node resource requires a proxy
- optional
Property1 String - Optional property #1 of Mcc response object
- optional
Property2 String - Optional property #2 of Mcc response object
- optional
Property3 String - Optional property #3 of Mcc response object
- optional
Property4 String - Optional property #4 of Mcc response object
- optional
Property5 String - Optional property #5 of Mcc response object
- os
Type String - Operating system of the cache node
- proxy
Url String - Cache node resource Mcc proxy Url
- proxy
Url ProxyConfiguration Url Configuration Response - proxyUrl configuration of the cache node
- update
Cycle StringType - Update Cycle Type
- update
Info StringDetails - Update related information details
- update
Requested StringDate Time - customer requested date time for mcc install of update cycle
- aggregated
Status numberCode - Cache node resource aggregated status code.
- aggregated
Status stringDetails - Cache node resource aggregated status details.
- aggregated
Status stringText - Cache node resource aggregated status text.
- auto
Update stringApplied Version - Auto update version that is the applied to update on mcc cache node
- auto
Update stringLast Applied Date Time - Auto update last applied date time of mcc install
- auto
Update stringLast Applied Details - Auto Update status details from the backend after applying the new version details
- auto
Update stringLast Applied State - Last applied auto update state for mcc install of auto update cycle
- auto
Update stringLast Triggered Date Time - Auto update last triggered date time of mcc install
- auto
Update stringNext Available Date Time - Auto update last applied date time of mcc install
- auto
Update stringNext Available Version - Auto update version that is the Next available version to update on mcc cache node
- cache
Node numberState - Cache node resource state as integer.
- cache
Node stringState Detailed Text - Cache node resource detailed state text.
- cache
Node stringState Short Text - Cache node resource short state text.
- is
Provisioned boolean - Cache node resource flag indicating if cache node has been physically installed or provisioned on their physical lab.
- product
Version string - Cache node resource Mcc product version.
- auto
Update stringVersion - Auto update or fast update version
- bgp
Configuration BgpConfiguration Response - Cache node resource Bgp configuration.
- cache
Node string[]Properties Details Issues List - issues list to return the issues as part of the additional cache node properties
- drive
Configuration CacheNode Drive Configuration Response[] - Cache node resource drive configurations.
- is
Proxy stringRequired - Cache node resource requires a proxy
- optional
Property1 string - Optional property #1 of Mcc response object
- optional
Property2 string - Optional property #2 of Mcc response object
- optional
Property3 string - Optional property #3 of Mcc response object
- optional
Property4 string - Optional property #4 of Mcc response object
- optional
Property5 string - Optional property #5 of Mcc response object
- os
Type string - Operating system of the cache node
- proxy
Url string - Cache node resource Mcc proxy Url
- proxy
Url ProxyConfiguration Url Configuration Response - proxyUrl configuration of the cache node
- update
Cycle stringType - Update Cycle Type
- update
Info stringDetails - Update related information details
- update
Requested stringDate Time - customer requested date time for mcc install of update cycle
- aggregated_
status_ intcode - Cache node resource aggregated status code.
- aggregated_
status_ strdetails - Cache node resource aggregated status details.
- aggregated_
status_ strtext - Cache node resource aggregated status text.
- auto_
update_ strapplied_ version - Auto update version that is the applied to update on mcc cache node
- auto_
update_ strlast_ applied_ date_ time - Auto update last applied date time of mcc install
- auto_
update_ strlast_ applied_ details - Auto Update status details from the backend after applying the new version details
- auto_
update_ strlast_ applied_ state - Last applied auto update state for mcc install of auto update cycle
- auto_
update_ strlast_ triggered_ date_ time - Auto update last triggered date time of mcc install
- auto_
update_ strnext_ available_ date_ time - Auto update last applied date time of mcc install
- auto_
update_ strnext_ available_ version - Auto update version that is the Next available version to update on mcc cache node
- cache_
node_ intstate - Cache node resource state as integer.
- cache_
node_ strstate_ detailed_ text - Cache node resource detailed state text.
- cache_
node_ strstate_ short_ text - Cache node resource short state text.
- is_
provisioned bool - Cache node resource flag indicating if cache node has been physically installed or provisioned on their physical lab.
- product_
version str - Cache node resource Mcc product version.
- auto_
update_ strversion - Auto update or fast update version
- bgp_
configuration BgpConfiguration Response - Cache node resource Bgp configuration.
- cache_
node_ Sequence[str]properties_ details_ issues_ list - issues list to return the issues as part of the additional cache node properties
- drive_
configuration Sequence[CacheNode Drive Configuration Response] - Cache node resource drive configurations.
- is_
proxy_ strrequired - Cache node resource requires a proxy
- optional_
property1 str - Optional property #1 of Mcc response object
- optional_
property2 str - Optional property #2 of Mcc response object
- optional_
property3 str - Optional property #3 of Mcc response object
- optional_
property4 str - Optional property #4 of Mcc response object
- optional_
property5 str - Optional property #5 of Mcc response object
- os_
type str - Operating system of the cache node
- proxy_
url str - Cache node resource Mcc proxy Url
- proxy_
url_ Proxyconfiguration Url Configuration Response - proxyUrl configuration of the cache node
- update_
cycle_ strtype - Update Cycle Type
- update_
info_ strdetails - Update related information details
- update_
requested_ strdate_ time - customer requested date time for mcc install of update cycle
- aggregated
Status NumberCode - Cache node resource aggregated status code.
- aggregated
Status StringDetails - Cache node resource aggregated status details.
- aggregated
Status StringText - Cache node resource aggregated status text.
- auto
Update StringApplied Version - Auto update version that is the applied to update on mcc cache node
- auto
Update StringLast Applied Date Time - Auto update last applied date time of mcc install
- auto
Update StringLast Applied Details - Auto Update status details from the backend after applying the new version details
- auto
Update StringLast Applied State - Last applied auto update state for mcc install of auto update cycle
- auto
Update StringLast Triggered Date Time - Auto update last triggered date time of mcc install
- auto
Update StringNext Available Date Time - Auto update last applied date time of mcc install
- auto
Update StringNext Available Version - Auto update version that is the Next available version to update on mcc cache node
- cache
Node NumberState - Cache node resource state as integer.
- cache
Node StringState Detailed Text - Cache node resource detailed state text.
- cache
Node StringState Short Text - Cache node resource short state text.
- is
Provisioned Boolean - Cache node resource flag indicating if cache node has been physically installed or provisioned on their physical lab.
- product
Version String - Cache node resource Mcc product version.
- auto
Update StringVersion - Auto update or fast update version
- bgp
Configuration Property Map - Cache node resource Bgp configuration.
- cache
Node List<String>Properties Details Issues List - issues list to return the issues as part of the additional cache node properties
- drive
Configuration List<Property Map> - Cache node resource drive configurations.
- is
Proxy StringRequired - Cache node resource requires a proxy
- optional
Property1 String - Optional property #1 of Mcc response object
- optional
Property2 String - Optional property #2 of Mcc response object
- optional
Property3 String - Optional property #3 of Mcc response object
- optional
Property4 String - Optional property #4 of Mcc response object
- optional
Property5 String - Optional property #5 of Mcc response object
- os
Type String - Operating system of the cache node
- proxy
Url String - Cache node resource Mcc proxy Url
- proxy
Url Property MapConfiguration - proxyUrl configuration of the cache node
- update
Cycle StringType - Update Cycle Type
- update
Info StringDetails - Update related information details
- update
Requested StringDate Time - customer requested date time for mcc install of update cycle
AutoUpdateRingType, AutoUpdateRingTypeArgs
- Preview
- Previewcustomer selection of preview update install mcc on their physical vm
- Slow
- Slowcustomer selection of slow update to install mcc on their physical vm
- Fast
- Fastcustomer selection of fast / auto update to install mcc on their physical vm
- Auto
Update Ring Type Preview - Previewcustomer selection of preview update install mcc on their physical vm
- Auto
Update Ring Type Slow - Slowcustomer selection of slow update to install mcc on their physical vm
- Auto
Update Ring Type Fast - Fastcustomer selection of fast / auto update to install mcc on their physical vm
- Preview
- Previewcustomer selection of preview update install mcc on their physical vm
- Slow
- Slowcustomer selection of slow update to install mcc on their physical vm
- Fast
- Fastcustomer selection of fast / auto update to install mcc on their physical vm
- Preview
- Previewcustomer selection of preview update install mcc on their physical vm
- Slow
- Slowcustomer selection of slow update to install mcc on their physical vm
- Fast
- Fastcustomer selection of fast / auto update to install mcc on their physical vm
- PREVIEW
- Previewcustomer selection of preview update install mcc on their physical vm
- SLOW
- Slowcustomer selection of slow update to install mcc on their physical vm
- FAST
- Fastcustomer selection of fast / auto update to install mcc on their physical vm
- "Preview"
- Previewcustomer selection of preview update install mcc on their physical vm
- "Slow"
- Slowcustomer selection of slow update to install mcc on their physical vm
- "Fast"
- Fastcustomer selection of fast / auto update to install mcc on their physical vm
BgpConfiguration, BgpConfigurationArgs
- Asn
To stringIp Address Mapping - Asn to ip address mapping
- Asn
To stringIp Address Mapping - Asn to ip address mapping
- asn
To StringIp Address Mapping - Asn to ip address mapping
- asn
To stringIp Address Mapping - Asn to ip address mapping
- asn_
to_ strip_ address_ mapping - Asn to ip address mapping
- asn
To StringIp Address Mapping - Asn to ip address mapping
BgpConfigurationResponse, BgpConfigurationResponseArgs
- Asn
To stringIp Address Mapping - Asn to ip address mapping
- Asn
To stringIp Address Mapping - Asn to ip address mapping
- asn
To StringIp Address Mapping - Asn to ip address mapping
- asn
To stringIp Address Mapping - Asn to ip address mapping
- asn_
to_ strip_ address_ mapping - Asn to ip address mapping
- asn
To StringIp Address Mapping - Asn to ip address mapping
CacheNodeDriveConfiguration, CacheNodeDriveConfigurationArgs
- Cache
Number int - corresponding nginx cache number. Valid cache numbers are 1 - 20
- Nginx
Mapping string - full binding for corresponding nginx cache drive
- Physical
Path string - physical path location of the folder used for caching content
- Size
In intGb - physical size of the drive used for caching content
- Cache
Number int - corresponding nginx cache number. Valid cache numbers are 1 - 20
- Nginx
Mapping string - full binding for corresponding nginx cache drive
- Physical
Path string - physical path location of the folder used for caching content
- Size
In intGb - physical size of the drive used for caching content
- cache
Number Integer - corresponding nginx cache number. Valid cache numbers are 1 - 20
- nginx
Mapping String - full binding for corresponding nginx cache drive
- physical
Path String - physical path location of the folder used for caching content
- size
In IntegerGb - physical size of the drive used for caching content
- cache
Number number - corresponding nginx cache number. Valid cache numbers are 1 - 20
- nginx
Mapping string - full binding for corresponding nginx cache drive
- physical
Path string - physical path location of the folder used for caching content
- size
In numberGb - physical size of the drive used for caching content
- cache_
number int - corresponding nginx cache number. Valid cache numbers are 1 - 20
- nginx_
mapping str - full binding for corresponding nginx cache drive
- physical_
path str - physical path location of the folder used for caching content
- size_
in_ intgb - physical size of the drive used for caching content
- cache
Number Number - corresponding nginx cache number. Valid cache numbers are 1 - 20
- nginx
Mapping String - full binding for corresponding nginx cache drive
- physical
Path String - physical path location of the folder used for caching content
- size
In NumberGb - physical size of the drive used for caching content
CacheNodeDriveConfigurationResponse, CacheNodeDriveConfigurationResponseArgs
- Cache
Number int - corresponding nginx cache number. Valid cache numbers are 1 - 20
- Nginx
Mapping string - full binding for corresponding nginx cache drive
- Physical
Path string - physical path location of the folder used for caching content
- Size
In intGb - physical size of the drive used for caching content
- Cache
Number int - corresponding nginx cache number. Valid cache numbers are 1 - 20
- Nginx
Mapping string - full binding for corresponding nginx cache drive
- Physical
Path string - physical path location of the folder used for caching content
- Size
In intGb - physical size of the drive used for caching content
- cache
Number Integer - corresponding nginx cache number. Valid cache numbers are 1 - 20
- nginx
Mapping String - full binding for corresponding nginx cache drive
- physical
Path String - physical path location of the folder used for caching content
- size
In IntegerGb - physical size of the drive used for caching content
- cache
Number number - corresponding nginx cache number. Valid cache numbers are 1 - 20
- nginx
Mapping string - full binding for corresponding nginx cache drive
- physical
Path string - physical path location of the folder used for caching content
- size
In numberGb - physical size of the drive used for caching content
- cache_
number int - corresponding nginx cache number. Valid cache numbers are 1 - 20
- nginx_
mapping str - full binding for corresponding nginx cache drive
- physical_
path str - physical path location of the folder used for caching content
- size_
in_ intgb - physical size of the drive used for caching content
- cache
Number Number - corresponding nginx cache number. Valid cache numbers are 1 - 20
- nginx
Mapping String - full binding for corresponding nginx cache drive
- physical
Path String - physical path location of the folder used for caching content
- size
In NumberGb - physical size of the drive used for caching content
CacheNodeEntity, CacheNodeEntityArgs
- Auto
Update intRequested Day - Customer requested day of week for mcc install of auto update cycle
- Auto
Update stringRequested Time - Customer requested time of the day for mcc install of auto update cycle, should be hh:mm
- Auto
Update intRequested Week - Customer requested week of month for mcc install of auto update cycle
- Auto
Update string | Pulumi.Ring Type Azure Native. Connected Cache. Auto Update Ring Type - Auto Update Ring Type which is slow or fast etc.
- Cache
Node stringId - Cache node resource identifier of the cache node
- Cache
Node stringName - Cache node resource name.
- Cidr
Csv List<string> - Cache node resource comma separated values of Cidrs.
- Cidr
Selection intType - Cache node resource current Cidr range precedence selection type.
- Customer
Asn int - Cache node resource customer resource Asn (autonomous system number)
- Customer
Index string - Cache node resource customer index as string.
- Customer
Name string - Cache node resource customer resource name.
- Fully
Qualified stringDomain Name - FQDN(fully qualified domain name) value of the mcc cache node
- Fully
Qualified stringResource Id - Cache node resource Azure fully qualified resource Id.
- Ip
Address string - Cache node resource Ip address.
- Is
Enabled bool - Cache node resource flag for indicating if cache node is enabled.
- Is
Enterprise boolManaged - Cache node resource flag for determining if managed by enterprise as boolean.
- Max
Allowable intEgress In Mbps - Cache node resource maximum allowed egress in Mbps.
- Should
Migrate bool - Cache node resource flag for determining if customer will be migrated.
- Auto
Update intRequested Day - Customer requested day of week for mcc install of auto update cycle
- Auto
Update stringRequested Time - Customer requested time of the day for mcc install of auto update cycle, should be hh:mm
- Auto
Update intRequested Week - Customer requested week of month for mcc install of auto update cycle
- Auto
Update string | AutoRing Type Update Ring Type - Auto Update Ring Type which is slow or fast etc.
- Cache
Node stringId - Cache node resource identifier of the cache node
- Cache
Node stringName - Cache node resource name.
- Cidr
Csv []string - Cache node resource comma separated values of Cidrs.
- Cidr
Selection intType - Cache node resource current Cidr range precedence selection type.
- Customer
Asn int - Cache node resource customer resource Asn (autonomous system number)
- Customer
Index string - Cache node resource customer index as string.
- Customer
Name string - Cache node resource customer resource name.
- Fully
Qualified stringDomain Name - FQDN(fully qualified domain name) value of the mcc cache node
- Fully
Qualified stringResource Id - Cache node resource Azure fully qualified resource Id.
- Ip
Address string - Cache node resource Ip address.
- Is
Enabled bool - Cache node resource flag for indicating if cache node is enabled.
- Is
Enterprise boolManaged - Cache node resource flag for determining if managed by enterprise as boolean.
- Max
Allowable intEgress In Mbps - Cache node resource maximum allowed egress in Mbps.
- Should
Migrate bool - Cache node resource flag for determining if customer will be migrated.
- auto
Update IntegerRequested Day - Customer requested day of week for mcc install of auto update cycle
- auto
Update StringRequested Time - Customer requested time of the day for mcc install of auto update cycle, should be hh:mm
- auto
Update IntegerRequested Week - Customer requested week of month for mcc install of auto update cycle
- auto
Update String | AutoRing Type Update Ring Type - Auto Update Ring Type which is slow or fast etc.
- cache
Node StringId - Cache node resource identifier of the cache node
- cache
Node StringName - Cache node resource name.
- cidr
Csv List<String> - Cache node resource comma separated values of Cidrs.
- cidr
Selection IntegerType - Cache node resource current Cidr range precedence selection type.
- customer
Asn Integer - Cache node resource customer resource Asn (autonomous system number)
- customer
Index String - Cache node resource customer index as string.
- customer
Name String - Cache node resource customer resource name.
- fully
Qualified StringDomain Name - FQDN(fully qualified domain name) value of the mcc cache node
- fully
Qualified StringResource Id - Cache node resource Azure fully qualified resource Id.
- ip
Address String - Cache node resource Ip address.
- is
Enabled Boolean - Cache node resource flag for indicating if cache node is enabled.
- is
Enterprise BooleanManaged - Cache node resource flag for determining if managed by enterprise as boolean.
- max
Allowable IntegerEgress In Mbps - Cache node resource maximum allowed egress in Mbps.
- should
Migrate Boolean - Cache node resource flag for determining if customer will be migrated.
- auto
Update numberRequested Day - Customer requested day of week for mcc install of auto update cycle
- auto
Update stringRequested Time - Customer requested time of the day for mcc install of auto update cycle, should be hh:mm
- auto
Update numberRequested Week - Customer requested week of month for mcc install of auto update cycle
- auto
Update string | AutoRing Type Update Ring Type - Auto Update Ring Type which is slow or fast etc.
- cache
Node stringId - Cache node resource identifier of the cache node
- cache
Node stringName - Cache node resource name.
- cidr
Csv string[] - Cache node resource comma separated values of Cidrs.
- cidr
Selection numberType - Cache node resource current Cidr range precedence selection type.
- customer
Asn number - Cache node resource customer resource Asn (autonomous system number)
- customer
Index string - Cache node resource customer index as string.
- customer
Name string - Cache node resource customer resource name.
- fully
Qualified stringDomain Name - FQDN(fully qualified domain name) value of the mcc cache node
- fully
Qualified stringResource Id - Cache node resource Azure fully qualified resource Id.
- ip
Address string - Cache node resource Ip address.
- is
Enabled boolean - Cache node resource flag for indicating if cache node is enabled.
- is
Enterprise booleanManaged - Cache node resource flag for determining if managed by enterprise as boolean.
- max
Allowable numberEgress In Mbps - Cache node resource maximum allowed egress in Mbps.
- should
Migrate boolean - Cache node resource flag for determining if customer will be migrated.
- auto_
update_ intrequested_ day - Customer requested day of week for mcc install of auto update cycle
- auto_
update_ strrequested_ time - Customer requested time of the day for mcc install of auto update cycle, should be hh:mm
- auto_
update_ intrequested_ week - Customer requested week of month for mcc install of auto update cycle
- auto_
update_ str | Autoring_ type Update Ring Type - Auto Update Ring Type which is slow or fast etc.
- cache_
node_ strid - Cache node resource identifier of the cache node
- cache_
node_ strname - Cache node resource name.
- cidr_
csv Sequence[str] - Cache node resource comma separated values of Cidrs.
- cidr_
selection_ inttype - Cache node resource current Cidr range precedence selection type.
- customer_
asn int - Cache node resource customer resource Asn (autonomous system number)
- customer_
index str - Cache node resource customer index as string.
- customer_
name str - Cache node resource customer resource name.
- fully_
qualified_ strdomain_ name - FQDN(fully qualified domain name) value of the mcc cache node
- fully_
qualified_ strresource_ id - Cache node resource Azure fully qualified resource Id.
- ip_
address str - Cache node resource Ip address.
- is_
enabled bool - Cache node resource flag for indicating if cache node is enabled.
- is_
enterprise_ boolmanaged - Cache node resource flag for determining if managed by enterprise as boolean.
- max_
allowable_ integress_ in_ mbps - Cache node resource maximum allowed egress in Mbps.
- should_
migrate bool - Cache node resource flag for determining if customer will be migrated.
- auto
Update NumberRequested Day - Customer requested day of week for mcc install of auto update cycle
- auto
Update StringRequested Time - Customer requested time of the day for mcc install of auto update cycle, should be hh:mm
- auto
Update NumberRequested Week - Customer requested week of month for mcc install of auto update cycle
- auto
Update String | "Preview" | "Slow" | "Fast"Ring Type - Auto Update Ring Type which is slow or fast etc.
- cache
Node StringId - Cache node resource identifier of the cache node
- cache
Node StringName - Cache node resource name.
- cidr
Csv List<String> - Cache node resource comma separated values of Cidrs.
- cidr
Selection NumberType - Cache node resource current Cidr range precedence selection type.
- customer
Asn Number - Cache node resource customer resource Asn (autonomous system number)
- customer
Index String - Cache node resource customer index as string.
- customer
Name String - Cache node resource customer resource name.
- fully
Qualified StringDomain Name - FQDN(fully qualified domain name) value of the mcc cache node
- fully
Qualified StringResource Id - Cache node resource Azure fully qualified resource Id.
- ip
Address String - Cache node resource Ip address.
- is
Enabled Boolean - Cache node resource flag for indicating if cache node is enabled.
- is
Enterprise BooleanManaged - Cache node resource flag for determining if managed by enterprise as boolean.
- max
Allowable NumberEgress In Mbps - Cache node resource maximum allowed egress in Mbps.
- should
Migrate Boolean - Cache node resource flag for determining if customer will be migrated.
CacheNodeEntityResponse, CacheNodeEntityResponseArgs
- Address
Space int - Cache node resource total addressable space defined by the Cidr Csv block.
- Bgp
Address intSpace - Cache node resource total addressable space defined by Bgp and Cidr Csv blocks.
- Bgp
Cidr intBlocks Count - Cache node resource Bgp block count.
- Bgp
Cidr stringCsv Last Update Time - Cache node resource last Bgp Cidr Csv update timestamp
- Bgp
File intBytes Truncated - Cache node resource bytes truncated from Bgp output file.
- Bgp
Last stringReported Time - Cache node resource last Bgp report timestamp.
- Bgp
Number intOf Records - Cache node resource Bgp record count.
- Bgp
Number intOf Times Updated - Cache node resource Bgp update count.
- Bgp
Review stringFeedback - Cache node resource Bgp review feedback text.
- Bgp
Review stringState - Cache node resource Bgp review state string text.
- Bgp
Review stringState Text - Cache node resource Bgp review state string text in detail.
- Category string
- Cache node resource category.
- Cidr
Csv stringLast Update Time - Cache node resource last Cidr Csv update timestamp
- Client
Tenant stringId - Cache node resource customer resource client tenant Id of subscription.
- Configuration
State string - Cache node resource configuration state.
- Configuration
State stringText - Cache node resource configuration state text.
- Container
Configurations string - Cache node resource container configuration details.
- Container
Resync intTrigger - Cache node resource Mcc container configuration details re-sync trigger.
- Create
Async stringOperation Id - Cache node resource create async operation Id.
- Customer
Id string - Cache node resource customer resource GUID Id.
- Delete
Async stringOperation Id - Cache node resource deletion async operation Id.
- Image
Uri string - Cache node resource Mcc Container Id Uri.
- Is
Frozen bool - Cache node resource flag for indicating the cache node resource is frozen (not selectable, not editable in UI).
- Last
Sync stringWith Azure Timestamp - Cache node resource last sync timestamp.
- Last
Updated stringTimestamp - Cache node resource last backend updated timestamp.
- Max
Allowable doubleProbability - Cache node resource maximum allowed probability of egress.
- Release
Version int - Cache node resource release version.
- Review
Feedback string - Cache node resource review feedback text.
- Review
State int - Cache node resource review process state as integer
- Review
State stringText - Cache node resource review state text.
- Synch
With intAzure Attempts Count - Cache node resource attempts to sync with Azure.
- Worker
Connections int - Cache node resource Mcc container deployment worker connection count.
- Worker
Connections stringLast Updated Date Time - Cache node resource last updated Mcc container deployment worker connection count timestamp.
- XCid string
- Cache node resource Azure XCid.
- Auto
Update intRequested Day - Customer requested day of week for mcc install of auto update cycle
- Auto
Update stringRequested Time - Customer requested time of the day for mcc install of auto update cycle, should be hh:mm
- Auto
Update intRequested Week - Customer requested week of month for mcc install of auto update cycle
- Auto
Update stringRing Type - Auto Update Ring Type which is slow or fast etc.
- Cache
Node stringId - Cache node resource identifier of the cache node
- Cache
Node stringName - Cache node resource name.
- Cidr
Csv List<string> - Cache node resource comma separated values of Cidrs.
- Cidr
Selection intType - Cache node resource current Cidr range precedence selection type.
- Customer
Asn int - Cache node resource customer resource Asn (autonomous system number)
- Customer
Index string - Cache node resource customer index as string.
- Customer
Name string - Cache node resource customer resource name.
- Fully
Qualified stringDomain Name - FQDN(fully qualified domain name) value of the mcc cache node
- Fully
Qualified stringResource Id - Cache node resource Azure fully qualified resource Id.
- Ip
Address string - Cache node resource Ip address.
- Is
Enabled bool - Cache node resource flag for indicating if cache node is enabled.
- Is
Enterprise boolManaged - Cache node resource flag for determining if managed by enterprise as boolean.
- Max
Allowable intEgress In Mbps - Cache node resource maximum allowed egress in Mbps.
- Should
Migrate bool - Cache node resource flag for determining if customer will be migrated.
- Address
Space int - Cache node resource total addressable space defined by the Cidr Csv block.
- Bgp
Address intSpace - Cache node resource total addressable space defined by Bgp and Cidr Csv blocks.
- Bgp
Cidr intBlocks Count - Cache node resource Bgp block count.
- Bgp
Cidr stringCsv Last Update Time - Cache node resource last Bgp Cidr Csv update timestamp
- Bgp
File intBytes Truncated - Cache node resource bytes truncated from Bgp output file.
- Bgp
Last stringReported Time - Cache node resource last Bgp report timestamp.
- Bgp
Number intOf Records - Cache node resource Bgp record count.
- Bgp
Number intOf Times Updated - Cache node resource Bgp update count.
- Bgp
Review stringFeedback - Cache node resource Bgp review feedback text.
- Bgp
Review stringState - Cache node resource Bgp review state string text.
- Bgp
Review stringState Text - Cache node resource Bgp review state string text in detail.
- Category string
- Cache node resource category.
- Cidr
Csv stringLast Update Time - Cache node resource last Cidr Csv update timestamp
- Client
Tenant stringId - Cache node resource customer resource client tenant Id of subscription.
- Configuration
State string - Cache node resource configuration state.
- Configuration
State stringText - Cache node resource configuration state text.
- Container
Configurations string - Cache node resource container configuration details.
- Container
Resync intTrigger - Cache node resource Mcc container configuration details re-sync trigger.
- Create
Async stringOperation Id - Cache node resource create async operation Id.
- Customer
Id string - Cache node resource customer resource GUID Id.
- Delete
Async stringOperation Id - Cache node resource deletion async operation Id.
- Image
Uri string - Cache node resource Mcc Container Id Uri.
- Is
Frozen bool - Cache node resource flag for indicating the cache node resource is frozen (not selectable, not editable in UI).
- Last
Sync stringWith Azure Timestamp - Cache node resource last sync timestamp.
- Last
Updated stringTimestamp - Cache node resource last backend updated timestamp.
- Max
Allowable float64Probability - Cache node resource maximum allowed probability of egress.
- Release
Version int - Cache node resource release version.
- Review
Feedback string - Cache node resource review feedback text.
- Review
State int - Cache node resource review process state as integer
- Review
State stringText - Cache node resource review state text.
- Synch
With intAzure Attempts Count - Cache node resource attempts to sync with Azure.
- Worker
Connections int - Cache node resource Mcc container deployment worker connection count.
- Worker
Connections stringLast Updated Date Time - Cache node resource last updated Mcc container deployment worker connection count timestamp.
- XCid string
- Cache node resource Azure XCid.
- Auto
Update intRequested Day - Customer requested day of week for mcc install of auto update cycle
- Auto
Update stringRequested Time - Customer requested time of the day for mcc install of auto update cycle, should be hh:mm
- Auto
Update intRequested Week - Customer requested week of month for mcc install of auto update cycle
- Auto
Update stringRing Type - Auto Update Ring Type which is slow or fast etc.
- Cache
Node stringId - Cache node resource identifier of the cache node
- Cache
Node stringName - Cache node resource name.
- Cidr
Csv []string - Cache node resource comma separated values of Cidrs.
- Cidr
Selection intType - Cache node resource current Cidr range precedence selection type.
- Customer
Asn int - Cache node resource customer resource Asn (autonomous system number)
- Customer
Index string - Cache node resource customer index as string.
- Customer
Name string - Cache node resource customer resource name.
- Fully
Qualified stringDomain Name - FQDN(fully qualified domain name) value of the mcc cache node
- Fully
Qualified stringResource Id - Cache node resource Azure fully qualified resource Id.
- Ip
Address string - Cache node resource Ip address.
- Is
Enabled bool - Cache node resource flag for indicating if cache node is enabled.
- Is
Enterprise boolManaged - Cache node resource flag for determining if managed by enterprise as boolean.
- Max
Allowable intEgress In Mbps - Cache node resource maximum allowed egress in Mbps.
- Should
Migrate bool - Cache node resource flag for determining if customer will be migrated.
- address
Space Integer - Cache node resource total addressable space defined by the Cidr Csv block.
- bgp
Address IntegerSpace - Cache node resource total addressable space defined by Bgp and Cidr Csv blocks.
- bgp
Cidr IntegerBlocks Count - Cache node resource Bgp block count.
- bgp
Cidr StringCsv Last Update Time - Cache node resource last Bgp Cidr Csv update timestamp
- bgp
File IntegerBytes Truncated - Cache node resource bytes truncated from Bgp output file.
- bgp
Last StringReported Time - Cache node resource last Bgp report timestamp.
- bgp
Number IntegerOf Records - Cache node resource Bgp record count.
- bgp
Number IntegerOf Times Updated - Cache node resource Bgp update count.
- bgp
Review StringFeedback - Cache node resource Bgp review feedback text.
- bgp
Review StringState - Cache node resource Bgp review state string text.
- bgp
Review StringState Text - Cache node resource Bgp review state string text in detail.
- category String
- Cache node resource category.
- cidr
Csv StringLast Update Time - Cache node resource last Cidr Csv update timestamp
- client
Tenant StringId - Cache node resource customer resource client tenant Id of subscription.
- configuration
State String - Cache node resource configuration state.
- configuration
State StringText - Cache node resource configuration state text.
- container
Configurations String - Cache node resource container configuration details.
- container
Resync IntegerTrigger - Cache node resource Mcc container configuration details re-sync trigger.
- create
Async StringOperation Id - Cache node resource create async operation Id.
- customer
Id String - Cache node resource customer resource GUID Id.
- delete
Async StringOperation Id - Cache node resource deletion async operation Id.
- image
Uri String - Cache node resource Mcc Container Id Uri.
- is
Frozen Boolean - Cache node resource flag for indicating the cache node resource is frozen (not selectable, not editable in UI).
- last
Sync StringWith Azure Timestamp - Cache node resource last sync timestamp.
- last
Updated StringTimestamp - Cache node resource last backend updated timestamp.
- max
Allowable DoubleProbability - Cache node resource maximum allowed probability of egress.
- release
Version Integer - Cache node resource release version.
- review
Feedback String - Cache node resource review feedback text.
- review
State Integer - Cache node resource review process state as integer
- review
State StringText - Cache node resource review state text.
- synch
With IntegerAzure Attempts Count - Cache node resource attempts to sync with Azure.
- worker
Connections Integer - Cache node resource Mcc container deployment worker connection count.
- worker
Connections StringLast Updated Date Time - Cache node resource last updated Mcc container deployment worker connection count timestamp.
- x
Cid String - Cache node resource Azure XCid.
- auto
Update IntegerRequested Day - Customer requested day of week for mcc install of auto update cycle
- auto
Update StringRequested Time - Customer requested time of the day for mcc install of auto update cycle, should be hh:mm
- auto
Update IntegerRequested Week - Customer requested week of month for mcc install of auto update cycle
- auto
Update StringRing Type - Auto Update Ring Type which is slow or fast etc.
- cache
Node StringId - Cache node resource identifier of the cache node
- cache
Node StringName - Cache node resource name.
- cidr
Csv List<String> - Cache node resource comma separated values of Cidrs.
- cidr
Selection IntegerType - Cache node resource current Cidr range precedence selection type.
- customer
Asn Integer - Cache node resource customer resource Asn (autonomous system number)
- customer
Index String - Cache node resource customer index as string.
- customer
Name String - Cache node resource customer resource name.
- fully
Qualified StringDomain Name - FQDN(fully qualified domain name) value of the mcc cache node
- fully
Qualified StringResource Id - Cache node resource Azure fully qualified resource Id.
- ip
Address String - Cache node resource Ip address.
- is
Enabled Boolean - Cache node resource flag for indicating if cache node is enabled.
- is
Enterprise BooleanManaged - Cache node resource flag for determining if managed by enterprise as boolean.
- max
Allowable IntegerEgress In Mbps - Cache node resource maximum allowed egress in Mbps.
- should
Migrate Boolean - Cache node resource flag for determining if customer will be migrated.
- address
Space number - Cache node resource total addressable space defined by the Cidr Csv block.
- bgp
Address numberSpace - Cache node resource total addressable space defined by Bgp and Cidr Csv blocks.
- bgp
Cidr numberBlocks Count - Cache node resource Bgp block count.
- bgp
Cidr stringCsv Last Update Time - Cache node resource last Bgp Cidr Csv update timestamp
- bgp
File numberBytes Truncated - Cache node resource bytes truncated from Bgp output file.
- bgp
Last stringReported Time - Cache node resource last Bgp report timestamp.
- bgp
Number numberOf Records - Cache node resource Bgp record count.
- bgp
Number numberOf Times Updated - Cache node resource Bgp update count.
- bgp
Review stringFeedback - Cache node resource Bgp review feedback text.
- bgp
Review stringState - Cache node resource Bgp review state string text.
- bgp
Review stringState Text - Cache node resource Bgp review state string text in detail.
- category string
- Cache node resource category.
- cidr
Csv stringLast Update Time - Cache node resource last Cidr Csv update timestamp
- client
Tenant stringId - Cache node resource customer resource client tenant Id of subscription.
- configuration
State string - Cache node resource configuration state.
- configuration
State stringText - Cache node resource configuration state text.
- container
Configurations string - Cache node resource container configuration details.
- container
Resync numberTrigger - Cache node resource Mcc container configuration details re-sync trigger.
- create
Async stringOperation Id - Cache node resource create async operation Id.
- customer
Id string - Cache node resource customer resource GUID Id.
- delete
Async stringOperation Id - Cache node resource deletion async operation Id.
- image
Uri string - Cache node resource Mcc Container Id Uri.
- is
Frozen boolean - Cache node resource flag for indicating the cache node resource is frozen (not selectable, not editable in UI).
- last
Sync stringWith Azure Timestamp - Cache node resource last sync timestamp.
- last
Updated stringTimestamp - Cache node resource last backend updated timestamp.
- max
Allowable numberProbability - Cache node resource maximum allowed probability of egress.
- release
Version number - Cache node resource release version.
- review
Feedback string - Cache node resource review feedback text.
- review
State number - Cache node resource review process state as integer
- review
State stringText - Cache node resource review state text.
- synch
With numberAzure Attempts Count - Cache node resource attempts to sync with Azure.
- worker
Connections number - Cache node resource Mcc container deployment worker connection count.
- worker
Connections stringLast Updated Date Time - Cache node resource last updated Mcc container deployment worker connection count timestamp.
- x
Cid string - Cache node resource Azure XCid.
- auto
Update numberRequested Day - Customer requested day of week for mcc install of auto update cycle
- auto
Update stringRequested Time - Customer requested time of the day for mcc install of auto update cycle, should be hh:mm
- auto
Update numberRequested Week - Customer requested week of month for mcc install of auto update cycle
- auto
Update stringRing Type - Auto Update Ring Type which is slow or fast etc.
- cache
Node stringId - Cache node resource identifier of the cache node
- cache
Node stringName - Cache node resource name.
- cidr
Csv string[] - Cache node resource comma separated values of Cidrs.
- cidr
Selection numberType - Cache node resource current Cidr range precedence selection type.
- customer
Asn number - Cache node resource customer resource Asn (autonomous system number)
- customer
Index string - Cache node resource customer index as string.
- customer
Name string - Cache node resource customer resource name.
- fully
Qualified stringDomain Name - FQDN(fully qualified domain name) value of the mcc cache node
- fully
Qualified stringResource Id - Cache node resource Azure fully qualified resource Id.
- ip
Address string - Cache node resource Ip address.
- is
Enabled boolean - Cache node resource flag for indicating if cache node is enabled.
- is
Enterprise booleanManaged - Cache node resource flag for determining if managed by enterprise as boolean.
- max
Allowable numberEgress In Mbps - Cache node resource maximum allowed egress in Mbps.
- should
Migrate boolean - Cache node resource flag for determining if customer will be migrated.
- address_
space int - Cache node resource total addressable space defined by the Cidr Csv block.
- bgp_
address_ intspace - Cache node resource total addressable space defined by Bgp and Cidr Csv blocks.
- bgp_
cidr_ intblocks_ count - Cache node resource Bgp block count.
- bgp_
cidr_ strcsv_ last_ update_ time - Cache node resource last Bgp Cidr Csv update timestamp
- bgp_
file_ intbytes_ truncated - Cache node resource bytes truncated from Bgp output file.
- bgp_
last_ strreported_ time - Cache node resource last Bgp report timestamp.
- bgp_
number_ intof_ records - Cache node resource Bgp record count.
- bgp_
number_ intof_ times_ updated - Cache node resource Bgp update count.
- bgp_
review_ strfeedback - Cache node resource Bgp review feedback text.
- bgp_
review_ strstate - Cache node resource Bgp review state string text.
- bgp_
review_ strstate_ text - Cache node resource Bgp review state string text in detail.
- category str
- Cache node resource category.
- cidr_
csv_ strlast_ update_ time - Cache node resource last Cidr Csv update timestamp
- client_
tenant_ strid - Cache node resource customer resource client tenant Id of subscription.
- configuration_
state str - Cache node resource configuration state.
- configuration_
state_ strtext - Cache node resource configuration state text.
- container_
configurations str - Cache node resource container configuration details.
- container_
resync_ inttrigger - Cache node resource Mcc container configuration details re-sync trigger.
- create_
async_ stroperation_ id - Cache node resource create async operation Id.
- customer_
id str - Cache node resource customer resource GUID Id.
- delete_
async_ stroperation_ id - Cache node resource deletion async operation Id.
- image_
uri str - Cache node resource Mcc Container Id Uri.
- is_
frozen bool - Cache node resource flag for indicating the cache node resource is frozen (not selectable, not editable in UI).
- last_
sync_ strwith_ azure_ timestamp - Cache node resource last sync timestamp.
- last_
updated_ strtimestamp - Cache node resource last backend updated timestamp.
- max_
allowable_ floatprobability - Cache node resource maximum allowed probability of egress.
- release_
version int - Cache node resource release version.
- review_
feedback str - Cache node resource review feedback text.
- review_
state int - Cache node resource review process state as integer
- review_
state_ strtext - Cache node resource review state text.
- synch_
with_ intazure_ attempts_ count - Cache node resource attempts to sync with Azure.
- worker_
connections int - Cache node resource Mcc container deployment worker connection count.
- worker_
connections_ strlast_ updated_ date_ time - Cache node resource last updated Mcc container deployment worker connection count timestamp.
- x_
cid str - Cache node resource Azure XCid.
- auto_
update_ intrequested_ day - Customer requested day of week for mcc install of auto update cycle
- auto_
update_ strrequested_ time - Customer requested time of the day for mcc install of auto update cycle, should be hh:mm
- auto_
update_ intrequested_ week - Customer requested week of month for mcc install of auto update cycle
- auto_
update_ strring_ type - Auto Update Ring Type which is slow or fast etc.
- cache_
node_ strid - Cache node resource identifier of the cache node
- cache_
node_ strname - Cache node resource name.
- cidr_
csv Sequence[str] - Cache node resource comma separated values of Cidrs.
- cidr_
selection_ inttype - Cache node resource current Cidr range precedence selection type.
- customer_
asn int - Cache node resource customer resource Asn (autonomous system number)
- customer_
index str - Cache node resource customer index as string.
- customer_
name str - Cache node resource customer resource name.
- fully_
qualified_ strdomain_ name - FQDN(fully qualified domain name) value of the mcc cache node
- fully_
qualified_ strresource_ id - Cache node resource Azure fully qualified resource Id.
- ip_
address str - Cache node resource Ip address.
- is_
enabled bool - Cache node resource flag for indicating if cache node is enabled.
- is_
enterprise_ boolmanaged - Cache node resource flag for determining if managed by enterprise as boolean.
- max_
allowable_ integress_ in_ mbps - Cache node resource maximum allowed egress in Mbps.
- should_
migrate bool - Cache node resource flag for determining if customer will be migrated.
- address
Space Number - Cache node resource total addressable space defined by the Cidr Csv block.
- bgp
Address NumberSpace - Cache node resource total addressable space defined by Bgp and Cidr Csv blocks.
- bgp
Cidr NumberBlocks Count - Cache node resource Bgp block count.
- bgp
Cidr StringCsv Last Update Time - Cache node resource last Bgp Cidr Csv update timestamp
- bgp
File NumberBytes Truncated - Cache node resource bytes truncated from Bgp output file.
- bgp
Last StringReported Time - Cache node resource last Bgp report timestamp.
- bgp
Number NumberOf Records - Cache node resource Bgp record count.
- bgp
Number NumberOf Times Updated - Cache node resource Bgp update count.
- bgp
Review StringFeedback - Cache node resource Bgp review feedback text.
- bgp
Review StringState - Cache node resource Bgp review state string text.
- bgp
Review StringState Text - Cache node resource Bgp review state string text in detail.
- category String
- Cache node resource category.
- cidr
Csv StringLast Update Time - Cache node resource last Cidr Csv update timestamp
- client
Tenant StringId - Cache node resource customer resource client tenant Id of subscription.
- configuration
State String - Cache node resource configuration state.
- configuration
State StringText - Cache node resource configuration state text.
- container
Configurations String - Cache node resource container configuration details.
- container
Resync NumberTrigger - Cache node resource Mcc container configuration details re-sync trigger.
- create
Async StringOperation Id - Cache node resource create async operation Id.
- customer
Id String - Cache node resource customer resource GUID Id.
- delete
Async StringOperation Id - Cache node resource deletion async operation Id.
- image
Uri String - Cache node resource Mcc Container Id Uri.
- is
Frozen Boolean - Cache node resource flag for indicating the cache node resource is frozen (not selectable, not editable in UI).
- last
Sync StringWith Azure Timestamp - Cache node resource last sync timestamp.
- last
Updated StringTimestamp - Cache node resource last backend updated timestamp.
- max
Allowable NumberProbability - Cache node resource maximum allowed probability of egress.
- release
Version Number - Cache node resource release version.
- review
Feedback String - Cache node resource review feedback text.
- review
State Number - Cache node resource review process state as integer
- review
State StringText - Cache node resource review state text.
- synch
With NumberAzure Attempts Count - Cache node resource attempts to sync with Azure.
- worker
Connections Number - Cache node resource Mcc container deployment worker connection count.
- worker
Connections StringLast Updated Date Time - Cache node resource last updated Mcc container deployment worker connection count timestamp.
- x
Cid String - Cache node resource Azure XCid.
- auto
Update NumberRequested Day - Customer requested day of week for mcc install of auto update cycle
- auto
Update StringRequested Time - Customer requested time of the day for mcc install of auto update cycle, should be hh:mm
- auto
Update NumberRequested Week - Customer requested week of month for mcc install of auto update cycle
- auto
Update StringRing Type - Auto Update Ring Type which is slow or fast etc.
- cache
Node StringId - Cache node resource identifier of the cache node
- cache
Node StringName - Cache node resource name.
- cidr
Csv List<String> - Cache node resource comma separated values of Cidrs.
- cidr
Selection NumberType - Cache node resource current Cidr range precedence selection type.
- customer
Asn Number - Cache node resource customer resource Asn (autonomous system number)
- customer
Index String - Cache node resource customer index as string.
- customer
Name String - Cache node resource customer resource name.
- fully
Qualified StringDomain Name - FQDN(fully qualified domain name) value of the mcc cache node
- fully
Qualified StringResource Id - Cache node resource Azure fully qualified resource Id.
- ip
Address String - Cache node resource Ip address.
- is
Enabled Boolean - Cache node resource flag for indicating if cache node is enabled.
- is
Enterprise BooleanManaged - Cache node resource flag for determining if managed by enterprise as boolean.
- max
Allowable NumberEgress In Mbps - Cache node resource maximum allowed egress in Mbps.
- should
Migrate Boolean - Cache node resource flag for determining if customer will be migrated.
CacheNodeProperty, CacheNodePropertyArgs
- Additional
Cache Pulumi.Node Properties Azure Native. Connected Cache. Inputs. Additional Cache Node Properties - Mcc cache node resource additional properties.
- Cache
Node Pulumi.Azure Native. Connected Cache. Inputs. Cache Node Entity - Mcc cache node resource (cache node entity).
- Status
Code string - Mcc response status code.
- Status
Details string - Mcc response status details for retrieving response inner details.
- Status
Text string - Mcc response status text as string for retrieving status details.
- Additional
Cache AdditionalNode Properties Cache Node Properties - Mcc cache node resource additional properties.
- Cache
Node CacheNode Entity - Mcc cache node resource (cache node entity).
- Status
Code string - Mcc response status code.
- Status
Details string - Mcc response status details for retrieving response inner details.
- Status
Text string - Mcc response status text as string for retrieving status details.
- additional
Cache AdditionalNode Properties Cache Node Properties - Mcc cache node resource additional properties.
- cache
Node CacheNode Entity - Mcc cache node resource (cache node entity).
- status
Code String - Mcc response status code.
- status
Details String - Mcc response status details for retrieving response inner details.
- status
Text String - Mcc response status text as string for retrieving status details.
- additional
Cache AdditionalNode Properties Cache Node Properties - Mcc cache node resource additional properties.
- cache
Node CacheNode Entity - Mcc cache node resource (cache node entity).
- status
Code string - Mcc response status code.
- status
Details string - Mcc response status details for retrieving response inner details.
- status
Text string - Mcc response status text as string for retrieving status details.
- additional_
cache_ Additionalnode_ properties Cache Node Properties - Mcc cache node resource additional properties.
- cache_
node CacheNode Entity - Mcc cache node resource (cache node entity).
- status_
code str - Mcc response status code.
- status_
details str - Mcc response status details for retrieving response inner details.
- status_
text str - Mcc response status text as string for retrieving status details.
- additional
Cache Property MapNode Properties - Mcc cache node resource additional properties.
- cache
Node Property Map - Mcc cache node resource (cache node entity).
- status
Code String - Mcc response status code.
- status
Details String - Mcc response status details for retrieving response inner details.
- status
Text String - Mcc response status text as string for retrieving status details.
CacheNodePropertyResponse, CacheNodePropertyResponseArgs
- Provisioning
State string - The provisioned state of the resource
- Status string
- HTTP error status code.
- Additional
Cache Pulumi.Node Properties Azure Native. Connected Cache. Inputs. Additional Cache Node Properties Response - Mcc cache node resource additional properties.
- Cache
Node Pulumi.Azure Native. Connected Cache. Inputs. Cache Node Entity Response - Mcc cache node resource (cache node entity).
- Error
Pulumi.
Azure Native. Connected Cache. Inputs. Error Detail Response - Mcc response error details.
- Status
Code string - Mcc response status code.
- Status
Details string - Mcc response status details for retrieving response inner details.
- Status
Text string - Mcc response status text as string for retrieving status details.
- Provisioning
State string - The provisioned state of the resource
- Status string
- HTTP error status code.
- Additional
Cache AdditionalNode Properties Cache Node Properties Response - Mcc cache node resource additional properties.
- Cache
Node CacheNode Entity Response - Mcc cache node resource (cache node entity).
- Error
Error
Detail Response - Mcc response error details.
- Status
Code string - Mcc response status code.
- Status
Details string - Mcc response status details for retrieving response inner details.
- Status
Text string - Mcc response status text as string for retrieving status details.
- provisioning
State String - The provisioned state of the resource
- status String
- HTTP error status code.
- additional
Cache AdditionalNode Properties Cache Node Properties Response - Mcc cache node resource additional properties.
- cache
Node CacheNode Entity Response - Mcc cache node resource (cache node entity).
- error
Error
Detail Response - Mcc response error details.
- status
Code String - Mcc response status code.
- status
Details String - Mcc response status details for retrieving response inner details.
- status
Text String - Mcc response status text as string for retrieving status details.
- provisioning
State string - The provisioned state of the resource
- status string
- HTTP error status code.
- additional
Cache AdditionalNode Properties Cache Node Properties Response - Mcc cache node resource additional properties.
- cache
Node CacheNode Entity Response - Mcc cache node resource (cache node entity).
- error
Error
Detail Response - Mcc response error details.
- status
Code string - Mcc response status code.
- status
Details string - Mcc response status details for retrieving response inner details.
- status
Text string - Mcc response status text as string for retrieving status details.
- provisioning_
state str - The provisioned state of the resource
- status str
- HTTP error status code.
- additional_
cache_ Additionalnode_ properties Cache Node Properties Response - Mcc cache node resource additional properties.
- cache_
node CacheNode Entity Response - Mcc cache node resource (cache node entity).
- error
Error
Detail Response - Mcc response error details.
- status_
code str - Mcc response status code.
- status_
details str - Mcc response status details for retrieving response inner details.
- status_
text str - Mcc response status text as string for retrieving status details.
- provisioning
State String - The provisioned state of the resource
- status String
- HTTP error status code.
- additional
Cache Property MapNode Properties - Mcc cache node resource additional properties.
- cache
Node Property Map - Mcc cache node resource (cache node entity).
- error Property Map
- Mcc response error details.
- status
Code String - Mcc response status code.
- status
Details String - Mcc response status details for retrieving response inner details.
- status
Text String - Mcc response status text as string for retrieving status details.
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
- Cycle
Type Preview - Previewcustomer selection of preview update install mcc on their physical vm
- Cycle
Type Slow - Slowcustomer selection of slow update to install mcc on their physical vm
- Cycle
Type Fast - Fastcustomer selection of fast / auto update to install mcc on their physical vm
- Preview
- Previewcustomer selection of preview update install mcc on their physical vm
- Slow
- Slowcustomer selection of slow update to install mcc on their physical vm
- Fast
- Fastcustomer selection of fast / auto update to install mcc on their physical vm
- Preview
- Previewcustomer selection of preview update install mcc on their physical vm
- Slow
- Slowcustomer selection of slow update to install mcc on their physical vm
- Fast
- Fastcustomer selection of fast / auto update to install mcc on their physical vm
- PREVIEW
- Previewcustomer selection of preview update install mcc on their physical vm
- SLOW
- Slowcustomer selection of slow update to install mcc on their physical vm
- FAST
- Fastcustomer selection of fast / auto update to install mcc on their physical vm
- "Preview"
- Previewcustomer selection of preview update install mcc on their physical vm
- "Slow"
- Slowcustomer selection of slow update to install mcc on their physical vm
- "Fast"
- Fastcustomer selection of fast / auto update to install mcc on their physical vm
ErrorAdditionalInfoResponse, ErrorAdditionalInfoResponseArgs
ErrorDetailResponse, ErrorDetailResponseArgs
- Additional
Info List<Pulumi.Azure Native. Connected Cache. Inputs. Error Additional Info Response> - The error additional info.
- Code string
- The error code.
- Details
List<Pulumi.
Azure Native. Connected Cache. Inputs. Error Detail Response> - The error details.
- Message string
- The error message.
- Target string
- The error target.
- Additional
Info []ErrorAdditional Info Response - The error additional info.
- Code string
- The error code.
- Details
[]Error
Detail Response - The error details.
- Message string
- The error message.
- Target string
- The error target.
- additional
Info List<ErrorAdditional Info Response> - The error additional info.
- code String
- The error code.
- details
List<Error
Detail Response> - The error details.
- message String
- The error message.
- target String
- The error target.
- additional
Info ErrorAdditional Info Response[] - The error additional info.
- code string
- The error code.
- details
Error
Detail Response[] - The error details.
- message string
- The error message.
- target string
- The error target.
- additional_
info Sequence[ErrorAdditional Info Response] - The error additional info.
- code str
- The error code.
- details
Sequence[Error
Detail Response] - The error details.
- message str
- The error message.
- target str
- The error target.
- additional
Info List<Property Map> - The error additional info.
- code String
- The error code.
- details List<Property Map>
- The error details.
- message String
- The error message.
- target String
- The error target.
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
- Os
Type Windows - Windowscache node installs on windows operating system
- Os
Type Linux - Linuxcache node installs on Linux Operating system
- Os
Type Eflow - Eflowcache node installs on Azure Eflow
- Windows
- Windowscache node installs on windows operating system
- Linux
- Linuxcache node installs on Linux Operating system
- Eflow
- Eflowcache node installs on Azure Eflow
- Windows
- Windowscache node installs on windows operating system
- Linux
- Linuxcache node installs on Linux Operating system
- Eflow
- Eflowcache node installs on Azure Eflow
- WINDOWS
- Windowscache node installs on windows operating system
- LINUX
- Linuxcache node installs on Linux Operating system
- EFLOW
- Eflowcache node installs on Azure Eflow
- "Windows"
- Windowscache node installs on windows operating system
- "Linux"
- Linuxcache node installs on Linux Operating system
- "Eflow"
- Eflowcache node installs on Azure Eflow
ProxyRequired, ProxyRequiredArgs
- None
- NoneProxy is not required in setup
- Required
- Requiredproxy is required in setup
- Proxy
Required None - NoneProxy is not required in setup
- Proxy
Required Required - Requiredproxy is required in setup
- None
- NoneProxy is not required in setup
- Required
- Requiredproxy is required in setup
- None
- NoneProxy is not required in setup
- Required
- Requiredproxy is required in setup
- NONE
- NoneProxy is not required in setup
- REQUIRED
- Requiredproxy is required in setup
- "None"
- NoneProxy is not required in setup
- "Required"
- Requiredproxy is required in setup
ProxyUrlConfiguration, ProxyUrlConfigurationArgs
- Proxy
Url 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 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 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 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
- proxy
Url 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
- Proxy
Url 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 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 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 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
- proxy
Url 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
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified stringBy Type - The type of identity that last modified the resource.
- created_
at str - The timestamp of resource creation (UTC).
- created_
by str - The identity that created the resource.
- created_
by_ strtype - The type of identity that created the resource.
- last_
modified_ strat - The timestamp of resource last modification (UTC)
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ strby_ type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:connectedcache:IspCacheNodesOperation MccRPTest1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ConnectedCache/ispCustomers/{customerResourceName}/ispCacheNodes/{cacheNodeResourceName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0