1. Packages
  2. Azure Native
  3. API Docs
  4. datareplication
  5. FabricAgent
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.3.0 published on Monday, Apr 28, 2025 by Pulumi

azure-native.datareplication.FabricAgent

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.3.0 published on Monday, Apr 28, 2025 by Pulumi

    Fabric agent model.

    Uses Azure REST API version 2024-09-01.

    Example Usage

    Puts the fabric agent

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var fabricAgent = new AzureNative.DataReplication.FabricAgent("fabricAgent", new()
        {
            FabricAgentName = "M",
            FabricName = "wPR",
            Properties = new AzureNative.DataReplication.Inputs.FabricAgentModelPropertiesArgs
            {
                AuthenticationIdentity = new AzureNative.DataReplication.Inputs.IdentityModelArgs
                {
                    AadAuthority = "bubwwbowfhdmujrt",
                    ApplicationId = "cwktzrwajuvfyyymfstpey",
                    Audience = "dkjobanyqgzenivyxhvavottpc",
                    ObjectId = "khsiaqfbpuhp",
                    TenantId = "joclkkdovixwapephhxaqtefubhhmq",
                },
                CustomProperties = null,
                MachineId = "envzcoijbqhtrpncbjbhk",
                MachineName = "y",
                ResourceAccessIdentity = new AzureNative.DataReplication.Inputs.IdentityModelArgs
                {
                    AadAuthority = "bubwwbowfhdmujrt",
                    ApplicationId = "cwktzrwajuvfyyymfstpey",
                    Audience = "dkjobanyqgzenivyxhvavottpc",
                    ObjectId = "khsiaqfbpuhp",
                    TenantId = "joclkkdovixwapephhxaqtefubhhmq",
                },
            },
            ResourceGroupName = "rgswagger_2024-09-01",
        });
    
    });
    
    package main
    
    import (
    	datareplication "github.com/pulumi/pulumi-azure-native-sdk/datareplication/v3"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := datareplication.NewFabricAgent(ctx, "fabricAgent", &datareplication.FabricAgentArgs{
    			FabricAgentName: pulumi.String("M"),
    			FabricName:      pulumi.String("wPR"),
    			Properties: &datareplication.FabricAgentModelPropertiesArgs{
    				AuthenticationIdentity: &datareplication.IdentityModelArgs{
    					AadAuthority:  pulumi.String("bubwwbowfhdmujrt"),
    					ApplicationId: pulumi.String("cwktzrwajuvfyyymfstpey"),
    					Audience:      pulumi.String("dkjobanyqgzenivyxhvavottpc"),
    					ObjectId:      pulumi.String("khsiaqfbpuhp"),
    					TenantId:      pulumi.String("joclkkdovixwapephhxaqtefubhhmq"),
    				},
    				CustomProperties: &datareplication.VMwareFabricAgentModelCustomPropertiesArgs{},
    				MachineId:        pulumi.String("envzcoijbqhtrpncbjbhk"),
    				MachineName:      pulumi.String("y"),
    				ResourceAccessIdentity: &datareplication.IdentityModelArgs{
    					AadAuthority:  pulumi.String("bubwwbowfhdmujrt"),
    					ApplicationId: pulumi.String("cwktzrwajuvfyyymfstpey"),
    					Audience:      pulumi.String("dkjobanyqgzenivyxhvavottpc"),
    					ObjectId:      pulumi.String("khsiaqfbpuhp"),
    					TenantId:      pulumi.String("joclkkdovixwapephhxaqtefubhhmq"),
    				},
    			},
    			ResourceGroupName: pulumi.String("rgswagger_2024-09-01"),
    		})
    		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.FabricAgent;
    import com.pulumi.azurenative.datareplication.FabricAgentArgs;
    import com.pulumi.azurenative.datareplication.inputs.FabricAgentModelPropertiesArgs;
    import com.pulumi.azurenative.datareplication.inputs.IdentityModelArgs;
    import com.pulumi.azurenative.datareplication.inputs.VMwareFabricAgentModelCustomPropertiesArgs;
    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 fabricAgent = new FabricAgent("fabricAgent", FabricAgentArgs.builder()
                .fabricAgentName("M")
                .fabricName("wPR")
                .properties(FabricAgentModelPropertiesArgs.builder()
                    .authenticationIdentity(IdentityModelArgs.builder()
                        .aadAuthority("bubwwbowfhdmujrt")
                        .applicationId("cwktzrwajuvfyyymfstpey")
                        .audience("dkjobanyqgzenivyxhvavottpc")
                        .objectId("khsiaqfbpuhp")
                        .tenantId("joclkkdovixwapephhxaqtefubhhmq")
                        .build())
                    .customProperties(VMwareFabricAgentModelCustomPropertiesArgs.builder()
                        .build())
                    .machineId("envzcoijbqhtrpncbjbhk")
                    .machineName("y")
                    .resourceAccessIdentity(IdentityModelArgs.builder()
                        .aadAuthority("bubwwbowfhdmujrt")
                        .applicationId("cwktzrwajuvfyyymfstpey")
                        .audience("dkjobanyqgzenivyxhvavottpc")
                        .objectId("khsiaqfbpuhp")
                        .tenantId("joclkkdovixwapephhxaqtefubhhmq")
                        .build())
                    .build())
                .resourceGroupName("rgswagger_2024-09-01")
                .build());
    
        }
    }
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const fabricAgent = new azure_native.datareplication.FabricAgent("fabricAgent", {
        fabricAgentName: "M",
        fabricName: "wPR",
        properties: {
            authenticationIdentity: {
                aadAuthority: "bubwwbowfhdmujrt",
                applicationId: "cwktzrwajuvfyyymfstpey",
                audience: "dkjobanyqgzenivyxhvavottpc",
                objectId: "khsiaqfbpuhp",
                tenantId: "joclkkdovixwapephhxaqtefubhhmq",
            },
            customProperties: {},
            machineId: "envzcoijbqhtrpncbjbhk",
            machineName: "y",
            resourceAccessIdentity: {
                aadAuthority: "bubwwbowfhdmujrt",
                applicationId: "cwktzrwajuvfyyymfstpey",
                audience: "dkjobanyqgzenivyxhvavottpc",
                objectId: "khsiaqfbpuhp",
                tenantId: "joclkkdovixwapephhxaqtefubhhmq",
            },
        },
        resourceGroupName: "rgswagger_2024-09-01",
    });
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    fabric_agent = azure_native.datareplication.FabricAgent("fabricAgent",
        fabric_agent_name="M",
        fabric_name="wPR",
        properties={
            "authentication_identity": {
                "aad_authority": "bubwwbowfhdmujrt",
                "application_id": "cwktzrwajuvfyyymfstpey",
                "audience": "dkjobanyqgzenivyxhvavottpc",
                "object_id": "khsiaqfbpuhp",
                "tenant_id": "joclkkdovixwapephhxaqtefubhhmq",
            },
            "custom_properties": {},
            "machine_id": "envzcoijbqhtrpncbjbhk",
            "machine_name": "y",
            "resource_access_identity": {
                "aad_authority": "bubwwbowfhdmujrt",
                "application_id": "cwktzrwajuvfyyymfstpey",
                "audience": "dkjobanyqgzenivyxhvavottpc",
                "object_id": "khsiaqfbpuhp",
                "tenant_id": "joclkkdovixwapephhxaqtefubhhmq",
            },
        },
        resource_group_name="rgswagger_2024-09-01")
    
    resources:
      fabricAgent:
        type: azure-native:datareplication:FabricAgent
        properties:
          fabricAgentName: M
          fabricName: wPR
          properties:
            authenticationIdentity:
              aadAuthority: bubwwbowfhdmujrt
              applicationId: cwktzrwajuvfyyymfstpey
              audience: dkjobanyqgzenivyxhvavottpc
              objectId: khsiaqfbpuhp
              tenantId: joclkkdovixwapephhxaqtefubhhmq
            customProperties: {}
            machineId: envzcoijbqhtrpncbjbhk
            machineName: y
            resourceAccessIdentity:
              aadAuthority: bubwwbowfhdmujrt
              applicationId: cwktzrwajuvfyyymfstpey
              audience: dkjobanyqgzenivyxhvavottpc
              objectId: khsiaqfbpuhp
              tenantId: joclkkdovixwapephhxaqtefubhhmq
          resourceGroupName: rgswagger_2024-09-01
    

    Create FabricAgent Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new FabricAgent(name: string, args: FabricAgentArgs, opts?: CustomResourceOptions);
    @overload
    def FabricAgent(resource_name: str,
                    args: FabricAgentArgs,
                    opts: Optional[ResourceOptions] = None)
    
    @overload
    def FabricAgent(resource_name: str,
                    opts: Optional[ResourceOptions] = None,
                    fabric_name: Optional[str] = None,
                    resource_group_name: Optional[str] = None,
                    fabric_agent_name: Optional[str] = None,
                    properties: Optional[FabricAgentModelPropertiesArgs] = None)
    func NewFabricAgent(ctx *Context, name string, args FabricAgentArgs, opts ...ResourceOption) (*FabricAgent, error)
    public FabricAgent(string name, FabricAgentArgs args, CustomResourceOptions? opts = null)
    public FabricAgent(String name, FabricAgentArgs args)
    public FabricAgent(String name, FabricAgentArgs args, CustomResourceOptions options)
    
    type: azure-native:datareplication:FabricAgent
    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 FabricAgentArgs
    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 FabricAgentArgs
    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 FabricAgentArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args FabricAgentArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args FabricAgentArgs
    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 fabricAgentResource = new AzureNative.DataReplication.FabricAgent("fabricAgentResource", new()
    {
        FabricName = "string",
        ResourceGroupName = "string",
        FabricAgentName = "string",
        Properties = new AzureNative.DataReplication.Inputs.FabricAgentModelPropertiesArgs
        {
            AuthenticationIdentity = new AzureNative.DataReplication.Inputs.IdentityModelArgs
            {
                AadAuthority = "string",
                ApplicationId = "string",
                Audience = "string",
                ObjectId = "string",
                TenantId = "string",
            },
            CustomProperties = new AzureNative.DataReplication.Inputs.VMwareFabricAgentModelCustomPropertiesArgs
            {
                BiosId = "string",
                InstanceType = "VMware",
                MarsAuthenticationIdentity = new AzureNative.DataReplication.Inputs.IdentityModelArgs
                {
                    AadAuthority = "string",
                    ApplicationId = "string",
                    Audience = "string",
                    ObjectId = "string",
                    TenantId = "string",
                },
            },
            MachineId = "string",
            MachineName = "string",
            ResourceAccessIdentity = new AzureNative.DataReplication.Inputs.IdentityModelArgs
            {
                AadAuthority = "string",
                ApplicationId = "string",
                Audience = "string",
                ObjectId = "string",
                TenantId = "string",
            },
        },
    });
    
    example, err := datareplication.NewFabricAgent(ctx, "fabricAgentResource", &datareplication.FabricAgentArgs{
    	FabricName:        pulumi.String("string"),
    	ResourceGroupName: pulumi.String("string"),
    	FabricAgentName:   pulumi.String("string"),
    	Properties: &datareplication.FabricAgentModelPropertiesArgs{
    		AuthenticationIdentity: &datareplication.IdentityModelArgs{
    			AadAuthority:  pulumi.String("string"),
    			ApplicationId: pulumi.String("string"),
    			Audience:      pulumi.String("string"),
    			ObjectId:      pulumi.String("string"),
    			TenantId:      pulumi.String("string"),
    		},
    		CustomProperties: &datareplication.VMwareFabricAgentModelCustomPropertiesArgs{
    			BiosId:       pulumi.String("string"),
    			InstanceType: pulumi.String("VMware"),
    			MarsAuthenticationIdentity: &datareplication.IdentityModelArgs{
    				AadAuthority:  pulumi.String("string"),
    				ApplicationId: pulumi.String("string"),
    				Audience:      pulumi.String("string"),
    				ObjectId:      pulumi.String("string"),
    				TenantId:      pulumi.String("string"),
    			},
    		},
    		MachineId:   pulumi.String("string"),
    		MachineName: pulumi.String("string"),
    		ResourceAccessIdentity: &datareplication.IdentityModelArgs{
    			AadAuthority:  pulumi.String("string"),
    			ApplicationId: pulumi.String("string"),
    			Audience:      pulumi.String("string"),
    			ObjectId:      pulumi.String("string"),
    			TenantId:      pulumi.String("string"),
    		},
    	},
    })
    
    var fabricAgentResource = new FabricAgent("fabricAgentResource", FabricAgentArgs.builder()
        .fabricName("string")
        .resourceGroupName("string")
        .fabricAgentName("string")
        .properties(FabricAgentModelPropertiesArgs.builder()
            .authenticationIdentity(IdentityModelArgs.builder()
                .aadAuthority("string")
                .applicationId("string")
                .audience("string")
                .objectId("string")
                .tenantId("string")
                .build())
            .customProperties(VMwareFabricAgentModelCustomPropertiesArgs.builder()
                .biosId("string")
                .instanceType("VMware")
                .marsAuthenticationIdentity(IdentityModelArgs.builder()
                    .aadAuthority("string")
                    .applicationId("string")
                    .audience("string")
                    .objectId("string")
                    .tenantId("string")
                    .build())
                .build())
            .machineId("string")
            .machineName("string")
            .resourceAccessIdentity(IdentityModelArgs.builder()
                .aadAuthority("string")
                .applicationId("string")
                .audience("string")
                .objectId("string")
                .tenantId("string")
                .build())
            .build())
        .build());
    
    fabric_agent_resource = azure_native.datareplication.FabricAgent("fabricAgentResource",
        fabric_name="string",
        resource_group_name="string",
        fabric_agent_name="string",
        properties={
            "authentication_identity": {
                "aad_authority": "string",
                "application_id": "string",
                "audience": "string",
                "object_id": "string",
                "tenant_id": "string",
            },
            "custom_properties": {
                "bios_id": "string",
                "instance_type": "VMware",
                "mars_authentication_identity": {
                    "aad_authority": "string",
                    "application_id": "string",
                    "audience": "string",
                    "object_id": "string",
                    "tenant_id": "string",
                },
            },
            "machine_id": "string",
            "machine_name": "string",
            "resource_access_identity": {
                "aad_authority": "string",
                "application_id": "string",
                "audience": "string",
                "object_id": "string",
                "tenant_id": "string",
            },
        })
    
    const fabricAgentResource = new azure_native.datareplication.FabricAgent("fabricAgentResource", {
        fabricName: "string",
        resourceGroupName: "string",
        fabricAgentName: "string",
        properties: {
            authenticationIdentity: {
                aadAuthority: "string",
                applicationId: "string",
                audience: "string",
                objectId: "string",
                tenantId: "string",
            },
            customProperties: {
                biosId: "string",
                instanceType: "VMware",
                marsAuthenticationIdentity: {
                    aadAuthority: "string",
                    applicationId: "string",
                    audience: "string",
                    objectId: "string",
                    tenantId: "string",
                },
            },
            machineId: "string",
            machineName: "string",
            resourceAccessIdentity: {
                aadAuthority: "string",
                applicationId: "string",
                audience: "string",
                objectId: "string",
                tenantId: "string",
            },
        },
    });
    
    type: azure-native:datareplication:FabricAgent
    properties:
        fabricAgentName: string
        fabricName: string
        properties:
            authenticationIdentity:
                aadAuthority: string
                applicationId: string
                audience: string
                objectId: string
                tenantId: string
            customProperties:
                biosId: string
                instanceType: VMware
                marsAuthenticationIdentity:
                    aadAuthority: string
                    applicationId: string
                    audience: string
                    objectId: string
                    tenantId: string
            machineId: string
            machineName: string
            resourceAccessIdentity:
                aadAuthority: string
                applicationId: string
                audience: string
                objectId: string
                tenantId: string
        resourceGroupName: string
    

    FabricAgent 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 FabricAgent resource accepts the following input properties:

    FabricName string
    The fabric name.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    FabricAgentName string
    The fabric agent name.
    Properties Pulumi.AzureNative.DataReplication.Inputs.FabricAgentModelProperties
    The resource-specific properties for this resource.
    FabricName string
    The fabric name.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    FabricAgentName string
    The fabric agent name.
    Properties FabricAgentModelPropertiesArgs
    The resource-specific properties for this resource.
    fabricName String
    The fabric name.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    fabricAgentName String
    The fabric agent name.
    properties FabricAgentModelProperties
    The resource-specific properties for this resource.
    fabricName string
    The fabric name.
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    fabricAgentName string
    The fabric agent name.
    properties FabricAgentModelProperties
    The resource-specific properties for this resource.
    fabric_name str
    The fabric name.
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    fabric_agent_name str
    The fabric agent name.
    properties FabricAgentModelPropertiesArgs
    The resource-specific properties for this resource.
    fabricName String
    The fabric name.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    fabricAgentName String
    The fabric agent name.
    properties Property Map
    The resource-specific properties for this resource.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the FabricAgent resource produces the following output properties:

    AzureApiVersion string
    The Azure API version of the resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    SystemData Pulumi.AzureNative.DataReplication.Outputs.SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    AzureApiVersion string
    The Azure API version of the resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    SystemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azureApiVersion String
    The Azure API version of the resource.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azureApiVersion string
    The Azure API version of the resource.
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The name of the resource
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azure_api_version str
    The Azure API version of the resource.
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    The name of the resource
    system_data SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type str
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azureApiVersion String
    The Azure API version of the resource.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    systemData Property Map
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

    Supporting Types

    FabricAgentModelProperties, FabricAgentModelPropertiesArgs

    AuthenticationIdentity Pulumi.AzureNative.DataReplication.Inputs.IdentityModel
    Identity model.
    CustomProperties Pulumi.AzureNative.DataReplication.Inputs.VMwareFabricAgentModelCustomProperties
    Fabric agent model custom properties.
    MachineId string
    Gets or sets the machine Id where fabric agent is running.
    MachineName string
    Gets or sets the machine name where fabric agent is running.
    ResourceAccessIdentity Pulumi.AzureNative.DataReplication.Inputs.IdentityModel
    Identity model.
    AuthenticationIdentity IdentityModel
    Identity model.
    CustomProperties VMwareFabricAgentModelCustomProperties
    Fabric agent model custom properties.
    MachineId string
    Gets or sets the machine Id where fabric agent is running.
    MachineName string
    Gets or sets the machine name where fabric agent is running.
    ResourceAccessIdentity IdentityModel
    Identity model.
    authenticationIdentity IdentityModel
    Identity model.
    customProperties VMwareFabricAgentModelCustomProperties
    Fabric agent model custom properties.
    machineId String
    Gets or sets the machine Id where fabric agent is running.
    machineName String
    Gets or sets the machine name where fabric agent is running.
    resourceAccessIdentity IdentityModel
    Identity model.
    authenticationIdentity IdentityModel
    Identity model.
    customProperties VMwareFabricAgentModelCustomProperties
    Fabric agent model custom properties.
    machineId string
    Gets or sets the machine Id where fabric agent is running.
    machineName string
    Gets or sets the machine name where fabric agent is running.
    resourceAccessIdentity IdentityModel
    Identity model.
    authentication_identity IdentityModel
    Identity model.
    custom_properties VMwareFabricAgentModelCustomProperties
    Fabric agent model custom properties.
    machine_id str
    Gets or sets the machine Id where fabric agent is running.
    machine_name str
    Gets or sets the machine name where fabric agent is running.
    resource_access_identity IdentityModel
    Identity model.
    authenticationIdentity Property Map
    Identity model.
    customProperties Property Map
    Fabric agent model custom properties.
    machineId String
    Gets or sets the machine Id where fabric agent is running.
    machineName String
    Gets or sets the machine name where fabric agent is running.
    resourceAccessIdentity Property Map
    Identity model.

    FabricAgentModelPropertiesResponse, FabricAgentModelPropertiesResponseArgs

    AuthenticationIdentity Pulumi.AzureNative.DataReplication.Inputs.IdentityModelResponse
    Identity model.
    CorrelationId string
    Gets or sets the fabric agent correlation Id.
    CustomProperties Pulumi.AzureNative.DataReplication.Inputs.VMwareFabricAgentModelCustomPropertiesResponse
    Fabric agent model custom properties.
    HealthErrors List<Pulumi.AzureNative.DataReplication.Inputs.HealthErrorModelResponse>
    Gets or sets the list of health errors.
    IsResponsive bool
    Gets or sets a value indicating whether the fabric agent is responsive.
    LastHeartbeat string
    Gets or sets the time when last heartbeat was sent by the fabric agent.
    MachineId string
    Gets or sets the machine Id where fabric agent is running.
    MachineName string
    Gets or sets the machine name where fabric agent is running.
    ProvisioningState string
    Gets or sets the provisioning state of the fabric agent.
    ResourceAccessIdentity Pulumi.AzureNative.DataReplication.Inputs.IdentityModelResponse
    Identity model.
    VersionNumber string
    Gets or sets the fabric agent version.
    AuthenticationIdentity IdentityModelResponse
    Identity model.
    CorrelationId string
    Gets or sets the fabric agent correlation Id.
    CustomProperties VMwareFabricAgentModelCustomPropertiesResponse
    Fabric agent model custom properties.
    HealthErrors []HealthErrorModelResponse
    Gets or sets the list of health errors.
    IsResponsive bool
    Gets or sets a value indicating whether the fabric agent is responsive.
    LastHeartbeat string
    Gets or sets the time when last heartbeat was sent by the fabric agent.
    MachineId string
    Gets or sets the machine Id where fabric agent is running.
    MachineName string
    Gets or sets the machine name where fabric agent is running.
    ProvisioningState string
    Gets or sets the provisioning state of the fabric agent.
    ResourceAccessIdentity IdentityModelResponse
    Identity model.
    VersionNumber string
    Gets or sets the fabric agent version.
    authenticationIdentity IdentityModelResponse
    Identity model.
    correlationId String
    Gets or sets the fabric agent correlation Id.
    customProperties VMwareFabricAgentModelCustomPropertiesResponse
    Fabric agent model custom properties.
    healthErrors List<HealthErrorModelResponse>
    Gets or sets the list of health errors.
    isResponsive Boolean
    Gets or sets a value indicating whether the fabric agent is responsive.
    lastHeartbeat String
    Gets or sets the time when last heartbeat was sent by the fabric agent.
    machineId String
    Gets or sets the machine Id where fabric agent is running.
    machineName String
    Gets or sets the machine name where fabric agent is running.
    provisioningState String
    Gets or sets the provisioning state of the fabric agent.
    resourceAccessIdentity IdentityModelResponse
    Identity model.
    versionNumber String
    Gets or sets the fabric agent version.
    authenticationIdentity IdentityModelResponse
    Identity model.
    correlationId string
    Gets or sets the fabric agent correlation Id.
    customProperties VMwareFabricAgentModelCustomPropertiesResponse
    Fabric agent model custom properties.
    healthErrors HealthErrorModelResponse[]
    Gets or sets the list of health errors.
    isResponsive boolean
    Gets or sets a value indicating whether the fabric agent is responsive.
    lastHeartbeat string
    Gets or sets the time when last heartbeat was sent by the fabric agent.
    machineId string
    Gets or sets the machine Id where fabric agent is running.
    machineName string
    Gets or sets the machine name where fabric agent is running.
    provisioningState string
    Gets or sets the provisioning state of the fabric agent.
    resourceAccessIdentity IdentityModelResponse
    Identity model.
    versionNumber string
    Gets or sets the fabric agent version.
    authentication_identity IdentityModelResponse
    Identity model.
    correlation_id str
    Gets or sets the fabric agent correlation Id.
    custom_properties VMwareFabricAgentModelCustomPropertiesResponse
    Fabric agent model custom properties.
    health_errors Sequence[HealthErrorModelResponse]
    Gets or sets the list of health errors.
    is_responsive bool
    Gets or sets a value indicating whether the fabric agent is responsive.
    last_heartbeat str
    Gets or sets the time when last heartbeat was sent by the fabric agent.
    machine_id str
    Gets or sets the machine Id where fabric agent is running.
    machine_name str
    Gets or sets the machine name where fabric agent is running.
    provisioning_state str
    Gets or sets the provisioning state of the fabric agent.
    resource_access_identity IdentityModelResponse
    Identity model.
    version_number str
    Gets or sets the fabric agent version.
    authenticationIdentity Property Map
    Identity model.
    correlationId String
    Gets or sets the fabric agent correlation Id.
    customProperties Property Map
    Fabric agent model custom properties.
    healthErrors List<Property Map>
    Gets or sets the list of health errors.
    isResponsive Boolean
    Gets or sets a value indicating whether the fabric agent is responsive.
    lastHeartbeat String
    Gets or sets the time when last heartbeat was sent by the fabric agent.
    machineId String
    Gets or sets the machine Id where fabric agent is running.
    machineName String
    Gets or sets the machine name where fabric agent is running.
    provisioningState String
    Gets or sets the provisioning state of the fabric agent.
    resourceAccessIdentity Property Map
    Identity model.
    versionNumber String
    Gets or sets the fabric agent version.

    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.
    CreationTime string
    Gets or sets the error creation time.
    HealthCategory string
    Gets or sets the health category.
    IsCustomerResolvable bool
    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.
    AffectedResourceCorrelationIds List<string>
    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.
    AffectedResourceType string
    Gets or sets the type of affected resource type.
    ChildErrors List<Pulumi.AzureNative.DataReplication.Inputs.InnerHealthErrorModelResponse>
    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.
    CreationTime string
    Gets or sets the error creation time.
    HealthCategory string
    Gets or sets the health category.
    IsCustomerResolvable bool
    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.
    AffectedResourceCorrelationIds []string
    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.
    AffectedResourceType string
    Gets or sets the type of affected resource type.
    ChildErrors []InnerHealthErrorModelResponse
    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.
    creationTime String
    Gets or sets the error creation time.
    healthCategory String
    Gets or sets the health category.
    isCustomerResolvable Boolean
    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.
    affectedResourceCorrelationIds List<String>
    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.
    affectedResourceType String
    Gets or sets the type of affected resource type.
    childErrors List<InnerHealthErrorModelResponse>
    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.
    creationTime string
    Gets or sets the error creation time.
    healthCategory string
    Gets or sets the health category.
    isCustomerResolvable boolean
    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.
    affectedResourceCorrelationIds string[]
    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.
    affectedResourceType string
    Gets or sets the type of affected resource type.
    childErrors InnerHealthErrorModelResponse[]
    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_resolvable bool
    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_correlation_ids Sequence[str]
    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_type str
    Gets or sets the type of affected resource type.
    child_errors Sequence[InnerHealthErrorModelResponse]
    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.
    creationTime String
    Gets or sets the error creation time.
    healthCategory String
    Gets or sets the health category.
    isCustomerResolvable Boolean
    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.
    affectedResourceCorrelationIds List<String>
    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.
    affectedResourceType String
    Gets or sets the type of affected resource type.
    childErrors List<Property Map>
    Gets or sets a list of child health errors associated with this error.

    IdentityModel, IdentityModelArgs

    AadAuthority string
    Gets or sets the authority of the SPN with which fabric agent communicates to service.
    ApplicationId string
    Gets or sets the client/application Id of the SPN with which fabric agent communicates to service.
    Audience string
    Gets or sets the audience of the SPN with which fabric agent communicates to service.
    ObjectId string
    Gets or sets the object Id of the SPN with which fabric agent communicates to service.
    TenantId string
    Gets or sets the tenant Id of the SPN with which fabric agent communicates to service.
    AadAuthority string
    Gets or sets the authority of the SPN with which fabric agent communicates to service.
    ApplicationId string
    Gets or sets the client/application Id of the SPN with which fabric agent communicates to service.
    Audience string
    Gets or sets the audience of the SPN with which fabric agent communicates to service.
    ObjectId string
    Gets or sets the object Id of the SPN with which fabric agent communicates to service.
    TenantId string
    Gets or sets the tenant Id of the SPN with which fabric agent communicates to service.
    aadAuthority String
    Gets or sets the authority of the SPN with which fabric agent communicates to service.
    applicationId String
    Gets or sets the client/application Id of the SPN with which fabric agent communicates to service.
    audience String
    Gets or sets the audience of the SPN with which fabric agent communicates to service.
    objectId String
    Gets or sets the object Id of the SPN with which fabric agent communicates to service.
    tenantId String
    Gets or sets the tenant Id of the SPN with which fabric agent communicates to service.
    aadAuthority string
    Gets or sets the authority of the SPN with which fabric agent communicates to service.
    applicationId string
    Gets or sets the client/application Id of the SPN with which fabric agent communicates to service.
    audience string
    Gets or sets the audience of the SPN with which fabric agent communicates to service.
    objectId string
    Gets or sets the object Id of the SPN with which fabric agent communicates to service.
    tenantId string
    Gets or sets the tenant Id of the SPN with which fabric agent communicates to service.
    aad_authority str
    Gets or sets the authority of the SPN with which fabric agent communicates to service.
    application_id str
    Gets or sets the client/application Id of the SPN with which fabric agent communicates to service.
    audience str
    Gets or sets the audience of the SPN with which fabric agent communicates to service.
    object_id str
    Gets or sets the object Id of the SPN with which fabric agent communicates to service.
    tenant_id str
    Gets or sets the tenant Id of the SPN with which fabric agent communicates to service.
    aadAuthority String
    Gets or sets the authority of the SPN with which fabric agent communicates to service.
    applicationId String
    Gets or sets the client/application Id of the SPN with which fabric agent communicates to service.
    audience String
    Gets or sets the audience of the SPN with which fabric agent communicates to service.
    objectId String
    Gets or sets the object Id of the SPN with which fabric agent communicates to service.
    tenantId String
    Gets or sets the tenant Id of the SPN with which fabric agent communicates to service.

    IdentityModelResponse, IdentityModelResponseArgs

    AadAuthority string
    Gets or sets the authority of the SPN with which fabric agent communicates to service.
    ApplicationId string
    Gets or sets the client/application Id of the SPN with which fabric agent communicates to service.
    Audience string
    Gets or sets the audience of the SPN with which fabric agent communicates to service.
    ObjectId string
    Gets or sets the object Id of the SPN with which fabric agent communicates to service.
    TenantId string
    Gets or sets the tenant Id of the SPN with which fabric agent communicates to service.
    AadAuthority string
    Gets or sets the authority of the SPN with which fabric agent communicates to service.
    ApplicationId string
    Gets or sets the client/application Id of the SPN with which fabric agent communicates to service.
    Audience string
    Gets or sets the audience of the SPN with which fabric agent communicates to service.
    ObjectId string
    Gets or sets the object Id of the SPN with which fabric agent communicates to service.
    TenantId string
    Gets or sets the tenant Id of the SPN with which fabric agent communicates to service.
    aadAuthority String
    Gets or sets the authority of the SPN with which fabric agent communicates to service.
    applicationId String
    Gets or sets the client/application Id of the SPN with which fabric agent communicates to service.
    audience String
    Gets or sets the audience of the SPN with which fabric agent communicates to service.
    objectId String
    Gets or sets the object Id of the SPN with which fabric agent communicates to service.
    tenantId String
    Gets or sets the tenant Id of the SPN with which fabric agent communicates to service.
    aadAuthority string
    Gets or sets the authority of the SPN with which fabric agent communicates to service.
    applicationId string
    Gets or sets the client/application Id of the SPN with which fabric agent communicates to service.
    audience string
    Gets or sets the audience of the SPN with which fabric agent communicates to service.
    objectId string
    Gets or sets the object Id of the SPN with which fabric agent communicates to service.
    tenantId string
    Gets or sets the tenant Id of the SPN with which fabric agent communicates to service.
    aad_authority str
    Gets or sets the authority of the SPN with which fabric agent communicates to service.
    application_id str
    Gets or sets the client/application Id of the SPN with which fabric agent communicates to service.
    audience str
    Gets or sets the audience of the SPN with which fabric agent communicates to service.
    object_id str
    Gets or sets the object Id of the SPN with which fabric agent communicates to service.
    tenant_id str
    Gets or sets the tenant Id of the SPN with which fabric agent communicates to service.
    aadAuthority String
    Gets or sets the authority of the SPN with which fabric agent communicates to service.
    applicationId String
    Gets or sets the client/application Id of the SPN with which fabric agent communicates to service.
    audience String
    Gets or sets the audience of the SPN with which fabric agent communicates to service.
    objectId String
    Gets or sets the object Id of the SPN with which fabric agent communicates to service.
    tenantId String
    Gets or sets the tenant Id of the SPN with which fabric agent communicates to service.

    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.
    CreationTime string
    Gets or sets the error creation time.
    HealthCategory string
    Gets or sets the health category.
    IsCustomerResolvable bool
    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.
    CreationTime string
    Gets or sets the error creation time.
    HealthCategory string
    Gets or sets the health category.
    IsCustomerResolvable bool
    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.
    creationTime String
    Gets or sets the error creation time.
    healthCategory String
    Gets or sets the health category.
    isCustomerResolvable Boolean
    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.
    creationTime string
    Gets or sets the error creation time.
    healthCategory string
    Gets or sets the health category.
    isCustomerResolvable boolean
    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_resolvable bool
    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.
    creationTime String
    Gets or sets the error creation time.
    healthCategory String
    Gets or sets the health category.
    isCustomerResolvable Boolean
    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.

    SystemDataResponse, SystemDataResponseArgs

    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    The type of identity that last modified the resource.
    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.
    createdAt string
    The timestamp of resource creation (UTC).
    createdBy string
    The identity that created the resource.
    createdByType string
    The type of identity that created the resource.
    lastModifiedAt string
    The timestamp of resource last modification (UTC)
    lastModifiedBy string
    The identity that last modified the resource.
    lastModifiedByType string
    The type of identity that last modified the resource.
    created_at str
    The timestamp of resource creation (UTC).
    created_by str
    The identity that created the resource.
    created_by_type str
    The type of identity that created the resource.
    last_modified_at str
    The timestamp of resource last modification (UTC)
    last_modified_by str
    The identity that last modified the resource.
    last_modified_by_type str
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.

    VMwareFabricAgentModelCustomProperties, VMwareFabricAgentModelCustomPropertiesArgs

    BiosId string
    Gets or sets the BIOS Id of the fabric agent machine.
    MarsAuthenticationIdentity Pulumi.AzureNative.DataReplication.Inputs.IdentityModel
    Identity model.
    BiosId string
    Gets or sets the BIOS Id of the fabric agent machine.
    MarsAuthenticationIdentity IdentityModel
    Identity model.
    biosId String
    Gets or sets the BIOS Id of the fabric agent machine.
    marsAuthenticationIdentity IdentityModel
    Identity model.
    biosId string
    Gets or sets the BIOS Id of the fabric agent machine.
    marsAuthenticationIdentity IdentityModel
    Identity model.
    bios_id str
    Gets or sets the BIOS Id of the fabric agent machine.
    mars_authentication_identity IdentityModel
    Identity model.
    biosId String
    Gets or sets the BIOS Id of the fabric agent machine.
    marsAuthenticationIdentity Property Map
    Identity model.

    VMwareFabricAgentModelCustomPropertiesResponse, VMwareFabricAgentModelCustomPropertiesResponseArgs

    BiosId string
    Gets or sets the BIOS Id of the fabric agent machine.
    MarsAuthenticationIdentity Pulumi.AzureNative.DataReplication.Inputs.IdentityModelResponse
    Identity model.
    BiosId string
    Gets or sets the BIOS Id of the fabric agent machine.
    MarsAuthenticationIdentity IdentityModelResponse
    Identity model.
    biosId String
    Gets or sets the BIOS Id of the fabric agent machine.
    marsAuthenticationIdentity IdentityModelResponse
    Identity model.
    biosId string
    Gets or sets the BIOS Id of the fabric agent machine.
    marsAuthenticationIdentity IdentityModelResponse
    Identity model.
    bios_id str
    Gets or sets the BIOS Id of the fabric agent machine.
    mars_authentication_identity IdentityModelResponse
    Identity model.
    biosId String
    Gets or sets the BIOS Id of the fabric agent machine.
    marsAuthenticationIdentity Property Map
    Identity model.

    Import

    An existing resource can be imported using its type token, name, and identifier, e.g.

    $ pulumi import azure-native:datareplication:FabricAgent ioxmwhzrzdilxivkvhpvzexl /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataReplication/replicationFabrics/{fabricName}/fabricAgents/{fabricAgentName} 
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
    Azure Native v3.3.0 published on Monday, Apr 28, 2025 by Pulumi