1. Packages
  2. Alibaba Cloud
  3. API Docs
  4. iot
  5. DeviceGroup
Alibaba Cloud v3.43.1 published on Monday, Sep 11, 2023 by Pulumi

alicloud.iot.DeviceGroup

Explore with Pulumi AI

alicloud logo
Alibaba Cloud v3.43.1 published on Monday, Sep 11, 2023 by Pulumi

    Provides a Iot Device Group resource.

    For information about Iot Device Group and how to use it, see What is Device Group.

    NOTE: Available in v1.134.0+.

    Example Usage

    Basic Usage

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AliCloud = Pulumi.AliCloud;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new AliCloud.Iot.DeviceGroup("example", new()
        {
            GroupName = "example_value",
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/iot"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := iot.NewDeviceGroup(ctx, "example", &iot.DeviceGroupArgs{
    			GroupName: pulumi.String("example_value"),
    		})
    		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.alicloud.iot.DeviceGroup;
    import com.pulumi.alicloud.iot.DeviceGroupArgs;
    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 example = new DeviceGroup("example", DeviceGroupArgs.builder()        
                .groupName("example_value")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_alicloud as alicloud
    
    example = alicloud.iot.DeviceGroup("example", group_name="example_value")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as alicloud from "@pulumi/alicloud";
    
    const example = new alicloud.iot.DeviceGroup("example", {groupName: "example_value"});
    
    resources:
      example:
        type: alicloud:iot:DeviceGroup
        properties:
          groupName: example_value
    

    Create DeviceGroup Resource

    new DeviceGroup(name: string, args: DeviceGroupArgs, opts?: CustomResourceOptions);
    @overload
    def DeviceGroup(resource_name: str,
                    opts: Optional[ResourceOptions] = None,
                    group_desc: Optional[str] = None,
                    group_name: Optional[str] = None,
                    iot_instance_id: Optional[str] = None,
                    super_group_id: Optional[str] = None)
    @overload
    def DeviceGroup(resource_name: str,
                    args: DeviceGroupArgs,
                    opts: Optional[ResourceOptions] = None)
    func NewDeviceGroup(ctx *Context, name string, args DeviceGroupArgs, opts ...ResourceOption) (*DeviceGroup, error)
    public DeviceGroup(string name, DeviceGroupArgs args, CustomResourceOptions? opts = null)
    public DeviceGroup(String name, DeviceGroupArgs args)
    public DeviceGroup(String name, DeviceGroupArgs args, CustomResourceOptions options)
    
    type: alicloud:iot:DeviceGroup
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args DeviceGroupArgs
    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 DeviceGroupArgs
    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 DeviceGroupArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args DeviceGroupArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args DeviceGroupArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

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

    GroupName string

    The GroupName of the device group.

    GroupDesc string

    The GroupDesc of the device group.

    IotInstanceId string

    The id of the Iot Instance.

    SuperGroupId string

    The id of the SuperGroup.

    GroupName string

    The GroupName of the device group.

    GroupDesc string

    The GroupDesc of the device group.

    IotInstanceId string

    The id of the Iot Instance.

    SuperGroupId string

    The id of the SuperGroup.

    groupName String

    The GroupName of the device group.

    groupDesc String

    The GroupDesc of the device group.

    iotInstanceId String

    The id of the Iot Instance.

    superGroupId String

    The id of the SuperGroup.

    groupName string

    The GroupName of the device group.

    groupDesc string

    The GroupDesc of the device group.

    iotInstanceId string

    The id of the Iot Instance.

    superGroupId string

    The id of the SuperGroup.

    group_name str

    The GroupName of the device group.

    group_desc str

    The GroupDesc of the device group.

    iot_instance_id str

    The id of the Iot Instance.

    super_group_id str

    The id of the SuperGroup.

    groupName String

    The GroupName of the device group.

    groupDesc String

    The GroupDesc of the device group.

    iotInstanceId String

    The id of the Iot Instance.

    superGroupId String

    The id of the SuperGroup.

    Outputs

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

    Id string

    The provider-assigned unique ID for this managed resource.

    Id string

    The provider-assigned unique ID for this managed resource.

    id String

    The provider-assigned unique ID for this managed resource.

    id string

    The provider-assigned unique ID for this managed resource.

    id str

    The provider-assigned unique ID for this managed resource.

    id String

    The provider-assigned unique ID for this managed resource.

    Look up Existing DeviceGroup Resource

    Get an existing DeviceGroup 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?: DeviceGroupState, opts?: CustomResourceOptions): DeviceGroup
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            group_desc: Optional[str] = None,
            group_name: Optional[str] = None,
            iot_instance_id: Optional[str] = None,
            super_group_id: Optional[str] = None) -> DeviceGroup
    func GetDeviceGroup(ctx *Context, name string, id IDInput, state *DeviceGroupState, opts ...ResourceOption) (*DeviceGroup, error)
    public static DeviceGroup Get(string name, Input<string> id, DeviceGroupState? state, CustomResourceOptions? opts = null)
    public static DeviceGroup get(String name, Output<String> id, DeviceGroupState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    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:
    GroupDesc string

    The GroupDesc of the device group.

    GroupName string

    The GroupName of the device group.

    IotInstanceId string

    The id of the Iot Instance.

    SuperGroupId string

    The id of the SuperGroup.

    GroupDesc string

    The GroupDesc of the device group.

    GroupName string

    The GroupName of the device group.

    IotInstanceId string

    The id of the Iot Instance.

    SuperGroupId string

    The id of the SuperGroup.

    groupDesc String

    The GroupDesc of the device group.

    groupName String

    The GroupName of the device group.

    iotInstanceId String

    The id of the Iot Instance.

    superGroupId String

    The id of the SuperGroup.

    groupDesc string

    The GroupDesc of the device group.

    groupName string

    The GroupName of the device group.

    iotInstanceId string

    The id of the Iot Instance.

    superGroupId string

    The id of the SuperGroup.

    group_desc str

    The GroupDesc of the device group.

    group_name str

    The GroupName of the device group.

    iot_instance_id str

    The id of the Iot Instance.

    super_group_id str

    The id of the SuperGroup.

    groupDesc String

    The GroupDesc of the device group.

    groupName String

    The GroupName of the device group.

    iotInstanceId String

    The id of the Iot Instance.

    superGroupId String

    The id of the SuperGroup.

    Import

    Iot Device Group can be imported using the id, e.g.

     $ pulumi import alicloud:iot/deviceGroup:DeviceGroup example <id>
    

    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.43.1 published on Monday, Sep 11, 2023 by Pulumi