Azure REST API version: 2021-09-01-preview. Prior API version in Azure Native 1.x: 2020-11-20.
Example Usage
ResourceTypeRegistrations_CreateOrUpdate
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var resourceTypeRegistration = new AzureNative.ProviderHub.ResourceTypeRegistration("resourceTypeRegistration", new()
{
Properties = new AzureNative.ProviderHub.Inputs.ResourceTypeRegistrationPropertiesArgs
{
Endpoints = new[]
{
new AzureNative.ProviderHub.Inputs.ResourceTypeEndpointArgs
{
ApiVersions = new[]
{
"2020-06-01-preview",
},
Locations = new[]
{
"West US",
"East US",
"North Europe",
},
RequiredFeatures = new[]
{
"<feature flag>",
},
},
},
Management = new AzureNative.ProviderHub.Inputs.ResourceTypeRegistrationPropertiesManagementArgs
{
IncidentContactEmail = "helpme@contoso.com",
IncidentRoutingService = "",
IncidentRoutingTeam = "",
ManifestOwners = new[]
{
"SPARTA-PlatformServiceAdministrator",
},
ResourceAccessPolicy = "NotSpecified",
ServiceTreeInfos = new[]
{
new AzureNative.ProviderHub.Inputs.ServiceTreeInfoArgs
{
ComponentId = "d1b7d8ba-05e2-48e6-90d6-d781b99c6e69",
Readiness = AzureNative.ProviderHub.Readiness.InDevelopment,
ServiceId = "d1b7d8ba-05e2-48e6-90d6-d781b99c6e69",
},
},
},
OpenApiConfiguration = new AzureNative.ProviderHub.Inputs.OpenApiConfigurationArgs
{
Validation = new AzureNative.ProviderHub.Inputs.OpenApiValidationArgs
{
AllowNoncompliantCollectionResponse = true,
},
},
Regionality = AzureNative.ProviderHub.Regionality.Regional,
ResourceConcurrencyControlOptions =
{
{ "patch", new AzureNative.ProviderHub.Inputs.ResourceConcurrencyControlOptionArgs
{
Policy = AzureNative.ProviderHub.Policy.SynchronizeBeginExtension,
} },
{ "post", new AzureNative.ProviderHub.Inputs.ResourceConcurrencyControlOptionArgs
{
Policy = AzureNative.ProviderHub.Policy.SynchronizeBeginExtension,
} },
{ "put", new AzureNative.ProviderHub.Inputs.ResourceConcurrencyControlOptionArgs
{
Policy = AzureNative.ProviderHub.Policy.SynchronizeBeginExtension,
} },
},
ResourceGraphConfiguration = new AzureNative.ProviderHub.Inputs.ResourceTypeRegistrationPropertiesResourceGraphConfigurationArgs
{
ApiVersion = "2019-01-01",
Enabled = true,
},
RoutingType = AzureNative.ProviderHub.RoutingType.Default,
SwaggerSpecifications = new[]
{
new AzureNative.ProviderHub.Inputs.SwaggerSpecificationArgs
{
ApiVersions = new[]
{
"2020-06-01-preview",
},
SwaggerSpecFolderUri = "https://github.com/Azure/azure-rest-api-specs/blob/feature/azure/contoso/specification/contoso/resource-manager/Microsoft.SampleRP/",
},
},
},
ProviderNamespace = "Microsoft.Contoso",
ResourceType = "employees",
});
});
package main
import (
providerhub "github.com/pulumi/pulumi-azure-native-sdk/providerhub/v2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := providerhub.NewResourceTypeRegistration(ctx, "resourceTypeRegistration", &providerhub.ResourceTypeRegistrationArgs{
Properties: &providerhub.ResourceTypeRegistrationPropertiesArgs{
Endpoints: providerhub.ResourceTypeEndpointArray{
&providerhub.ResourceTypeEndpointArgs{
ApiVersions: pulumi.StringArray{
pulumi.String("2020-06-01-preview"),
},
Locations: pulumi.StringArray{
pulumi.String("West US"),
pulumi.String("East US"),
pulumi.String("North Europe"),
},
RequiredFeatures: pulumi.StringArray{
pulumi.String("<feature flag>"),
},
},
},
Management: &providerhub.ResourceTypeRegistrationPropertiesManagementArgs{
IncidentContactEmail: pulumi.String("helpme@contoso.com"),
IncidentRoutingService: pulumi.String(""),
IncidentRoutingTeam: pulumi.String(""),
ManifestOwners: pulumi.StringArray{
pulumi.String("SPARTA-PlatformServiceAdministrator"),
},
ResourceAccessPolicy: pulumi.String("NotSpecified"),
ServiceTreeInfos: providerhub.ServiceTreeInfoArray{
&providerhub.ServiceTreeInfoArgs{
ComponentId: pulumi.String("d1b7d8ba-05e2-48e6-90d6-d781b99c6e69"),
Readiness: pulumi.String(providerhub.ReadinessInDevelopment),
ServiceId: pulumi.String("d1b7d8ba-05e2-48e6-90d6-d781b99c6e69"),
},
},
},
OpenApiConfiguration: &providerhub.OpenApiConfigurationArgs{
Validation: &providerhub.OpenApiValidationArgs{
AllowNoncompliantCollectionResponse: pulumi.Bool(true),
},
},
Regionality: pulumi.String(providerhub.RegionalityRegional),
ResourceConcurrencyControlOptions: providerhub.ResourceConcurrencyControlOptionMap{
"patch": &providerhub.ResourceConcurrencyControlOptionArgs{
Policy: pulumi.String(providerhub.PolicySynchronizeBeginExtension),
},
"post": &providerhub.ResourceConcurrencyControlOptionArgs{
Policy: pulumi.String(providerhub.PolicySynchronizeBeginExtension),
},
"put": &providerhub.ResourceConcurrencyControlOptionArgs{
Policy: pulumi.String(providerhub.PolicySynchronizeBeginExtension),
},
},
ResourceGraphConfiguration: &providerhub.ResourceTypeRegistrationPropertiesResourceGraphConfigurationArgs{
ApiVersion: pulumi.String("2019-01-01"),
Enabled: pulumi.Bool(true),
},
RoutingType: pulumi.String(providerhub.RoutingTypeDefault),
SwaggerSpecifications: providerhub.SwaggerSpecificationArray{
&providerhub.SwaggerSpecificationArgs{
ApiVersions: pulumi.StringArray{
pulumi.String("2020-06-01-preview"),
},
SwaggerSpecFolderUri: pulumi.String("https://github.com/Azure/azure-rest-api-specs/blob/feature/azure/contoso/specification/contoso/resource-manager/Microsoft.SampleRP/"),
},
},
},
ProviderNamespace: pulumi.String("Microsoft.Contoso"),
ResourceType: pulumi.String("employees"),
})
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.providerhub.ResourceTypeRegistration;
import com.pulumi.azurenative.providerhub.ResourceTypeRegistrationArgs;
import com.pulumi.azurenative.providerhub.inputs.ResourceTypeRegistrationPropertiesArgs;
import com.pulumi.azurenative.providerhub.inputs.ResourceTypeRegistrationPropertiesManagementArgs;
import com.pulumi.azurenative.providerhub.inputs.OpenApiConfigurationArgs;
import com.pulumi.azurenative.providerhub.inputs.OpenApiValidationArgs;
import com.pulumi.azurenative.providerhub.inputs.ResourceTypeRegistrationPropertiesResourceGraphConfigurationArgs;
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 resourceTypeRegistration = new ResourceTypeRegistration("resourceTypeRegistration", ResourceTypeRegistrationArgs.builder()
.properties(ResourceTypeRegistrationPropertiesArgs.builder()
.endpoints(ResourceTypeEndpointArgs.builder()
.apiVersions("2020-06-01-preview")
.locations(
"West US",
"East US",
"North Europe")
.requiredFeatures("<feature flag>")
.build())
.management(ResourceTypeRegistrationPropertiesManagementArgs.builder()
.incidentContactEmail("helpme@contoso.com")
.incidentRoutingService("")
.incidentRoutingTeam("")
.manifestOwners("SPARTA-PlatformServiceAdministrator")
.resourceAccessPolicy("NotSpecified")
.serviceTreeInfos(ServiceTreeInfoArgs.builder()
.componentId("d1b7d8ba-05e2-48e6-90d6-d781b99c6e69")
.readiness("InDevelopment")
.serviceId("d1b7d8ba-05e2-48e6-90d6-d781b99c6e69")
.build())
.build())
.openApiConfiguration(OpenApiConfigurationArgs.builder()
.validation(OpenApiValidationArgs.builder()
.allowNoncompliantCollectionResponse(true)
.build())
.build())
.regionality("Regional")
.resourceConcurrencyControlOptions(Map.ofEntries(
Map.entry("patch", Map.of("policy", "SynchronizeBeginExtension")),
Map.entry("post", Map.of("policy", "SynchronizeBeginExtension")),
Map.entry("put", Map.of("policy", "SynchronizeBeginExtension"))
))
.resourceGraphConfiguration(ResourceTypeRegistrationPropertiesResourceGraphConfigurationArgs.builder()
.apiVersion("2019-01-01")
.enabled(true)
.build())
.routingType("Default")
.swaggerSpecifications(SwaggerSpecificationArgs.builder()
.apiVersions("2020-06-01-preview")
.swaggerSpecFolderUri("https://github.com/Azure/azure-rest-api-specs/blob/feature/azure/contoso/specification/contoso/resource-manager/Microsoft.SampleRP/")
.build())
.build())
.providerNamespace("Microsoft.Contoso")
.resourceType("employees")
.build());
}
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const resourceTypeRegistration = new azure_native.providerhub.ResourceTypeRegistration("resourceTypeRegistration", {
properties: {
endpoints: [{
apiVersions: ["2020-06-01-preview"],
locations: [
"West US",
"East US",
"North Europe",
],
requiredFeatures: ["<feature flag>"],
}],
management: {
incidentContactEmail: "helpme@contoso.com",
incidentRoutingService: "",
incidentRoutingTeam: "",
manifestOwners: ["SPARTA-PlatformServiceAdministrator"],
resourceAccessPolicy: "NotSpecified",
serviceTreeInfos: [{
componentId: "d1b7d8ba-05e2-48e6-90d6-d781b99c6e69",
readiness: azure_native.providerhub.Readiness.InDevelopment,
serviceId: "d1b7d8ba-05e2-48e6-90d6-d781b99c6e69",
}],
},
openApiConfiguration: {
validation: {
allowNoncompliantCollectionResponse: true,
},
},
regionality: azure_native.providerhub.Regionality.Regional,
resourceConcurrencyControlOptions: {
patch: {
policy: azure_native.providerhub.Policy.SynchronizeBeginExtension,
},
post: {
policy: azure_native.providerhub.Policy.SynchronizeBeginExtension,
},
put: {
policy: azure_native.providerhub.Policy.SynchronizeBeginExtension,
},
},
resourceGraphConfiguration: {
apiVersion: "2019-01-01",
enabled: true,
},
routingType: azure_native.providerhub.RoutingType.Default,
swaggerSpecifications: [{
apiVersions: ["2020-06-01-preview"],
swaggerSpecFolderUri: "https://github.com/Azure/azure-rest-api-specs/blob/feature/azure/contoso/specification/contoso/resource-manager/Microsoft.SampleRP/",
}],
},
providerNamespace: "Microsoft.Contoso",
resourceType: "employees",
});
import pulumi
import pulumi_azure_native as azure_native
resource_type_registration = azure_native.providerhub.ResourceTypeRegistration("resourceTypeRegistration",
properties={
"endpoints": [{
"api_versions": ["2020-06-01-preview"],
"locations": [
"West US",
"East US",
"North Europe",
],
"required_features": ["<feature flag>"],
}],
"management": {
"incident_contact_email": "helpme@contoso.com",
"incident_routing_service": "",
"incident_routing_team": "",
"manifest_owners": ["SPARTA-PlatformServiceAdministrator"],
"resource_access_policy": "NotSpecified",
"service_tree_infos": [{
"component_id": "d1b7d8ba-05e2-48e6-90d6-d781b99c6e69",
"readiness": azure_native.providerhub.Readiness.IN_DEVELOPMENT,
"service_id": "d1b7d8ba-05e2-48e6-90d6-d781b99c6e69",
}],
},
"open_api_configuration": {
"validation": {
"allow_noncompliant_collection_response": True,
},
},
"regionality": azure_native.providerhub.Regionality.REGIONAL,
"resource_concurrency_control_options": {
"patch": {
"policy": azure_native.providerhub.Policy.SYNCHRONIZE_BEGIN_EXTENSION,
},
"post": {
"policy": azure_native.providerhub.Policy.SYNCHRONIZE_BEGIN_EXTENSION,
},
"put": {
"policy": azure_native.providerhub.Policy.SYNCHRONIZE_BEGIN_EXTENSION,
},
},
"resource_graph_configuration": {
"api_version": "2019-01-01",
"enabled": True,
},
"routing_type": azure_native.providerhub.RoutingType.DEFAULT,
"swagger_specifications": [{
"api_versions": ["2020-06-01-preview"],
"swagger_spec_folder_uri": "https://github.com/Azure/azure-rest-api-specs/blob/feature/azure/contoso/specification/contoso/resource-manager/Microsoft.SampleRP/",
}],
},
provider_namespace="Microsoft.Contoso",
resource_type="employees")
resources:
resourceTypeRegistration:
type: azure-native:providerhub:ResourceTypeRegistration
properties:
properties:
endpoints:
- apiVersions:
- 2020-06-01-preview
locations:
- West US
- East US
- North Europe
requiredFeatures:
- <feature flag>
management:
incidentContactEmail: helpme@contoso.com
incidentRoutingService: ""
incidentRoutingTeam: ""
manifestOwners:
- SPARTA-PlatformServiceAdministrator
resourceAccessPolicy: NotSpecified
serviceTreeInfos:
- componentId: d1b7d8ba-05e2-48e6-90d6-d781b99c6e69
readiness: InDevelopment
serviceId: d1b7d8ba-05e2-48e6-90d6-d781b99c6e69
openApiConfiguration:
validation:
allowNoncompliantCollectionResponse: true
regionality: Regional
resourceConcurrencyControlOptions:
patch:
policy: SynchronizeBeginExtension
post:
policy: SynchronizeBeginExtension
put:
policy: SynchronizeBeginExtension
resourceGraphConfiguration:
apiVersion: 2019-01-01
enabled: true
routingType: Default
swaggerSpecifications:
- apiVersions:
- 2020-06-01-preview
swaggerSpecFolderUri: https://github.com/Azure/azure-rest-api-specs/blob/feature/azure/contoso/specification/contoso/resource-manager/Microsoft.SampleRP/
providerNamespace: Microsoft.Contoso
resourceType: employees
Create ResourceTypeRegistration Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ResourceTypeRegistration(name: string, args: ResourceTypeRegistrationArgs, opts?: CustomResourceOptions);@overload
def ResourceTypeRegistration(resource_name: str,
args: ResourceTypeRegistrationInitArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ResourceTypeRegistration(resource_name: str,
opts: Optional[ResourceOptions] = None,
provider_namespace: Optional[str] = None,
properties: Optional[ResourceTypeRegistrationPropertiesArgs] = None,
resource_type: Optional[str] = None)func NewResourceTypeRegistration(ctx *Context, name string, args ResourceTypeRegistrationArgs, opts ...ResourceOption) (*ResourceTypeRegistration, error)public ResourceTypeRegistration(string name, ResourceTypeRegistrationArgs args, CustomResourceOptions? opts = null)
public ResourceTypeRegistration(String name, ResourceTypeRegistrationArgs args)
public ResourceTypeRegistration(String name, ResourceTypeRegistrationArgs args, CustomResourceOptions options)
type: azure-native:providerhub:ResourceTypeRegistration
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 ResourceTypeRegistrationArgs
- 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 ResourceTypeRegistrationInitArgs
- 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 ResourceTypeRegistrationArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ResourceTypeRegistrationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ResourceTypeRegistrationArgs
- 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 resourceTypeRegistrationResource = new AzureNative.Providerhub.ResourceTypeRegistration("resourceTypeRegistrationResource", new()
{
ProviderNamespace = "string",
Properties =
{
{ "allowedUnauthorizedActions", new[]
{
"string",
} },
{ "authorizationActionMappings", new[]
{
{
{ "desired", "string" },
{ "original", "string" },
},
} },
{ "checkNameAvailabilitySpecifications",
{
{ "enableDefaultValidation", false },
{ "resourceTypesWithCustomValidation", new[]
{
"string",
} },
} },
{ "defaultApiVersion", "string" },
{ "disallowedActionVerbs", new[]
{
"string",
} },
{ "enableAsyncOperation", false },
{ "enableThirdPartyS2S", false },
{ "endpoints", new[]
{
{
{ "apiVersions", new[]
{
"string",
} },
{ "enabled", false },
{ "endpointType", "string" },
{ "extensions", new[]
{
{
{ "endpointUri", "string" },
{ "extensionCategories", new[]
{
"string",
} },
{ "timeout", "string" },
},
} },
{ "featuresRule",
{
{ "requiredFeaturesPolicy", "string" },
} },
{ "locations", new[]
{
"string",
} },
{ "requiredFeatures", new[]
{
"string",
} },
{ "timeout", "string" },
},
} },
{ "extendedLocations", new[]
{
{
{ "supportedPolicy", "string" },
{ "type", "string" },
},
} },
{ "extensionOptions",
{
{ "resourceCreationBegin",
{
{ "request", new[]
{
"string",
} },
{ "response", new[]
{
"string",
} },
} },
} },
{ "featuresRule",
{
{ "requiredFeaturesPolicy", "string" },
} },
{ "identityManagement",
{
{ "applicationId", "string" },
{ "type", "string" },
} },
{ "isPureProxy", false },
{ "linkedAccessChecks", new[]
{
{
{ "actionName", "string" },
{ "linkedAction", "string" },
{ "linkedActionVerb", "string" },
{ "linkedProperty", "string" },
{ "linkedType", "string" },
},
} },
{ "loggingRules", new[]
{
{
{ "action", "string" },
{ "detailLevel", "string" },
{ "direction", "string" },
{ "hiddenPropertyPaths",
{
{ "hiddenPathsOnRequest", new[]
{
"string",
} },
{ "hiddenPathsOnResponse", new[]
{
"string",
} },
} },
},
} },
{ "management",
{
{ "incidentContactEmail", "string" },
{ "incidentRoutingService", "string" },
{ "incidentRoutingTeam", "string" },
{ "manifestOwners", new[]
{
"string",
} },
{ "resourceAccessPolicy", "string" },
{ "resourceAccessRoles", new[]
{
"any",
} },
{ "schemaOwners", new[]
{
"string",
} },
{ "serviceTreeInfos", new[]
{
{
{ "componentId", "string" },
{ "readiness", "string" },
{ "serviceId", "string" },
},
} },
} },
{ "marketplaceType", "string" },
{ "openApiConfiguration",
{
{ "validation",
{
{ "allowNoncompliantCollectionResponse", false },
} },
} },
{ "provisioningState", "string" },
{ "regionality", "string" },
{ "requestHeaderOptions",
{
{ "optInHeaders", "string" },
} },
{ "requiredFeatures", new[]
{
"string",
} },
{ "resourceConcurrencyControlOptions",
{
{ "string",
{
{ "policy", "string" },
} },
} },
{ "resourceDeletionPolicy", "string" },
{ "resourceGraphConfiguration",
{
{ "apiVersion", "string" },
{ "enabled", false },
} },
{ "resourceMovePolicy",
{
{ "crossResourceGroupMoveEnabled", false },
{ "crossSubscriptionMoveEnabled", false },
{ "validationRequired", false },
} },
{ "routingType", "string" },
{ "serviceTreeInfos", new[]
{
{
{ "componentId", "string" },
{ "readiness", "string" },
{ "serviceId", "string" },
},
} },
{ "subscriptionLifecycleNotificationSpecifications",
{
{ "softDeleteTTL", "string" },
{ "subscriptionStateOverrideActions", new[]
{
{
{ "action", "string" },
{ "state", "string" },
},
} },
} },
{ "subscriptionStateRules", new[]
{
{
{ "allowedActions", new[]
{
"string",
} },
{ "state", "string" },
},
} },
{ "swaggerSpecifications", new[]
{
{
{ "apiVersions", new[]
{
"string",
} },
{ "swaggerSpecFolderUri", "string" },
},
} },
{ "templateDeploymentOptions",
{
{ "preflightOptions", new[]
{
"string",
} },
{ "preflightSupported", false },
} },
{ "throttlingRules", new[]
{
{
{ "action", "string" },
{ "metrics", new[]
{
{
{ "limit", 0 },
{ "type", "string" },
{ "interval", "string" },
},
} },
{ "requiredFeatures", new[]
{
"string",
} },
},
} },
},
ResourceType = "string",
});
example, err := providerhub.NewResourceTypeRegistration(ctx, "resourceTypeRegistrationResource", &providerhub.ResourceTypeRegistrationArgs{
ProviderNamespace: "string",
Properties: map[string]interface{}{
"allowedUnauthorizedActions": []string{
"string",
},
"authorizationActionMappings": []map[string]interface{}{
map[string]interface{}{
"desired": "string",
"original": "string",
},
},
"checkNameAvailabilitySpecifications": map[string]interface{}{
"enableDefaultValidation": false,
"resourceTypesWithCustomValidation": []string{
"string",
},
},
"defaultApiVersion": "string",
"disallowedActionVerbs": []string{
"string",
},
"enableAsyncOperation": false,
"enableThirdPartyS2S": false,
"endpoints": []map[string]interface{}{
map[string]interface{}{
"apiVersions": []string{
"string",
},
"enabled": false,
"endpointType": "string",
"extensions": []map[string]interface{}{
map[string]interface{}{
"endpointUri": "string",
"extensionCategories": []string{
"string",
},
"timeout": "string",
},
},
"featuresRule": map[string]interface{}{
"requiredFeaturesPolicy": "string",
},
"locations": []string{
"string",
},
"requiredFeatures": []string{
"string",
},
"timeout": "string",
},
},
"extendedLocations": []map[string]interface{}{
map[string]interface{}{
"supportedPolicy": "string",
"type": "string",
},
},
"extensionOptions": map[string]interface{}{
"resourceCreationBegin": map[string]interface{}{
"request": []string{
"string",
},
"response": []string{
"string",
},
},
},
"featuresRule": map[string]interface{}{
"requiredFeaturesPolicy": "string",
},
"identityManagement": map[string]interface{}{
"applicationId": "string",
"type": "string",
},
"isPureProxy": false,
"linkedAccessChecks": []map[string]interface{}{
map[string]interface{}{
"actionName": "string",
"linkedAction": "string",
"linkedActionVerb": "string",
"linkedProperty": "string",
"linkedType": "string",
},
},
"loggingRules": []map[string]interface{}{
map[string]interface{}{
"action": "string",
"detailLevel": "string",
"direction": "string",
"hiddenPropertyPaths": map[string]interface{}{
"hiddenPathsOnRequest": []string{
"string",
},
"hiddenPathsOnResponse": []string{
"string",
},
},
},
},
"management": map[string]interface{}{
"incidentContactEmail": "string",
"incidentRoutingService": "string",
"incidentRoutingTeam": "string",
"manifestOwners": []string{
"string",
},
"resourceAccessPolicy": "string",
"resourceAccessRoles": []string{
"any",
},
"schemaOwners": []string{
"string",
},
"serviceTreeInfos": []map[string]interface{}{
map[string]interface{}{
"componentId": "string",
"readiness": "string",
"serviceId": "string",
},
},
},
"marketplaceType": "string",
"openApiConfiguration": map[string]interface{}{
"validation": map[string]interface{}{
"allowNoncompliantCollectionResponse": false,
},
},
"provisioningState": "string",
"regionality": "string",
"requestHeaderOptions": map[string]interface{}{
"optInHeaders": "string",
},
"requiredFeatures": []string{
"string",
},
"resourceConcurrencyControlOptions": map[string]interface{}{
"string": map[string]interface{}{
"policy": "string",
},
},
"resourceDeletionPolicy": "string",
"resourceGraphConfiguration": map[string]interface{}{
"apiVersion": "string",
"enabled": false,
},
"resourceMovePolicy": map[string]interface{}{
"crossResourceGroupMoveEnabled": false,
"crossSubscriptionMoveEnabled": false,
"validationRequired": false,
},
"routingType": "string",
"serviceTreeInfos": []map[string]interface{}{
map[string]interface{}{
"componentId": "string",
"readiness": "string",
"serviceId": "string",
},
},
"subscriptionLifecycleNotificationSpecifications": map[string]interface{}{
"softDeleteTTL": "string",
"subscriptionStateOverrideActions": []map[string]interface{}{
map[string]interface{}{
"action": "string",
"state": "string",
},
},
},
"subscriptionStateRules": []map[string]interface{}{
map[string]interface{}{
"allowedActions": []string{
"string",
},
"state": "string",
},
},
"swaggerSpecifications": []map[string]interface{}{
map[string]interface{}{
"apiVersions": []string{
"string",
},
"swaggerSpecFolderUri": "string",
},
},
"templateDeploymentOptions": map[string]interface{}{
"preflightOptions": []string{
"string",
},
"preflightSupported": false,
},
"throttlingRules": []map[string]interface{}{
map[string]interface{}{
"action": "string",
"metrics": []map[string]interface{}{
map[string]interface{}{
"limit": 0,
"type": "string",
"interval": "string",
},
},
"requiredFeatures": []string{
"string",
},
},
},
},
ResourceType: "string",
})
var resourceTypeRegistrationResource = new ResourceTypeRegistration("resourceTypeRegistrationResource", ResourceTypeRegistrationArgs.builder()
.providerNamespace("string")
.properties(Map.ofEntries(
Map.entry("allowedUnauthorizedActions", List.of("string")),
Map.entry("authorizationActionMappings", List.of(Map.ofEntries(
Map.entry("desired", "string"),
Map.entry("original", "string")
))),
Map.entry("checkNameAvailabilitySpecifications", Map.ofEntries(
Map.entry("enableDefaultValidation", false),
Map.entry("resourceTypesWithCustomValidation", List.of("string"))
)),
Map.entry("defaultApiVersion", "string"),
Map.entry("disallowedActionVerbs", List.of("string")),
Map.entry("enableAsyncOperation", false),
Map.entry("enableThirdPartyS2S", false),
Map.entry("endpoints", List.of(Map.ofEntries(
Map.entry("apiVersions", List.of("string")),
Map.entry("enabled", false),
Map.entry("endpointType", "string"),
Map.entry("extensions", List.of(Map.ofEntries(
Map.entry("endpointUri", "string"),
Map.entry("extensionCategories", List.of("string")),
Map.entry("timeout", "string")
))),
Map.entry("featuresRule", Map.of("requiredFeaturesPolicy", "string")),
Map.entry("locations", List.of("string")),
Map.entry("requiredFeatures", List.of("string")),
Map.entry("timeout", "string")
))),
Map.entry("extendedLocations", List.of(Map.ofEntries(
Map.entry("supportedPolicy", "string"),
Map.entry("type", "string")
))),
Map.entry("extensionOptions", Map.of("resourceCreationBegin", Map.ofEntries(
Map.entry("request", List.of("string")),
Map.entry("response", List.of("string"))
))),
Map.entry("featuresRule", Map.of("requiredFeaturesPolicy", "string")),
Map.entry("identityManagement", Map.ofEntries(
Map.entry("applicationId", "string"),
Map.entry("type", "string")
)),
Map.entry("isPureProxy", false),
Map.entry("linkedAccessChecks", List.of(Map.ofEntries(
Map.entry("actionName", "string"),
Map.entry("linkedAction", "string"),
Map.entry("linkedActionVerb", "string"),
Map.entry("linkedProperty", "string"),
Map.entry("linkedType", "string")
))),
Map.entry("loggingRules", List.of(Map.ofEntries(
Map.entry("action", "string"),
Map.entry("detailLevel", "string"),
Map.entry("direction", "string"),
Map.entry("hiddenPropertyPaths", Map.ofEntries(
Map.entry("hiddenPathsOnRequest", List.of("string")),
Map.entry("hiddenPathsOnResponse", List.of("string"))
))
))),
Map.entry("management", Map.ofEntries(
Map.entry("incidentContactEmail", "string"),
Map.entry("incidentRoutingService", "string"),
Map.entry("incidentRoutingTeam", "string"),
Map.entry("manifestOwners", List.of("string")),
Map.entry("resourceAccessPolicy", "string"),
Map.entry("resourceAccessRoles", List.of("any")),
Map.entry("schemaOwners", List.of("string")),
Map.entry("serviceTreeInfos", List.of(Map.ofEntries(
Map.entry("componentId", "string"),
Map.entry("readiness", "string"),
Map.entry("serviceId", "string")
)))
)),
Map.entry("marketplaceType", "string"),
Map.entry("openApiConfiguration", Map.of("validation", Map.of("allowNoncompliantCollectionResponse", false))),
Map.entry("provisioningState", "string"),
Map.entry("regionality", "string"),
Map.entry("requestHeaderOptions", Map.of("optInHeaders", "string")),
Map.entry("requiredFeatures", List.of("string")),
Map.entry("resourceConcurrencyControlOptions", Map.of("string", Map.of("policy", "string"))),
Map.entry("resourceDeletionPolicy", "string"),
Map.entry("resourceGraphConfiguration", Map.ofEntries(
Map.entry("apiVersion", "string"),
Map.entry("enabled", false)
)),
Map.entry("resourceMovePolicy", Map.ofEntries(
Map.entry("crossResourceGroupMoveEnabled", false),
Map.entry("crossSubscriptionMoveEnabled", false),
Map.entry("validationRequired", false)
)),
Map.entry("routingType", "string"),
Map.entry("serviceTreeInfos", List.of(Map.ofEntries(
Map.entry("componentId", "string"),
Map.entry("readiness", "string"),
Map.entry("serviceId", "string")
))),
Map.entry("subscriptionLifecycleNotificationSpecifications", Map.ofEntries(
Map.entry("softDeleteTTL", "string"),
Map.entry("subscriptionStateOverrideActions", List.of(Map.ofEntries(
Map.entry("action", "string"),
Map.entry("state", "string")
)))
)),
Map.entry("subscriptionStateRules", List.of(Map.ofEntries(
Map.entry("allowedActions", List.of("string")),
Map.entry("state", "string")
))),
Map.entry("swaggerSpecifications", List.of(Map.ofEntries(
Map.entry("apiVersions", List.of("string")),
Map.entry("swaggerSpecFolderUri", "string")
))),
Map.entry("templateDeploymentOptions", Map.ofEntries(
Map.entry("preflightOptions", List.of("string")),
Map.entry("preflightSupported", false)
)),
Map.entry("throttlingRules", List.of(Map.ofEntries(
Map.entry("action", "string"),
Map.entry("metrics", List.of(Map.ofEntries(
Map.entry("limit", 0),
Map.entry("type", "string"),
Map.entry("interval", "string")
))),
Map.entry("requiredFeatures", List.of("string"))
)))
))
.resourceType("string")
.build());
resource_type_registration_resource = azure_native.providerhub.ResourceTypeRegistration("resourceTypeRegistrationResource",
provider_namespace=string,
properties={
allowedUnauthorizedActions: [string],
authorizationActionMappings: [{
desired: string,
original: string,
}],
checkNameAvailabilitySpecifications: {
enableDefaultValidation: False,
resourceTypesWithCustomValidation: [string],
},
defaultApiVersion: string,
disallowedActionVerbs: [string],
enableAsyncOperation: False,
enableThirdPartyS2S: False,
endpoints: [{
apiVersions: [string],
enabled: False,
endpointType: string,
extensions: [{
endpointUri: string,
extensionCategories: [string],
timeout: string,
}],
featuresRule: {
requiredFeaturesPolicy: string,
},
locations: [string],
requiredFeatures: [string],
timeout: string,
}],
extendedLocations: [{
supportedPolicy: string,
type: string,
}],
extensionOptions: {
resourceCreationBegin: {
request: [string],
response: [string],
},
},
featuresRule: {
requiredFeaturesPolicy: string,
},
identityManagement: {
applicationId: string,
type: string,
},
isPureProxy: False,
linkedAccessChecks: [{
actionName: string,
linkedAction: string,
linkedActionVerb: string,
linkedProperty: string,
linkedType: string,
}],
loggingRules: [{
action: string,
detailLevel: string,
direction: string,
hiddenPropertyPaths: {
hiddenPathsOnRequest: [string],
hiddenPathsOnResponse: [string],
},
}],
management: {
incidentContactEmail: string,
incidentRoutingService: string,
incidentRoutingTeam: string,
manifestOwners: [string],
resourceAccessPolicy: string,
resourceAccessRoles: [any],
schemaOwners: [string],
serviceTreeInfos: [{
componentId: string,
readiness: string,
serviceId: string,
}],
},
marketplaceType: string,
openApiConfiguration: {
validation: {
allowNoncompliantCollectionResponse: False,
},
},
provisioningState: string,
regionality: string,
requestHeaderOptions: {
optInHeaders: string,
},
requiredFeatures: [string],
resourceConcurrencyControlOptions: {
string: {
policy: string,
},
},
resourceDeletionPolicy: string,
resourceGraphConfiguration: {
apiVersion: string,
enabled: False,
},
resourceMovePolicy: {
crossResourceGroupMoveEnabled: False,
crossSubscriptionMoveEnabled: False,
validationRequired: False,
},
routingType: string,
serviceTreeInfos: [{
componentId: string,
readiness: string,
serviceId: string,
}],
subscriptionLifecycleNotificationSpecifications: {
softDeleteTTL: string,
subscriptionStateOverrideActions: [{
action: string,
state: string,
}],
},
subscriptionStateRules: [{
allowedActions: [string],
state: string,
}],
swaggerSpecifications: [{
apiVersions: [string],
swaggerSpecFolderUri: string,
}],
templateDeploymentOptions: {
preflightOptions: [string],
preflightSupported: False,
},
throttlingRules: [{
action: string,
metrics: [{
limit: 0,
type: string,
interval: string,
}],
requiredFeatures: [string],
}],
},
resource_type=string)
const resourceTypeRegistrationResource = new azure_native.providerhub.ResourceTypeRegistration("resourceTypeRegistrationResource", {
providerNamespace: "string",
properties: {
allowedUnauthorizedActions: ["string"],
authorizationActionMappings: [{
desired: "string",
original: "string",
}],
checkNameAvailabilitySpecifications: {
enableDefaultValidation: false,
resourceTypesWithCustomValidation: ["string"],
},
defaultApiVersion: "string",
disallowedActionVerbs: ["string"],
enableAsyncOperation: false,
enableThirdPartyS2S: false,
endpoints: [{
apiVersions: ["string"],
enabled: false,
endpointType: "string",
extensions: [{
endpointUri: "string",
extensionCategories: ["string"],
timeout: "string",
}],
featuresRule: {
requiredFeaturesPolicy: "string",
},
locations: ["string"],
requiredFeatures: ["string"],
timeout: "string",
}],
extendedLocations: [{
supportedPolicy: "string",
type: "string",
}],
extensionOptions: {
resourceCreationBegin: {
request: ["string"],
response: ["string"],
},
},
featuresRule: {
requiredFeaturesPolicy: "string",
},
identityManagement: {
applicationId: "string",
type: "string",
},
isPureProxy: false,
linkedAccessChecks: [{
actionName: "string",
linkedAction: "string",
linkedActionVerb: "string",
linkedProperty: "string",
linkedType: "string",
}],
loggingRules: [{
action: "string",
detailLevel: "string",
direction: "string",
hiddenPropertyPaths: {
hiddenPathsOnRequest: ["string"],
hiddenPathsOnResponse: ["string"],
},
}],
management: {
incidentContactEmail: "string",
incidentRoutingService: "string",
incidentRoutingTeam: "string",
manifestOwners: ["string"],
resourceAccessPolicy: "string",
resourceAccessRoles: ["any"],
schemaOwners: ["string"],
serviceTreeInfos: [{
componentId: "string",
readiness: "string",
serviceId: "string",
}],
},
marketplaceType: "string",
openApiConfiguration: {
validation: {
allowNoncompliantCollectionResponse: false,
},
},
provisioningState: "string",
regionality: "string",
requestHeaderOptions: {
optInHeaders: "string",
},
requiredFeatures: ["string"],
resourceConcurrencyControlOptions: {
string: {
policy: "string",
},
},
resourceDeletionPolicy: "string",
resourceGraphConfiguration: {
apiVersion: "string",
enabled: false,
},
resourceMovePolicy: {
crossResourceGroupMoveEnabled: false,
crossSubscriptionMoveEnabled: false,
validationRequired: false,
},
routingType: "string",
serviceTreeInfos: [{
componentId: "string",
readiness: "string",
serviceId: "string",
}],
subscriptionLifecycleNotificationSpecifications: {
softDeleteTTL: "string",
subscriptionStateOverrideActions: [{
action: "string",
state: "string",
}],
},
subscriptionStateRules: [{
allowedActions: ["string"],
state: "string",
}],
swaggerSpecifications: [{
apiVersions: ["string"],
swaggerSpecFolderUri: "string",
}],
templateDeploymentOptions: {
preflightOptions: ["string"],
preflightSupported: false,
},
throttlingRules: [{
action: "string",
metrics: [{
limit: 0,
type: "string",
interval: "string",
}],
requiredFeatures: ["string"],
}],
},
resourceType: "string",
});
type: azure-native:providerhub:ResourceTypeRegistration
properties:
properties:
allowedUnauthorizedActions:
- string
authorizationActionMappings:
- desired: string
original: string
checkNameAvailabilitySpecifications:
enableDefaultValidation: false
resourceTypesWithCustomValidation:
- string
defaultApiVersion: string
disallowedActionVerbs:
- string
enableAsyncOperation: false
enableThirdPartyS2S: false
endpoints:
- apiVersions:
- string
enabled: false
endpointType: string
extensions:
- endpointUri: string
extensionCategories:
- string
timeout: string
featuresRule:
requiredFeaturesPolicy: string
locations:
- string
requiredFeatures:
- string
timeout: string
extendedLocations:
- supportedPolicy: string
type: string
extensionOptions:
resourceCreationBegin:
request:
- string
response:
- string
featuresRule:
requiredFeaturesPolicy: string
identityManagement:
applicationId: string
type: string
isPureProxy: false
linkedAccessChecks:
- actionName: string
linkedAction: string
linkedActionVerb: string
linkedProperty: string
linkedType: string
loggingRules:
- action: string
detailLevel: string
direction: string
hiddenPropertyPaths:
hiddenPathsOnRequest:
- string
hiddenPathsOnResponse:
- string
management:
incidentContactEmail: string
incidentRoutingService: string
incidentRoutingTeam: string
manifestOwners:
- string
resourceAccessPolicy: string
resourceAccessRoles:
- any
schemaOwners:
- string
serviceTreeInfos:
- componentId: string
readiness: string
serviceId: string
marketplaceType: string
openApiConfiguration:
validation:
allowNoncompliantCollectionResponse: false
provisioningState: string
regionality: string
requestHeaderOptions:
optInHeaders: string
requiredFeatures:
- string
resourceConcurrencyControlOptions:
string:
policy: string
resourceDeletionPolicy: string
resourceGraphConfiguration:
apiVersion: string
enabled: false
resourceMovePolicy:
crossResourceGroupMoveEnabled: false
crossSubscriptionMoveEnabled: false
validationRequired: false
routingType: string
serviceTreeInfos:
- componentId: string
readiness: string
serviceId: string
subscriptionLifecycleNotificationSpecifications:
softDeleteTTL: string
subscriptionStateOverrideActions:
- action: string
state: string
subscriptionStateRules:
- allowedActions:
- string
state: string
swaggerSpecifications:
- apiVersions:
- string
swaggerSpecFolderUri: string
templateDeploymentOptions:
preflightOptions:
- string
preflightSupported: false
throttlingRules:
- action: string
metrics:
- interval: string
limit: 0
type: string
requiredFeatures:
- string
providerNamespace: string
resourceType: string
ResourceTypeRegistration 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 ResourceTypeRegistration resource accepts the following input properties:
- Provider
Namespace string - The name of the resource provider hosted within ProviderHub.
- Properties
Pulumi.
Azure Native. Provider Hub. Inputs. Resource Type Registration Properties - Resource
Type string - The resource type.
- Provider
Namespace string - The name of the resource provider hosted within ProviderHub.
- Properties
Resource
Type Registration Properties Args - Resource
Type string - The resource type.
- provider
Namespace String - The name of the resource provider hosted within ProviderHub.
- properties
Resource
Type Registration Properties - resource
Type String - The resource type.
- provider
Namespace string - The name of the resource provider hosted within ProviderHub.
- properties
Resource
Type Registration Properties - resource
Type string - The resource type.
- provider_
namespace str - The name of the resource provider hosted within ProviderHub.
- properties
Resource
Type Registration Properties Args - resource_
type str - The resource type.
- provider
Namespace String - The name of the resource provider hosted within ProviderHub.
- properties Property Map
- resource
Type String - The resource type.
Outputs
All input properties are implicitly available as output properties. Additionally, the ResourceTypeRegistration 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. Provider Hub. Outputs. System Data Response - Metadata pertaining to creation and last modification of the resource.
- 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 - Metadata pertaining to creation and last modification of the resource.
- 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 - Metadata pertaining to creation and last modification of the resource.
- 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 - Metadata pertaining to creation and last modification of the resource.
- 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 - Metadata pertaining to creation and last modification of the resource.
- 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 - Metadata pertaining to creation and last modification of the resource.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
Supporting Types
AuthorizationActionMapping, AuthorizationActionMappingArgs
AuthorizationActionMappingResponse, AuthorizationActionMappingResponseArgs
EndpointType, EndpointTypeArgs
- Not
Specified NotSpecified- Canary
Canary- Production
Production- Test
In Production TestInProduction
- Endpoint
Type Not Specified NotSpecified- Endpoint
Type Canary Canary- Endpoint
Type Production Production- Endpoint
Type Test In Production TestInProduction
- Not
Specified NotSpecified- Canary
Canary- Production
Production- Test
In Production TestInProduction
- Not
Specified NotSpecified- Canary
Canary- Production
Production- Test
In Production TestInProduction
- NOT_SPECIFIED
NotSpecified- CANARY
Canary- PRODUCTION
Production- TEST_IN_PRODUCTION
TestInProduction
- "Not
Specified" NotSpecified- "Canary"
Canary- "Production"
Production- "Test
In Production" TestInProduction
ExtendedLocationOptions, ExtendedLocationOptionsArgs
- Supported
Policy string - Type string
- Supported
Policy string - Type string
- supported
Policy String - type String
- supported
Policy string - type string
- supported_
policy str - type str
- supported
Policy String - type String
ExtendedLocationOptionsResponse, ExtendedLocationOptionsResponseArgs
- Supported
Policy string - Type string
- Supported
Policy string - Type string
- supported
Policy String - type String
- supported
Policy string - type string
- supported_
policy str - type str
- supported
Policy String - type String
ExtensionCategory, ExtensionCategoryArgs
- Not
Specified NotSpecified- Resource
Creation Validate ResourceCreationValidate- Resource
Creation Begin ResourceCreationBegin- Resource
Creation Completed ResourceCreationCompleted- Resource
Read Validate ResourceReadValidate- Resource
Read Begin ResourceReadBegin- Resource
Patch Validate ResourcePatchValidate- Resource
Patch Completed ResourcePatchCompleted- Resource
Deletion Validate ResourceDeletionValidate- Resource
Deletion Begin ResourceDeletionBegin- Resource
Deletion Completed ResourceDeletionCompleted- Resource
Post Action ResourcePostAction- Subscription
Lifecycle Notification SubscriptionLifecycleNotification- Resource
Patch Begin ResourcePatchBegin- Resource
Move Begin ResourceMoveBegin- Resource
Move Completed ResourceMoveCompleted
- Extension
Category Not Specified NotSpecified- Extension
Category Resource Creation Validate ResourceCreationValidate- Extension
Category Resource Creation Begin ResourceCreationBegin- Extension
Category Resource Creation Completed ResourceCreationCompleted- Extension
Category Resource Read Validate ResourceReadValidate- Extension
Category Resource Read Begin ResourceReadBegin- Extension
Category Resource Patch Validate ResourcePatchValidate- Extension
Category Resource Patch Completed ResourcePatchCompleted- Extension
Category Resource Deletion Validate ResourceDeletionValidate- Extension
Category Resource Deletion Begin ResourceDeletionBegin- Extension
Category Resource Deletion Completed ResourceDeletionCompleted- Extension
Category Resource Post Action ResourcePostAction- Extension
Category Subscription Lifecycle Notification SubscriptionLifecycleNotification- Extension
Category Resource Patch Begin ResourcePatchBegin- Extension
Category Resource Move Begin ResourceMoveBegin- Extension
Category Resource Move Completed ResourceMoveCompleted
- Not
Specified NotSpecified- Resource
Creation Validate ResourceCreationValidate- Resource
Creation Begin ResourceCreationBegin- Resource
Creation Completed ResourceCreationCompleted- Resource
Read Validate ResourceReadValidate- Resource
Read Begin ResourceReadBegin- Resource
Patch Validate ResourcePatchValidate- Resource
Patch Completed ResourcePatchCompleted- Resource
Deletion Validate ResourceDeletionValidate- Resource
Deletion Begin ResourceDeletionBegin- Resource
Deletion Completed ResourceDeletionCompleted- Resource
Post Action ResourcePostAction- Subscription
Lifecycle Notification SubscriptionLifecycleNotification- Resource
Patch Begin ResourcePatchBegin- Resource
Move Begin ResourceMoveBegin- Resource
Move Completed ResourceMoveCompleted
- Not
Specified NotSpecified- Resource
Creation Validate ResourceCreationValidate- Resource
Creation Begin ResourceCreationBegin- Resource
Creation Completed ResourceCreationCompleted- Resource
Read Validate ResourceReadValidate- Resource
Read Begin ResourceReadBegin- Resource
Patch Validate ResourcePatchValidate- Resource
Patch Completed ResourcePatchCompleted- Resource
Deletion Validate ResourceDeletionValidate- Resource
Deletion Begin ResourceDeletionBegin- Resource
Deletion Completed ResourceDeletionCompleted- Resource
Post Action ResourcePostAction- Subscription
Lifecycle Notification SubscriptionLifecycleNotification- Resource
Patch Begin ResourcePatchBegin- Resource
Move Begin ResourceMoveBegin- Resource
Move Completed ResourceMoveCompleted
- NOT_SPECIFIED
NotSpecified- RESOURCE_CREATION_VALIDATE
ResourceCreationValidate- RESOURCE_CREATION_BEGIN
ResourceCreationBegin- RESOURCE_CREATION_COMPLETED
ResourceCreationCompleted- RESOURCE_READ_VALIDATE
ResourceReadValidate- RESOURCE_READ_BEGIN
ResourceReadBegin- RESOURCE_PATCH_VALIDATE
ResourcePatchValidate- RESOURCE_PATCH_COMPLETED
ResourcePatchCompleted- RESOURCE_DELETION_VALIDATE
ResourceDeletionValidate- RESOURCE_DELETION_BEGIN
ResourceDeletionBegin- RESOURCE_DELETION_COMPLETED
ResourceDeletionCompleted- RESOURCE_POST_ACTION
ResourcePostAction- SUBSCRIPTION_LIFECYCLE_NOTIFICATION
SubscriptionLifecycleNotification- RESOURCE_PATCH_BEGIN
ResourcePatchBegin- RESOURCE_MOVE_BEGIN
ResourceMoveBegin- RESOURCE_MOVE_COMPLETED
ResourceMoveCompleted
- "Not
Specified" NotSpecified- "Resource
Creation Validate" ResourceCreationValidate- "Resource
Creation Begin" ResourceCreationBegin- "Resource
Creation Completed" ResourceCreationCompleted- "Resource
Read Validate" ResourceReadValidate- "Resource
Read Begin" ResourceReadBegin- "Resource
Patch Validate" ResourcePatchValidate- "Resource
Patch Completed" ResourcePatchCompleted- "Resource
Deletion Validate" ResourceDeletionValidate- "Resource
Deletion Begin" ResourceDeletionBegin- "Resource
Deletion Completed" ResourceDeletionCompleted- "Resource
Post Action" ResourcePostAction- "Subscription
Lifecycle Notification" SubscriptionLifecycleNotification- "Resource
Patch Begin" ResourcePatchBegin- "Resource
Move Begin" ResourceMoveBegin- "Resource
Move Completed" ResourceMoveCompleted
ExtensionOptionType, ExtensionOptionTypeArgs
- Not
Specified NotSpecified- Do
Not Merge Existing Read Only And Secret Properties DoNotMergeExistingReadOnlyAndSecretProperties- Include
Internal Metadata IncludeInternalMetadata
- Extension
Option Type Not Specified NotSpecified- Extension
Option Type Do Not Merge Existing Read Only And Secret Properties DoNotMergeExistingReadOnlyAndSecretProperties- Extension
Option Type Include Internal Metadata IncludeInternalMetadata
- Not
Specified NotSpecified- Do
Not Merge Existing Read Only And Secret Properties DoNotMergeExistingReadOnlyAndSecretProperties- Include
Internal Metadata IncludeInternalMetadata
- Not
Specified NotSpecified- Do
Not Merge Existing Read Only And Secret Properties DoNotMergeExistingReadOnlyAndSecretProperties- Include
Internal Metadata IncludeInternalMetadata
- NOT_SPECIFIED
NotSpecified- DO_NOT_MERGE_EXISTING_READ_ONLY_AND_SECRET_PROPERTIES
DoNotMergeExistingReadOnlyAndSecretProperties- INCLUDE_INTERNAL_METADATA
IncludeInternalMetadata
- "Not
Specified" NotSpecified- "Do
Not Merge Existing Read Only And Secret Properties" DoNotMergeExistingReadOnlyAndSecretProperties- "Include
Internal Metadata" IncludeInternalMetadata
FeaturesPolicy, FeaturesPolicyArgs
- Any
Any- All
All
- Features
Policy Any Any- Features
Policy All All
- Any
Any- All
All
- Any
Any- All
All
- ANY
Any- ALL
All
- "Any"
Any- "All"
All
IdentityManagementTypes, IdentityManagementTypesArgs
- Not
Specified NotSpecified- System
Assigned SystemAssigned- User
Assigned UserAssigned- Actor
Actor- Delegated
Resource Identity DelegatedResourceIdentity
- Identity
Management Types Not Specified NotSpecified- Identity
Management Types System Assigned SystemAssigned- Identity
Management Types User Assigned UserAssigned- Identity
Management Types Actor Actor- Identity
Management Types Delegated Resource Identity DelegatedResourceIdentity
- Not
Specified NotSpecified- System
Assigned SystemAssigned- User
Assigned UserAssigned- Actor
Actor- Delegated
Resource Identity DelegatedResourceIdentity
- Not
Specified NotSpecified- System
Assigned SystemAssigned- User
Assigned UserAssigned- Actor
Actor- Delegated
Resource Identity DelegatedResourceIdentity
- NOT_SPECIFIED
NotSpecified- SYSTEM_ASSIGNED
SystemAssigned- USER_ASSIGNED
UserAssigned- ACTOR
Actor- DELEGATED_RESOURCE_IDENTITY
DelegatedResourceIdentity
- "Not
Specified" NotSpecified- "System
Assigned" SystemAssigned- "User
Assigned" UserAssigned- "Actor"
Actor- "Delegated
Resource Identity" DelegatedResourceIdentity
LinkedAccessCheck, LinkedAccessCheckArgs
- Action
Name string - Linked
Action string - Linked
Action stringVerb - Linked
Property string - Linked
Type string
- Action
Name string - Linked
Action string - Linked
Action stringVerb - Linked
Property string - Linked
Type string
- action
Name String - linked
Action String - linked
Action StringVerb - linked
Property String - linked
Type String
- action
Name string - linked
Action string - linked
Action stringVerb - linked
Property string - linked
Type string
- action_
name str - linked_
action str - linked_
action_ strverb - linked_
property str - linked_
type str
- action
Name String - linked
Action String - linked
Action StringVerb - linked
Property String - linked
Type String
LinkedAccessCheckResponse, LinkedAccessCheckResponseArgs
- Action
Name string - Linked
Action string - Linked
Action stringVerb - Linked
Property string - Linked
Type string
- Action
Name string - Linked
Action string - Linked
Action stringVerb - Linked
Property string - Linked
Type string
- action
Name String - linked
Action String - linked
Action StringVerb - linked
Property String - linked
Type String
- action
Name string - linked
Action string - linked
Action stringVerb - linked
Property string - linked
Type string
- action_
name str - linked_
action str - linked_
action_ strverb - linked_
property str - linked_
type str
- action
Name String - linked
Action String - linked
Action StringVerb - linked
Property String - linked
Type String
LoggingDetails, LoggingDetailsArgs
- None
None- Body
Body
- Logging
Details None None- Logging
Details Body Body
- None
None- Body
Body
- None
None- Body
Body
- NONE
None- BODY
Body
- "None"
None- "Body"
Body
LoggingDirections, LoggingDirectionsArgs
- None
None- Request
Request- Response
Response
- Logging
Directions None None- Logging
Directions Request Request- Logging
Directions Response Response
- None
None- Request
Request- Response
Response
- None
None- Request
Request- Response
Response
- NONE
None- REQUEST
Request- RESPONSE
Response
- "None"
None- "Request"
Request- "Response"
Response
LoggingRule, LoggingRuleArgs
- Action string
- Detail
Level string | LoggingDetails - Direction
string | Logging
Directions -
Logging
Rule Hidden Property Paths
- action String
- detail
Level String | LoggingDetails - direction
String | Logging
Directions -
Logging
Rule Hidden Property Paths
- action string
- detail
Level string | LoggingDetails - direction
string | Logging
Directions -
Logging
Rule Hidden Property Paths
- action String
- detail
Level String | "None" | "Body" - direction String | "None" | "Request" | "Response"
- Property Map
LoggingRuleHiddenPropertyPaths, LoggingRuleHiddenPropertyPathsArgs
- List<string>
- List<string>
- []string
- []string
- List<String>
- List<String>
- string[]
- string[]
- Sequence[str]
- Sequence[str]
- List<String>
- List<String>
LoggingRuleResponse, LoggingRuleResponseArgs
- Action string
- Detail
Level string - Direction string
-
Logging
Rule Response Hidden Property Paths
- action String
- detail
Level String - direction String
-
Logging
Rule Response Hidden Property Paths
- action string
- detail
Level string - direction string
-
Logging
Rule Response Hidden Property Paths
- action String
- detail
Level String - direction String
- Property Map
LoggingRuleResponseHiddenPropertyPaths, LoggingRuleResponseHiddenPropertyPathsArgs
- List<string>
- List<string>
- []string
- []string
- List<String>
- List<String>
- string[]
- string[]
- Sequence[str]
- Sequence[str]
- List<String>
- List<String>
OpenApiConfiguration, OpenApiConfigurationArgs
OpenApiConfigurationResponse, OpenApiConfigurationResponseArgs
OpenApiValidation, OpenApiValidationArgs
- Allow
Noncompliant boolCollection Response - Indicates whether a non compliance response is allowed for a LIST call
- Allow
Noncompliant boolCollection Response - Indicates whether a non compliance response is allowed for a LIST call
- allow
Noncompliant BooleanCollection Response - Indicates whether a non compliance response is allowed for a LIST call
- allow
Noncompliant booleanCollection Response - Indicates whether a non compliance response is allowed for a LIST call
- allow_
noncompliant_ boolcollection_ response - Indicates whether a non compliance response is allowed for a LIST call
- allow
Noncompliant BooleanCollection Response - Indicates whether a non compliance response is allowed for a LIST call
OpenApiValidationResponse, OpenApiValidationResponseArgs
- Allow
Noncompliant boolCollection Response - Indicates whether a non compliance response is allowed for a LIST call
- Allow
Noncompliant boolCollection Response - Indicates whether a non compliance response is allowed for a LIST call
- allow
Noncompliant BooleanCollection Response - Indicates whether a non compliance response is allowed for a LIST call
- allow
Noncompliant booleanCollection Response - Indicates whether a non compliance response is allowed for a LIST call
- allow_
noncompliant_ boolcollection_ response - Indicates whether a non compliance response is allowed for a LIST call
- allow
Noncompliant BooleanCollection Response - Indicates whether a non compliance response is allowed for a LIST call
OptInHeaderType, OptInHeaderTypeArgs
- Not
Specified NotSpecified- Signed
User Token SignedUserToken- Client
Group Membership ClientGroupMembership- Signed
Auxiliary Tokens SignedAuxiliaryTokens- Unbounded
Client Group Membership UnboundedClientGroupMembership
- Opt
In Header Type Not Specified NotSpecified- Opt
In Header Type Signed User Token SignedUserToken- Opt
In Header Type Client Group Membership ClientGroupMembership- Opt
In Header Type Signed Auxiliary Tokens SignedAuxiliaryTokens- Opt
In Header Type Unbounded Client Group Membership UnboundedClientGroupMembership
- Not
Specified NotSpecified- Signed
User Token SignedUserToken- Client
Group Membership ClientGroupMembership- Signed
Auxiliary Tokens SignedAuxiliaryTokens- Unbounded
Client Group Membership UnboundedClientGroupMembership
- Not
Specified NotSpecified- Signed
User Token SignedUserToken- Client
Group Membership ClientGroupMembership- Signed
Auxiliary Tokens SignedAuxiliaryTokens- Unbounded
Client Group Membership UnboundedClientGroupMembership
- NOT_SPECIFIED
NotSpecified- SIGNED_USER_TOKEN
SignedUserToken- CLIENT_GROUP_MEMBERSHIP
ClientGroupMembership- SIGNED_AUXILIARY_TOKENS
SignedAuxiliaryTokens- UNBOUNDED_CLIENT_GROUP_MEMBERSHIP
UnboundedClientGroupMembership
- "Not
Specified" NotSpecified- "Signed
User Token" SignedUserToken- "Client
Group Membership" ClientGroupMembership- "Signed
Auxiliary Tokens" SignedAuxiliaryTokens- "Unbounded
Client Group Membership" UnboundedClientGroupMembership
Policy, PolicyArgs
- Not
Specified NotSpecified- Synchronize
Begin Extension SynchronizeBeginExtension
- Policy
Not Specified NotSpecified- Policy
Synchronize Begin Extension SynchronizeBeginExtension
- Not
Specified NotSpecified- Synchronize
Begin Extension SynchronizeBeginExtension
- Not
Specified NotSpecified- Synchronize
Begin Extension SynchronizeBeginExtension
- NOT_SPECIFIED
NotSpecified- SYNCHRONIZE_BEGIN_EXTENSION
SynchronizeBeginExtension
- "Not
Specified" NotSpecified- "Synchronize
Begin Extension" SynchronizeBeginExtension
PreflightOption, PreflightOptionArgs
- None
None- Continue
Deployment On Failure ContinueDeploymentOnFailure- Default
Validation Only DefaultValidationOnly
- Preflight
Option None None- Preflight
Option Continue Deployment On Failure ContinueDeploymentOnFailure- Preflight
Option Default Validation Only DefaultValidationOnly
- None
None- Continue
Deployment On Failure ContinueDeploymentOnFailure- Default
Validation Only DefaultValidationOnly
- None
None- Continue
Deployment On Failure ContinueDeploymentOnFailure- Default
Validation Only DefaultValidationOnly
- NONE
None- CONTINUE_DEPLOYMENT_ON_FAILURE
ContinueDeploymentOnFailure- DEFAULT_VALIDATION_ONLY
DefaultValidationOnly
- "None"
None- "Continue
Deployment On Failure" ContinueDeploymentOnFailure- "Default
Validation Only" DefaultValidationOnly
ProvisioningState, ProvisioningStateArgs
- Not
Specified NotSpecified- Accepted
Accepted- Running
Running- Creating
Creating- Created
Created- Deleting
Deleting- Deleted
Deleted- Canceled
Canceled- Failed
Failed- Succeeded
Succeeded- Moving
Resources MovingResources- Transient
Failure TransientFailure- Rollout
In Progress RolloutInProgress
- Provisioning
State Not Specified NotSpecified- Provisioning
State Accepted Accepted- Provisioning
State Running Running- Provisioning
State Creating Creating- Provisioning
State Created Created- Provisioning
State Deleting Deleting- Provisioning
State Deleted Deleted- Provisioning
State Canceled Canceled- Provisioning
State Failed Failed- Provisioning
State Succeeded Succeeded- Provisioning
State Moving Resources MovingResources- Provisioning
State Transient Failure TransientFailure- Provisioning
State Rollout In Progress RolloutInProgress
- Not
Specified NotSpecified- Accepted
Accepted- Running
Running- Creating
Creating- Created
Created- Deleting
Deleting- Deleted
Deleted- Canceled
Canceled- Failed
Failed- Succeeded
Succeeded- Moving
Resources MovingResources- Transient
Failure TransientFailure- Rollout
In Progress RolloutInProgress
- Not
Specified NotSpecified- Accepted
Accepted- Running
Running- Creating
Creating- Created
Created- Deleting
Deleting- Deleted
Deleted- Canceled
Canceled- Failed
Failed- Succeeded
Succeeded- Moving
Resources MovingResources- Transient
Failure TransientFailure- Rollout
In Progress RolloutInProgress
- NOT_SPECIFIED
NotSpecified- ACCEPTED
Accepted- RUNNING
Running- CREATING
Creating- CREATED
Created- DELETING
Deleting- DELETED
Deleted- CANCELED
Canceled- FAILED
Failed- SUCCEEDED
Succeeded- MOVING_RESOURCES
MovingResources- TRANSIENT_FAILURE
TransientFailure- ROLLOUT_IN_PROGRESS
RolloutInProgress
- "Not
Specified" NotSpecified- "Accepted"
Accepted- "Running"
Running- "Creating"
Creating- "Created"
Created- "Deleting"
Deleting- "Deleted"
Deleted- "Canceled"
Canceled- "Failed"
Failed- "Succeeded"
Succeeded- "Moving
Resources" MovingResources- "Transient
Failure" TransientFailure- "Rollout
In Progress" RolloutInProgress
Readiness, ReadinessArgs
- Closing
Down ClosingDown- Deprecated
Deprecated- GA
GA- In
Development InDevelopment- Internal
Only InternalOnly- Private
Preview PrivatePreview- Public
Preview PublicPreview- Removed
From ARM RemovedFromARM- Retired
Retired
- Readiness
Closing Down ClosingDown- Readiness
Deprecated Deprecated- Readiness
GA GA- Readiness
In Development InDevelopment- Readiness
Internal Only InternalOnly- Readiness
Private Preview PrivatePreview- Readiness
Public Preview PublicPreview- Readiness
Removed From ARM RemovedFromARM- Readiness
Retired Retired
- Closing
Down ClosingDown- Deprecated
Deprecated- GA
GA- In
Development InDevelopment- Internal
Only InternalOnly- Private
Preview PrivatePreview- Public
Preview PublicPreview- Removed
From ARM RemovedFromARM- Retired
Retired
- Closing
Down ClosingDown- Deprecated
Deprecated- GA
GA- In
Development InDevelopment- Internal
Only InternalOnly- Private
Preview PrivatePreview- Public
Preview PublicPreview- Removed
From ARM RemovedFromARM- Retired
Retired
- CLOSING_DOWN
ClosingDown- DEPRECATED
Deprecated- GA
GA- IN_DEVELOPMENT
InDevelopment- INTERNAL_ONLY
InternalOnly- PRIVATE_PREVIEW
PrivatePreview- PUBLIC_PREVIEW
PublicPreview- REMOVED_FROM_ARM
RemovedFromARM- RETIRED
Retired
- "Closing
Down" ClosingDown- "Deprecated"
Deprecated- "GA"
GA- "In
Development" InDevelopment- "Internal
Only" InternalOnly- "Private
Preview" PrivatePreview- "Public
Preview" PublicPreview- "Removed
From ARM" RemovedFromARM- "Retired"
Retired
Regionality, RegionalityArgs
- Not
Specified NotSpecified- Global
Global- Regional
Regional
- Regionality
Not Specified NotSpecified- Regionality
Global Global- Regionality
Regional Regional
- Not
Specified NotSpecified- Global
Global- Regional
Regional
- Not
Specified NotSpecified- Global
Global- Regional
Regional
- NOT_SPECIFIED
NotSpecified- GLOBAL_
Global- REGIONAL
Regional
- "Not
Specified" NotSpecified- "Global"
Global- "Regional"
Regional
ResourceConcurrencyControlOption, ResourceConcurrencyControlOptionArgs
ResourceConcurrencyControlOptionResponse, ResourceConcurrencyControlOptionResponseArgs
- Policy string
- Policy string
- policy String
- policy string
- policy str
- policy String
ResourceDeletionPolicy, ResourceDeletionPolicyArgs
- Not
Specified NotSpecified- Cascade
Delete All CascadeDeleteAll- Cascade
Delete Proxy Only Children CascadeDeleteProxyOnlyChildren
- Resource
Deletion Policy Not Specified NotSpecified- Resource
Deletion Policy Cascade Delete All CascadeDeleteAll- Resource
Deletion Policy Cascade Delete Proxy Only Children CascadeDeleteProxyOnlyChildren
- Not
Specified NotSpecified- Cascade
Delete All CascadeDeleteAll- Cascade
Delete Proxy Only Children CascadeDeleteProxyOnlyChildren
- Not
Specified NotSpecified- Cascade
Delete All CascadeDeleteAll- Cascade
Delete Proxy Only Children CascadeDeleteProxyOnlyChildren
- NOT_SPECIFIED
NotSpecified- CASCADE_DELETE_ALL
CascadeDeleteAll- CASCADE_DELETE_PROXY_ONLY_CHILDREN
CascadeDeleteProxyOnlyChildren
- "Not
Specified" NotSpecified- "Cascade
Delete All" CascadeDeleteAll- "Cascade
Delete Proxy Only Children" CascadeDeleteProxyOnlyChildren
ResourceTypeEndpoint, ResourceTypeEndpointArgs
- Api
Versions List<string> - Enabled bool
- Endpoint
Type string | Pulumi.Azure Native. Provider Hub. Endpoint Type - Extensions
List<Pulumi.
Azure Native. Provider Hub. Inputs. Resource Type Extension> - Features
Rule Pulumi.Azure Native. Provider Hub. Inputs. Resource Type Endpoint Features Rule - Locations List<string>
- Required
Features List<string> - Timeout string
- Api
Versions []string - Enabled bool
- Endpoint
Type string | EndpointType - Extensions
[]Resource
Type Extension - Features
Rule ResourceType Endpoint Features Rule - Locations []string
- Required
Features []string - Timeout string
- api
Versions List<String> - enabled Boolean
- endpoint
Type String | EndpointType - extensions
List<Resource
Type Extension> - features
Rule ResourceType Endpoint Features Rule - locations List<String>
- required
Features List<String> - timeout String
- api
Versions string[] - enabled boolean
- endpoint
Type string | EndpointType - extensions
Resource
Type Extension[] - features
Rule ResourceType Endpoint Features Rule - locations string[]
- required
Features string[] - timeout string
- api_
versions Sequence[str] - enabled bool
- endpoint_
type str | EndpointType - extensions
Sequence[Resource
Type Extension] - features_
rule ResourceType Endpoint Features Rule - locations Sequence[str]
- required_
features Sequence[str] - timeout str
- api
Versions List<String> - enabled Boolean
- endpoint
Type String | "NotSpecified" | "Canary" | "Production" | "Test In Production" - extensions List<Property Map>
- features
Rule Property Map - locations List<String>
- required
Features List<String> - timeout String
ResourceTypeEndpointFeaturesRule, ResourceTypeEndpointFeaturesRuleArgs
- Required
Features string | FeaturesPolicy Policy
- required
Features String | FeaturesPolicy Policy
- required
Features string | FeaturesPolicy Policy
- required
Features String | "Any" | "All"Policy
ResourceTypeEndpointResponse, ResourceTypeEndpointResponseArgs
- Api
Versions List<string> - Enabled bool
- Endpoint
Type string - Extensions
List<Pulumi.
Azure Native. Provider Hub. Inputs. Resource Type Extension Response> - Features
Rule Pulumi.Azure Native. Provider Hub. Inputs. Resource Type Endpoint Response Features Rule - Locations List<string>
- Required
Features List<string> - Timeout string
- Api
Versions []string - Enabled bool
- Endpoint
Type string - Extensions
[]Resource
Type Extension Response - Features
Rule ResourceType Endpoint Response Features Rule - Locations []string
- Required
Features []string - Timeout string
- api
Versions List<String> - enabled Boolean
- endpoint
Type String - extensions
List<Resource
Type Extension Response> - features
Rule ResourceType Endpoint Response Features Rule - locations List<String>
- required
Features List<String> - timeout String
- api
Versions string[] - enabled boolean
- endpoint
Type string - extensions
Resource
Type Extension Response[] - features
Rule ResourceType Endpoint Response Features Rule - locations string[]
- required
Features string[] - timeout string
- api_
versions Sequence[str] - enabled bool
- endpoint_
type str - extensions
Sequence[Resource
Type Extension Response] - features_
rule ResourceType Endpoint Response Features Rule - locations Sequence[str]
- required_
features Sequence[str] - timeout str
- api
Versions List<String> - enabled Boolean
- endpoint
Type String - extensions List<Property Map>
- features
Rule Property Map - locations List<String>
- required
Features List<String> - timeout String
ResourceTypeEndpointResponseFeaturesRule, ResourceTypeEndpointResponseFeaturesRuleArgs
- Required
Features stringPolicy
- Required
Features stringPolicy
- required
Features StringPolicy
- required
Features stringPolicy
- required
Features StringPolicy
ResourceTypeExtension, ResourceTypeExtensionArgs
- Endpoint
Uri string - Extension
Categories List<Union<string, Pulumi.Azure Native. Provider Hub. Extension Category>> - Timeout string
- Endpoint
Uri string - Extension
Categories []string - Timeout string
- endpoint
Uri String - extension
Categories List<Either<String,ExtensionCategory>> - timeout String
- endpoint
Uri string - extension
Categories (string | ExtensionCategory)[] - timeout string
- endpoint_
uri str - extension_
categories Sequence[Union[str, ExtensionCategory]] - timeout str
- endpoint
Uri String - extension
Categories List<String | "NotSpecified" | "Resource Creation Validate" | "Resource Creation Begin" | "Resource Creation Completed" | "Resource Read Validate" | "Resource Read Begin" | "Resource Patch Validate" | "Resource Patch Completed" | "Resource Deletion Validate" | "Resource Deletion Begin" | "Resource Deletion Completed" | "Resource Post Action" | "Subscription Lifecycle Notification" | "Resource Patch Begin" | "Resource Move Begin" | "Resource Move Completed"> - timeout String
ResourceTypeExtensionOptionsResourceCreationBegin, ResourceTypeExtensionOptionsResourceCreationBeginArgs
ResourceTypeExtensionOptionsResponseResourceCreationBegin, ResourceTypeExtensionOptionsResponseResourceCreationBeginArgs
ResourceTypeExtensionResponse, ResourceTypeExtensionResponseArgs
- Endpoint
Uri string - Extension
Categories List<string> - Timeout string
- Endpoint
Uri string - Extension
Categories []string - Timeout string
- endpoint
Uri String - extension
Categories List<String> - timeout String
- endpoint
Uri string - extension
Categories string[] - timeout string
- endpoint_
uri str - extension_
categories Sequence[str] - timeout str
- endpoint
Uri String - extension
Categories List<String> - timeout String
ResourceTypeRegistrationProperties, ResourceTypeRegistrationPropertiesArgs
- List<string>
-
List<Pulumi.
Azure Native. Provider Hub. Inputs. Authorization Action Mapping> - Check
Name Pulumi.Availability Specifications Azure Native. Provider Hub. Inputs. Resource Type Registration Properties Check Name Availability Specifications - Default
Api stringVersion - Disallowed
Action List<string>Verbs - Enable
Async boolOperation - Enable
Third boolParty S2S - Endpoints
List<Pulumi.
Azure Native. Provider Hub. Inputs. Resource Type Endpoint> - Extended
Locations List<Pulumi.Azure Native. Provider Hub. Inputs. Extended Location Options> - Extension
Options Pulumi.Azure Native. Provider Hub. Inputs. Resource Type Registration Properties Extension Options - Features
Rule Pulumi.Azure Native. Provider Hub. Inputs. Resource Type Registration Properties Features Rule - Identity
Management Pulumi.Azure Native. Provider Hub. Inputs. Resource Type Registration Properties Identity Management - Is
Pure boolProxy - Linked
Access List<Pulumi.Checks Azure Native. Provider Hub. Inputs. Linked Access Check> - Logging
Rules List<Pulumi.Azure Native. Provider Hub. Inputs. Logging Rule> - Management
Pulumi.
Azure Native. Provider Hub. Inputs. Resource Type Registration Properties Management - Marketplace
Type string - Open
Api Pulumi.Configuration Azure Native. Provider Hub. Inputs. Open Api Configuration - Provisioning
State string | Pulumi.Azure Native. Provider Hub. Provisioning State - The provisioned state of the resource.
- Regionality
string | Pulumi.
Azure Native. Provider Hub. Regionality - Request
Header Pulumi.Options Azure Native. Provider Hub. Inputs. Resource Type Registration Properties Request Header Options - Required
Features List<string> - Resource
Concurrency Dictionary<string, Pulumi.Control Options Azure Native. Provider Hub. Inputs. Resource Concurrency Control Option> - Resource
Deletion string | Pulumi.Policy Azure Native. Provider Hub. Resource Deletion Policy - Resource
Graph Pulumi.Configuration Azure Native. Provider Hub. Inputs. Resource Type Registration Properties Resource Graph Configuration - Resource
Move Pulumi.Policy Azure Native. Provider Hub. Inputs. Resource Type Registration Properties Resource Move Policy - Routing
Type string | Pulumi.Azure Native. Provider Hub. Routing Type - Service
Tree List<Pulumi.Infos Azure Native. Provider Hub. Inputs. Service Tree Info> - Subscription
Lifecycle Pulumi.Notification Specifications Azure Native. Provider Hub. Inputs. Resource Type Registration Properties Subscription Lifecycle Notification Specifications - Subscription
State List<Pulumi.Rules Azure Native. Provider Hub. Inputs. Subscription State Rule> - Swagger
Specifications List<Pulumi.Azure Native. Provider Hub. Inputs. Swagger Specification> - Template
Deployment Pulumi.Options Azure Native. Provider Hub. Inputs. Resource Type Registration Properties Template Deployment Options - Throttling
Rules List<Pulumi.Azure Native. Provider Hub. Inputs. Throttling Rule>
- []string
-
[]Authorization
Action Mapping - Check
Name ResourceAvailability Specifications Type Registration Properties Check Name Availability Specifications - Default
Api stringVersion - Disallowed
Action []stringVerbs - Enable
Async boolOperation - Enable
Third boolParty S2S - Endpoints
[]Resource
Type Endpoint - Extended
Locations []ExtendedLocation Options - Extension
Options ResourceType Registration Properties Extension Options - Features
Rule ResourceType Registration Properties Features Rule - Identity
Management ResourceType Registration Properties Identity Management - Is
Pure boolProxy - Linked
Access []LinkedChecks Access Check - Logging
Rules []LoggingRule - Management
Resource
Type Registration Properties Management - Marketplace
Type string - Open
Api OpenConfiguration Api Configuration - Provisioning
State string | ProvisioningState - The provisioned state of the resource.
- Regionality string | Regionality
- Request
Header ResourceOptions Type Registration Properties Request Header Options - Required
Features []string - Resource
Concurrency map[string]ResourceControl Options Concurrency Control Option - Resource
Deletion string | ResourcePolicy Deletion Policy - Resource
Graph ResourceConfiguration Type Registration Properties Resource Graph Configuration - Resource
Move ResourcePolicy Type Registration Properties Resource Move Policy - Routing
Type string | RoutingType - Service
Tree []ServiceInfos Tree Info - Subscription
Lifecycle ResourceNotification Specifications Type Registration Properties Subscription Lifecycle Notification Specifications - Subscription
State []SubscriptionRules State Rule - Swagger
Specifications []SwaggerSpecification - Template
Deployment ResourceOptions Type Registration Properties Template Deployment Options - Throttling
Rules []ThrottlingRule
- List<String>
-
List<Authorization
Action Mapping> - check
Name ResourceAvailability Specifications Type Registration Properties Check Name Availability Specifications - default
Api StringVersion - disallowed
Action List<String>Verbs - enable
Async BooleanOperation - enable
Third BooleanParty S2S - endpoints
List<Resource
Type Endpoint> - extended
Locations List<ExtendedLocation Options> - extension
Options ResourceType Registration Properties Extension Options - features
Rule ResourceType Registration Properties Features Rule - identity
Management ResourceType Registration Properties Identity Management - is
Pure BooleanProxy - linked
Access List<LinkedChecks Access Check> - logging
Rules List<LoggingRule> - management
Resource
Type Registration Properties Management - marketplace
Type String - open
Api OpenConfiguration Api Configuration - provisioning
State String | ProvisioningState - The provisioned state of the resource.
- regionality String | Regionality
- request
Header ResourceOptions Type Registration Properties Request Header Options - required
Features List<String> - resource
Concurrency Map<String,ResourceControl Options Concurrency Control Option> - resource
Deletion String | ResourcePolicy Deletion Policy - resource
Graph ResourceConfiguration Type Registration Properties Resource Graph Configuration - resource
Move ResourcePolicy Type Registration Properties Resource Move Policy - routing
Type String | RoutingType - service
Tree List<ServiceInfos Tree Info> - subscription
Lifecycle ResourceNotification Specifications Type Registration Properties Subscription Lifecycle Notification Specifications - subscription
State List<SubscriptionRules State Rule> - swagger
Specifications List<SwaggerSpecification> - template
Deployment ResourceOptions Type Registration Properties Template Deployment Options - throttling
Rules List<ThrottlingRule>
- string[]
-
Authorization
Action Mapping[] - check
Name ResourceAvailability Specifications Type Registration Properties Check Name Availability Specifications - default
Api stringVersion - disallowed
Action string[]Verbs - enable
Async booleanOperation - enable
Third booleanParty S2S - endpoints
Resource
Type Endpoint[] - extended
Locations ExtendedLocation Options[] - extension
Options ResourceType Registration Properties Extension Options - features
Rule ResourceType Registration Properties Features Rule - identity
Management ResourceType Registration Properties Identity Management - is
Pure booleanProxy - linked
Access LinkedChecks Access Check[] - logging
Rules LoggingRule[] - management
Resource
Type Registration Properties Management - marketplace
Type string - open
Api OpenConfiguration Api Configuration - provisioning
State string | ProvisioningState - The provisioned state of the resource.
- regionality string | Regionality
- request
Header ResourceOptions Type Registration Properties Request Header Options - required
Features string[] - resource
Concurrency {[key: string]: ResourceControl Options Concurrency Control Option} - resource
Deletion string | ResourcePolicy Deletion Policy - resource
Graph ResourceConfiguration Type Registration Properties Resource Graph Configuration - resource
Move ResourcePolicy Type Registration Properties Resource Move Policy - routing
Type string | RoutingType - service
Tree ServiceInfos Tree Info[] - subscription
Lifecycle ResourceNotification Specifications Type Registration Properties Subscription Lifecycle Notification Specifications - subscription
State SubscriptionRules State Rule[] - swagger
Specifications SwaggerSpecification[] - template
Deployment ResourceOptions Type Registration Properties Template Deployment Options - throttling
Rules ThrottlingRule[]
- Sequence[str]
-
Sequence[Authorization
Action Mapping] - check_
name_ Resourceavailability_ specifications Type Registration Properties Check Name Availability Specifications - default_
api_ strversion - disallowed_
action_ Sequence[str]verbs - enable_
async_ booloperation - enable_
third_ boolparty_ s2_ s - endpoints
Sequence[Resource
Type Endpoint] - extended_
locations Sequence[ExtendedLocation Options] - extension_
options ResourceType Registration Properties Extension Options - features_
rule ResourceType Registration Properties Features Rule - identity_
management ResourceType Registration Properties Identity Management - is_
pure_ boolproxy - linked_
access_ Sequence[Linkedchecks Access Check] - logging_
rules Sequence[LoggingRule] - management
Resource
Type Registration Properties Management - marketplace_
type str - open_
api_ Openconfiguration Api Configuration - provisioning_
state str | ProvisioningState - The provisioned state of the resource.
- regionality str | Regionality
- request_
header_ Resourceoptions Type Registration Properties Request Header Options - required_
features Sequence[str] - resource_
concurrency_ Mapping[str, Resourcecontrol_ options Concurrency Control Option] - resource_
deletion_ str | Resourcepolicy Deletion Policy - resource_
graph_ Resourceconfiguration Type Registration Properties Resource Graph Configuration - resource_
move_ Resourcepolicy Type Registration Properties Resource Move Policy - routing_
type str | RoutingType - service_
tree_ Sequence[Serviceinfos Tree Info] - subscription_
lifecycle_ Resourcenotification_ specifications Type Registration Properties Subscription Lifecycle Notification Specifications - subscription_
state_ Sequence[Subscriptionrules State Rule] - swagger_
specifications Sequence[SwaggerSpecification] - template_
deployment_ Resourceoptions Type Registration Properties Template Deployment Options - throttling_
rules Sequence[ThrottlingRule]
- List<String>
- List<Property Map>
- check
Name Property MapAvailability Specifications - default
Api StringVersion - disallowed
Action List<String>Verbs - enable
Async BooleanOperation - enable
Third BooleanParty S2S - endpoints List<Property Map>
- extended
Locations List<Property Map> - extension
Options Property Map - features
Rule Property Map - identity
Management Property Map - is
Pure BooleanProxy - linked
Access List<Property Map>Checks - logging
Rules List<Property Map> - management Property Map
- marketplace
Type String - open
Api Property MapConfiguration - provisioning
State String | "NotSpecified" | "Accepted" | "Running" | "Creating" | "Created" | "Deleting" | "Deleted" | "Canceled" | "Failed" | "Succeeded" | "Moving Resources" | "Transient Failure" | "Rollout In Progress" - The provisioned state of the resource.
- regionality
String | "Not
Specified" | "Global" | "Regional" - request
Header Property MapOptions - required
Features List<String> - resource
Concurrency Map<Property Map>Control Options - resource
Deletion String | "NotPolicy Specified" | "Cascade Delete All" | "Cascade Delete Proxy Only Children" - resource
Graph Property MapConfiguration - resource
Move Property MapPolicy - routing
Type String | "Default" | "ProxyOnly" | "Host Based" | "Extension" | "Tenant" | "Fanout" | "Location Based" | "Failover" | "Cascade Extension" - service
Tree List<Property Map>Infos - subscription
Lifecycle Property MapNotification Specifications - subscription
State List<Property Map>Rules - swagger
Specifications List<Property Map> - template
Deployment Property MapOptions - throttling
Rules List<Property Map>
ResourceTypeRegistrationPropertiesCheckNameAvailabilitySpecifications, ResourceTypeRegistrationPropertiesCheckNameAvailabilitySpecificationsArgs
- Enable
Default boolValidation - Resource
Types List<string>With Custom Validation
- Enable
Default boolValidation - Resource
Types []stringWith Custom Validation
- enable
Default BooleanValidation - resource
Types List<String>With Custom Validation
- enable
Default booleanValidation - resource
Types string[]With Custom Validation
- enable_
default_ boolvalidation - resource_
types_ Sequence[str]with_ custom_ validation
- enable
Default BooleanValidation - resource
Types List<String>With Custom Validation
ResourceTypeRegistrationPropertiesExtensionOptions, ResourceTypeRegistrationPropertiesExtensionOptionsArgs
ResourceTypeRegistrationPropertiesFeaturesRule, ResourceTypeRegistrationPropertiesFeaturesRuleArgs
- Required
Features string | FeaturesPolicy Policy
- required
Features String | FeaturesPolicy Policy
- required
Features string | FeaturesPolicy Policy
- required
Features String | "Any" | "All"Policy
ResourceTypeRegistrationPropertiesIdentityManagement, ResourceTypeRegistrationPropertiesIdentityManagementArgs
- Application
Id string - Type
string | Identity
Management Types
- application
Id String - type
String | Identity
Management Types
- application
Id string - type
string | Identity
Management Types
- application_
id str - type
str | Identity
Management Types
ResourceTypeRegistrationPropertiesManagement, ResourceTypeRegistrationPropertiesManagementArgs
- Incident
Contact stringEmail - Incident
Routing stringService - Incident
Routing stringTeam - Manifest
Owners List<string> - Resource
Access stringPolicy - Resource
Access List<object>Roles - Schema
Owners List<string> - Service
Tree List<Pulumi.Infos Azure Native. Provider Hub. Inputs. Service Tree Info>
- Incident
Contact stringEmail - Incident
Routing stringService - Incident
Routing stringTeam - Manifest
Owners []string - Resource
Access stringPolicy - Resource
Access []interface{}Roles - Schema
Owners []string - Service
Tree []ServiceInfos Tree Info
- incident
Contact StringEmail - incident
Routing StringService - incident
Routing StringTeam - manifest
Owners List<String> - resource
Access StringPolicy - resource
Access List<Object>Roles - schema
Owners List<String> - service
Tree List<ServiceInfos Tree Info>
- incident
Contact stringEmail - incident
Routing stringService - incident
Routing stringTeam - manifest
Owners string[] - resource
Access stringPolicy - resource
Access any[]Roles - schema
Owners string[] - service
Tree ServiceInfos Tree Info[]
- incident_
contact_ stremail - incident_
routing_ strservice - incident_
routing_ strteam - manifest_
owners Sequence[str] - resource_
access_ strpolicy - resource_
access_ Sequence[Any]roles - schema_
owners Sequence[str] - service_
tree_ Sequence[Serviceinfos Tree Info]
- incident
Contact StringEmail - incident
Routing StringService - incident
Routing StringTeam - manifest
Owners List<String> - resource
Access StringPolicy - resource
Access List<Any>Roles - schema
Owners List<String> - service
Tree List<Property Map>Infos
ResourceTypeRegistrationPropertiesRequestHeaderOptions, ResourceTypeRegistrationPropertiesRequestHeaderOptionsArgs
- Opt
In string | OptHeaders In Header Type
- opt
In String | OptHeaders In Header Type
- opt
In string | OptHeaders In Header Type
ResourceTypeRegistrationPropertiesResourceGraphConfiguration, ResourceTypeRegistrationPropertiesResourceGraphConfigurationArgs
- Api
Version string - Enabled bool
- Api
Version string - Enabled bool
- api
Version String - enabled Boolean
- api
Version string - enabled boolean
- api_
version str - enabled bool
- api
Version String - enabled Boolean
ResourceTypeRegistrationPropertiesResourceMovePolicy, ResourceTypeRegistrationPropertiesResourceMovePolicyArgs
- cross
Resource BooleanGroup Move Enabled - cross
Subscription BooleanMove Enabled - validation
Required Boolean
- cross
Resource booleanGroup Move Enabled - cross
Subscription booleanMove Enabled - validation
Required boolean
- cross
Resource BooleanGroup Move Enabled - cross
Subscription BooleanMove Enabled - validation
Required Boolean
ResourceTypeRegistrationPropertiesResponseCheckNameAvailabilitySpecifications, ResourceTypeRegistrationPropertiesResponseCheckNameAvailabilitySpecificationsArgs
- Enable
Default boolValidation - Resource
Types List<string>With Custom Validation
- Enable
Default boolValidation - Resource
Types []stringWith Custom Validation
- enable
Default BooleanValidation - resource
Types List<String>With Custom Validation
- enable
Default booleanValidation - resource
Types string[]With Custom Validation
- enable_
default_ boolvalidation - resource_
types_ Sequence[str]with_ custom_ validation
- enable
Default BooleanValidation - resource
Types List<String>With Custom Validation
ResourceTypeRegistrationPropertiesResponseExtensionOptions, ResourceTypeRegistrationPropertiesResponseExtensionOptionsArgs
ResourceTypeRegistrationPropertiesResponseFeaturesRule, ResourceTypeRegistrationPropertiesResponseFeaturesRuleArgs
- Required
Features stringPolicy
- Required
Features stringPolicy
- required
Features StringPolicy
- required
Features stringPolicy
- required
Features StringPolicy
ResourceTypeRegistrationPropertiesResponseIdentityManagement, ResourceTypeRegistrationPropertiesResponseIdentityManagementArgs
- Application
Id string - Type string
- Application
Id string - Type string
- application
Id String - type String
- application
Id string - type string
- application_
id str - type str
- application
Id String - type String
ResourceTypeRegistrationPropertiesResponseManagement, ResourceTypeRegistrationPropertiesResponseManagementArgs
- Incident
Contact stringEmail - Incident
Routing stringService - Incident
Routing stringTeam - Manifest
Owners List<string> - Resource
Access stringPolicy - Resource
Access List<object>Roles - Schema
Owners List<string> - Service
Tree List<Pulumi.Infos Azure Native. Provider Hub. Inputs. Service Tree Info Response>
- Incident
Contact stringEmail - Incident
Routing stringService - Incident
Routing stringTeam - Manifest
Owners []string - Resource
Access stringPolicy - Resource
Access []interface{}Roles - Schema
Owners []string - Service
Tree []ServiceInfos Tree Info Response
- incident
Contact StringEmail - incident
Routing StringService - incident
Routing StringTeam - manifest
Owners List<String> - resource
Access StringPolicy - resource
Access List<Object>Roles - schema
Owners List<String> - service
Tree List<ServiceInfos Tree Info Response>
- incident
Contact stringEmail - incident
Routing stringService - incident
Routing stringTeam - manifest
Owners string[] - resource
Access stringPolicy - resource
Access any[]Roles - schema
Owners string[] - service
Tree ServiceInfos Tree Info Response[]
- incident_
contact_ stremail - incident_
routing_ strservice - incident_
routing_ strteam - manifest_
owners Sequence[str] - resource_
access_ strpolicy - resource_
access_ Sequence[Any]roles - schema_
owners Sequence[str] - service_
tree_ Sequence[Serviceinfos Tree Info Response]
- incident
Contact StringEmail - incident
Routing StringService - incident
Routing StringTeam - manifest
Owners List<String> - resource
Access StringPolicy - resource
Access List<Any>Roles - schema
Owners List<String> - service
Tree List<Property Map>Infos
ResourceTypeRegistrationPropertiesResponseRequestHeaderOptions, ResourceTypeRegistrationPropertiesResponseRequestHeaderOptionsArgs
- Opt
In stringHeaders
- Opt
In stringHeaders
- opt
In StringHeaders
- opt
In stringHeaders
- opt_
in_ strheaders
- opt
In StringHeaders
ResourceTypeRegistrationPropertiesResponseResourceGraphConfiguration, ResourceTypeRegistrationPropertiesResponseResourceGraphConfigurationArgs
- Api
Version string - Enabled bool
- Api
Version string - Enabled bool
- api
Version String - enabled Boolean
- api
Version string - enabled boolean
- api_
version str - enabled bool
- api
Version String - enabled Boolean
ResourceTypeRegistrationPropertiesResponseResourceMovePolicy, ResourceTypeRegistrationPropertiesResponseResourceMovePolicyArgs
- cross
Resource BooleanGroup Move Enabled - cross
Subscription BooleanMove Enabled - validation
Required Boolean
- cross
Resource booleanGroup Move Enabled - cross
Subscription booleanMove Enabled - validation
Required boolean
- cross
Resource BooleanGroup Move Enabled - cross
Subscription BooleanMove Enabled - validation
Required Boolean
ResourceTypeRegistrationPropertiesResponseSubscriptionLifecycleNotificationSpecifications, ResourceTypeRegistrationPropertiesResponseSubscriptionLifecycleNotificationSpecificationsArgs
ResourceTypeRegistrationPropertiesResponseTemplateDeploymentOptions, ResourceTypeRegistrationPropertiesResponseTemplateDeploymentOptionsArgs
- Preflight
Options List<string> - Preflight
Supported bool
- Preflight
Options []string - Preflight
Supported bool
- preflight
Options List<String> - preflight
Supported Boolean
- preflight
Options string[] - preflight
Supported boolean
- preflight_
options Sequence[str] - preflight_
supported bool
- preflight
Options List<String> - preflight
Supported Boolean
ResourceTypeRegistrationPropertiesSubscriptionLifecycleNotificationSpecifications, ResourceTypeRegistrationPropertiesSubscriptionLifecycleNotificationSpecificationsArgs
ResourceTypeRegistrationPropertiesTemplateDeploymentOptions, ResourceTypeRegistrationPropertiesTemplateDeploymentOptionsArgs
- Preflight
Options List<Union<string, Pulumi.Azure Native. Provider Hub. Preflight Option>> - Preflight
Supported bool
- Preflight
Options []string - Preflight
Supported bool
- preflight
Options List<Either<String,PreflightOption>> - preflight
Supported Boolean
- preflight
Options (string | PreflightOption)[] - preflight
Supported boolean
- preflight_
options Sequence[Union[str, PreflightOption]] - preflight_
supported bool
- preflight
Options List<String | "None" | "ContinueDeployment On Failure" | "Default Validation Only"> - preflight
Supported Boolean
ResourceTypeRegistrationResponseProperties, ResourceTypeRegistrationResponsePropertiesArgs
- List<string>
-
List<Pulumi.
Azure Native. Provider Hub. Inputs. Authorization Action Mapping Response> - Check
Name Pulumi.Availability Specifications Azure Native. Provider Hub. Inputs. Resource Type Registration Properties Response Check Name Availability Specifications - Default
Api stringVersion - Disallowed
Action List<string>Verbs - Enable
Async boolOperation - Enable
Third boolParty S2S - Endpoints
List<Pulumi.
Azure Native. Provider Hub. Inputs. Resource Type Endpoint Response> - Extended
Locations List<Pulumi.Azure Native. Provider Hub. Inputs. Extended Location Options Response> - Extension
Options Pulumi.Azure Native. Provider Hub. Inputs. Resource Type Registration Properties Response Extension Options - Features
Rule Pulumi.Azure Native. Provider Hub. Inputs. Resource Type Registration Properties Response Features Rule - Identity
Management Pulumi.Azure Native. Provider Hub. Inputs. Resource Type Registration Properties Response Identity Management - Is
Pure boolProxy - Linked
Access List<Pulumi.Checks Azure Native. Provider Hub. Inputs. Linked Access Check Response> - Logging
Rules List<Pulumi.Azure Native. Provider Hub. Inputs. Logging Rule Response> - Management
Pulumi.
Azure Native. Provider Hub. Inputs. Resource Type Registration Properties Response Management - Marketplace
Type string - Open
Api Pulumi.Configuration Azure Native. Provider Hub. Inputs. Open Api Configuration Response - Provisioning
State string - The provisioned state of the resource.
- Regionality string
- Request
Header Pulumi.Options Azure Native. Provider Hub. Inputs. Resource Type Registration Properties Response Request Header Options - Required
Features List<string> - Resource
Concurrency Dictionary<string, Pulumi.Control Options Azure Native. Provider Hub. Inputs. Resource Concurrency Control Option Response> - Resource
Deletion stringPolicy - Resource
Graph Pulumi.Configuration Azure Native. Provider Hub. Inputs. Resource Type Registration Properties Response Resource Graph Configuration - Resource
Move Pulumi.Policy Azure Native. Provider Hub. Inputs. Resource Type Registration Properties Response Resource Move Policy - Routing
Type string - Service
Tree List<Pulumi.Infos Azure Native. Provider Hub. Inputs. Service Tree Info Response> - Subscription
Lifecycle Pulumi.Notification Specifications Azure Native. Provider Hub. Inputs. Resource Type Registration Properties Response Subscription Lifecycle Notification Specifications - Subscription
State List<Pulumi.Rules Azure Native. Provider Hub. Inputs. Subscription State Rule Response> - Swagger
Specifications List<Pulumi.Azure Native. Provider Hub. Inputs. Swagger Specification Response> - Template
Deployment Pulumi.Options Azure Native. Provider Hub. Inputs. Resource Type Registration Properties Response Template Deployment Options - Throttling
Rules List<Pulumi.Azure Native. Provider Hub. Inputs. Throttling Rule Response>
- []string
-
[]Authorization
Action Mapping Response - Check
Name ResourceAvailability Specifications Type Registration Properties Response Check Name Availability Specifications - Default
Api stringVersion - Disallowed
Action []stringVerbs - Enable
Async boolOperation - Enable
Third boolParty S2S - Endpoints
[]Resource
Type Endpoint Response - Extended
Locations []ExtendedLocation Options Response - Extension
Options ResourceType Registration Properties Response Extension Options - Features
Rule ResourceType Registration Properties Response Features Rule - Identity
Management ResourceType Registration Properties Response Identity Management - Is
Pure boolProxy - Linked
Access []LinkedChecks Access Check Response - Logging
Rules []LoggingRule Response - Management
Resource
Type Registration Properties Response Management - Marketplace
Type string - Open
Api OpenConfiguration Api Configuration Response - Provisioning
State string - The provisioned state of the resource.
- Regionality string
- Request
Header ResourceOptions Type Registration Properties Response Request Header Options - Required
Features []string - Resource
Concurrency map[string]ResourceControl Options Concurrency Control Option Response - Resource
Deletion stringPolicy - Resource
Graph ResourceConfiguration Type Registration Properties Response Resource Graph Configuration - Resource
Move ResourcePolicy Type Registration Properties Response Resource Move Policy - Routing
Type string - Service
Tree []ServiceInfos Tree Info Response - Subscription
Lifecycle ResourceNotification Specifications Type Registration Properties Response Subscription Lifecycle Notification Specifications - Subscription
State []SubscriptionRules State Rule Response - Swagger
Specifications []SwaggerSpecification Response - Template
Deployment ResourceOptions Type Registration Properties Response Template Deployment Options - Throttling
Rules []ThrottlingRule Response
- List<String>
-
List<Authorization
Action Mapping Response> - check
Name ResourceAvailability Specifications Type Registration Properties Response Check Name Availability Specifications - default
Api StringVersion - disallowed
Action List<String>Verbs - enable
Async BooleanOperation - enable
Third BooleanParty S2S - endpoints
List<Resource
Type Endpoint Response> - extended
Locations List<ExtendedLocation Options Response> - extension
Options ResourceType Registration Properties Response Extension Options - features
Rule ResourceType Registration Properties Response Features Rule - identity
Management ResourceType Registration Properties Response Identity Management - is
Pure BooleanProxy - linked
Access List<LinkedChecks Access Check Response> - logging
Rules List<LoggingRule Response> - management
Resource
Type Registration Properties Response Management - marketplace
Type String - open
Api OpenConfiguration Api Configuration Response - provisioning
State String - The provisioned state of the resource.
- regionality String
- request
Header ResourceOptions Type Registration Properties Response Request Header Options - required
Features List<String> - resource
Concurrency Map<String,ResourceControl Options Concurrency Control Option Response> - resource
Deletion StringPolicy - resource
Graph ResourceConfiguration Type Registration Properties Response Resource Graph Configuration - resource
Move ResourcePolicy Type Registration Properties Response Resource Move Policy - routing
Type String - service
Tree List<ServiceInfos Tree Info Response> - subscription
Lifecycle ResourceNotification Specifications Type Registration Properties Response Subscription Lifecycle Notification Specifications - subscription
State List<SubscriptionRules State Rule Response> - swagger
Specifications List<SwaggerSpecification Response> - template
Deployment ResourceOptions Type Registration Properties Response Template Deployment Options - throttling
Rules List<ThrottlingRule Response>
- string[]
-
Authorization
Action Mapping Response[] - check
Name ResourceAvailability Specifications Type Registration Properties Response Check Name Availability Specifications - default
Api stringVersion - disallowed
Action string[]Verbs - enable
Async booleanOperation - enable
Third booleanParty S2S - endpoints
Resource
Type Endpoint Response[] - extended
Locations ExtendedLocation Options Response[] - extension
Options ResourceType Registration Properties Response Extension Options - features
Rule ResourceType Registration Properties Response Features Rule - identity
Management ResourceType Registration Properties Response Identity Management - is
Pure booleanProxy - linked
Access LinkedChecks Access Check Response[] - logging
Rules LoggingRule Response[] - management
Resource
Type Registration Properties Response Management - marketplace
Type string - open
Api OpenConfiguration Api Configuration Response - provisioning
State string - The provisioned state of the resource.
- regionality string
- request
Header ResourceOptions Type Registration Properties Response Request Header Options - required
Features string[] - resource
Concurrency {[key: string]: ResourceControl Options Concurrency Control Option Response} - resource
Deletion stringPolicy - resource
Graph ResourceConfiguration Type Registration Properties Response Resource Graph Configuration - resource
Move ResourcePolicy Type Registration Properties Response Resource Move Policy - routing
Type string - service
Tree ServiceInfos Tree Info Response[] - subscription
Lifecycle ResourceNotification Specifications Type Registration Properties Response Subscription Lifecycle Notification Specifications - subscription
State SubscriptionRules State Rule Response[] - swagger
Specifications SwaggerSpecification Response[] - template
Deployment ResourceOptions Type Registration Properties Response Template Deployment Options - throttling
Rules ThrottlingRule Response[]
- Sequence[str]
-
Sequence[Authorization
Action Mapping Response] - check_
name_ Resourceavailability_ specifications Type Registration Properties Response Check Name Availability Specifications - default_
api_ strversion - disallowed_
action_ Sequence[str]verbs - enable_
async_ booloperation - enable_
third_ boolparty_ s2_ s - endpoints
Sequence[Resource
Type Endpoint Response] - extended_
locations Sequence[ExtendedLocation Options Response] - extension_
options ResourceType Registration Properties Response Extension Options - features_
rule ResourceType Registration Properties Response Features Rule - identity_
management ResourceType Registration Properties Response Identity Management - is_
pure_ boolproxy - linked_
access_ Sequence[Linkedchecks Access Check Response] - logging_
rules Sequence[LoggingRule Response] - management
Resource
Type Registration Properties Response Management - marketplace_
type str - open_
api_ Openconfiguration Api Configuration Response - provisioning_
state str - The provisioned state of the resource.
- regionality str
- request_
header_ Resourceoptions Type Registration Properties Response Request Header Options - required_
features Sequence[str] - resource_
concurrency_ Mapping[str, Resourcecontrol_ options Concurrency Control Option Response] - resource_
deletion_ strpolicy - resource_
graph_ Resourceconfiguration Type Registration Properties Response Resource Graph Configuration - resource_
move_ Resourcepolicy Type Registration Properties Response Resource Move Policy - routing_
type str - service_
tree_ Sequence[Serviceinfos Tree Info Response] - subscription_
lifecycle_ Resourcenotification_ specifications Type Registration Properties Response Subscription Lifecycle Notification Specifications - subscription_
state_ Sequence[Subscriptionrules State Rule Response] - swagger_
specifications Sequence[SwaggerSpecification Response] - template_
deployment_ Resourceoptions Type Registration Properties Response Template Deployment Options - throttling_
rules Sequence[ThrottlingRule Response]
- List<String>
- List<Property Map>
- check
Name Property MapAvailability Specifications - default
Api StringVersion - disallowed
Action List<String>Verbs - enable
Async BooleanOperation - enable
Third BooleanParty S2S - endpoints List<Property Map>
- extended
Locations List<Property Map> - extension
Options Property Map - features
Rule Property Map - identity
Management Property Map - is
Pure BooleanProxy - linked
Access List<Property Map>Checks - logging
Rules List<Property Map> - management Property Map
- marketplace
Type String - open
Api Property MapConfiguration - provisioning
State String - The provisioned state of the resource.
- regionality String
- request
Header Property MapOptions - required
Features List<String> - resource
Concurrency Map<Property Map>Control Options - resource
Deletion StringPolicy - resource
Graph Property MapConfiguration - resource
Move Property MapPolicy - routing
Type String - service
Tree List<Property Map>Infos - subscription
Lifecycle Property MapNotification Specifications - subscription
State List<Property Map>Rules - swagger
Specifications List<Property Map> - template
Deployment Property MapOptions - throttling
Rules List<Property Map>
RoutingType, RoutingTypeArgs
- Default
Default- Proxy
Only ProxyOnly- Host
Based HostBased- Extension
Extension- Tenant
Tenant- Fanout
Fanout- Location
Based LocationBased- Failover
Failover- Cascade
Extension CascadeExtension
- Routing
Type Default Default- Routing
Type Proxy Only ProxyOnly- Routing
Type Host Based HostBased- Routing
Type Extension Extension- Routing
Type Tenant Tenant- Routing
Type Fanout Fanout- Routing
Type Location Based LocationBased- Routing
Type Failover Failover- Routing
Type Cascade Extension CascadeExtension
- Default
Default- Proxy
Only ProxyOnly- Host
Based HostBased- Extension
Extension- Tenant
Tenant- Fanout
Fanout- Location
Based LocationBased- Failover
Failover- Cascade
Extension CascadeExtension
- Default
Default- Proxy
Only ProxyOnly- Host
Based HostBased- Extension
Extension- Tenant
Tenant- Fanout
Fanout- Location
Based LocationBased- Failover
Failover- Cascade
Extension CascadeExtension
- DEFAULT
Default- PROXY_ONLY
ProxyOnly- HOST_BASED
HostBased- EXTENSION
Extension- TENANT
Tenant- FANOUT
Fanout- LOCATION_BASED
LocationBased- FAILOVER
Failover- CASCADE_EXTENSION
CascadeExtension
- "Default"
Default- "Proxy
Only" ProxyOnly- "Host
Based" HostBased- "Extension"
Extension- "Tenant"
Tenant- "Fanout"
Fanout- "Location
Based" LocationBased- "Failover"
Failover- "Cascade
Extension" CascadeExtension
ServiceTreeInfo, ServiceTreeInfoArgs
- Component
Id string - Readiness
string | Pulumi.
Azure Native. Provider Hub. Readiness - Service
Id string
- Component
Id string - Readiness string | Readiness
- Service
Id string
- component
Id String - readiness String | Readiness
- service
Id String
- component
Id string - readiness string | Readiness
- service
Id string
- component_
id str - readiness str | Readiness
- service_
id str
ServiceTreeInfoResponse, ServiceTreeInfoResponseArgs
- Component
Id string - Readiness string
- Service
Id string
- Component
Id string - Readiness string
- Service
Id string
- component
Id String - readiness String
- service
Id String
- component
Id string - readiness string
- service
Id string
- component_
id str - readiness str
- service_
id str
- component
Id String - readiness String
- service
Id String
SubscriptionNotificationOperation, SubscriptionNotificationOperationArgs
- Not
Defined NotDefined- Delete
All Resources DeleteAllResources- Soft
Delete All Resources SoftDeleteAllResources- No
Op NoOp- Billing
Cancellation BillingCancellation- Undo
Soft Delete UndoSoftDelete
- Subscription
Notification Operation Not Defined NotDefined- Subscription
Notification Operation Delete All Resources DeleteAllResources- Subscription
Notification Operation Soft Delete All Resources SoftDeleteAllResources- Subscription
Notification Operation No Op NoOp- Subscription
Notification Operation Billing Cancellation BillingCancellation- Subscription
Notification Operation Undo Soft Delete UndoSoftDelete
- Not
Defined NotDefined- Delete
All Resources DeleteAllResources- Soft
Delete All Resources SoftDeleteAllResources- No
Op NoOp- Billing
Cancellation BillingCancellation- Undo
Soft Delete UndoSoftDelete
- Not
Defined NotDefined- Delete
All Resources DeleteAllResources- Soft
Delete All Resources SoftDeleteAllResources- No
Op NoOp- Billing
Cancellation BillingCancellation- Undo
Soft Delete UndoSoftDelete
- NOT_DEFINED
NotDefined- DELETE_ALL_RESOURCES
DeleteAllResources- SOFT_DELETE_ALL_RESOURCES
SoftDeleteAllResources- NO_OP
NoOp- BILLING_CANCELLATION
BillingCancellation- UNDO_SOFT_DELETE
UndoSoftDelete
- "Not
Defined" NotDefined- "Delete
All Resources" DeleteAllResources- "Soft
Delete All Resources" SoftDeleteAllResources- "No
Op" NoOp- "Billing
Cancellation" BillingCancellation- "Undo
Soft Delete" UndoSoftDelete
SubscriptionState, SubscriptionStateArgs
- Not
Defined NotDefined- Enabled
Enabled- Warned
Warned- Past
Due PastDue- Disabled
Disabled- Deleted
Deleted
- Subscription
State Not Defined NotDefined- Subscription
State Enabled Enabled- Subscription
State Warned Warned- Subscription
State Past Due PastDue- Subscription
State Disabled Disabled- Subscription
State Deleted Deleted
- Not
Defined NotDefined- Enabled
Enabled- Warned
Warned- Past
Due PastDue- Disabled
Disabled- Deleted
Deleted
- Not
Defined NotDefined- Enabled
Enabled- Warned
Warned- Past
Due PastDue- Disabled
Disabled- Deleted
Deleted
- NOT_DEFINED
NotDefined- ENABLED
Enabled- WARNED
Warned- PAST_DUE
PastDue- DISABLED
Disabled- DELETED
Deleted
- "Not
Defined" NotDefined- "Enabled"
Enabled- "Warned"
Warned- "Past
Due" PastDue- "Disabled"
Disabled- "Deleted"
Deleted
SubscriptionStateOverrideAction, SubscriptionStateOverrideActionArgs
- Action
string | Subscription
Notification Operation - State
string | Subscription
Transitioning State
- action
String | Subscription
Notification Operation - state
String | Subscription
Transitioning State
- action
string | Subscription
Notification Operation - state
string | Subscription
Transitioning State
- action
String | "Not
Defined" | "Delete All Resources" | "Soft Delete All Resources" | "No Op" | "Billing Cancellation" | "Undo Soft Delete" - state
String | "Registered" | "Unregistered" | "Warned" | "Suspended" | "Deleted" | "Warned
To Registered" | "Warned To Suspended" | "Warned To Deleted" | "Warned To Unregistered" | "Suspended To Registered" | "Suspended To Warned" | "Suspended To Deleted" | "Suspended To Unregistered"
SubscriptionStateOverrideActionResponse, SubscriptionStateOverrideActionResponseArgs
SubscriptionStateRule, SubscriptionStateRuleArgs
- Allowed
Actions List<string> - State
string | Pulumi.
Azure Native. Provider Hub. Subscription State
- Allowed
Actions []string - State
string | Subscription
State
- allowed
Actions List<String> - state
String | Subscription
State
- allowed
Actions string[] - state
string | Subscription
State
- allowed_
actions Sequence[str] - state
str | Subscription
State
- allowed
Actions List<String> - state
String | "Not
Defined" | "Enabled" | "Warned" | "Past Due" | "Disabled" | "Deleted"
SubscriptionStateRuleResponse, SubscriptionStateRuleResponseArgs
- Allowed
Actions List<string> - State string
- Allowed
Actions []string - State string
- allowed
Actions List<String> - state String
- allowed
Actions string[] - state string
- allowed_
actions Sequence[str] - state str
- allowed
Actions List<String> - state String
SubscriptionTransitioningState, SubscriptionTransitioningStateArgs
- Registered
Registered- Unregistered
Unregistered- Warned
Warned- Suspended
Suspended- Deleted
Deleted- Warned
To Registered WarnedToRegistered- Warned
To Suspended WarnedToSuspended- Warned
To Deleted WarnedToDeleted- Warned
To Unregistered WarnedToUnregistered- Suspended
To Registered SuspendedToRegistered- Suspended
To Warned SuspendedToWarned- Suspended
To Deleted SuspendedToDeleted- Suspended
To Unregistered SuspendedToUnregistered
- Subscription
Transitioning State Registered Registered- Subscription
Transitioning State Unregistered Unregistered- Subscription
Transitioning State Warned Warned- Subscription
Transitioning State Suspended Suspended- Subscription
Transitioning State Deleted Deleted- Subscription
Transitioning State Warned To Registered WarnedToRegistered- Subscription
Transitioning State Warned To Suspended WarnedToSuspended- Subscription
Transitioning State Warned To Deleted WarnedToDeleted- Subscription
Transitioning State Warned To Unregistered WarnedToUnregistered- Subscription
Transitioning State Suspended To Registered SuspendedToRegistered- Subscription
Transitioning State Suspended To Warned SuspendedToWarned- Subscription
Transitioning State Suspended To Deleted SuspendedToDeleted- Subscription
Transitioning State Suspended To Unregistered SuspendedToUnregistered
- Registered
Registered- Unregistered
Unregistered- Warned
Warned- Suspended
Suspended- Deleted
Deleted- Warned
To Registered WarnedToRegistered- Warned
To Suspended WarnedToSuspended- Warned
To Deleted WarnedToDeleted- Warned
To Unregistered WarnedToUnregistered- Suspended
To Registered SuspendedToRegistered- Suspended
To Warned SuspendedToWarned- Suspended
To Deleted SuspendedToDeleted- Suspended
To Unregistered SuspendedToUnregistered
- Registered
Registered- Unregistered
Unregistered- Warned
Warned- Suspended
Suspended- Deleted
Deleted- Warned
To Registered WarnedToRegistered- Warned
To Suspended WarnedToSuspended- Warned
To Deleted WarnedToDeleted- Warned
To Unregistered WarnedToUnregistered- Suspended
To Registered SuspendedToRegistered- Suspended
To Warned SuspendedToWarned- Suspended
To Deleted SuspendedToDeleted- Suspended
To Unregistered SuspendedToUnregistered
- REGISTERED
Registered- UNREGISTERED
Unregistered- WARNED
Warned- SUSPENDED
Suspended- DELETED
Deleted- WARNED_TO_REGISTERED
WarnedToRegistered- WARNED_TO_SUSPENDED
WarnedToSuspended- WARNED_TO_DELETED
WarnedToDeleted- WARNED_TO_UNREGISTERED
WarnedToUnregistered- SUSPENDED_TO_REGISTERED
SuspendedToRegistered- SUSPENDED_TO_WARNED
SuspendedToWarned- SUSPENDED_TO_DELETED
SuspendedToDeleted- SUSPENDED_TO_UNREGISTERED
SuspendedToUnregistered
- "Registered"
Registered- "Unregistered"
Unregistered- "Warned"
Warned- "Suspended"
Suspended- "Deleted"
Deleted- "Warned
To Registered" WarnedToRegistered- "Warned
To Suspended" WarnedToSuspended- "Warned
To Deleted" WarnedToDeleted- "Warned
To Unregistered" WarnedToUnregistered- "Suspended
To Registered" SuspendedToRegistered- "Suspended
To Warned" SuspendedToWarned- "Suspended
To Deleted" SuspendedToDeleted- "Suspended
To Unregistered" SuspendedToUnregistered
SwaggerSpecification, SwaggerSpecificationArgs
- Api
Versions List<string> - Swagger
Spec stringFolder Uri
- Api
Versions []string - Swagger
Spec stringFolder Uri
- api
Versions List<String> - swagger
Spec StringFolder Uri
- api
Versions string[] - swagger
Spec stringFolder Uri
- api_
versions Sequence[str] - swagger_
spec_ strfolder_ uri
- api
Versions List<String> - swagger
Spec StringFolder Uri
SwaggerSpecificationResponse, SwaggerSpecificationResponseArgs
- Api
Versions List<string> - Swagger
Spec stringFolder Uri
- Api
Versions []string - Swagger
Spec stringFolder Uri
- api
Versions List<String> - swagger
Spec StringFolder Uri
- api
Versions string[] - swagger
Spec stringFolder Uri
- api_
versions Sequence[str] - swagger_
spec_ strfolder_ uri
- api
Versions List<String> - swagger
Spec StringFolder Uri
SystemDataResponse, SystemDataResponseArgs
Metadata pertaining to creation and last modification of 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 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.
ThrottlingMetric, ThrottlingMetricArgs
- Limit double
- Type
string | Pulumi.
Azure Native. Provider Hub. Throttling Metric Type - Interval string
- Limit float64
- Type
string | Throttling
Metric Type - Interval string
- limit Double
- type
String | Throttling
Metric Type - interval String
- limit number
- type
string | Throttling
Metric Type - interval string
- limit float
- type
str | Throttling
Metric Type - interval str
- limit Number
- type
String | "Not
Specified" | "Number Of Requests" | "Number Of Resources" - interval String
ThrottlingMetricResponse, ThrottlingMetricResponseArgs
ThrottlingMetricType, ThrottlingMetricTypeArgs
- Not
Specified NotSpecified- Number
Of Requests NumberOfRequests- Number
Of Resources NumberOfResources
- Throttling
Metric Type Not Specified NotSpecified- Throttling
Metric Type Number Of Requests NumberOfRequests- Throttling
Metric Type Number Of Resources NumberOfResources
- Not
Specified NotSpecified- Number
Of Requests NumberOfRequests- Number
Of Resources NumberOfResources
- Not
Specified NotSpecified- Number
Of Requests NumberOfRequests- Number
Of Resources NumberOfResources
- NOT_SPECIFIED
NotSpecified- NUMBER_OF_REQUESTS
NumberOfRequests- NUMBER_OF_RESOURCES
NumberOfResources
- "Not
Specified" NotSpecified- "Number
Of Requests" NumberOfRequests- "Number
Of Resources" NumberOfResources
ThrottlingRule, ThrottlingRuleArgs
- Action string
- Metrics
[]Throttling
Metric - Required
Features []string
- action String
- metrics
List<Throttling
Metric> - required
Features List<String>
- action string
- metrics
Throttling
Metric[] - required
Features string[]
- action str
- metrics
Sequence[Throttling
Metric] - required_
features Sequence[str]
- action String
- metrics List<Property Map>
- required
Features List<String>
ThrottlingRuleResponse, ThrottlingRuleResponseArgs
- Action string
- Metrics
[]Throttling
Metric Response - Required
Features []string
- action String
- metrics
List<Throttling
Metric Response> - required
Features List<String>
- action string
- metrics
Throttling
Metric Response[] - required
Features string[]
- action str
- metrics
Sequence[Throttling
Metric Response] - required_
features Sequence[str]
- action String
- metrics List<Property Map>
- required
Features List<String>
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:providerhub:ResourceTypeRegistration employees /subscriptions/{subscriptionId}/providers/Microsoft.ProviderHub/providerRegistrations/{providerNamespace}/resourcetypeRegistrations/{resourceType}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- azure-native-v2 pulumi/pulumi-azure-native
- License
- Apache-2.0
