alicloud.esa.List
Explore with Pulumi AI
Provides a ESA List resource.
For information about ESA List and how to use it, see What is List.
NOTE: Available since v1.242.0.
Example Usage
Basic Usage
import * as pulumi from "@pulumi/pulumi";
import * as alicloud from "@pulumi/alicloud";
const config = new pulumi.Config();
const name = config.get("name") || "terraform-example";
const _default = new alicloud.esa.List("default", {
description: "resource example ip list",
kind: "ip",
items: [
"10.1.1.1",
"10.1.1.2",
"10.1.1.3",
],
name: "resource_example_ip_list",
});
import pulumi
import pulumi_alicloud as alicloud
config = pulumi.Config()
name = config.get("name")
if name is None:
name = "terraform-example"
default = alicloud.esa.List("default",
description="resource example ip list",
kind="ip",
items=[
"10.1.1.1",
"10.1.1.2",
"10.1.1.3",
],
name="resource_example_ip_list")
package main
import (
"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/esa"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi/config"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
cfg := config.New(ctx, "")
name := "terraform-example"
if param := cfg.Get("name"); param != "" {
name = param
}
_, err := esa.NewList(ctx, "default", &esa.ListArgs{
Description: pulumi.String("resource example ip list"),
Kind: pulumi.String("ip"),
Items: pulumi.StringArray{
pulumi.String("10.1.1.1"),
pulumi.String("10.1.1.2"),
pulumi.String("10.1.1.3"),
},
Name: pulumi.String("resource_example_ip_list"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AliCloud = Pulumi.AliCloud;
return await Deployment.RunAsync(() =>
{
var config = new Config();
var name = config.Get("name") ?? "terraform-example";
var @default = new AliCloud.Esa.List("default", new()
{
Description = "resource example ip list",
Kind = "ip",
Items = new[]
{
"10.1.1.1",
"10.1.1.2",
"10.1.1.3",
},
Name = "resource_example_ip_list",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.esa.List;
import com.pulumi.alicloud.esa.ListArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var config = ctx.config();
final var name = config.get("name").orElse("terraform-example");
var default_ = new List("default", ListArgs.builder()
.description("resource example ip list")
.kind("ip")
.items(
"10.1.1.1",
"10.1.1.2",
"10.1.1.3")
.name("resource_example_ip_list")
.build());
}
}
configuration:
name:
type: string
default: terraform-example
resources:
default:
type: alicloud:esa:List
properties:
description: resource example ip list
kind: ip
items:
- 10.1.1.1
- 10.1.1.2
- 10.1.1.3
name: resource_example_ip_list
Create List Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new List(name: string, args?: ListArgs, opts?: CustomResourceOptions);
@overload
def List(resource_name: str,
args: Optional[ListArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def List(resource_name: str,
opts: Optional[ResourceOptions] = None,
description: Optional[str] = None,
items: Optional[Sequence[str]] = None,
kind: Optional[str] = None,
name: Optional[str] = None)
func NewList(ctx *Context, name string, args *ListArgs, opts ...ResourceOption) (*List, error)
public List(string name, ListArgs? args = null, CustomResourceOptions? opts = null)
type: alicloud:esa:List
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 ListArgs
- 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 ListArgs
- 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 ListArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ListArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ListArgs
- 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 listResource = new AliCloud.Esa.List("listResource", new()
{
Description = "string",
Items = new[]
{
"string",
},
Kind = "string",
Name = "string",
});
example, err := esa.NewList(ctx, "listResource", &esa.ListArgs{
Description: pulumi.String("string"),
Items: pulumi.StringArray{
pulumi.String("string"),
},
Kind: pulumi.String("string"),
Name: pulumi.String("string"),
})
var listResource = new List("listResource", ListArgs.builder()
.description("string")
.items("string")
.kind("string")
.name("string")
.build());
list_resource = alicloud.esa.List("listResource",
description="string",
items=["string"],
kind="string",
name="string")
const listResource = new alicloud.esa.List("listResource", {
description: "string",
items: ["string"],
kind: "string",
name: "string",
});
type: alicloud:esa:List
properties:
description: string
items:
- string
kind: string
name: string
List 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 List resource accepts the following input properties:
- Description string
- The new description of the list.
- Items List<string>
- The items in the updated list. The value is a JSON array.
- Kind string
- The type of the list that you want to create.
- Name string
- The new name of the list.
- Description string
- The new description of the list.
- Items []string
- The items in the updated list. The value is a JSON array.
- Kind string
- The type of the list that you want to create.
- Name string
- The new name of the list.
- description String
- The new description of the list.
- items List<String>
- The items in the updated list. The value is a JSON array.
- kind String
- The type of the list that you want to create.
- name String
- The new name of the list.
- description string
- The new description of the list.
- items string[]
- The items in the updated list. The value is a JSON array.
- kind string
- The type of the list that you want to create.
- name string
- The new name of the list.
- description str
- The new description of the list.
- items Sequence[str]
- The items in the updated list. The value is a JSON array.
- kind str
- The type of the list that you want to create.
- name str
- The new name of the list.
- description String
- The new description of the list.
- items List<String>
- The items in the updated list. The value is a JSON array.
- kind String
- The type of the list that you want to create.
- name String
- The new name of the list.
Outputs
All input properties are implicitly available as output properties. Additionally, the List 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 List Resource
Get an existing List 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?: ListState, opts?: CustomResourceOptions): List
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
description: Optional[str] = None,
items: Optional[Sequence[str]] = None,
kind: Optional[str] = None,
name: Optional[str] = None) -> List
func GetList(ctx *Context, name string, id IDInput, state *ListState, opts ...ResourceOption) (*List, error)
public static List Get(string name, Input<string> id, ListState? state, CustomResourceOptions? opts = null)
public static List get(String name, Output<String> id, ListState state, CustomResourceOptions options)
resources: _: type: alicloud:esa:List 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.
- Description string
- The new description of the list.
- Items List<string>
- The items in the updated list. The value is a JSON array.
- Kind string
- The type of the list that you want to create.
- Name string
- The new name of the list.
- Description string
- The new description of the list.
- Items []string
- The items in the updated list. The value is a JSON array.
- Kind string
- The type of the list that you want to create.
- Name string
- The new name of the list.
- description String
- The new description of the list.
- items List<String>
- The items in the updated list. The value is a JSON array.
- kind String
- The type of the list that you want to create.
- name String
- The new name of the list.
- description string
- The new description of the list.
- items string[]
- The items in the updated list. The value is a JSON array.
- kind string
- The type of the list that you want to create.
- name string
- The new name of the list.
- description str
- The new description of the list.
- items Sequence[str]
- The items in the updated list. The value is a JSON array.
- kind str
- The type of the list that you want to create.
- name str
- The new name of the list.
- description String
- The new description of the list.
- items List<String>
- The items in the updated list. The value is a JSON array.
- kind String
- The type of the list that you want to create.
- name String
- The new name of the list.
Import
ESA List can be imported using the id, e.g.
$ pulumi import alicloud:esa/list:List example <id>
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Alibaba Cloud pulumi/pulumi-alicloud
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
alicloud
Terraform Provider.