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", {});
import pulumi
import pulumi_juju as juju
development = juju.JaasGroup("development")
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
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Juju = Pulumi.Juju;
return await Deployment.RunAsync(() =>
{
var development = new Juju.JaasGroup("development");
});
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");
}
}
resources:
development:
type: juju:JaasGroup
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 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 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 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 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 String
- The unique name of the resource.
- args 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",
});
example, err := juju.NewJaasGroup(ctx, "jaasGroupResource", &juju.JaasGroupArgs{
Name: pulumi.String("string"),
})
var jaasGroupResource = new JaasGroup("jaasGroupResource", JaasGroupArgs.builder()
.name("string")
.build());
jaas_group_resource = juju.JaasGroup("jaasGroupResource", name="string")
const jaasGroupResource = new juju.JaasGroup("jaasGroupResource", {name: "string"});
type: juju:JaasGroup
properties:
name: string
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:
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
- 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.
Package Details
- Repository
- juju juju/terraform-provider-juju
- License
- Notes
- This Pulumi package is based on the
juju
Terraform Provider.