alicloud.eipanycast.AnycastEipAddress
Explore with Pulumi AI
Provides a Eipanycast Anycast Eip Address resource. Anycast Elastic IP Address.
For information about Eipanycast Anycast Eip Address and how to use it, see What is Anycast Eip Address.
NOTE: Available since v1.113.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") || "tf-example";
const _default = new alicloud.eipanycast.AnycastEipAddress("default", {
anycastEipAddressName: name,
description: name,
bandwidth: 200,
serviceLocation: "international",
internetChargeType: "PayByTraffic",
paymentType: "PayAsYouGo",
});
import pulumi
import pulumi_alicloud as alicloud
config = pulumi.Config()
name = config.get("name")
if name is None:
name = "tf-example"
default = alicloud.eipanycast.AnycastEipAddress("default",
anycast_eip_address_name=name,
description=name,
bandwidth=200,
service_location="international",
internet_charge_type="PayByTraffic",
payment_type="PayAsYouGo")
package main
import (
"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/eipanycast"
"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 := "tf-example"
if param := cfg.Get("name"); param != "" {
name = param
}
_, err := eipanycast.NewAnycastEipAddress(ctx, "default", &eipanycast.AnycastEipAddressArgs{
AnycastEipAddressName: pulumi.String(name),
Description: pulumi.String(name),
Bandwidth: pulumi.Int(200),
ServiceLocation: pulumi.String("international"),
InternetChargeType: pulumi.String("PayByTraffic"),
PaymentType: pulumi.String("PayAsYouGo"),
})
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") ?? "tf-example";
var @default = new AliCloud.EipAnycast.AnycastEipAddress("default", new()
{
AnycastEipAddressName = name,
Description = name,
Bandwidth = 200,
ServiceLocation = "international",
InternetChargeType = "PayByTraffic",
PaymentType = "PayAsYouGo",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.eipanycast.AnycastEipAddress;
import com.pulumi.alicloud.eipanycast.AnycastEipAddressArgs;
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("tf-example");
var default_ = new AnycastEipAddress("default", AnycastEipAddressArgs.builder()
.anycastEipAddressName(name)
.description(name)
.bandwidth(200)
.serviceLocation("international")
.internetChargeType("PayByTraffic")
.paymentType("PayAsYouGo")
.build());
}
}
configuration:
name:
type: string
default: tf-example
resources:
default:
type: alicloud:eipanycast:AnycastEipAddress
properties:
anycastEipAddressName: ${name}
description: ${name}
bandwidth: 200
serviceLocation: international
internetChargeType: PayByTraffic
paymentType: PayAsYouGo
Create AnycastEipAddress Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new AnycastEipAddress(name: string, args: AnycastEipAddressArgs, opts?: CustomResourceOptions);
@overload
def AnycastEipAddress(resource_name: str,
args: AnycastEipAddressArgs,
opts: Optional[ResourceOptions] = None)
@overload
def AnycastEipAddress(resource_name: str,
opts: Optional[ResourceOptions] = None,
service_location: Optional[str] = None,
anycast_eip_address_name: Optional[str] = None,
bandwidth: Optional[int] = None,
description: Optional[str] = None,
internet_charge_type: Optional[str] = None,
payment_type: Optional[str] = None,
resource_group_id: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None)
func NewAnycastEipAddress(ctx *Context, name string, args AnycastEipAddressArgs, opts ...ResourceOption) (*AnycastEipAddress, error)
public AnycastEipAddress(string name, AnycastEipAddressArgs args, CustomResourceOptions? opts = null)
public AnycastEipAddress(String name, AnycastEipAddressArgs args)
public AnycastEipAddress(String name, AnycastEipAddressArgs args, CustomResourceOptions options)
type: alicloud:eipanycast:AnycastEipAddress
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 AnycastEipAddressArgs
- 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 AnycastEipAddressArgs
- 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 AnycastEipAddressArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AnycastEipAddressArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AnycastEipAddressArgs
- 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 anycastEipAddressResource = new AliCloud.EipAnycast.AnycastEipAddress("anycastEipAddressResource", new()
{
ServiceLocation = "string",
AnycastEipAddressName = "string",
Bandwidth = 0,
Description = "string",
InternetChargeType = "string",
PaymentType = "string",
ResourceGroupId = "string",
Tags =
{
{ "string", "string" },
},
});
example, err := eipanycast.NewAnycastEipAddress(ctx, "anycastEipAddressResource", &eipanycast.AnycastEipAddressArgs{
ServiceLocation: pulumi.String("string"),
AnycastEipAddressName: pulumi.String("string"),
Bandwidth: pulumi.Int(0),
Description: pulumi.String("string"),
InternetChargeType: pulumi.String("string"),
PaymentType: pulumi.String("string"),
ResourceGroupId: pulumi.String("string"),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var anycastEipAddressResource = new AnycastEipAddress("anycastEipAddressResource", AnycastEipAddressArgs.builder()
.serviceLocation("string")
.anycastEipAddressName("string")
.bandwidth(0)
.description("string")
.internetChargeType("string")
.paymentType("string")
.resourceGroupId("string")
.tags(Map.of("string", "string"))
.build());
anycast_eip_address_resource = alicloud.eipanycast.AnycastEipAddress("anycastEipAddressResource",
service_location="string",
anycast_eip_address_name="string",
bandwidth=0,
description="string",
internet_charge_type="string",
payment_type="string",
resource_group_id="string",
tags={
"string": "string",
})
const anycastEipAddressResource = new alicloud.eipanycast.AnycastEipAddress("anycastEipAddressResource", {
serviceLocation: "string",
anycastEipAddressName: "string",
bandwidth: 0,
description: "string",
internetChargeType: "string",
paymentType: "string",
resourceGroupId: "string",
tags: {
string: "string",
},
});
type: alicloud:eipanycast:AnycastEipAddress
properties:
anycastEipAddressName: string
bandwidth: 0
description: string
internetChargeType: string
paymentType: string
resourceGroupId: string
serviceLocation: string
tags:
string: string
AnycastEipAddress 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 AnycastEipAddress resource accepts the following input properties:
- Service
Location string - Anycast EIP instance access area. "international": Refers to areas outside of Mainland China.
- Anycast
Eip stringAddress Name - Anycast EIP instance name.
- Bandwidth int
- The peak bandwidth of the Anycast EIP instance, in Mbps.
- Description string
- Anycast EIP instance description.
- Internet
Charge stringType - The billing method of Anycast EIP instance. "PayByBandwidth": refers to the method of billing based on traffic.
- Payment
Type string - The payment model of Anycast EIP instance. "PayAsYouGo": Refers to the post-paid mode.
- Resource
Group stringId - The ID of the resource group to which the instance belongs.
- Dictionary<string, string>
- List of resource-bound tags.
- Service
Location string - Anycast EIP instance access area. "international": Refers to areas outside of Mainland China.
- Anycast
Eip stringAddress Name - Anycast EIP instance name.
- Bandwidth int
- The peak bandwidth of the Anycast EIP instance, in Mbps.
- Description string
- Anycast EIP instance description.
- Internet
Charge stringType - The billing method of Anycast EIP instance. "PayByBandwidth": refers to the method of billing based on traffic.
- Payment
Type string - The payment model of Anycast EIP instance. "PayAsYouGo": Refers to the post-paid mode.
- Resource
Group stringId - The ID of the resource group to which the instance belongs.
- map[string]string
- List of resource-bound tags.
- service
Location String - Anycast EIP instance access area. "international": Refers to areas outside of Mainland China.
- anycast
Eip StringAddress Name - Anycast EIP instance name.
- bandwidth Integer
- The peak bandwidth of the Anycast EIP instance, in Mbps.
- description String
- Anycast EIP instance description.
- internet
Charge StringType - The billing method of Anycast EIP instance. "PayByBandwidth": refers to the method of billing based on traffic.
- payment
Type String - The payment model of Anycast EIP instance. "PayAsYouGo": Refers to the post-paid mode.
- resource
Group StringId - The ID of the resource group to which the instance belongs.
- Map<String,String>
- List of resource-bound tags.
- service
Location string - Anycast EIP instance access area. "international": Refers to areas outside of Mainland China.
- anycast
Eip stringAddress Name - Anycast EIP instance name.
- bandwidth number
- The peak bandwidth of the Anycast EIP instance, in Mbps.
- description string
- Anycast EIP instance description.
- internet
Charge stringType - The billing method of Anycast EIP instance. "PayByBandwidth": refers to the method of billing based on traffic.
- payment
Type string - The payment model of Anycast EIP instance. "PayAsYouGo": Refers to the post-paid mode.
- resource
Group stringId - The ID of the resource group to which the instance belongs.
- {[key: string]: string}
- List of resource-bound tags.
- service_
location str - Anycast EIP instance access area. "international": Refers to areas outside of Mainland China.
- anycast_
eip_ straddress_ name - Anycast EIP instance name.
- bandwidth int
- The peak bandwidth of the Anycast EIP instance, in Mbps.
- description str
- Anycast EIP instance description.
- internet_
charge_ strtype - The billing method of Anycast EIP instance. "PayByBandwidth": refers to the method of billing based on traffic.
- payment_
type str - The payment model of Anycast EIP instance. "PayAsYouGo": Refers to the post-paid mode.
- resource_
group_ strid - The ID of the resource group to which the instance belongs.
- Mapping[str, str]
- List of resource-bound tags.
- service
Location String - Anycast EIP instance access area. "international": Refers to areas outside of Mainland China.
- anycast
Eip StringAddress Name - Anycast EIP instance name.
- bandwidth Number
- The peak bandwidth of the Anycast EIP instance, in Mbps.
- description String
- Anycast EIP instance description.
- internet
Charge StringType - The billing method of Anycast EIP instance. "PayByBandwidth": refers to the method of billing based on traffic.
- payment
Type String - The payment model of Anycast EIP instance. "PayAsYouGo": Refers to the post-paid mode.
- resource
Group StringId - The ID of the resource group to which the instance belongs.
- Map<String>
- List of resource-bound tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the AnycastEipAddress resource produces the following output properties:
- Create
Time string - Anycast EIP instance creation time.
- Id string
- The provider-assigned unique ID for this managed resource.
- Status string
- The status of the resource.
- Create
Time string - Anycast EIP instance creation time.
- Id string
- The provider-assigned unique ID for this managed resource.
- Status string
- The status of the resource.
- create
Time String - Anycast EIP instance creation time.
- id String
- The provider-assigned unique ID for this managed resource.
- status String
- The status of the resource.
- create
Time string - Anycast EIP instance creation time.
- id string
- The provider-assigned unique ID for this managed resource.
- status string
- The status of the resource.
- create_
time str - Anycast EIP instance creation time.
- id str
- The provider-assigned unique ID for this managed resource.
- status str
- The status of the resource.
- create
Time String - Anycast EIP instance creation time.
- id String
- The provider-assigned unique ID for this managed resource.
- status String
- The status of the resource.
Look up Existing AnycastEipAddress Resource
Get an existing AnycastEipAddress 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?: AnycastEipAddressState, opts?: CustomResourceOptions): AnycastEipAddress
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
anycast_eip_address_name: Optional[str] = None,
bandwidth: Optional[int] = None,
create_time: Optional[str] = None,
description: Optional[str] = None,
internet_charge_type: Optional[str] = None,
payment_type: Optional[str] = None,
resource_group_id: Optional[str] = None,
service_location: Optional[str] = None,
status: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None) -> AnycastEipAddress
func GetAnycastEipAddress(ctx *Context, name string, id IDInput, state *AnycastEipAddressState, opts ...ResourceOption) (*AnycastEipAddress, error)
public static AnycastEipAddress Get(string name, Input<string> id, AnycastEipAddressState? state, CustomResourceOptions? opts = null)
public static AnycastEipAddress get(String name, Output<String> id, AnycastEipAddressState 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.
- Anycast
Eip stringAddress Name - Anycast EIP instance name.
- Bandwidth int
- The peak bandwidth of the Anycast EIP instance, in Mbps.
- Create
Time string - Anycast EIP instance creation time.
- Description string
- Anycast EIP instance description.
- Internet
Charge stringType - The billing method of Anycast EIP instance. "PayByBandwidth": refers to the method of billing based on traffic.
- Payment
Type string - The payment model of Anycast EIP instance. "PayAsYouGo": Refers to the post-paid mode.
- Resource
Group stringId - The ID of the resource group to which the instance belongs.
- Service
Location string - Anycast EIP instance access area. "international": Refers to areas outside of Mainland China.
- Status string
- The status of the resource.
- Dictionary<string, string>
- List of resource-bound tags.
- Anycast
Eip stringAddress Name - Anycast EIP instance name.
- Bandwidth int
- The peak bandwidth of the Anycast EIP instance, in Mbps.
- Create
Time string - Anycast EIP instance creation time.
- Description string
- Anycast EIP instance description.
- Internet
Charge stringType - The billing method of Anycast EIP instance. "PayByBandwidth": refers to the method of billing based on traffic.
- Payment
Type string - The payment model of Anycast EIP instance. "PayAsYouGo": Refers to the post-paid mode.
- Resource
Group stringId - The ID of the resource group to which the instance belongs.
- Service
Location string - Anycast EIP instance access area. "international": Refers to areas outside of Mainland China.
- Status string
- The status of the resource.
- map[string]string
- List of resource-bound tags.
- anycast
Eip StringAddress Name - Anycast EIP instance name.
- bandwidth Integer
- The peak bandwidth of the Anycast EIP instance, in Mbps.
- create
Time String - Anycast EIP instance creation time.
- description String
- Anycast EIP instance description.
- internet
Charge StringType - The billing method of Anycast EIP instance. "PayByBandwidth": refers to the method of billing based on traffic.
- payment
Type String - The payment model of Anycast EIP instance. "PayAsYouGo": Refers to the post-paid mode.
- resource
Group StringId - The ID of the resource group to which the instance belongs.
- service
Location String - Anycast EIP instance access area. "international": Refers to areas outside of Mainland China.
- status String
- The status of the resource.
- Map<String,String>
- List of resource-bound tags.
- anycast
Eip stringAddress Name - Anycast EIP instance name.
- bandwidth number
- The peak bandwidth of the Anycast EIP instance, in Mbps.
- create
Time string - Anycast EIP instance creation time.
- description string
- Anycast EIP instance description.
- internet
Charge stringType - The billing method of Anycast EIP instance. "PayByBandwidth": refers to the method of billing based on traffic.
- payment
Type string - The payment model of Anycast EIP instance. "PayAsYouGo": Refers to the post-paid mode.
- resource
Group stringId - The ID of the resource group to which the instance belongs.
- service
Location string - Anycast EIP instance access area. "international": Refers to areas outside of Mainland China.
- status string
- The status of the resource.
- {[key: string]: string}
- List of resource-bound tags.
- anycast_
eip_ straddress_ name - Anycast EIP instance name.
- bandwidth int
- The peak bandwidth of the Anycast EIP instance, in Mbps.
- create_
time str - Anycast EIP instance creation time.
- description str
- Anycast EIP instance description.
- internet_
charge_ strtype - The billing method of Anycast EIP instance. "PayByBandwidth": refers to the method of billing based on traffic.
- payment_
type str - The payment model of Anycast EIP instance. "PayAsYouGo": Refers to the post-paid mode.
- resource_
group_ strid - The ID of the resource group to which the instance belongs.
- service_
location str - Anycast EIP instance access area. "international": Refers to areas outside of Mainland China.
- status str
- The status of the resource.
- Mapping[str, str]
- List of resource-bound tags.
- anycast
Eip StringAddress Name - Anycast EIP instance name.
- bandwidth Number
- The peak bandwidth of the Anycast EIP instance, in Mbps.
- create
Time String - Anycast EIP instance creation time.
- description String
- Anycast EIP instance description.
- internet
Charge StringType - The billing method of Anycast EIP instance. "PayByBandwidth": refers to the method of billing based on traffic.
- payment
Type String - The payment model of Anycast EIP instance. "PayAsYouGo": Refers to the post-paid mode.
- resource
Group StringId - The ID of the resource group to which the instance belongs.
- service
Location String - Anycast EIP instance access area. "international": Refers to areas outside of Mainland China.
- status String
- The status of the resource.
- Map<String>
- List of resource-bound tags.
Import
Eipanycast Anycast Eip Address can be imported using the id, e.g.
$ pulumi import alicloud:eipanycast/anycastEipAddress:AnycastEipAddress 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.