EnterpriseCustomerOperationArgs

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

ConnectedCache Resource. Represents the high level Nodes needed to provision CacheNode and customer resources used in private preview 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

EnterpriseCustomerOperations_CreateOrUpdate

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var enterpriseCustomerOperation = new AzureNative.ConnectedCache.EnterpriseCustomerOperation("enterpriseCustomerOperation", new()
{
CustomerResourceName = "l",
Location = "zdzhhkjyogrqxwihkifnmeyhwpujbr",
Properties = new AzureNative.ConnectedCache.Inputs.CacheNodeOldResponseArgs
{
StatusCode = "oldkroffqtkryqffpsi",
StatusDetails = "lhwvcz",
StatusText = "bs",
},
ResourceGroupName = "rgConnectedCache",
Tags =
{
{ "key4215", "zjbszvlzf" },
},
});
});
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.NewEnterpriseCustomerOperation(ctx, "enterpriseCustomerOperation", &connectedcache.EnterpriseCustomerOperationArgs{
CustomerResourceName: pulumi.String("l"),
Location: pulumi.String("zdzhhkjyogrqxwihkifnmeyhwpujbr"),
Properties: &connectedcache.CacheNodeOldResponseArgs{
StatusCode: pulumi.String("oldkroffqtkryqffpsi"),
StatusDetails: pulumi.String("lhwvcz"),
StatusText: pulumi.String("bs"),
},
ResourceGroupName: pulumi.String("rgConnectedCache"),
Tags: pulumi.StringMap{
"key4215": pulumi.String("zjbszvlzf"),
},
})
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.EnterpriseCustomerOperation;
import com.pulumi.azurenative.connectedcache.EnterpriseCustomerOperationArgs;
import com.pulumi.azurenative.connectedcache.inputs.CacheNodeOldResponseArgs;
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 enterpriseCustomerOperation = new EnterpriseCustomerOperation("enterpriseCustomerOperation", EnterpriseCustomerOperationArgs.builder()
.customerResourceName("l")
.location("zdzhhkjyogrqxwihkifnmeyhwpujbr")
.properties(CacheNodeOldResponseArgs.builder()
.statusCode("oldkroffqtkryqffpsi")
.statusDetails("lhwvcz")
.statusText("bs")
.build())
.resourceGroupName("rgConnectedCache")
.tags(Map.of("key4215", "zjbszvlzf"))
.build());
}
}

Import

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

$ pulumi import azure-native:connectedcache:EnterpriseCustomerOperation MCCTPTest2 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ConnectedCache/enterpriseCustomers/{customerResourceName}

Constructors

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

Properties

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

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(): EnterpriseCustomerOperationArgs