alicloud.cloudphoneinstance.Group
Explore with Pulumi AI
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)
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:
- Image
Id string - The image ID.
- Instance
Group stringSpec - 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 string - The billing type.
- Gpu
Acceleration bool - Whether to enable GPU acceleration. The default value is false.
- true: On.
- false: closed.
- Instance
Group stringName 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 intInstances - The number of instances in the instance group. The maximum value is 100.
- Office
Site stringId - 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 string - The unit of time for purchasing resources.
- Policy
Group stringId - The policy ID. You can query the list of policies by calling ListPolicyGroups.
- Vswitch
Id string - The vSwitch ID.
- Image
Id string - The image ID.
- Instance
Group stringSpec - 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 string - The billing type.
- Gpu
Acceleration bool - Whether to enable GPU acceleration. The default value is false.
- true: On.
- false: closed.
- Instance
Group stringName 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 intInstances - The number of instances in the instance group. The maximum value is 100.
- Office
Site stringId - 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 string - The unit of time for purchasing resources.
- Policy
Group stringId - The policy ID. You can query the list of policies by calling ListPolicyGroups.
- Vswitch
Id string - The vSwitch ID.
- image
Id String - The image ID.
- instance
Group StringSpec - Instance group specifications.
- amount Integer
- The number of instance groups. The default value is 1 and the maximum value is 100.
- auto
Pay Boolean - Whether to pay automatically. The default is false.
- auto
Renew Boolean - Whether to enable automatic renewal. The default is false.
- charge
Type String - The billing type.
- gpu
Acceleration Boolean - Whether to enable GPU acceleration. The default value is false.
- true: On.
- false: closed.
- instance
Group StringName 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 IntegerInstances - The number of instances in the instance group. The maximum value is 100.
- office
Site StringId - 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.
- period
Unit String - The unit of time for purchasing resources.
- policy
Group StringId - The policy ID. You can query the list of policies by calling ListPolicyGroups.
- vswitch
Id String - The vSwitch ID.
- image
Id string - The image ID.
- instance
Group stringSpec - Instance group specifications.
- amount number
- The number of instance groups. The default value is 1 and the maximum value is 100.
- auto
Pay boolean - Whether to pay automatically. The default is false.
- auto
Renew boolean - Whether to enable automatic renewal. The default is false.
- charge
Type string - The billing type.
- gpu
Acceleration boolean - Whether to enable GPU acceleration. The default value is false.
- true: On.
- false: closed.
- instance
Group stringName 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 numberInstances - The number of instances in the instance group. The maximum value is 100.
- office
Site stringId - 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.
- period
Unit string - The unit of time for purchasing resources.
- policy
Group stringId - The policy ID. You can query the list of policies by calling ListPolicyGroups.
- vswitch
Id string - The vSwitch ID.
- image_
id str - The image ID.
- instance_
group_ strspec - 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_ strname 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_ intinstances - The number of instances in the instance group. The maximum value is 100.
- office_
site_ strid - 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_ strid - The policy ID. You can query the list of policies by calling ListPolicyGroups.
- vswitch_
id str - The vSwitch ID.
- image
Id String - The image ID.
- instance
Group StringSpec - Instance group specifications.
- amount Number
- The number of instance groups. The default value is 1 and the maximum value is 100.
- auto
Pay Boolean - Whether to pay automatically. The default is false.
- auto
Renew Boolean - Whether to enable automatic renewal. The default is false.
- charge
Type String - The billing type.
- gpu
Acceleration Boolean - Whether to enable GPU acceleration. The default value is false.
- true: On.
- false: closed.
- instance
Group StringName 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 NumberInstances - The number of instances in the instance group. The maximum value is 100.
- office
Site StringId - 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.
- period
Unit String - The unit of time for purchasing resources.
- policy
Group StringId - The policy ID. You can query the list of policies by calling ListPolicyGroups.
- vswitch
Id String - The vSwitch ID.
Outputs
All input properties are implicitly available as output properties. Additionally, the Group resource produces the following output properties:
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.
- 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 string - The billing type.
- Gpu
Acceleration bool - Whether to enable GPU acceleration. The default value is false.
- true: On.
- false: closed.
- Image
Id string - The image ID.
- Instance
Group stringName 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 stringSpec - Instance group specifications.
- Number
Of intInstances - The number of instances in the instance group. The maximum value is 100.
- Office
Site stringId - 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 string - The unit of time for purchasing resources.
- Policy
Group stringId - The policy ID. You can query the list of policies by calling ListPolicyGroups.
- Status string
- Instance group status
- Vswitch
Id 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 string - The billing type.
- Gpu
Acceleration bool - Whether to enable GPU acceleration. The default value is false.
- true: On.
- false: closed.
- Image
Id string - The image ID.
- Instance
Group stringName 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 stringSpec - Instance group specifications.
- Number
Of intInstances - The number of instances in the instance group. The maximum value is 100.
- Office
Site stringId - 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 string - The unit of time for purchasing resources.
- Policy
Group stringId - The policy ID. You can query the list of policies by calling ListPolicyGroups.
- Status string
- Instance group status
- Vswitch
Id string - The vSwitch ID.
- amount Integer
- The number of instance groups. The default value is 1 and the maximum value is 100.
- auto
Pay Boolean - Whether to pay automatically. The default is false.
- auto
Renew Boolean - Whether to enable automatic renewal. The default is false.
- charge
Type String - The billing type.
- gpu
Acceleration Boolean - Whether to enable GPU acceleration. The default value is false.
- true: On.
- false: closed.
- image
Id String - The image ID.
- instance
Group StringName 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 StringSpec - Instance group specifications.
- number
Of IntegerInstances - The number of instances in the instance group. The maximum value is 100.
- office
Site StringId - 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.
- period
Unit String - The unit of time for purchasing resources.
- policy
Group StringId - The policy ID. You can query the list of policies by calling ListPolicyGroups.
- status String
- Instance group status
- vswitch
Id String - The vSwitch ID.
- amount number
- The number of instance groups. The default value is 1 and the maximum value is 100.
- auto
Pay boolean - Whether to pay automatically. The default is false.
- auto
Renew boolean - Whether to enable automatic renewal. The default is false.
- charge
Type string - The billing type.
- gpu
Acceleration boolean - Whether to enable GPU acceleration. The default value is false.
- true: On.
- false: closed.
- image
Id string - The image ID.
- instance
Group stringName 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 stringSpec - Instance group specifications.
- number
Of numberInstances - The number of instances in the instance group. The maximum value is 100.
- office
Site stringId - 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.
- period
Unit string - The unit of time for purchasing resources.
- policy
Group stringId - The policy ID. You can query the list of policies by calling ListPolicyGroups.
- status string
- Instance group status
- vswitch
Id 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_ strname 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_ strspec - Instance group specifications.
- number_
of_ intinstances - The number of instances in the instance group. The maximum value is 100.
- office_
site_ strid - 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_ strid - 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.
- auto
Pay Boolean - Whether to pay automatically. The default is false.
- auto
Renew Boolean - Whether to enable automatic renewal. The default is false.
- charge
Type String - The billing type.
- gpu
Acceleration Boolean - Whether to enable GPU acceleration. The default value is false.
- true: On.
- false: closed.
- image
Id String - The image ID.
- instance
Group StringName 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 StringSpec - Instance group specifications.
- number
Of NumberInstances - The number of instances in the instance group. The maximum value is 100.
- office
Site StringId - 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.
- period
Unit String - The unit of time for purchasing resources.
- policy
Group StringId - The policy ID. You can query the list of policies by calling ListPolicyGroups.
- status String
- Instance group status
- vswitch
Id 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.