azure-native.hybridnetwork.ConfigurationGroupValue
Explore with Pulumi AI
Hybrid configuration group value resource. Azure REST API version: 2023-09-01.
Other available API versions: 2024-04-15.
Example Usage
Create or update configuration group value
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var configurationGroupValue = new AzureNative.HybridNetwork.ConfigurationGroupValue("configurationGroupValue", new()
    {
        ConfigurationGroupValueName = "testConfigurationGroupValue",
        Location = "eastus",
        Properties = new AzureNative.HybridNetwork.Inputs.ConfigurationValueWithoutSecretsArgs
        {
            ConfigurationGroupSchemaResourceReference = new AzureNative.HybridNetwork.Inputs.OpenDeploymentResourceReferenceArgs
            {
                Id = "/subscriptions/subid/resourcegroups/testRG/providers/microsoft.hybridnetwork/publishers/testPublisher/configurationGroupSchemas/testConfigurationGroupSchemaName",
                IdType = "Open",
            },
            ConfigurationType = "Open",
            ConfigurationValue = "{\"interconnect-groups\":{\"stripe-one\":{\"name\":\"Stripe one\",\"international-interconnects\":[\"france\",\"germany\"],\"domestic-interconnects\":[\"birmingham\",\"edinburgh\"]},\"stripe-two\":{\"name\":\"Stripe two\",\"international-interconnects\":[\"germany\",\"italy\"],\"domestic-interconnects\":[\"edinburgh\",\"london\"]}},\"interconnect-group-assignments\":{\"ssc-one\":{\"ssc\":\"SSC 1\",\"interconnects\":\"stripe-one\"},\"ssc-two\":{\"ssc\":\"SSC 2\",\"interconnects\":\"stripe-two\"}}}",
        },
        ResourceGroupName = "rg1",
    });
});
package main
import (
	hybridnetwork "github.com/pulumi/pulumi-azure-native-sdk/hybridnetwork/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := hybridnetwork.NewConfigurationGroupValue(ctx, "configurationGroupValue", &hybridnetwork.ConfigurationGroupValueArgs{
			ConfigurationGroupValueName: pulumi.String("testConfigurationGroupValue"),
			Location:                    pulumi.String("eastus"),
			Properties: &hybridnetwork.ConfigurationValueWithoutSecretsArgs{
				ConfigurationGroupSchemaResourceReference: hybridnetwork.OpenDeploymentResourceReference{
					Id:     "/subscriptions/subid/resourcegroups/testRG/providers/microsoft.hybridnetwork/publishers/testPublisher/configurationGroupSchemas/testConfigurationGroupSchemaName",
					IdType: "Open",
				},
				ConfigurationType:  pulumi.String("Open"),
				ConfigurationValue: pulumi.String("{\"interconnect-groups\":{\"stripe-one\":{\"name\":\"Stripe one\",\"international-interconnects\":[\"france\",\"germany\"],\"domestic-interconnects\":[\"birmingham\",\"edinburgh\"]},\"stripe-two\":{\"name\":\"Stripe two\",\"international-interconnects\":[\"germany\",\"italy\"],\"domestic-interconnects\":[\"edinburgh\",\"london\"]}},\"interconnect-group-assignments\":{\"ssc-one\":{\"ssc\":\"SSC 1\",\"interconnects\":\"stripe-one\"},\"ssc-two\":{\"ssc\":\"SSC 2\",\"interconnects\":\"stripe-two\"}}}"),
			},
			ResourceGroupName: pulumi.String("rg1"),
		})
		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.hybridnetwork.ConfigurationGroupValue;
