azure-native.datareplication.Fabric
Explore with Pulumi AI
Fabric model. Azure REST API version: 2021-02-16-preview.
Example Usage
Fabric_Create
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var fabric = new AzureNative.DataReplication.Fabric("fabric", new()
{
FabricName = "wPR",
Location = "tqygutlpob",
Properties = new AzureNative.DataReplication.Inputs.FabricModelPropertiesArgs
{
CustomProperties =
{
{ "instanceType", "FabricModelCustomProperties" },
},
},
ResourceGroupName = "rgrecoveryservicesdatareplication",
Tags =
{
{ "key3917", "vgralu" },
},
});
});
package main
import (
datareplication "github.com/pulumi/pulumi-azure-native-sdk/datareplication/v2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := datareplication.NewFabric(ctx, "fabric", &datareplication.FabricArgs{
FabricName: pulumi.String("wPR"),
Location: pulumi.String("tqygutlpob"),
Properties: &datareplication.FabricModelPropertiesArgs{
CustomProperties: pulumi.Any{
InstanceType: pulumi.String("FabricModelCustomProperties"),
},
},
ResourceGroupName: pulumi.String("rgrecoveryservicesdatareplication"),
Tags: pulumi.StringMap{
"key3917": pulumi.String("vgralu"),
},
})
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.datareplication.Fabric;
import com.pulumi.azurenative.datareplication.FabricArgs;
import com.pulumi.azurenative.datareplication.inputs.FabricModelPropertiesArgs;
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 fabric = new Fabric("fabric", FabricArgs.builder()
.fabricName("wPR")
.location("tqygutlpob")
.properties(FabricModelPropertiesArgs.builder()
.customProperties(AzStackHCIFabricModelCustomPropertiesArgs.builder()
.instanceType("FabricModelCustomProperties")
.build())
.build())
.resourceGroupName("rgrecoveryservicesdatareplication")
.tags(Map.of("key3917", "vgralu"))
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
fabric = azure_native.datareplication.Fabric("fabric",
fabric_name="wPR",
location="tqygutlpob",
properties={
"custom_properties": {
"instance_type": "FabricModelCustomProperties",
},
},
resource_group_name="rgrecoveryservicesdatareplication",
tags={
"key3917": "vgralu",
})
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const fabric = new azure_native.datareplication.Fabric("fabric", {
fabricName: "wPR",
location: "tqygutlpob",
properties: {
customProperties: {
instanceType: "FabricModelCustomProperties",
},
},
resourceGroupName: "rgrecoveryservicesdatareplication",
tags: {
key3917: "vgralu",
},
});
resources:
fabric:
type: azure-native:datareplication:Fabric
properties:
fabricName: wPR
location: tqygutlpob
properties:
customProperties:
instanceType: FabricModelCustomProperties
resourceGroupName: rgrecoveryservicesdatareplication
tags:
key3917: vgralu
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 string
- The unique name of the resource.
- args FabricArgs
- 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 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 string
- The unique name of the resource.
- args FabricArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args FabricArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args 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={
"customProperties": {
"azStackHciSiteId": "string",
"cluster": {
"clusterName": "string",
"resourceName": "string",
"storageAccountName": "string",
"storageContainers": [{
"clusterSharedVolumePath": "string",
"name": "string",
}],
},
"instanceType": "AzStackHCI",
"migrationSolutionId": "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
The Fabric resource accepts the following input properties:
- Properties
Pulumi.
Azure Native. Data Replication. Inputs. Fabric Model Properties - Fabric model properties.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Fabric
Name string - The fabric name.
- Location string
- Gets or sets the location of the fabric.
- Dictionary<string, string>
- Gets or sets the resource tags.
- Properties
Fabric
Model Properties Args - Fabric model properties.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Fabric
Name string - The fabric name.
- Location string
- Gets or sets the location of the fabric.
- map[string]string
- Gets or sets the resource tags.
- properties
Fabric
Model Properties - Fabric model properties.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- fabric
Name String - The fabric name.
- location String
- Gets or sets the location of the fabric.
- Map<String,String>
- Gets or sets the resource tags.
- properties
Fabric
Model Properties - Fabric model properties.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- fabric
Name string - The fabric name.
- location string
- Gets or sets the location of the fabric.
- {[key: string]: string}
- Gets or sets the resource tags.
- properties
Fabric
Model Properties Args - Fabric model properties.
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- fabric_
name str - The fabric name.
- location str
- Gets or sets the location of the fabric.
- Mapping[str, str]
- Gets or sets the resource tags.
- properties Property Map
- Fabric model properties.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- fabric
Name String - The fabric name.
- location String
- 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:
- 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.
- 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.
- 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.
- 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.
- 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.
- 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 string - Gets or sets the AzStackHCICluster FQDN name.
- Resource
Name string - Gets or sets the AzStackHCICluster resource name.
- Storage
Account stringName - Gets or sets the Storage account name.
- Storage
Containers List<Pulumi.Azure Native. Data Replication. Inputs. Storage Container Properties> - Gets or sets the list of AzStackHCICluster Storage Container.
- Cluster
Name string - Gets or sets the AzStackHCICluster FQDN name.
- Resource
Name string - Gets or sets the AzStackHCICluster resource name.
- Storage
Account stringName - Gets or sets the Storage account name.
- Storage
Containers []StorageContainer Properties - Gets or sets the list of AzStackHCICluster Storage Container.
- cluster
Name String - Gets or sets the AzStackHCICluster FQDN name.
- resource
Name String - Gets or sets the AzStackHCICluster resource name.
- storage
Account StringName - Gets or sets the Storage account name.
- storage
Containers List<StorageContainer Properties> - Gets or sets the list of AzStackHCICluster Storage Container.
- cluster
Name string - Gets or sets the AzStackHCICluster FQDN name.
- resource
Name string - Gets or sets the AzStackHCICluster resource name.
- storage
Account stringName - Gets or sets the Storage account name.
- storage
Containers StorageContainer Properties[] - Gets or sets the list of AzStackHCICluster Storage Container.
- cluster_
name str - Gets or sets the AzStackHCICluster FQDN name.
- resource_
name str - Gets or sets the AzStackHCICluster resource name.
- storage_
account_ strname - Gets or sets the Storage account name.
- storage_
containers Sequence[StorageContainer Properties] - Gets or sets the list of AzStackHCICluster Storage Container.
- cluster
Name String - Gets or sets the AzStackHCICluster FQDN name.
- resource
Name String - Gets or sets the AzStackHCICluster resource name.
- storage
Account StringName - Gets or sets the Storage account name.
- storage
Containers List<Property Map> - Gets or sets the list of AzStackHCICluster Storage Container.
AzStackHCIClusterPropertiesResponse, AzStackHCIClusterPropertiesResponseArgs
- Cluster
Name string - Gets or sets the AzStackHCICluster FQDN name.
- Resource
Name string - Gets or sets the AzStackHCICluster resource name.
- Storage
Account stringName - Gets or sets the Storage account name.
- Storage
Containers List<Pulumi.Azure Native. Data Replication. Inputs. Storage Container Properties Response> - Gets or sets the list of AzStackHCICluster Storage Container.
- Cluster
Name string - Gets or sets the AzStackHCICluster FQDN name.
- Resource
Name string - Gets or sets the AzStackHCICluster resource name.
- Storage
Account stringName - Gets or sets the Storage account name.
- Storage
Containers []StorageContainer Properties Response - Gets or sets the list of AzStackHCICluster Storage Container.
- cluster
Name String - Gets or sets the AzStackHCICluster FQDN name.
- resource
Name String - Gets or sets the AzStackHCICluster resource name.
- storage
Account StringName - Gets or sets the Storage account name.
- storage
Containers List<StorageContainer Properties Response> - Gets or sets the list of AzStackHCICluster Storage Container.
- cluster
Name string - Gets or sets the AzStackHCICluster FQDN name.
- resource
Name string - Gets or sets the AzStackHCICluster resource name.
- storage
Account stringName - Gets or sets the Storage account name.
- storage
Containers StorageContainer Properties Response[] - Gets or sets the list of AzStackHCICluster Storage Container.
- cluster_
name str - Gets or sets the AzStackHCICluster FQDN name.
- resource_
name str - Gets or sets the AzStackHCICluster resource name.
- storage_
account_ strname - Gets or sets the Storage account name.
- storage_
containers Sequence[StorageContainer Properties Response] - Gets or sets the list of AzStackHCICluster Storage Container.
- cluster
Name String - Gets or sets the AzStackHCICluster FQDN name.
- resource
Name String - Gets or sets the AzStackHCICluster resource name.
- storage
Account StringName - Gets or sets the Storage account name.
- storage
Containers List<Property Map> - Gets or sets the list of AzStackHCICluster Storage Container.
AzStackHCIFabricModelCustomProperties, AzStackHCIFabricModelCustomPropertiesArgs
- Az
Stack stringHci Site Id - Gets or sets the ARM Id of the AzStackHCI site.
- Cluster
Pulumi.
Azure Native. Data Replication. Inputs. Az Stack HCICluster Properties - AzStackHCI cluster properties.
- Migration
Solution stringId - Gets or sets the Migration solution ARM Id.
- Az
Stack stringHci Site Id - Gets or sets the ARM Id of the AzStackHCI site.
- Cluster
Az
Stack HCICluster Properties - AzStackHCI cluster properties.
- Migration
Solution stringId - Gets or sets the Migration solution ARM Id.
- az
Stack StringHci Site Id - Gets or sets the ARM Id of the AzStackHCI site.
- cluster
Az
Stack HCICluster Properties - AzStackHCI cluster properties.
- migration
Solution StringId - Gets or sets the Migration solution ARM Id.
- az
Stack stringHci Site Id - Gets or sets the ARM Id of the AzStackHCI site.
- cluster
Az
Stack HCICluster Properties - AzStackHCI cluster properties.
- migration
Solution stringId - Gets or sets the Migration solution ARM Id.
- az_
stack_ strhci_ site_ id - Gets or sets the ARM Id of the AzStackHCI site.
- cluster
Az
Stack HCICluster Properties - AzStackHCI cluster properties.
- migration_
solution_ strid - Gets or sets the Migration solution ARM Id.
- az
Stack StringHci Site Id - Gets or sets the ARM Id of the AzStackHCI site.
- cluster Property Map
- AzStackHCI cluster properties.
- migration
Solution StringId - Gets or sets the Migration solution ARM Id.
AzStackHCIFabricModelCustomPropertiesResponse, AzStackHCIFabricModelCustomPropertiesResponseArgs
- Appliance
Name List<string> - Gets or sets the Appliance name.
- Az
Stack stringHci Site Id - Gets or sets the ARM Id of the AzStackHCI site.
- Cluster
Pulumi.
Azure Native. Data Replication. Inputs. Az Stack HCICluster Properties Response - AzStackHCI cluster properties.
- Fabric
Container stringId - Gets or sets the fabric container Id.
- Fabric
Resource stringId - Gets or sets the fabric resource Id.
- Migration
Hub stringUri - Gets or sets the migration hub Uri.
- Migration
Solution stringId - Gets or sets the Migration solution ARM Id.
- Appliance
Name []string - Gets or sets the Appliance name.
- Az
Stack stringHci Site Id - Gets or sets the ARM Id of the AzStackHCI site.
- Cluster
Az
Stack HCICluster Properties Response - AzStackHCI cluster properties.
- Fabric
Container stringId - Gets or sets the fabric container Id.
- Fabric
Resource stringId - Gets or sets the fabric resource Id.
- Migration
Hub stringUri - Gets or sets the migration hub Uri.
- Migration
Solution stringId - Gets or sets the Migration solution ARM Id.
- appliance
Name List<String> - Gets or sets the Appliance name.
- az
Stack StringHci Site Id - Gets or sets the ARM Id of the AzStackHCI site.
- cluster
Az
Stack HCICluster Properties Response - AzStackHCI cluster properties.
- fabric
Container StringId - Gets or sets the fabric container Id.
- fabric
Resource StringId - Gets or sets the fabric resource Id.
- migration
Hub StringUri - Gets or sets the migration hub Uri.
- migration
Solution StringId - Gets or sets the Migration solution ARM Id.
- appliance
Name string[] - Gets or sets the Appliance name.
- az
Stack stringHci Site Id - Gets or sets the ARM Id of the AzStackHCI site.
- cluster
Az
Stack HCICluster Properties Response - AzStackHCI cluster properties.
- fabric
Container stringId - Gets or sets the fabric container Id.
- fabric
Resource stringId - Gets or sets the fabric resource Id.
- migration
Hub stringUri - Gets or sets the migration hub Uri.
- migration
Solution stringId - Gets or sets the Migration solution ARM Id.
- appliance_
name Sequence[str] - Gets or sets the Appliance name.
- az_
stack_ strhci_ site_ id - Gets or sets the ARM Id of the AzStackHCI site.
- cluster
Az
Stack HCICluster Properties Response - AzStackHCI cluster properties.
- fabric_
container_ strid - Gets or sets the fabric container Id.
- fabric_
resource_ strid - Gets or sets the fabric resource Id.
- migration_
hub_ struri - Gets or sets the migration hub Uri.
- migration_
solution_ strid - Gets or sets the Migration solution ARM Id.
- appliance
Name List<String> - Gets or sets the Appliance name.
- az
Stack StringHci Site Id - Gets or sets the ARM Id of the AzStackHCI site.
- cluster Property Map
- AzStackHCI cluster properties.
- fabric
Container StringId - Gets or sets the fabric container Id.
- fabric
Resource StringId - Gets or sets the fabric resource Id.
- migration
Hub StringUri - Gets or sets the migration hub Uri.
- migration
Solution StringId - Gets or sets the Migration solution ARM Id.
FabricModelProperties, FabricModelPropertiesArgs
- Custom
Properties AzStack | HyperHCIFabric Model Custom Properties VMigrate | VMwareFabric Model Custom Properties Migrate Fabric Model Custom Properties - Fabric model custom properties.
- custom
Properties AzStack | HyperHCIFabric Model Custom Properties VMigrate | VMwareFabric Model Custom Properties Migrate Fabric Model Custom Properties - Fabric model custom properties.
- custom
Properties AzStack | HyperHCIFabric Model Custom Properties VMigrate | VMwareFabric Model Custom Properties Migrate Fabric Model Custom Properties - Fabric model custom properties.
- custom_
properties AzStack | HyperHCIFabric Model Custom Properties VMigrate | VMwareFabric Model Custom Properties Migrate Fabric Model Custom Properties - Fabric model custom properties.
- custom
Properties Property Map | Property Map | Property Map - Fabric model custom properties.
FabricModelPropertiesResponse, FabricModelPropertiesResponseArgs
- Custom
Properties 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 string
- Gets or sets the fabric health.
- Health
Errors List<Pulumi.Azure Native. Data Replication. Inputs. Health Error Model Response> - Gets or sets the list of health errors.
- Provisioning
State string - Gets or sets the provisioning state of the fabric.
- Service
Endpoint string - Gets or sets the service endpoint.
- Service
Resource stringId - Gets or sets the service resource Id.
- Custom
Properties AzStack | HyperHCIFabric Model Custom Properties Response VMigrate | VMwareFabric Model Custom Properties Response Migrate Fabric Model Custom Properties Response - Fabric model custom properties.
- Health string
- Gets or sets the fabric health.
- Health
Errors []HealthError Model Response - Gets or sets the list of health errors.
- Provisioning
State string - Gets or sets the provisioning state of the fabric.
- Service
Endpoint string - Gets or sets the service endpoint.
- Service
Resource stringId - Gets or sets the service resource Id.
- custom
Properties AzStack | HyperHCIFabric Model Custom Properties Response VMigrate | VMwareFabric Model Custom Properties Response Migrate Fabric Model Custom Properties Response - Fabric model custom properties.
- health String
- Gets or sets the fabric health.
- health
Errors List<HealthError Model Response> - Gets or sets the list of health errors.
- provisioning
State String - Gets or sets the provisioning state of the fabric.
- service
Endpoint String - Gets or sets the service endpoint.
- service
Resource StringId - Gets or sets the service resource Id.
- custom
Properties AzStack | HyperHCIFabric Model Custom Properties Response VMigrate | VMwareFabric Model Custom Properties Response Migrate Fabric Model Custom Properties Response - Fabric model custom properties.
- health string
- Gets or sets the fabric health.
- health
Errors HealthError Model Response[] - Gets or sets the list of health errors.
- provisioning
State string - Gets or sets the provisioning state of the fabric.
- service
Endpoint string - Gets or sets the service endpoint.
- service
Resource stringId - Gets or sets the service resource Id.
- custom_
properties AzStack | HyperHCIFabric Model Custom Properties Response VMigrate | VMwareFabric Model Custom Properties Response Migrate Fabric Model Custom Properties Response - Fabric model custom properties.
- health str
- Gets or sets the fabric health.
- health_
errors Sequence[HealthError Model Response] - Gets or sets the list of health errors.
- provisioning_
state str - Gets or sets the provisioning state of the fabric.
- service_
endpoint str - Gets or sets the service endpoint.
- service_
resource_ strid - Gets or sets the service resource Id.
- custom
Properties Property Map | Property Map | Property Map - Fabric model custom properties.
- health String
- Gets or sets the fabric health.
- health
Errors List<Property Map> - Gets or sets the list of health errors.
- provisioning
State String - Gets or sets the provisioning state of the fabric.
- service
Endpoint String - Gets or sets the service endpoint.
- service
Resource StringId - 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 string
- Gets or sets the error category.
- Causes string
- Gets or sets possible causes of the error.
- Code string
- Gets or sets the error code.
- Creation
Time string - Gets or sets the error creation time.
- Health
Category string - Gets or sets the health category.
- Is
Customer boolResolvable - Gets or sets a value indicating whether the error is customer resolvable.
- Message string
- Gets or sets the error message.
- Recommendation string
- Gets or sets recommended action to resolve the error.
- Severity string
- Gets or sets the error severity.
- Source string
- Gets or sets the error source.
- Summary 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 string
- Gets or sets the error category.
- Causes string
- Gets or sets possible causes of the error.
- Code string
- Gets or sets the error code.
- Creation
Time string - Gets or sets the error creation time.
- Health
Category string - Gets or sets the health category.
- Is
Customer boolResolvable - Gets or sets a value indicating whether the error is customer resolvable.
- Message string
- Gets or sets the error message.
- Recommendation string
- Gets or sets recommended action to resolve the error.
- Severity string
- Gets or sets the error severity.
- Source string
- Gets or sets the error source.
- Summary 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 String
- Gets or sets the error category.
- causes String
- Gets or sets possible causes of the error.
- code String
- Gets or sets the error code.
- creation
Time String - Gets or sets the error creation time.
- health
Category String - Gets or sets the health category.
- is
Customer BooleanResolvable - Gets or sets a value indicating whether the error is customer resolvable.
- message String
- Gets or sets the error message.
- recommendation String
- Gets or sets recommended action to resolve the error.
- severity String
- Gets or sets the error severity.
- source String
- Gets or sets the error source.
- summary 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 string
- Gets or sets the error category.
- causes string
- Gets or sets possible causes of the error.
- code string
- Gets or sets the error code.
- creation
Time string - Gets or sets the error creation time.
- health
Category string - Gets or sets the health category.
- is
Customer booleanResolvable - Gets or sets a value indicating whether the error is customer resolvable.
- message string
- Gets or sets the error message.
- recommendation string
- Gets or sets recommended action to resolve the error.
- severity string
- Gets or sets the error severity.
- source string
- Gets or sets the error source.
- summary 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 str
- Gets or sets the error category.
- causes str
- Gets or sets possible causes of the error.
- code str
- Gets or sets the error code.
- creation_
time str - Gets or sets the error creation time.
- health_
category str - Gets or sets the health category.
- is_
customer_ boolresolvable - Gets or sets a value indicating whether the error is customer resolvable.
- message str
- Gets or sets the error message.
- recommendation str
- Gets or sets recommended action to resolve the error.
- severity str
- Gets or sets the error severity.
- source str
- Gets or sets the error source.
- summary 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 String
- Gets or sets the error category.
- causes String
- Gets or sets possible causes of the error.
- code String
- Gets or sets the error code.
- creation
Time String - Gets or sets the error creation time.
- health
Category String - Gets or sets the health category.
- is
Customer BooleanResolvable - Gets or sets a value indicating whether the error is customer resolvable.
- message String
- Gets or sets the error message.
- recommendation String
- Gets or sets recommended action to resolve the error.
- severity String
- Gets or sets the error severity.
- source String
- Gets or sets the error source.
- summary 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 stringId - Gets or sets the ARM Id of the HyperV site.
- Migration
Solution stringId - Gets or sets the migration solution ARM Id.
- Hyper
VSite stringId - Gets or sets the ARM Id of the HyperV site.
- Migration
Solution stringId - Gets or sets the migration solution ARM Id.
- hyper
VSite StringId - Gets or sets the ARM Id of the HyperV site.
- migration
Solution StringId - Gets or sets the migration solution ARM Id.
- hyper
VSite stringId - Gets or sets the ARM Id of the HyperV site.
- migration
Solution stringId - Gets or sets the migration solution ARM Id.
- hyper_
v_ strsite_ id - Gets or sets the ARM Id of the HyperV site.
- migration_
solution_ strid - Gets or sets the migration solution ARM Id.
- hyper
VSite StringId - Gets or sets the ARM Id of the HyperV site.
- migration
Solution StringId - Gets or sets the migration solution ARM Id.
HyperVMigrateFabricModelCustomPropertiesResponse, HyperVMigrateFabricModelCustomPropertiesResponseArgs
- Fabric
Container stringId - Gets or sets the fabric container Id.
- Fabric
Resource stringId - Gets or sets the fabric resource Id.
- Hyper
VSite stringId - Gets or sets the ARM Id of the HyperV site.
- Migration
Hub stringUri - Gets or sets the migration hub Uri.
- Migration
Solution stringId - Gets or sets the migration solution ARM Id.
- Fabric
Container stringId - Gets or sets the fabric container Id.
- Fabric
Resource stringId - Gets or sets the fabric resource Id.
- Hyper
VSite stringId - Gets or sets the ARM Id of the HyperV site.
- Migration
Hub stringUri - Gets or sets the migration hub Uri.
- Migration
Solution stringId - Gets or sets the migration solution ARM Id.
- fabric
Container StringId - Gets or sets the fabric container Id.
- fabric
Resource StringId - Gets or sets the fabric resource Id.
- hyper
VSite StringId - Gets or sets the ARM Id of the HyperV site.
- migration
Hub StringUri - Gets or sets the migration hub Uri.
- migration
Solution StringId - Gets or sets the migration solution ARM Id.
- fabric
Container stringId - Gets or sets the fabric container Id.
- fabric
Resource stringId - Gets or sets the fabric resource Id.
- hyper
VSite stringId - Gets or sets the ARM Id of the HyperV site.
- migration
Hub stringUri - Gets or sets the migration hub Uri.
- migration
Solution stringId - Gets or sets the migration solution ARM Id.
- fabric_
container_ strid - Gets or sets the fabric container Id.
- fabric_
resource_ strid - Gets or sets the fabric resource Id.
- hyper_
v_ strsite_ id - Gets or sets the ARM Id of the HyperV site.
- migration_
hub_ struri - Gets or sets the migration hub Uri.
- migration_
solution_ strid - Gets or sets the migration solution ARM Id.
- fabric
Container StringId - Gets or sets the fabric container Id.
- fabric
Resource StringId - Gets or sets the fabric resource Id.
- hyper
VSite StringId - Gets or sets the ARM Id of the HyperV site.
- migration
Hub StringUri - Gets or sets the migration hub Uri.
- migration
Solution StringId - Gets or sets the migration solution ARM Id.
InnerHealthErrorModelResponse, InnerHealthErrorModelResponseArgs
- Category string
- Gets or sets the error category.
- Causes string
- Gets or sets possible causes of the error.
- Code string
- Gets or sets the error code.
- Creation
Time string - Gets or sets the error creation time.
- Health
Category string - Gets or sets the health category.
- Is
Customer boolResolvable - Gets or sets a value indicating whether the error is customer resolvable.
- Message string
- Gets or sets the error message.
- Recommendation string
- Gets or sets recommended action to resolve the error.
- Severity string
- Gets or sets the error severity.
- Source string
- Gets or sets the error source.
- Summary string
- Gets or sets the error summary.
- Category string
- Gets or sets the error category.
- Causes string
- Gets or sets possible causes of the error.
- Code string
- Gets or sets the error code.
- Creation
Time string - Gets or sets the error creation time.
- Health
Category string - Gets or sets the health category.
- Is
Customer boolResolvable - Gets or sets a value indicating whether the error is customer resolvable.
- Message string
- Gets or sets the error message.
- Recommendation string
- Gets or sets recommended action to resolve the error.
- Severity string
- Gets or sets the error severity.
- Source string
- Gets or sets the error source.
- Summary string
- Gets or sets the error summary.
- category String
- Gets or sets the error category.
- causes String
- Gets or sets possible causes of the error.
- code String
- Gets or sets the error code.
- creation
Time String - Gets or sets the error creation time.
- health
Category String - Gets or sets the health category.
- is
Customer BooleanResolvable - Gets or sets a value indicating whether the error is customer resolvable.
- message String
- Gets or sets the error message.
- recommendation String
- Gets or sets recommended action to resolve the error.
- severity String
- Gets or sets the error severity.
- source String
- Gets or sets the error source.
- summary String
- Gets or sets the error summary.
- category string
- Gets or sets the error category.
- causes string
- Gets or sets possible causes of the error.
- code string
- Gets or sets the error code.
- creation
Time string - Gets or sets the error creation time.
- health
Category string - Gets or sets the health category.
- is
Customer booleanResolvable - Gets or sets a value indicating whether the error is customer resolvable.
- message string
- Gets or sets the error message.
- recommendation string
- Gets or sets recommended action to resolve the error.
- severity string
- Gets or sets the error severity.
- source string
- Gets or sets the error source.
- summary string
- Gets or sets the error summary.
- category str
- Gets or sets the error category.
- causes str
- Gets or sets possible causes of the error.
- code str
- Gets or sets the error code.
- creation_
time str - Gets or sets the error creation time.
- health_
category str - Gets or sets the health category.
- is_
customer_ boolresolvable - Gets or sets a value indicating whether the error is customer resolvable.
- message str
- Gets or sets the error message.
- recommendation str
- Gets or sets recommended action to resolve the error.
- severity str
- Gets or sets the error severity.
- source str
- Gets or sets the error source.
- summary str
- Gets or sets the error summary.
- category String
- Gets or sets the error category.
- causes String
- Gets or sets possible causes of the error.
- code String
- Gets or sets the error code.
- creation
Time String - Gets or sets the error creation time.
- health
Category String - Gets or sets the health category.
- is
Customer BooleanResolvable - Gets or sets a value indicating whether the error is customer resolvable.
- message String
- Gets or sets the error message.
- recommendation String
- Gets or sets recommended action to resolve the error.
- severity String
- Gets or sets the error severity.
- source String
- Gets or sets the error source.
- summary String
- Gets or sets the error summary.
StorageContainerProperties, StorageContainerPropertiesArgs
- string
- Gets or sets the ClusterSharedVolumePath.
- Name string
- Gets or sets the Name.
- string
- Gets or sets the ClusterSharedVolumePath.
- Name string
- Gets or sets the Name.
- String
- Gets or sets the ClusterSharedVolumePath.
- name String
- Gets or sets the Name.
- string
- Gets or sets the ClusterSharedVolumePath.
- name string
- Gets or sets the Name.
- str
- Gets or sets the ClusterSharedVolumePath.
- name str
- Gets or sets the Name.
- String
- Gets or sets the ClusterSharedVolumePath.
- name String
- Gets or sets the Name.
StorageContainerPropertiesResponse, StorageContainerPropertiesResponseArgs
- string
- Gets or sets the ClusterSharedVolumePath.
- Name string
- Gets or sets the Name.
- string
- Gets or sets the ClusterSharedVolumePath.
- Name string
- Gets or sets the Name.
- String
- Gets or sets the ClusterSharedVolumePath.
- name String
- Gets or sets the Name.
- string
- Gets or sets the ClusterSharedVolumePath.
- name string
- Gets or sets the Name.
- str
- Gets or sets the ClusterSharedVolumePath.
- name str
- Gets or sets the Name.
- String
- Gets or sets the ClusterSharedVolumePath.
- name String
- Gets or sets the Name.
VMwareMigrateFabricModelCustomProperties, VMwareMigrateFabricModelCustomPropertiesArgs
- Migration
Solution stringId - Gets or sets the ARM Id of the migration solution.
- Vmware
Site stringId - Gets or sets the ARM Id of the VMware site.
- Migration
Solution stringId - Gets or sets the ARM Id of the migration solution.
- Vmware
Site stringId - Gets or sets the ARM Id of the VMware site.
- migration
Solution StringId - Gets or sets the ARM Id of the migration solution.
- vmware
Site StringId - Gets or sets the ARM Id of the VMware site.
- migration
Solution stringId - Gets or sets the ARM Id of the migration solution.
- vmware
Site stringId - Gets or sets the ARM Id of the VMware site.
- migration_
solution_ strid - Gets or sets the ARM Id of the migration solution.
- vmware_
site_ strid - Gets or sets the ARM Id of the VMware site.
- migration
Solution StringId - Gets or sets the ARM Id of the migration solution.
- vmware
Site StringId - Gets or sets the ARM Id of the VMware site.
VMwareMigrateFabricModelCustomPropertiesResponse, VMwareMigrateFabricModelCustomPropertiesResponseArgs
- Migration
Solution stringId - Gets or sets the ARM Id of the migration solution.
- Vmware
Site stringId - Gets or sets the ARM Id of the VMware site.
- Migration
Solution stringId - Gets or sets the ARM Id of the migration solution.
- Vmware
Site stringId - Gets or sets the ARM Id of the VMware site.
- migration
Solution StringId - Gets or sets the ARM Id of the migration solution.
- vmware
Site StringId - Gets or sets the ARM Id of the VMware site.
- migration
Solution stringId - Gets or sets the ARM Id of the migration solution.
- vmware
Site stringId - Gets or sets the ARM Id of the VMware site.
- migration_
solution_ strid - Gets or sets the ARM Id of the migration solution.
- vmware_
site_ strid - Gets or sets the ARM Id of the VMware site.
- migration
Solution StringId - Gets or sets the ARM Id of the migration solution.
- vmware
Site StringId - 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