1. Packages
  2. Azure Native
  3. API Docs
  4. hybridnetwork
  5. ConfigurationGroupValue
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.38.0 published on Monday, Apr 22, 2024 by Pulumi

azure-native.hybridnetwork.ConfigurationGroupValue

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.38.0 published on Monday, Apr 22, 2024 by Pulumi

    Hybrid configuration group value resource. Azure REST API version: 2023-09-01.

    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 (
    	"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.ConfigurationValueWithoutSecrets{
    				ConfigurationGroupSchemaResourceReference: hybridnetwork.OpenDeploymentResourceReference{
    					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: 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 pulumi
    import pulumi_azure_native as azure_native
    
    configuration_group_value = azure_native.hybridnetwork.ConfigurationGroupValue("configurationGroupValue",
        configuration_group_value_name="testConfigurationGroupValue",
        location="eastus",
        properties=azure_native.hybridnetwork.ConfigurationValueWithoutSecretsArgs(
            configuration_group_schema_resource_reference=azure_native.hybridnetwork.OpenDeploymentResourceReferenceArgs(
                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")
    
    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",
    });
    
    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 (
    	"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.ConfigurationValueWithSecrets{
    				ConfigurationGroupSchemaResourceReference: hybridnetwork.OpenDeploymentResourceReference{
    					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: 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 pulumi
    import pulumi_azure_native as azure_native
    
    configuration_group_value = azure_native.hybridnetwork.ConfigurationGroupValue("configurationGroupValue",
        configuration_group_value_name="testConfigurationGroupValue",
        location="eastus",
        properties=azure_native.hybridnetwork.ConfigurationValueWithSecretsArgs(
            configuration_group_schema_resource_reference=azure_native.hybridnetwork.OpenDeploymentResourceReferenceArgs(
                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")
    
    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",
    });
    
    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 (
    	"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.ConfigurationValueWithoutSecrets{
    				ConfigurationGroupSchemaResourceReference: hybridnetwork.SecretDeploymentResourceReference{
    					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: 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 pulumi
    import pulumi_azure_native as azure_native
    
    configuration_group_value = azure_native.hybridnetwork.ConfigurationGroupValue("configurationGroupValue",
        configuration_group_value_name="testConfigurationGroupValue",
        location="eastus",
        properties=azure_native.hybridnetwork.ConfigurationValueWithoutSecretsArgs(
            configuration_group_schema_resource_reference=azure_native.hybridnetwork.SecretDeploymentResourceReferenceArgs(
                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")
    
    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",
    });
    
    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.

    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.ConfigurationValueWithSecrets{
    ConfigurationType: "Secret",
    ConfigurationGroupSchemaResourceReference: hybridnetwork.OpenDeploymentResourceReference{
    IdType: "Open",
    Id: "string",
    },
    SecretConfigurationValue: "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=azure_native.hybridnetwork.ConfigurationValueWithSecretsArgs(
            configuration_type="Secret",
            configuration_group_schema_resource_reference=azure_native.hybridnetwork.OpenDeploymentResourceReferenceArgs(
                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

    The ConfigurationGroupValue resource accepts the following input properties:

    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    ConfigurationGroupValueName string
    The name of the configuration group value.
    Location string
    The geo-location where the resource lives
    Properties Pulumi.AzureNative.HybridNetwork.Inputs.ConfigurationValueWithSecrets | Pulumi.AzureNative.HybridNetwork.Inputs.ConfigurationValueWithoutSecrets
    Hybrid configuration group value properties.
    Tags Dictionary<string, string>
    Resource tags.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    ConfigurationGroupValueName string
    The name of the configuration group value.
    Location string
    The geo-location where the resource lives
    Properties ConfigurationValueWithSecretsArgs | ConfigurationValueWithoutSecretsArgs
    Hybrid configuration group value properties.
    Tags map[string]string
    Resource tags.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    configurationGroupValueName String
    The name of the configuration group value.
    location String
    The geo-location where the resource lives
    properties ConfigurationValueWithSecrets | ConfigurationValueWithoutSecrets
    Hybrid configuration group value properties.
    tags Map<String,String>
    Resource tags.
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    configurationGroupValueName string
    The name of the configuration group value.
    location string
    The geo-location where the resource lives
    properties ConfigurationValueWithSecrets | ConfigurationValueWithoutSecrets
    Hybrid configuration group value properties.
    tags {[key: string]: string}
    Resource tags.
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    configuration_group_value_name str
    The name of the configuration group value.
    location str
    The geo-location where the resource lives
    properties ConfigurationValueWithSecretsArgs | ConfigurationValueWithoutSecretsArgs
    Hybrid configuration group value properties.
    tags Mapping[str, str]
    Resource tags.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    configurationGroupValueName String
    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.
    tags 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.AzureNative.HybridNetwork.Outputs.SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    SystemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The name of the resource
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    The name of the resource
    system_data SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type str
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    systemData Property Map
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

    Supporting Types

    ConfigurationValueWithSecrets, ConfigurationValueWithSecretsArgs

    ConfigurationGroupSchemaResourceReference Pulumi.AzureNative.HybridNetwork.Inputs.OpenDeploymentResourceReference | Pulumi.AzureNative.HybridNetwork.Inputs.SecretDeploymentResourceReference
    The configuration group schema resource reference.
    SecretConfigurationValue string
    Name and value pairs that define the configuration value secrets. It can be a well formed escaped JSON string.
    ConfigurationGroupSchemaResourceReference OpenDeploymentResourceReference | SecretDeploymentResourceReference
    The configuration group schema resource reference.
    SecretConfigurationValue string
    Name and value pairs that define the configuration value secrets. It can be a well formed escaped JSON string.
    configurationGroupSchemaResourceReference OpenDeploymentResourceReference | SecretDeploymentResourceReference
    The configuration group schema resource reference.
    secretConfigurationValue String
    Name and value pairs that define the configuration value secrets. It can be a well formed escaped JSON string.
    configurationGroupSchemaResourceReference OpenDeploymentResourceReference | SecretDeploymentResourceReference
    The configuration group schema resource reference.
    secretConfigurationValue string
    Name and value pairs that define the configuration value secrets. It can be a well formed escaped JSON string.
    configuration_group_schema_resource_reference OpenDeploymentResourceReference | SecretDeploymentResourceReference
    The configuration group schema resource reference.
    secret_configuration_value str
    Name and value pairs that define the configuration value secrets. It can be a well formed escaped JSON string.
    configurationGroupSchemaResourceReference Property Map | Property Map
    The configuration group schema resource reference.
    secretConfigurationValue String
    Name and value pairs that define the configuration value secrets. It can be a well formed escaped JSON string.

    ConfigurationValueWithSecretsResponse, ConfigurationValueWithSecretsResponseArgs

    ConfigurationGroupSchemaName string
    The configuration group schema name.
    ConfigurationGroupSchemaOfferingLocation string
    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.
    ConfigurationGroupSchemaResourceReference Pulumi.AzureNative.HybridNetwork.Inputs.OpenDeploymentResourceReferenceResponse | Pulumi.AzureNative.HybridNetwork.Inputs.SecretDeploymentResourceReferenceResponse
    The configuration group schema resource reference.
    ConfigurationGroupSchemaName string
    The configuration group schema name.
    ConfigurationGroupSchemaOfferingLocation string
    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.
    ConfigurationGroupSchemaResourceReference OpenDeploymentResourceReferenceResponse | SecretDeploymentResourceReferenceResponse
    The configuration group schema resource reference.
    configurationGroupSchemaName String
    The configuration group schema name.
    configurationGroupSchemaOfferingLocation String
    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.
    configurationGroupSchemaResourceReference OpenDeploymentResourceReferenceResponse | SecretDeploymentResourceReferenceResponse
    The configuration group schema resource reference.
    configurationGroupSchemaName string
    The configuration group schema name.
    configurationGroupSchemaOfferingLocation string
    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.
    configurationGroupSchemaResourceReference OpenDeploymentResourceReferenceResponse | SecretDeploymentResourceReferenceResponse
    The configuration group schema resource reference.
    configuration_group_schema_name str
    The configuration group schema name.
    configuration_group_schema_offering_location str
    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_schema_resource_reference OpenDeploymentResourceReferenceResponse | SecretDeploymentResourceReferenceResponse
    The configuration group schema resource reference.
    configurationGroupSchemaName String
    The configuration group schema name.
    configurationGroupSchemaOfferingLocation String
    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.
    configurationGroupSchemaResourceReference Property Map | Property Map
    The configuration group schema resource reference.

    ConfigurationValueWithoutSecrets, ConfigurationValueWithoutSecretsArgs

    ConfigurationGroupSchemaResourceReference Pulumi.AzureNative.HybridNetwork.Inputs.OpenDeploymentResourceReference | Pulumi.AzureNative.HybridNetwork.Inputs.SecretDeploymentResourceReference
    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.
    ConfigurationGroupSchemaResourceReference OpenDeploymentResourceReference | SecretDeploymentResourceReference
    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.
    configurationGroupSchemaResourceReference OpenDeploymentResourceReference | SecretDeploymentResourceReference
    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.
    configurationGroupSchemaResourceReference OpenDeploymentResourceReference | SecretDeploymentResourceReference
    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_schema_resource_reference OpenDeploymentResourceReference | SecretDeploymentResourceReference
    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.
    configurationGroupSchemaResourceReference Property Map | Property Map
    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

    ConfigurationGroupSchemaName string
    The configuration group schema name.
    ConfigurationGroupSchemaOfferingLocation string
    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.
    ConfigurationGroupSchemaResourceReference Pulumi.AzureNative.HybridNetwork.Inputs.OpenDeploymentResourceReferenceResponse | Pulumi.AzureNative.HybridNetwork.Inputs.SecretDeploymentResourceReferenceResponse
    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.
    ConfigurationGroupSchemaName string
    The configuration group schema name.
    ConfigurationGroupSchemaOfferingLocation string
    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.
    ConfigurationGroupSchemaResourceReference OpenDeploymentResourceReferenceResponse | SecretDeploymentResourceReferenceResponse
    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.
    configurationGroupSchemaName String
    The configuration group schema name.
    configurationGroupSchemaOfferingLocation String
    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.
    configurationGroupSchemaResourceReference OpenDeploymentResourceReferenceResponse | SecretDeploymentResourceReferenceResponse
    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.
    configurationGroupSchemaName string
    The configuration group schema name.
    configurationGroupSchemaOfferingLocation string
    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.
    configurationGroupSchemaResourceReference OpenDeploymentResourceReferenceResponse | SecretDeploymentResourceReferenceResponse
    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_schema_name str
    The configuration group schema name.
    configuration_group_schema_offering_location str
    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_schema_resource_reference OpenDeploymentResourceReferenceResponse | SecretDeploymentResourceReferenceResponse
    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.
    configurationGroupSchemaName String
    The configuration group schema name.
    configurationGroupSchemaOfferingLocation String
    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.
    configurationGroupSchemaResourceReference Property Map | Property Map
    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.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    The type of identity that last modified the resource.
    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.
    createdAt string
    The timestamp of resource creation (UTC).
    createdBy string
    The identity that created the resource.
    createdByType string
    The type of identity that created the resource.
    lastModifiedAt string
    The timestamp of resource last modification (UTC)
    lastModifiedBy string
    The identity that last modified the resource.
    lastModifiedByType string
    The type of identity that last modified the resource.
    created_at str
    The timestamp of resource creation (UTC).
    created_by str
    The identity that created the resource.
    created_by_type str
    The type of identity that created the resource.
    last_modified_at str
    The timestamp of resource last modification (UTC)
    last_modified_by str
    The identity that last modified the resource.
    last_modified_by_type str
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.

    Import

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

    $ pulumi import azure-native: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
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
    Azure Native v2.38.0 published on Monday, Apr 22, 2024 by Pulumi