import com.pulumi.azurenative.hybridnetwork.ConfigurationGroupValueArgs;
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 configurationGroupValue = new ConfigurationGroupValue("configurationGroupValue", ConfigurationGroupValueArgs.builder()
            .configurationGroupValueName("testConfigurationGroupValue")
            .location("eastus")
            .properties(ConfigurationValueWithSecretsArgs.builder()
                .configurationGroupSchemaResourceReference(OpenDeploymentResourceReferenceArgs.builder()
                    .id("/subscriptions/subid/resourcegroups/testRG/providers/microsoft.hybridnetwork/publishers/testPublisher/configurationGroupSchemas/testConfigurationGroupSchemaName")
                    .idType("Open")
                    .build())
                .configurationType("Open")
                .configurationValue("{\"interconnect-groups\":{\"stripe-one\":{\"name\":\"Stripe one\",\"international-interconnects\":[\"france\",\"germany\"],\"domestic-interconnects\":[\"birmingham\",\"edinburgh\"]},\"stripe-two\":{\"name\":\"Stripe two\",\"international-interconnects\":[\"germany\",\"italy\"],\"domestic-interconnects\":[\"edinburgh\",\"london\"]}},\"interconnect-group-assignments\":{\"ssc-one\":{\"ssc\":\"SSC 1\",\"interconnects\":\"stripe-one\"},\"ssc-two\":{\"ssc\":\"SSC 2\",\"interconnects\":\"stripe-two\"}}}")
                .build())
            .resourceGroupName("rg1")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const configurationGroupValue = new azure_native.hybridnetwork.ConfigurationGroupValue("configurationGroupValue", {
    configurationGroupValueName: "testConfigurationGroupValue",
    location: "eastus",
    properties: {
        configurationGroupSchemaResourceReference: {
            id: "/subscriptions/subid/resourcegroups/testRG/providers/microsoft.hybridnetwork/publishers/testPublisher/configurationGroupSchemas/testConfigurationGroupSchemaName",
            idType: "Open",
        },
        configurationType: "Open",
        configurationValue: "{\"interconnect-groups\":{\"stripe-one\":{\"name\":\"Stripe one\",\"international-interconnects\":[\"france\",\"germany\"],\"domestic-interconnects\":[\"birmingham\",\"edinburgh\"]},\"stripe-two\":{\"name\":\"Stripe two\",\"international-interconnects\":[\"germany\",\"italy\"],\"domestic-interconnects\":[\"edinburgh\",\"london\"]}},\"interconnect-group-assignments\":{\"ssc-one\":{\"ssc\":\"SSC 1\",\"interconnects\":\"stripe-one\"},\"ssc-two\":{\"ssc\":\"SSC 2\",\"interconnects\":\"stripe-two\"}}}",
    },
    resourceGroupName: "rg1",
});
import pulumi
import pulumi_azure_native as azure_native
configuration_group_value = azure_native.hybridnetwork.ConfigurationGroupValue("configurationGroupValue",
    configuration_group_value_name="testConfigurationGroupValue",
    location="eastus",
    properties={
        "configuration_group_schema_resource_reference": {
            "id": "/subscriptions/subid/resourcegroups/testRG/providers/microsoft.hybridnetwork/publishers/testPublisher/configurationGroupSchemas/testConfigurationGroupSchemaName",
            "id_type": "Open",
        },
        "configuration_type": "Open",
        "configuration_value": "{\"interconnect-groups\":{\"stripe-one\":{\"name\":\"Stripe one\",\"international-interconnects\":[\"france\",\"germany\"],\"domestic-interconnects\":[\"birmingham\",\"edinburgh\"]},\"stripe-two\":{\"name\":\"Stripe two\",\"international-interconnects\":[\"germany\",\"italy\"],\"domestic-interconnects\":[\"edinburgh\",\"london\"]}},\"interconnect-group-assignments\":{\"ssc-one\":{\"ssc\":\"SSC 1\",\"interconnects\":\"stripe-one\"},\"ssc-two\":{\"ssc\":\"SSC 2\",\"interconnects\":\"stripe-two\"}}}",
    },
    resource_group_name="rg1")
resources:
  configurationGroupValue:
    type: azure-native:hybridnetwork:ConfigurationGroupValue
    properties:
      configurationGroupValueName: testConfigurationGroupValue
      location: eastus
      properties:
        configurationGroupSchemaResourceReference:
          id: /subscriptions/subid/resourcegroups/testRG/providers/microsoft.hybridnetwork/publishers/testPublisher/configurationGroupSchemas/testConfigurationGroupSchemaName
          idType: Open
        configurationType: Open
        configurationValue: '{"interconnect-groups":{"stripe-one":{"name":"Stripe one","international-interconnects":["france","germany"],"domestic-interconnects":["birmingham","edinburgh"]},"stripe-two":{"name":"Stripe two","international-interconnects":["germany","italy"],"domestic-interconnects":["edinburgh","london"]}},"interconnect-group-assignments":{"ssc-one":{"ssc":"SSC 1","interconnects":"stripe-one"},"ssc-two":{"ssc":"SSC 2","interconnects":"stripe-two"}}}'
      resourceGroupName: rg1
Create or update configuration group value with secrets
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var configurationGroupValue = new AzureNative.HybridNetwork.ConfigurationGroupValue("configurationGroupValue", new()
    {
        ConfigurationGroupValueName = "testConfigurationGroupValue",
        Location = "eastus",
        Properties = new AzureNative.HybridNetwork.Inputs.ConfigurationValueWithSecretsArgs
        {
            ConfigurationGroupSchemaResourceReference = new AzureNative.HybridNetwork.Inputs.OpenDeploymentResourceReferenceArgs
            {
                Id = "/subscriptions/subid/resourcegroups/testRG/providers/microsoft.hybridnetwork/publishers/testPublisher/configurationGroupSchemas/testConfigurationGroupSchemaName",
                IdType = "Open",
            },
            ConfigurationType = "Secret",
            SecretConfigurationValue = "{\"interconnect-groups\":{\"stripe-one\":{\"name\":\"Stripe one\",\"international-interconnects\":[\"france\",\"germany\"],\"domestic-interconnects\":[\"birmingham\",\"edinburgh\"]},\"stripe-two\":{\"name\":\"Stripe two\",\"international-interconnects\":[\"germany\",\"italy\"],\"domestic-interconnects\":[\"edinburgh\",\"london\"]}},\"interconnect-group-assignments\":{\"ssc-one\":{\"ssc\":\"SSC 1\",\"interconnects\":\"stripe-one\"},\"ssc-two\":{\"ssc\":\"SSC 2\",\"interconnects\":\"stripe-two\"}}}",
        },
        ResourceGroupName = "rg1",
    });
});
package main
import (
	hybridnetwork "github.com/pulumi/pulumi-azure-native-sdk/hybridnetwork/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := hybridnetwork.NewConfigurationGroupValue(ctx, "configurationGroupValue", &hybridnetwork.ConfigurationGroupValueArgs{
			ConfigurationGroupValueName: pulumi.String("testConfigurationGroupValue"),
			Location:                    pulumi.String("eastus"),
			Properties: &hybridnetwork.ConfigurationValueWithSecretsArgs{
				ConfigurationGroupSchemaResourceReference: hybridnetwork.OpenDeploymentResourceReference{
					Id:     "/subscriptions/subid/resourcegroups/testRG/providers/microsoft.hybridnetwork/publishers/testPublisher/configurationGroupSchemas/testConfigurationGroupSchemaName",
					IdType: "Open",
				},
				ConfigurationType:        pulumi.String("Secret"),
				SecretConfigurationValue: pulumi.String("{\"interconnect-groups\":{\"stripe-one\":{\"name\":\"Stripe one\",\"international-interconnects\":[\"france\",\"germany\"],\"domestic-interconnects\":[\"birmingham\",\"edinburgh\"]},\"stripe-two\":{\"name\":\"Stripe two\",\"international-interconnects\":[\"germany\",\"italy\"],\"domestic-interconnects\":[\"edinburgh\",\"london\"]}},\"interconnect-group-assignments\":{\"ssc-one\":{\"ssc\":\"SSC 1\",\"interconnects\":\"stripe-one\"},\"ssc-two\":{\"ssc\":\"SSC 2\",\"interconnects\":\"stripe-two\"}}}"),
			},
			ResourceGroupName: pulumi.String("rg1"),
		})
		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.hybridnetwork.ConfigurationGroupValue;
