1. Packages
  2. Juju Provider
  3. API Docs
  4. JaasGroup
juju 0.18.0 published on Monday, Apr 14, 2025 by juju

juju.JaasGroup

Explore with Pulumi AI

A resource that represents a group in JAAS

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as juju from "@pulumi/juju";

const development = new juju.JaasGroup("development", {});
Copy
import pulumi
import pulumi_juju as juju

development = juju.JaasGroup("development")
Copy
package main

import (
	"github.com/pulumi/pulumi-terraform-provider/sdks/go/juju/juju"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := juju.NewJaasGroup(ctx, "development", nil)
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Juju = Pulumi.Juju;

return await Deployment.RunAsync(() => 
{
    var development = new Juju.JaasGroup("development");

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.juju.JaasGroup;
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 development = new JaasGroup("development");

    }
}
Copy
resources:
  development:
    type: juju:JaasGroup
Copy

Create JaasGroup Resource

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

Constructor syntax

new JaasGroup(name: string, args?: JaasGroupArgs, opts?: CustomResourceOptions);
@overload
def JaasGroup(resource_name: str,
              args: Optional[JaasGroupArgs] = None,
              opts: Optional[ResourceOptions] = None)

@overload
def JaasGroup(resource_name: str,
              opts: Optional[ResourceOptions] = None,
              name: Optional[str] = None)
func NewJaasGroup(ctx *Context, name string, args *JaasGroupArgs, opts ...ResourceOption) (*JaasGroup, error)
public JaasGroup(string name, JaasGroupArgs? args = null, CustomResourceOptions? opts = null)
public JaasGroup(String name, JaasGroupArgs args)
public JaasGroup(String name, JaasGroupArgs args, CustomResourceOptions options)
type: juju:JaasGroup
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args JaasGroupArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args JaasGroupArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args JaasGroupArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args JaasGroupArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. JaasGroupArgs
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 jaasGroupResource = new Juju.JaasGroup("jaasGroupResource", new()
{
    Name = "string",
});
Copy
example, err := juju.NewJaasGroup(ctx, "jaasGroupResource", &juju.JaasGroupArgs{
Name: pulumi.String("string"),
})
Copy
var jaasGroupResource = new JaasGroup("jaasGroupResource", JaasGroupArgs.builder()
    .name("string")
    .build());
Copy
jaas_group_resource = juju.JaasGroup("jaasGroupResource", name="string")
Copy
const jaasGroupResource = new juju.JaasGroup("jaasGroupResource", {name: "string"});
Copy
type: juju:JaasGroup
properties:
    name: string
Copy

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

Name string
Name of the group
Name string
Name of the group
name String
Name of the group
name string
Name of the group
name str
Name of the group
name String
Name of the group

Outputs

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

Id string
The provider-assigned unique ID for this managed resource.
Uuid string
UUID of the group
Id string
The provider-assigned unique ID for this managed resource.
Uuid string
UUID of the group
id String
The provider-assigned unique ID for this managed resource.
uuid String
UUID of the group
id string
The provider-assigned unique ID for this managed resource.
uuid string
UUID of the group
id str
The provider-assigned unique ID for this managed resource.
uuid str
UUID of the group
id String
The provider-assigned unique ID for this managed resource.
uuid String
UUID of the group

Look up Existing JaasGroup Resource

Get an existing JaasGroup 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?: JaasGroupState, opts?: CustomResourceOptions): JaasGroup
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        name: Optional[str] = None,
        uuid: Optional[str] = None) -> JaasGroup
func GetJaasGroup(ctx *Context, name string, id IDInput, state *JaasGroupState, opts ...ResourceOption) (*JaasGroup, error)
public static JaasGroup Get(string name, Input<string> id, JaasGroupState? state, CustomResourceOptions? opts = null)
public static JaasGroup get(String name, Output<String> id, JaasGroupState state, CustomResourceOptions options)
resources:  _:    type: juju:JaasGroup    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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:
Name string
Name of the group
Uuid string
UUID of the group
Name string
Name of the group
Uuid string
UUID of the group
name String
Name of the group
uuid String
UUID of the group
name string
Name of the group
uuid string
UUID of the group
name str
Name of the group
uuid str
UUID of the group
name String
Name of the group
uuid String
UUID of the group

Package Details

Repository
juju juju/terraform-provider-juju
License
Notes
This Pulumi package is based on the juju Terraform Provider.