azure-native.hybridnetwork.NetworkServiceDesignVersion
Explore with Pulumi AI
network service design version. Azure REST API version: 2023-09-01.
Other available API versions: 2024-04-15.
Example Usage
Create or update a network service design version resource
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var networkServiceDesignVersion = new AzureNative.HybridNetwork.NetworkServiceDesignVersion("networkServiceDesignVersion", new()
{
Location = "eastus",
NetworkServiceDesignGroupName = "TestNetworkServiceDesignGroupName",
NetworkServiceDesignVersionName = "1.0.0",
Properties = new AzureNative.HybridNetwork.Inputs.NetworkServiceDesignVersionPropertiesFormatArgs
{
ConfigurationGroupSchemaReferences =
{
{ "MyVM_Configuration", new AzureNative.HybridNetwork.Inputs.ReferencedResourceArgs
{
Id = "/subscriptions/subid/resourcegroups/contosorg1/providers/microsoft.hybridnetwork/publishers/contosoGroup/networkServiceDesignGroups/NSD_contoso/configurationGroupSchemas/MyVM_Configuration_Schema",
} },
},
ResourceElementTemplates = new[]
{
new AzureNative.HybridNetwork.Inputs.ArmResourceDefinitionResourceElementTemplateDetailsArgs
{
Configuration = new AzureNative.HybridNetwork.Inputs.ArmResourceDefinitionResourceElementTemplateArgs
{
ArtifactProfile = new AzureNative.HybridNetwork.Inputs.NSDArtifactProfileArgs
{
ArtifactName = "MyVMArmTemplate",
ArtifactStoreReference = new AzureNative.HybridNetwork.Inputs.ReferencedResourceArgs
{
Id = "/subscriptions/subid/providers/Microsoft.HybridNetwork/publishers/contosoGroup/artifactStoreReference/store1",
},
ArtifactVersion = "1.0.0",
},
ParameterValues = "{\"publisherName\":\"{configurationparameters('MyVM_Configuration').publisherName}\",\"skuGroupName\":\"{configurationparameters('MyVM_Configuration').skuGroupName}\",\"skuVersion\":\"{configurationparameters('MyVM_Configuration').skuVersion}\",\"skuOfferingLocation\":\"{configurationparameters('MyVM_Configuration').skuOfferingLocation}\",\"nfviType\":\"{nfvis().nfvisFromSitePerNfviType.AzureCore.nfviAlias1.nfviType}\",\"nfviId\":\"{nfvis().nfvisFromSitePerNfviType.AzureCore.nfviAlias1.nfviId}\",\"allowSoftwareUpdates\":\"{configurationparameters('MyVM_Configuration').allowSoftwareUpdates}\",\"virtualNetworkName\":\"{configurationparameters('MyVM_Configuration').vnetName}\",\"subnetName\":\"{configurationparameters('MyVM_Configuration').subnetName}\",\"subnetAddressPrefix\":\"{configurationparameters('MyVM_Configuration').subnetAddressPrefix}\",\"managedResourceGroup\":\"{configurationparameters('SNSSelf').managedResourceGroupName}\",\"adminPassword\":\"{secretparameters('MyVM_Configuration').adminPassword}\"}",
TemplateType = AzureNative.HybridNetwork.TemplateType.ArmTemplate,
},
DependsOnProfile = new AzureNative.HybridNetwork.Inputs.DependsOnProfileArgs
{
InstallDependsOn = new() { },
},
Name = "MyVM",
ResourceElementType = "ArmResourceDefinition",
},
},
},
PublisherName = "TestPublisher",
ResourceGroupName = "rg",
});
});
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.NewNetworkServiceDesignVersion(ctx, "networkServiceDesignVersion", &hybridnetwork.NetworkServiceDesignVersionArgs{
Location: pulumi.String("eastus"),
NetworkServiceDesignGroupName: pulumi.String("TestNetworkServiceDesignGroupName"),
NetworkServiceDesignVersionName: pulumi.String("1.0.0"),
Properties: &hybridnetwork.NetworkServiceDesignVersionPropertiesFormatArgs{
ConfigurationGroupSchemaReferences: hybridnetwork.ReferencedResourceMap{
"MyVM_Configuration": &hybridnetwork.ReferencedResourceArgs{
Id: pulumi.String("/subscriptions/subid/resourcegroups/contosorg1/providers/microsoft.hybridnetwork/publishers/contosoGroup/networkServiceDesignGroups/NSD_contoso/configurationGroupSchemas/MyVM_Configuration_Schema"),
},
},
ResourceElementTemplates: pulumi.Array{
hybridnetwork.ArmResourceDefinitionResourceElementTemplateDetails{
Configuration: hybridnetwork.ArmResourceDefinitionResourceElementTemplate{
ArtifactProfile: hybridnetwork.NSDArtifactProfile{
ArtifactName: "MyVMArmTemplate",
ArtifactStoreReference: hybridnetwork.ReferencedResource{
Id: "/subscriptions/subid/providers/Microsoft.HybridNetwork/publishers/contosoGroup/artifactStoreReference/store1",
},
ArtifactVersion: "1.0.0",
},
ParameterValues: "{\"publisherName\":\"{configurationparameters('MyVM_Configuration').publisherName}\",\"skuGroupName\":\"{configurationparameters('MyVM_Configuration').skuGroupName}\",\"skuVersion\":\"{configurationparameters('MyVM_Configuration').skuVersion}\",\"skuOfferingLocation\":\"{configurationparameters('MyVM_Configuration').skuOfferingLocation}\",\"nfviType\":\"{nfvis().nfvisFromSitePerNfviType.AzureCore.nfviAlias1.nfviType}\",\"nfviId\":\"{nfvis().nfvisFromSitePerNfviType.AzureCore.nfviAlias1.nfviId}\",\"allowSoftwareUpdates\":\"{configurationparameters('MyVM_Configuration').allowSoftwareUpdates}\",\"virtualNetworkName\":\"{configurationparameters('MyVM_Configuration').vnetName}\",\"subnetName\":\"{configurationparameters('MyVM_Configuration').subnetName}\",\"subnetAddressPrefix\":\"{configurationparameters('MyVM_Configuration').subnetAddressPrefix}\",\"managedResourceGroup\":\"{configurationparameters('SNSSelf').managedResourceGroupName}\",\"adminPassword\":\"{secretparameters('MyVM_Configuration').adminPassword}\"}",
TemplateType: hybridnetwork.TemplateTypeArmTemplate,
},
DependsOnProfile: hybridnetwork.DependsOnProfile{
InstallDependsOn: []interface{}{},
},
Name: "MyVM",
ResourceElementType: "ArmResourceDefinition",
},
},
},
PublisherName: pulumi.String("TestPublisher"),
ResourceGroupName: pulumi.String("rg"),
})
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.NetworkServiceDesignVersion;
import com.pulumi.azurenative.hybridnetwork.NetworkServiceDesignVersionArgs;
import com.pulumi.azurenative.hybridnetwork.inputs.NetworkServiceDesignVersionPropertiesFormatArgs;
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 networkServiceDesignVersion = new NetworkServiceDesignVersion("networkServiceDesignVersion", NetworkServiceDesignVersionArgs.builder()
.location("eastus")
.networkServiceDesignGroupName("TestNetworkServiceDesignGroupName")
.networkServiceDesignVersionName("1.0.0")
.properties(NetworkServiceDesignVersionPropertiesFormatArgs.builder()
.configurationGroupSchemaReferences(Map.of("MyVM_Configuration", Map.of("id", "/subscriptions/subid/resourcegroups/contosorg1/providers/microsoft.hybridnetwork/publishers/contosoGroup/networkServiceDesignGroups/NSD_contoso/configurationGroupSchemas/MyVM_Configuration_Schema")))
.resourceElementTemplates(ArmResourceDefinitionResourceElementTemplateDetailsArgs.builder()
.configuration(ArmResourceDefinitionResourceElementTemplateArgs.builder()
.artifactProfile(NSDArtifactProfileArgs.builder()
.artifactName("MyVMArmTemplate")
.artifactStoreReference(ReferencedResourceArgs.builder()
.id("/subscriptions/subid/providers/Microsoft.HybridNetwork/publishers/contosoGroup/artifactStoreReference/store1")
.build())
.artifactVersion("1.0.0")
.build())
.parameterValues("{\"publisherName\":\"{configurationparameters('MyVM_Configuration').publisherName}\",\"skuGroupName\":\"{configurationparameters('MyVM_Configuration').skuGroupName}\",\"skuVersion\":\"{configurationparameters('MyVM_Configuration').skuVersion}\",\"skuOfferingLocation\":\"{configurationparameters('MyVM_Configuration').skuOfferingLocation}\",\"nfviType\":\"{nfvis().nfvisFromSitePerNfviType.AzureCore.nfviAlias1.nfviType}\",\"nfviId\":\"{nfvis().nfvisFromSitePerNfviType.AzureCore.nfviAlias1.nfviId}\",\"allowSoftwareUpdates\":\"{configurationparameters('MyVM_Configuration').allowSoftwareUpdates}\",\"virtualNetworkName\":\"{configurationparameters('MyVM_Configuration').vnetName}\",\"subnetName\":\"{configurationparameters('MyVM_Configuration').subnetName}\",\"subnetAddressPrefix\":\"{configurationparameters('MyVM_Configuration').subnetAddressPrefix}\",\"managedResourceGroup\":\"{configurationparameters('SNSSelf').managedResourceGroupName}\",\"adminPassword\":\"{secretparameters('MyVM_Configuration').adminPassword}\"}")
.templateType("ArmTemplate")
.build())
.dependsOnProfile(DependsOnProfileArgs.builder()
.installDependsOn()
.build())
.name("MyVM")
.resourceElementType("ArmResourceDefinition")
.build())
.build())
.publisherName("TestPublisher")
.resourceGroupName("rg")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
network_service_design_version = azure_native.hybridnetwork.NetworkServiceDesignVersion("networkServiceDesignVersion",
location="eastus",
network_service_design_group_name="TestNetworkServiceDesignGroupName",
network_service_design_version_name="1.0.0",
properties={
"configuration_group_schema_references": {
"my_v_m__configuration": {
"id": "/subscriptions/subid/resourcegroups/contosorg1/providers/microsoft.hybridnetwork/publishers/contosoGroup/networkServiceDesignGroups/NSD_contoso/configurationGroupSchemas/MyVM_Configuration_Schema",
},
},
"resource_element_templates": [{
"configuration": {
"artifact_profile": {
"artifact_name": "MyVMArmTemplate",
"artifact_store_reference": {
"id": "/subscriptions/subid/providers/Microsoft.HybridNetwork/publishers/contosoGroup/artifactStoreReference/store1",
},
"artifact_version": "1.0.0",
},
"parameter_values": "{\"publisherName\":\"{configurationparameters('MyVM_Configuration').publisherName}\",\"skuGroupName\":\"{configurationparameters('MyVM_Configuration').skuGroupName}\",\"skuVersion\":\"{configurationparameters('MyVM_Configuration').skuVersion}\",\"skuOfferingLocation\":\"{configurationparameters('MyVM_Configuration').skuOfferingLocation}\",\"nfviType\":\"{nfvis().nfvisFromSitePerNfviType.AzureCore.nfviAlias1.nfviType}\",\"nfviId\":\"{nfvis().nfvisFromSitePerNfviType.AzureCore.nfviAlias1.nfviId}\",\"allowSoftwareUpdates\":\"{configurationparameters('MyVM_Configuration').allowSoftwareUpdates}\",\"virtualNetworkName\":\"{configurationparameters('MyVM_Configuration').vnetName}\",\"subnetName\":\"{configurationparameters('MyVM_Configuration').subnetName}\",\"subnetAddressPrefix\":\"{configurationparameters('MyVM_Configuration').subnetAddressPrefix}\",\"managedResourceGroup\":\"{configurationparameters('SNSSelf').managedResourceGroupName}\",\"adminPassword\":\"{secretparameters('MyVM_Configuration').adminPassword}\"}",
"template_type": azure_native.hybridnetwork.TemplateType.ARM_TEMPLATE,
},
"depends_on_profile": {
"install_depends_on": [],
},
"name": "MyVM",
"resource_element_type": "ArmResourceDefinition",
}],
},
publisher_name="TestPublisher",
resource_group_name="rg")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const networkServiceDesignVersion = new azure_native.hybridnetwork.NetworkServiceDesignVersion("networkServiceDesignVersion", {
location: "eastus",
networkServiceDesignGroupName: "TestNetworkServiceDesignGroupName",
networkServiceDesignVersionName: "1.0.0",
properties: {
configurationGroupSchemaReferences: {
MyVM_Configuration: {
id: "/subscriptions/subid/resourcegroups/contosorg1/providers/microsoft.hybridnetwork/publishers/contosoGroup/networkServiceDesignGroups/NSD_contoso/configurationGroupSchemas/MyVM_Configuration_Schema",
},
},
resourceElementTemplates: [{
configuration: {
artifactProfile: {
artifactName: "MyVMArmTemplate",
artifactStoreReference: {
id: "/subscriptions/subid/providers/Microsoft.HybridNetwork/publishers/contosoGroup/artifactStoreReference/store1",
},
artifactVersion: "1.0.0",
},
parameterValues: "{\"publisherName\":\"{configurationparameters('MyVM_Configuration').publisherName}\",\"skuGroupName\":\"{configurationparameters('MyVM_Configuration').skuGroupName}\",\"skuVersion\":\"{configurationparameters('MyVM_Configuration').skuVersion}\",\"skuOfferingLocation\":\"{configurationparameters('MyVM_Configuration').skuOfferingLocation}\",\"nfviType\":\"{nfvis().nfvisFromSitePerNfviType.AzureCore.nfviAlias1.nfviType}\",\"nfviId\":\"{nfvis().nfvisFromSitePerNfviType.AzureCore.nfviAlias1.nfviId}\",\"allowSoftwareUpdates\":\"{configurationparameters('MyVM_Configuration').allowSoftwareUpdates}\",\"virtualNetworkName\":\"{configurationparameters('MyVM_Configuration').vnetName}\",\"subnetName\":\"{configurationparameters('MyVM_Configuration').subnetName}\",\"subnetAddressPrefix\":\"{configurationparameters('MyVM_Configuration').subnetAddressPrefix}\",\"managedResourceGroup\":\"{configurationparameters('SNSSelf').managedResourceGroupName}\",\"adminPassword\":\"{secretparameters('MyVM_Configuration').adminPassword}\"}",
templateType: azure_native.hybridnetwork.TemplateType.ArmTemplate,
},
dependsOnProfile: {
installDependsOn: [],
},
name: "MyVM",
resourceElementType: "ArmResourceDefinition",
}],
},
publisherName: "TestPublisher",
resourceGroupName: "rg",
});
resources:
networkServiceDesignVersion:
type: azure-native:hybridnetwork:NetworkServiceDesignVersion
properties:
location: eastus
networkServiceDesignGroupName: TestNetworkServiceDesignGroupName
networkServiceDesignVersionName: 1.0.0
properties:
configurationGroupSchemaReferences:
MyVM_Configuration:
id: /subscriptions/subid/resourcegroups/contosorg1/providers/microsoft.hybridnetwork/publishers/contosoGroup/networkServiceDesignGroups/NSD_contoso/configurationGroupSchemas/MyVM_Configuration_Schema
resourceElementTemplates:
- configuration:
artifactProfile:
artifactName: MyVMArmTemplate
artifactStoreReference:
id: /subscriptions/subid/providers/Microsoft.HybridNetwork/publishers/contosoGroup/artifactStoreReference/store1
artifactVersion: 1.0.0
parameterValues: '{"publisherName":"{configurationparameters(''MyVM_Configuration'').publisherName}","skuGroupName":"{configurationparameters(''MyVM_Configuration'').skuGroupName}","skuVersion":"{configurationparameters(''MyVM_Configuration'').skuVersion}","skuOfferingLocation":"{configurationparameters(''MyVM_Configuration'').skuOfferingLocation}","nfviType":"{nfvis().nfvisFromSitePerNfviType.AzureCore.nfviAlias1.nfviType}","nfviId":"{nfvis().nfvisFromSitePerNfviType.AzureCore.nfviAlias1.nfviId}","allowSoftwareUpdates":"{configurationparameters(''MyVM_Configuration'').allowSoftwareUpdates}","virtualNetworkName":"{configurationparameters(''MyVM_Configuration'').vnetName}","subnetName":"{configurationparameters(''MyVM_Configuration'').subnetName}","subnetAddressPrefix":"{configurationparameters(''MyVM_Configuration'').subnetAddressPrefix}","managedResourceGroup":"{configurationparameters(''SNSSelf'').managedResourceGroupName}","adminPassword":"{secretparameters(''MyVM_Configuration'').adminPassword}"}'
templateType: ArmTemplate
dependsOnProfile:
installDependsOn: []
name: MyVM
resourceElementType: ArmResourceDefinition
publisherName: TestPublisher
resourceGroupName: rg
Create NetworkServiceDesignVersion Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new NetworkServiceDesignVersion(name: string, args: NetworkServiceDesignVersionArgs, opts?: CustomResourceOptions);
@overload
def NetworkServiceDesignVersion(resource_name: str,
args: NetworkServiceDesignVersionArgs,
opts: Optional[ResourceOptions] = None)
@overload
def NetworkServiceDesignVersion(resource_name: str,
opts: Optional[ResourceOptions] = None,
network_service_design_group_name: Optional[str] = None,
publisher_name: Optional[str] = None,
resource_group_name: Optional[str] = None,
location: Optional[str] = None,
network_service_design_version_name: Optional[str] = None,
properties: Optional[NetworkServiceDesignVersionPropertiesFormatArgs] = None,
tags: Optional[Mapping[str, str]] = None)
func NewNetworkServiceDesignVersion(ctx *Context, name string, args NetworkServiceDesignVersionArgs, opts ...ResourceOption) (*NetworkServiceDesignVersion, error)
public NetworkServiceDesignVersion(string name, NetworkServiceDesignVersionArgs args, CustomResourceOptions? opts = null)
public NetworkServiceDesignVersion(String name, NetworkServiceDesignVersionArgs args)
public NetworkServiceDesignVersion(String name, NetworkServiceDesignVersionArgs args, CustomResourceOptions options)
type: azure-native:hybridnetwork:NetworkServiceDesignVersion
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 NetworkServiceDesignVersionArgs
- 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 NetworkServiceDesignVersionArgs
- 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 NetworkServiceDesignVersionArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args NetworkServiceDesignVersionArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args NetworkServiceDesignVersionArgs
- 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 networkServiceDesignVersionResource = new AzureNative.HybridNetwork.NetworkServiceDesignVersion("networkServiceDesignVersionResource", new()
{
NetworkServiceDesignGroupName = "string",
PublisherName = "string",
ResourceGroupName = "string",
Location = "string",
NetworkServiceDesignVersionName = "string",
Properties = new AzureNative.HybridNetwork.Inputs.NetworkServiceDesignVersionPropertiesFormatArgs
{
ConfigurationGroupSchemaReferences =
{
{ "string", new AzureNative.HybridNetwork.Inputs.ReferencedResourceArgs
{
Id = "string",
} },
},
Description = "string",
NfvisFromSite =
{
{ "string", new AzureNative.HybridNetwork.Inputs.NfviDetailsArgs
{
Name = "string",
Type = "string",
} },
},
ResourceElementTemplates = new[]
{
new AzureNative.HybridNetwork.Inputs.ArmResourceDefinitionResourceElementTemplateDetailsArgs
{
ResourceElementType = "ArmResourceDefinition",
Configuration = new AzureNative.HybridNetwork.Inputs.ArmResourceDefinitionResourceElementTemplateArgs
{
ArtifactProfile = new AzureNative.HybridNetwork.Inputs.NSDArtifactProfileArgs
{
ArtifactName = "string",
ArtifactStoreReference = new AzureNative.HybridNetwork.Inputs.ReferencedResourceArgs
{
Id = "string",
},
ArtifactVersion = "string",
},
ParameterValues = "string",
TemplateType = "string",
},
DependsOnProfile = new AzureNative.HybridNetwork.Inputs.DependsOnProfileArgs
{
InstallDependsOn = new[]
{
"string",
},
UninstallDependsOn = new[]
{
"string",
},
UpdateDependsOn = new[]
{
"string",
},
},
Name = "string",
},
},
},
Tags =
{
{ "string", "string" },
},
});
example, err := hybridnetwork.NewNetworkServiceDesignVersion(ctx, "networkServiceDesignVersionResource", &hybridnetwork.NetworkServiceDesignVersionArgs{
NetworkServiceDesignGroupName: pulumi.String("string"),
PublisherName: pulumi.String("string"),
ResourceGroupName: pulumi.String("string"),
Location: pulumi.String("string"),
NetworkServiceDesignVersionName: pulumi.String("string"),
Properties: &hybridnetwork.NetworkServiceDesignVersionPropertiesFormatArgs{
ConfigurationGroupSchemaReferences: hybridnetwork.ReferencedResourceMap{
"string": &hybridnetwork.ReferencedResourceArgs{
Id: pulumi.String("string"),
},
},
Description: pulumi.String("string"),
NfvisFromSite: hybridnetwork.NfviDetailsMap{
"string": &hybridnetwork.NfviDetailsArgs{
Name: pulumi.String("string"),
Type: pulumi.String("string"),
},
},
ResourceElementTemplates: pulumi.Array{
hybridnetwork.ArmResourceDefinitionResourceElementTemplateDetails{
ResourceElementType: "ArmResourceDefinition",
Configuration: hybridnetwork.ArmResourceDefinitionResourceElementTemplate{
ArtifactProfile: hybridnetwork.NSDArtifactProfile{
ArtifactName: "string",
ArtifactStoreReference: hybridnetwork.ReferencedResource{
Id: "string",
},
ArtifactVersion: "string",
},
ParameterValues: "string",
TemplateType: "string",
},
DependsOnProfile: hybridnetwork.DependsOnProfile{
InstallDependsOn: []string{
"string",
},
UninstallDependsOn: []string{
"string",
},
UpdateDependsOn: []string{
"string",
},
},
Name: "string",
},
},
},
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var networkServiceDesignVersionResource = new NetworkServiceDesignVersion("networkServiceDesignVersionResource", NetworkServiceDesignVersionArgs.builder()
.networkServiceDesignGroupName("string")
.publisherName("string")
.resourceGroupName("string")
.location("string")
.networkServiceDesignVersionName("string")
.properties(NetworkServiceDesignVersionPropertiesFormatArgs.builder()
.configurationGroupSchemaReferences(Map.of("string", Map.of("id", "string")))
.description("string")
.nfvisFromSite(Map.of("string", Map.ofEntries(
Map.entry("name", "string"),
Map.entry("type", "string")
)))
.resourceElementTemplates(ArmResourceDefinitionResourceElementTemplateDetailsArgs.builder()
.resourceElementType("ArmResourceDefinition")
.configuration(ArmResourceDefinitionResourceElementTemplateArgs.builder()
.artifactProfile(NSDArtifactProfileArgs.builder()
.artifactName("string")
.artifactStoreReference(ReferencedResourceArgs.builder()
.id("string")
.build())
.artifactVersion("string")
.build())
.parameterValues("string")
.templateType("string")
.build())
.dependsOnProfile(DependsOnProfileArgs.builder()
.installDependsOn("string")
.uninstallDependsOn("string")
.updateDependsOn("string")
.build())
.name("string")
.build())
.build())
.tags(Map.of("string", "string"))
.build());
network_service_design_version_resource = azure_native.hybridnetwork.NetworkServiceDesignVersion("networkServiceDesignVersionResource",
network_service_design_group_name="string",
publisher_name="string",
resource_group_name="string",
location="string",
network_service_design_version_name="string",
properties={
"configurationGroupSchemaReferences": {
"string": {
"id": "string",
},
},
"description": "string",
"nfvisFromSite": {
"string": {
"name": "string",
"type": "string",
},
},
"resourceElementTemplates": [{
"resourceElementType": "ArmResourceDefinition",
"configuration": {
"artifactProfile": {
"artifactName": "string",
"artifactStoreReference": {
"id": "string",
},
"artifactVersion": "string",
},
"parameterValues": "string",
"templateType": "string",
},
"dependsOnProfile": {
"installDependsOn": ["string"],
"uninstallDependsOn": ["string"],
"updateDependsOn": ["string"],
},
"name": "string",
}],
},
tags={
"string": "string",
})
const networkServiceDesignVersionResource = new azure_native.hybridnetwork.NetworkServiceDesignVersion("networkServiceDesignVersionResource", {
networkServiceDesignGroupName: "string",
publisherName: "string",
resourceGroupName: "string",
location: "string",
networkServiceDesignVersionName: "string",
properties: {
configurationGroupSchemaReferences: {
string: {
id: "string",
},
},
description: "string",
nfvisFromSite: {
string: {
name: "string",
type: "string",
},
},
resourceElementTemplates: [{
resourceElementType: "ArmResourceDefinition",
configuration: {
artifactProfile: {
artifactName: "string",
artifactStoreReference: {
id: "string",
},
artifactVersion: "string",
},
parameterValues: "string",
templateType: "string",
},
dependsOnProfile: {
installDependsOn: ["string"],
uninstallDependsOn: ["string"],
updateDependsOn: ["string"],
},
name: "string",
}],
},
tags: {
string: "string",
},
});
type: azure-native:hybridnetwork:NetworkServiceDesignVersion
properties:
location: string
networkServiceDesignGroupName: string
networkServiceDesignVersionName: string
properties:
configurationGroupSchemaReferences:
string:
id: string
description: string
nfvisFromSite:
string:
name: string
type: string
resourceElementTemplates:
- configuration:
artifactProfile:
artifactName: string
artifactStoreReference:
id: string
artifactVersion: string
parameterValues: string
templateType: string
dependsOnProfile:
installDependsOn:
- string
uninstallDependsOn:
- string
updateDependsOn:
- string
name: string
resourceElementType: ArmResourceDefinition
publisherName: string
resourceGroupName: string
tags:
string: string
NetworkServiceDesignVersion 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 NetworkServiceDesignVersion resource accepts the following input properties:
- Network
Service stringDesign Group Name - The name of the network service design group.
- Publisher
Name string - The name of the publisher.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Location string
- The geo-location where the resource lives
- Network
Service stringDesign Version Name - The name of the network service design version. The name should conform to the SemVer 2.0.0 specification: https://semver.org/spec/v2.0.0.html.
- Properties
Pulumi.
Azure Native. Hybrid Network. Inputs. Network Service Design Version Properties Format - network service design version properties.
- Dictionary<string, string>
- Resource tags.
- Network
Service stringDesign Group Name - The name of the network service design group.
- Publisher
Name string - The name of the publisher.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Location string
- The geo-location where the resource lives
- Network
Service stringDesign Version Name - The name of the network service design version. The name should conform to the SemVer 2.0.0 specification: https://semver.org/spec/v2.0.0.html.
- Properties
Network
Service Design Version Properties Format Args - network service design version properties.
- map[string]string
- Resource tags.
- network
Service StringDesign Group Name - The name of the network service design group.
- publisher
Name String - The name of the publisher.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- location String
- The geo-location where the resource lives
- network
Service StringDesign Version Name - The name of the network service design version. The name should conform to the SemVer 2.0.0 specification: https://semver.org/spec/v2.0.0.html.
- properties
Network
Service Design Version Properties Format - network service design version properties.
- Map<String,String>
- Resource tags.
- network
Service stringDesign Group Name - The name of the network service design group.
- publisher
Name string - The name of the publisher.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- location string
- The geo-location where the resource lives
- network
Service stringDesign Version Name - The name of the network service design version. The name should conform to the SemVer 2.0.0 specification: https://semver.org/spec/v2.0.0.html.
- properties
Network
Service Design Version Properties Format - network service design version properties.
- {[key: string]: string}
- Resource tags.
- network_
service_ strdesign_ group_ name - The name of the network service design group.
- publisher_
name str - The name of the publisher.
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- location str
- The geo-location where the resource lives
- network_
service_ strdesign_ version_ name - The name of the network service design version. The name should conform to the SemVer 2.0.0 specification: https://semver.org/spec/v2.0.0.html.
- properties
Network
Service Design Version Properties Format Args - network service design version properties.
- Mapping[str, str]
- Resource tags.
- network
Service StringDesign Group Name - The name of the network service design group.
- publisher
Name String - The name of the publisher.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- location String
- The geo-location where the resource lives
- network
Service StringDesign Version Name - The name of the network service design version. The name should conform to the SemVer 2.0.0 specification: https://semver.org/spec/v2.0.0.html.
- properties Property Map
- network service design version properties.
- Map<String>
- Resource tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the NetworkServiceDesignVersion resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- System
Data Pulumi.Azure Native. 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
- System
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the resource
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- The name of the resource
- system_
data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type str
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- system
Data Property Map - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
Supporting Types
ArmResourceDefinitionResourceElementTemplate, ArmResourceDefinitionResourceElementTemplateArgs
- Artifact
Profile Pulumi.Azure Native. Hybrid Network. Inputs. NSDArtifact Profile - Artifact profile properties.
- Parameter
Values string - Name and value pairs that define the parameter values. It can be a well formed escaped JSON string.
- Template
Type string | Pulumi.Azure Native. Hybrid Network. Template Type - The template type.
- Artifact
Profile NSDArtifactProfile - Artifact profile properties.
- Parameter
Values string - Name and value pairs that define the parameter values. It can be a well formed escaped JSON string.
- Template
Type string | TemplateType - The template type.
- artifact
Profile NSDArtifactProfile - Artifact profile properties.
- parameter
Values String - Name and value pairs that define the parameter values. It can be a well formed escaped JSON string.
- template
Type String | TemplateType - The template type.
- artifact
Profile NSDArtifactProfile - Artifact profile properties.
- parameter
Values string - Name and value pairs that define the parameter values. It can be a well formed escaped JSON string.
- template
Type string | TemplateType - The template type.
- artifact_
profile NSDArtifactProfile - Artifact profile properties.
- parameter_
values str - Name and value pairs that define the parameter values. It can be a well formed escaped JSON string.
- template_
type str | TemplateType - The template type.
- artifact
Profile Property Map - Artifact profile properties.
- parameter
Values String - Name and value pairs that define the parameter values. It can be a well formed escaped JSON string.
- template
Type String | "Unknown" | "ArmTemplate" - The template type.
ArmResourceDefinitionResourceElementTemplateDetails, ArmResourceDefinitionResourceElementTemplateDetailsArgs
- Configuration
Pulumi.
Azure Native. Hybrid Network. Inputs. Arm Resource Definition Resource Element Template - The resource element template type.
- Depends
On Pulumi.Profile Azure Native. Hybrid Network. Inputs. Depends On Profile - The depends on profile.
- Name string
- Name of the resource element template.
- Configuration
Arm
Resource Definition Resource Element Template - The resource element template type.
- Depends
On DependsProfile On Profile - The depends on profile.
- Name string
- Name of the resource element template.
- configuration
Arm
Resource Definition Resource Element Template - The resource element template type.
- depends
On DependsProfile On Profile - The depends on profile.
- name String
- Name of the resource element template.
- configuration
Arm
Resource Definition Resource Element Template - The resource element template type.
- depends
On DependsProfile On Profile - The depends on profile.
- name string
- Name of the resource element template.
- configuration
Arm
Resource Definition Resource Element Template - The resource element template type.
- depends_
on_ Dependsprofile On Profile - The depends on profile.
- name str
- Name of the resource element template.
- configuration Property Map
- The resource element template type.
- depends
On Property MapProfile - The depends on profile.
- name String
- Name of the resource element template.
ArmResourceDefinitionResourceElementTemplateDetailsResponse, ArmResourceDefinitionResourceElementTemplateDetailsResponseArgs
- Configuration
Pulumi.
Azure Native. Hybrid Network. Inputs. Arm Resource Definition Resource Element Template Response - The resource element template type.
- Depends
On Pulumi.Profile Azure Native. Hybrid Network. Inputs. Depends On Profile Response - The depends on profile.
- Name string
- Name of the resource element template.
- Configuration
Arm
Resource Definition Resource Element Template Response - The resource element template type.
- Depends
On DependsProfile On Profile Response - The depends on profile.
- Name string
- Name of the resource element template.
- configuration
Arm
Resource Definition Resource Element Template Response - The resource element template type.
- depends
On DependsProfile On Profile Response - The depends on profile.
- name String
- Name of the resource element template.
- configuration
Arm
Resource Definition Resource Element Template Response - The resource element template type.
- depends
On DependsProfile On Profile Response - The depends on profile.
- name string
- Name of the resource element template.
- configuration
Arm
Resource Definition Resource Element Template Response - The resource element template type.
- depends_
on_ Dependsprofile On Profile Response - The depends on profile.
- name str
- Name of the resource element template.
- configuration Property Map
- The resource element template type.
- depends
On Property MapProfile - The depends on profile.
- name String
- Name of the resource element template.
ArmResourceDefinitionResourceElementTemplateResponse, ArmResourceDefinitionResourceElementTemplateResponseArgs
- Artifact
Profile Pulumi.Azure Native. Hybrid Network. Inputs. NSDArtifact Profile Response - Artifact profile properties.
- Parameter
Values string - Name and value pairs that define the parameter values. It can be a well formed escaped JSON string.
- Template
Type string - The template type.
- Artifact
Profile NSDArtifactProfile Response - Artifact profile properties.
- Parameter
Values string - Name and value pairs that define the parameter values. It can be a well formed escaped JSON string.
- Template
Type string - The template type.
- artifact
Profile NSDArtifactProfile Response - Artifact profile properties.
- parameter
Values String - Name and value pairs that define the parameter values. It can be a well formed escaped JSON string.
- template
Type String - The template type.
- artifact
Profile NSDArtifactProfile Response - Artifact profile properties.
- parameter
Values string - Name and value pairs that define the parameter values. It can be a well formed escaped JSON string.
- template
Type string - The template type.
- artifact_
profile NSDArtifactProfile Response - Artifact profile properties.
- parameter_
values str - Name and value pairs that define the parameter values. It can be a well formed escaped JSON string.
- template_
type str - The template type.
- artifact
Profile Property Map - Artifact profile properties.
- parameter
Values String - Name and value pairs that define the parameter values. It can be a well formed escaped JSON string.
- template
Type String - The template type.
DependsOnProfile, DependsOnProfileArgs
- Install
Depends List<string>On - Application installation operation dependency.
- Uninstall
Depends List<string>On - Application deletion operation dependency.
- Update
Depends List<string>On - Application update operation dependency.
- Install
Depends []stringOn - Application installation operation dependency.
- Uninstall
Depends []stringOn - Application deletion operation dependency.
- Update
Depends []stringOn - Application update operation dependency.
- install
Depends List<String>On - Application installation operation dependency.
- uninstall
Depends List<String>On - Application deletion operation dependency.
- update
Depends List<String>On - Application update operation dependency.
- install
Depends string[]On - Application installation operation dependency.
- uninstall
Depends string[]On - Application deletion operation dependency.
- update
Depends string[]On - Application update operation dependency.
- install_
depends_ Sequence[str]on - Application installation operation dependency.
- uninstall_
depends_ Sequence[str]on - Application deletion operation dependency.
- update_
depends_ Sequence[str]on - Application update operation dependency.
- install
Depends List<String>On - Application installation operation dependency.
- uninstall
Depends List<String>On - Application deletion operation dependency.
- update
Depends List<String>On - Application update operation dependency.
DependsOnProfileResponse, DependsOnProfileResponseArgs
- Install
Depends List<string>On - Application installation operation dependency.
- Uninstall
Depends List<string>On - Application deletion operation dependency.
- Update
Depends List<string>On - Application update operation dependency.
- Install
Depends []stringOn - Application installation operation dependency.
- Uninstall
Depends []stringOn - Application deletion operation dependency.
- Update
Depends []stringOn - Application update operation dependency.
- install
Depends List<String>On - Application installation operation dependency.
- uninstall
Depends List<String>On - Application deletion operation dependency.
- update
Depends List<String>On - Application update operation dependency.
- install
Depends string[]On - Application installation operation dependency.
- uninstall
Depends string[]On - Application deletion operation dependency.
- update
Depends string[]On - Application update operation dependency.
- install_
depends_ Sequence[str]on - Application installation operation dependency.
- uninstall_
depends_ Sequence[str]on - Application deletion operation dependency.
- update_
depends_ Sequence[str]on - Application update operation dependency.
- install
Depends List<String>On - Application installation operation dependency.
- uninstall
Depends List<String>On - Application deletion operation dependency.
- update
Depends List<String>On - Application update operation dependency.
NSDArtifactProfile, NSDArtifactProfileArgs
- Artifact
Name string - Artifact name.
- Artifact
Store Pulumi.Reference Azure Native. Hybrid Network. Inputs. Referenced Resource - The artifact store resource id
- Artifact
Version string - Artifact version.
- Artifact
Name string - Artifact name.
- Artifact
Store ReferencedReference Resource - The artifact store resource id
- Artifact
Version string - Artifact version.
- artifact
Name String - Artifact name.
- artifact
Store ReferencedReference Resource - The artifact store resource id
- artifact
Version String - Artifact version.
- artifact
Name string - Artifact name.
- artifact
Store ReferencedReference Resource - The artifact store resource id
- artifact
Version string - Artifact version.
- artifact_
name str - Artifact name.
- artifact_
store_ Referencedreference Resource - The artifact store resource id
- artifact_
version str - Artifact version.
- artifact
Name String - Artifact name.
- artifact
Store Property MapReference - The artifact store resource id
- artifact
Version String - Artifact version.
NSDArtifactProfileResponse, NSDArtifactProfileResponseArgs
- Artifact
Name string - Artifact name.
- Artifact
Store Pulumi.Reference Azure Native. Hybrid Network. Inputs. Referenced Resource Response - The artifact store resource id
- Artifact
Version string - Artifact version.
- Artifact
Name string - Artifact name.
- Artifact
Store ReferencedReference Resource Response - The artifact store resource id
- Artifact
Version string - Artifact version.
- artifact
Name String - Artifact name.
- artifact
Store ReferencedReference Resource Response - The artifact store resource id
- artifact
Version String - Artifact version.
- artifact
Name string - Artifact name.
- artifact
Store ReferencedReference Resource Response - The artifact store resource id
- artifact
Version string - Artifact version.
- artifact_
name str - Artifact name.
- artifact_
store_ Referencedreference Resource Response - The artifact store resource id
- artifact_
version str - Artifact version.
- artifact
Name String - Artifact name.
- artifact
Store Property MapReference - The artifact store resource id
- artifact
Version String - Artifact version.
NetworkFunctionDefinitionResourceElementTemplateDetails, NetworkFunctionDefinitionResourceElementTemplateDetailsArgs
- Configuration
Pulumi.
Azure Native. Hybrid Network. Inputs. Arm Resource Definition Resource Element Template - The resource element template type.
- Depends
On Pulumi.Profile Azure Native. Hybrid Network. Inputs. Depends On Profile - The depends on profile.
- Name string
- Name of the resource element template.
- Configuration
Arm
Resource Definition Resource Element Template - The resource element template type.
- Depends
On DependsProfile On Profile - The depends on profile.
- Name string
- Name of the resource element template.
- configuration
Arm
Resource Definition Resource Element Template - The resource element template type.
- depends
On DependsProfile On Profile - The depends on profile.
- name String
- Name of the resource element template.
- configuration
Arm
Resource Definition Resource Element Template - The resource element template type.
- depends
On DependsProfile On Profile - The depends on profile.
- name string
- Name of the resource element template.
- configuration
Arm
Resource Definition Resource Element Template - The resource element template type.
- depends_
on_ Dependsprofile On Profile - The depends on profile.
- name str
- Name of the resource element template.
- configuration Property Map
- The resource element template type.
- depends
On Property MapProfile - The depends on profile.
- name String
- Name of the resource element template.
NetworkFunctionDefinitionResourceElementTemplateDetailsResponse, NetworkFunctionDefinitionResourceElementTemplateDetailsResponseArgs
- Configuration
Pulumi.
Azure Native. Hybrid Network. Inputs. Arm Resource Definition Resource Element Template Response - The resource element template type.
- Depends
On Pulumi.Profile Azure Native. Hybrid Network. Inputs. Depends On Profile Response - The depends on profile.
- Name string
- Name of the resource element template.
- Configuration
Arm
Resource Definition Resource Element Template Response - The resource element template type.
- Depends
On DependsProfile On Profile Response - The depends on profile.
- Name string
- Name of the resource element template.
- configuration
Arm
Resource Definition Resource Element Template Response - The resource element template type.
- depends
On DependsProfile On Profile Response - The depends on profile.
- name String
- Name of the resource element template.
- configuration
Arm
Resource Definition Resource Element Template Response - The resource element template type.
- depends
On DependsProfile On Profile Response - The depends on profile.
- name string
- Name of the resource element template.
- configuration
Arm
Resource Definition Resource Element Template Response - The resource element template type.
- depends_
on_ Dependsprofile On Profile Response - The depends on profile.
- name str
- Name of the resource element template.
- configuration Property Map
- The resource element template type.
- depends
On Property MapProfile - The depends on profile.
- name String
- Name of the resource element template.
NetworkServiceDesignVersionPropertiesFormat, NetworkServiceDesignVersionPropertiesFormatArgs
- Configuration
Group Dictionary<string, Pulumi.Schema References Azure Native. Hybrid Network. Inputs. Referenced Resource> - The configuration schemas to used to define the values.
- Description string
- The network service design version description.
- Nfvis
From Dictionary<string, Pulumi.Site Azure Native. Hybrid Network. Inputs. Nfvi Details> - The nfvis from the site.
- Resource
Element List<Union<Pulumi.Templates Azure Native. Hybrid Network. Inputs. Arm Resource Definition Resource Element Template Details, Pulumi. Azure Native. Hybrid Network. Inputs. Network Function Definition Resource Element Template Details>> - List of resource element template
- Configuration
Group map[string]ReferencedSchema References Resource - The configuration schemas to used to define the values.
- Description string
- The network service design version description.
- Nfvis
From map[string]NfviSite Details - The nfvis from the site.
- Resource
Element []interface{}Templates - List of resource element template
- configuration
Group Map<String,ReferencedSchema References Resource> - The configuration schemas to used to define the values.
- description String
- The network service design version description.
- nfvis
From Map<String,NfviSite Details> - The nfvis from the site.
- resource
Element List<Either<ArmTemplates Resource Definition Resource Element Template Details,Network Function Definition Resource Element Template Details>> - List of resource element template
- configuration
Group {[key: string]: ReferencedSchema References Resource} - The configuration schemas to used to define the values.
- description string
- The network service design version description.
- nfvis
From {[key: string]: NfviSite Details} - The nfvis from the site.
- resource
Element (ArmTemplates Resource Definition Resource Element Template Details | Network Function Definition Resource Element Template Details)[] - List of resource element template
- configuration_
group_ Mapping[str, Referencedschema_ references Resource] - The configuration schemas to used to define the values.
- description str
- The network service design version description.
- nfvis_
from_ Mapping[str, Nfvisite Details] - The nfvis from the site.
- resource_
element_ Sequence[Union[Armtemplates Resource Definition Resource Element Template Details, Network Function Definition Resource Element Template Details]] - List of resource element template
- configuration
Group Map<Property Map>Schema References - The configuration schemas to used to define the values.
- description String
- The network service design version description.
- nfvis
From Map<Property Map>Site - The nfvis from the site.
- resource
Element List<Property Map | Property Map>Templates - List of resource element template
NetworkServiceDesignVersionPropertiesFormatResponse, NetworkServiceDesignVersionPropertiesFormatResponseArgs
- Provisioning
State string - The provisioning state of the network service design version resource.
- Version
State string - The network service design version state.
- Configuration
Group Dictionary<string, Pulumi.Schema References Azure Native. Hybrid Network. Inputs. Referenced Resource Response> - The configuration schemas to used to define the values.
- Description string
- The network service design version description.
- Nfvis
From Dictionary<string, Pulumi.Site Azure Native. Hybrid Network. Inputs. Nfvi Details Response> - The nfvis from the site.
- Resource
Element List<Union<Pulumi.Templates Azure Native. Hybrid Network. Inputs. Arm Resource Definition Resource Element Template Details Response, Pulumi. Azure Native. Hybrid Network. Inputs. Network Function Definition Resource Element Template Details Response>> - List of resource element template
- Provisioning
State string - The provisioning state of the network service design version resource.
- Version
State string - The network service design version state.
- Configuration
Group map[string]ReferencedSchema References Resource Response - The configuration schemas to used to define the values.
- Description string
- The network service design version description.
- Nfvis
From map[string]NfviSite Details Response - The nfvis from the site.
- Resource
Element []interface{}Templates - List of resource element template
- provisioning
State String - The provisioning state of the network service design version resource.
- version
State String - The network service design version state.
- configuration
Group Map<String,ReferencedSchema References Resource Response> - The configuration schemas to used to define the values.
- description String
- The network service design version description.
- nfvis
From Map<String,NfviSite Details Response> - The nfvis from the site.
- resource
Element List<Either<ArmTemplates Resource Definition Resource Element Template Details Response,Network Function Definition Resource Element Template Details Response>> - List of resource element template
- provisioning
State string - The provisioning state of the network service design version resource.
- version
State string - The network service design version state.
- configuration
Group {[key: string]: ReferencedSchema References Resource Response} - The configuration schemas to used to define the values.
- description string
- The network service design version description.
- nfvis
From {[key: string]: NfviSite Details Response} - The nfvis from the site.
- resource
Element (ArmTemplates Resource Definition Resource Element Template Details Response | Network Function Definition Resource Element Template Details Response)[] - List of resource element template
- provisioning_
state str - The provisioning state of the network service design version resource.
- version_
state str - The network service design version state.
- configuration_
group_ Mapping[str, Referencedschema_ references Resource Response] - The configuration schemas to used to define the values.
- description str
- The network service design version description.
- nfvis_
from_ Mapping[str, Nfvisite Details Response] - The nfvis from the site.
- resource_
element_ Sequence[Union[Armtemplates Resource Definition Resource Element Template Details Response, Network Function Definition Resource Element Template Details Response]] - List of resource element template
- provisioning
State String - The provisioning state of the network service design version resource.
- version
State String - The network service design version state.
- configuration
Group Map<Property Map>Schema References - The configuration schemas to used to define the values.
- description String
- The network service design version description.
- nfvis
From Map<Property Map>Site - The nfvis from the site.
- resource
Element List<Property Map | Property Map>Templates - List of resource element template
NfviDetails, NfviDetailsArgs
NfviDetailsResponse, NfviDetailsResponseArgs
ReferencedResource, ReferencedResourceArgs
- Id string
- Resource ID.
- Id string
- Resource ID.
- id String
- Resource ID.
- id string
- Resource ID.
- id str
- Resource ID.
- id String
- Resource ID.
ReferencedResourceResponse, ReferencedResourceResponseArgs
- Id string
- Resource ID.
- Id string
- Resource ID.
- id String
- Resource ID.
- id string
- Resource ID.
- id str
- Resource ID.
- id String
- Resource ID.
SystemDataResponse, SystemDataResponseArgs
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified stringBy Type - The type of identity that last modified the resource.
- created_
at str - The timestamp of resource creation (UTC).
- created_
by str - The identity that created the resource.
- created_
by_ strtype - The type of identity that created the resource.
- last_
modified_ strat - The timestamp of resource last modification (UTC)
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ strby_ type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
TemplateType, TemplateTypeArgs
- Unknown
- Unknown
- Arm
Template - ArmTemplate
- Template
Type Unknown - Unknown
- Template
Type Arm Template - ArmTemplate
- Unknown
- Unknown
- Arm
Template - ArmTemplate
- Unknown
- Unknown
- Arm
Template - ArmTemplate
- UNKNOWN
- Unknown
- ARM_TEMPLATE
- ArmTemplate
- "Unknown"
- Unknown
- "Arm
Template" - ArmTemplate
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:hybridnetwork:NetworkServiceDesignVersion TestVersion /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HybridNetwork/publishers/{publisherName}/networkServiceDesignGroups/{networkServiceDesignGroupName}/networkServiceDesignVersions/{networkServiceDesignVersionName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0