import com.pulumi.azurenative.hybridnetwork.ConfigurationGroupValueArgs;
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 configurationGroupValue = new ConfigurationGroupValue("configurationGroupValue", ConfigurationGroupValueArgs.builder()
            .configurationGroupValueName("testConfigurationGroupValue")
            .location("eastus")
            .properties(ConfigurationValueWithSecretsArgs.builder()
                .configurationGroupSchemaResourceReference(OpenDeploymentResourceReferenceArgs.builder()
                    .id("/subscriptions/subid/resourcegroups/testRG/providers/microsoft.hybridnetwork/publishers/testPublisher/configurationGroupSchemas/testConfigurationGroupSchemaName")
                    .idType("Open")
                    .build())
                .configurationType("Secret")
                .secretConfigurationValue("{\"interconnect-groups\":{\"stripe-one\":{\"name\":\"Stripe one\",\"international-interconnects\":[\"france\",\"germany\"],\"domestic-interconnects\":[\"birmingham\",\"edinburgh\"]},\"stripe-two\":{\"name\":\"Stripe two\",\"international-interconnects\":[\"germany\",\"italy\"],\"domestic-interconnects\":[\"edinburgh\",\"london\"]}},\"interconnect-group-assignments\":{\"ssc-one\":{\"ssc\":\"SSC 1\",\"interconnects\":\"stripe-one\"},\"ssc-two\":{\"ssc\":\"SSC 2\",\"interconnects\":\"stripe-two\"}}}")
                .build())
            .resourceGroupName("rg1")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const configurationGroupValue = new azure_native.hybridnetwork.ConfigurationGroupValue("configurationGroupValue", {
    configurationGroupValueName: "testConfigurationGroupValue",
    location: "eastus",
    properties: {
        configurationGroupSchemaResourceReference: {
            id: "/subscriptions/subid/resourcegroups/testRG/providers/microsoft.hybridnetwork/publishers/testPublisher/configurationGroupSchemas/testConfigurationGroupSchemaName",
            idType: "Open",
        },
        configurationType: "Secret",
        secretConfigurationValue: "{\"interconnect-groups\":{\"stripe-one\":{\"name\":\"Stripe one\",\"international-interconnects\":[\"france\",\"germany\"],\"domestic-interconnects\":[\"birmingham\",\"edinburgh\"]},\"stripe-two\":{\"name\":\"Stripe two\",\"international-interconnects\":[\"germany\",\"italy\"],\"domestic-interconnects\":[\"edinburgh\",\"london\"]}},\"interconnect-group-assignments\":{\"ssc-one\":{\"ssc\":\"SSC 1\",\"interconnects\":\"stripe-one\"},\"ssc-two\":{\"ssc\":\"SSC 2\",\"interconnects\":\"stripe-two\"}}}",
    },
    resourceGroupName: "rg1",
});
import pulumi
import pulumi_azure_native as azure_native
configuration_group_value = azure_native.hybridnetwork.ConfigurationGroupValue("configurationGroupValue",
    configuration_group_value_name="testConfigurationGroupValue",
    location="eastus",
    properties={
        "configuration_group_schema_resource_reference": {
            "id": "/subscriptions/subid/resourcegroups/testRG/providers/microsoft.hybridnetwork/publishers/testPublisher/configurationGroupSchemas/testConfigurationGroupSchemaName",
            "id_type": "Open",
        },
        "configuration_type": "Secret",
        "secret_configuration_value": "{\"interconnect-groups\":{\"stripe-one\":{\"name\":\"Stripe one\",\"international-interconnects\":[\"france\",\"germany\"],\"domestic-interconnects\":[\"birmingham\",\"edinburgh\"]},\"stripe-two\":{\"name\":\"Stripe two\",\"international-interconnects\":[\"germany\",\"italy\"],\"domestic-interconnects\":[\"edinburgh\",\"london\"]}},\"interconnect-group-assignments\":{\"ssc-one\":{\"ssc\":\"SSC 1\",\"interconnects\":\"stripe-one\"},\"ssc-two\":{\"ssc\":\"SSC 2\",\"interconnects\":\"stripe-two\"}}}",
    },
    resource_group_name="rg1")
resources:
  configurationGroupValue:
    type: azure-native:hybridnetwork:ConfigurationGroupValue
    properties:
      configurationGroupValueName: testConfigurationGroupValue
      location: eastus
      properties:
        configurationGroupSchemaResourceReference:
          id: /subscriptions/subid/resourcegroups/testRG/providers/microsoft.hybridnetwork/publishers/testPublisher/configurationGroupSchemas/testConfigurationGroupSchemaName
          idType: Open
        configurationType: Secret
        secretConfigurationValue: '{"interconnect-groups":{"stripe-one":{"name":"Stripe one","international-interconnects":["france","germany"],"domestic-interconnects":["birmingham","edinburgh"]},"stripe-two":{"name":"Stripe two","international-interconnects":["germany","italy"],"domestic-interconnects":["edinburgh","london"]}},"interconnect-group-assignments":{"ssc-one":{"ssc":"SSC 1","interconnects":"stripe-one"},"ssc-two":{"ssc":"SSC 2","interconnects":"stripe-two"}}}'
      resourceGroupName: rg1
Create or update first party configuration group value
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var configurationGroupValue = new AzureNative.HybridNetwork.ConfigurationGroupValue("configurationGroupValue", new()
    {
        ConfigurationGroupValueName = "testConfigurationGroupValue",
        Location = "eastus",
        Properties = new AzureNative.HybridNetwork.Inputs.ConfigurationValueWithoutSecretsArgs
        {
            ConfigurationGroupSchemaResourceReference = new AzureNative.HybridNetwork.Inputs.SecretDeploymentResourceReferenceArgs
            {
                Id = "/subscriptions/subid/resourcegroups/testRG/providers/microsoft.hybridnetwork/publishers/testPublisher/configurationGroupSchemas/testConfigurationGroupSchemaName",
                IdType = "Secret",
            },
            ConfigurationType = "Open",
            ConfigurationValue = "{\"interconnect-groups\":{\"stripe-one\":{\"name\":\"Stripe one\",\"international-interconnects\":[\"france\",\"germany\"],\"domestic-interconnects\":[\"birmingham\",\"edinburgh\"]},\"stripe-two\":{\"name\":\"Stripe two\",\"international-interconnects\":[\"germany\",\"italy\"],\"domestic-interconnects\":[\"edinburgh\",\"london\"]}},\"interconnect-group-assignments\":{\"ssc-one\":{\"ssc\":\"SSC 1\",\"interconnects\":\"stripe-one\"},\"ssc-two\":{\"ssc\":\"SSC 2\",\"interconnects\":\"stripe-two\"}}}",
        },
        ResourceGroupName = "rg1",
    });
});
package main
import (
	hybridnetwork "github.com/pulumi/pulumi-azure-native-sdk/hybridnetwork/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := hybridnetwork.NewConfigurationGroupValue(ctx, "configurationGroupValue", &hybridnetwork.ConfigurationGroupValueArgs{
			ConfigurationGroupValueName: pulumi.String("testConfigurationGroupValue"),
			Location:                    pulumi.String("eastus"),
			Properties: &hybridnetwork.ConfigurationValueWithoutSecretsArgs{
				ConfigurationGroupSchemaResourceReference: hybridnetwork.SecretDeploymentResourceReference{
					Id:     "/subscriptions/subid/resourcegroups/testRG/providers/microsoft.hybridnetwork/publishers/testPublisher/configurationGroupSchemas/testConfigurationGroupSchemaName",
					IdType: "Secret",
				},
				ConfigurationType:  pulumi.String("Open"),
				ConfigurationValue: pulumi.String("{\"interconnect-groups\":{\"stripe-one\":{\"name\":\"Stripe one\",\"international-interconnects\":[\"france\",\"germany\"],\"domestic-interconnects\":[\"birmingham\",\"edinburgh\"]},\"stripe-two\":{\"name\":\"Stripe two\",\"international-interconnects\":[\"germany\",\"italy\"],\"domestic-interconnects\":[\"edinburgh\",\"london\"]}},\"interconnect-group-assignments\":{\"ssc-one\":{\"ssc\":\"SSC 1\",\"interconnects\":\"stripe-one\"},\"ssc-two\":{\"ssc\":\"SSC 2\",\"interconnects\":\"stripe-two\"}}}"),
			},
			ResourceGroupName: pulumi.String("rg1"),
		})
		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.hybridnetwork.ConfigurationGroupValue;
