1. Packages
  2. Alibaba Cloud Provider
  3. API Docs
  4. cloudphoneinstance
  5. Group
Alibaba Cloud v3.75.0 published on Friday, Mar 7, 2025 by Pulumi

alicloud.cloudphoneinstance.Group

Explore with Pulumi AI

alicloud logo
Alibaba Cloud v3.75.0 published on Friday, Mar 7, 2025 by Pulumi

    Provides a Cloud Phone Instance Group resource.

    For information about Cloud Phone Instance Group and how to use it, see What is Instance Group.

    NOTE: Available since v1.243.0.

    Example Usage

    Basic Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as alicloud from "@pulumi/alicloud";
    
    const config = new pulumi.Config();
    const name = config.get("name") || "terraform-example";
    const regionId = config.get("regionId") || "cn-hangzhou";
    const defaultjZ1gi0 = new alicloud.cloudphone.Policy("defaultjZ1gi0", {
        lockResolution: "off",
        resolutionWidth: 720,
        cameraRedirect: "on",
        policyGroupName: "defaultPolicyGroup",
        resolutionHeight: 1280,
        clipboard: "readwrite",
        netRedirectPolicy: {
            netRedirect: "off",
            customProxy: "off",
        },
    });
    const defaultH2a5KS = new alicloud.eds.SimpleOfficeSite("defaultH2a5KS", {
        officeSiteName: "InitOfficeSite",
        cidrBlock: "172.16.0.0/12",
    });
    const _default = new alicloud.cloudphoneinstance.Group("default", {
        instanceGroupSpec: "acp.basic.small",
        instanceGroupName: "AutoCreateGroupName",
        period: 1,
        numberOfInstances: 1,
        chargeType: "PostPaid",
        imageId: "imgc-075cllfeuazh03tg9",
        periodUnit: "Hour",
        autoRenew: false,
        amount: 1,
        autoPay: false,
        gpuAcceleration: false,
        policyGroupId: defaultjZ1gi0.id,
        officeSiteId: defaultH2a5KS.id,
    });
    
    import pulumi
    import pulumi_alicloud as alicloud
    
    config = pulumi.Config()
    name = config.get("name")
    if name is None:
        name = "terraform-example"
    region_id = config.get("regionId")
    if region_id is None:
        region_id = "cn-hangzhou"
    defaultj_z1gi0 = alicloud.cloudphone.Policy("defaultjZ1gi0",
        lock_resolution="off",
        resolution_width=720,
        camera_redirect="on",
        policy_group_name="defaultPolicyGroup",
        resolution_height=1280,
        clipboard="readwrite",
        net_redirect_policy={
            "net_redirect": "off",
            "custom_proxy": "off",
        })
    default_h2a5_ks = alicloud.eds.SimpleOfficeSite("defaultH2a5KS",
        office_site_name="InitOfficeSite",
        cidr_block="172.16.0.0/12")
    default = alicloud.cloudphoneinstance.Group("default",
        instance_group_spec="acp.basic.small",
        instance_group_name="AutoCreateGroupName",
        period=1,
        number_of_instances=1,
        charge_type="PostPaid",
        image_id="imgc-075cllfeuazh03tg9",
        period_unit="Hour",
        auto_renew=False,
        amount=1,
        auto_pay=False,
        gpu_acceleration=False,
        policy_group_id=defaultj_z1gi0.id,
        office_site_id=default_h2a5_ks.id)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/cloudphone"
    	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/cloudphoneinstance"
    	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/eds"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi/config"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		cfg := config.New(ctx, "")
    		name := "terraform-example"
    		if param := cfg.Get("name"); param != "" {
    			name = param
    		}
    		regionId := "cn-hangzhou"
    		if param := cfg.Get("regionId"); param != "" {
    			regionId = param
    		}
    		defaultjZ1gi0, err := cloudphone.NewPolicy(ctx, "defaultjZ1gi0", &cloudphone.PolicyArgs{
    			LockResolution:   pulumi.String("off"),
    			ResolutionWidth:  pulumi.Int(720),
    			CameraRedirect:   pulumi.String("on"),
    			PolicyGroupName:  pulumi.String("defaultPolicyGroup"),
    			ResolutionHeight: pulumi.Int(1280),
    			Clipboard:        pulumi.String("readwrite"),
    			NetRedirectPolicy: &cloudphone.PolicyNetRedirectPolicyArgs{
    				NetRedirect: pulumi.String("off"),
    				CustomProxy: pulumi.String("off"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		defaultH2a5KS, err := eds.NewSimpleOfficeSite(ctx, "defaultH2a5KS", &eds.SimpleOfficeSiteArgs{
    			OfficeSiteName: pulumi.String("InitOfficeSite"),
    			CidrBlock:      pulumi.String("172.16.0.0/12"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = cloudphoneinstance.NewGroup(ctx, "default", &cloudphoneinstance.GroupArgs{
    			InstanceGroupSpec: pulumi.String("acp.basic.small"),
    			InstanceGroupName: pulumi.String("AutoCreateGroupName"),
    			Period:            pulumi.Int(1),
    			NumberOfInstances: pulumi.Int(1),
    			ChargeType:        pulumi.String("PostPaid"),
    			ImageId:           pulumi.String("imgc-075cllfeuazh03tg9"),
    			PeriodUnit:        pulumi.String("Hour"),
    			AutoRenew:         pulumi.Bool(false),
    			Amount:            pulumi.Int(1),
    			AutoPay:           pulumi.Bool(false),
    			GpuAcceleration:   pulumi.Bool(false),
    			PolicyGroupId:     defaultjZ1gi0.ID(),
    			OfficeSiteId:      defaultH2a5KS.ID(),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AliCloud = Pulumi.AliCloud;
    
    return await Deployment.RunAsync(() => 
    {
        var config = new Config();
        var name = config.Get("name") ?? "terraform-example";
        var regionId = config.Get("regionId") ?? "cn-hangzhou";
        var defaultjZ1gi0 = new AliCloud.CloudPhone.Policy("defaultjZ1gi0", new()
        {
            LockResolution = "off",
            ResolutionWidth = 720,
            CameraRedirect = "on",
            PolicyGroupName = "defaultPolicyGroup",
            ResolutionHeight = 1280,
            Clipboard = "readwrite",
            NetRedirectPolicy = new AliCloud.cloudPhone.Inputs.PolicyNetRedirectPolicyArgs
            {
                NetRedirect = "off",
                CustomProxy = "off",
            },
        });
    
        var defaultH2a5KS = new AliCloud.Eds.SimpleOfficeSite("defaultH2a5KS", new()
        {
            OfficeSiteName = "InitOfficeSite",
            CidrBlock = "172.16.0.0/12",
        });
    
        var @default = new AliCloud.CloudPhoneInstance.Group("default", new()
        {
            InstanceGroupSpec = "acp.basic.small",
            InstanceGroupName = "AutoCreateGroupName",
            Period = 1,
            NumberOfInstances = 1,
            ChargeType = "PostPaid",
            ImageId = "imgc-075cllfeuazh03tg9",
            PeriodUnit = "Hour",
            AutoRenew = false,
            Amount = 1,
            AutoPay = false,
            GpuAcceleration = false,
            PolicyGroupId = defaultjZ1gi0.Id,
            OfficeSiteId = defaultH2a5KS.Id,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.alicloud.cloudphone.Policy;
    import com.pulumi.alicloud.cloudphone.PolicyArgs;
    import com.pulumi.alicloud.cloudphone.inputs.PolicyNetRedirectPolicyArgs;
    import com.pulumi.alicloud.eds.SimpleOfficeSite;
    import com.pulumi.alicloud.eds.SimpleOfficeSiteArgs;
    import com.pulumi.alicloud.cloudphoneinstance.Group;
    import com.pulumi.alicloud.cloudphoneinstance.GroupArgs;
    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) {
            final var config = ctx.config();
            final var name = config.get("name").orElse("terraform-example");
            final var regionId = config.get("regionId").orElse("cn-hangzhou");
            var defaultjZ1gi0 = new Policy("defaultjZ1gi0", PolicyArgs.builder()
                .lockResolution("off")
                .resolutionWidth("720")
                .cameraRedirect("on")
                .policyGroupName("defaultPolicyGroup")
                .resolutionHeight("1280")
                .clipboard("readwrite")
                .netRedirectPolicy(PolicyNetRedirectPolicyArgs.builder()
                    .netRedirect("off")
                    .customProxy("off")
                    .build())
                .build());
    
            var defaultH2a5KS = new SimpleOfficeSite("defaultH2a5KS", SimpleOfficeSiteArgs.builder()
                .officeSiteName("InitOfficeSite")
                .cidrBlock("172.16.0.0/12")
                .build());
    
            var default_ = new Group("default", GroupArgs.builder()
                .instanceGroupSpec("acp.basic.small")
                .instanceGroupName("AutoCreateGroupName")
                .period("1")
                .numberOfInstances("1")
                .chargeType("PostPaid")
                .imageId("imgc-075cllfeuazh03tg9")
                .periodUnit("Hour")
                .autoRenew(false)
                .amount("1")
                .autoPay(false)
                .gpuAcceleration(false)
                .policyGroupId(defaultjZ1gi0.id())
                .officeSiteId(defaultH2a5KS.id())
                .build());
    
        }
    }
    
    configuration:
      name:
        type: string
        default: terraform-example
      regionId:
        type: string
        default: cn-hangzhou
    resources:
      defaultjZ1gi0:
        type: alicloud:cloudphone:Policy
        properties:
          lockResolution: off
          resolutionWidth: '720'
          cameraRedirect: on
          policyGroupName: defaultPolicyGroup
          resolutionHeight: '1280'
          clipboard: readwrite
          netRedirectPolicy:
            netRedirect: off
            customProxy: off
      defaultH2a5KS:
        type: alicloud:eds:SimpleOfficeSite
        properties:
          officeSiteName: InitOfficeSite
          cidrBlock: 172.16.0.0/12
      default:
        type: alicloud:cloudphoneinstance:Group
        properties:
          instanceGroupSpec: acp.basic.small
          instanceGroupName: AutoCreateGroupName
          period: '1'
          numberOfInstances: '1'
          chargeType: PostPaid
          imageId: imgc-075cllfeuazh03tg9
          periodUnit: Hour
          autoRenew: false
          amount: '1'
          autoPay: false
          gpuAcceleration: false
          policyGroupId: ${defaultjZ1gi0.id}
          officeSiteId: ${defaultH2a5KS.id}
    

    Create Group Resource

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

    Constructor syntax

    new Group(name: string, args: GroupArgs, opts?: CustomResourceOptions);
    @overload
    def Group(resource_name: str,
              args: GroupArgs,
              opts: Optional[ResourceOptions] = None)
    
    @overload
    def Group(resource_name: str,
              opts: Optional[ResourceOptions] = None,
              image_id: Optional[str] = None,
              instance_group_spec: Optional[str] = None,
              instance_group_name: Optional[str] = None,
              charge_type: Optional[str] = None,
              gpu_acceleration: Optional[bool] = None,
              auto_renew: Optional[bool] = None,
              amount: Optional[int] = None,
              auto_pay: Optional[bool] = None,
              number_of_instances: Optional[int] = None,
              office_site_id: Optional[str] = None,
              period: Optional[int] = None,
              period_unit: Optional[str] = None,
              policy_group_id: Optional[str] = None,
              vswitch_id: Optional[str] = None)
    func NewGroup(ctx *Context, name string, args GroupArgs, opts ...ResourceOption) (*Group, error)
    public Group(string name, GroupArgs args, CustomResourceOptions? opts = null)
    public Group(String name, GroupArgs args)
    public Group(String name, GroupArgs args, CustomResourceOptions options)
    
    type: alicloud:cloudphoneinstance:Group
    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 GroupArgs
    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 GroupArgs
    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 GroupArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args GroupArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args GroupArgs
    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 alicloudGroupResource = new AliCloud.CloudPhoneInstance.Group("alicloudGroupResource", new()
    {
        ImageId = "string",
        InstanceGroupSpec = "string",
        InstanceGroupName = "string",
        ChargeType = "string",
        GpuAcceleration = false,
        AutoRenew = false,
        Amount = 0,
        AutoPay = false,
        NumberOfInstances = 0,
        OfficeSiteId = "string",
        Period = 0,
        PeriodUnit = "string",
        PolicyGroupId = "string",
        VswitchId = "string",
    });
    
    example, err := cloudphoneinstance.NewGroup(ctx, "alicloudGroupResource", &cloudphoneinstance.GroupArgs{
    	ImageId:           pulumi.String("string"),
    	InstanceGroupSpec: pulumi.String("string"),
    	InstanceGroupName: pulumi.String("string"),
    	ChargeType:        pulumi.String("string"),
    	GpuAcceleration:   pulumi.Bool(false),
    	AutoRenew:         pulumi.Bool(false),
    	Amount:            pulumi.Int(0),
    	AutoPay:           pulumi.Bool(false),
    	NumberOfInstances: pulumi.Int(0),
    	OfficeSiteId:      pulumi.String("string"),
    	Period:            pulumi.Int(0),
    	PeriodUnit:        pulumi.String("string"),
    	PolicyGroupId:     pulumi.String("string"),
    	VswitchId:         pulumi.String("string"),
    })
    
    var alicloudGroupResource = new Group("alicloudGroupResource", GroupArgs.builder()
        .imageId("string")
        .instanceGroupSpec("string")
        .instanceGroupName("string")
        .chargeType("string")
        .gpuAcceleration(false)
        .autoRenew(false)
        .amount(0)
        .autoPay(false)
        .numberOfInstances(0)
        .officeSiteId("string")
        .period(0)
        .periodUnit("string")
        .policyGroupId("string")
        .vswitchId("string")
        .build());
    
    alicloud_group_resource = alicloud.cloudphoneinstance.Group("alicloudGroupResource",
        image_id="string",
        instance_group_spec="string",
        instance_group_name="string",
        charge_type="string",
        gpu_acceleration=False,
        auto_renew=False,
        amount=0,
        auto_pay=False,
        number_of_instances=0,
        office_site_id="string",
        period=0,
        period_unit="string",
        policy_group_id="string",
        vswitch_id="string")
    
    const alicloudGroupResource = new alicloud.cloudphoneinstance.Group("alicloudGroupResource", {
        imageId: "string",
        instanceGroupSpec: "string",
        instanceGroupName: "string",
        chargeType: "string",
        gpuAcceleration: false,
        autoRenew: false,
        amount: 0,
        autoPay: false,
        numberOfInstances: 0,
        officeSiteId: "string",
        period: 0,
        periodUnit: "string",
        policyGroupId: "string",
        vswitchId: "string",
    });
    
    type: alicloud:cloudphoneinstance:Group
    properties:
        amount: 0
        autoPay: false
        autoRenew: false
        chargeType: string
        gpuAcceleration: false
        imageId: string
        instanceGroupName: string
        instanceGroupSpec: string
        numberOfInstances: 0
        officeSiteId: string
        period: 0
        periodUnit: string
        policyGroupId: string
        vswitchId: string
    

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

    ImageId string
    The image ID.
    InstanceGroupSpec string
    Instance group specifications.
    Amount int
    The number of instance groups. The default value is 1 and the maximum value is 100.
    AutoPay bool
    Whether to pay automatically. The default is false.
    AutoRenew bool
    Whether to enable automatic renewal. The default is false.
    ChargeType string
    The billing type.
    GpuAcceleration bool
    Whether to enable GPU acceleration. The default value is false.

    • true: On.
    • false: closed.
    InstanceGroupName string

    The instance group name

    NOTE: >

    NOTE: - The instance group name must be no more than 30 characters in length. Start with an uppercase/lowercase letter or Chinese. It cannot start with http:// or https://. Only Chinese, English, numbers, half-width colons (:), underscores (_), periods (.), or hyphens (-) are supported.

    NumberOfInstances int
    The number of instances in the instance group. The maximum value is 100.
    OfficeSiteId string
    The network ID.

    • Create a shared network instance: Network ID is optional. Enter the network ID whose type is Shared Network on the cloud mobile phone console> Network page. If the console does not have a shared network, you can fill it in. A shared network is automatically created when the instance group is created.
    • Create a VPC instance: the network ID is required. Enter the network ID of VPC on the cloud mobile phone console> Network page. If the console does not have a VPC network, you need to create a network first.
    Period int
    The duration of the resource purchase. The unit is specified by PeriodUnit.
    PeriodUnit string
    The unit of time for purchasing resources.
    PolicyGroupId string
    The policy ID. You can query the list of policies by calling ListPolicyGroups.
    VswitchId string
    The vSwitch ID.
    ImageId string
    The image ID.
    InstanceGroupSpec string
    Instance group specifications.
    Amount int
    The number of instance groups. The default value is 1 and the maximum value is 100.
    AutoPay bool
    Whether to pay automatically. The default is false.
    AutoRenew bool
    Whether to enable automatic renewal. The default is false.
    ChargeType string
    The billing type.
    GpuAcceleration bool
    Whether to enable GPU acceleration. The default value is false.

    • true: On.
    • false: closed.
    InstanceGroupName string

    The instance group name

    NOTE: >

    NOTE: - The instance group name must be no more than 30 characters in length. Start with an uppercase/lowercase letter or Chinese. It cannot start with http:// or https://. Only Chinese, English, numbers, half-width colons (:), underscores (_), periods (.), or hyphens (-) are supported.

    NumberOfInstances int
    The number of instances in the instance group. The maximum value is 100.
    OfficeSiteId string
    The network ID.

    • Create a shared network instance: Network ID is optional. Enter the network ID whose type is Shared Network on the cloud mobile phone console> Network page. If the console does not have a shared network, you can fill it in. A shared network is automatically created when the instance group is created.
    • Create a VPC instance: the network ID is required. Enter the network ID of VPC on the cloud mobile phone console> Network page. If the console does not have a VPC network, you need to create a network first.
    Period int
    The duration of the resource purchase. The unit is specified by PeriodUnit.
    PeriodUnit string
    The unit of time for purchasing resources.
    PolicyGroupId string
    The policy ID. You can query the list of policies by calling ListPolicyGroups.
    VswitchId string
    The vSwitch ID.
    imageId String
    The image ID.
    instanceGroupSpec String
    Instance group specifications.
    amount Integer
    The number of instance groups. The default value is 1 and the maximum value is 100.
    autoPay Boolean
    Whether to pay automatically. The default is false.
    autoRenew Boolean
    Whether to enable automatic renewal. The default is false.
    chargeType String
    The billing type.
    gpuAcceleration Boolean
    Whether to enable GPU acceleration. The default value is false.

    • true: On.
    • false: closed.
    instanceGroupName String

    The instance group name

    NOTE: >

    NOTE: - The instance group name must be no more than 30 characters in length. Start with an uppercase/lowercase letter or Chinese. It cannot start with http:// or https://. Only Chinese, English, numbers, half-width colons (:), underscores (_), periods (.), or hyphens (-) are supported.

    numberOfInstances Integer
    The number of instances in the instance group. The maximum value is 100.
    officeSiteId String
    The network ID.

    • Create a shared network instance: Network ID is optional. Enter the network ID whose type is Shared Network on the cloud mobile phone console> Network page. If the console does not have a shared network, you can fill it in. A shared network is automatically created when the instance group is created.
    • Create a VPC instance: the network ID is required. Enter the network ID of VPC on the cloud mobile phone console> Network page. If the console does not have a VPC network, you need to create a network first.
    period Integer
    The duration of the resource purchase. The unit is specified by PeriodUnit.
    periodUnit String
    The unit of time for purchasing resources.
    policyGroupId String
    The policy ID. You can query the list of policies by calling ListPolicyGroups.
    vswitchId String
    The vSwitch ID.
    imageId string
    The image ID.
    instanceGroupSpec string
    Instance group specifications.
    amount number
    The number of instance groups. The default value is 1 and the maximum value is 100.
    autoPay boolean
    Whether to pay automatically. The default is false.
    autoRenew boolean
    Whether to enable automatic renewal. The default is false.
    chargeType string
    The billing type.
    gpuAcceleration boolean
    Whether to enable GPU acceleration. The default value is false.

    • true: On.
    • false: closed.
    instanceGroupName string

    The instance group name

    NOTE: >

    NOTE: - The instance group name must be no more than 30 characters in length. Start with an uppercase/lowercase letter or Chinese. It cannot start with http:// or https://. Only Chinese, English, numbers, half-width colons (:), underscores (_), periods (.), or hyphens (-) are supported.

    numberOfInstances number
    The number of instances in the instance group. The maximum value is 100.
    officeSiteId string
    The network ID.

    • Create a shared network instance: Network ID is optional. Enter the network ID whose type is Shared Network on the cloud mobile phone console> Network page. If the console does not have a shared network, you can fill it in. A shared network is automatically created when the instance group is created.
    • Create a VPC instance: the network ID is required. Enter the network ID of VPC on the cloud mobile phone console> Network page. If the console does not have a VPC network, you need to create a network first.
    period number
    The duration of the resource purchase. The unit is specified by PeriodUnit.
    periodUnit string
    The unit of time for purchasing resources.
    policyGroupId string
    The policy ID. You can query the list of policies by calling ListPolicyGroups.
    vswitchId string
    The vSwitch ID.
    image_id str
    The image ID.
    instance_group_spec str
    Instance group specifications.
    amount int
    The number of instance groups. The default value is 1 and the maximum value is 100.
    auto_pay bool
    Whether to pay automatically. The default is false.
    auto_renew bool
    Whether to enable automatic renewal. The default is false.
    charge_type str
    The billing type.
    gpu_acceleration bool
    Whether to enable GPU acceleration. The default value is false.

    • true: On.
    • false: closed.
    instance_group_name str

    The instance group name

    NOTE: >

    NOTE: - The instance group name must be no more than 30 characters in length. Start with an uppercase/lowercase letter or Chinese. It cannot start with http:// or https://. Only Chinese, English, numbers, half-width colons (:), underscores (_), periods (.), or hyphens (-) are supported.

    number_of_instances int
    The number of instances in the instance group. The maximum value is 100.
    office_site_id str
    The network ID.

    • Create a shared network instance: Network ID is optional. Enter the network ID whose type is Shared Network on the cloud mobile phone console> Network page. If the console does not have a shared network, you can fill it in. A shared network is automatically created when the instance group is created.
    • Create a VPC instance: the network ID is required. Enter the network ID of VPC on the cloud mobile phone console> Network page. If the console does not have a VPC network, you need to create a network first.
    period int
    The duration of the resource purchase. The unit is specified by PeriodUnit.
    period_unit str
    The unit of time for purchasing resources.
    policy_group_id str
    The policy ID. You can query the list of policies by calling ListPolicyGroups.
    vswitch_id str
    The vSwitch ID.
    imageId String
    The image ID.
    instanceGroupSpec String
    Instance group specifications.
    amount Number
    The number of instance groups. The default value is 1 and the maximum value is 100.
    autoPay Boolean
    Whether to pay automatically. The default is false.
    autoRenew Boolean
    Whether to enable automatic renewal. The default is false.
    chargeType String
    The billing type.
    gpuAcceleration Boolean
    Whether to enable GPU acceleration. The default value is false.

    • true: On.
    • false: closed.
    instanceGroupName String

    The instance group name

    NOTE: >

    NOTE: - The instance group name must be no more than 30 characters in length. Start with an uppercase/lowercase letter or Chinese. It cannot start with http:// or https://. Only Chinese, English, numbers, half-width colons (:), underscores (_), periods (.), or hyphens (-) are supported.

    numberOfInstances Number
    The number of instances in the instance group. The maximum value is 100.
    officeSiteId String
    The network ID.

    • Create a shared network instance: Network ID is optional. Enter the network ID whose type is Shared Network on the cloud mobile phone console> Network page. If the console does not have a shared network, you can fill it in. A shared network is automatically created when the instance group is created.
    • Create a VPC instance: the network ID is required. Enter the network ID of VPC on the cloud mobile phone console> Network page. If the console does not have a VPC network, you need to create a network first.
    period Number
    The duration of the resource purchase. The unit is specified by PeriodUnit.
    periodUnit String
    The unit of time for purchasing resources.
    policyGroupId String
    The policy ID. You can query the list of policies by calling ListPolicyGroups.
    vswitchId String
    The vSwitch ID.

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Status string
    Instance group status
    Id string
    The provider-assigned unique ID for this managed resource.
    Status string
    Instance group status
    id String
    The provider-assigned unique ID for this managed resource.
    status String
    Instance group status
    id string
    The provider-assigned unique ID for this managed resource.
    status string
    Instance group status
    id str
    The provider-assigned unique ID for this managed resource.
    status str
    Instance group status
    id String
    The provider-assigned unique ID for this managed resource.
    status String
    Instance group status

    Look up Existing Group Resource

    Get an existing Group resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: GroupState, opts?: CustomResourceOptions): Group
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            amount: Optional[int] = None,
            auto_pay: Optional[bool] = None,
            auto_renew: Optional[bool] = None,
            charge_type: Optional[str] = None,
            gpu_acceleration: Optional[bool] = None,
            image_id: Optional[str] = None,
            instance_group_name: Optional[str] = None,
            instance_group_spec: Optional[str] = None,
            number_of_instances: Optional[int] = None,
            office_site_id: Optional[str] = None,
            period: Optional[int] = None,
            period_unit: Optional[str] = None,
            policy_group_id: Optional[str] = None,
            status: Optional[str] = None,
            vswitch_id: Optional[str] = None) -> Group
    func GetGroup(ctx *Context, name string, id IDInput, state *GroupState, opts ...ResourceOption) (*Group, error)
    public static Group Get(string name, Input<string> id, GroupState? state, CustomResourceOptions? opts = null)
    public static Group get(String name, Output<String> id, GroupState state, CustomResourceOptions options)
    resources:  _:    type: alicloud:cloudphoneinstance:Group    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Amount int
    The number of instance groups. The default value is 1 and the maximum value is 100.
    AutoPay bool
    Whether to pay automatically. The default is false.
    AutoRenew bool
    Whether to enable automatic renewal. The default is false.
    ChargeType string
    The billing type.
    GpuAcceleration bool
    Whether to enable GPU acceleration. The default value is false.

    • true: On.
    • false: closed.
    ImageId string
    The image ID.
    InstanceGroupName string

    The instance group name

    NOTE: >

    NOTE: - The instance group name must be no more than 30 characters in length. Start with an uppercase/lowercase letter or Chinese. It cannot start with http:// or https://. Only Chinese, English, numbers, half-width colons (:), underscores (_), periods (.), or hyphens (-) are supported.

    InstanceGroupSpec string
    Instance group specifications.
    NumberOfInstances int
    The number of instances in the instance group. The maximum value is 100.
    OfficeSiteId string
    The network ID.

    • Create a shared network instance: Network ID is optional. Enter the network ID whose type is Shared Network on the cloud mobile phone console> Network page. If the console does not have a shared network, you can fill it in. A shared network is automatically created when the instance group is created.
    • Create a VPC instance: the network ID is required. Enter the network ID of VPC on the cloud mobile phone console> Network page. If the console does not have a VPC network, you need to create a network first.
    Period int
    The duration of the resource purchase. The unit is specified by PeriodUnit.
    PeriodUnit string
    The unit of time for purchasing resources.
    PolicyGroupId string
    The policy ID. You can query the list of policies by calling ListPolicyGroups.
    Status string
    Instance group status
    VswitchId string
    The vSwitch ID.
    Amount int
    The number of instance groups. The default value is 1 and the maximum value is 100.
    AutoPay bool
    Whether to pay automatically. The default is false.
    AutoRenew bool
    Whether to enable automatic renewal. The default is false.
    ChargeType string
    The billing type.
    GpuAcceleration bool
    Whether to enable GPU acceleration. The default value is false.

    • true: On.
    • false: closed.
    ImageId string
    The image ID.
    InstanceGroupName string

    The instance group name

    NOTE: >

    NOTE: - The instance group name must be no more than 30 characters in length. Start with an uppercase/lowercase letter or Chinese. It cannot start with http:// or https://. Only Chinese, English, numbers, half-width colons (:), underscores (_), periods (.), or hyphens (-) are supported.

    InstanceGroupSpec string
    Instance group specifications.
    NumberOfInstances int
    The number of instances in the instance group. The maximum value is 100.
    OfficeSiteId string
    The network ID.

    • Create a shared network instance: Network ID is optional. Enter the network ID whose type is Shared Network on the cloud mobile phone console> Network page. If the console does not have a shared network, you can fill it in. A shared network is automatically created when the instance group is created.
    • Create a VPC instance: the network ID is required. Enter the network ID of VPC on the cloud mobile phone console> Network page. If the console does not have a VPC network, you need to create a network first.
    Period int
    The duration of the resource purchase. The unit is specified by PeriodUnit.
    PeriodUnit string
    The unit of time for purchasing resources.
    PolicyGroupId string
    The policy ID. You can query the list of policies by calling ListPolicyGroups.
    Status string
    Instance group status
    VswitchId string
    The vSwitch ID.
    amount Integer
    The number of instance groups. The default value is 1 and the maximum value is 100.
    autoPay Boolean
    Whether to pay automatically. The default is false.
    autoRenew Boolean
    Whether to enable automatic renewal. The default is false.
    chargeType String
    The billing type.
    gpuAcceleration Boolean
    Whether to enable GPU acceleration. The default value is false.

    • true: On.
    • false: closed.
    imageId String
    The image ID.
    instanceGroupName String

    The instance group name

    NOTE: >

    NOTE: - The instance group name must be no more than 30 characters in length. Start with an uppercase/lowercase letter or Chinese. It cannot start with http:// or https://. Only Chinese, English, numbers, half-width colons (:), underscores (_), periods (.), or hyphens (-) are supported.

    instanceGroupSpec String
    Instance group specifications.
    numberOfInstances Integer
    The number of instances in the instance group. The maximum value is 100.
    officeSiteId String
    The network ID.

    • Create a shared network instance: Network ID is optional. Enter the network ID whose type is Shared Network on the cloud mobile phone console> Network page. If the console does not have a shared network, you can fill it in. A shared network is automatically created when the instance group is created.
    • Create a VPC instance: the network ID is required. Enter the network ID of VPC on the cloud mobile phone console> Network page. If the console does not have a VPC network, you need to create a network first.
    period Integer
    The duration of the resource purchase. The unit is specified by PeriodUnit.
    periodUnit String
    The unit of time for purchasing resources.
    policyGroupId String
    The policy ID. You can query the list of policies by calling ListPolicyGroups.
    status String
    Instance group status
    vswitchId String
    The vSwitch ID.
    amount number
    The number of instance groups. The default value is 1 and the maximum value is 100.
    autoPay boolean
    Whether to pay automatically. The default is false.
    autoRenew boolean
    Whether to enable automatic renewal. The default is false.
    chargeType string
    The billing type.
    gpuAcceleration boolean
    Whether to enable GPU acceleration. The default value is false.

    • true: On.
    • false: closed.
    imageId string
    The image ID.
    instanceGroupName string

    The instance group name

    NOTE: >

    NOTE: - The instance group name must be no more than 30 characters in length. Start with an uppercase/lowercase letter or Chinese. It cannot start with http:// or https://. Only Chinese, English, numbers, half-width colons (:), underscores (_), periods (.), or hyphens (-) are supported.

    instanceGroupSpec string
    Instance group specifications.
    numberOfInstances number
    The number of instances in the instance group. The maximum value is 100.
    officeSiteId string
    The network ID.

    • Create a shared network instance: Network ID is optional. Enter the network ID whose type is Shared Network on the cloud mobile phone console> Network page. If the console does not have a shared network, you can fill it in. A shared network is automatically created when the instance group is created.
    • Create a VPC instance: the network ID is required. Enter the network ID of VPC on the cloud mobile phone console> Network page. If the console does not have a VPC network, you need to create a network first.
    period number
    The duration of the resource purchase. The unit is specified by PeriodUnit.
    periodUnit string
    The unit of time for purchasing resources.
    policyGroupId string
    The policy ID. You can query the list of policies by calling ListPolicyGroups.
    status string
    Instance group status
    vswitchId string
    The vSwitch ID.
    amount int
    The number of instance groups. The default value is 1 and the maximum value is 100.
    auto_pay bool
    Whether to pay automatically. The default is false.
    auto_renew bool
    Whether to enable automatic renewal. The default is false.
    charge_type str
    The billing type.
    gpu_acceleration bool
    Whether to enable GPU acceleration. The default value is false.

    • true: On.
    • false: closed.
    image_id str
    The image ID.
    instance_group_name str

    The instance group name

    NOTE: >

    NOTE: - The instance group name must be no more than 30 characters in length. Start with an uppercase/lowercase letter or Chinese. It cannot start with http:// or https://. Only Chinese, English, numbers, half-width colons (:), underscores (_), periods (.), or hyphens (-) are supported.

    instance_group_spec str
    Instance group specifications.
    number_of_instances int
    The number of instances in the instance group. The maximum value is 100.
    office_site_id str
    The network ID.

    • Create a shared network instance: Network ID is optional. Enter the network ID whose type is Shared Network on the cloud mobile phone console> Network page. If the console does not have a shared network, you can fill it in. A shared network is automatically created when the instance group is created.
    • Create a VPC instance: the network ID is required. Enter the network ID of VPC on the cloud mobile phone console> Network page. If the console does not have a VPC network, you need to create a network first.
    period int
    The duration of the resource purchase. The unit is specified by PeriodUnit.
    period_unit str
    The unit of time for purchasing resources.
    policy_group_id str
    The policy ID. You can query the list of policies by calling ListPolicyGroups.
    status str
    Instance group status
    vswitch_id str
    The vSwitch ID.
    amount Number
    The number of instance groups. The default value is 1 and the maximum value is 100.
    autoPay Boolean
    Whether to pay automatically. The default is false.
    autoRenew Boolean
    Whether to enable automatic renewal. The default is false.
    chargeType String
    The billing type.
    gpuAcceleration Boolean
    Whether to enable GPU acceleration. The default value is false.

    • true: On.
    • false: closed.
    imageId String
    The image ID.
    instanceGroupName String

    The instance group name

    NOTE: >

    NOTE: - The instance group name must be no more than 30 characters in length. Start with an uppercase/lowercase letter or Chinese. It cannot start with http:// or https://. Only Chinese, English, numbers, half-width colons (:), underscores (_), periods (.), or hyphens (-) are supported.

    instanceGroupSpec String
    Instance group specifications.
    numberOfInstances Number
    The number of instances in the instance group. The maximum value is 100.
    officeSiteId String
    The network ID.

    • Create a shared network instance: Network ID is optional. Enter the network ID whose type is Shared Network on the cloud mobile phone console> Network page. If the console does not have a shared network, you can fill it in. A shared network is automatically created when the instance group is created.
    • Create a VPC instance: the network ID is required. Enter the network ID of VPC on the cloud mobile phone console> Network page. If the console does not have a VPC network, you need to create a network first.
    period Number
    The duration of the resource purchase. The unit is specified by PeriodUnit.
    periodUnit String
    The unit of time for purchasing resources.
    policyGroupId String
    The policy ID. You can query the list of policies by calling ListPolicyGroups.
    status String
    Instance group status
    vswitchId String
    The vSwitch ID.

    Import

    Cloud Phone Instance Group can be imported using the id, e.g.

    $ pulumi import alicloud:cloudphoneinstance/group:Group example <id>
    

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

    Package Details

    Repository
    Alibaba Cloud pulumi/pulumi-alicloud
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the alicloud Terraform Provider.
    alicloud logo
    Alibaba Cloud v3.75.0 published on Friday, Mar 7, 2025 by Pulumi