1. Packages
  2. Azure Native v2
  3. API Docs
  4. migrate
  5. GroupsOperation
These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi

azure-native-v2.migrate.GroupsOperation

Explore with Pulumi AI

These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi

Group resource. Azure REST API version: 2023-03-15.

Other available API versions: 2023-04-01-preview, 2023-05-01-preview, 2023-09-09-preview.

Example Usage

GroupsOperations_Create_MaximumSet_Gen

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;

return await Deployment.RunAsync(() => 
{
    var groupsOperation = new AzureNative.Migrate.GroupsOperation("groupsOperation", new()
    {
        GroupName = "kuchatur-test",
        GroupType = AzureNative.Migrate.GroupType.Default,
        ProjectName = "app18700project",
        ProvisioningState = AzureNative.Migrate.ProvisioningState.Succeeded,
        ResourceGroupName = "ayagrawrg",
    });

});
Copy
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.NewGroupsOperation(ctx, "groupsOperation", &migrate.GroupsOperationArgs{
			GroupName:         pulumi.String("kuchatur-test"),
			GroupType:         pulumi.String(migrate.GroupTypeDefault),
			ProjectName:       pulumi.String("app18700project"),
			ProvisioningState: pulumi.String(migrate.ProvisioningStateSucceeded),
			ResourceGroupName: pulumi.String("ayagrawrg"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.migrate.GroupsOperation;
import com.pulumi.azurenative.migrate.GroupsOperationArgs;
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 groupsOperation = new GroupsOperation("groupsOperation", GroupsOperationArgs.builder()
            .groupName("kuchatur-test")
            .groupType("Default")
            .projectName("app18700project")
            .provisioningState("Succeeded")
            .resourceGroupName("ayagrawrg")
            .build());

    }
}
Copy
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";

const groupsOperation = new azure_native.migrate.GroupsOperation("groupsOperation", {
    groupName: "kuchatur-test",
    groupType: azure_native.migrate.GroupType.Default,
    projectName: "app18700project",
    provisioningState: azure_native.migrate.ProvisioningState.Succeeded,
    resourceGroupName: "ayagrawrg",
});
Copy
import pulumi
import pulumi_azure_native as azure_native

groups_operation = azure_native.migrate.GroupsOperation("groupsOperation",
    group_name="kuchatur-test",
    group_type=azure_native.migrate.GroupType.DEFAULT,
    project_name="app18700project",
    provisioning_state=azure_native.migrate.ProvisioningState.SUCCEEDED,
    resource_group_name="ayagrawrg")
Copy
resources:
  groupsOperation:
    type: azure-native:migrate:GroupsOperation
    properties:
      groupName: kuchatur-test
      groupType: Default
      projectName: app18700project
      provisioningState: Succeeded
      resourceGroupName: ayagrawrg
Copy

Create GroupsOperation Resource

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

Constructor syntax

new GroupsOperation(name: string, args: GroupsOperationArgs, opts?: CustomResourceOptions);
@overload
def GroupsOperation(resource_name: str,
                    args: GroupsOperationArgs,
                    opts: Optional[ResourceOptions] = None)

@overload
def GroupsOperation(resource_name: str,
                    opts: Optional[ResourceOptions] = None,
                    project_name: Optional[str] = None,
                    resource_group_name: Optional[str] = None,
                    group_name: Optional[str] = None,
                    group_type: Optional[Union[str, GroupType]] = None,
                    provisioning_state: Optional[Union[str, ProvisioningState]] = None,
                    supported_assessment_types: Optional[Sequence[Union[str, AssessmentType]]] = None)
func NewGroupsOperation(ctx *Context, name string, args GroupsOperationArgs, opts ...ResourceOption) (*GroupsOperation, error)
public GroupsOperation(string name, GroupsOperationArgs args, CustomResourceOptions? opts = null)
public GroupsOperation(String name, GroupsOperationArgs args)
public GroupsOperation(String name, GroupsOperationArgs args, CustomResourceOptions options)
type: azure-native:migrate:GroupsOperation
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. GroupsOperationArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. GroupsOperationArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. GroupsOperationArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. GroupsOperationArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. GroupsOperationArgs
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 groupsOperationResource = new AzureNative.Migrate.GroupsOperation("groupsOperationResource", new()
{
    ProjectName = "string",
    ResourceGroupName = "string",
    GroupName = "string",
    GroupType = "string",
    ProvisioningState = "string",
    SupportedAssessmentTypes = new[]
    {
        "string",
    },
});
Copy
example, err := migrate.NewGroupsOperation(ctx, "groupsOperationResource", &migrate.GroupsOperationArgs{
	ProjectName:       "string",
	ResourceGroupName: "string",
	GroupName:         "string",
	GroupType:         "string",
	ProvisioningState: "string",
	SupportedAssessmentTypes: []string{
		"string",
	},
})
Copy
var groupsOperationResource = new GroupsOperation("groupsOperationResource", GroupsOperationArgs.builder()
    .projectName("string")
    .resourceGroupName("string")
    .groupName("string")
    .groupType("string")
    .provisioningState("string")
    .supportedAssessmentTypes("string")
    .build());
Copy
groups_operation_resource = azure_native.migrate.GroupsOperation("groupsOperationResource",
    project_name=string,
    resource_group_name=string,
    group_name=string,
    group_type=string,
    provisioning_state=string,
    supported_assessment_types=[string])
Copy
const groupsOperationResource = new azure_native.migrate.GroupsOperation("groupsOperationResource", {
    projectName: "string",
    resourceGroupName: "string",
    groupName: "string",
    groupType: "string",
    provisioningState: "string",
    supportedAssessmentTypes: ["string"],
});
Copy
type: azure-native:migrate:GroupsOperation
properties:
    groupName: string
    groupType: string
    projectName: string
    provisioningState: string
    resourceGroupName: string
    supportedAssessmentTypes:
        - string
Copy

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

ProjectName
This property is required.
Changes to this property will trigger replacement.
string
Assessment Project Name
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
GroupName Changes to this property will trigger replacement. string
Group ARM name
GroupType Changes to this property will trigger replacement. string | Pulumi.AzureNative.Migrate.GroupType
The type of group.
ProvisioningState string | Pulumi.AzureNative.Migrate.ProvisioningState
The status of the last operation.
SupportedAssessmentTypes List<Union<string, Pulumi.AzureNative.Migrate.AssessmentType>>
List of assessment types supported on this group.
ProjectName
This property is required.
Changes to this property will trigger replacement.
string
Assessment Project Name
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
GroupName Changes to this property will trigger replacement. string
Group ARM name
GroupType Changes to this property will trigger replacement. string | GroupType
The type of group.
ProvisioningState string | ProvisioningState
The status of the last operation.
SupportedAssessmentTypes []string
List of assessment types supported on this group.
projectName
This property is required.
Changes to this property will trigger replacement.
String
Assessment Project Name
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
groupName Changes to this property will trigger replacement. String
Group ARM name
groupType Changes to this property will trigger replacement. String | GroupType
The type of group.
provisioningState String | ProvisioningState
The status of the last operation.
supportedAssessmentTypes List<Either<String,AssessmentType>>
List of assessment types supported on this group.
projectName
This property is required.
Changes to this property will trigger replacement.
string
Assessment Project Name
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
groupName Changes to this property will trigger replacement. string
Group ARM name
groupType Changes to this property will trigger replacement. string | GroupType
The type of group.
provisioningState string | ProvisioningState
The status of the last operation.
supportedAssessmentTypes (string | AssessmentType)[]
List of assessment types supported on this group.
project_name
This property is required.
Changes to this property will trigger replacement.
str
Assessment Project Name
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the resource group. The name is case insensitive.
group_name Changes to this property will trigger replacement. str
Group ARM name
group_type Changes to this property will trigger replacement. str | GroupType
The type of group.
provisioning_state str | ProvisioningState
The status of the last operation.
supported_assessment_types Sequence[Union[str, AssessmentType]]
List of assessment types supported on this group.
projectName
This property is required.
Changes to this property will trigger replacement.
String
Assessment Project Name
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
groupName Changes to this property will trigger replacement. String
Group ARM name
groupType Changes to this property will trigger replacement. String | "Default" | "Import"
The type of group.
provisioningState String | "Succeeded" | "Failed" | "Canceled" | "Provisioning" | "Updating" | "Deleting" | "Accepted"
The status of the last operation.
supportedAssessmentTypes List<String | "Unknown" | "MachineAssessment" | "AvsAssessment" | "SqlAssessment" | "WebAppAssessment">
List of assessment types supported on this group.

Outputs

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

AreAssessmentsRunning bool
If the assessments are in running state.
Assessments List<string>
List of References to Assessments created on this group.
CreatedTimestamp string
Time when this group was created. Date-Time represented in ISO-8601 format.
GroupStatus string
Whether the group has been created and is valid.
Id string
The provider-assigned unique ID for this managed resource.
MachineCount int
Number of machines part of this group.
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
Time when this group was last updated. Date-Time represented in ISO-8601 format.
AreAssessmentsRunning bool
If the assessments are in running state.
Assessments []string
List of References to Assessments created on this group.
CreatedTimestamp string
Time when this group was created. Date-Time represented in ISO-8601 format.
GroupStatus string
Whether the group has been created and is valid.
Id string
The provider-assigned unique ID for this managed resource.
MachineCount int
Number of machines part of this group.
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
Time when this group was last updated. Date-Time represented in ISO-8601 format.
areAssessmentsRunning Boolean
If the assessments are in running state.
assessments List<String>
List of References to Assessments created on this group.
createdTimestamp String
Time when this group was created. Date-Time represented in ISO-8601 format.
groupStatus String
Whether the group has been created and is valid.
id String
The provider-assigned unique ID for this managed resource.
machineCount Integer
Number of machines part of this group.
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
Time when this group was last updated. Date-Time represented in ISO-8601 format.
areAssessmentsRunning boolean
If the assessments are in running state.
assessments string[]
List of References to Assessments created on this group.
createdTimestamp string
Time when this group was created. Date-Time represented in ISO-8601 format.
groupStatus string
Whether the group has been created and is valid.
id string
The provider-assigned unique ID for this managed resource.
machineCount number
Number of machines part of this group.
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
Time when this group was last updated. Date-Time represented in ISO-8601 format.
are_assessments_running bool
If the assessments are in running state.
assessments Sequence[str]
List of References to Assessments created on this group.
created_timestamp str
Time when this group was created. Date-Time represented in ISO-8601 format.
group_status str
Whether the group has been created and is valid.
id str
The provider-assigned unique ID for this managed resource.
machine_count int
Number of machines part of this group.
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
Time when this group was last updated. Date-Time represented in ISO-8601 format.
areAssessmentsRunning Boolean
If the assessments are in running state.
assessments List<String>
List of References to Assessments created on this group.
createdTimestamp String
Time when this group was created. Date-Time represented in ISO-8601 format.
groupStatus String
Whether the group has been created and is valid.
id String
The provider-assigned unique ID for this managed resource.
machineCount Number
Number of machines part of this group.
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
Time when this group was last updated. Date-Time represented in ISO-8601 format.

Supporting Types

AssessmentType
, AssessmentTypeArgs

Unknown
Unknown
MachineAssessment
MachineAssessment
AvsAssessment
AvsAssessment
SqlAssessment
SqlAssessment
WebAppAssessment
WebAppAssessment
AssessmentTypeUnknown
Unknown
AssessmentTypeMachineAssessment
MachineAssessment
AssessmentTypeAvsAssessment
AvsAssessment
AssessmentTypeSqlAssessment
SqlAssessment
AssessmentTypeWebAppAssessment
WebAppAssessment
Unknown
Unknown
MachineAssessment
MachineAssessment
AvsAssessment
AvsAssessment
SqlAssessment
SqlAssessment
WebAppAssessment
WebAppAssessment
Unknown
Unknown
MachineAssessment
MachineAssessment
AvsAssessment
AvsAssessment
SqlAssessment
SqlAssessment
WebAppAssessment
WebAppAssessment
UNKNOWN
Unknown
MACHINE_ASSESSMENT
MachineAssessment
AVS_ASSESSMENT
AvsAssessment
SQL_ASSESSMENT
SqlAssessment
WEB_APP_ASSESSMENT
WebAppAssessment
"Unknown"
Unknown
"MachineAssessment"
MachineAssessment
"AvsAssessment"
AvsAssessment
"SqlAssessment"
SqlAssessment
"WebAppAssessment"
WebAppAssessment

GroupType
, GroupTypeArgs

Default
Default
Import
Import
GroupTypeDefault
Default
GroupTypeImport
Import
Default
Default
Import
Import
Default
Default
Import
Import
DEFAULT
Default
IMPORT_
Import
"Default"
Default
"Import"
Import

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:GroupsOperation kuchatur-test /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Migrate/assessmentProjects/{projectName}/groups/{groupName} 
Copy

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

Package Details

Repository
azure-native-v2 pulumi/pulumi-azure-native
License
Apache-2.0
These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi