Rancher2
getProjectRoleTemplateBinding
Use this data source to retrieve information about a Rancher v2 project role template binding.
Example Usage
using Pulumi;
using Rancher2 = Pulumi.Rancher2;
class MyStack : Stack
{
public MyStack()
{
var foo = Output.Create(Rancher2.GetProjectRoleTemplateBinding.InvokeAsync(new Rancher2.GetProjectRoleTemplateBindingArgs
{
Name = "foo",
ProjectId = "foo_id",
}));
}
}
package main
import (
"github.com/pulumi/pulumi-rancher2/sdk/v3/go/rancher2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := rancher2.LookupProjectRoleTemplateBinding(ctx, &GetProjectRoleTemplateBindingArgs{
Name: "foo",
ProjectId: "foo_id",
}, nil)
if err != nil {
return err
}
return nil
})
}
Coming soon!
import pulumi
import pulumi_rancher2 as rancher2
foo = rancher2.get_project_role_template_binding(name="foo",
project_id="foo_id")
import * as pulumi from "@pulumi/pulumi";
import * as rancher2 from "@pulumi/rancher2";
const foo = pulumi.output(rancher2.getProjectRoleTemplateBinding({
name: "foo",
projectId: "foo_id",
}));
Coming soon!
Using getProjectRoleTemplateBinding
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getProjectRoleTemplateBinding(args: GetProjectRoleTemplateBindingArgs, opts?: InvokeOptions): Promise<GetProjectRoleTemplateBindingResult>
function getProjectRoleTemplateBindingOutput(args: GetProjectRoleTemplateBindingOutputArgs, opts?: InvokeOptions): Output<GetProjectRoleTemplateBindingResult>
def get_project_role_template_binding(name: Optional[str] = None,
project_id: Optional[str] = None,
role_template_id: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetProjectRoleTemplateBindingResult
def get_project_role_template_binding_output(name: Optional[pulumi.Input[str]] = None,
project_id: Optional[pulumi.Input[str]] = None,
role_template_id: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetProjectRoleTemplateBindingResult]
func LookupProjectRoleTemplateBinding(ctx *Context, args *LookupProjectRoleTemplateBindingArgs, opts ...InvokeOption) (*LookupProjectRoleTemplateBindingResult, error)
func LookupProjectRoleTemplateBindingOutput(ctx *Context, args *LookupProjectRoleTemplateBindingOutputArgs, opts ...InvokeOption) LookupProjectRoleTemplateBindingResultOutput
> Note: This function is named LookupProjectRoleTemplateBinding
in the Go SDK.
public static class GetProjectRoleTemplateBinding
{
public static Task<GetProjectRoleTemplateBindingResult> InvokeAsync(GetProjectRoleTemplateBindingArgs args, InvokeOptions? opts = null)
public static Output<GetProjectRoleTemplateBindingResult> Invoke(GetProjectRoleTemplateBindingInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetProjectRoleTemplateBindingResult> getProjectRoleTemplateBinding(GetProjectRoleTemplateBindingArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
Fn::Invoke:
Function: rancher2:index/getProjectRoleTemplateBinding:getProjectRoleTemplateBinding
Arguments:
# Arguments dictionary
The following arguments are supported:
- Name string
The name of the project role template binding (string)
- Project
Id string The project id where bind project role template (string)
- Role
Template stringId The role template id from create project role template binding (string)
- Name string
The name of the project role template binding (string)
- Project
Id string The project id where bind project role template (string)
- Role
Template stringId The role template id from create project role template binding (string)
- name String
The name of the project role template binding (string)
- project
Id String The project id where bind project role template (string)
- role
Template StringId The role template id from create project role template binding (string)
- name string
The name of the project role template binding (string)
- project
Id string The project id where bind project role template (string)
- role
Template stringId The role template id from create project role template binding (string)
- name str
The name of the project role template binding (string)
- project_
id str The project id where bind project role template (string)
- role_
template_ strid The role template id from create project role template binding (string)
- name String
The name of the project role template binding (string)
- project
Id String The project id where bind project role template (string)
- role
Template StringId The role template id from create project role template binding (string)
getProjectRoleTemplateBinding Result
The following output properties are available:
- Annotations Dictionary<string, object>
(Computed) Annotations of the resource (map)
- Group
Id string (Computed) The group ID to assign project role template binding (string)
- Group
Principal stringId (Computed) The group_principal ID to assign project role template binding (string)
- Id string
The provider-assigned unique ID for this managed resource.
- Labels Dictionary<string, object>
(Computed) Labels of the resource (map)
- Name string
- Project
Id string - Role
Template stringId - User
Id string (Computed) The user ID to assign project role template binding (string)
- User
Principal stringId (Computed) The user_principal ID to assign project role template binding (string)
- Annotations map[string]interface{}
(Computed) Annotations of the resource (map)
- Group
Id string (Computed) The group ID to assign project role template binding (string)
- Group
Principal stringId (Computed) The group_principal ID to assign project role template binding (string)
- Id string
The provider-assigned unique ID for this managed resource.
- Labels map[string]interface{}
(Computed) Labels of the resource (map)
- Name string
- Project
Id string - Role
Template stringId - User
Id string (Computed) The user ID to assign project role template binding (string)
- User
Principal stringId (Computed) The user_principal ID to assign project role template binding (string)
- annotations Map<String,Object>
(Computed) Annotations of the resource (map)
- group
Id String (Computed) The group ID to assign project role template binding (string)
- group
Principal StringId (Computed) The group_principal ID to assign project role template binding (string)
- id String
The provider-assigned unique ID for this managed resource.
- labels Map<String,Object>
(Computed) Labels of the resource (map)
- name String
- project
Id String - role
Template StringId - user
Id String (Computed) The user ID to assign project role template binding (string)
- user
Principal StringId (Computed) The user_principal ID to assign project role template binding (string)
- annotations {[key: string]: any}
(Computed) Annotations of the resource (map)
- group
Id string (Computed) The group ID to assign project role template binding (string)
- group
Principal stringId (Computed) The group_principal ID to assign project role template binding (string)
- id string
The provider-assigned unique ID for this managed resource.
- labels {[key: string]: any}
(Computed) Labels of the resource (map)
- name string
- project
Id string - role
Template stringId - user
Id string (Computed) The user ID to assign project role template binding (string)
- user
Principal stringId (Computed) The user_principal ID to assign project role template binding (string)
- annotations Mapping[str, Any]
(Computed) Annotations of the resource (map)
- group_
id str (Computed) The group ID to assign project role template binding (string)
- group_
principal_ strid (Computed) The group_principal ID to assign project role template binding (string)
- id str
The provider-assigned unique ID for this managed resource.
- labels Mapping[str, Any]
(Computed) Labels of the resource (map)
- name str
- project_
id str - role_
template_ strid - user_
id str (Computed) The user ID to assign project role template binding (string)
- user_
principal_ strid (Computed) The user_principal ID to assign project role template binding (string)
- annotations Map<Any>
(Computed) Annotations of the resource (map)
- group
Id String (Computed) The group ID to assign project role template binding (string)
- group
Principal StringId (Computed) The group_principal ID to assign project role template binding (string)
- id String
The provider-assigned unique ID for this managed resource.
- labels Map<Any>
(Computed) Labels of the resource (map)
- name String
- project
Id String - role
Template StringId - user
Id String (Computed) The user ID to assign project role template binding (string)
- user
Principal StringId (Computed) The user_principal ID to assign project role template binding (string)
Package Details
- Repository
- https://github.com/pulumi/pulumi-rancher2
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
rancher2
Terraform Provider.