IspCacheNodesOperationArgs

data class IspCacheNodesOperationArgs(val cacheNodeResourceName: Output<String>? = null, val customerResourceName: Output<String>? = null, val location: Output<String>? = null, val properties: Output<CacheNodePropertyArgs>? = null, val resourceGroupName: Output<String>? = null, val tags: Output<Map<String, String>>? = null) : ConvertibleToJava<IspCacheNodesOperationArgs>

Represents the high level Nodes needed to provision cache node resources Uses Azure REST API version 2023-05-01-preview. In version 2.x of the Azure Native provider, it used 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/v3"
"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

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}

Constructors

Link copied to clipboard
constructor(cacheNodeResourceName: Output<String>? = null, customerResourceName: Output<String>? = null, location: Output<String>? = null, properties: Output<CacheNodePropertyArgs>? = null, resourceGroupName: Output<String>? = null, tags: Output<Map<String, String>>? = null)

Properties

Link copied to clipboard
val cacheNodeResourceName: Output<String>? = null

Name of the ConnectedCache resource

Link copied to clipboard
val customerResourceName: Output<String>? = null

Name of the Customer resource

Link copied to clipboard
val location: Output<String>? = null

The geo-location where the resource lives

Link copied to clipboard
val properties: Output<CacheNodePropertyArgs>? = null

The resource-specific properties for this resource.

Link copied to clipboard
val resourceGroupName: Output<String>? = null

The name of the resource group. The name is case insensitive.

Link copied to clipboard
val tags: Output<Map<String, String>>? = null

Resource tags.

Functions

Link copied to clipboard
open override fun toJava(): IspCacheNodesOperationArgs