azure-native.migrate.ImportCollectorsOperation
Explore with Pulumi AI
Import collector resource. Azure REST API version: 2023-03-15.
Other available API versions: 2023-04-01-preview.
Example Usage
ImportCollectorsOperations_Create_MaximumSet_Gen
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var importCollectorsOperation = new AzureNative.Migrate.ImportCollectorsOperation("importCollectorsOperation", new()
{
DiscoverySiteId = "/subscriptions/4bd2aa0f-2bd2-4d67-91a8-5a4533d58600/resourcegroups/ayagrawRG/providers/microsoft.offazure/importsites/actualSEA37d4importSite",
ImportCollectorName = "importCollectore7d5",
ProjectName = "app18700project",
ProvisioningState = AzureNative.Migrate.ProvisioningState.Succeeded,
ResourceGroupName = "ayagrawRG",
});
});
package main
import (
migrate "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.NewImportCollectorsOperation(ctx, "importCollectorsOperation", &migrate.ImportCollectorsOperationArgs{
DiscoverySiteId: pulumi.String("/subscriptions/4bd2aa0f-2bd2-4d67-91a8-5a4533d58600/resourcegroups/ayagrawRG/providers/microsoft.offazure/importsites/actualSEA37d4importSite"),
ImportCollectorName: pulumi.String("importCollectore7d5"),
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.ImportCollectorsOperation;
import com.pulumi.azurenative.migrate.ImportCollectorsOperationArgs;
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 importCollectorsOperation = new ImportCollectorsOperation("importCollectorsOperation", ImportCollectorsOperationArgs.builder()
.discoverySiteId("/subscriptions/4bd2aa0f-2bd2-4d67-91a8-5a4533d58600/resourcegroups/ayagrawRG/providers/microsoft.offazure/importsites/actualSEA37d4importSite")
.importCollectorName("importCollectore7d5")
.projectName("app18700project")
.provisioningState("Succeeded")
.resourceGroupName("ayagrawRG")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
import_collectors_operation = azure_native.migrate.ImportCollectorsOperation("importCollectorsOperation",
discovery_site_id="/subscriptions/4bd2aa0f-2bd2-4d67-91a8-5a4533d58600/resourcegroups/ayagrawRG/providers/microsoft.offazure/importsites/actualSEA37d4importSite",
import_collector_name="importCollectore7d5",
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 importCollectorsOperation = new azure_native.migrate.ImportCollectorsOperation("importCollectorsOperation", {
discoverySiteId: "/subscriptions/4bd2aa0f-2bd2-4d67-91a8-5a4533d58600/resourcegroups/ayagrawRG/providers/microsoft.offazure/importsites/actualSEA37d4importSite",
importCollectorName: "importCollectore7d5",
projectName: "app18700project",
provisioningState: azure_native.migrate.ProvisioningState.Succeeded,
resourceGroupName: "ayagrawRG",
});
resources:
importCollectorsOperation:
type: azure-native:migrate:ImportCollectorsOperation
properties:
discoverySiteId: /subscriptions/4bd2aa0f-2bd2-4d67-91a8-5a4533d58600/resourcegroups/ayagrawRG/providers/microsoft.offazure/importsites/actualSEA37d4importSite
importCollectorName: importCollectore7d5
projectName: app18700project
provisioningState: Succeeded
resourceGroupName: ayagrawRG
Create ImportCollectorsOperation Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ImportCollectorsOperation(name: string, args: ImportCollectorsOperationArgs, opts?: CustomResourceOptions);
@overload
def ImportCollectorsOperation(resource_name: str,
args: ImportCollectorsOperationArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ImportCollectorsOperation(resource_name: str,
opts: Optional[ResourceOptions] = None,
project_name: Optional[str] = None,
resource_group_name: Optional[str] = None,
discovery_site_id: Optional[str] = None,
import_collector_name: Optional[str] = None,
provisioning_state: Optional[Union[str, ProvisioningState]] = None)
func NewImportCollectorsOperation(ctx *Context, name string, args ImportCollectorsOperationArgs, opts ...ResourceOption) (*ImportCollectorsOperation, error)
public ImportCollectorsOperation(string name, ImportCollectorsOperationArgs args, CustomResourceOptions? opts = null)
public ImportCollectorsOperation(String name, ImportCollectorsOperationArgs args)
public ImportCollectorsOperation(String name, ImportCollectorsOperationArgs args, CustomResourceOptions options)
type: azure-native:migrate:ImportCollectorsOperation
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 ImportCollectorsOperationArgs
- 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 ImportCollectorsOperationArgs
- 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 ImportCollectorsOperationArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ImportCollectorsOperationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ImportCollectorsOperationArgs
- 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 importCollectorsOperationResource = new AzureNative.Migrate.ImportCollectorsOperation("importCollectorsOperationResource", new()
{
ProjectName = "string",
ResourceGroupName = "string",
DiscoverySiteId = "string",
ImportCollectorName = "string",
ProvisioningState = "string",
});
example, err := migrate.NewImportCollectorsOperation(ctx, "importCollectorsOperationResource", &migrate.ImportCollectorsOperationArgs{
ProjectName: pulumi.String("string"),
ResourceGroupName: pulumi.String("string"),
DiscoverySiteId: pulumi.String("string"),
ImportCollectorName: pulumi.String("string"),
ProvisioningState: pulumi.String("string"),
})
var importCollectorsOperationResource = new ImportCollectorsOperation("importCollectorsOperationResource", ImportCollectorsOperationArgs.builder()
.projectName("string")
.resourceGroupName("string")
.discoverySiteId("string")
.importCollectorName("string")
.provisioningState("string")
.build());
import_collectors_operation_resource = azure_native.migrate.ImportCollectorsOperation("importCollectorsOperationResource",
project_name="string",
resource_group_name="string",
discovery_site_id="string",
import_collector_name="string",
provisioning_state="string")
const importCollectorsOperationResource = new azure_native.migrate.ImportCollectorsOperation("importCollectorsOperationResource", {
projectName: "string",
resourceGroupName: "string",
discoverySiteId: "string",
importCollectorName: "string",
provisioningState: "string",
});
type: azure-native:migrate:ImportCollectorsOperation
properties:
discoverySiteId: string
importCollectorName: string
projectName: string
provisioningState: string
resourceGroupName: string
ImportCollectorsOperation 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 ImportCollectorsOperation resource accepts the following input properties:
- Project
Name string - Assessment Project Name
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Discovery
Site stringId - Gets the discovery site id.
- Import
Collector stringName - Import collector ARM name
- Provisioning
State string | Pulumi.Azure Native. Migrate. Provisioning State - The status of the last operation.
- Project
Name string - Assessment Project Name
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Discovery
Site stringId - Gets the discovery site id.
- Import
Collector stringName - Import collector ARM name
- Provisioning
State string | ProvisioningState - The status of the last operation.
- project
Name String - Assessment Project Name
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- discovery
Site StringId - Gets the discovery site id.
- import
Collector StringName - Import collector ARM name
- provisioning
State String | ProvisioningState - The status of the last operation.
- project
Name string - Assessment Project Name
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- discovery
Site stringId - Gets the discovery site id.
- import
Collector stringName - Import collector ARM name
- provisioning
State string | ProvisioningState - The status of the last operation.
- project_
name str - Assessment Project Name
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- discovery_
site_ strid - Gets the discovery site id.
- import_
collector_ strname - Import collector ARM name
- provisioning_
state str | ProvisioningState - The status of the last operation.
- project
Name String - Assessment Project Name
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- discovery
Site StringId - Gets the discovery site id.
- import
Collector StringName - Import collector ARM name
- provisioning
State 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 ImportCollectorsOperation resource produces the following output properties:
- Created
Timestamp 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
- System
Data Pulumi.Azure Native. Migrate. Outputs. System Data Response - 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"
- Updated
Timestamp string - Timestamp when collector was last updated.
- Created
Timestamp 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
- System
Data SystemData Response - 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"
- Updated
Timestamp string - Timestamp when collector was last updated.
- created
Timestamp 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
- system
Data SystemData Response - 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"
- updated
Timestamp String - Timestamp when collector was last updated.
- created
Timestamp 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
- system
Data SystemData Response - 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"
- updated
Timestamp 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 SystemData Response - 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.
- created
Timestamp 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
- system
Data 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"
- updated
Timestamp String - Timestamp when collector was last updated.
Supporting Types
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.
- Provisioning
State Succeeded - SucceededResource has been created.
- Provisioning
State Failed - FailedResource creation failed.
- Provisioning
State Canceled - CanceledResource creation was canceled.
- Provisioning
State Provisioning - ProvisioningResource is being Provisioned.
- Provisioning
State Updating - UpdatingResource is being Updated.
- Provisioning
State Deleting - DeletingResource is being Deleted.
- Provisioning
State 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.
- "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
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified stringBy Type - The type of identity that last modified the resource.
- created_
at str - The timestamp of resource creation (UTC).
- created_
by str - The identity that created the resource.
- created_
by_ strtype - The type of identity that created the resource.
- last_
modified_ strat - The timestamp of resource last modification (UTC)
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ strby_ type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:migrate:ImportCollectorsOperation importCollectore7d5 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Migrate/assessmentProjects/{projectName}/importcollectors/{importCollectorName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0