ec.Organization
Explore with Pulumi AI
Create Organization Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Organization(name: string, args?: OrganizationArgs, opts?: CustomResourceOptions);@overload
def Organization(resource_name: str,
                 args: Optional[OrganizationArgs] = None,
                 opts: Optional[ResourceOptions] = None)
@overload
def Organization(resource_name: str,
                 opts: Optional[ResourceOptions] = None,
                 members: Optional[Mapping[str, OrganizationMembersArgs]] = None)func NewOrganization(ctx *Context, name string, args *OrganizationArgs, opts ...ResourceOption) (*Organization, error)public Organization(string name, OrganizationArgs? args = null, CustomResourceOptions? opts = null)
public Organization(String name, OrganizationArgs args)
public Organization(String name, OrganizationArgs args, CustomResourceOptions options)
type: ec:Organization
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 OrganizationArgs
- 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 OrganizationArgs
- 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 OrganizationArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args OrganizationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args OrganizationArgs
- 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 organizationResource = new ElasticCloud.Organization("organizationResource", new()
{
    Members = 
    {
        { "string", new ElasticCloud.Inputs.OrganizationMembersArgs
        {
            DeploymentRoles = new[]
            {
                new ElasticCloud.Inputs.OrganizationMembersDeploymentRoleArgs
                {
                    Role = "string",
                    AllDeployments = false,
                    ApplicationRoles = new[]
                    {
                        "string",
                    },
                    DeploymentIds = new[]
                    {
                        "string",
                    },
                },
            },
            Email = "string",
            InvitationPending = false,
            OrganizationRole = "string",
            ProjectElasticsearchRoles = new[]
            {
                new ElasticCloud.Inputs.OrganizationMembersProjectElasticsearchRoleArgs
                {
                    Role = "string",
                    AllProjects = false,
                    ApplicationRoles = new[]
                    {
                        "string",
                    },
                    ProjectIds = new[]
                    {
                        "string",
                    },
                },
            },
            ProjectObservabilityRoles = new[]
            {
                new ElasticCloud.Inputs.OrganizationMembersProjectObservabilityRoleArgs
                {
                    Role = "string",
                    AllProjects = false,
                    ApplicationRoles = new[]
                    {
                        "string",
                    },
                    ProjectIds = new[]
                    {
                        "string",
                    },
                },
            },
            ProjectSecurityRoles = new[]
            {
                new ElasticCloud.Inputs.OrganizationMembersProjectSecurityRoleArgs
                {
                    Role = "string",
                    AllProjects = false,
                    ApplicationRoles = new[]
                    {
                        "string",
                    },
                    ProjectIds = new[]
                    {
                        "string",
                    },
                },
            },
            UserId = "string",
        } },
    },
});
example, err := ec.NewOrganization(ctx, "organizationResource", &ec.OrganizationArgs{
	Members: ec.OrganizationMembersMap{
		"string": &ec.OrganizationMembersArgs{
			DeploymentRoles: ec.OrganizationMembersDeploymentRoleArray{
				&ec.OrganizationMembersDeploymentRoleArgs{
					Role:           pulumi.String("string"),
					AllDeployments: pulumi.Bool(false),
					ApplicationRoles: pulumi.StringArray{
						pulumi.String("string"),
					},
					DeploymentIds: pulumi.StringArray{
						pulumi.String("string"),
					},
				},
			},
			Email:             pulumi.String("string"),
			InvitationPending: pulumi.Bool(false),
			OrganizationRole:  pulumi.String("string"),
			ProjectElasticsearchRoles: ec.OrganizationMembersProjectElasticsearchRoleArray{
				&ec.OrganizationMembersProjectElasticsearchRoleArgs{
					Role:        pulumi.String("string"),
					AllProjects: pulumi.Bool(false),
					ApplicationRoles: pulumi.StringArray{
						pulumi.String("string"),
					},
					ProjectIds: pulumi.StringArray{
						pulumi.String("string"),
					},
				},
			},
			ProjectObservabilityRoles: ec.OrganizationMembersProjectObservabilityRoleArray{
				&ec.OrganizationMembersProjectObservabilityRoleArgs{
					Role:        pulumi.String("string"),
					AllProjects: pulumi.Bool(false),
					ApplicationRoles: pulumi.StringArray{
						pulumi.String("string"),
					},
					ProjectIds: pulumi.StringArray{
						pulumi.String("string"),
					},
				},
			},
			ProjectSecurityRoles: ec.OrganizationMembersProjectSecurityRoleArray{
				&ec.OrganizationMembersProjectSecurityRoleArgs{
					Role:        pulumi.String("string"),
					AllProjects: pulumi.Bool(false),
					ApplicationRoles: pulumi.StringArray{
						pulumi.String("string"),
					},
					ProjectIds: pulumi.StringArray{
						pulumi.String("string"),
					},
				},
			},
			UserId: pulumi.String("string"),
		},
	},
})
var organizationResource = new Organization("organizationResource", OrganizationArgs.builder()
    .members(Map.of("string", Map.ofEntries(
        Map.entry("deploymentRoles", Map.ofEntries(
            Map.entry("role", "string"),
            Map.entry("allDeployments", false),
            Map.entry("applicationRoles", "string"),
            Map.entry("deploymentIds", "string")
        )),
        Map.entry("email", "string"),
        Map.entry("invitationPending", false),
        Map.entry("organizationRole", "string"),
        Map.entry("projectElasticsearchRoles", Map.ofEntries(
            Map.entry("role", "string"),
            Map.entry("allProjects", false),
            Map.entry("applicationRoles", "string"),
            Map.entry("projectIds", "string")
        )),
        Map.entry("projectObservabilityRoles", Map.ofEntries(
            Map.entry("role", "string"),
            Map.entry("allProjects", false),
            Map.entry("applicationRoles", "string"),
            Map.entry("projectIds", "string")
        )),
        Map.entry("projectSecurityRoles", Map.ofEntries(
            Map.entry("role", "string"),
            Map.entry("allProjects", false),
            Map.entry("applicationRoles", "string"),
            Map.entry("projectIds", "string")
        )),
        Map.entry("userId", "string")
    )))
    .build());