import com.pulumi.azurenative.hybridnetwork.ConfigurationGroupValueArgs;
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 configurationGroupValue = new ConfigurationGroupValue("configurationGroupValue", ConfigurationGroupValueArgs.builder()
            .configurationGroupValueName("testConfigurationGroupValue")
            .location("eastus")
            .properties(ConfigurationValueWithSecretsArgs.builder()
                .configurationGroupSchemaResourceReference(SecretDeploymentResourceReferenceArgs.builder()
                    .id("/subscriptions/subid/resourcegroups/testRG/providers/microsoft.hybridnetwork/publishers/testPublisher/configurationGroupSchemas/testConfigurationGroupSchemaName")
                    .idType("Secret")
                    .build())
                .configurationType("Open")
                .configurationValue("{\"interconnect-groups\":{\"stripe-one\":{\"name\":\"Stripe one\",\"international-interconnects\":[\"france\",\"germany\"],\"domestic-interconnects\":[\"birmingham\",\"edinburgh\"]},\"stripe-two\":{\"name\":\"Stripe two\",\"international-interconnects\":[\"germany\",\"italy\"],\"domestic-interconnects\":[\"edinburgh\",\"london\"]}},\"interconnect-group-assignments\":{\"ssc-one\":{\"ssc\":\"SSC 1\",\"interconnects\":\"stripe-one\"},\"ssc-two\":{\"ssc\":\"SSC 2\",\"interconnects\":\"stripe-two\"}}}")
                .build())
            .resourceGroupName("rg1")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const configurationGroupValue = new azure_native.hybridnetwork.ConfigurationGroupValue("configurationGroupValue", {
    configurationGroupValueName: "testConfigurationGroupValue",
    location: "eastus",
    properties: {
        configurationGroupSchemaResourceReference: {
            id: "/subscriptions/subid/resourcegroups/testRG/providers/microsoft.hybridnetwork/publishers/testPublisher/configurationGroupSchemas/testConfigurationGroupSchemaName",
            idType: "Secret",
        },
        configurationType: "Open",
        configurationValue: "{\"interconnect-groups\":{\"stripe-one\":{\"name\":\"Stripe one\",\"international-interconnects\":[\"france\",\"germany\"],\"domestic-interconnects\":[\"birmingham\",\"edinburgh\"]},\"stripe-two\":{\"name\":\"Stripe two\",\"international-interconnects\":[\"germany\",\"italy\"],\"domestic-interconnects\":[\"edinburgh\",\"london\"]}},\"interconnect-group-assignments\":{\"ssc-one\":{\"ssc\":\"SSC 1\",\"interconnects\":\"stripe-one\"},\"ssc-two\":{\"ssc\":\"SSC 2\",\"interconnects\":\"stripe-two\"}}}",
    },
    resourceGroupName: "rg1",
});
import pulumi
import pulumi_azure_native as azure_native
configuration_group_value = azure_native.hybridnetwork.ConfigurationGroupValue("configurationGroupValue",
    configuration_group_value_name="testConfigurationGroupValue",
    location="eastus",
    properties={
        "configuration_group_schema_resource_reference": {
            "id": "/subscriptions/subid/resourcegroups/testRG/providers/microsoft.hybridnetwork/publishers/testPublisher/configurationGroupSchemas/testConfigurationGroupSchemaName",
            "id_type": "Secret",
        },
        "configuration_type": "Open",
        "configuration_value": "{\"interconnect-groups\":{\"stripe-one\":{\"name\":\"Stripe one\",\"international-interconnects\":[\"france\",\"germany\"],\"domestic-interconnects\":[\"birmingham\",\"edinburgh\"]},\"stripe-two\":{\"name\":\"Stripe two\",\"international-interconnects\":[\"germany\",\"italy\"],\"domestic-interconnects\":[\"edinburgh\",\"london\"]}},\"interconnect-group-assignments\":{\"ssc-one\":{\"ssc\":\"SSC 1\",\"interconnects\":\"stripe-one\"},\"ssc-two\":{\"ssc\":\"SSC 2\",\"interconnects\":\"stripe-two\"}}}",
    },
    resource_group_name="rg1")
resources:
  configurationGroupValue:
    type: azure-native:hybridnetwork:ConfigurationGroupValue
    properties:
      configurationGroupValueName: testConfigurationGroupValue
      location: eastus
      properties:
        configurationGroupSchemaResourceReference:
          id: /subscriptions/subid/resourcegroups/testRG/providers/microsoft.hybridnetwork/publishers/testPublisher/configurationGroupSchemas/testConfigurationGroupSchemaName
          idType: Secret
        configurationType: Open
        configurationValue: '{"interconnect-groups":{"stripe-one":{"name":"Stripe one","international-interconnects":["france","germany"],"domestic-interconnects":["birmingham","edinburgh"]},"stripe-two":{"name":"Stripe two","international-interconnects":["germany","italy"],"domestic-interconnects":["edinburgh","london"]}},"interconnect-group-assignments":{"ssc-one":{"ssc":"SSC 1","interconnects":"stripe-one"},"ssc-two":{"ssc":"SSC 2","interconnects":"stripe-two"}}}'
      resourceGroupName: rg1
Create ConfigurationGroupValue Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ConfigurationGroupValue(name: string, args: ConfigurationGroupValueArgs, opts?: CustomResourceOptions);@overload
def ConfigurationGroupValue(resource_name: str,
                            args: ConfigurationGroupValueArgs,
                            opts: Optional[ResourceOptions] = None)
@overload
def ConfigurationGroupValue(resource_name: str,
                            opts: Optional[ResourceOptions] = None,
                            resource_group_name: Optional[str] = None,
                            configuration_group_value_name: Optional[str] = None,
                            location: Optional[str] = None,
                            properties: Optional[Union[ConfigurationValueWithSecretsArgs, ConfigurationValueWithoutSecretsArgs]] = None,
                            tags: Optional[Mapping[str, str]] = None)func NewConfigurationGroupValue(ctx *Context, name string, args ConfigurationGroupValueArgs, opts ...ResourceOption) (*ConfigurationGroupValue, error)public ConfigurationGroupValue(string name, ConfigurationGroupValueArgs args, CustomResourceOptions? opts = null)
public ConfigurationGroupValue(String name, ConfigurationGroupValueArgs args)
public ConfigurationGroupValue(String name, ConfigurationGroupValueArgs args, CustomResourceOptions options)
type: azure-native:hybridnetwork:ConfigurationGroupValue
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 ConfigurationGroupValueArgs
- 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 ConfigurationGroupValueArgs
- 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 ConfigurationGroupValueArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ConfigurationGroupValueArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ConfigurationGroupValueArgs
- 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 configurationGroupValueResource = new AzureNative.HybridNetwork.ConfigurationGroupValue("configurationGroupValueResource", new()
{
    ResourceGroupName = "string",
    ConfigurationGroupValueName = "string",
    Location = "string",
    Properties = new AzureNative.HybridNetwork.Inputs.ConfigurationValueWithSecretsArgs
    {
        ConfigurationType = "Secret",
        ConfigurationGroupSchemaResourceReference = new AzureNative.HybridNetwork.Inputs.OpenDeploymentResourceReferenceArgs
        {
            IdType = "Open",
            Id = "string",
        },
        SecretConfigurationValue = "string",
    },
    Tags = 
    {
        { "string", "string" },
    },
});
example, err := hybridnetwork.NewConfigurationGroupValue(ctx, "configurationGroupValueResource", &hybridnetwork.ConfigurationGroupValueArgs{
	ResourceGroupName:           pulumi.String("string"),
	ConfigurationGroupValueName: pulumi.String("string"),
	Location:                    pulumi.String("string"),
	Properties: &hybridnetwork.ConfigurationValueWithSecretsArgs{
		ConfigurationType: pulumi.String("Secret"),
		ConfigurationGroupSchemaResourceReference: hybridnetwork.OpenDeploymentResourceReference{
			IdType: "Open",
			Id:     "string",
		},
		SecretConfigurationValue: pulumi.String("string"),
	},
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
var configurationGroupValueResource = new ConfigurationGroupValue("configurationGroupValueResource", ConfigurationGroupValueArgs.builder()
    .resourceGroupName("string")
    .configurationGroupValueName("string")
    .location("string")
    .properties(ConfigurationValueWithSecretsArgs.builder()
        .configurationType("Secret")
        .configurationGroupSchemaResourceReference(OpenDeploymentResourceReferenceArgs.builder()
            .idType("Open")
            .id("string")
            .build())
        .secretConfigurationValue("string")
        .build())
    .tags(Map.of("string", "string"))
    .build());
configuration_group_value_resource = azure_native.hybridnetwork.ConfigurationGroupValue("configurationGroupValueResource",
    resource_group_name="string",
    configuration_group_value_name="string",
    location="string",
    properties={
        "configuration_type": "Secret",
        "configuration_group_schema_resource_reference": {
            "id_type": "Open",
            "id": "string",
        },
        "secret_configuration_value": "string",
    },
    tags={
        "string": "string",
    })
const configurationGroupValueResource = new azure_native.hybridnetwork.ConfigurationGroupValue("configurationGroupValueResource", {
    resourceGroupName: "string",
    configurationGroupValueName: "string",
    location: "string",
    properties: {
        configurationType: "Secret",
        configurationGroupSchemaResourceReference: {
            idType: "Open",
            id: "string",
        },
        secretConfigurationValue: "string",
    },
    tags: {
        string: "string",
    },
});
type: azure-native:hybridnetwork:ConfigurationGroupValue
properties:
    configurationGroupValueName: string
    location: string
    properties:
        configurationGroupSchemaResourceReference:
            id: string
            idType: Open
        configurationType: Secret
        secretConfigurationValue: string
    resourceGroupName: string
    tags:
        string: string
ConfigurationGroupValue 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 ConfigurationGroupValue resource accepts the following input properties:
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- ConfigurationGroup stringValue Name 
- The name of the configuration group value.
- Location string
- The geo-location where the resource lives
- Properties
Pulumi.Azure | Pulumi.Native. Hybrid Network. Inputs. Configuration Value With Secrets Azure Native. Hybrid Network. Inputs. Configuration Value Without Secrets 
- Hybrid configuration group value properties.
- Dictionary<string, string>
- Resource tags.
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- ConfigurationGroup stringValue Name 
- The name of the configuration group value.
- Location string
- The geo-location where the resource lives
- Properties
ConfigurationValue | ConfigurationWith Secrets Args Value Without Secrets Args 
- Hybrid configuration group value properties.
- map[string]string
- Resource tags.
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- configurationGroup StringValue Name 
- The name of the configuration group value.
- location String
- The geo-location where the resource lives
- properties
ConfigurationValue | ConfigurationWith Secrets Value Without Secrets 
- Hybrid configuration group value properties.
- Map<String,String>
- Resource tags.
- resourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- configurationGroup stringValue Name 
- The name of the configuration group value.
- location string
- The geo-location where the resource lives
- properties
ConfigurationValue | ConfigurationWith Secrets Value Without Secrets 
- Hybrid configuration group value properties.
- {[key: string]: string}
- Resource tags.
- resource_group_ strname 
- The name of the resource group. The name is case insensitive.
- configuration_group_ strvalue_ name 
- The name of the configuration group value.
- location str
- The geo-location where the resource lives
- properties
ConfigurationValue | ConfigurationWith Secrets Args Value Without Secrets Args 
- Hybrid configuration group value properties.
- Mapping[str, str]
- Resource tags.
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- configurationGroup StringValue Name 
- The name of the configuration group value.
- location String
- The geo-location where the resource lives
- properties Property Map | Property Map
- Hybrid configuration group value properties.
- Map<String>
- Resource tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the ConfigurationGroupValue resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- SystemData Pulumi.Azure Native. Hybrid Network. Outputs. System Data Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- SystemData SystemData Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- systemData SystemData Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the resource
- systemData SystemData Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- The name of the resource
- system_data SystemData Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type str
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- systemData Property Map
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
Supporting Types
ConfigurationValueWithSecrets, ConfigurationValueWithSecretsArgs        
- ConfigurationGroup Pulumi.Schema Resource Reference Azure | Pulumi.Native. Hybrid Network. Inputs. Open Deployment Resource Reference Azure Native. Hybrid Network. Inputs. Secret Deployment Resource Reference 
- The configuration group schema resource reference.
- SecretConfiguration stringValue 
- Name and value pairs that define the configuration value secrets. It can be a well formed escaped JSON string.
- ConfigurationGroup OpenSchema Resource Reference Deployment | SecretResource Reference Deployment Resource Reference 
- The configuration group schema resource reference.
- SecretConfiguration stringValue 
- Name and value pairs that define the configuration value secrets. It can be a well formed escaped JSON string.
- configurationGroup OpenSchema Resource Reference Deployment | SecretResource Reference Deployment Resource Reference 
- The configuration group schema resource reference.
- secretConfiguration StringValue 
- Name and value pairs that define the configuration value secrets. It can be a well formed escaped JSON string.
- configurationGroup OpenSchema Resource Reference Deployment | SecretResource Reference Deployment Resource Reference 
- The configuration group schema resource reference.
- secretConfiguration stringValue 
- Name and value pairs that define the configuration value secrets. It can be a well formed escaped JSON string.
- configuration_group_ Openschema_ resource_ reference Deployment | SecretResource Reference Deployment Resource Reference 
- The configuration group schema resource reference.
- secret_configuration_ strvalue 
- Name and value pairs that define the configuration value secrets. It can be a well formed escaped JSON string.
- configurationGroup Property Map | Property MapSchema Resource Reference 
- The configuration group schema resource reference.
- secretConfiguration StringValue 
- Name and value pairs that define the configuration value secrets. It can be a well formed escaped JSON string.
ConfigurationValueWithSecretsResponse, ConfigurationValueWithSecretsResponseArgs          
- ConfigurationGroup stringSchema Name 
- The configuration group schema name.
- ConfigurationGroup stringSchema Offering Location 
- The location of the configuration group schema offering.
- ProvisioningState string
- The provisioning state of the site resource.
- PublisherName string
- The publisher name for the configuration group schema.
- PublisherScope string
- The scope of the publisher.
- ConfigurationGroup Pulumi.Schema Resource Reference Azure | Pulumi.Native. Hybrid Network. Inputs. Open Deployment Resource Reference Response Azure Native. Hybrid Network. Inputs. Secret Deployment Resource Reference Response 
- The configuration group schema resource reference.
- ConfigurationGroup stringSchema Name 
- The configuration group schema name.
- ConfigurationGroup stringSchema Offering Location 
- The location of the configuration group schema offering.
- ProvisioningState string
- The provisioning state of the site resource.
- PublisherName string
- The publisher name for the configuration group schema.
- PublisherScope string
- The scope of the publisher.
- ConfigurationGroup OpenSchema Resource Reference Deployment | SecretResource Reference Response Deployment Resource Reference Response 
- The configuration group schema resource reference.
- configurationGroup StringSchema Name 
- The configuration group schema name.
- configurationGroup StringSchema Offering Location 
- The location of the configuration group schema offering.
- provisioningState String
- The provisioning state of the site resource.
- publisherName String
- The publisher name for the configuration group schema.
- publisherScope String
- The scope of the publisher.
- configurationGroup OpenSchema Resource Reference Deployment | SecretResource Reference Response Deployment Resource Reference Response 
- The configuration group schema resource reference.
- configurationGroup stringSchema Name 
- The configuration group schema name.
- configurationGroup stringSchema Offering Location 
- The location of the configuration group schema offering.
- provisioningState string
- The provisioning state of the site resource.
- publisherName string
- The publisher name for the configuration group schema.
- publisherScope string
- The scope of the publisher.
- configurationGroup OpenSchema Resource Reference Deployment | SecretResource Reference Response Deployment Resource Reference Response 
- The configuration group schema resource reference.
- configuration_group_ strschema_ name 
- The configuration group schema name.
- configuration_group_ strschema_ offering_ location 
- The location of the configuration group schema offering.
- provisioning_state str
- The provisioning state of the site resource.
- publisher_name str
- The publisher name for the configuration group schema.
- publisher_scope str
- The scope of the publisher.
- configuration_group_ Openschema_ resource_ reference Deployment | SecretResource Reference Response Deployment Resource Reference Response 
- The configuration group schema resource reference.
- configurationGroup StringSchema Name 
- The configuration group schema name.
- configurationGroup StringSchema Offering Location 
- The location of the configuration group schema offering.
- provisioningState String
- The provisioning state of the site resource.
- publisherName String
- The publisher name for the configuration group schema.
- publisherScope String
- The scope of the publisher.
- configurationGroup Property Map | Property MapSchema Resource Reference 
- The configuration group schema resource reference.
ConfigurationValueWithoutSecrets, ConfigurationValueWithoutSecretsArgs        
- ConfigurationGroup Pulumi.Schema Resource Reference Azure | Pulumi.Native. Hybrid Network. Inputs. Open Deployment Resource Reference Azure Native. Hybrid Network. Inputs. Secret Deployment Resource Reference 
- The configuration group schema resource reference.
- ConfigurationValue string
- Name and value pairs that define the configuration value. It can be a well formed escaped JSON string.
- ConfigurationGroup OpenSchema Resource Reference Deployment | SecretResource Reference Deployment Resource Reference 
- The configuration group schema resource reference.
- ConfigurationValue string
- Name and value pairs that define the configuration value. It can be a well formed escaped JSON string.
- configurationGroup OpenSchema Resource Reference Deployment | SecretResource Reference Deployment Resource Reference 
- The configuration group schema resource reference.
- configurationValue String
- Name and value pairs that define the configuration value. It can be a well formed escaped JSON string.
- configurationGroup OpenSchema Resource Reference Deployment | SecretResource Reference Deployment Resource Reference 
- The configuration group schema resource reference.
- configurationValue string
- Name and value pairs that define the configuration value. It can be a well formed escaped JSON string.
- configuration_group_ Openschema_ resource_ reference Deployment | SecretResource Reference Deployment Resource Reference 
- The configuration group schema resource reference.
- configuration_value str
- Name and value pairs that define the configuration value. It can be a well formed escaped JSON string.
- configurationGroup Property Map | Property MapSchema Resource Reference 
- The configuration group schema resource reference.
- configurationValue String
- Name and value pairs that define the configuration value. It can be a well formed escaped JSON string.
ConfigurationValueWithoutSecretsResponse, ConfigurationValueWithoutSecretsResponseArgs          
- ConfigurationGroup stringSchema Name 
- The configuration group schema name.
- ConfigurationGroup stringSchema Offering Location 
- The location of the configuration group schema offering.
- ProvisioningState string
- The provisioning state of the site resource.
- PublisherName string
- The publisher name for the configuration group schema.
- PublisherScope string
- The scope of the publisher.
- ConfigurationGroup Pulumi.Schema Resource Reference Azure | Pulumi.Native. Hybrid Network. Inputs. Open Deployment Resource Reference Response Azure Native. Hybrid Network. Inputs. Secret Deployment Resource Reference Response 
- The configuration group schema resource reference.
- ConfigurationValue string
- Name and value pairs that define the configuration value. It can be a well formed escaped JSON string.
- ConfigurationGroup stringSchema Name 
- The configuration group schema name.
- ConfigurationGroup stringSchema Offering Location 
- The location of the configuration group schema offering.
- ProvisioningState string
- The provisioning state of the site resource.
- PublisherName string
- The publisher name for the configuration group schema.
- PublisherScope string
- The scope of the publisher.
- ConfigurationGroup OpenSchema Resource Reference Deployment | SecretResource Reference Response Deployment Resource Reference Response 
- The configuration group schema resource reference.
- ConfigurationValue string
- Name and value pairs that define the configuration value. It can be a well formed escaped JSON string.
- configurationGroup StringSchema Name 
- The configuration group schema name.
- configurationGroup StringSchema Offering Location 
- The location of the configuration group schema offering.
- provisioningState String
- The provisioning state of the site resource.
- publisherName String
- The publisher name for the configuration group schema.
- publisherScope String
- The scope of the publisher.
- configurationGroup OpenSchema Resource Reference Deployment | SecretResource Reference Response Deployment Resource Reference Response 
- The configuration group schema resource reference.
- configurationValue String
- Name and value pairs that define the configuration value. It can be a well formed escaped JSON string.
- configurationGroup stringSchema Name 
- The configuration group schema name.
- configurationGroup stringSchema Offering Location 
- The location of the configuration group schema offering.
- provisioningState string
- The provisioning state of the site resource.
- publisherName string
- The publisher name for the configuration group schema.
- publisherScope string
- The scope of the publisher.
- configurationGroup OpenSchema Resource Reference Deployment | SecretResource Reference Response Deployment Resource Reference Response 
- The configuration group schema resource reference.
- configurationValue string
- Name and value pairs that define the configuration value. It can be a well formed escaped JSON string.
- configuration_group_ strschema_ name 
- The configuration group schema name.
- configuration_group_ strschema_ offering_ location 
- The location of the configuration group schema offering.
- provisioning_state str
- The provisioning state of the site resource.
- publisher_name str
- The publisher name for the configuration group schema.
- publisher_scope str
- The scope of the publisher.
- configuration_group_ Openschema_ resource_ reference Deployment | SecretResource Reference Response Deployment Resource Reference Response 
- The configuration group schema resource reference.
- configuration_value str
- Name and value pairs that define the configuration value. It can be a well formed escaped JSON string.
- configurationGroup StringSchema Name 
- The configuration group schema name.
- configurationGroup StringSchema Offering Location 
- The location of the configuration group schema offering.
- provisioningState String
- The provisioning state of the site resource.
- publisherName String
- The publisher name for the configuration group schema.
- publisherScope String
- The scope of the publisher.
- configurationGroup Property Map | Property MapSchema Resource Reference 
- The configuration group schema resource reference.
- configurationValue String
- Name and value pairs that define the configuration value. It can be a well formed escaped JSON string.
OpenDeploymentResourceReference, OpenDeploymentResourceReferenceArgs        
- Id string
- Resource ID.
- Id string
- Resource ID.
- id String
- Resource ID.
- id string
- Resource ID.
- id str
- Resource ID.
- id String
- Resource ID.
OpenDeploymentResourceReferenceResponse, OpenDeploymentResourceReferenceResponseArgs          
- Id string
- Resource ID.
- Id string
- Resource ID.
- id String
- Resource ID.
- id string
- Resource ID.
- id str
- Resource ID.
- id String
- Resource ID.
SecretDeploymentResourceReference, SecretDeploymentResourceReferenceArgs        
- Id string
- Resource ID.
- Id string
- Resource ID.
- id String
- Resource ID.
- id string
- Resource ID.
- id str
- Resource ID.
- id String
- Resource ID.
SecretDeploymentResourceReferenceResponse, SecretDeploymentResourceReferenceResponseArgs          
SystemDataResponse, SystemDataResponseArgs      
- CreatedAt string
- The timestamp of resource creation (UTC).
- CreatedBy string
- The identity that created the resource.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- The type of identity that last modified the resource.
- CreatedAt string
- The timestamp of resource creation (UTC).
- CreatedBy string
- The identity that created the resource.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- The type of identity that last modified the resource.
- createdAt String
- The timestamp of resource creation (UTC).
- createdBy String
- The identity that created the resource.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- The type of identity that last modified the resource.
- createdAt string
- The timestamp of resource creation (UTC).
- createdBy string
- The identity that created the resource.
- createdBy stringType 
- The type of identity that created the resource.
- lastModified stringAt 
- The timestamp of resource last modification (UTC)
- lastModified stringBy 
- The identity that last modified the resource.
- lastModified stringBy Type 
- The type of identity that last modified the resource.
- created_at str
- The timestamp of resource creation (UTC).
- created_by str
- The identity that created the resource.
- created_by_ strtype 
- The type of identity that created the resource.
- last_modified_ strat 
- The timestamp of resource last modification (UTC)
- last_modified_ strby 
- The identity that last modified the resource.
- last_modified_ strby_ type 
- The type of identity that last modified the resource.
- createdAt String
- The timestamp of resource creation (UTC).
- createdBy String
- The identity that created the resource.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- The type of identity that last modified the resource.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:hybridnetwork:ConfigurationGroupValue testConfigurationGroupValue /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HybridNetwork/configurationGroupValues/{configurationGroupValueName} 
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0