onelogin.Roles
Explore with Pulumi AI
Create Roles Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Roles(name: string, args?: RolesArgs, opts?: CustomResourceOptions);
@overload
def Roles(resource_name: str,
args: Optional[RolesArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def Roles(resource_name: str,
opts: Optional[ResourceOptions] = None,
admins: Optional[Sequence[float]] = None,
apps: Optional[Sequence[float]] = None,
name: Optional[str] = None,
roles_id: Optional[str] = None,
users: Optional[Sequence[float]] = None)
func NewRoles(ctx *Context, name string, args *RolesArgs, opts ...ResourceOption) (*Roles, error)
public Roles(string name, RolesArgs? args = null, CustomResourceOptions? opts = null)
type: onelogin:Roles
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 RolesArgs
- 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 RolesArgs
- 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 RolesArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args RolesArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args RolesArgs
- 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 rolesResource = new Onelogin.Roles("rolesResource", new()
{
Admins = new[]
{
0,
},
Apps = new[]
{
0,
},
Name = "string",
RolesId = "string",
Users = new[]
{
0,
},
});
example, err := onelogin.NewRoles(ctx, "rolesResource", &onelogin.RolesArgs{
Admins: pulumi.Float64Array{
pulumi.Float64(0),
},
Apps: pulumi.Float64Array{
pulumi.Float64(0),
},
Name: pulumi.String("string"),
RolesId: pulumi.String("string"),
Users: pulumi.Float64Array{
pulumi.Float64(0),
},
})
var rolesResource = new Roles("rolesResource", RolesArgs.builder()
.admins(0)
.apps(0)
.name("string")
.rolesId("string")
.users(0)
.build());
roles_resource = onelogin.Roles("rolesResource",
admins=[0],
apps=[0],
name="string",
roles_id="string",
users=[0])
const rolesResource = new onelogin.Roles("rolesResource", {
admins: [0],
apps: [0],
name: "string",
rolesId: "string",
users: [0],
});
type: onelogin:Roles
properties:
admins:
- 0
apps:
- 0
name: string
rolesId: string
users:
- 0
Roles 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 Roles resource accepts the following input properties:
Outputs
All input properties are implicitly available as output properties. Additionally, the Roles resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing Roles Resource
Get an existing Roles 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?: RolesState, opts?: CustomResourceOptions): Roles
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
admins: Optional[Sequence[float]] = None,
apps: Optional[Sequence[float]] = None,
name: Optional[str] = None,
roles_id: Optional[str] = None,
users: Optional[Sequence[float]] = None) -> Roles
func GetRoles(ctx *Context, name string, id IDInput, state *RolesState, opts ...ResourceOption) (*Roles, error)
public static Roles Get(string name, Input<string> id, RolesState? state, CustomResourceOptions? opts = null)
public static Roles get(String name, Output<String> id, RolesState state, CustomResourceOptions options)
resources: _: type: onelogin:Roles 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
- onelogin onelogin/terraform-provider-onelogin
- License
- Notes
- This Pulumi package is based on the
onelogin
Terraform Provider.