1. Packages
  2. Azure Native
  3. API Docs
  4. migrate
  5. HypervCollectorsOperation
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.38.0 published on Monday, Apr 22, 2024 by Pulumi

azure-native.migrate.HypervCollectorsOperation

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.38.0 published on Monday, Apr 22, 2024 by Pulumi

    Hyper-V collector resource. Azure REST API version: 2023-03-15.

    Other available API versions: 2023-04-01-preview.

    Example Usage

    HypervCollectorsOperations_Create_MaximumSet_Gen

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var hypervCollectorsOperation = new AzureNative.Migrate.HypervCollectorsOperation("hypervCollectorsOperation", new()
        {
            AgentProperties = new AzureNative.Migrate.Inputs.CollectorAgentPropertiesBaseArgs
            {
                Id = "12f1d90f-b3fa-4926-8893-e56803a09af0",
                LastHeartbeatUtc = "2022-07-07T14:25:35.708325Z",
                SpnDetails = new AzureNative.Migrate.Inputs.CollectorAgentSpnPropertiesBaseArgs
                {
                    ApplicationId = "e3bd6eaa-980b-40ae-a30e-2a5069ba097c",
                    Audience = "e3bd6eaa-980b-40ae-a30e-2a5069ba097c",
                    Authority = "https://login.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47",
                    ObjectId = "01b9f9e2-2d82-414c-adaa-09ce259b6b44",
                    TenantId = "72f988bf-86f1-41af-91ab-2d7cd011db47",
                },
                Version = "2.0.1993.19",
            },
            DiscoverySiteId = "/subscriptions/4bd2aa0f-2bd2-4d67-91a8-5a4533d58600/resourceGroups/ayagrawRG/providers/Microsoft.OffAzure/HyperVSites/test-60527site",
            HypervCollectorName = "test-697cecollector",
            ProjectName = "app18700project",
            ProvisioningState = AzureNative.Migrate.ProvisioningState.Succeeded,
            ResourceGroupName = "ayagrawRG",
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure-native-sdk/migrate/v2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := migrate.NewHypervCollectorsOperation(ctx, "hypervCollectorsOperation", &migrate.HypervCollectorsOperationArgs{
    			AgentProperties: &migrate.CollectorAgentPropertiesBaseArgs{
    				Id:               pulumi.String("12f1d90f-b3fa-4926-8893-e56803a09af0"),
    				LastHeartbeatUtc: pulumi.String("2022-07-07T14:25:35.708325Z"),
    				SpnDetails: &migrate.CollectorAgentSpnPropertiesBaseArgs{
    					ApplicationId: pulumi.String("e3bd6eaa-980b-40ae-a30e-2a5069ba097c"),
    					Audience:      pulumi.String("e3bd6eaa-980b-40ae-a30e-2a5069ba097c"),
    					Authority:     pulumi.String("https://login.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47"),
    					ObjectId:      pulumi.String("01b9f9e2-2d82-414c-adaa-09ce259b6b44"),
    					TenantId:      pulumi.String("72f988bf-86f1-41af-91ab-2d7cd011db47"),
    				},
    				Version: pulumi.String("2.0.1993.19"),
    			},
    			DiscoverySiteId:     pulumi.String("/subscriptions/4bd2aa0f-2bd2-4d67-91a8-5a4533d58600/resourceGroups/ayagrawRG/providers/Microsoft.OffAzure/HyperVSites/test-60527site"),
    			HypervCollectorName: pulumi.String("test-697cecollector"),
    			ProjectName:         pulumi.String("app18700project"),
    			ProvisioningState:   pulumi.String(migrate.ProvisioningStateSucceeded),
    			ResourceGroupName:   pulumi.String("ayagrawRG"),
    		})
    		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.migrate.HypervCollectorsOperation;
    import com.pulumi.azurenative.migrate.HypervCollectorsOperationArgs;
    import com.pulumi.azurenative.migrate.inputs.CollectorAgentPropertiesBaseArgs;
    import com.pulumi.azurenative.migrate.inputs.CollectorAgentSpnPropertiesBaseArgs;
    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 hypervCollectorsOperation = new HypervCollectorsOperation("hypervCollectorsOperation", HypervCollectorsOperationArgs.builder()        
                .agentProperties(CollectorAgentPropertiesBaseArgs.builder()
                    .id("12f1d90f-b3fa-4926-8893-e56803a09af0")
                    .lastHeartbeatUtc("2022-07-07T14:25:35.708325Z")
                    .spnDetails(CollectorAgentSpnPropertiesBaseArgs.builder()
                        .applicationId("e3bd6eaa-980b-40ae-a30e-2a5069ba097c")
                        .audience("e3bd6eaa-980b-40ae-a30e-2a5069ba097c")
                        .authority("https://login.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47")
                        .objectId("01b9f9e2-2d82-414c-adaa-09ce259b6b44")
                        .tenantId("72f988bf-86f1-41af-91ab-2d7cd011db47")
                        .build())
                    .version("2.0.1993.19")
                    .build())
                .discoverySiteId("/subscriptions/4bd2aa0f-2bd2-4d67-91a8-5a4533d58600/resourceGroups/ayagrawRG/providers/Microsoft.OffAzure/HyperVSites/test-60527site")
                .hypervCollectorName("test-697cecollector")
                .projectName("app18700project")
                .provisioningState("Succeeded")
                .resourceGroupName("ayagrawRG")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    hyperv_collectors_operation = azure_native.migrate.HypervCollectorsOperation("hypervCollectorsOperation",
        agent_properties=azure_native.migrate.CollectorAgentPropertiesBaseArgs(
            id="12f1d90f-b3fa-4926-8893-e56803a09af0",
            last_heartbeat_utc="2022-07-07T14:25:35.708325Z",
            spn_details=azure_native.migrate.CollectorAgentSpnPropertiesBaseArgs(
                application_id="e3bd6eaa-980b-40ae-a30e-2a5069ba097c",
                audience="e3bd6eaa-980b-40ae-a30e-2a5069ba097c",
                authority="https://login.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47",
                object_id="01b9f9e2-2d82-414c-adaa-09ce259b6b44",
                tenant_id="72f988bf-86f1-41af-91ab-2d7cd011db47",
            ),
            version="2.0.1993.19",
        ),
        discovery_site_id="/subscriptions/4bd2aa0f-2bd2-4d67-91a8-5a4533d58600/resourceGroups/ayagrawRG/providers/Microsoft.OffAzure/HyperVSites/test-60527site",
        hyperv_collector_name="test-697cecollector",
        project_name="app18700project",
        provisioning_state=azure_native.migrate.ProvisioningState.SUCCEEDED,
        resource_group_name="ayagrawRG")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const hypervCollectorsOperation = new azure_native.migrate.HypervCollectorsOperation("hypervCollectorsOperation", {
        agentProperties: {
            id: "12f1d90f-b3fa-4926-8893-e56803a09af0",
            lastHeartbeatUtc: "2022-07-07T14:25:35.708325Z",
            spnDetails: {
                applicationId: "e3bd6eaa-980b-40ae-a30e-2a5069ba097c",
                audience: "e3bd6eaa-980b-40ae-a30e-2a5069ba097c",
                authority: "https://login.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47",
                objectId: "01b9f9e2-2d82-414c-adaa-09ce259b6b44",
                tenantId: "72f988bf-86f1-41af-91ab-2d7cd011db47",
            },
            version: "2.0.1993.19",
        },
        discoverySiteId: "/subscriptions/4bd2aa0f-2bd2-4d67-91a8-5a4533d58600/resourceGroups/ayagrawRG/providers/Microsoft.OffAzure/HyperVSites/test-60527site",
        hypervCollectorName: "test-697cecollector",
        projectName: "app18700project",
        provisioningState: azure_native.migrate.ProvisioningState.Succeeded,
        resourceGroupName: "ayagrawRG",
    });
    
    resources:
      hypervCollectorsOperation:
        type: azure-native:migrate:HypervCollectorsOperation
        properties:
          agentProperties:
            id: 12f1d90f-b3fa-4926-8893-e56803a09af0
            lastHeartbeatUtc: 2022-07-07T14:25:35.708325Z
            spnDetails:
              applicationId: e3bd6eaa-980b-40ae-a30e-2a5069ba097c
              audience: e3bd6eaa-980b-40ae-a30e-2a5069ba097c
              authority: https://login.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47
              objectId: 01b9f9e2-2d82-414c-adaa-09ce259b6b44
              tenantId: 72f988bf-86f1-41af-91ab-2d7cd011db47
            version: 2.0.1993.19
          discoverySiteId: /subscriptions/4bd2aa0f-2bd2-4d67-91a8-5a4533d58600/resourceGroups/ayagrawRG/providers/Microsoft.OffAzure/HyperVSites/test-60527site
          hypervCollectorName: test-697cecollector
          projectName: app18700project
          provisioningState: Succeeded
          resourceGroupName: ayagrawRG
    

    Create HypervCollectorsOperation Resource

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

    Constructor syntax

    new HypervCollectorsOperation(name: string, args: HypervCollectorsOperationArgs, opts?: CustomResourceOptions);
    @overload
    def HypervCollectorsOperation(resource_name: str,
                                  args: HypervCollectorsOperationArgs,
                                  opts: Optional[ResourceOptions] = None)
    
    @overload
    def HypervCollectorsOperation(resource_name: str,
                                  opts: Optional[ResourceOptions] = None,
                                  project_name: Optional[str] = None,
                                  resource_group_name: Optional[str] = None,
                                  agent_properties: Optional[CollectorAgentPropertiesBaseArgs] = None,
                                  discovery_site_id: Optional[str] = None,
                                  hyperv_collector_name: Optional[str] = None,
                                  provisioning_state: Optional[Union[str, ProvisioningState]] = None)
    func NewHypervCollectorsOperation(ctx *Context, name string, args HypervCollectorsOperationArgs, opts ...ResourceOption) (*HypervCollectorsOperation, error)
    public HypervCollectorsOperation(string name, HypervCollectorsOperationArgs args, CustomResourceOptions? opts = null)
    public HypervCollectorsOperation(String name, HypervCollectorsOperationArgs args)
    public HypervCollectorsOperation(String name, HypervCollectorsOperationArgs args, CustomResourceOptions options)
    
    type: azure-native:migrate:HypervCollectorsOperation
    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 HypervCollectorsOperationArgs
    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 HypervCollectorsOperationArgs
    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 HypervCollectorsOperationArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args HypervCollectorsOperationArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args HypervCollectorsOperationArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var hypervCollectorsOperationResource = new AzureNative.Migrate.HypervCollectorsOperation("hypervCollectorsOperationResource", new()
    {
        ProjectName = "string",
        ResourceGroupName = "string",
        AgentProperties = new AzureNative.Migrate.Inputs.CollectorAgentPropertiesBaseArgs
        {
            Id = "string",
            LastHeartbeatUtc = "string",
            SpnDetails = new AzureNative.Migrate.Inputs.CollectorAgentSpnPropertiesBaseArgs
            {
                ApplicationId = "string",
                Audience = "string",
                Authority = "string",
                ObjectId = "string",
                TenantId = "string",
            },
            Version = "string",
        },
        DiscoverySiteId = "string",
        HypervCollectorName = "string",
        ProvisioningState = "string",
    });
    
    example, err := migrate.NewHypervCollectorsOperation(ctx, "hypervCollectorsOperationResource", &migrate.HypervCollectorsOperationArgs{
    ProjectName: pulumi.String("string"),
    ResourceGroupName: pulumi.String("string"),
    AgentProperties: &migrate.CollectorAgentPropertiesBaseArgs{
    Id: pulumi.String("string"),
    LastHeartbeatUtc: pulumi.String("string"),
    SpnDetails: &migrate.CollectorAgentSpnPropertiesBaseArgs{
    ApplicationId: pulumi.String("string"),
    Audience: pulumi.String("string"),
    Authority: pulumi.String("string"),
    ObjectId: pulumi.String("string"),
    TenantId: pulumi.String("string"),
    },
    Version: pulumi.String("string"),
    },
    DiscoverySiteId: pulumi.String("string"),
    HypervCollectorName: pulumi.String("string"),
    ProvisioningState: pulumi.String("string"),
    })
    
    var hypervCollectorsOperationResource = new HypervCollectorsOperation("hypervCollectorsOperationResource", HypervCollectorsOperationArgs.builder()        
        .projectName("string")
        .resourceGroupName("string")
        .agentProperties(CollectorAgentPropertiesBaseArgs.builder()
            .id("string")
            .lastHeartbeatUtc("string")
            .spnDetails(CollectorAgentSpnPropertiesBaseArgs.builder()
                .applicationId("string")
                .audience("string")
                .authority("string")
                .objectId("string")
                .tenantId("string")
                .build())
            .version("string")
            .build())
        .discoverySiteId("string")
        .hypervCollectorName("string")
        .provisioningState("string")
        .build());
    
    hyperv_collectors_operation_resource = azure_native.migrate.HypervCollectorsOperation("hypervCollectorsOperationResource",
        project_name="string",
        resource_group_name="string",
        agent_properties=azure_native.migrate.CollectorAgentPropertiesBaseArgs(
            id="string",
            last_heartbeat_utc="string",
            spn_details=azure_native.migrate.CollectorAgentSpnPropertiesBaseArgs(
                application_id="string",
                audience="string",
                authority="string",
                object_id="string",
                tenant_id="string",
            ),
            version="string",
        ),
        discovery_site_id="string",
        hyperv_collector_name="string",
        provisioning_state="string")
    
    const hypervCollectorsOperationResource = new azure_native.migrate.HypervCollectorsOperation("hypervCollectorsOperationResource", {
        projectName: "string",
        resourceGroupName: "string",
        agentProperties: {
            id: "string",
            lastHeartbeatUtc: "string",
            spnDetails: {
                applicationId: "string",
                audience: "string",
                authority: "string",
                objectId: "string",
                tenantId: "string",
            },
            version: "string",
        },
        discoverySiteId: "string",
        hypervCollectorName: "string",
        provisioningState: "string",
    });
    
    type: azure-native:migrate:HypervCollectorsOperation
    properties:
        agentProperties:
            id: string
            lastHeartbeatUtc: string
            spnDetails:
                applicationId: string
                audience: string
                authority: string
                objectId: string
                tenantId: string
            version: string
        discoverySiteId: string
        hypervCollectorName: string
        projectName: string
        provisioningState: string
        resourceGroupName: string
    

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

    ProjectName string
    Assessment Project Name
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    AgentProperties Pulumi.AzureNative.Migrate.Inputs.CollectorAgentPropertiesBase
    Gets or sets the collector agent properties.
    DiscoverySiteId string
    Gets the discovery site id.
    HypervCollectorName string
    Hyper-V collector ARM name
    ProvisioningState string | Pulumi.AzureNative.Migrate.ProvisioningState
    The status of the last operation.
    ProjectName string
    Assessment Project Name
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    AgentProperties CollectorAgentPropertiesBaseArgs
    Gets or sets the collector agent properties.
    DiscoverySiteId string
    Gets the discovery site id.
    HypervCollectorName string
    Hyper-V collector ARM name
    ProvisioningState string | ProvisioningState
    The status of the last operation.
    projectName String
    Assessment Project Name
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    agentProperties CollectorAgentPropertiesBase
    Gets or sets the collector agent properties.
    discoverySiteId String
    Gets the discovery site id.
    hypervCollectorName String
    Hyper-V collector ARM name
    provisioningState String | ProvisioningState
    The status of the last operation.
    projectName string
    Assessment Project Name
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    agentProperties CollectorAgentPropertiesBase
    Gets or sets the collector agent properties.
    discoverySiteId string
    Gets the discovery site id.
    hypervCollectorName string
    Hyper-V collector ARM name
    provisioningState string | ProvisioningState
    The status of the last operation.
    project_name str
    Assessment Project Name
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    agent_properties CollectorAgentPropertiesBaseArgs
    Gets or sets the collector agent properties.
    discovery_site_id str
    Gets the discovery site id.
    hyperv_collector_name str
    Hyper-V collector ARM name
    provisioning_state str | ProvisioningState
    The status of the last operation.
    projectName String
    Assessment Project Name
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    agentProperties Property Map
    Gets or sets the collector agent properties.
    discoverySiteId String
    Gets the discovery site id.
    hypervCollectorName String
    Hyper-V collector ARM name
    provisioningState String | "Succeeded" | "Failed" | "Canceled" | "Provisioning" | "Updating" | "Deleting" | "Accepted"
    The status of the last operation.

    Outputs

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

    CreatedTimestamp string
    Gets the Timestamp when collector was created.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    SystemData Pulumi.AzureNative.Migrate.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"
    UpdatedTimestamp string
    Timestamp when collector was last updated.
    CreatedTimestamp string
    Gets the Timestamp when collector was created.
    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"
    UpdatedTimestamp string
    Timestamp when collector was last updated.
    createdTimestamp String
    Gets the Timestamp when collector was created.
    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"
    updatedTimestamp String
    Timestamp when collector was last updated.
    createdTimestamp string
    Gets the Timestamp when collector was created.
    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"
    updatedTimestamp string
    Timestamp when collector was last updated.
    created_timestamp str
    Gets the Timestamp when collector was created.
    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"
    updated_timestamp str
    Timestamp when collector was last updated.
    createdTimestamp String
    Gets the Timestamp when collector was created.
    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"
    updatedTimestamp String
    Timestamp when collector was last updated.

    Supporting Types

    CollectorAgentPropertiesBase, CollectorAgentPropertiesBaseArgs

    Id string
    Gets the collector agent id.
    LastHeartbeatUtc string
    Gets the collector last heartbeat time.
    SpnDetails Pulumi.AzureNative.Migrate.Inputs.CollectorAgentSpnPropertiesBase
    Gets or sets the SPN details.
    Version string
    Gets the collector agent version.
    Id string
    Gets the collector agent id.
    LastHeartbeatUtc string
    Gets the collector last heartbeat time.
    SpnDetails CollectorAgentSpnPropertiesBase
    Gets or sets the SPN details.
    Version string
    Gets the collector agent version.
    id String
    Gets the collector agent id.
    lastHeartbeatUtc String
    Gets the collector last heartbeat time.
    spnDetails CollectorAgentSpnPropertiesBase
    Gets or sets the SPN details.
    version String
    Gets the collector agent version.
    id string
    Gets the collector agent id.
    lastHeartbeatUtc string
    Gets the collector last heartbeat time.
    spnDetails CollectorAgentSpnPropertiesBase
    Gets or sets the SPN details.
    version string
    Gets the collector agent version.
    id str
    Gets the collector agent id.
    last_heartbeat_utc str
    Gets the collector last heartbeat time.
    spn_details CollectorAgentSpnPropertiesBase
    Gets or sets the SPN details.
    version str
    Gets the collector agent version.
    id String
    Gets the collector agent id.
    lastHeartbeatUtc String
    Gets the collector last heartbeat time.
    spnDetails Property Map
    Gets or sets the SPN details.
    version String
    Gets the collector agent version.

    CollectorAgentPropertiesBaseResponse, CollectorAgentPropertiesBaseResponseArgs

    Id string
    Gets the collector agent id.
    LastHeartbeatUtc string
    Gets the collector last heartbeat time.
    SpnDetails Pulumi.AzureNative.Migrate.Inputs.CollectorAgentSpnPropertiesBaseResponse
    Gets or sets the SPN details.
    Version string
    Gets the collector agent version.
    Id string
    Gets the collector agent id.
    LastHeartbeatUtc string
    Gets the collector last heartbeat time.
    SpnDetails CollectorAgentSpnPropertiesBaseResponse
    Gets or sets the SPN details.
    Version string
    Gets the collector agent version.
    id String
    Gets the collector agent id.
    lastHeartbeatUtc String
    Gets the collector last heartbeat time.
    spnDetails CollectorAgentSpnPropertiesBaseResponse
    Gets or sets the SPN details.
    version String
    Gets the collector agent version.
    id string
    Gets the collector agent id.
    lastHeartbeatUtc string
    Gets the collector last heartbeat time.
    spnDetails CollectorAgentSpnPropertiesBaseResponse
    Gets or sets the SPN details.
    version string
    Gets the collector agent version.
    id str
    Gets the collector agent id.
    last_heartbeat_utc str
    Gets the collector last heartbeat time.
    spn_details CollectorAgentSpnPropertiesBaseResponse
    Gets or sets the SPN details.
    version str
    Gets the collector agent version.
    id String
    Gets the collector agent id.
    lastHeartbeatUtc String
    Gets the collector last heartbeat time.
    spnDetails Property Map
    Gets or sets the SPN details.
    version String
    Gets the collector agent version.

    CollectorAgentSpnPropertiesBase, CollectorAgentSpnPropertiesBaseArgs

    ApplicationId string
    Gets the AAD application id.
    Audience string
    Gets the AAD audience url.
    Authority string
    Gets the AAD authority endpoint.
    ObjectId string
    Gets the object id of the AAD application.
    TenantId string
    Gets the tenant id of the AAD application.
    ApplicationId string
    Gets the AAD application id.
    Audience string
    Gets the AAD audience url.
    Authority string
    Gets the AAD authority endpoint.
    ObjectId string
    Gets the object id of the AAD application.
    TenantId string
    Gets the tenant id of the AAD application.
    applicationId String
    Gets the AAD application id.
    audience String
    Gets the AAD audience url.
    authority String
    Gets the AAD authority endpoint.
    objectId String
    Gets the object id of the AAD application.
    tenantId String
    Gets the tenant id of the AAD application.
    applicationId string
    Gets the AAD application id.
    audience string
    Gets the AAD audience url.
    authority string
    Gets the AAD authority endpoint.
    objectId string
    Gets the object id of the AAD application.
    tenantId string
    Gets the tenant id of the AAD application.
    application_id str
    Gets the AAD application id.
    audience str
    Gets the AAD audience url.
    authority str
    Gets the AAD authority endpoint.
    object_id str
    Gets the object id of the AAD application.
    tenant_id str
    Gets the tenant id of the AAD application.
    applicationId String
    Gets the AAD application id.
    audience String
    Gets the AAD audience url.
    authority String
    Gets the AAD authority endpoint.
    objectId String
    Gets the object id of the AAD application.
    tenantId String
    Gets the tenant id of the AAD application.

    CollectorAgentSpnPropertiesBaseResponse, CollectorAgentSpnPropertiesBaseResponseArgs

    ApplicationId string
    Gets the AAD application id.
    Audience string
    Gets the AAD audience url.
    Authority string
    Gets the AAD authority endpoint.
    ObjectId string
    Gets the object id of the AAD application.
    TenantId string
    Gets the tenant id of the AAD application.
    ApplicationId string
    Gets the AAD application id.
    Audience string
    Gets the AAD audience url.
    Authority string
    Gets the AAD authority endpoint.
    ObjectId string
    Gets the object id of the AAD application.
    TenantId string
    Gets the tenant id of the AAD application.
    applicationId String
    Gets the AAD application id.
    audience String
    Gets the AAD audience url.
    authority String
    Gets the AAD authority endpoint.
    objectId String
    Gets the object id of the AAD application.
    tenantId String
    Gets the tenant id of the AAD application.
    applicationId string
    Gets the AAD application id.
    audience string
    Gets the AAD audience url.
    authority string
    Gets the AAD authority endpoint.
    objectId string
    Gets the object id of the AAD application.
    tenantId string
    Gets the tenant id of the AAD application.
    application_id str
    Gets the AAD application id.
    audience str
    Gets the AAD audience url.
    authority str
    Gets the AAD authority endpoint.
    object_id str
    Gets the object id of the AAD application.
    tenant_id str
    Gets the tenant id of the AAD application.
    applicationId String
    Gets the AAD application id.
    audience String
    Gets the AAD audience url.
    authority String
    Gets the AAD authority endpoint.
    objectId String
    Gets the object id of the AAD application.
    tenantId String
    Gets the tenant id of the AAD application.

    ProvisioningState, ProvisioningStateArgs

    Succeeded
    SucceededResource has been created.
    Failed
    FailedResource creation failed.
    Canceled
    CanceledResource creation was canceled.
    Provisioning
    ProvisioningResource is being Provisioned.
    Updating
    UpdatingResource is being Updated.
    Deleting
    DeletingResource is being Deleted.
    Accepted
    AcceptedResource is being Accepted.
    ProvisioningStateSucceeded
    SucceededResource has been created.
    ProvisioningStateFailed
    FailedResource creation failed.
    ProvisioningStateCanceled
    CanceledResource creation was canceled.
    ProvisioningStateProvisioning
    ProvisioningResource is being Provisioned.
    ProvisioningStateUpdating
    UpdatingResource is being Updated.
    ProvisioningStateDeleting
    DeletingResource is being Deleted.
    ProvisioningStateAccepted
    AcceptedResource is being Accepted.
    Succeeded
    SucceededResource has been created.
    Failed
    FailedResource creation failed.
    Canceled
    CanceledResource creation was canceled.
    Provisioning
    ProvisioningResource is being Provisioned.
    Updating
    UpdatingResource is being Updated.
    Deleting
    DeletingResource is being Deleted.
    Accepted
    AcceptedResource is being Accepted.
    Succeeded
    SucceededResource has been created.
    Failed
    FailedResource creation failed.
    Canceled
    CanceledResource creation was canceled.
    Provisioning
    ProvisioningResource is being Provisioned.
    Updating
    UpdatingResource is being Updated.
    Deleting
    DeletingResource is being Deleted.
    Accepted
    AcceptedResource is being Accepted.
    SUCCEEDED
    SucceededResource has been created.
    FAILED
    FailedResource creation failed.
    CANCELED
    CanceledResource creation was canceled.
    PROVISIONING
    ProvisioningResource is being Provisioned.
    UPDATING
    UpdatingResource is being Updated.
    DELETING
    DeletingResource is being Deleted.
    ACCEPTED
    AcceptedResource is being Accepted.
    "Succeeded"
    SucceededResource has been created.
    "Failed"
    FailedResource creation failed.
    "Canceled"
    CanceledResource creation was canceled.
    "Provisioning"
    ProvisioningResource is being Provisioned.
    "Updating"
    UpdatingResource is being Updated.
    "Deleting"
    DeletingResource is being Deleted.
    "Accepted"
    AcceptedResource is being Accepted.

    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.

    Import

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

    $ pulumi import azure-native:migrate:HypervCollectorsOperation test-697cecollector /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Migrate/assessmentProjects/{projectName}/hypervcollectors/{hypervCollectorName} 
    

    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 v1 docs if using the v1 version of this package.
    Azure Native v2.38.0 published on Monday, Apr 22, 2024 by Pulumi