azure-native.migrate.GroupsOperation
Explore with Pulumi AI
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 (
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
})
}
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.
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",
},
});
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:
- Project
Name string - Assessment Project Name
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Group
Name string - Group ARM name
- Group
Type string | Pulumi.Azure Native. Migrate. Group Type - The type of group.
- Provisioning
State string | Pulumi.Azure Native. Migrate. Provisioning State - The status of the last operation.
- Supported
Assessment List<Union<string, Pulumi.Types Azure Native. Migrate. Assessment Type>> - List of assessment types supported on this group.
- Project
Name string - Assessment Project Name
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Group
Name string - Group ARM name
- Group
Type string | GroupType - The type of group.
- Provisioning
State string | ProvisioningState - The status of the last operation.
- Supported
Assessment []stringTypes - List of assessment types supported on this group.
- project
Name String - Assessment Project Name
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- group
Name String - Group ARM name
- group
Type String | GroupType - The type of group.
- provisioning
State String | ProvisioningState - The status of the last operation.
- supported
Assessment List<Either<String,AssessmentTypes Type>> - List of assessment types supported on this group.
- project
Name string - Assessment Project Name
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- group
Name string - Group ARM name
- group
Type string | GroupType - The type of group.
- provisioning
State string | ProvisioningState - The status of the last operation.
- supported
Assessment (string | AssessmentTypes Type)[] - List of assessment types supported on this group.
- project_
name str - Assessment Project Name
- resource_
group_ strname - 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_ Sequence[Union[str, Assessmenttypes Type]] - List of assessment types supported on this group.
- project
Name String - Assessment Project Name
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- group
Name String - Group ARM name
- group
Type String | "Default" | "Import" - The type of group.
- provisioning
State String | "Succeeded" | "Failed" | "Canceled" | "Provisioning" | "Updating" | "Deleting" | "Accepted" - The status of the last operation.
- supported
Assessment List<String | "Unknown" | "MachineTypes Assessment" | "Avs Assessment" | "Sql Assessment" | "Web App Assessment"> - 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:
- Are
Assessments boolRunning - If the assessments are in running state.
- Assessments List<string>
- List of References to Assessments created on this group.
- Created
Timestamp string - Time when this group was created. Date-Time represented in ISO-8601 format.
- Group
Status string - Whether the group has been created and is valid.
- Id string
- The provider-assigned unique ID for this managed resource.
- Machine
Count int - Number of machines part of this group.
- 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 - Time when this group was last updated. Date-Time represented in ISO-8601 format.
- Are
Assessments boolRunning - If the assessments are in running state.
- Assessments []string
- List of References to Assessments created on this group.
- Created
Timestamp string - Time when this group was created. Date-Time represented in ISO-8601 format.
- Group
Status string - Whether the group has been created and is valid.
- Id string
- The provider-assigned unique ID for this managed resource.
- Machine
Count int - Number of machines part of this group.
- 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 - Time when this group was last updated. Date-Time represented in ISO-8601 format.
- are
Assessments BooleanRunning - If the assessments are in running state.
- assessments List<String>
- List of References to Assessments created on this group.
- created
Timestamp String - Time when this group was created. Date-Time represented in ISO-8601 format.
- group
Status String - Whether the group has been created and is valid.
- id String
- The provider-assigned unique ID for this managed resource.
- machine
Count Integer - Number of machines part of this group.
- 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 - Time when this group was last updated. Date-Time represented in ISO-8601 format.
- are
Assessments booleanRunning - If the assessments are in running state.
- assessments string[]
- List of References to Assessments created on this group.
- created
Timestamp string - Time when this group was created. Date-Time represented in ISO-8601 format.
- group
Status string - Whether the group has been created and is valid.
- id string
- The provider-assigned unique ID for this managed resource.
- machine
Count number - Number of machines part of this group.
- 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 - Time when this group was last updated. Date-Time represented in ISO-8601 format.
- are_
assessments_ boolrunning - 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 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 - Time when this group was last updated. Date-Time represented in ISO-8601 format.
- are
Assessments BooleanRunning - If the assessments are in running state.
- assessments List<String>
- List of References to Assessments created on this group.
- created
Timestamp String - Time when this group was created. Date-Time represented in ISO-8601 format.
- group
Status String - Whether the group has been created and is valid.
- id String
- The provider-assigned unique ID for this managed resource.
- machine
Count Number - Number of machines part of this group.
- 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 - Time when this group was last updated. Date-Time represented in ISO-8601 format.
Supporting Types
AssessmentType, AssessmentTypeArgs
- Unknown
- Unknown
- Machine
Assessment - MachineAssessment
- Avs
Assessment - AvsAssessment
- Sql
Assessment - SqlAssessment
- Web
App Assessment - WebAppAssessment
- Assessment
Type Unknown - Unknown
- Assessment
Type Machine Assessment - MachineAssessment
- Assessment
Type Avs Assessment - AvsAssessment
- Assessment
Type Sql Assessment - SqlAssessment
- Assessment
Type Web App Assessment - WebAppAssessment
- Unknown
- Unknown
- Machine
Assessment - MachineAssessment
- Avs
Assessment - AvsAssessment
- Sql
Assessment - SqlAssessment
- Web
App Assessment - WebAppAssessment
- Unknown
- Unknown
- Machine
Assessment - MachineAssessment
- Avs
Assessment - AvsAssessment
- Sql
Assessment - SqlAssessment
- Web
App Assessment - WebAppAssessment
- UNKNOWN
- Unknown
- MACHINE_ASSESSMENT
- MachineAssessment
- AVS_ASSESSMENT
- AvsAssessment
- SQL_ASSESSMENT
- SqlAssessment
- WEB_APP_ASSESSMENT
- WebAppAssessment
- "Unknown"
- Unknown
- "Machine
Assessment" - MachineAssessment
- "Avs
Assessment" - AvsAssessment
- "Sql
Assessment" - SqlAssessment
- "Web
App Assessment" - WebAppAssessment
GroupType, GroupTypeArgs
- Default
- Default
- Import
- Import
- Group
Type Default - Default
- Group
Type Import - 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.
- 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: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