1. Packages
  2. Azure Native
  3. API Docs
  4. operationalinsights
  5. MachineGroup
Azure Native v1.103.0 published on Friday, Jun 2, 2023 by Pulumi

azure-native.operationalinsights.MachineGroup

Explore with Pulumi AI

azure-native logo
Azure Native v1.103.0 published on Friday, Jun 2, 2023 by Pulumi

    A user-defined logical grouping of machines. API Version: 2015-11-01-preview.

    Example Usage

    SMMachineGroupsUpdatePut

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var machineGroup = new AzureNative.OperationalInsights.MachineGroup("machineGroup", new()
        {
            Count = 1,
            DisplayName = "Foo",
            Kind = "machineGroup",
            MachineGroupName = "ccfbf4bf-dc08-4371-9e9b-00a8d875d45a",
            Machines = new[]
            {
                
                {
                    { "id", "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-0fe4b501-7ac9-41d7-a4e1-1591a0789519" },
                    { "kind", "ref:machinewithhints" },
                },
            },
            ResourceGroupName = "rg-sm",
            WorkspaceName = "D6F79F14-E563-469B-84B5-9286D2803B2F",
        });
    
    });
    
    package main
    
    import (
    	operationalinsights "github.com/pulumi/pulumi-azure-native-sdk/operationalinsights"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := operationalinsights.NewMachineGroup(ctx, "machineGroup", &operationalinsights.MachineGroupArgs{
    			Count:            pulumi.Int(1),
    			DisplayName:      pulumi.String("Foo"),
    			Kind:             pulumi.String("machineGroup"),
    			MachineGroupName: pulumi.String("ccfbf4bf-dc08-4371-9e9b-00a8d875d45a"),
    			Machines: []operationalinsights.MachineReferenceWithHintsArgs{
    				{
    					Id:   pulumi.String("/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-0fe4b501-7ac9-41d7-a4e1-1591a0789519"),
    					Kind: pulumi.String("ref:machinewithhints"),
    				},
    			},
    			ResourceGroupName: pulumi.String("rg-sm"),
    			WorkspaceName:     pulumi.String("D6F79F14-E563-469B-84B5-9286D2803B2F"),
    		})
    		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.operationalinsights.MachineGroup;
    import com.pulumi.azurenative.operationalinsights.MachineGroupArgs;
    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 machineGroup = new MachineGroup("machineGroup", MachineGroupArgs.builder()        
                .count(1)
                .displayName("Foo")
                .kind("machineGroup")
                .machineGroupName("ccfbf4bf-dc08-4371-9e9b-00a8d875d45a")
                .machines(Map.ofEntries(
                    Map.entry("id", "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-0fe4b501-7ac9-41d7-a4e1-1591a0789519"),
                    Map.entry("kind", "ref:machinewithhints")
                ))
                .resourceGroupName("rg-sm")
                .workspaceName("D6F79F14-E563-469B-84B5-9286D2803B2F")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    machine_group = azure_native.operationalinsights.MachineGroup("machineGroup",
        count=1,
        display_name="Foo",
        kind="machineGroup",
        machine_group_name="ccfbf4bf-dc08-4371-9e9b-00a8d875d45a",
        machines=[azure_native.operationalinsights.MachineReferenceWithHintsResponseArgs(
            id="/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-0fe4b501-7ac9-41d7-a4e1-1591a0789519",
            kind="ref:machinewithhints",
        )],
        resource_group_name="rg-sm",
        workspace_name="D6F79F14-E563-469B-84B5-9286D2803B2F")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const machineGroup = new azure_native.operationalinsights.MachineGroup("machineGroup", {
        count: 1,
        displayName: "Foo",
        kind: "machineGroup",
        machineGroupName: "ccfbf4bf-dc08-4371-9e9b-00a8d875d45a",
        machines: [{
            id: "/subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-0fe4b501-7ac9-41d7-a4e1-1591a0789519",
            kind: "ref:machinewithhints",
        }],
        resourceGroupName: "rg-sm",
        workspaceName: "D6F79F14-E563-469B-84B5-9286D2803B2F",
    });
    
    resources:
      machineGroup:
        type: azure-native:operationalinsights:MachineGroup
        properties:
          count: 1
          displayName: Foo
          kind: machineGroup
          machineGroupName: ccfbf4bf-dc08-4371-9e9b-00a8d875d45a
          machines:
            - id: /subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machines/m-0fe4b501-7ac9-41d7-a4e1-1591a0789519
              kind: ref:machinewithhints
          resourceGroupName: rg-sm
          workspaceName: D6F79F14-E563-469B-84B5-9286D2803B2F
    

    Create MachineGroup Resource

    new MachineGroup(name: string, args: MachineGroupArgs, opts?: CustomResourceOptions);
    @overload
    def MachineGroup(resource_name: str,
                     opts: Optional[ResourceOptions] = None,
                     count: Optional[int] = None,
                     display_name: Optional[str] = None,
                     group_type: Optional[Union[str, MachineGroupType]] = None,
                     machine_group_name: Optional[str] = None,
                     machines: Optional[Sequence[MachineReferenceWithHintsArgs]] = None,
                     resource_group_name: Optional[str] = None,
                     workspace_name: Optional[str] = None)
    @overload
    def MachineGroup(resource_name: str,
                     args: MachineGroupArgs,
                     opts: Optional[ResourceOptions] = None)
    func NewMachineGroup(ctx *Context, name string, args MachineGroupArgs, opts ...ResourceOption) (*MachineGroup, error)
    public MachineGroup(string name, MachineGroupArgs args, CustomResourceOptions? opts = null)
    public MachineGroup(String name, MachineGroupArgs args)
    public MachineGroup(String name, MachineGroupArgs args, CustomResourceOptions options)
    
    type: azure-native:operationalinsights:MachineGroup
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args MachineGroupArgs
    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 MachineGroupArgs
    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 MachineGroupArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args MachineGroupArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args MachineGroupArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

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

    DisplayName string

    User defined name for the group

    ResourceGroupName string

    Resource group name within the specified subscriptionId.

    WorkspaceName string

    OMS workspace containing the resources of interest.

    Count int

    Count of machines in this group. The value of count may be bigger than the number of machines in case of the group has been truncated due to exceeding the max number of machines a group can handle.

    GroupType string | Pulumi.AzureNative.OperationalInsights.MachineGroupType

    Type of the machine group

    MachineGroupName string

    Machine Group resource name.

    Machines List<Pulumi.AzureNative.OperationalInsights.Inputs.MachineReferenceWithHintsArgs>

    References of the machines in this group. The hints within each reference do not represent the current value of the corresponding fields. They are a snapshot created during the last time the machine group was updated.

    DisplayName string

    User defined name for the group

    ResourceGroupName string

    Resource group name within the specified subscriptionId.

    WorkspaceName string

    OMS workspace containing the resources of interest.

    Count int

    Count of machines in this group. The value of count may be bigger than the number of machines in case of the group has been truncated due to exceeding the max number of machines a group can handle.

    GroupType string | MachineGroupType

    Type of the machine group

    MachineGroupName string

    Machine Group resource name.

    Machines []MachineReferenceWithHintsArgs

    References of the machines in this group. The hints within each reference do not represent the current value of the corresponding fields. They are a snapshot created during the last time the machine group was updated.

    displayName String

    User defined name for the group

    resourceGroupName String

    Resource group name within the specified subscriptionId.

    workspaceName String

    OMS workspace containing the resources of interest.

    count Integer

    Count of machines in this group. The value of count may be bigger than the number of machines in case of the group has been truncated due to exceeding the max number of machines a group can handle.

    groupType String | MachineGroupType

    Type of the machine group

    machineGroupName String

    Machine Group resource name.

    machines List<MachineReferenceWithHintsArgs>

    References of the machines in this group. The hints within each reference do not represent the current value of the corresponding fields. They are a snapshot created during the last time the machine group was updated.

    displayName string

    User defined name for the group

    resourceGroupName string

    Resource group name within the specified subscriptionId.

    workspaceName string

    OMS workspace containing the resources of interest.

    count number

    Count of machines in this group. The value of count may be bigger than the number of machines in case of the group has been truncated due to exceeding the max number of machines a group can handle.

    groupType string | MachineGroupType

    Type of the machine group

    machineGroupName string

    Machine Group resource name.

    machines MachineReferenceWithHintsArgs[]

    References of the machines in this group. The hints within each reference do not represent the current value of the corresponding fields. They are a snapshot created during the last time the machine group was updated.

    display_name str

    User defined name for the group

    resource_group_name str

    Resource group name within the specified subscriptionId.

    workspace_name str

    OMS workspace containing the resources of interest.

    count int

    Count of machines in this group. The value of count may be bigger than the number of machines in case of the group has been truncated due to exceeding the max number of machines a group can handle.

    group_type str | MachineGroupType

    Type of the machine group

    machine_group_name str

    Machine Group resource name.

    machines Sequence[MachineReferenceWithHintsArgs]

    References of the machines in this group. The hints within each reference do not represent the current value of the corresponding fields. They are a snapshot created during the last time the machine group was updated.

    displayName String

    User defined name for the group

    resourceGroupName String

    Resource group name within the specified subscriptionId.

    workspaceName String

    OMS workspace containing the resources of interest.

    count Number

    Count of machines in this group. The value of count may be bigger than the number of machines in case of the group has been truncated due to exceeding the max number of machines a group can handle.

    groupType String | "unknown" | "azure-cs" | "azure-sf" | "azure-vmss" | "user-static"

    Type of the machine group

    machineGroupName String

    Machine Group resource name.

    machines List<Property Map>

    References of the machines in this group. The hints within each reference do not represent the current value of the corresponding fields. They are a snapshot created during the last time the machine group was updated.

    Outputs

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

    Id string

    The provider-assigned unique ID for this managed resource.

    Name string

    Resource name.

    Type string

    Resource type.

    Etag string

    Resource ETAG.

    Id string

    The provider-assigned unique ID for this managed resource.

    Name string

    Resource name.

    Type string

    Resource type.

    Etag string

    Resource ETAG.

    id String

    The provider-assigned unique ID for this managed resource.

    name String

    Resource name.

    type String

    Resource type.

    etag String

    Resource ETAG.

    id string

    The provider-assigned unique ID for this managed resource.

    name string

    Resource name.

    type string

    Resource type.

    etag string

    Resource ETAG.

    id str

    The provider-assigned unique ID for this managed resource.

    name str

    Resource name.

    type str

    Resource type.

    etag str

    Resource ETAG.

    id String

    The provider-assigned unique ID for this managed resource.

    name String

    Resource name.

    type String

    Resource type.

    etag String

    Resource ETAG.

    Supporting Types

    MachineGroupType

    Unknown
    unknown
    Azure_cs
    azure-cs
    Azure_sf
    azure-sf
    Azure_vmss
    azure-vmss
    User_static
    user-static
    MachineGroupTypeUnknown
    unknown
    MachineGroupType_Azure_Cs
    azure-cs
    MachineGroupType_Azure_Sf
    azure-sf
    MachineGroupType_Azure_Vmss
    azure-vmss
    MachineGroupType_User_Static
    user-static
    Unknown
    unknown
    Azurecs
    azure-cs
    Azuresf
    azure-sf
    Azurevmss
    azure-vmss
    Userstatic
    user-static
    Unknown
    unknown
    Azure_cs
    azure-cs
    Azure_sf
    azure-sf
    Azure_vmss
    azure-vmss
    User_static
    user-static
    UNKNOWN
    unknown
    AZURE_CS
    azure-cs
    AZURE_SF
    azure-sf
    AZURE_VMSS
    azure-vmss
    USER_STATIC
    user-static
    "unknown"
    unknown
    "azure-cs"
    azure-cs
    "azure-sf"
    azure-sf
    "azure-vmss"
    azure-vmss
    "user-static"
    user-static

    MachineReferenceWithHints

    Id string

    Resource URI.

    Id string

    Resource URI.

    id String

    Resource URI.

    id string

    Resource URI.

    id str

    Resource URI.

    id String

    Resource URI.

    MachineReferenceWithHintsResponse

    DisplayNameHint string

    Last known display name.

    Id string

    Resource URI.

    Name string

    Resource name.

    OsFamilyHint string

    Last known operating system family.

    Type string

    Resource type qualifier.

    DisplayNameHint string

    Last known display name.

    Id string

    Resource URI.

    Name string

    Resource name.

    OsFamilyHint string

    Last known operating system family.

    Type string

    Resource type qualifier.

    displayNameHint String

    Last known display name.

    id String

    Resource URI.

    name String

    Resource name.

    osFamilyHint String

    Last known operating system family.

    type String

    Resource type qualifier.

    displayNameHint string

    Last known display name.

    id string

    Resource URI.

    name string

    Resource name.

    osFamilyHint string

    Last known operating system family.

    type string

    Resource type qualifier.

    display_name_hint str

    Last known display name.

    id str

    Resource URI.

    name str

    Resource name.

    os_family_hint str

    Last known operating system family.

    type str

    Resource type qualifier.

    displayNameHint String

    Last known display name.

    id String

    Resource URI.

    name String

    Resource name.

    osFamilyHint String

    Last known operating system family.

    type String

    Resource type qualifier.

    Import

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

    $ pulumi import azure-native:operationalinsights:MachineGroup ccfbf4bf-dc08-4371-9e9b-00a8d875d45a /subscriptions/63BE4E24-FDF0-4E9C-9342-6A5D5A359722/resourceGroups/rg-sm/providers/Microsoft.OperationalInsights/workspaces/D6F79F14-E563-469B-84B5-9286D2803B2F/machineGroups/ccfbf4bf-dc08-4371-9e9b-00a8d875d45a 
    

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    Azure Native v1.103.0 published on Friday, Jun 2, 2023 by Pulumi