1. Packages
  2. Keycloak
  3. API Docs
  4. openid
  5. ClientJsPolicy
Keycloak v5.3.1 published on Monday, Mar 11, 2024 by Pulumi

keycloak.openid.ClientJsPolicy

Explore with Pulumi AI

keycloak logo
Keycloak v5.3.1 published on Monday, Mar 11, 2024 by Pulumi

    Create ClientJsPolicy Resource

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

    Constructor syntax

    new ClientJsPolicy(name: string, args: ClientJsPolicyArgs, opts?: CustomResourceOptions);
    @overload
    def ClientJsPolicy(resource_name: str,
                       args: ClientJsPolicyArgs,
                       opts: Optional[ResourceOptions] = None)
    
    @overload
    def ClientJsPolicy(resource_name: str,
                       opts: Optional[ResourceOptions] = None,
                       code: Optional[str] = None,
                       decision_strategy: Optional[str] = None,
                       realm_id: Optional[str] = None,
                       resource_server_id: Optional[str] = None,
                       description: Optional[str] = None,
                       logic: Optional[str] = None,
                       name: Optional[str] = None,
                       type: Optional[str] = None)
    func NewClientJsPolicy(ctx *Context, name string, args ClientJsPolicyArgs, opts ...ResourceOption) (*ClientJsPolicy, error)
    public ClientJsPolicy(string name, ClientJsPolicyArgs args, CustomResourceOptions? opts = null)
    public ClientJsPolicy(String name, ClientJsPolicyArgs args)
    public ClientJsPolicy(String name, ClientJsPolicyArgs args, CustomResourceOptions options)
    
    type: keycloak:openid:ClientJsPolicy
    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 ClientJsPolicyArgs
    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 ClientJsPolicyArgs
    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 ClientJsPolicyArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ClientJsPolicyArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ClientJsPolicyArgs
    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 clientJsPolicyResource = new Keycloak.OpenId.ClientJsPolicy("clientJsPolicyResource", new()
    {
        Code = "string",
        DecisionStrategy = "string",
        RealmId = "string",
        ResourceServerId = "string",
        Description = "string",
        Logic = "string",
        Name = "string",
        Type = "string",
    });
    
    example, err := openid.NewClientJsPolicy(ctx, "clientJsPolicyResource", &openid.ClientJsPolicyArgs{
    	Code:             pulumi.String("string"),
    	DecisionStrategy: pulumi.String("string"),
    	RealmId:          pulumi.String("string"),
    	ResourceServerId: pulumi.String("string"),
    	Description:      pulumi.String("string"),
    	Logic:            pulumi.String("string"),
    	Name:             pulumi.String("string"),
    	Type:             pulumi.String("string"),
    })
    
    var clientJsPolicyResource = new ClientJsPolicy("clientJsPolicyResource", ClientJsPolicyArgs.builder()        
        .code("string")
        .decisionStrategy("string")
        .realmId("string")
        .resourceServerId("string")
        .description("string")
        .logic("string")
        .name("string")
        .type("string")
        .build());
    
    client_js_policy_resource = keycloak.openid.ClientJsPolicy("clientJsPolicyResource",
        code="string",
        decision_strategy="string",
        realm_id="string",
        resource_server_id="string",
        description="string",
        logic="string",
        name="string",
        type="string")
    
    const clientJsPolicyResource = new keycloak.openid.ClientJsPolicy("clientJsPolicyResource", {
        code: "string",
        decisionStrategy: "string",
        realmId: "string",
        resourceServerId: "string",
        description: "string",
        logic: "string",
        name: "string",
        type: "string",
    });
    
    type: keycloak:openid:ClientJsPolicy
    properties:
        code: string
        decisionStrategy: string
        description: string
        logic: string
        name: string
        realmId: string
        resourceServerId: string
        type: string
    

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

    Code string
    DecisionStrategy string
    RealmId string
    ResourceServerId string
    Description string
    Logic string
    Name string
    Type string
    Code string
    DecisionStrategy string
    RealmId string
    ResourceServerId string
    Description string
    Logic string
    Name string
    Type string
    code String
    decisionStrategy String
    realmId String
    resourceServerId String
    description String
    logic String
    name String
    type String
    code string
    decisionStrategy string
    realmId string
    resourceServerId string
    description string
    logic string
    name string
    type string
    code String
    decisionStrategy String
    realmId String
    resourceServerId String
    description String
    logic String
    name String
    type String

    Outputs

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

    Get an existing ClientJsPolicy 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?: ClientJsPolicyState, opts?: CustomResourceOptions): ClientJsPolicy
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            code: Optional[str] = None,
            decision_strategy: Optional[str] = None,
            description: Optional[str] = None,
            logic: Optional[str] = None,
            name: Optional[str] = None,
            realm_id: Optional[str] = None,
            resource_server_id: Optional[str] = None,
            type: Optional[str] = None) -> ClientJsPolicy
    func GetClientJsPolicy(ctx *Context, name string, id IDInput, state *ClientJsPolicyState, opts ...ResourceOption) (*ClientJsPolicy, error)
    public static ClientJsPolicy Get(string name, Input<string> id, ClientJsPolicyState? state, CustomResourceOptions? opts = null)
    public static ClientJsPolicy get(String name, Output<String> id, ClientJsPolicyState 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:
    Code string
    DecisionStrategy string
    Description string
    Logic string
    Name string
    RealmId string
    ResourceServerId string
    Type string
    Code string
    DecisionStrategy string
    Description string
    Logic string
    Name string
    RealmId string
    ResourceServerId string
    Type string
    code String
    decisionStrategy String
    description String
    logic String
    name String
    realmId String
    resourceServerId String
    type String
    code string
    decisionStrategy string
    description string
    logic string
    name string
    realmId string
    resourceServerId string
    type string
    code String
    decisionStrategy String
    description String
    logic String
    name String
    realmId String
    resourceServerId String
    type String

    Package Details

    Repository
    Keycloak pulumi/pulumi-keycloak
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the keycloak Terraform Provider.
    keycloak logo
    Keycloak v5.3.1 published on Monday, Mar 11, 2024 by Pulumi