1. Packages
  2. Logzio Provider
  3. API Docs
  4. AuthenticationGroups
logzio 1.17.1 published on Monday, Apr 14, 2025 by logzio

logzio.AuthenticationGroups

Explore with Pulumi AI

logzio logo
logzio 1.17.1 published on Monday, Apr 14, 2025 by logzio

    Create AuthenticationGroups Resource

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

    Constructor syntax

    new AuthenticationGroups(name: string, args: AuthenticationGroupsArgs, opts?: CustomResourceOptions);
    @overload
    def AuthenticationGroups(resource_name: str,
                             args: AuthenticationGroupsArgs,
                             opts: Optional[ResourceOptions] = None)
    
    @overload
    def AuthenticationGroups(resource_name: str,
                             opts: Optional[ResourceOptions] = None,
                             authentication_groups: Optional[Sequence[AuthenticationGroupsAuthenticationGroupArgs]] = None,
                             authentication_groups_id: Optional[str] = None)
    func NewAuthenticationGroups(ctx *Context, name string, args AuthenticationGroupsArgs, opts ...ResourceOption) (*AuthenticationGroups, error)
    public AuthenticationGroups(string name, AuthenticationGroupsArgs args, CustomResourceOptions? opts = null)
    public AuthenticationGroups(String name, AuthenticationGroupsArgs args)
    public AuthenticationGroups(String name, AuthenticationGroupsArgs args, CustomResourceOptions options)
    
    type: logzio:AuthenticationGroups
    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 AuthenticationGroupsArgs
    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 AuthenticationGroupsArgs
    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 AuthenticationGroupsArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args AuthenticationGroupsArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args AuthenticationGroupsArgs
    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 authenticationGroupsResource = new Logzio.AuthenticationGroups("authenticationGroupsResource", new()
    {
        AuthenticationGroups = new[]
        {
            new Logzio.Inputs.AuthenticationGroupsAuthenticationGroupArgs
            {
                Group = "string",
                UserRole = "string",
            },
        },
        AuthenticationGroupsId = "string",
    });
    
    example, err := logzio.NewAuthenticationGroups(ctx, "authenticationGroupsResource", &logzio.AuthenticationGroupsArgs{
    	AuthenticationGroups: logzio.AuthenticationGroupsAuthenticationGroupArray{
    		&logzio.AuthenticationGroupsAuthenticationGroupArgs{
    			Group:    pulumi.String("string"),
    			UserRole: pulumi.String("string"),
    		},
    	},
    	AuthenticationGroupsId: pulumi.String("string"),
    })
    
    var authenticationGroupsResource = new AuthenticationGroups("authenticationGroupsResource", AuthenticationGroupsArgs.builder()
        .authenticationGroups(AuthenticationGroupsAuthenticationGroupArgs.builder()
            .group("string")
            .userRole("string")
            .build())
        .authenticationGroupsId("string")
        .build());
    
    authentication_groups_resource = logzio.AuthenticationGroups("authenticationGroupsResource",
        authentication_groups=[{
            "group": "string",
            "user_role": "string",
        }],
        authentication_groups_id="string")
    
    const authenticationGroupsResource = new logzio.AuthenticationGroups("authenticationGroupsResource", {
        authenticationGroups: [{
            group: "string",
            userRole: "string",
        }],
        authenticationGroupsId: "string",
    });
    
    type: logzio:AuthenticationGroups
    properties:
        authenticationGroups:
            - group: string
              userRole: string
        authenticationGroupsId: string
    

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

    AuthenticationGroups List<AuthenticationGroupsAuthenticationGroup>
    Sets details for the authentication groups. Must be at least one authentication_group in a resource.
    AuthenticationGroupsId string
    AuthenticationGroups []AuthenticationGroupsAuthenticationGroupArgs
    Sets details for the authentication groups. Must be at least one authentication_group in a resource.
    AuthenticationGroupsId string
    authenticationGroups List<AuthenticationGroupsAuthenticationGroup>
    Sets details for the authentication groups. Must be at least one authentication_group in a resource.
    authenticationGroupsId String
    authenticationGroups AuthenticationGroupsAuthenticationGroup[]
    Sets details for the authentication groups. Must be at least one authentication_group in a resource.
    authenticationGroupsId string
    authentication_groups Sequence[AuthenticationGroupsAuthenticationGroupArgs]
    Sets details for the authentication groups. Must be at least one authentication_group in a resource.
    authentication_groups_id str
    authenticationGroups List<Property Map>
    Sets details for the authentication groups. Must be at least one authentication_group in a resource.
    authenticationGroupsId String

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    ManageGroupsId string
    Id string
    The provider-assigned unique ID for this managed resource.
    ManageGroupsId string
    id String
    The provider-assigned unique ID for this managed resource.
    manageGroupsId String
    id string
    The provider-assigned unique ID for this managed resource.
    manageGroupsId string
    id str
    The provider-assigned unique ID for this managed resource.
    manage_groups_id str
    id String
    The provider-assigned unique ID for this managed resource.
    manageGroupsId String

    Look up Existing AuthenticationGroups Resource

    Get an existing AuthenticationGroups 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?: AuthenticationGroupsState, opts?: CustomResourceOptions): AuthenticationGroups
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            authentication_groups: Optional[Sequence[AuthenticationGroupsAuthenticationGroupArgs]] = None,
            authentication_groups_id: Optional[str] = None,
            manage_groups_id: Optional[str] = None) -> AuthenticationGroups
    func GetAuthenticationGroups(ctx *Context, name string, id IDInput, state *AuthenticationGroupsState, opts ...ResourceOption) (*AuthenticationGroups, error)
    public static AuthenticationGroups Get(string name, Input<string> id, AuthenticationGroupsState? state, CustomResourceOptions? opts = null)
    public static AuthenticationGroups get(String name, Output<String> id, AuthenticationGroupsState state, CustomResourceOptions options)
    resources:  _:    type: logzio:AuthenticationGroups    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.
    The following state arguments are supported:
    AuthenticationGroups List<AuthenticationGroupsAuthenticationGroup>
    Sets details for the authentication groups. Must be at least one authentication_group in a resource.
    AuthenticationGroupsId string
    ManageGroupsId string
    AuthenticationGroups []AuthenticationGroupsAuthenticationGroupArgs
    Sets details for the authentication groups. Must be at least one authentication_group in a resource.
    AuthenticationGroupsId string
    ManageGroupsId string
    authenticationGroups List<AuthenticationGroupsAuthenticationGroup>
    Sets details for the authentication groups. Must be at least one authentication_group in a resource.
    authenticationGroupsId String
    manageGroupsId String
    authenticationGroups AuthenticationGroupsAuthenticationGroup[]
    Sets details for the authentication groups. Must be at least one authentication_group in a resource.
    authenticationGroupsId string
    manageGroupsId string
    authentication_groups Sequence[AuthenticationGroupsAuthenticationGroupArgs]
    Sets details for the authentication groups. Must be at least one authentication_group in a resource.
    authentication_groups_id str
    manage_groups_id str
    authenticationGroups List<Property Map>
    Sets details for the authentication groups. Must be at least one authentication_group in a resource.
    authenticationGroupsId String
    manageGroupsId String

    Supporting Types

    AuthenticationGroupsAuthenticationGroup, AuthenticationGroupsAuthenticationGroupArgs

    Group string
    Name of authentication group.
    UserRole string
    User role for that group. Can be one of the following: USER_ROLE_ACCOUNT_ADMIN, USER_ROLE_REGULAR, USER_ROLE_READONLY.
    Group string
    Name of authentication group.
    UserRole string
    User role for that group. Can be one of the following: USER_ROLE_ACCOUNT_ADMIN, USER_ROLE_REGULAR, USER_ROLE_READONLY.
    group String
    Name of authentication group.
    userRole String
    User role for that group. Can be one of the following: USER_ROLE_ACCOUNT_ADMIN, USER_ROLE_REGULAR, USER_ROLE_READONLY.
    group string
    Name of authentication group.
    userRole string
    User role for that group. Can be one of the following: USER_ROLE_ACCOUNT_ADMIN, USER_ROLE_REGULAR, USER_ROLE_READONLY.
    group str
    Name of authentication group.
    user_role str
    User role for that group. Can be one of the following: USER_ROLE_ACCOUNT_ADMIN, USER_ROLE_REGULAR, USER_ROLE_READONLY.
    group String
    Name of authentication group.
    userRole String
    User role for that group. Can be one of the following: USER_ROLE_ACCOUNT_ADMIN, USER_ROLE_REGULAR, USER_ROLE_READONLY.

    Package Details

    Repository
    logzio logzio/terraform-provider-logzio
    License
    Notes
    This Pulumi package is based on the logzio Terraform Provider.
    logzio logo
    logzio 1.17.1 published on Monday, Apr 14, 2025 by logzio