1. Packages
  2. Prismacloud Provider
  3. API Docs
  4. UserRole
prismacloud 1.7.0 published on Monday, Apr 14, 2025 by paloaltonetworks

prismacloud.UserRole

Explore with Pulumi AI

prismacloud logo
prismacloud 1.7.0 published on Monday, Apr 14, 2025 by paloaltonetworks

    Manage an user role.

    Create UserRole Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new UserRole(name: string, args: UserRoleArgs, opts?: CustomResourceOptions);
    @overload
    def UserRole(resource_name: str,
                 args: UserRoleArgs,
                 opts: Optional[ResourceOptions] = None)
    
    @overload
    def UserRole(resource_name: str,
                 opts: Optional[ResourceOptions] = None,
                 role_type: Optional[str] = None,
                 account_group_ids: Optional[Sequence[str]] = None,
                 additional_attributes: Optional[UserRoleAdditionalAttributesArgs] = None,
                 code_repository_ids: Optional[Sequence[str]] = None,
                 delete_associated_users: Optional[bool] = None,
                 description: Optional[str] = None,
                 name: Optional[str] = None,
                 resource_list_ids: Optional[Sequence[str]] = None,
                 restrict_dismissal_access: Optional[bool] = None,
                 user_role_id: Optional[str] = None)
    func NewUserRole(ctx *Context, name string, args UserRoleArgs, opts ...ResourceOption) (*UserRole, error)
    public UserRole(string name, UserRoleArgs args, CustomResourceOptions? opts = null)
    public UserRole(String name, UserRoleArgs args)
    public UserRole(String name, UserRoleArgs args, CustomResourceOptions options)
    
    type: prismacloud:UserRole
    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 UserRoleArgs
    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 UserRoleArgs
    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 UserRoleArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args UserRoleArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args UserRoleArgs
    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 userRoleResource = new Prismacloud.UserRole("userRoleResource", new()
    {
        RoleType = "string",
        AccountGroupIds = new[]
        {
            "string",
        },
        AdditionalAttributes = new Prismacloud.Inputs.UserRoleAdditionalAttributesArgs
        {
            HasDefenderPermissions = false,
            OnlyAllowCiAccess = false,
            OnlyAllowComputeAccess = false,
            OnlyAllowReadAccess = false,
        },
        CodeRepositoryIds = new[]
        {
            "string",
        },
        DeleteAssociatedUsers = false,
        Description = "string",
        Name = "string",
        ResourceListIds = new[]
        {
            "string",
        },
        RestrictDismissalAccess = false,
        UserRoleId = "string",
    });
    
    example, err := prismacloud.NewUserRole(ctx, "userRoleResource", &prismacloud.UserRoleArgs{
    	RoleType: pulumi.String("string"),
    	AccountGroupIds: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	AdditionalAttributes: &prismacloud.UserRoleAdditionalAttributesArgs{
    		HasDefenderPermissions: pulumi.Bool(false),
    		OnlyAllowCiAccess:      pulumi.Bool(false),
    		OnlyAllowComputeAccess: pulumi.Bool(false),
    		OnlyAllowReadAccess:    pulumi.Bool(false),
    	},
    	CodeRepositoryIds: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	DeleteAssociatedUsers: pulumi.Bool(false),
    	Description:           pulumi.String("string"),
    	Name:                  pulumi.String("string"),
    	ResourceListIds: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	RestrictDismissalAccess: pulumi.Bool(false),
    	UserRoleId:              pulumi.String("string"),
    })
    
    var userRoleResource = new UserRole("userRoleResource", UserRoleArgs.builder()
        .roleType("string")
        .accountGroupIds("string")
        .additionalAttributes(UserRoleAdditionalAttributesArgs.builder()
            .hasDefenderPermissions(false)
            .onlyAllowCiAccess(false)
            .onlyAllowComputeAccess(false)
            .onlyAllowReadAccess(false)
            .build())
        .codeRepositoryIds("string")
        .deleteAssociatedUsers(false)
        .description("string")
        .name("string")
        .resourceListIds("string")
        .restrictDismissalAccess(false)
        .userRoleId("string")
        .build());
    
    user_role_resource = prismacloud.UserRole("userRoleResource",
        role_type="string",
        account_group_ids=["string"],
        additional_attributes={
            "has_defender_permissions": False,
            "only_allow_ci_access": False,
            "only_allow_compute_access": False,
            "only_allow_read_access": False,
        },
        code_repository_ids=["string"],
        delete_associated_users=False,
        description="string",
        name="string",
        resource_list_ids=["string"],
        restrict_dismissal_access=False,
        user_role_id="string")
    
    const userRoleResource = new prismacloud.UserRole("userRoleResource", {
        roleType: "string",
        accountGroupIds: ["string"],
        additionalAttributes: {
            hasDefenderPermissions: false,
            onlyAllowCiAccess: false,
            onlyAllowComputeAccess: false,
            onlyAllowReadAccess: false,
        },
        codeRepositoryIds: ["string"],
        deleteAssociatedUsers: false,
        description: "string",
        name: "string",
        resourceListIds: ["string"],
        restrictDismissalAccess: false,
        userRoleId: "string",
    });
    
    type: prismacloud:UserRole
    properties:
        accountGroupIds:
            - string
        additionalAttributes:
            hasDefenderPermissions: false
            onlyAllowCiAccess: false
            onlyAllowComputeAccess: false
            onlyAllowReadAccess: false
        codeRepositoryIds:
            - string
        deleteAssociatedUsers: false
        description: string
        name: string
        resourceListIds:
            - string
        restrictDismissalAccess: false
        roleType: string
        userRoleId: string
    

    UserRole 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 UserRole resource accepts the following input properties:

    RoleType string
    User Role Type. Default ( Valid values are System Admin, Account Group Admin, Account Group Read Only, Cloud Provisioning Admin, Account and Cloud Provisioning Admin, Build and Deploy Security ) or Custom Permission Group Name.
    AccountGroupIds List<string>
    List of accessible account group IDs. (Can't be set if role_type is System Admin or Build and Deploy Security)
    AdditionalAttributes UserRoleAdditionalAttributes
    An Additional attributes spec, as defined below.
    CodeRepositoryIds List<string>
    List of code repository IDs.
    DeleteAssociatedUsers bool
    Delete associated users (Note: When the delete_associated_users flag is set to true, all associated users are deleted before the user role is deleted when the resource is destroyed).
    Description string
    Description.
    Name string
    Name of the role.
    ResourceListIds List<string>
    List of resource list IDs.
    RestrictDismissalAccess bool
    Restrict dismissal access.
    UserRoleId string
    RoleType string
    User Role Type. Default ( Valid values are System Admin, Account Group Admin, Account Group Read Only, Cloud Provisioning Admin, Account and Cloud Provisioning Admin, Build and Deploy Security ) or Custom Permission Group Name.
    AccountGroupIds []string
    List of accessible account group IDs. (Can't be set if role_type is System Admin or Build and Deploy Security)
    AdditionalAttributes UserRoleAdditionalAttributesArgs
    An Additional attributes spec, as defined below.
    CodeRepositoryIds []string
    List of code repository IDs.
    DeleteAssociatedUsers bool
    Delete associated users (Note: When the delete_associated_users flag is set to true, all associated users are deleted before the user role is deleted when the resource is destroyed).
    Description string
    Description.
    Name string
    Name of the role.
    ResourceListIds []string
    List of resource list IDs.
    RestrictDismissalAccess bool
    Restrict dismissal access.
    UserRoleId string
    roleType String
    User Role Type. Default ( Valid values are System Admin, Account Group Admin, Account Group Read Only, Cloud Provisioning Admin, Account and Cloud Provisioning Admin, Build and Deploy Security ) or Custom Permission Group Name.
    accountGroupIds List<String>
    List of accessible account group IDs. (Can't be set if role_type is System Admin or Build and Deploy Security)
    additionalAttributes UserRoleAdditionalAttributes
    An Additional attributes spec, as defined below.
    codeRepositoryIds List<String>
    List of code repository IDs.
    deleteAssociatedUsers Boolean
    Delete associated users (Note: When the delete_associated_users flag is set to true, all associated users are deleted before the user role is deleted when the resource is destroyed).
    description String
    Description.
    name String
    Name of the role.
    resourceListIds List<String>
    List of resource list IDs.
    restrictDismissalAccess Boolean
    Restrict dismissal access.
    userRoleId String
    roleType string
    User Role Type. Default ( Valid values are System Admin, Account Group Admin, Account Group Read Only, Cloud Provisioning Admin, Account and Cloud Provisioning Admin, Build and Deploy Security ) or Custom Permission Group Name.
    accountGroupIds string[]
    List of accessible account group IDs. (Can't be set if role_type is System Admin or Build and Deploy Security)
    additionalAttributes UserRoleAdditionalAttributes
    An Additional attributes spec, as defined below.
    codeRepositoryIds string[]
    List of code repository IDs.
    deleteAssociatedUsers boolean
    Delete associated users (Note: When the delete_associated_users flag is set to true, all associated users are deleted before the user role is deleted when the resource is destroyed).
    description string
    Description.
    name string
    Name of the role.
    resourceListIds string[]
    List of resource list IDs.
    restrictDismissalAccess boolean
    Restrict dismissal access.
    userRoleId string
    role_type str
    User Role Type. Default ( Valid values are System Admin, Account Group Admin, Account Group Read Only, Cloud Provisioning Admin, Account and Cloud Provisioning Admin, Build and Deploy Security ) or Custom Permission Group Name.
    account_group_ids Sequence[str]
    List of accessible account group IDs. (Can't be set if role_type is System Admin or Build and Deploy Security)
    additional_attributes UserRoleAdditionalAttributesArgs
    An Additional attributes spec, as defined below.
    code_repository_ids Sequence[str]
    List of code repository IDs.
    delete_associated_users bool
    Delete associated users (Note: When the delete_associated_users flag is set to true, all associated users are deleted before the user role is deleted when the resource is destroyed).
    description str
    Description.
    name str
    Name of the role.
    resource_list_ids Sequence[str]
    List of resource list IDs.
    restrict_dismissal_access bool
    Restrict dismissal access.
    user_role_id str
    roleType String
    User Role Type. Default ( Valid values are System Admin, Account Group Admin, Account Group Read Only, Cloud Provisioning Admin, Account and Cloud Provisioning Admin, Build and Deploy Security ) or Custom Permission Group Name.
    accountGroupIds List<String>
    List of accessible account group IDs. (Can't be set if role_type is System Admin or Build and Deploy Security)
    additionalAttributes Property Map
    An Additional attributes spec, as defined below.
    codeRepositoryIds List<String>
    List of code repository IDs.
    deleteAssociatedUsers Boolean
    Delete associated users (Note: When the delete_associated_users flag is set to true, all associated users are deleted before the user role is deleted when the resource is destroyed).
    description String
    Description.
    name String
    Name of the role.
    resourceListIds List<String>
    List of resource list IDs.
    restrictDismissalAccess Boolean
    Restrict dismissal access.
    userRoleId String

    Outputs

    All input properties are implicitly available as output properties. Additionally, the UserRole resource produces the following output properties:

    AccountGroups List<UserRoleAccountGroup>
    List of account groups, as defined below.
    AssociatedUsers List<string>
    List of associated application users which cannot exist in the system without the user role.
    Id string
    The provider-assigned unique ID for this managed resource.
    LastModifiedBy string
    Last modified by
    LastModifiedTs double
    (int) Last modified timestamp.
    RoleId string
    Role UUID.
    AccountGroups []UserRoleAccountGroup
    List of account groups, as defined below.
    AssociatedUsers []string
    List of associated application users which cannot exist in the system without the user role.
    Id string
    The provider-assigned unique ID for this managed resource.
    LastModifiedBy string
    Last modified by
    LastModifiedTs float64
    (int) Last modified timestamp.
    RoleId string
    Role UUID.
    accountGroups List<UserRoleAccountGroup>
    List of account groups, as defined below.
    associatedUsers List<String>
    List of associated application users which cannot exist in the system without the user role.
    id String
    The provider-assigned unique ID for this managed resource.
    lastModifiedBy String
    Last modified by
    lastModifiedTs Double
    (int) Last modified timestamp.
    roleId String
    Role UUID.
    accountGroups UserRoleAccountGroup[]
    List of account groups, as defined below.
    associatedUsers string[]
    List of associated application users which cannot exist in the system without the user role.
    id string
    The provider-assigned unique ID for this managed resource.
    lastModifiedBy string
    Last modified by
    lastModifiedTs number
    (int) Last modified timestamp.
    roleId string
    Role UUID.
    account_groups Sequence[UserRoleAccountGroup]
    List of account groups, as defined below.
    associated_users Sequence[str]
    List of associated application users which cannot exist in the system without the user role.
    id str
    The provider-assigned unique ID for this managed resource.
    last_modified_by str
    Last modified by
    last_modified_ts float
    (int) Last modified timestamp.
    role_id str
    Role UUID.
    accountGroups List<Property Map>
    List of account groups, as defined below.
    associatedUsers List<String>
    List of associated application users which cannot exist in the system without the user role.
    id String
    The provider-assigned unique ID for this managed resource.
    lastModifiedBy String
    Last modified by
    lastModifiedTs Number
    (int) Last modified timestamp.
    roleId String
    Role UUID.

    Look up Existing UserRole Resource

    Get an existing UserRole 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?: UserRoleState, opts?: CustomResourceOptions): UserRole
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            account_group_ids: Optional[Sequence[str]] = None,
            account_groups: Optional[Sequence[UserRoleAccountGroupArgs]] = None,
            additional_attributes: Optional[UserRoleAdditionalAttributesArgs] = None,
            associated_users: Optional[Sequence[str]] = None,
            code_repository_ids: Optional[Sequence[str]] = None,
            delete_associated_users: Optional[bool] = None,
            description: Optional[str] = None,
            last_modified_by: Optional[str] = None,
            last_modified_ts: Optional[float] = None,
            name: Optional[str] = None,
            resource_list_ids: Optional[Sequence[str]] = None,
            restrict_dismissal_access: Optional[bool] = None,
            role_id: Optional[str] = None,
            role_type: Optional[str] = None,
            user_role_id: Optional[str] = None) -> UserRole
    func GetUserRole(ctx *Context, name string, id IDInput, state *UserRoleState, opts ...ResourceOption) (*UserRole, error)
    public static UserRole Get(string name, Input<string> id, UserRoleState? state, CustomResourceOptions? opts = null)
    public static UserRole get(String name, Output<String> id, UserRoleState state, CustomResourceOptions options)
    resources:  _:    type: prismacloud:UserRole    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.
    The following state arguments are supported:
    AccountGroupIds List<string>
    List of accessible account group IDs. (Can't be set if role_type is System Admin or Build and Deploy Security)
    AccountGroups List<UserRoleAccountGroup>
    List of account groups, as defined below.
    AdditionalAttributes UserRoleAdditionalAttributes
    An Additional attributes spec, as defined below.
    AssociatedUsers List<string>
    List of associated application users which cannot exist in the system without the user role.
    CodeRepositoryIds List<string>
    List of code repository IDs.
    DeleteAssociatedUsers bool
    Delete associated users (Note: When the delete_associated_users flag is set to true, all associated users are deleted before the user role is deleted when the resource is destroyed).
    Description string
    Description.
    LastModifiedBy string
    Last modified by
    LastModifiedTs double
    (int) Last modified timestamp.
    Name string
    Name of the role.
    ResourceListIds List<string>
    List of resource list IDs.
    RestrictDismissalAccess bool
    Restrict dismissal access.
    RoleId string
    Role UUID.
    RoleType string
    User Role Type. Default ( Valid values are System Admin, Account Group Admin, Account Group Read Only, Cloud Provisioning Admin, Account and Cloud Provisioning Admin, Build and Deploy Security ) or Custom Permission Group Name.
    UserRoleId string
    AccountGroupIds []string
    List of accessible account group IDs. (Can't be set if role_type is System Admin or Build and Deploy Security)
    AccountGroups []UserRoleAccountGroupArgs
    List of account groups, as defined below.
    AdditionalAttributes UserRoleAdditionalAttributesArgs
    An Additional attributes spec, as defined below.
    AssociatedUsers []string
    List of associated application users which cannot exist in the system without the user role.
    CodeRepositoryIds []string
    List of code repository IDs.
    DeleteAssociatedUsers bool
    Delete associated users (Note: When the delete_associated_users flag is set to true, all associated users are deleted before the user role is deleted when the resource is destroyed).
    Description string
    Description.
    LastModifiedBy string
    Last modified by
    LastModifiedTs float64
    (int) Last modified timestamp.
    Name string
    Name of the role.
    ResourceListIds []string
    List of resource list IDs.
    RestrictDismissalAccess bool
    Restrict dismissal access.
    RoleId string
    Role UUID.
    RoleType string
    User Role Type. Default ( Valid values are System Admin, Account Group Admin, Account Group Read Only, Cloud Provisioning Admin, Account and Cloud Provisioning Admin, Build and Deploy Security ) or Custom Permission Group Name.
    UserRoleId string
    accountGroupIds List<String>
    List of accessible account group IDs. (Can't be set if role_type is System Admin or Build and Deploy Security)
    accountGroups List<UserRoleAccountGroup>
    List of account groups, as defined below.
    additionalAttributes UserRoleAdditionalAttributes
    An Additional attributes spec, as defined below.
    associatedUsers List<String>
    List of associated application users which cannot exist in the system without the user role.
    codeRepositoryIds List<String>
    List of code repository IDs.
    deleteAssociatedUsers Boolean
    Delete associated users (Note: When the delete_associated_users flag is set to true, all associated users are deleted before the user role is deleted when the resource is destroyed).
    description String
    Description.
    lastModifiedBy String
    Last modified by
    lastModifiedTs Double
    (int) Last modified timestamp.
    name String
    Name of the role.
    resourceListIds List<String>
    List of resource list IDs.
    restrictDismissalAccess Boolean
    Restrict dismissal access.
    roleId String
    Role UUID.
    roleType String
    User Role Type. Default ( Valid values are System Admin, Account Group Admin, Account Group Read Only, Cloud Provisioning Admin, Account and Cloud Provisioning Admin, Build and Deploy Security ) or Custom Permission Group Name.
    userRoleId String
    accountGroupIds string[]
    List of accessible account group IDs. (Can't be set if role_type is System Admin or Build and Deploy Security)
    accountGroups UserRoleAccountGroup[]
    List of account groups, as defined below.
    additionalAttributes UserRoleAdditionalAttributes
    An Additional attributes spec, as defined below.
    associatedUsers string[]
    List of associated application users which cannot exist in the system without the user role.
    codeRepositoryIds string[]
    List of code repository IDs.
    deleteAssociatedUsers boolean
    Delete associated users (Note: When the delete_associated_users flag is set to true, all associated users are deleted before the user role is deleted when the resource is destroyed).
    description string
    Description.
    lastModifiedBy string
    Last modified by
    lastModifiedTs number
    (int) Last modified timestamp.
    name string
    Name of the role.
    resourceListIds string[]
    List of resource list IDs.
    restrictDismissalAccess boolean
    Restrict dismissal access.
    roleId string
    Role UUID.
    roleType string
    User Role Type. Default ( Valid values are System Admin, Account Group Admin, Account Group Read Only, Cloud Provisioning Admin, Account and Cloud Provisioning Admin, Build and Deploy Security ) or Custom Permission Group Name.
    userRoleId string
    account_group_ids Sequence[str]
    List of accessible account group IDs. (Can't be set if role_type is System Admin or Build and Deploy Security)
    account_groups Sequence[UserRoleAccountGroupArgs]
    List of account groups, as defined below.
    additional_attributes UserRoleAdditionalAttributesArgs
    An Additional attributes spec, as defined below.
    associated_users Sequence[str]
    List of associated application users which cannot exist in the system without the user role.
    code_repository_ids Sequence[str]
    List of code repository IDs.
    delete_associated_users bool
    Delete associated users (Note: When the delete_associated_users flag is set to true, all associated users are deleted before the user role is deleted when the resource is destroyed).
    description str
    Description.
    last_modified_by str
    Last modified by
    last_modified_ts float
    (int) Last modified timestamp.
    name str
    Name of the role.
    resource_list_ids Sequence[str]
    List of resource list IDs.
    restrict_dismissal_access bool
    Restrict dismissal access.
    role_id str
    Role UUID.
    role_type str
    User Role Type. Default ( Valid values are System Admin, Account Group Admin, Account Group Read Only, Cloud Provisioning Admin, Account and Cloud Provisioning Admin, Build and Deploy Security ) or Custom Permission Group Name.
    user_role_id str
    accountGroupIds List<String>
    List of accessible account group IDs. (Can't be set if role_type is System Admin or Build and Deploy Security)
    accountGroups List<Property Map>
    List of account groups, as defined below.
    additionalAttributes Property Map
    An Additional attributes spec, as defined below.
    associatedUsers List<String>
    List of associated application users which cannot exist in the system without the user role.
    codeRepositoryIds List<String>
    List of code repository IDs.
    deleteAssociatedUsers Boolean
    Delete associated users (Note: When the delete_associated_users flag is set to true, all associated users are deleted before the user role is deleted when the resource is destroyed).
    description String
    Description.
    lastModifiedBy String
    Last modified by
    lastModifiedTs Number
    (int) Last modified timestamp.
    name String
    Name of the role.
    resourceListIds List<String>
    List of resource list IDs.
    restrictDismissalAccess Boolean
    Restrict dismissal access.
    roleId String
    Role UUID.
    roleType String
    User Role Type. Default ( Valid values are System Admin, Account Group Admin, Account Group Read Only, Cloud Provisioning Admin, Account and Cloud Provisioning Admin, Build and Deploy Security ) or Custom Permission Group Name.
    userRoleId String

    Supporting Types

    UserRoleAccountGroup, UserRoleAccountGroupArgs

    GroupId string
    The group ID.
    Name string
    Name of the role.
    GroupId string
    The group ID.
    Name string
    Name of the role.
    groupId String
    The group ID.
    name String
    Name of the role.
    groupId string
    The group ID.
    name string
    Name of the role.
    group_id str
    The group ID.
    name str
    Name of the role.
    groupId String
    The group ID.
    name String
    Name of the role.

    UserRoleAdditionalAttributes, UserRoleAdditionalAttributesArgs

    HasDefenderPermissions bool
    Has defender Permissions
    OnlyAllowCiAccess bool
    Allows only CI Access
    OnlyAllowComputeAccess bool
    Give access to only compute tab and access key tab
    OnlyAllowReadAccess bool
    Allow only read access
    HasDefenderPermissions bool
    Has defender Permissions
    OnlyAllowCiAccess bool
    Allows only CI Access
    OnlyAllowComputeAccess bool
    Give access to only compute tab and access key tab
    OnlyAllowReadAccess bool
    Allow only read access
    hasDefenderPermissions Boolean
    Has defender Permissions
    onlyAllowCiAccess Boolean
    Allows only CI Access
    onlyAllowComputeAccess Boolean
    Give access to only compute tab and access key tab
    onlyAllowReadAccess Boolean
    Allow only read access
    hasDefenderPermissions boolean
    Has defender Permissions
    onlyAllowCiAccess boolean
    Allows only CI Access
    onlyAllowComputeAccess boolean
    Give access to only compute tab and access key tab
    onlyAllowReadAccess boolean
    Allow only read access
    has_defender_permissions bool
    Has defender Permissions
    only_allow_ci_access bool
    Allows only CI Access
    only_allow_compute_access bool
    Give access to only compute tab and access key tab
    only_allow_read_access bool
    Allow only read access
    hasDefenderPermissions Boolean
    Has defender Permissions
    onlyAllowCiAccess Boolean
    Allows only CI Access
    onlyAllowComputeAccess Boolean
    Give access to only compute tab and access key tab
    onlyAllowReadAccess Boolean
    Allow only read access

    Import

    Resources can be imported using the role ID:

    $ pulumi import prismacloud:index/userRole:UserRole example 11111-22-33
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    prismacloud paloaltonetworks/terraform-provider-prismacloud
    License
    Notes
    This Pulumi package is based on the prismacloud Terraform Provider.
    prismacloud logo
    prismacloud 1.7.0 published on Monday, Apr 14, 2025 by paloaltonetworks