azure-native.edge.DynamicSchemaVersion
Explore with Pulumi AI
Dynamic Schema Version Resource
Uses Azure REST API version 2025-06-01.
Example Usage
DynamicSchemaVersions_CreateOrUpdate_MaximumSet
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var dynamicSchemaVersion = new AzureNative.Edge.DynamicSchemaVersion("dynamicSchemaVersion", new()
{
DynamicSchemaName = "testname",
Properties = new AzureNative.Edge.Inputs.SchemaVersionPropertiesArgs
{
Value = "uiaqdwsi",
},
ResourceGroupName = "rgconfigurationmanager",
SchemaName = "testname",
SchemaVersionName = "1.0.0",
});
});
package main
import (
edge "github.com/pulumi/pulumi-azure-native-sdk/edge/v3"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := edge.NewDynamicSchemaVersion(ctx, "dynamicSchemaVersion", &edge.DynamicSchemaVersionArgs{
DynamicSchemaName: pulumi.String("testname"),
Properties: &edge.SchemaVersionPropertiesArgs{
Value: pulumi.String("uiaqdwsi"),
},
ResourceGroupName: pulumi.String("rgconfigurationmanager"),
SchemaName: pulumi.String("testname"),
SchemaVersionName: pulumi.String("1.0.0"),
})
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.edge.DynamicSchemaVersion;
import com.pulumi.azurenative.edge.DynamicSchemaVersionArgs;
import com.pulumi.azurenative.edge.inputs.SchemaVersionPropertiesArgs;
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 dynamicSchemaVersion = new DynamicSchemaVersion("dynamicSchemaVersion", DynamicSchemaVersionArgs.builder()
.dynamicSchemaName("testname")
.properties(SchemaVersionPropertiesArgs.builder()
.value("uiaqdwsi")
.build())
.resourceGroupName("rgconfigurationmanager")
.schemaName("testname")
.schemaVersionName("1.0.0")
.build());
}
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const dynamicSchemaVersion = new azure_native.edge.DynamicSchemaVersion("dynamicSchemaVersion", {
dynamicSchemaName: "testname",
properties: {
value: "uiaqdwsi",
},
resourceGroupName: "rgconfigurationmanager",
schemaName: "testname",
schemaVersionName: "1.0.0",
});
import pulumi
import pulumi_azure_native as azure_native
dynamic_schema_version = azure_native.edge.DynamicSchemaVersion("dynamicSchemaVersion",
dynamic_schema_name="testname",
properties={
"value": "uiaqdwsi",
},
resource_group_name="rgconfigurationmanager",
schema_name="testname",
schema_version_name="1.0.0")
resources:
dynamicSchemaVersion:
type: azure-native:edge:DynamicSchemaVersion
properties:
dynamicSchemaName: testname
properties:
value: uiaqdwsi
resourceGroupName: rgconfigurationmanager
schemaName: testname
schemaVersionName: 1.0.0
Create DynamicSchemaVersion Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new DynamicSchemaVersion(name: string, args: DynamicSchemaVersionArgs, opts?: CustomResourceOptions);
@overload
def DynamicSchemaVersion(resource_name: str,
args: DynamicSchemaVersionArgs,
opts: Optional[ResourceOptions] = None)
@overload
def DynamicSchemaVersion(resource_name: str,
opts: Optional[ResourceOptions] = None,
dynamic_schema_name: Optional[str] = None,
resource_group_name: Optional[str] = None,
schema_name: Optional[str] = None,
properties: Optional[SchemaVersionPropertiesArgs] = None,
schema_version_name: Optional[str] = None)
func NewDynamicSchemaVersion(ctx *Context, name string, args DynamicSchemaVersionArgs, opts ...ResourceOption) (*DynamicSchemaVersion, error)
public DynamicSchemaVersion(string name, DynamicSchemaVersionArgs args, CustomResourceOptions? opts = null)
public DynamicSchemaVersion(String name, DynamicSchemaVersionArgs args)
public DynamicSchemaVersion(String name, DynamicSchemaVersionArgs args, CustomResourceOptions options)
type: azure-native:edge:DynamicSchemaVersion
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 DynamicSchemaVersionArgs
- 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 DynamicSchemaVersionArgs
- 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 DynamicSchemaVersionArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args DynamicSchemaVersionArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args DynamicSchemaVersionArgs
- 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 dynamicSchemaVersionResource = new AzureNative.Edge.DynamicSchemaVersion("dynamicSchemaVersionResource", new()
{
DynamicSchemaName = "string",
ResourceGroupName = "string",
SchemaName = "string",
Properties = new AzureNative.Edge.Inputs.SchemaVersionPropertiesArgs
{
Value = "string",
},
SchemaVersionName = "string",
});
example, err := edge.NewDynamicSchemaVersion(ctx, "dynamicSchemaVersionResource", &edge.DynamicSchemaVersionArgs{
DynamicSchemaName: pulumi.String("string"),
ResourceGroupName: pulumi.String("string"),
SchemaName: pulumi.String("string"),
Properties: &edge.SchemaVersionPropertiesArgs{
Value: pulumi.String("string"),
},
SchemaVersionName: pulumi.String("string"),
})
var dynamicSchemaVersionResource = new DynamicSchemaVersion("dynamicSchemaVersionResource", DynamicSchemaVersionArgs.builder()
.dynamicSchemaName("string")
.resourceGroupName("string")
.schemaName("string")
.properties(SchemaVersionPropertiesArgs.builder()
.value("string")
.build())
.schemaVersionName("string")
.build());
dynamic_schema_version_resource = azure_native.edge.DynamicSchemaVersion("dynamicSchemaVersionResource",
dynamic_schema_name="string",
resource_group_name="string",
schema_name="string",
properties={
"value": "string",
},
schema_version_name="string")
const dynamicSchemaVersionResource = new azure_native.edge.DynamicSchemaVersion("dynamicSchemaVersionResource", {
dynamicSchemaName: "string",
resourceGroupName: "string",
schemaName: "string",
properties: {
value: "string",
},
schemaVersionName: "string",
});
type: azure-native:edge:DynamicSchemaVersion
properties:
dynamicSchemaName: string
properties:
value: string
resourceGroupName: string
schemaName: string
schemaVersionName: string
DynamicSchemaVersion Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The DynamicSchemaVersion resource accepts the following input properties:
- Dynamic
Schema stringName - The name of the DynamicSchema
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Schema
Name string - The name of the Schema
- Properties
Pulumi.
Azure Native. Edge. Inputs. Schema Version Properties - The resource-specific properties for this resource.
- Schema
Version stringName - The name of the SchemaVersion
- Dynamic
Schema stringName - The name of the DynamicSchema
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Schema
Name string - The name of the Schema
- Properties
Schema
Version Properties Args - The resource-specific properties for this resource.
- Schema
Version stringName - The name of the SchemaVersion
- dynamic
Schema StringName - The name of the DynamicSchema
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- schema
Name String - The name of the Schema
- properties
Schema
Version Properties - The resource-specific properties for this resource.
- schema
Version StringName - The name of the SchemaVersion
- dynamic
Schema stringName - The name of the DynamicSchema
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- schema
Name string - The name of the Schema
- properties
Schema
Version Properties - The resource-specific properties for this resource.
- schema
Version stringName - The name of the SchemaVersion
- dynamic_
schema_ strname - The name of the DynamicSchema
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- schema_
name str - The name of the Schema
- properties
Schema
Version Properties Args - The resource-specific properties for this resource.
- schema_
version_ strname - The name of the SchemaVersion
- dynamic
Schema StringName - The name of the DynamicSchema
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- schema
Name String - The name of the Schema
- properties Property Map
- The resource-specific properties for this resource.
- schema
Version StringName - The name of the SchemaVersion
Outputs
All input properties are implicitly available as output properties. Additionally, the DynamicSchemaVersion resource produces the following output properties:
- Azure
Api stringVersion - The Azure API version of the resource.
- ETag string
- If eTag is provided in the response body, it may also be provided as a header per the normal etag convention. Entity tags are used for comparing two or more entities from the same requested resource. HTTP/1.1 uses entity tags in the etag (section 14.19), If-Match (section 14.24), If-None-Match (section 14.26), and If-Range (section 14.27) header fields.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- System
Data Pulumi.Azure Native. Edge. 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"
- Azure
Api stringVersion - The Azure API version of the resource.
- ETag string
- If eTag is provided in the response body, it may also be provided as a header per the normal etag convention. Entity tags are used for comparing two or more entities from the same requested resource. HTTP/1.1 uses entity tags in the etag (section 14.19), If-Match (section 14.24), If-None-Match (section 14.26), and If-Range (section 14.27) header fields.
- 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"
- azure
Api StringVersion - The Azure API version of the resource.
- e
Tag String - If eTag is provided in the response body, it may also be provided as a header per the normal etag convention. Entity tags are used for comparing two or more entities from the same requested resource. HTTP/1.1 uses entity tags in the etag (section 14.19), If-Match (section 14.24), If-None-Match (section 14.26), and If-Range (section 14.27) header fields.
- 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"
- azure
Api stringVersion - The Azure API version of the resource.
- e
Tag string - If eTag is provided in the response body, it may also be provided as a header per the normal etag convention. Entity tags are used for comparing two or more entities from the same requested resource. HTTP/1.1 uses entity tags in the etag (section 14.19), If-Match (section 14.24), If-None-Match (section 14.26), and If-Range (section 14.27) header fields.
- 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"
- azure_
api_ strversion - The Azure API version of the resource.
- e_
tag str - If eTag is provided in the response body, it may also be provided as a header per the normal etag convention. Entity tags are used for comparing two or more entities from the same requested resource. HTTP/1.1 uses entity tags in the etag (section 14.19), If-Match (section 14.24), If-None-Match (section 14.26), and If-Range (section 14.27) header fields.
- 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"
- azure
Api StringVersion - The Azure API version of the resource.
- e
Tag String - If eTag is provided in the response body, it may also be provided as a header per the normal etag convention. Entity tags are used for comparing two or more entities from the same requested resource. HTTP/1.1 uses entity tags in the etag (section 14.19), If-Match (section 14.24), If-None-Match (section 14.26), and If-Range (section 14.27) header fields.
- 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
SchemaVersionProperties, SchemaVersionPropertiesArgs
- Value string
- Value of schema version
- Value string
- Value of schema version
- value String
- Value of schema version
- value string
- Value of schema version
- value str
- Value of schema version
- value String
- Value of schema version
SchemaVersionPropertiesResponse, SchemaVersionPropertiesResponseArgs
- Provisioning
State string - Provisioning state of resource
- Value string
- Value of schema version
- Provisioning
State string - Provisioning state of resource
- Value string
- Value of schema version
- provisioning
State String - Provisioning state of resource
- value String
- Value of schema version
- provisioning
State string - Provisioning state of resource
- value string
- Value of schema version
- provisioning_
state str - Provisioning state of resource
- value str
- Value of schema version
- provisioning
State String - Provisioning state of resource
- value String
- Value of schema version
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.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:edge:DynamicSchemaVersion fnjgcutmsg /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Edge/schemas/{schemaName}/dynamicSchemas/{dynamicSchemaName}/versions/{schemaVersionName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0