1. Packages
  2. Azure Native v1
  3. API Docs
  4. azuresphere
  5. DeviceGroup
These are the docs for Azure Native v1. We recommenend using the latest version, Azure Native v2.
Azure Native v1 v1.104.0 published on Thursday, Jul 6, 2023 by Pulumi

azure-native.azuresphere.DeviceGroup

Explore with Pulumi AI

azure-native-v1 logo
These are the docs for Azure Native v1. We recommenend using the latest version, Azure Native v2.
Azure Native v1 v1.104.0 published on Thursday, Jul 6, 2023 by Pulumi

    An device group resource belonging to a product resource. API Version: 2022-09-01-preview.

    Example Usage

    DeviceGroups_CreateOrUpdate

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var deviceGroup = new AzureNative.AzureSphere.DeviceGroup("deviceGroup", new()
        {
            CatalogName = "MyCatalog1",
            Description = "Description for MyDeviceGroup1",
            DeviceGroupName = "MyDeviceGroup1",
            OsFeedType = "Retail",
            ProductName = "MyProduct1",
            ResourceGroupName = "MyResourceGroup1",
            UpdatePolicy = "UpdateAll",
        });
    
    });
    
    package main
    
    import (
    	azuresphere "github.com/pulumi/pulumi-azure-native-sdk/azuresphere"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := azuresphere.NewDeviceGroup(ctx, "deviceGroup", &azuresphere.DeviceGroupArgs{
    			CatalogName:       pulumi.String("MyCatalog1"),
    			Description:       pulumi.String("Description for MyDeviceGroup1"),
    			DeviceGroupName:   pulumi.String("MyDeviceGroup1"),
    			OsFeedType:        pulumi.String("Retail"),
    			ProductName:       pulumi.String("MyProduct1"),
    			ResourceGroupName: pulumi.String("MyResourceGroup1"),
    			UpdatePolicy:      pulumi.String("UpdateAll"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azurenative.azuresphere.DeviceGroup;
    import com.pulumi.azurenative.azuresphere.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 deviceGroup = new DeviceGroup("deviceGroup", DeviceGroupArgs.builder()        
                .catalogName("MyCatalog1")
                .description("Description for MyDeviceGroup1")
                .deviceGroupName("MyDeviceGroup1")
                .osFeedType("Retail")
                .productName("MyProduct1")
                .resourceGroupName("MyResourceGroup1")
                .updatePolicy("UpdateAll")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    device_group = azure_native.azuresphere.DeviceGroup("deviceGroup",
        catalog_name="MyCatalog1",
        description="Description for MyDeviceGroup1",
        device_group_name="MyDeviceGroup1",
        os_feed_type="Retail",
        product_name="MyProduct1",
        resource_group_name="MyResourceGroup1",
        update_policy="UpdateAll")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const deviceGroup = new azure_native.azuresphere.DeviceGroup("deviceGroup", {
        catalogName: "MyCatalog1",
        description: "Description for MyDeviceGroup1",
        deviceGroupName: "MyDeviceGroup1",
        osFeedType: "Retail",
        productName: "MyProduct1",
        resourceGroupName: "MyResourceGroup1",
        updatePolicy: "UpdateAll",
    });
    
    resources:
      deviceGroup:
        type: azure-native:azuresphere:DeviceGroup
        properties:
          catalogName: MyCatalog1
          description: Description for MyDeviceGroup1
          deviceGroupName: MyDeviceGroup1
          osFeedType: Retail
          productName: MyProduct1
          resourceGroupName: MyResourceGroup1
          updatePolicy: UpdateAll
    

    Create DeviceGroup Resource

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

    Constructor syntax

    new DeviceGroup(name: string, args: DeviceGroupArgs, opts?: CustomResourceOptions);
    @overload
    def DeviceGroup(resource_name: str,
                    args: DeviceGroupArgs,
                    opts: Optional[ResourceOptions] = None)
    
    @overload
    def DeviceGroup(resource_name: str,
                    opts: Optional[ResourceOptions] = None,
                    catalog_name: Optional[str] = None,
                    product_name: Optional[str] = None,
                    resource_group_name: Optional[str] = None,
                    allow_crash_dumps_collection: Optional[Union[str, AllowCrashDumpCollection]] = None,
                    description: Optional[str] = None,
                    device_group_name: Optional[str] = None,
                    os_feed_type: Optional[Union[str, OSFeedType]] = None,
                    regional_data_boundary: Optional[Union[str, RegionalDataBoundary]] = None,
                    update_policy: Optional[Union[str, UpdatePolicy]] = 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: azure-native:azuresphere:DeviceGroup
    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 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.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var deviceGroupResource = new AzureNative.Azuresphere.DeviceGroup("deviceGroupResource", new()
    {
        CatalogName = "string",
        ProductName = "string",
        ResourceGroupName = "string",
        AllowCrashDumpsCollection = "string",
        Description = "string",
        DeviceGroupName = "string",
        OsFeedType = "string",
        RegionalDataBoundary = "string",
        UpdatePolicy = "string",
    });
    
    example, err := azuresphere.NewDeviceGroup(ctx, "deviceGroupResource", &azuresphere.DeviceGroupArgs{
    	CatalogName:               "string",
    	ProductName:               "string",
    	ResourceGroupName:         "string",
    	AllowCrashDumpsCollection: "string",
    	Description:               "string",
    	DeviceGroupName:           "string",
    	OsFeedType:                "string",
    	RegionalDataBoundary:      "string",
    	UpdatePolicy:              "string",
    })
    
    var deviceGroupResource = new DeviceGroup("deviceGroupResource", DeviceGroupArgs.builder()
        .catalogName("string")
        .productName("string")
        .resourceGroupName("string")
        .allowCrashDumpsCollection("string")
        .description("string")
        .deviceGroupName("string")
        .osFeedType("string")
        .regionalDataBoundary("string")
        .updatePolicy("string")
        .build());
    
    device_group_resource = azure_native.azuresphere.DeviceGroup("deviceGroupResource",
        catalog_name=string,
        product_name=string,
        resource_group_name=string,
        allow_crash_dumps_collection=string,
        description=string,
        device_group_name=string,
        os_feed_type=string,
        regional_data_boundary=string,
        update_policy=string)
    
    const deviceGroupResource = new azure_native.azuresphere.DeviceGroup("deviceGroupResource", {
        catalogName: "string",
        productName: "string",
        resourceGroupName: "string",
        allowCrashDumpsCollection: "string",
        description: "string",
        deviceGroupName: "string",
        osFeedType: "string",
        regionalDataBoundary: "string",
        updatePolicy: "string",
    });
    
    type: azure-native:azuresphere:DeviceGroup
    properties:
        allowCrashDumpsCollection: string
        catalogName: string
        description: string
        deviceGroupName: string
        osFeedType: string
        productName: string
        regionalDataBoundary: string
        resourceGroupName: string
        updatePolicy: string
    

    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:

    CatalogName string
    Name of catalog
    ProductName string
    Name of product.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    AllowCrashDumpsCollection string | Pulumi.AzureNative.AzureSphere.AllowCrashDumpCollection
    Flag to define if the user allows for crash dump collection.
    Description string
    Description of the device group.
    DeviceGroupName string
    Name of device group.
    OsFeedType string | Pulumi.AzureNative.AzureSphere.OSFeedType
    Operating system feed type of the device group.
    RegionalDataBoundary string | Pulumi.AzureNative.AzureSphere.RegionalDataBoundary
    Regional data boundary for the device group.
    UpdatePolicy string | Pulumi.AzureNative.AzureSphere.UpdatePolicy
    Update policy of the device group.
    CatalogName string
    Name of catalog
    ProductName string
    Name of product.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    AllowCrashDumpsCollection string | AllowCrashDumpCollection
    Flag to define if the user allows for crash dump collection.
    Description string
    Description of the device group.
    DeviceGroupName string
    Name of device group.
    OsFeedType string | OSFeedType
    Operating system feed type of the device group.
    RegionalDataBoundary string | RegionalDataBoundary
    Regional data boundary for the device group.
    UpdatePolicy string | UpdatePolicy
    Update policy of the device group.
    catalogName String
    Name of catalog
    productName String
    Name of product.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    allowCrashDumpsCollection String | AllowCrashDumpCollection
    Flag to define if the user allows for crash dump collection.
    description String
    Description of the device group.
    deviceGroupName String
    Name of device group.
    osFeedType String | OSFeedType
    Operating system feed type of the device group.
    regionalDataBoundary String | RegionalDataBoundary
    Regional data boundary for the device group.
    updatePolicy String | UpdatePolicy
    Update policy of the device group.
    catalogName string
    Name of catalog
    productName string
    Name of product.
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    allowCrashDumpsCollection string | AllowCrashDumpCollection
    Flag to define if the user allows for crash dump collection.
    description string
    Description of the device group.
    deviceGroupName string
    Name of device group.
    osFeedType string | OSFeedType
    Operating system feed type of the device group.
    regionalDataBoundary string | RegionalDataBoundary
    Regional data boundary for the device group.
    updatePolicy string | UpdatePolicy
    Update policy of the device group.
    catalog_name str
    Name of catalog
    product_name str
    Name of product.
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    allow_crash_dumps_collection str | AllowCrashDumpCollection
    Flag to define if the user allows for crash dump collection.
    description str
    Description of the device group.
    device_group_name str
    Name of device group.
    os_feed_type str | OSFeedType
    Operating system feed type of the device group.
    regional_data_boundary str | RegionalDataBoundary
    Regional data boundary for the device group.
    update_policy str | UpdatePolicy
    Update policy of the device group.
    catalogName String
    Name of catalog
    productName String
    Name of product.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    allowCrashDumpsCollection String | "Enabled" | "Disabled"
    Flag to define if the user allows for crash dump collection.
    description String
    Description of the device group.
    deviceGroupName String
    Name of device group.
    osFeedType String | "Retail" | "RetailEval"
    Operating system feed type of the device group.
    regionalDataBoundary String | "None" | "EU"
    Regional data boundary for the device group.
    updatePolicy String | "UpdateAll" | "No3rdPartyAppUpdates"
    Update policy of the device group.

    Outputs

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

    HasDeployment bool
    Deployment status for the device group.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    ProvisioningState string
    The status of the last operation.
    SystemData Pulumi.AzureNative.AzureSphere.Outputs.SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    HasDeployment bool
    Deployment status for the device group.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    ProvisioningState string
    The status of the last operation.
    SystemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    hasDeployment Boolean
    Deployment status for the device group.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    provisioningState String
    The status of the last operation.
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    hasDeployment boolean
    Deployment status for the device group.
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The name of the resource
    provisioningState string
    The status of the last operation.
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    has_deployment bool
    Deployment status for the device group.
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    The name of the resource
    provisioning_state str
    The status of the last operation.
    system_data SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type str
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    hasDeployment Boolean
    Deployment status for the device group.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    provisioningState String
    The status of the last operation.
    systemData Property Map
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

    Supporting Types

    AllowCrashDumpCollection, AllowCrashDumpCollectionArgs

    Enabled
    Enabled
    Disabled
    Disabled
    AllowCrashDumpCollectionEnabled
    Enabled
    AllowCrashDumpCollectionDisabled
    Disabled
    Enabled
    Enabled
    Disabled
    Disabled
    Enabled
    Enabled
    Disabled
    Disabled
    ENABLED
    Enabled
    DISABLED
    Disabled
    "Enabled"
    Enabled
    "Disabled"
    Disabled

    OSFeedType, OSFeedTypeArgs

    Retail
    Retail
    RetailEval
    RetailEval
    OSFeedTypeRetail
    Retail
    OSFeedTypeRetailEval
    RetailEval
    Retail
    Retail
    RetailEval
    RetailEval
    Retail
    Retail
    RetailEval
    RetailEval
    RETAIL
    Retail
    RETAIL_EVAL
    RetailEval
    "Retail"
    Retail
    "RetailEval"
    RetailEval

    RegionalDataBoundary, RegionalDataBoundaryArgs

    None
    None
    EU
    EU
    RegionalDataBoundaryNone
    None
    RegionalDataBoundaryEU
    EU
    None
    None
    EU
    EU
    None
    None
    EU
    EU
    NONE
    None
    EU
    EU
    "None"
    None
    "EU"
    EU

    SystemDataResponse, SystemDataResponseArgs

    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    The type of identity that last modified the resource.
    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.
    createdAt string
    The timestamp of resource creation (UTC).
    createdBy string
    The identity that created the resource.
    createdByType string
    The type of identity that created the resource.
    lastModifiedAt string
    The timestamp of resource last modification (UTC)
    lastModifiedBy string
    The identity that last modified the resource.
    lastModifiedByType string
    The type of identity that last modified the resource.
    created_at str
    The timestamp of resource creation (UTC).
    created_by str
    The identity that created the resource.
    created_by_type str
    The type of identity that created the resource.
    last_modified_at str
    The timestamp of resource last modification (UTC)
    last_modified_by str
    The identity that last modified the resource.
    last_modified_by_type str
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.

    UpdatePolicy, UpdatePolicyArgs

    UpdateAll
    UpdateAll
    No3rdPartyAppUpdates
    No3rdPartyAppUpdates
    UpdatePolicyUpdateAll
    UpdateAll
    UpdatePolicyNo3rdPartyAppUpdates
    No3rdPartyAppUpdates
    UpdateAll
    UpdateAll
    No3rdPartyAppUpdates
    No3rdPartyAppUpdates
    UpdateAll
    UpdateAll
    No3rdPartyAppUpdates
    No3rdPartyAppUpdates
    UPDATE_ALL
    UpdateAll
    NO3RD_PARTY_APP_UPDATES
    No3rdPartyAppUpdates
    "UpdateAll"
    UpdateAll
    "No3rdPartyAppUpdates"
    No3rdPartyAppUpdates

    Import

    An existing resource can be imported using its type token, name, and identifier, e.g.

    $ pulumi import azure-native:azuresphere:DeviceGroup MyDeviceId1 /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyResourceGroup1/providers/Microsoft.AzureSphere/catalogs/MyCatalog1/products/myProduct1/deviceGroups/myDeviceGroup1 
    

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

    Package Details

    Repository
    azure-native-v1 pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native-v1 logo
    These are the docs for Azure Native v1. We recommenend using the latest version, Azure Native v2.
    Azure Native v1 v1.104.0 published on Thursday, Jul 6, 2023 by Pulumi