1. Packages
  2. Azure Native
  3. API Docs
  4. migrate
  5. GroupsOperation
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.GroupsOperation

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

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

    Other available API versions: 2023-04-01-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",
        });
    
    });
    
    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.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
    	})
    }
    
    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());
    
        }
    }
    
    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")
    
    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",
    });
    
    resources:
      groupsOperation:
        type: azure-native:migrate:GroupsOperation
        properties:
          groupName: kuchatur-test
          groupType: Default
          projectName: app18700project
          provisioningState: Succeeded
          resourceGroupName: ayagrawrg
    

    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 string
    The unique name of the resource.
    args GroupsOperationArgs
    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 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 string
    The unique name of the resource.
    args GroupsOperationArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args GroupsOperationArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args GroupsOperationArgs
    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 groupsOperationResource = new AzureNative.Migrate.GroupsOperation("groupsOperationResource", new()
    {
        ProjectName = "string",
        ResourceGroupName = "string",
        GroupName = "string",
        GroupType = "string",
        ProvisioningState = "string",
        SupportedAssessmentTypes = new[]
        {
            "string",
        },
    });
    
    example, err := migrate.NewGroupsOperation(ctx, "groupsOperationResource", &migrate.GroupsOperationArgs{
    ProjectName: pulumi.String("string"),
    ResourceGroupName: pulumi.String("string"),
    GroupName: pulumi.String("string"),
    GroupType: pulumi.String("string"),
    ProvisioningState: pulumi.String("string"),
    SupportedAssessmentTypes: pulumi.StringArray{
    pulumi.String("string"),
    },
    })
    
    var groupsOperationResource = new GroupsOperation("groupsOperationResource", GroupsOperationArgs.builder()        
        .projectName("string")
        .resourceGroupName("string")
        .groupName("string")
        .groupType("string")
        .provisioningState("string")
        .supportedAssessmentTypes("string")
        .build());
    
    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"])
    
    const groupsOperationResource = new azure_native.migrate.GroupsOperation("groupsOperationResource", {
        projectName: "string",
        resourceGroupName: "string",
        groupName: "string",
        groupType: "string",
        provisioningState: "string",
        supportedAssessmentTypes: ["string"],
    });
    
    type: azure-native:migrate:GroupsOperation
    properties:
        groupName: string
        groupType: string
        projectName: string
        provisioningState: string
        resourceGroupName: string
        supportedAssessmentTypes:
            - string
    

    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

    The GroupsOperation resource accepts the following input properties:

    ProjectName string
    Assessment Project Name
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    GroupName string
    Group ARM name
    GroupType 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 string
    Assessment Project Name
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    GroupName string
    Group ARM name
    GroupType 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 String
    Assessment Project Name
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    groupName String
    Group ARM name
    groupType 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 string
    Assessment Project Name
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    groupName string
    Group ARM name
    groupType 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 str
    Assessment Project Name
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    group_name str
    Group ARM name
    group_type 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 String
    Assessment Project Name
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    groupName String
    Group ARM name
    groupType 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} 
    

    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