organization_resource = ec.Organization("organizationResource", members={
    "string": {
        "deployment_roles": [{
            "role": "string",
            "all_deployments": False,
            "application_roles": ["string"],
            "deployment_ids": ["string"],
        }],
        "email": "string",
        "invitation_pending": False,
        "organization_role": "string",
        "project_elasticsearch_roles": [{
            "role": "string",
            "all_projects": False,
            "application_roles": ["string"],
            "project_ids": ["string"],
        }],
        "project_observability_roles": [{
            "role": "string",
            "all_projects": False,
            "application_roles": ["string"],
            "project_ids": ["string"],
        }],
        "project_security_roles": [{
            "role": "string",
            "all_projects": False,
            "application_roles": ["string"],
            "project_ids": ["string"],
        }],
        "user_id": "string",
    },
})
const organizationResource = new ec.Organization("organizationResource", {members: {
    string: {
        deploymentRoles: [{
            role: "string",
            allDeployments: false,
            applicationRoles: ["string"],
            deploymentIds: ["string"],
        }],
        email: "string",
        invitationPending: false,
        organizationRole: "string",
        projectElasticsearchRoles: [{
            role: "string",
            allProjects: false,
            applicationRoles: ["string"],
            projectIds: ["string"],
        }],
        projectObservabilityRoles: [{
            role: "string",
            allProjects: false,
            applicationRoles: ["string"],
            projectIds: ["string"],
        }],
        projectSecurityRoles: [{
            role: "string",
            allProjects: false,
            applicationRoles: ["string"],
            projectIds: ["string"],
        }],
        userId: "string",
    },
}});
type: ec:Organization
properties:
    members:
        string:
            deploymentRoles:
                - allDeployments: false
                  applicationRoles:
                    - string
                  deploymentIds:
                    - string
                  role: string
            email: string
            invitationPending: false
            organizationRole: string
            projectElasticsearchRoles:
                - allProjects: false
                  applicationRoles:
                    - string
                  projectIds:
                    - string
                  role: string
            projectObservabilityRoles:
                - allProjects: false
                  applicationRoles:
                    - string
                  projectIds:
                    - string
                  role: string
            projectSecurityRoles:
                - allProjects: false
                  applicationRoles:
                    - string
                  projectIds:
                    - string
                  role: string
            userId: string
