juju.JaasRole
Explore with Pulumi AI
A resource that represents a role in JAAS
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as juju from "@pulumi/juju";
const development = new juju.JaasRole("development", {});
import pulumi
import pulumi_juju as juju
development = juju.JaasRole("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.NewJaasRole(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.JaasRole("development");
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.juju.JaasRole;
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 JaasRole("development");
}
}
resources:
development:
type: juju:JaasRole
Create JaasRole Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new JaasRole(name: string, args?: JaasRoleArgs, opts?: CustomResourceOptions);
@overload
def JaasRole(resource_name: str,
args: Optional[JaasRoleArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def JaasRole(resource_name: str,
opts: Optional[ResourceOptions] = None,
name: Optional[str] = None)
func NewJaasRole(ctx *Context, name string, args *JaasRoleArgs, opts ...ResourceOption) (*JaasRole, error)
public JaasRole(string name, JaasRoleArgs? args = null, CustomResourceOptions? opts = null)
public JaasRole(String name, JaasRoleArgs args)
public JaasRole(String name, JaasRoleArgs args, CustomResourceOptions options)
type: juju:JaasRole
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 JaasRoleArgs
- 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 JaasRoleArgs
- 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 JaasRoleArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args JaasRoleArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args JaasRoleArgs
- 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 jaasRoleResource = new Juju.JaasRole("jaasRoleResource", new()
{
Name = "string",
});
example, err := juju.NewJaasRole(ctx, "jaasRoleResource", &juju.JaasRoleArgs{
Name: pulumi.String("string"),
})
var jaasRoleResource = new JaasRole("jaasRoleResource", JaasRoleArgs.builder()
.name("string")
.build());
jaas_role_resource = juju.JaasRole("jaasRoleResource", name="string")
const jaasRoleResource = new juju.JaasRole("jaasRoleResource", {name: "string"});
type: juju:JaasRole
properties:
name: string
JaasRole 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 JaasRole resource accepts the following input properties:
- Name string
- Name of the role
- Name string
- Name of the role
- name String
- Name of the role
- name string
- Name of the role
- name str
- Name of the role
- name String
- Name of the role
Outputs
All input properties are implicitly available as output properties. Additionally, the JaasRole resource produces the following output properties:
Look up Existing JaasRole Resource
Get an existing JaasRole 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?: JaasRoleState, opts?: CustomResourceOptions): JaasRole
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
name: Optional[str] = None,
uuid: Optional[str] = None) -> JaasRole
func GetJaasRole(ctx *Context, name string, id IDInput, state *JaasRoleState, opts ...ResourceOption) (*JaasRole, error)
public static JaasRole Get(string name, Input<string> id, JaasRoleState? state, CustomResourceOptions? opts = null)
public static JaasRole get(String name, Output<String> id, JaasRoleState state, CustomResourceOptions options)
resources: _: type: juju:JaasRole 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.