Strata Cloud Manager v0.1.4 published on Tuesday, Sep 24, 2024 by Pulumi
scm.DynamicUserGroup
Explore with Pulumi AI
Retrieves a config item.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as scm from "@pulumi/scm";
const example = new scm.DynamicUserGroup("example", {});
import pulumi
import pulumi_scm as scm
example = scm.DynamicUserGroup("example")
package main
import (
"github.com/pulumi/pulumi-scm/sdk/go/scm"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := scm.NewDynamicUserGroup(ctx, "example", nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Scm = Pulumi.Scm;
return await Deployment.RunAsync(() =>
{
var example = new Scm.DynamicUserGroup("example");
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.scm.DynamicUserGroup;
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 DynamicUserGroup("example");
}
}
resources:
example:
type: scm:DynamicUserGroup
Create DynamicUserGroup Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new DynamicUserGroup(name: string, args: DynamicUserGroupArgs, opts?: CustomResourceOptions);
@overload
def DynamicUserGroup(resource_name: str,
args: DynamicUserGroupArgs,
opts: Optional[ResourceOptions] = None)
@overload
def DynamicUserGroup(resource_name: str,
opts: Optional[ResourceOptions] = None,
filter: Optional[str] = None,
description: Optional[str] = None,
device: Optional[str] = None,
folder: Optional[str] = None,
name: Optional[str] = None,
snippet: Optional[str] = None,
tags: Optional[Sequence[str]] = None)
func NewDynamicUserGroup(ctx *Context, name string, args DynamicUserGroupArgs, opts ...ResourceOption) (*DynamicUserGroup, error)
public DynamicUserGroup(string name, DynamicUserGroupArgs args, CustomResourceOptions? opts = null)
public DynamicUserGroup(String name, DynamicUserGroupArgs args)
public DynamicUserGroup(String name, DynamicUserGroupArgs args, CustomResourceOptions options)
type: scm:DynamicUserGroup
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 DynamicUserGroupArgs
- 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 DynamicUserGroupArgs
- 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 DynamicUserGroupArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args DynamicUserGroupArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args DynamicUserGroupArgs
- 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 dynamicUserGroupResource = new Scm.DynamicUserGroup("dynamicUserGroupResource", new()
{
Filter = "string",
Description = "string",
Device = "string",
Folder = "string",
Name = "string",
Snippet = "string",
Tags = new[]
{
"string",
},
});
example, err := scm.NewDynamicUserGroup(ctx, "dynamicUserGroupResource", &scm.DynamicUserGroupArgs{
Filter: pulumi.String("string"),
Description: pulumi.String("string"),
Device: pulumi.String("string"),
Folder: pulumi.String("string"),
Name: pulumi.String("string"),
Snippet: pulumi.String("string"),
Tags: pulumi.StringArray{
pulumi.String("string"),
},
})
var dynamicUserGroupResource = new DynamicUserGroup("dynamicUserGroupResource", DynamicUserGroupArgs.builder()
.filter("string")
.description("string")
.device("string")
.folder("string")
.name("string")
.snippet("string")
.tags("string")
.build());
dynamic_user_group_resource = scm.DynamicUserGroup("dynamicUserGroupResource",
filter="string",
description="string",
device="string",
folder="string",
name="string",
snippet="string",
tags=["string"])
const dynamicUserGroupResource = new scm.DynamicUserGroup("dynamicUserGroupResource", {
filter: "string",
description: "string",
device: "string",
folder: "string",
name: "string",
snippet: "string",
tags: ["string"],
});
type: scm:DynamicUserGroup
properties:
description: string
device: string
filter: string
folder: string
name: string
snippet: string
tags:
- string
DynamicUserGroup 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 DynamicUserGroup resource accepts the following input properties:
- Filter string
- tag-based filter. String length must not exceed 2047 characters.
- Description string
- The Description param. String length must not exceed 1023 characters.
- Device string
- The Device param.
- Folder string
- The Folder param.
- Name string
- Alphanumeric string [ 0-9a-zA-Z._-]. String length must not exceed 63 characters.
- Snippet string
- The Snippet param.
- List<string>
- Tags for dynamic user group object. List must contain at most 64 elements. Individual elements in this list are subject to additional validation. String length must not exceed 127 characters.
- Filter string
- tag-based filter. String length must not exceed 2047 characters.
- Description string
- The Description param. String length must not exceed 1023 characters.
- Device string
- The Device param.
- Folder string
- The Folder param.
- Name string
- Alphanumeric string [ 0-9a-zA-Z._-]. String length must not exceed 63 characters.
- Snippet string
- The Snippet param.
- []string
- Tags for dynamic user group object. List must contain at most 64 elements. Individual elements in this list are subject to additional validation. String length must not exceed 127 characters.
- filter String
- tag-based filter. String length must not exceed 2047 characters.
- description String
- The Description param. String length must not exceed 1023 characters.
- device String
- The Device param.
- folder String
- The Folder param.
- name String
- Alphanumeric string [ 0-9a-zA-Z._-]. String length must not exceed 63 characters.
- snippet String
- The Snippet param.
- List<String>
- Tags for dynamic user group object. List must contain at most 64 elements. Individual elements in this list are subject to additional validation. String length must not exceed 127 characters.
- filter string
- tag-based filter. String length must not exceed 2047 characters.
- description string
- The Description param. String length must not exceed 1023 characters.
- device string
- The Device param.
- folder string
- The Folder param.
- name string
- Alphanumeric string [ 0-9a-zA-Z._-]. String length must not exceed 63 characters.
- snippet string
- The Snippet param.
- string[]
- Tags for dynamic user group object. List must contain at most 64 elements. Individual elements in this list are subject to additional validation. String length must not exceed 127 characters.
- filter str
- tag-based filter. String length must not exceed 2047 characters.
- description str
- The Description param. String length must not exceed 1023 characters.
- device str
- The Device param.
- folder str
- The Folder param.
- name str
- Alphanumeric string [ 0-9a-zA-Z._-]. String length must not exceed 63 characters.
- snippet str
- The Snippet param.
- Sequence[str]
- Tags for dynamic user group object. List must contain at most 64 elements. Individual elements in this list are subject to additional validation. String length must not exceed 127 characters.
- filter String
- tag-based filter. String length must not exceed 2047 characters.
- description String
- The Description param. String length must not exceed 1023 characters.
- device String
- The Device param.
- folder String
- The Folder param.
- name String
- Alphanumeric string [ 0-9a-zA-Z._-]. String length must not exceed 63 characters.
- snippet String
- The Snippet param.
- List<String>
- Tags for dynamic user group object. List must contain at most 64 elements. Individual elements in this list are subject to additional validation. String length must not exceed 127 characters.
Outputs
All input properties are implicitly available as output properties. Additionally, the DynamicUserGroup resource produces the following output properties:
Look up Existing DynamicUserGroup Resource
Get an existing DynamicUserGroup 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?: DynamicUserGroupState, opts?: CustomResourceOptions): DynamicUserGroup
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
description: Optional[str] = None,
device: Optional[str] = None,
filter: Optional[str] = None,
folder: Optional[str] = None,
name: Optional[str] = None,
snippet: Optional[str] = None,
tags: Optional[Sequence[str]] = None,
tfid: Optional[str] = None) -> DynamicUserGroup
func GetDynamicUserGroup(ctx *Context, name string, id IDInput, state *DynamicUserGroupState, opts ...ResourceOption) (*DynamicUserGroup, error)
public static DynamicUserGroup Get(string name, Input<string> id, DynamicUserGroupState? state, CustomResourceOptions? opts = null)
public static DynamicUserGroup get(String name, Output<String> id, DynamicUserGroupState 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.
- Description string
- The Description param. String length must not exceed 1023 characters.
- Device string
- The Device param.
- Filter string
- tag-based filter. String length must not exceed 2047 characters.
- Folder string
- The Folder param.
- Name string
- Alphanumeric string [ 0-9a-zA-Z._-]. String length must not exceed 63 characters.
- Snippet string
- The Snippet param.
- List<string>
- Tags for dynamic user group object. List must contain at most 64 elements. Individual elements in this list are subject to additional validation. String length must not exceed 127 characters.
- Tfid string
- Description string
- The Description param. String length must not exceed 1023 characters.
- Device string
- The Device param.
- Filter string
- tag-based filter. String length must not exceed 2047 characters.
- Folder string
- The Folder param.
- Name string
- Alphanumeric string [ 0-9a-zA-Z._-]. String length must not exceed 63 characters.
- Snippet string
- The Snippet param.
- []string
- Tags for dynamic user group object. List must contain at most 64 elements. Individual elements in this list are subject to additional validation. String length must not exceed 127 characters.
- Tfid string
- description String
- The Description param. String length must not exceed 1023 characters.
- device String
- The Device param.
- filter String
- tag-based filter. String length must not exceed 2047 characters.
- folder String
- The Folder param.
- name String
- Alphanumeric string [ 0-9a-zA-Z._-]. String length must not exceed 63 characters.
- snippet String
- The Snippet param.
- List<String>
- Tags for dynamic user group object. List must contain at most 64 elements. Individual elements in this list are subject to additional validation. String length must not exceed 127 characters.
- tfid String
- description string
- The Description param. String length must not exceed 1023 characters.
- device string
- The Device param.
- filter string
- tag-based filter. String length must not exceed 2047 characters.
- folder string
- The Folder param.
- name string
- Alphanumeric string [ 0-9a-zA-Z._-]. String length must not exceed 63 characters.
- snippet string
- The Snippet param.
- string[]
- Tags for dynamic user group object. List must contain at most 64 elements. Individual elements in this list are subject to additional validation. String length must not exceed 127 characters.
- tfid string
- description str
- The Description param. String length must not exceed 1023 characters.
- device str
- The Device param.
- filter str
- tag-based filter. String length must not exceed 2047 characters.
- folder str
- The Folder param.
- name str
- Alphanumeric string [ 0-9a-zA-Z._-]. String length must not exceed 63 characters.
- snippet str
- The Snippet param.
- Sequence[str]
- Tags for dynamic user group object. List must contain at most 64 elements. Individual elements in this list are subject to additional validation. String length must not exceed 127 characters.
- tfid str
- description String
- The Description param. String length must not exceed 1023 characters.
- device String
- The Device param.
- filter String
- tag-based filter. String length must not exceed 2047 characters.
- folder String
- The Folder param.
- name String
- Alphanumeric string [ 0-9a-zA-Z._-]. String length must not exceed 63 characters.
- snippet String
- The Snippet param.
- List<String>
- Tags for dynamic user group object. List must contain at most 64 elements. Individual elements in this list are subject to additional validation. String length must not exceed 127 characters.
- tfid String
Package Details
- Repository
- scm pulumi/pulumi-scm
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
scm
Terraform Provider.