1. Packages
  2. Ec Provider
  3. API Docs
  4. Organization
ElasticCloud (EC) v0.10.2 published on Wednesday, Oct 2, 2024 by Pulumi

ec.Organization

Explore with Pulumi AI

ec logo
ElasticCloud (EC) v0.10.2 published on Wednesday, Oct 2, 2024 by Pulumi

    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.ElasticCloud.Inputs.OrganizationMembersArgs>
    Manages the members of an Elastic Cloud organization. The key of each entry should be the email of the member.
    Members map[string]OrganizationMembersArgs
    Manages the members of an Elastic Cloud organization. The key of each entry should be the email of the member.
    members Map<String,OrganizationMembersArgs>
    Manages the members of an Elastic Cloud organization. The key of each entry should be the email of the member.
    members {[key: string]: OrganizationMembersArgs}
    Manages the members of an Elastic Cloud organization. The key of each entry should be the email of the member.
    members Mapping[str, OrganizationMembersArgs]
    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) -> Organization
    func 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)
    Resource lookup is not supported in YAML
    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.
    The following state arguments are supported:
    Members Dictionary<string, Pulumi.ElasticCloud.Inputs.OrganizationMembersArgs>
    Manages the members of an Elastic Cloud organization. The key of each entry should be the email of the member.
    Members map[string]OrganizationMembersArgs
    Manages the members of an Elastic Cloud organization. The key of each entry should be the email of the member.
    members Map<String,OrganizationMembersArgs>
    Manages the members of an Elastic Cloud organization. The key of each entry should be the email of the member.
    members {[key: string]: OrganizationMembersArgs}
    Manages the members of an Elastic Cloud organization. The key of each entry should be the email of the member.
    members Mapping[str, OrganizationMembersArgs]
    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.ElasticCloud.Inputs.OrganizationMembersDeploymentRole>
    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
    ProjectElasticsearchRoles List<Pulumi.ElasticCloud.Inputs.OrganizationMembersProjectElasticsearchRole>
    Roles assigned for elasticsearch projects. For more info see: Serverless elasticsearch roles
    ProjectObservabilityRoles List<Pulumi.ElasticCloud.Inputs.OrganizationMembersProjectObservabilityRole>
    Roles assigned for observability projects. For more info see: Serverless observability roles
    ProjectSecurityRoles List<Pulumi.ElasticCloud.Inputs.OrganizationMembersProjectSecurityRole>
    Roles assigned for security projects. For more info see: Serverless security roles
    UserId string
    User ID.
    DeploymentRoles []OrganizationMembersDeploymentRole
    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
    ProjectElasticsearchRoles []OrganizationMembersProjectElasticsearchRole
    Roles assigned for elasticsearch projects. For more info see: Serverless elasticsearch roles
    ProjectObservabilityRoles []OrganizationMembersProjectObservabilityRole
    Roles assigned for observability projects. For more info see: Serverless observability roles
    ProjectSecurityRoles []OrganizationMembersProjectSecurityRole
    Roles assigned for security projects. For more info see: Serverless security roles
    UserId string
    User ID.
    deploymentRoles List<OrganizationMembersDeploymentRole>
    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
    projectElasticsearchRoles List<OrganizationMembersProjectElasticsearchRole>
    Roles assigned for elasticsearch projects. For more info see: Serverless elasticsearch roles
    projectObservabilityRoles List<OrganizationMembersProjectObservabilityRole>
    Roles assigned for observability projects. For more info see: Serverless observability roles
    projectSecurityRoles List<OrganizationMembersProjectSecurityRole>
    Roles assigned for security projects. For more info see: Serverless security roles
    userId String
    User ID.
    deploymentRoles OrganizationMembersDeploymentRole[]
    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
    projectElasticsearchRoles OrganizationMembersProjectElasticsearchRole[]
    Roles assigned for elasticsearch projects. For more info see: Serverless elasticsearch roles
    projectObservabilityRoles OrganizationMembersProjectObservabilityRole[]
    Roles assigned for observability projects. For more info see: Serverless observability roles
    projectSecurityRoles OrganizationMembersProjectSecurityRole[]
    Roles assigned for security projects. For more info see: Serverless security roles
    userId string
    User ID.
    deployment_roles Sequence[OrganizationMembersDeploymentRole]
    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_roles Sequence[OrganizationMembersProjectElasticsearchRole]
    Roles assigned for elasticsearch projects. For more info see: Serverless elasticsearch roles
    project_observability_roles Sequence[OrganizationMembersProjectObservabilityRole]
    Roles assigned for observability projects. For more info see: Serverless observability roles
    project_security_roles Sequence[OrganizationMembersProjectSecurityRole]
    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
    projectElasticsearchRoles List<Property Map>
    Roles assigned for elasticsearch projects. For more info see: Serverless elasticsearch roles
    projectObservabilityRoles List<Property Map>
    Roles assigned for observability projects. For more info see: Serverless observability roles
    projectSecurityRoles List<Property Map>
    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, editor or admin.
    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, editor or admin.
    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, editor or admin.
    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, editor or admin.
    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, editor or admin.
    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, editor or admin.
    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 ec Terraform Provider.
    ec logo
    ElasticCloud (EC) v0.10.2 published on Wednesday, Oct 2, 2024 by Pulumi