Organization 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 Organization resource accepts the following input properties:
- Members
Dictionary<string, Pulumi.Elastic Cloud. Inputs. Organization Members Args> 
- Manages the members of an Elastic Cloud organization. The key of each entry should be the email of the member.
- Members
map[string]OrganizationMembers Args 
- Manages the members of an Elastic Cloud organization. The key of each entry should be the email of the member.
- members
Map<String,OrganizationMembers Args> 
- Manages the members of an Elastic Cloud organization. The key of each entry should be the email of the member.
- members
{[key: string]: OrganizationMembers Args} 
- Manages the members of an Elastic Cloud organization. The key of each entry should be the email of the member.
- members
Mapping[str, OrganizationMembers Args] 
- Manages the members of an Elastic Cloud organization. The key of each entry should be the email of the member.
- members Map<Property Map>
- Manages the members of an Elastic Cloud organization. The key of each entry should be the email of the member.
Outputs
All input properties are implicitly available as output properties. Additionally, the Organization 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 Organization Resource
Get an existing Organization 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?: OrganizationState, opts?: CustomResourceOptions): Organization@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        members: Optional[Mapping[str, OrganizationMembersArgs]] = None) -> Organizationfunc GetOrganization(ctx *Context, name string, id IDInput, state *OrganizationState, opts ...ResourceOption) (*Organization, error)public static Organization Get(string name, Input<string> id, OrganizationState? state, CustomResourceOptions? opts = null)public static Organization get(String name, Output<String> id, OrganizationState state, CustomResourceOptions options)resources:  _:    type: ec:Organization    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.
- Members
Dictionary<string, Pulumi.Elastic Cloud. Inputs. Organization Members Args> 
- Manages the members of an Elastic Cloud organization. The key of each entry should be the email of the member.
- Members
map[string]OrganizationMembers Args 
- Manages the members of an Elastic Cloud organization. The key of each entry should be the email of the member.
- members
Map<String,OrganizationMembers Args> 
- Manages the members of an Elastic Cloud organization. The key of each entry should be the email of the member.
- members
{[key: string]: OrganizationMembers Args} 
- Manages the members of an Elastic Cloud organization. The key of each entry should be the email of the member.
- members
Mapping[str, OrganizationMembers Args] 
- Manages the members of an Elastic Cloud organization. The key of each entry should be the email of the member.
- members Map<Property Map>
- Manages the members of an Elastic Cloud organization. The key of each entry should be the email of the member.
Supporting Types
OrganizationMembers, OrganizationMembersArgs    
- DeploymentRoles List<Pulumi.Elastic Cloud. Inputs. Organization Members Deployment Role> 
- Grant access to one or more deployments. For more info see: Deployment instance roles.
- Email string
- Email address of the user.
- InvitationPending bool
- Set to true while the user has not yet accepted their invitation to the organization.
- OrganizationRole string
- The optional organization role for the member. Can be one of organization-admin,billing-admin. For more info see: Organization roles
- ProjectElasticsearch List<Pulumi.Roles Elastic Cloud. Inputs. Organization Members Project Elasticsearch Role> 
- Roles assigned for elasticsearch projects. For more info see: Serverless elasticsearch roles
- ProjectObservability List<Pulumi.Roles Elastic Cloud. Inputs. Organization Members Project Observability Role> 
- Roles assigned for observability projects. For more info see: Serverless observability roles
- ProjectSecurity List<Pulumi.Roles Elastic Cloud. Inputs. Organization Members Project Security Role> 
- Roles assigned for security projects. For more info see: Serverless security roles
- UserId string
- User ID.
- DeploymentRoles []OrganizationMembers Deployment Role 
- Grant access to one or more deployments. For more info see: Deployment instance roles.
- Email string
- Email address of the user.
- InvitationPending bool
- Set to true while the user has not yet accepted their invitation to the organization.
- OrganizationRole string
- The optional organization role for the member. Can be one of organization-admin,billing-admin. For more info see: Organization roles
- ProjectElasticsearch []OrganizationRoles Members Project Elasticsearch Role 
- Roles assigned for elasticsearch projects. For more info see: Serverless elasticsearch roles
- ProjectObservability []OrganizationRoles Members Project Observability Role 
- Roles assigned for observability projects. For more info see: Serverless observability roles
- ProjectSecurity []OrganizationRoles Members Project Security Role 
- Roles assigned for security projects. For more info see: Serverless security roles
- UserId string
- User ID.
- deploymentRoles List<OrganizationMembers Deployment Role> 
- Grant access to one or more deployments. For more info see: Deployment instance roles.
- email String
- Email address of the user.
- invitationPending Boolean
- Set to true while the user has not yet accepted their invitation to the organization.
- organizationRole String
- The optional organization role for the member. Can be one of organization-admin,billing-admin. For more info see: Organization roles
- projectElasticsearch List<OrganizationRoles Members Project Elasticsearch Role> 
- Roles assigned for elasticsearch projects. For more info see: Serverless elasticsearch roles
- projectObservability List<OrganizationRoles Members Project Observability Role> 
- Roles assigned for observability projects. For more info see: Serverless observability roles
- projectSecurity List<OrganizationRoles Members Project Security Role> 
- Roles assigned for security projects. For more info see: Serverless security roles
- userId String
- User ID.
- deploymentRoles OrganizationMembers Deployment Role[] 
- Grant access to one or more deployments. For more info see: Deployment instance roles.
- email string
- Email address of the user.
- invitationPending boolean
- Set to true while the user has not yet accepted their invitation to the organization.
- organizationRole string
- The optional organization role for the member. Can be one of organization-admin,billing-admin. For more info see: Organization roles
- projectElasticsearch OrganizationRoles Members Project Elasticsearch Role[] 
- Roles assigned for elasticsearch projects. For more info see: Serverless elasticsearch roles
- projectObservability OrganizationRoles Members Project Observability Role[] 
- Roles assigned for observability projects. For more info see: Serverless observability roles
- projectSecurity OrganizationRoles Members Project Security Role[] 
- Roles assigned for security projects. For more info see: Serverless security roles
- userId string
- User ID.
- deployment_roles Sequence[OrganizationMembers Deployment Role] 
- Grant access to one or more deployments. For more info see: Deployment instance roles.
- email str
- Email address of the user.
- invitation_pending bool
- Set to true while the user has not yet accepted their invitation to the organization.
- organization_role str
- The optional organization role for the member. Can be one of organization-admin,billing-admin. For more info see: Organization roles
- project_elasticsearch_ Sequence[Organizationroles Members Project Elasticsearch Role] 
- Roles assigned for elasticsearch projects. For more info see: Serverless elasticsearch roles
- project_observability_ Sequence[Organizationroles Members Project Observability Role] 
- Roles assigned for observability projects. For more info see: Serverless observability roles
- project_security_ Sequence[Organizationroles Members Project Security Role] 
- Roles assigned for security projects. For more info see: Serverless security roles
- user_id str
- User ID.
- deploymentRoles List<Property Map>
- Grant access to one or more deployments. For more info see: Deployment instance roles.
- email String
- Email address of the user.
- invitationPending Boolean
- Set to true while the user has not yet accepted their invitation to the organization.
- organizationRole String
- The optional organization role for the member. Can be one of organization-admin,billing-admin. For more info see: Organization roles
- projectElasticsearch List<Property Map>Roles 
- Roles assigned for elasticsearch projects. For more info see: Serverless elasticsearch roles
- projectObservability List<Property Map>Roles 
- Roles assigned for observability projects. For more info see: Serverless observability roles
- projectSecurity List<Property Map>Roles 
- Roles assigned for security projects. For more info see: Serverless security roles
- userId String
- User ID.
OrganizationMembersDeploymentRole, OrganizationMembersDeploymentRoleArgs        
- Role string
- Assigned role. Must be on of viewer,editororadmin.
- AllDeployments bool
- Role applies to all deployments in the organization.
- ApplicationRoles List<string>
- If provided, the user assigned this role assignment will be granted this application role when signing in to the deployment(s) specified in the role assignment.
- DeploymentIds List<string>
- Role applies to deployments listed here.
- Role string
- Assigned role. Must be on of viewer,editororadmin.
- AllDeployments bool
- Role applies to all deployments in the organization.
- ApplicationRoles []string
- If provided, the user assigned this role assignment will be granted this application role when signing in to the deployment(s) specified in the role assignment.
- DeploymentIds []string
- Role applies to deployments listed here.
- role String
- Assigned role. Must be on of viewer,editororadmin.
- allDeployments Boolean
- Role applies to all deployments in the organization.
- applicationRoles List<String>
- If provided, the user assigned this role assignment will be granted this application role when signing in to the deployment(s) specified in the role assignment.
- deploymentIds List<String>
- Role applies to deployments listed here.
- role string
- Assigned role. Must be on of viewer,editororadmin.
- allDeployments boolean
- Role applies to all deployments in the organization.
- applicationRoles string[]
- If provided, the user assigned this role assignment will be granted this application role when signing in to the deployment(s) specified in the role assignment.
- deploymentIds string[]
- Role applies to deployments listed here.
- role str
- Assigned role. Must be on of viewer,editororadmin.
- all_deployments bool
- Role applies to all deployments in the organization.
- application_roles Sequence[str]
- If provided, the user assigned this role assignment will be granted this application role when signing in to the deployment(s) specified in the role assignment.
- deployment_ids Sequence[str]
- Role applies to deployments listed here.
- role String
- Assigned role. Must be on of viewer,editororadmin.
- allDeployments Boolean
- Role applies to all deployments in the organization.
- applicationRoles List<String>
- If provided, the user assigned this role assignment will be granted this application role when signing in to the deployment(s) specified in the role assignment.
- deploymentIds List<String>
- Role applies to deployments listed here.
OrganizationMembersProjectElasticsearchRole, OrganizationMembersProjectElasticsearchRoleArgs          
- Role string
- Assigned role. (Allowed values: admin,developer,viewer)
- AllProjects bool
- Role applies to all projects in the organization.
- ApplicationRoles List<string>
- If provided, the user assigned this role assignment will be granted this application role when signing in to the project(s) specified in the role assignment.
- ProjectIds List<string>
- Role applies to projects listed here.
- Role string
- Assigned role. (Allowed values: admin,developer,viewer)
- AllProjects bool
- Role applies to all projects in the organization.
- ApplicationRoles []string
- If provided, the user assigned this role assignment will be granted this application role when signing in to the project(s) specified in the role assignment.
- ProjectIds []string
- Role applies to projects listed here.
- role String
- Assigned role. (Allowed values: admin,developer,viewer)
- allProjects Boolean
- Role applies to all projects in the organization.
- applicationRoles List<String>
- If provided, the user assigned this role assignment will be granted this application role when signing in to the project(s) specified in the role assignment.
- projectIds List<String>
- Role applies to projects listed here.
- role string
- Assigned role. (Allowed values: admin,developer,viewer)
- allProjects boolean
- Role applies to all projects in the organization.
- applicationRoles string[]
- If provided, the user assigned this role assignment will be granted this application role when signing in to the project(s) specified in the role assignment.
- projectIds string[]
- Role applies to projects listed here.
- role str
- Assigned role. (Allowed values: admin,developer,viewer)
- all_projects bool
- Role applies to all projects in the organization.
- application_roles Sequence[str]
- If provided, the user assigned this role assignment will be granted this application role when signing in to the project(s) specified in the role assignment.
- project_ids Sequence[str]
- Role applies to projects listed here.
- role String
- Assigned role. (Allowed values: admin,developer,viewer)
- allProjects Boolean
- Role applies to all projects in the organization.
- applicationRoles List<String>
- If provided, the user assigned this role assignment will be granted this application role when signing in to the project(s) specified in the role assignment.
- projectIds List<String>
- Role applies to projects listed here.
OrganizationMembersProjectObservabilityRole, OrganizationMembersProjectObservabilityRoleArgs          
- Role string
- Assigned role. (Allowed values: admin,editor,viewer)
- AllProjects bool
- Role applies to all projects in the organization.
- ApplicationRoles List<string>
- If provided, the user assigned this role assignment will be granted this application role when signing in to the project(s) specified in the role assignment.
- ProjectIds List<string>
- Role applies to projects listed here.
- Role string
- Assigned role. (Allowed values: admin,editor,viewer)
- AllProjects bool
- Role applies to all projects in the organization.
- ApplicationRoles []string
- If provided, the user assigned this role assignment will be granted this application role when signing in to the project(s) specified in the role assignment.
- ProjectIds []string
- Role applies to projects listed here.
- role String
- Assigned role. (Allowed values: admin,editor,viewer)
- allProjects Boolean
- Role applies to all projects in the organization.
- applicationRoles List<String>
- If provided, the user assigned this role assignment will be granted this application role when signing in to the project(s) specified in the role assignment.
- projectIds List<String>
- Role applies to projects listed here.
- role string
- Assigned role. (Allowed values: admin,editor,viewer)
- allProjects boolean
- Role applies to all projects in the organization.
- applicationRoles string[]
- If provided, the user assigned this role assignment will be granted this application role when signing in to the project(s) specified in the role assignment.
- projectIds string[]
- Role applies to projects listed here.
- role str
- Assigned role. (Allowed values: admin,editor,viewer)
- all_projects bool
- Role applies to all projects in the organization.
- application_roles Sequence[str]
- If provided, the user assigned this role assignment will be granted this application role when signing in to the project(s) specified in the role assignment.
- project_ids Sequence[str]
- Role applies to projects listed here.
- role String
- Assigned role. (Allowed values: admin,editor,viewer)
- allProjects Boolean
- Role applies to all projects in the organization.
- applicationRoles List<String>
- If provided, the user assigned this role assignment will be granted this application role when signing in to the project(s) specified in the role assignment.
- projectIds List<String>
- Role applies to projects listed here.
OrganizationMembersProjectSecurityRole, OrganizationMembersProjectSecurityRoleArgs          
- Role string
- Assigned role. (Allowed values: admin,editor,viewer,t1-analyst,t2-analyst,t3-analyst,threat-intel-analyst,rule-author,soc-manager,endpoint-operations-analyst,platform-engineer,detections-admin,endpoint-policy-manager)
- AllProjects bool
- Role applies to all projects in the organization.
- ApplicationRoles List<string>
- If provided, the user assigned this role assignment will be granted this application role when signing in to the project(s) specified in the role assignment.
- ProjectIds List<string>
- Role applies to projects listed here.
- Role string
- Assigned role. (Allowed values: admin,editor,viewer,t1-analyst,t2-analyst,t3-analyst,threat-intel-analyst,rule-author,soc-manager,endpoint-operations-analyst,platform-engineer,detections-admin,endpoint-policy-manager)
- AllProjects bool
- Role applies to all projects in the organization.
- ApplicationRoles []string
- If provided, the user assigned this role assignment will be granted this application role when signing in to the project(s) specified in the role assignment.
- ProjectIds []string
- Role applies to projects listed here.
- role String
- Assigned role. (Allowed values: admin,editor,viewer,t1-analyst,t2-analyst,t3-analyst,threat-intel-analyst,rule-author,soc-manager,endpoint-operations-analyst,platform-engineer,detections-admin,endpoint-policy-manager)
- allProjects Boolean
- Role applies to all projects in the organization.
- applicationRoles List<String>
- If provided, the user assigned this role assignment will be granted this application role when signing in to the project(s) specified in the role assignment.
- projectIds List<String>
- Role applies to projects listed here.
- role string
- Assigned role. (Allowed values: admin,editor,viewer,t1-analyst,t2-analyst,t3-analyst,threat-intel-analyst,rule-author,soc-manager,endpoint-operations-analyst,platform-engineer,detections-admin,endpoint-policy-manager)
- allProjects boolean
- Role applies to all projects in the organization.
- applicationRoles string[]
- If provided, the user assigned this role assignment will be granted this application role when signing in to the project(s) specified in the role assignment.
- projectIds string[]
- Role applies to projects listed here.
- role str
- Assigned role. (Allowed values: admin,editor,viewer,t1-analyst,t2-analyst,t3-analyst,threat-intel-analyst,rule-author,soc-manager,endpoint-operations-analyst,platform-engineer,detections-admin,endpoint-policy-manager)
- all_projects bool
- Role applies to all projects in the organization.
- application_roles Sequence[str]
- If provided, the user assigned this role assignment will be granted this application role when signing in to the project(s) specified in the role assignment.
- project_ids Sequence[str]
- Role applies to projects listed here.
- role String
- Assigned role. (Allowed values: admin,editor,viewer,t1-analyst,t2-analyst,t3-analyst,threat-intel-analyst,rule-author,soc-manager,endpoint-operations-analyst,platform-engineer,detections-admin,endpoint-policy-manager)
- allProjects Boolean
- Role applies to all projects in the organization.
- applicationRoles List<String>
- If provided, the user assigned this role assignment will be granted this application role when signing in to the project(s) specified in the role assignment.
- projectIds List<String>
- Role applies to projects listed here.
Package Details
- Repository
- ec pulumi/pulumi-ec
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the ecTerraform Provider.