1. Packages
  2. Akeyless Provider
  3. API Docs
  4. TargetWeb
akeyless 1.9.0 published on Monday, Apr 14, 2025 by akeyless-community

akeyless.TargetWeb

Explore with Pulumi AI

akeyless logo
akeyless 1.9.0 published on Monday, Apr 14, 2025 by akeyless-community

    Web Target resource

    Create TargetWeb Resource

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

    Constructor syntax

    new TargetWeb(name: string, args: TargetWebArgs, opts?: CustomResourceOptions);
    @overload
    def TargetWeb(resource_name: str,
                  args: TargetWebArgs,
                  opts: Optional[ResourceOptions] = None)
    
    @overload
    def TargetWeb(resource_name: str,
                  opts: Optional[ResourceOptions] = None,
                  url: Optional[str] = None,
                  description: Optional[str] = None,
                  key: Optional[str] = None,
                  name: Optional[str] = None,
                  target_web_id: Optional[str] = None)
    func NewTargetWeb(ctx *Context, name string, args TargetWebArgs, opts ...ResourceOption) (*TargetWeb, error)
    public TargetWeb(string name, TargetWebArgs args, CustomResourceOptions? opts = null)
    public TargetWeb(String name, TargetWebArgs args)
    public TargetWeb(String name, TargetWebArgs args, CustomResourceOptions options)
    
    type: akeyless:TargetWeb
    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 TargetWebArgs
    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 TargetWebArgs
    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 TargetWebArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args TargetWebArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args TargetWebArgs
    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 targetWebResource = new Akeyless.TargetWeb("targetWebResource", new()
    {
        Url = "string",
        Description = "string",
        Key = "string",
        Name = "string",
        TargetWebId = "string",
    });
    
    example, err := akeyless.NewTargetWeb(ctx, "targetWebResource", &akeyless.TargetWebArgs{
    	Url:         pulumi.String("string"),
    	Description: pulumi.String("string"),
    	Key:         pulumi.String("string"),
    	Name:        pulumi.String("string"),
    	TargetWebId: pulumi.String("string"),
    })
    
    var targetWebResource = new TargetWeb("targetWebResource", TargetWebArgs.builder()
        .url("string")
        .description("string")
        .key("string")
        .name("string")
        .targetWebId("string")
        .build());
    
    target_web_resource = akeyless.TargetWeb("targetWebResource",
        url="string",
        description="string",
        key="string",
        name="string",
        target_web_id="string")
    
    const targetWebResource = new akeyless.TargetWeb("targetWebResource", {
        url: "string",
        description: "string",
        key: "string",
        name: "string",
        targetWebId: "string",
    });
    
    type: akeyless:TargetWeb
    properties:
        description: string
        key: string
        name: string
        targetWebId: string
        url: string
    

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

    Url string
    Web target URL
    Description string
    Description of the object
    Key string
    Key name. The key will be used to encrypt the target secret value. If key name is not specified, the account default protection key is used
    Name string
    Target name
    TargetWebId string
    The ID of this resource.
    Url string
    Web target URL
    Description string
    Description of the object
    Key string
    Key name. The key will be used to encrypt the target secret value. If key name is not specified, the account default protection key is used
    Name string
    Target name
    TargetWebId string
    The ID of this resource.
    url String
    Web target URL
    description String
    Description of the object
    key String
    Key name. The key will be used to encrypt the target secret value. If key name is not specified, the account default protection key is used
    name String
    Target name
    targetWebId String
    The ID of this resource.
    url string
    Web target URL
    description string
    Description of the object
    key string
    Key name. The key will be used to encrypt the target secret value. If key name is not specified, the account default protection key is used
    name string
    Target name
    targetWebId string
    The ID of this resource.
    url str
    Web target URL
    description str
    Description of the object
    key str
    Key name. The key will be used to encrypt the target secret value. If key name is not specified, the account default protection key is used
    name str
    Target name
    target_web_id str
    The ID of this resource.
    url String
    Web target URL
    description String
    Description of the object
    key String
    Key name. The key will be used to encrypt the target secret value. If key name is not specified, the account default protection key is used
    name String
    Target name
    targetWebId String
    The ID of this resource.

    Outputs

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

    Get an existing TargetWeb 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?: TargetWebState, opts?: CustomResourceOptions): TargetWeb
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            description: Optional[str] = None,
            key: Optional[str] = None,
            name: Optional[str] = None,
            target_web_id: Optional[str] = None,
            url: Optional[str] = None) -> TargetWeb
    func GetTargetWeb(ctx *Context, name string, id IDInput, state *TargetWebState, opts ...ResourceOption) (*TargetWeb, error)
    public static TargetWeb Get(string name, Input<string> id, TargetWebState? state, CustomResourceOptions? opts = null)
    public static TargetWeb get(String name, Output<String> id, TargetWebState state, CustomResourceOptions options)
    resources:  _:    type: akeyless:TargetWeb    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:
    Description string
    Description of the object
    Key string
    Key name. The key will be used to encrypt the target secret value. If key name is not specified, the account default protection key is used
    Name string
    Target name
    TargetWebId string
    The ID of this resource.
    Url string
    Web target URL
    Description string
    Description of the object
    Key string
    Key name. The key will be used to encrypt the target secret value. If key name is not specified, the account default protection key is used
    Name string
    Target name
    TargetWebId string
    The ID of this resource.
    Url string
    Web target URL
    description String
    Description of the object
    key String
    Key name. The key will be used to encrypt the target secret value. If key name is not specified, the account default protection key is used
    name String
    Target name
    targetWebId String
    The ID of this resource.
    url String
    Web target URL
    description string
    Description of the object
    key string
    Key name. The key will be used to encrypt the target secret value. If key name is not specified, the account default protection key is used
    name string
    Target name
    targetWebId string
    The ID of this resource.
    url string
    Web target URL
    description str
    Description of the object
    key str
    Key name. The key will be used to encrypt the target secret value. If key name is not specified, the account default protection key is used
    name str
    Target name
    target_web_id str
    The ID of this resource.
    url str
    Web target URL
    description String
    Description of the object
    key String
    Key name. The key will be used to encrypt the target secret value. If key name is not specified, the account default protection key is used
    name String
    Target name
    targetWebId String
    The ID of this resource.
    url String
    Web target URL

    Package Details

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