azure-native.datareplication.Fabric
Explore with Pulumi AI
Fabric model.
Uses Azure REST API version 2021-02-16-preview. In version 2.x of the Azure Native provider, it used API version 2021-02-16-preview.
Other available API versions: 2024-09-01. These can be accessed by generating a local SDK package using the CLI command pulumi package add azure-native datareplication [ApiVersion]
. See the version guide for details.
Create Fabric Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Fabric(name: string, args: FabricArgs, opts?: CustomResourceOptions);
@overload
def Fabric(resource_name: str,
args: FabricArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Fabric(resource_name: str,
opts: Optional[ResourceOptions] = None,
properties: Optional[FabricModelPropertiesArgs] = None,
resource_group_name: Optional[str] = None,
fabric_name: Optional[str] = None,
location: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None)
func NewFabric(ctx *Context, name string, args FabricArgs, opts ...ResourceOption) (*Fabric, error)
public Fabric(string name, FabricArgs args, CustomResourceOptions? opts = null)
public Fabric(String name, FabricArgs args)
public Fabric(String name, FabricArgs args, CustomResourceOptions options)
type: azure-native:datareplication:Fabric
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name
This property is required. string - The unique name of the resource.
- args
This property is required. FabricArgs - The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name
This property is required. str - The unique name of the resource.
- args
This property is required. FabricArgs - The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name
This property is required. string - The unique name of the resource.
- args
This property is required. FabricArgs - The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name
This property is required. string - The unique name of the resource.
- args
This property is required. FabricArgs - The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name
This property is required. String - The unique name of the resource.
- args
This property is required. FabricArgs - 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 fabricResource = new AzureNative.DataReplication.Fabric("fabricResource", new()
{
Properties = new AzureNative.DataReplication.Inputs.FabricModelPropertiesArgs
{
CustomProperties = new AzureNative.DataReplication.Inputs.AzStackHCIFabricModelCustomPropertiesArgs
{
AzStackHciSiteId = "string",
Cluster = new AzureNative.DataReplication.Inputs.AzStackHCIClusterPropertiesArgs
{
ClusterName = "string",
ResourceName = "string",
StorageAccountName = "string",
StorageContainers = new[]
{
new AzureNative.DataReplication.Inputs.StorageContainerPropertiesArgs
{
ClusterSharedVolumePath = "string",
Name = "string",
},
},
},
InstanceType = "AzStackHCI",
MigrationSolutionId = "string",
},
},
ResourceGroupName = "string",
FabricName = "string",
Location = "string",
Tags =
{
{ "string", "string" },
},
});
example, err := datareplication.NewFabric(ctx, "fabricResource", &datareplication.FabricArgs{
Properties: &datareplication.FabricModelPropertiesArgs{
CustomProperties: datareplication.AzStackHCIFabricModelCustomProperties{
AzStackHciSiteId: "string",
Cluster: datareplication.AzStackHCIClusterProperties{
ClusterName: "string",
ResourceName: "string",
StorageAccountName: "string",
StorageContainers: []datareplication.StorageContainerProperties{
{
ClusterSharedVolumePath: "string",
Name: "string",
},
},
},
InstanceType: "AzStackHCI",
MigrationSolutionId: "string",
},
},
ResourceGroupName: pulumi.String("string"),
FabricName: pulumi.String("string"),
Location: pulumi.String("string"),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var fabricResource = new Fabric("fabricResource", FabricArgs.builder()
.properties(FabricModelPropertiesArgs.builder()
.customProperties(AzStackHCIFabricModelCustomPropertiesArgs.builder()
.azStackHciSiteId("string")
.cluster(AzStackHCIClusterPropertiesArgs.builder()
.clusterName("string")
.resourceName("string")
.storageAccountName("string")
.storageContainers(StorageContainerPropertiesArgs.builder()
.clusterSharedVolumePath("string")
.name("string")
.build())
.build())
.instanceType("AzStackHCI")
.migrationSolutionId("string")
.build())
.build())
.resourceGroupName("string")
.fabricName("string")
.location("string")
.tags(Map.of("string", "string"))
.build());
fabric_resource = azure_native.datareplication.Fabric("fabricResource",
properties={
"custom_properties": {
"az_stack_hci_site_id": "string",
"cluster": {
"cluster_name": "string",
"resource_name": "string",
"storage_account_name": "string",
"storage_containers": [{
"cluster_shared_volume_path": "string",
"name": "string",
}],
},
"instance_type": "AzStackHCI",
"migration_solution_id": "string",
},
},
resource_group_name="string",
fabric_name="string",
location="string",
tags={
"string": "string",
})
const fabricResource = new azure_native.datareplication.Fabric("fabricResource", {
properties: {
customProperties: {
azStackHciSiteId: "string",
cluster: {
clusterName: "string",
resourceName: "string",
storageAccountName: "string",
storageContainers: [{
clusterSharedVolumePath: "string",
name: "string",
}],
},
instanceType: "AzStackHCI",
migrationSolutionId: "string",
},
},
resourceGroupName: "string",
fabricName: "string",
location: "string",
tags: {
string: "string",
},
});
type: azure-native:datareplication:Fabric
properties:
fabricName: string
location: string
properties:
customProperties:
azStackHciSiteId: string
cluster:
clusterName: string
resourceName: string
storageAccountName: string
storageContainers:
- clusterSharedVolumePath: string
name: string
instanceType: AzStackHCI
migrationSolutionId: string
resourceGroupName: string
tags:
string: string
Fabric 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 Fabric resource accepts the following input properties:
- Properties
This property is required. Pulumi.Azure Native. Data Replication. Inputs. Fabric Model Properties - Fabric model properties.
- Resource
Group Name This property is required. Changes to this property will trigger replacement.
- The name of the resource group. The name is case insensitive.
- Fabric
Name Changes to this property will trigger replacement.
- The fabric name.
- Location
Changes to this property will trigger replacement.
- Gets or sets the location of the fabric.
- Dictionary<string, string>
- Gets or sets the resource tags.
- Properties
This property is required. FabricModel Properties Args - Fabric model properties.
- Resource
Group Name This property is required. Changes to this property will trigger replacement.
- The name of the resource group. The name is case insensitive.
- Fabric
Name Changes to this property will trigger replacement.
- The fabric name.
- Location
Changes to this property will trigger replacement.
- Gets or sets the location of the fabric.
- map[string]string
- Gets or sets the resource tags.
- properties
This property is required. FabricModel Properties - Fabric model properties.
- resource
Group Name This property is required. Changes to this property will trigger replacement.
- The name of the resource group. The name is case insensitive.
- fabric
Name Changes to this property will trigger replacement.
- The fabric name.
- location
Changes to this property will trigger replacement.
- Gets or sets the location of the fabric.
- Map<String,String>
- Gets or sets the resource tags.
- properties
This property is required. FabricModel Properties - Fabric model properties.
- resource
Group Name This property is required. Changes to this property will trigger replacement.
- The name of the resource group. The name is case insensitive.
- fabric
Name Changes to this property will trigger replacement.
- The fabric name.
- location
Changes to this property will trigger replacement.
- Gets or sets the location of the fabric.
- {[key: string]: string}
- Gets or sets the resource tags.
- properties
This property is required. FabricModel Properties Args - Fabric model properties.
- resource_
group_ name This property is required. Changes to this property will trigger replacement.
- The name of the resource group. The name is case insensitive.
- fabric_
name Changes to this property will trigger replacement.
- The fabric name.
- location
Changes to this property will trigger replacement.
- Gets or sets the location of the fabric.
- Mapping[str, str]
- Gets or sets the resource tags.
- properties
This property is required. Property Map - Fabric model properties.
- resource
Group Name This property is required. Changes to this property will trigger replacement.
- The name of the resource group. The name is case insensitive.
- fabric
Name Changes to this property will trigger replacement.
- The fabric name.
- location
Changes to this property will trigger replacement.
- Gets or sets the location of the fabric.
- Map<String>
- Gets or sets the resource tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the Fabric resource produces the following output properties:
- Azure
Api stringVersion - The Azure API version of the resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Gets or sets the name of the resource.
- System
Data Pulumi.Azure Native. Data Replication. Outputs. Fabric Model Response System Data - Type string
- Gets or sets the type of the resource.
- Azure
Api stringVersion - The Azure API version of the resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Gets or sets the name of the resource.
- System
Data FabricModel Response System Data - Type string
- Gets or sets the type of the resource.
- azure
Api StringVersion - The Azure API version of the resource.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Gets or sets the name of the resource.
- system
Data FabricModel Response System Data - type String
- Gets or sets the type of the resource.
- azure
Api stringVersion - The Azure API version of the resource.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- Gets or sets the name of the resource.
- system
Data FabricModel Response System Data - type string
- Gets or sets the type of the resource.
- azure_
api_ strversion - The Azure API version of the resource.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- Gets or sets the name of the resource.
- system_
data FabricModel Response System Data - type str
- Gets or sets the type of the resource.
- azure
Api StringVersion - The Azure API version of the resource.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Gets or sets the name of the resource.
- system
Data Property Map - type String
- Gets or sets the type of the resource.
Supporting Types
AzStackHCIClusterProperties, AzStackHCIClusterPropertiesArgs
- Cluster
Name This property is required. string - Gets or sets the AzStackHCICluster FQDN name.
- Resource
Name This property is required. string - Gets or sets the AzStackHCICluster resource name.
- Storage
Account Name This property is required. string - Gets or sets the Storage account name.
- Storage
Containers This property is required. List<Pulumi.Azure Native. Data Replication. Inputs. Storage Container Properties> - Gets or sets the list of AzStackHCICluster Storage Container.
- Cluster
Name This property is required. string - Gets or sets the AzStackHCICluster FQDN name.
- Resource
Name This property is required. string - Gets or sets the AzStackHCICluster resource name.
- Storage
Account Name This property is required. string - Gets or sets the Storage account name.
- Storage
Containers This property is required. []StorageContainer Properties - Gets or sets the list of AzStackHCICluster Storage Container.
- cluster
Name This property is required. String - Gets or sets the AzStackHCICluster FQDN name.
- resource
Name This property is required. String - Gets or sets the AzStackHCICluster resource name.
- storage
Account Name This property is required. String - Gets or sets the Storage account name.
- storage
Containers This property is required. List<StorageContainer Properties> - Gets or sets the list of AzStackHCICluster Storage Container.
- cluster
Name This property is required. string - Gets or sets the AzStackHCICluster FQDN name.
- resource
Name This property is required. string - Gets or sets the AzStackHCICluster resource name.
- storage
Account Name This property is required. string - Gets or sets the Storage account name.
- storage
Containers This property is required. StorageContainer Properties[] - Gets or sets the list of AzStackHCICluster Storage Container.
- cluster_
name This property is required. str - Gets or sets the AzStackHCICluster FQDN name.
- resource_
name This property is required. str - Gets or sets the AzStackHCICluster resource name.
- storage_
account_ name This property is required. str - Gets or sets the Storage account name.
- storage_
containers This property is required. Sequence[StorageContainer Properties] - Gets or sets the list of AzStackHCICluster Storage Container.
- cluster
Name This property is required. String - Gets or sets the AzStackHCICluster FQDN name.
- resource
Name This property is required. String - Gets or sets the AzStackHCICluster resource name.
- storage
Account Name This property is required. String - Gets or sets the Storage account name.
- storage
Containers This property is required. List<Property Map> - Gets or sets the list of AzStackHCICluster Storage Container.
AzStackHCIClusterPropertiesResponse, AzStackHCIClusterPropertiesResponseArgs
- Cluster
Name This property is required. string - Gets or sets the AzStackHCICluster FQDN name.
- Resource
Name This property is required. string - Gets or sets the AzStackHCICluster resource name.
- Storage
Account Name This property is required. string - Gets or sets the Storage account name.
- Storage
Containers This property is required. List<Pulumi.Azure Native. Data Replication. Inputs. Storage Container Properties Response> - Gets or sets the list of AzStackHCICluster Storage Container.
- Cluster
Name This property is required. string - Gets or sets the AzStackHCICluster FQDN name.
- Resource
Name This property is required. string - Gets or sets the AzStackHCICluster resource name.
- Storage
Account Name This property is required. string - Gets or sets the Storage account name.
- Storage
Containers This property is required. []StorageContainer Properties Response - Gets or sets the list of AzStackHCICluster Storage Container.
- cluster
Name This property is required. String - Gets or sets the AzStackHCICluster FQDN name.
- resource
Name This property is required. String - Gets or sets the AzStackHCICluster resource name.
- storage
Account Name This property is required. String - Gets or sets the Storage account name.
- storage
Containers This property is required. List<StorageContainer Properties Response> - Gets or sets the list of AzStackHCICluster Storage Container.
- cluster
Name This property is required. string - Gets or sets the AzStackHCICluster FQDN name.
- resource
Name This property is required. string - Gets or sets the AzStackHCICluster resource name.
- storage
Account Name This property is required. string - Gets or sets the Storage account name.
- storage
Containers This property is required. StorageContainer Properties Response[] - Gets or sets the list of AzStackHCICluster Storage Container.
- cluster_
name This property is required. str - Gets or sets the AzStackHCICluster FQDN name.
- resource_
name This property is required. str - Gets or sets the AzStackHCICluster resource name.
- storage_
account_ name This property is required. str - Gets or sets the Storage account name.
- storage_
containers This property is required. Sequence[StorageContainer Properties Response] - Gets or sets the list of AzStackHCICluster Storage Container.
- cluster
Name This property is required. String - Gets or sets the AzStackHCICluster FQDN name.
- resource
Name This property is required. String - Gets or sets the AzStackHCICluster resource name.
- storage
Account Name This property is required. String - Gets or sets the Storage account name.
- storage
Containers This property is required. List<Property Map> - Gets or sets the list of AzStackHCICluster Storage Container.
AzStackHCIFabricModelCustomProperties, AzStackHCIFabricModelCustomPropertiesArgs
- Az
Stack Hci Site Id This property is required. string - Gets or sets the ARM Id of the AzStackHCI site.
- Cluster
This property is required. Pulumi.Azure Native. Data Replication. Inputs. Az Stack HCICluster Properties - AzStackHCI cluster properties.
- Migration
Solution Id This property is required. string - Gets or sets the Migration solution ARM Id.
- Az
Stack Hci Site Id This property is required. string - Gets or sets the ARM Id of the AzStackHCI site.
- Cluster
This property is required. AzStack HCICluster Properties - AzStackHCI cluster properties.
- Migration
Solution Id This property is required. string - Gets or sets the Migration solution ARM Id.
- az
Stack Hci Site Id This property is required. String - Gets or sets the ARM Id of the AzStackHCI site.
- cluster
This property is required. AzStack HCICluster Properties - AzStackHCI cluster properties.
- migration
Solution Id This property is required. String - Gets or sets the Migration solution ARM Id.
- az
Stack Hci Site Id This property is required. string - Gets or sets the ARM Id of the AzStackHCI site.
- cluster
This property is required. AzStack HCICluster Properties - AzStackHCI cluster properties.
- migration
Solution Id This property is required. string - Gets or sets the Migration solution ARM Id.
- az_
stack_ hci_ site_ id This property is required. str - Gets or sets the ARM Id of the AzStackHCI site.
- cluster
This property is required. AzStack HCICluster Properties - AzStackHCI cluster properties.
- migration_
solution_ id This property is required. str - Gets or sets the Migration solution ARM Id.
- az
Stack Hci Site Id This property is required. String - Gets or sets the ARM Id of the AzStackHCI site.
- cluster
This property is required. Property Map - AzStackHCI cluster properties.
- migration
Solution Id This property is required. String - Gets or sets the Migration solution ARM Id.
AzStackHCIFabricModelCustomPropertiesResponse, AzStackHCIFabricModelCustomPropertiesResponseArgs
- Appliance
Name This property is required. List<string> - Gets or sets the Appliance name.
- Az
Stack Hci Site Id This property is required. string - Gets or sets the ARM Id of the AzStackHCI site.
- Cluster
This property is required. Pulumi.Azure Native. Data Replication. Inputs. Az Stack HCICluster Properties Response - AzStackHCI cluster properties.
- Fabric
Container Id This property is required. string - Gets or sets the fabric container Id.
- Fabric
Resource Id This property is required. string - Gets or sets the fabric resource Id.
- Migration
Hub Uri This property is required. string - Gets or sets the migration hub Uri.
- Migration
Solution Id This property is required. string - Gets or sets the Migration solution ARM Id.
- Appliance
Name This property is required. []string - Gets or sets the Appliance name.
- Az
Stack Hci Site Id This property is required. string - Gets or sets the ARM Id of the AzStackHCI site.
- Cluster
This property is required. AzStack HCICluster Properties Response - AzStackHCI cluster properties.
- Fabric
Container Id This property is required. string - Gets or sets the fabric container Id.
- Fabric
Resource Id This property is required. string - Gets or sets the fabric resource Id.
- Migration
Hub Uri This property is required. string - Gets or sets the migration hub Uri.
- Migration
Solution Id This property is required. string - Gets or sets the Migration solution ARM Id.
- appliance
Name This property is required. List<String> - Gets or sets the Appliance name.
- az
Stack Hci Site Id This property is required. String - Gets or sets the ARM Id of the AzStackHCI site.
- cluster
This property is required. AzStack HCICluster Properties Response - AzStackHCI cluster properties.
- fabric
Container Id This property is required. String - Gets or sets the fabric container Id.
- fabric
Resource Id This property is required. String - Gets or sets the fabric resource Id.
- migration
Hub Uri This property is required. String - Gets or sets the migration hub Uri.
- migration
Solution Id This property is required. String - Gets or sets the Migration solution ARM Id.
- appliance
Name This property is required. string[] - Gets or sets the Appliance name.
- az
Stack Hci Site Id This property is required. string - Gets or sets the ARM Id of the AzStackHCI site.
- cluster
This property is required. AzStack HCICluster Properties Response - AzStackHCI cluster properties.
- fabric
Container Id This property is required. string - Gets or sets the fabric container Id.
- fabric
Resource Id This property is required. string - Gets or sets the fabric resource Id.
- migration
Hub Uri This property is required. string - Gets or sets the migration hub Uri.
- migration
Solution Id This property is required. string - Gets or sets the Migration solution ARM Id.
- appliance_
name This property is required. Sequence[str] - Gets or sets the Appliance name.
- az_
stack_ hci_ site_ id This property is required. str - Gets or sets the ARM Id of the AzStackHCI site.
- cluster
This property is required. AzStack HCICluster Properties Response - AzStackHCI cluster properties.
- fabric_
container_ id This property is required. str - Gets or sets the fabric container Id.
- fabric_
resource_ id This property is required. str - Gets or sets the fabric resource Id.
- migration_
hub_ uri This property is required. str - Gets or sets the migration hub Uri.
- migration_
solution_ id This property is required. str - Gets or sets the Migration solution ARM Id.
- appliance
Name This property is required. List<String> - Gets or sets the Appliance name.
- az
Stack Hci Site Id This property is required. String - Gets or sets the ARM Id of the AzStackHCI site.
- cluster
This property is required. Property Map - AzStackHCI cluster properties.
- fabric
Container Id This property is required. String - Gets or sets the fabric container Id.
- fabric
Resource Id This property is required. String - Gets or sets the fabric resource Id.
- migration
Hub Uri This property is required. String - Gets or sets the migration hub Uri.
- migration
Solution Id This property is required. String - Gets or sets the Migration solution ARM Id.
FabricModelProperties, FabricModelPropertiesArgs
- Custom
Properties This property is required. Pulumi.Azure | Pulumi.Native. Data Replication. Inputs. Az Stack HCIFabric Model Custom Properties Azure | Pulumi.Native. Data Replication. Inputs. Hyper VMigrate Fabric Model Custom Properties Azure Native. Data Replication. Inputs. VMware Migrate Fabric Model Custom Properties - Fabric model custom properties.
- Custom
Properties This property is required. AzStack | HyperHCIFabric Model Custom Properties VMigrate | VMwareFabric Model Custom Properties Migrate Fabric Model Custom Properties - Fabric model custom properties.
- custom
Properties This property is required. AzStack | HyperHCIFabric Model Custom Properties VMigrate | VMwareFabric Model Custom Properties Migrate Fabric Model Custom Properties - Fabric model custom properties.
- custom
Properties This property is required. AzStack | HyperHCIFabric Model Custom Properties VMigrate | VMwareFabric Model Custom Properties Migrate Fabric Model Custom Properties - Fabric model custom properties.
- custom_
properties This property is required. AzStack | HyperHCIFabric Model Custom Properties VMigrate | VMwareFabric Model Custom Properties Migrate Fabric Model Custom Properties - Fabric model custom properties.
- custom
Properties This property is required. Property Map | Property Map | Property Map - Fabric model custom properties.
FabricModelPropertiesResponse, FabricModelPropertiesResponseArgs
- Custom
Properties This property is required. Pulumi.Azure | Pulumi.Native. Data Replication. Inputs. Az Stack HCIFabric Model Custom Properties Response Azure | Pulumi.Native. Data Replication. Inputs. Hyper VMigrate Fabric Model Custom Properties Response Azure Native. Data Replication. Inputs. VMware Migrate Fabric Model Custom Properties Response - Fabric model custom properties.
- Health
This property is required. string - Gets or sets the fabric health.
- Health
Errors This property is required. List<Pulumi.Azure Native. Data Replication. Inputs. Health Error Model Response> - Gets or sets the list of health errors.
- Provisioning
State This property is required. string - Gets or sets the provisioning state of the fabric.
- Service
Endpoint This property is required. string - Gets or sets the service endpoint.
- Service
Resource Id This property is required. string - Gets or sets the service resource Id.
- Custom
Properties This property is required. AzStack | HyperHCIFabric Model Custom Properties Response VMigrate | VMwareFabric Model Custom Properties Response Migrate Fabric Model Custom Properties Response - Fabric model custom properties.
- Health
This property is required. string - Gets or sets the fabric health.
- Health
Errors This property is required. []HealthError Model Response - Gets or sets the list of health errors.
- Provisioning
State This property is required. string - Gets or sets the provisioning state of the fabric.
- Service
Endpoint This property is required. string - Gets or sets the service endpoint.
- Service
Resource Id This property is required. string - Gets or sets the service resource Id.
- custom
Properties This property is required. AzStack | HyperHCIFabric Model Custom Properties Response VMigrate | VMwareFabric Model Custom Properties Response Migrate Fabric Model Custom Properties Response - Fabric model custom properties.
- health
This property is required. String - Gets or sets the fabric health.
- health
Errors This property is required. List<HealthError Model Response> - Gets or sets the list of health errors.
- provisioning
State This property is required. String - Gets or sets the provisioning state of the fabric.
- service
Endpoint This property is required. String - Gets or sets the service endpoint.
- service
Resource Id This property is required. String - Gets or sets the service resource Id.
- custom
Properties This property is required. AzStack | HyperHCIFabric Model Custom Properties Response VMigrate | VMwareFabric Model Custom Properties Response Migrate Fabric Model Custom Properties Response - Fabric model custom properties.
- health
This property is required. string - Gets or sets the fabric health.
- health
Errors This property is required. HealthError Model Response[] - Gets or sets the list of health errors.
- provisioning
State This property is required. string - Gets or sets the provisioning state of the fabric.
- service
Endpoint This property is required. string - Gets or sets the service endpoint.
- service
Resource Id This property is required. string - Gets or sets the service resource Id.
- custom_
properties This property is required. AzStack | HyperHCIFabric Model Custom Properties Response VMigrate | VMwareFabric Model Custom Properties Response Migrate Fabric Model Custom Properties Response - Fabric model custom properties.
- health
This property is required. str - Gets or sets the fabric health.
- health_
errors This property is required. Sequence[HealthError Model Response] - Gets or sets the list of health errors.
- provisioning_
state This property is required. str - Gets or sets the provisioning state of the fabric.
- service_
endpoint This property is required. str - Gets or sets the service endpoint.
- service_
resource_ id This property is required. str - Gets or sets the service resource Id.
- custom
Properties This property is required. Property Map | Property Map | Property Map - Fabric model custom properties.
- health
This property is required. String - Gets or sets the fabric health.
- health
Errors This property is required. List<Property Map> - Gets or sets the list of health errors.
- provisioning
State This property is required. String - Gets or sets the provisioning state of the fabric.
- service
Endpoint This property is required. String - Gets or sets the service endpoint.
- service
Resource Id This property is required. String - Gets or sets the service resource Id.
FabricModelResponseSystemData, FabricModelResponseSystemDataArgs
- Created
At string - Gets or sets the timestamp of resource creation (UTC).
- Created
By string - Gets or sets identity that created the resource.
- Created
By stringType - Gets or sets the type of identity that created the resource: user, application, managedIdentity.
- Last
Modified stringAt - Gets or sets the timestamp of resource last modification (UTC).
- Last
Modified stringBy - Gets or sets the identity that last modified the resource.
- Last
Modified stringBy Type - Gets or sets the type of identity that last modified the resource: user, application, managedIdentity.
- Created
At string - Gets or sets the timestamp of resource creation (UTC).
- Created
By string - Gets or sets identity that created the resource.
- Created
By stringType - Gets or sets the type of identity that created the resource: user, application, managedIdentity.
- Last
Modified stringAt - Gets or sets the timestamp of resource last modification (UTC).
- Last
Modified stringBy - Gets or sets the identity that last modified the resource.
- Last
Modified stringBy Type - Gets or sets the type of identity that last modified the resource: user, application, managedIdentity.
- created
At String - Gets or sets the timestamp of resource creation (UTC).
- created
By String - Gets or sets identity that created the resource.
- created
By StringType - Gets or sets the type of identity that created the resource: user, application, managedIdentity.
- last
Modified StringAt - Gets or sets the timestamp of resource last modification (UTC).
- last
Modified StringBy - Gets or sets the identity that last modified the resource.
- last
Modified StringBy Type - Gets or sets the type of identity that last modified the resource: user, application, managedIdentity.
- created
At string - Gets or sets the timestamp of resource creation (UTC).
- created
By string - Gets or sets identity that created the resource.
- created
By stringType - Gets or sets the type of identity that created the resource: user, application, managedIdentity.
- last
Modified stringAt - Gets or sets the timestamp of resource last modification (UTC).
- last
Modified stringBy - Gets or sets the identity that last modified the resource.
- last
Modified stringBy Type - Gets or sets the type of identity that last modified the resource: user, application, managedIdentity.
- created_
at str - Gets or sets the timestamp of resource creation (UTC).
- created_
by str - Gets or sets identity that created the resource.
- created_
by_ strtype - Gets or sets the type of identity that created the resource: user, application, managedIdentity.
- last_
modified_ strat - Gets or sets the timestamp of resource last modification (UTC).
- last_
modified_ strby - Gets or sets the identity that last modified the resource.
- last_
modified_ strby_ type - Gets or sets the type of identity that last modified the resource: user, application, managedIdentity.
- created
At String - Gets or sets the timestamp of resource creation (UTC).
- created
By String - Gets or sets identity that created the resource.
- created
By StringType - Gets or sets the type of identity that created the resource: user, application, managedIdentity.
- last
Modified StringAt - Gets or sets the timestamp of resource last modification (UTC).
- last
Modified StringBy - Gets or sets the identity that last modified the resource.
- last
Modified StringBy Type - Gets or sets the type of identity that last modified the resource: user, application, managedIdentity.
HealthErrorModelResponse, HealthErrorModelResponseArgs
- Category
This property is required. string - Gets or sets the error category.
- Causes
This property is required. string - Gets or sets possible causes of the error.
- Code
This property is required. string - Gets or sets the error code.
- Creation
Time This property is required. string - Gets or sets the error creation time.
- Health
Category This property is required. string - Gets or sets the health category.
- Is
Customer Resolvable This property is required. bool - Gets or sets a value indicating whether the error is customer resolvable.
- Message
This property is required. string - Gets or sets the error message.
- Recommendation
This property is required. string - Gets or sets recommended action to resolve the error.
- Severity
This property is required. string - Gets or sets the error severity.
- Source
This property is required. string - Gets or sets the error source.
- Summary
This property is required. string - Gets or sets the error summary.
- Affected
Resource List<string>Correlation Ids - Gets or sets the list of affected resource correlation Ids. This can be used to uniquely identify the count of items affected by a specific category and severity as well as count of item affected by an specific issue.
- Affected
Resource stringType - Gets or sets the type of affected resource type.
- Child
Errors List<Pulumi.Azure Native. Data Replication. Inputs. Inner Health Error Model Response> - Gets or sets a list of child health errors associated with this error.
- Category
This property is required. string - Gets or sets the error category.
- Causes
This property is required. string - Gets or sets possible causes of the error.
- Code
This property is required. string - Gets or sets the error code.
- Creation
Time This property is required. string - Gets or sets the error creation time.
- Health
Category This property is required. string - Gets or sets the health category.
- Is
Customer Resolvable This property is required. bool - Gets or sets a value indicating whether the error is customer resolvable.
- Message
This property is required. string - Gets or sets the error message.
- Recommendation
This property is required. string - Gets or sets recommended action to resolve the error.
- Severity
This property is required. string - Gets or sets the error severity.
- Source
This property is required. string - Gets or sets the error source.
- Summary
This property is required. string - Gets or sets the error summary.
- Affected
Resource []stringCorrelation Ids - Gets or sets the list of affected resource correlation Ids. This can be used to uniquely identify the count of items affected by a specific category and severity as well as count of item affected by an specific issue.
- Affected
Resource stringType - Gets or sets the type of affected resource type.
- Child
Errors []InnerHealth Error Model Response - Gets or sets a list of child health errors associated with this error.
- category
This property is required. String - Gets or sets the error category.
- causes
This property is required. String - Gets or sets possible causes of the error.
- code
This property is required. String - Gets or sets the error code.
- creation
Time This property is required. String - Gets or sets the error creation time.
- health
Category This property is required. String - Gets or sets the health category.
- is
Customer Resolvable This property is required. Boolean - Gets or sets a value indicating whether the error is customer resolvable.
- message
This property is required. String - Gets or sets the error message.
- recommendation
This property is required. String - Gets or sets recommended action to resolve the error.
- severity
This property is required. String - Gets or sets the error severity.
- source
This property is required. String - Gets or sets the error source.
- summary
This property is required. String - Gets or sets the error summary.
- affected
Resource List<String>Correlation Ids - Gets or sets the list of affected resource correlation Ids. This can be used to uniquely identify the count of items affected by a specific category and severity as well as count of item affected by an specific issue.
- affected
Resource StringType - Gets or sets the type of affected resource type.
- child
Errors List<InnerHealth Error Model Response> - Gets or sets a list of child health errors associated with this error.
- category
This property is required. string - Gets or sets the error category.
- causes
This property is required. string - Gets or sets possible causes of the error.
- code
This property is required. string - Gets or sets the error code.
- creation
Time This property is required. string - Gets or sets the error creation time.
- health
Category This property is required. string - Gets or sets the health category.
- is
Customer Resolvable This property is required. boolean - Gets or sets a value indicating whether the error is customer resolvable.
- message
This property is required. string - Gets or sets the error message.
- recommendation
This property is required. string - Gets or sets recommended action to resolve the error.
- severity
This property is required. string - Gets or sets the error severity.
- source
This property is required. string - Gets or sets the error source.
- summary
This property is required. string - Gets or sets the error summary.
- affected
Resource string[]Correlation Ids - Gets or sets the list of affected resource correlation Ids. This can be used to uniquely identify the count of items affected by a specific category and severity as well as count of item affected by an specific issue.
- affected
Resource stringType - Gets or sets the type of affected resource type.
- child
Errors InnerHealth Error Model Response[] - Gets or sets a list of child health errors associated with this error.
- category
This property is required. str - Gets or sets the error category.
- causes
This property is required. str - Gets or sets possible causes of the error.
- code
This property is required. str - Gets or sets the error code.
- creation_
time This property is required. str - Gets or sets the error creation time.
- health_
category This property is required. str - Gets or sets the health category.
- is_
customer_ resolvable This property is required. bool - Gets or sets a value indicating whether the error is customer resolvable.
- message
This property is required. str - Gets or sets the error message.
- recommendation
This property is required. str - Gets or sets recommended action to resolve the error.
- severity
This property is required. str - Gets or sets the error severity.
- source
This property is required. str - Gets or sets the error source.
- summary
This property is required. str - Gets or sets the error summary.
- affected_
resource_ Sequence[str]correlation_ ids - Gets or sets the list of affected resource correlation Ids. This can be used to uniquely identify the count of items affected by a specific category and severity as well as count of item affected by an specific issue.
- affected_
resource_ strtype - Gets or sets the type of affected resource type.
- child_
errors Sequence[InnerHealth Error Model Response] - Gets or sets a list of child health errors associated with this error.
- category
This property is required. String - Gets or sets the error category.
- causes
This property is required. String - Gets or sets possible causes of the error.
- code
This property is required. String - Gets or sets the error code.
- creation
Time This property is required. String - Gets or sets the error creation time.
- health
Category This property is required. String - Gets or sets the health category.
- is
Customer Resolvable This property is required. Boolean - Gets or sets a value indicating whether the error is customer resolvable.
- message
This property is required. String - Gets or sets the error message.
- recommendation
This property is required. String - Gets or sets recommended action to resolve the error.
- severity
This property is required. String - Gets or sets the error severity.
- source
This property is required. String - Gets or sets the error source.
- summary
This property is required. String - Gets or sets the error summary.
- affected
Resource List<String>Correlation Ids - Gets or sets the list of affected resource correlation Ids. This can be used to uniquely identify the count of items affected by a specific category and severity as well as count of item affected by an specific issue.
- affected
Resource StringType - Gets or sets the type of affected resource type.
- child
Errors List<Property Map> - Gets or sets a list of child health errors associated with this error.
HyperVMigrateFabricModelCustomProperties, HyperVMigrateFabricModelCustomPropertiesArgs
- Hyper
VSite Id This property is required. string - Gets or sets the ARM Id of the HyperV site.
- Migration
Solution Id This property is required. string - Gets or sets the migration solution ARM Id.
- Hyper
VSite Id This property is required. string - Gets or sets the ARM Id of the HyperV site.
- Migration
Solution Id This property is required. string - Gets or sets the migration solution ARM Id.
- hyper
VSite Id This property is required. String - Gets or sets the ARM Id of the HyperV site.
- migration
Solution Id This property is required. String - Gets or sets the migration solution ARM Id.
- hyper
VSite Id This property is required. string - Gets or sets the ARM Id of the HyperV site.
- migration
Solution Id This property is required. string - Gets or sets the migration solution ARM Id.
- hyper_
v_ site_ id This property is required. str - Gets or sets the ARM Id of the HyperV site.
- migration_
solution_ id This property is required. str - Gets or sets the migration solution ARM Id.
- hyper
VSite Id This property is required. String - Gets or sets the ARM Id of the HyperV site.
- migration
Solution Id This property is required. String - Gets or sets the migration solution ARM Id.
HyperVMigrateFabricModelCustomPropertiesResponse, HyperVMigrateFabricModelCustomPropertiesResponseArgs
- Fabric
Container Id This property is required. string - Gets or sets the fabric container Id.
- Fabric
Resource Id This property is required. string - Gets or sets the fabric resource Id.
- Hyper
VSite Id This property is required. string - Gets or sets the ARM Id of the HyperV site.
- Migration
Hub Uri This property is required. string - Gets or sets the migration hub Uri.
- Migration
Solution Id This property is required. string - Gets or sets the migration solution ARM Id.
- Fabric
Container Id This property is required. string - Gets or sets the fabric container Id.
- Fabric
Resource Id This property is required. string - Gets or sets the fabric resource Id.
- Hyper
VSite Id This property is required. string - Gets or sets the ARM Id of the HyperV site.
- Migration
Hub Uri This property is required. string - Gets or sets the migration hub Uri.
- Migration
Solution Id This property is required. string - Gets or sets the migration solution ARM Id.
- fabric
Container Id This property is required. String - Gets or sets the fabric container Id.
- fabric
Resource Id This property is required. String - Gets or sets the fabric resource Id.
- hyper
VSite Id This property is required. String - Gets or sets the ARM Id of the HyperV site.
- migration
Hub Uri This property is required. String - Gets or sets the migration hub Uri.
- migration
Solution Id This property is required. String - Gets or sets the migration solution ARM Id.
- fabric
Container Id This property is required. string - Gets or sets the fabric container Id.
- fabric
Resource Id This property is required. string - Gets or sets the fabric resource Id.
- hyper
VSite Id This property is required. string - Gets or sets the ARM Id of the HyperV site.
- migration
Hub Uri This property is required. string - Gets or sets the migration hub Uri.
- migration
Solution Id This property is required. string - Gets or sets the migration solution ARM Id.
- fabric_
container_ id This property is required. str - Gets or sets the fabric container Id.
- fabric_
resource_ id This property is required. str - Gets or sets the fabric resource Id.
- hyper_
v_ site_ id This property is required. str - Gets or sets the ARM Id of the HyperV site.
- migration_
hub_ uri This property is required. str - Gets or sets the migration hub Uri.
- migration_
solution_ id This property is required. str - Gets or sets the migration solution ARM Id.
- fabric
Container Id This property is required. String - Gets or sets the fabric container Id.
- fabric
Resource Id This property is required. String - Gets or sets the fabric resource Id.
- hyper
VSite Id This property is required. String - Gets or sets the ARM Id of the HyperV site.
- migration
Hub Uri This property is required. String - Gets or sets the migration hub Uri.
- migration
Solution Id This property is required. String - Gets or sets the migration solution ARM Id.
InnerHealthErrorModelResponse, InnerHealthErrorModelResponseArgs
- Category
This property is required. string - Gets or sets the error category.
- Causes
This property is required. string - Gets or sets possible causes of the error.
- Code
This property is required. string - Gets or sets the error code.
- Creation
Time This property is required. string - Gets or sets the error creation time.
- Health
Category This property is required. string - Gets or sets the health category.
- Is
Customer Resolvable This property is required. bool - Gets or sets a value indicating whether the error is customer resolvable.
- Message
This property is required. string - Gets or sets the error message.
- Recommendation
This property is required. string - Gets or sets recommended action to resolve the error.
- Severity
This property is required. string - Gets or sets the error severity.
- Source
This property is required. string - Gets or sets the error source.
- Summary
This property is required. string - Gets or sets the error summary.
- Category
This property is required. string - Gets or sets the error category.
- Causes
This property is required. string - Gets or sets possible causes of the error.
- Code
This property is required. string - Gets or sets the error code.
- Creation
Time This property is required. string - Gets or sets the error creation time.
- Health
Category This property is required. string - Gets or sets the health category.
- Is
Customer Resolvable This property is required. bool - Gets or sets a value indicating whether the error is customer resolvable.
- Message
This property is required. string - Gets or sets the error message.
- Recommendation
This property is required. string - Gets or sets recommended action to resolve the error.
- Severity
This property is required. string - Gets or sets the error severity.
- Source
This property is required. string - Gets or sets the error source.
- Summary
This property is required. string - Gets or sets the error summary.
- category
This property is required. String - Gets or sets the error category.
- causes
This property is required. String - Gets or sets possible causes of the error.
- code
This property is required. String - Gets or sets the error code.
- creation
Time This property is required. String - Gets or sets the error creation time.
- health
Category This property is required. String - Gets or sets the health category.
- is
Customer Resolvable This property is required. Boolean - Gets or sets a value indicating whether the error is customer resolvable.
- message
This property is required. String - Gets or sets the error message.
- recommendation
This property is required. String - Gets or sets recommended action to resolve the error.
- severity
This property is required. String - Gets or sets the error severity.
- source
This property is required. String - Gets or sets the error source.
- summary
This property is required. String - Gets or sets the error summary.
- category
This property is required. string - Gets or sets the error category.
- causes
This property is required. string - Gets or sets possible causes of the error.
- code
This property is required. string - Gets or sets the error code.
- creation
Time This property is required. string - Gets or sets the error creation time.
- health
Category This property is required. string - Gets or sets the health category.
- is
Customer Resolvable This property is required. boolean - Gets or sets a value indicating whether the error is customer resolvable.
- message
This property is required. string - Gets or sets the error message.
- recommendation
This property is required. string - Gets or sets recommended action to resolve the error.
- severity
This property is required. string - Gets or sets the error severity.
- source
This property is required. string - Gets or sets the error source.
- summary
This property is required. string - Gets or sets the error summary.
- category
This property is required. str - Gets or sets the error category.
- causes
This property is required. str - Gets or sets possible causes of the error.
- code
This property is required. str - Gets or sets the error code.
- creation_
time This property is required. str - Gets or sets the error creation time.
- health_
category This property is required. str - Gets or sets the health category.
- is_
customer_ resolvable This property is required. bool - Gets or sets a value indicating whether the error is customer resolvable.
- message
This property is required. str - Gets or sets the error message.
- recommendation
This property is required. str - Gets or sets recommended action to resolve the error.
- severity
This property is required. str - Gets or sets the error severity.
- source
This property is required. str - Gets or sets the error source.
- summary
This property is required. str - Gets or sets the error summary.
- category
This property is required. String - Gets or sets the error category.
- causes
This property is required. String - Gets or sets possible causes of the error.
- code
This property is required. String - Gets or sets the error code.
- creation
Time This property is required. String - Gets or sets the error creation time.
- health
Category This property is required. String - Gets or sets the health category.
- is
Customer Resolvable This property is required. Boolean - Gets or sets a value indicating whether the error is customer resolvable.
- message
This property is required. String - Gets or sets the error message.
- recommendation
This property is required. String - Gets or sets recommended action to resolve the error.
- severity
This property is required. String - Gets or sets the error severity.
- source
This property is required. String - Gets or sets the error source.
- summary
This property is required. String - Gets or sets the error summary.
StorageContainerProperties, StorageContainerPropertiesArgs
This property is required. string- Gets or sets the ClusterSharedVolumePath.
- Name
This property is required. string - Gets or sets the Name.
This property is required. string- Gets or sets the ClusterSharedVolumePath.
- Name
This property is required. string - Gets or sets the Name.
This property is required. String- Gets or sets the ClusterSharedVolumePath.
- name
This property is required. String - Gets or sets the Name.
This property is required. string- Gets or sets the ClusterSharedVolumePath.
- name
This property is required. string - Gets or sets the Name.
This property is required. str- Gets or sets the ClusterSharedVolumePath.
- name
This property is required. str - Gets or sets the Name.
This property is required. String- Gets or sets the ClusterSharedVolumePath.
- name
This property is required. String - Gets or sets the Name.
StorageContainerPropertiesResponse, StorageContainerPropertiesResponseArgs
This property is required. string- Gets or sets the ClusterSharedVolumePath.
- Name
This property is required. string - Gets or sets the Name.
This property is required. string- Gets or sets the ClusterSharedVolumePath.
- Name
This property is required. string - Gets or sets the Name.
This property is required. String- Gets or sets the ClusterSharedVolumePath.
- name
This property is required. String - Gets or sets the Name.
This property is required. string- Gets or sets the ClusterSharedVolumePath.
- name
This property is required. string - Gets or sets the Name.
This property is required. str- Gets or sets the ClusterSharedVolumePath.
- name
This property is required. str - Gets or sets the Name.
This property is required. String- Gets or sets the ClusterSharedVolumePath.
- name
This property is required. String - Gets or sets the Name.
VMwareMigrateFabricModelCustomProperties, VMwareMigrateFabricModelCustomPropertiesArgs
- Migration
Solution Id This property is required. string - Gets or sets the ARM Id of the migration solution.
- Vmware
Site Id This property is required. string - Gets or sets the ARM Id of the VMware site.
- Migration
Solution Id This property is required. string - Gets or sets the ARM Id of the migration solution.
- Vmware
Site Id This property is required. string - Gets or sets the ARM Id of the VMware site.
- migration
Solution Id This property is required. String - Gets or sets the ARM Id of the migration solution.
- vmware
Site Id This property is required. String - Gets or sets the ARM Id of the VMware site.
- migration
Solution Id This property is required. string - Gets or sets the ARM Id of the migration solution.
- vmware
Site Id This property is required. string - Gets or sets the ARM Id of the VMware site.
- migration_
solution_ id This property is required. str - Gets or sets the ARM Id of the migration solution.
- vmware_
site_ id This property is required. str - Gets or sets the ARM Id of the VMware site.
- migration
Solution Id This property is required. String - Gets or sets the ARM Id of the migration solution.
- vmware
Site Id This property is required. String - Gets or sets the ARM Id of the VMware site.
VMwareMigrateFabricModelCustomPropertiesResponse, VMwareMigrateFabricModelCustomPropertiesResponseArgs
- Migration
Solution Id This property is required. string - Gets or sets the ARM Id of the migration solution.
- Vmware
Site Id This property is required. string - Gets or sets the ARM Id of the VMware site.
- Migration
Solution Id This property is required. string - Gets or sets the ARM Id of the migration solution.
- Vmware
Site Id This property is required. string - Gets or sets the ARM Id of the VMware site.
- migration
Solution Id This property is required. String - Gets or sets the ARM Id of the migration solution.
- vmware
Site Id This property is required. String - Gets or sets the ARM Id of the VMware site.
- migration
Solution Id This property is required. string - Gets or sets the ARM Id of the migration solution.
- vmware
Site Id This property is required. string - Gets or sets the ARM Id of the VMware site.
- migration_
solution_ id This property is required. str - Gets or sets the ARM Id of the migration solution.
- vmware_
site_ id This property is required. str - Gets or sets the ARM Id of the VMware site.
- migration
Solution Id This property is required. String - Gets or sets the ARM Id of the migration solution.
- vmware
Site Id This property is required. String - Gets or sets the ARM Id of the VMware site.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:datareplication:Fabric rhojydcwjgvgexpdwswjib /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataReplication/replicationFabrics/{fabricName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0