1. Packages
  2. Akamai
  3. API Docs
  4. IamBlockedUserProperties
Akamai v7.1.0 published on Wednesday, Apr 24, 2024 by Pulumi

akamai.IamBlockedUserProperties

Explore with Pulumi AI

akamai logo
Akamai v7.1.0 published on Wednesday, Apr 24, 2024 by Pulumi

    Create IamBlockedUserProperties Resource

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

    Constructor syntax

    new IamBlockedUserProperties(name: string, args: IamBlockedUserPropertiesArgs, opts?: CustomResourceOptions);
    @overload
    def IamBlockedUserProperties(resource_name: str,
                                 args: IamBlockedUserPropertiesArgs,
                                 opts: Optional[ResourceOptions] = None)
    
    @overload
    def IamBlockedUserProperties(resource_name: str,
                                 opts: Optional[ResourceOptions] = None,
                                 blocked_properties: Optional[Sequence[int]] = None,
                                 group_id: Optional[int] = None,
                                 identity_id: Optional[str] = None)
    func NewIamBlockedUserProperties(ctx *Context, name string, args IamBlockedUserPropertiesArgs, opts ...ResourceOption) (*IamBlockedUserProperties, error)
    public IamBlockedUserProperties(string name, IamBlockedUserPropertiesArgs args, CustomResourceOptions? opts = null)
    public IamBlockedUserProperties(String name, IamBlockedUserPropertiesArgs args)
    public IamBlockedUserProperties(String name, IamBlockedUserPropertiesArgs args, CustomResourceOptions options)
    
    type: akamai:IamBlockedUserProperties
    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 IamBlockedUserPropertiesArgs
    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 IamBlockedUserPropertiesArgs
    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 IamBlockedUserPropertiesArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args IamBlockedUserPropertiesArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args IamBlockedUserPropertiesArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var iamBlockedUserPropertiesResource = new Akamai.IamBlockedUserProperties("iamBlockedUserPropertiesResource", new()
    {
        BlockedProperties = new[]
        {
            0,
        },
        GroupId = 0,
        IdentityId = "string",
    });
    
    example, err := akamai.NewIamBlockedUserProperties(ctx, "iamBlockedUserPropertiesResource", &akamai.IamBlockedUserPropertiesArgs{
    	BlockedProperties: pulumi.IntArray{
    		pulumi.Int(0),
    	},
    	GroupId:    pulumi.Int(0),
    	IdentityId: pulumi.String("string"),
    })
    
    var iamBlockedUserPropertiesResource = new IamBlockedUserProperties("iamBlockedUserPropertiesResource", IamBlockedUserPropertiesArgs.builder()        
        .blockedProperties(0)
        .groupId(0)
        .identityId("string")
        .build());
    
    iam_blocked_user_properties_resource = akamai.IamBlockedUserProperties("iamBlockedUserPropertiesResource",
        blocked_properties=[0],
        group_id=0,
        identity_id="string")
    
    const iamBlockedUserPropertiesResource = new akamai.IamBlockedUserProperties("iamBlockedUserPropertiesResource", {
        blockedProperties: [0],
        groupId: 0,
        identityId: "string",
    });
    
    type: akamai:IamBlockedUserProperties
    properties:
        blockedProperties:
            - 0
        groupId: 0
        identityId: string
    

    IamBlockedUserProperties Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The IamBlockedUserProperties resource accepts the following input properties:

    BlockedProperties List<int>
    List of properties to block for a user
    GroupId int
    A unique identifier for a group
    IdentityId string
    A unique identifier for a user's profile, which corresponds to a user's actual profile or client ID
    BlockedProperties []int
    List of properties to block for a user
    GroupId int
    A unique identifier for a group
    IdentityId string
    A unique identifier for a user's profile, which corresponds to a user's actual profile or client ID
    blockedProperties List<Integer>
    List of properties to block for a user
    groupId Integer
    A unique identifier for a group
    identityId String
    A unique identifier for a user's profile, which corresponds to a user's actual profile or client ID
    blockedProperties number[]
    List of properties to block for a user
    groupId number
    A unique identifier for a group
    identityId string
    A unique identifier for a user's profile, which corresponds to a user's actual profile or client ID
    blocked_properties Sequence[int]
    List of properties to block for a user
    group_id int
    A unique identifier for a group
    identity_id str
    A unique identifier for a user's profile, which corresponds to a user's actual profile or client ID
    blockedProperties List<Number>
    List of properties to block for a user
    groupId Number
    A unique identifier for a group
    identityId String
    A unique identifier for a user's profile, which corresponds to a user's actual profile or client ID

    Outputs

    All input properties are implicitly available as output properties. Additionally, the IamBlockedUserProperties 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 IamBlockedUserProperties Resource

    Get an existing IamBlockedUserProperties 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?: IamBlockedUserPropertiesState, opts?: CustomResourceOptions): IamBlockedUserProperties
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            blocked_properties: Optional[Sequence[int]] = None,
            group_id: Optional[int] = None,
            identity_id: Optional[str] = None) -> IamBlockedUserProperties
    func GetIamBlockedUserProperties(ctx *Context, name string, id IDInput, state *IamBlockedUserPropertiesState, opts ...ResourceOption) (*IamBlockedUserProperties, error)
    public static IamBlockedUserProperties Get(string name, Input<string> id, IamBlockedUserPropertiesState? state, CustomResourceOptions? opts = null)
    public static IamBlockedUserProperties get(String name, Output<String> id, IamBlockedUserPropertiesState 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:
    BlockedProperties List<int>
    List of properties to block for a user
    GroupId int
    A unique identifier for a group
    IdentityId string
    A unique identifier for a user's profile, which corresponds to a user's actual profile or client ID
    BlockedProperties []int
    List of properties to block for a user
    GroupId int
    A unique identifier for a group
    IdentityId string
    A unique identifier for a user's profile, which corresponds to a user's actual profile or client ID
    blockedProperties List<Integer>
    List of properties to block for a user
    groupId Integer
    A unique identifier for a group
    identityId String
    A unique identifier for a user's profile, which corresponds to a user's actual profile or client ID
    blockedProperties number[]
    List of properties to block for a user
    groupId number
    A unique identifier for a group
    identityId string
    A unique identifier for a user's profile, which corresponds to a user's actual profile or client ID
    blocked_properties Sequence[int]
    List of properties to block for a user
    group_id int
    A unique identifier for a group
    identity_id str
    A unique identifier for a user's profile, which corresponds to a user's actual profile or client ID
    blockedProperties List<Number>
    List of properties to block for a user
    groupId Number
    A unique identifier for a group
    identityId String
    A unique identifier for a user's profile, which corresponds to a user's actual profile or client ID

    Package Details

    Repository
    Akamai pulumi/pulumi-akamai
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the akamai Terraform Provider.
    akamai logo
    Akamai v7.1.0 published on Wednesday, Apr 24, 2024 by Pulumi