1. Packages
  2. Alibaba Cloud
  3. API Docs
  4. vpc
  5. CommonBandwithPackageAttachment
Alibaba Cloud v3.53.0 published on Wednesday, Apr 17, 2024 by Pulumi

alicloud.vpc.CommonBandwithPackageAttachment

Explore with Pulumi AI

alicloud logo
Alibaba Cloud v3.53.0 published on Wednesday, Apr 17, 2024 by Pulumi

    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 defaultCommonBandwithPackage = new alicloud.vpc.CommonBandwithPackage("defaultCommonBandwithPackage", {
        bandwidth: "3",
        internetChargeType: "PayByBandwidth",
    });
    const defaultEipAddress = new alicloud.ecs.EipAddress("defaultEipAddress", {
        bandwidth: "3",
        internetChargeType: "PayByTraffic",
    });
    const defaultCommonBandwithPackageAttachment = new alicloud.vpc.CommonBandwithPackageAttachment("defaultCommonBandwithPackageAttachment", {
        bandwidthPackageId: defaultCommonBandwithPackage.id,
        instanceId: defaultEipAddress.id,
        bandwidthPackageBandwidth: "2",
        ipType: "EIP",
    });
    
    import pulumi
    import pulumi_alicloud as alicloud
    
    config = pulumi.Config()
    name = config.get("name")
    if name is None:
        name = "terraform-example"
    default_common_bandwith_package = alicloud.vpc.CommonBandwithPackage("defaultCommonBandwithPackage",
        bandwidth="3",
        internet_charge_type="PayByBandwidth")
    default_eip_address = alicloud.ecs.EipAddress("defaultEipAddress",
        bandwidth="3",
        internet_charge_type="PayByTraffic")
    default_common_bandwith_package_attachment = alicloud.vpc.CommonBandwithPackageAttachment("defaultCommonBandwithPackageAttachment",
        bandwidth_package_id=default_common_bandwith_package.id,
        instance_id=default_eip_address.id,
        bandwidth_package_bandwidth="2",
        ip_type="EIP")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/ecs"
    	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/vpc"
    	"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
    		}
    		defaultCommonBandwithPackage, err := vpc.NewCommonBandwithPackage(ctx, "defaultCommonBandwithPackage", &vpc.CommonBandwithPackageArgs{
    			Bandwidth:          pulumi.String("3"),
    			InternetChargeType: pulumi.String("PayByBandwidth"),
    		})
    		if err != nil {
    			return err
    		}
    		defaultEipAddress, err := ecs.NewEipAddress(ctx, "defaultEipAddress", &ecs.EipAddressArgs{
    			Bandwidth:          pulumi.String("3"),
    			InternetChargeType: pulumi.String("PayByTraffic"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = vpc.NewCommonBandwithPackageAttachment(ctx, "defaultCommonBandwithPackageAttachment", &vpc.CommonBandwithPackageAttachmentArgs{
    			BandwidthPackageId:        defaultCommonBandwithPackage.ID(),
    			InstanceId:                defaultEipAddress.ID(),
    			BandwidthPackageBandwidth: pulumi.String("2"),
    			IpType:                    pulumi.String("EIP"),
    		})
    		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 defaultCommonBandwithPackage = new AliCloud.Vpc.CommonBandwithPackage("defaultCommonBandwithPackage", new()
        {
            Bandwidth = "3",
            InternetChargeType = "PayByBandwidth",
        });
    
        var defaultEipAddress = new AliCloud.Ecs.EipAddress("defaultEipAddress", new()
        {
            Bandwidth = "3",
            InternetChargeType = "PayByTraffic",
        });
    
        var defaultCommonBandwithPackageAttachment = new AliCloud.Vpc.CommonBandwithPackageAttachment("defaultCommonBandwithPackageAttachment", new()
        {
            BandwidthPackageId = defaultCommonBandwithPackage.Id,
            InstanceId = defaultEipAddress.Id,
            BandwidthPackageBandwidth = "2",
            IpType = "EIP",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.alicloud.vpc.CommonBandwithPackage;
    import com.pulumi.alicloud.vpc.CommonBandwithPackageArgs;
    import com.pulumi.alicloud.ecs.EipAddress;
    import com.pulumi.alicloud.ecs.EipAddressArgs;
    import com.pulumi.alicloud.vpc.CommonBandwithPackageAttachment;
    import com.pulumi.alicloud.vpc.CommonBandwithPackageAttachmentArgs;
    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 defaultCommonBandwithPackage = new CommonBandwithPackage("defaultCommonBandwithPackage", CommonBandwithPackageArgs.builder()        
                .bandwidth(3)
                .internetChargeType("PayByBandwidth")
                .build());
    
            var defaultEipAddress = new EipAddress("defaultEipAddress", EipAddressArgs.builder()        
                .bandwidth("3")
                .internetChargeType("PayByTraffic")
                .build());
    
            var defaultCommonBandwithPackageAttachment = new CommonBandwithPackageAttachment("defaultCommonBandwithPackageAttachment", CommonBandwithPackageAttachmentArgs.builder()        
                .bandwidthPackageId(defaultCommonBandwithPackage.id())
                .instanceId(defaultEipAddress.id())
                .bandwidthPackageBandwidth("2")
                .ipType("EIP")
                .build());
    
        }
    }
    
    configuration:
      name:
        type: string
        default: terraform-example
    resources:
      defaultCommonBandwithPackage:
        type: alicloud:vpc:CommonBandwithPackage
        properties:
          bandwidth: 3
          internetChargeType: PayByBandwidth
      defaultEipAddress:
        type: alicloud:ecs:EipAddress
        properties:
          bandwidth: '3'
          internetChargeType: PayByTraffic
      defaultCommonBandwithPackageAttachment:
        type: alicloud:vpc:CommonBandwithPackageAttachment
        properties:
          bandwidthPackageId: ${defaultCommonBandwithPackage.id}
          instanceId: ${defaultEipAddress.id}
          bandwidthPackageBandwidth: '2'
          ipType: EIP
    

    Create CommonBandwithPackageAttachment Resource

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

    Constructor syntax

    new CommonBandwithPackageAttachment(name: string, args: CommonBandwithPackageAttachmentArgs, opts?: CustomResourceOptions);
    @overload
    def CommonBandwithPackageAttachment(resource_name: str,
                                        args: CommonBandwithPackageAttachmentArgs,
                                        opts: Optional[ResourceOptions] = None)
    
    @overload
    def CommonBandwithPackageAttachment(resource_name: str,
                                        opts: Optional[ResourceOptions] = None,
                                        bandwidth_package_id: Optional[str] = None,
                                        instance_id: Optional[str] = None,
                                        bandwidth_package_bandwidth: Optional[str] = None,
                                        cancel_common_bandwidth_package_ip_bandwidth: Optional[bool] = None,
                                        ip_type: Optional[str] = None)
    func NewCommonBandwithPackageAttachment(ctx *Context, name string, args CommonBandwithPackageAttachmentArgs, opts ...ResourceOption) (*CommonBandwithPackageAttachment, error)
    public CommonBandwithPackageAttachment(string name, CommonBandwithPackageAttachmentArgs args, CustomResourceOptions? opts = null)
    public CommonBandwithPackageAttachment(String name, CommonBandwithPackageAttachmentArgs args)
    public CommonBandwithPackageAttachment(String name, CommonBandwithPackageAttachmentArgs args, CustomResourceOptions options)
    
    type: alicloud:vpc:CommonBandwithPackageAttachment
    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 CommonBandwithPackageAttachmentArgs
    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 CommonBandwithPackageAttachmentArgs
    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 CommonBandwithPackageAttachmentArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args CommonBandwithPackageAttachmentArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args CommonBandwithPackageAttachmentArgs
    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 commonBandwithPackageAttachmentResource = new AliCloud.Vpc.CommonBandwithPackageAttachment("commonBandwithPackageAttachmentResource", new()
    {
        BandwidthPackageId = "string",
        InstanceId = "string",
        BandwidthPackageBandwidth = "string",
        CancelCommonBandwidthPackageIpBandwidth = false,
        IpType = "string",
    });
    
    example, err := vpc.NewCommonBandwithPackageAttachment(ctx, "commonBandwithPackageAttachmentResource", &vpc.CommonBandwithPackageAttachmentArgs{
    	BandwidthPackageId:                      pulumi.String("string"),
    	InstanceId:                              pulumi.String("string"),
    	BandwidthPackageBandwidth:               pulumi.String("string"),
    	CancelCommonBandwidthPackageIpBandwidth: pulumi.Bool(false),
    	IpType:                                  pulumi.String("string"),
    })
    
    var commonBandwithPackageAttachmentResource = new CommonBandwithPackageAttachment("commonBandwithPackageAttachmentResource", CommonBandwithPackageAttachmentArgs.builder()        
        .bandwidthPackageId("string")
        .instanceId("string")
        .bandwidthPackageBandwidth("string")
        .cancelCommonBandwidthPackageIpBandwidth(false)
        .ipType("string")
        .build());
    
    common_bandwith_package_attachment_resource = alicloud.vpc.CommonBandwithPackageAttachment("commonBandwithPackageAttachmentResource",
        bandwidth_package_id="string",
        instance_id="string",
        bandwidth_package_bandwidth="string",
        cancel_common_bandwidth_package_ip_bandwidth=False,
        ip_type="string")
    
    const commonBandwithPackageAttachmentResource = new alicloud.vpc.CommonBandwithPackageAttachment("commonBandwithPackageAttachmentResource", {
        bandwidthPackageId: "string",
        instanceId: "string",
        bandwidthPackageBandwidth: "string",
        cancelCommonBandwidthPackageIpBandwidth: false,
        ipType: "string",
    });
    
    type: alicloud:vpc:CommonBandwithPackageAttachment
    properties:
        bandwidthPackageBandwidth: string
        bandwidthPackageId: string
        cancelCommonBandwidthPackageIpBandwidth: false
        instanceId: string
        ipType: string
    

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

    BandwidthPackageId string
    The bandwidth_package_id of the common bandwidth package attachment, the field can't be changed.
    InstanceId string
    The instance_id of the common bandwidth package attachment, the field can't be changed.
    BandwidthPackageBandwidth string
    The maximum bandwidth for the EIP. This value cannot be larger than the maximum bandwidth of the EIP bandwidth plan. Unit: Mbit/s.
    CancelCommonBandwidthPackageIpBandwidth bool
    Whether to cancel the maximum bandwidth configuration for the EIP. Default: false.
    IpType string
    IP type. Set the value to EIP, which indicates that the EIP is added to the Internet shared bandwidth.
    BandwidthPackageId string
    The bandwidth_package_id of the common bandwidth package attachment, the field can't be changed.
    InstanceId string
    The instance_id of the common bandwidth package attachment, the field can't be changed.
    BandwidthPackageBandwidth string
    The maximum bandwidth for the EIP. This value cannot be larger than the maximum bandwidth of the EIP bandwidth plan. Unit: Mbit/s.
    CancelCommonBandwidthPackageIpBandwidth bool
    Whether to cancel the maximum bandwidth configuration for the EIP. Default: false.
    IpType string
    IP type. Set the value to EIP, which indicates that the EIP is added to the Internet shared bandwidth.
    bandwidthPackageId String
    The bandwidth_package_id of the common bandwidth package attachment, the field can't be changed.
    instanceId String
    The instance_id of the common bandwidth package attachment, the field can't be changed.
    bandwidthPackageBandwidth String
    The maximum bandwidth for the EIP. This value cannot be larger than the maximum bandwidth of the EIP bandwidth plan. Unit: Mbit/s.
    cancelCommonBandwidthPackageIpBandwidth Boolean
    Whether to cancel the maximum bandwidth configuration for the EIP. Default: false.
    ipType String
    IP type. Set the value to EIP, which indicates that the EIP is added to the Internet shared bandwidth.
    bandwidthPackageId string
    The bandwidth_package_id of the common bandwidth package attachment, the field can't be changed.
    instanceId string
    The instance_id of the common bandwidth package attachment, the field can't be changed.
    bandwidthPackageBandwidth string
    The maximum bandwidth for the EIP. This value cannot be larger than the maximum bandwidth of the EIP bandwidth plan. Unit: Mbit/s.
    cancelCommonBandwidthPackageIpBandwidth boolean
    Whether to cancel the maximum bandwidth configuration for the EIP. Default: false.
    ipType string
    IP type. Set the value to EIP, which indicates that the EIP is added to the Internet shared bandwidth.
    bandwidth_package_id str
    The bandwidth_package_id of the common bandwidth package attachment, the field can't be changed.
    instance_id str
    The instance_id of the common bandwidth package attachment, the field can't be changed.
    bandwidth_package_bandwidth str
    The maximum bandwidth for the EIP. This value cannot be larger than the maximum bandwidth of the EIP bandwidth plan. Unit: Mbit/s.
    cancel_common_bandwidth_package_ip_bandwidth bool
    Whether to cancel the maximum bandwidth configuration for the EIP. Default: false.
    ip_type str
    IP type. Set the value to EIP, which indicates that the EIP is added to the Internet shared bandwidth.
    bandwidthPackageId String
    The bandwidth_package_id of the common bandwidth package attachment, the field can't be changed.
    instanceId String
    The instance_id of the common bandwidth package attachment, the field can't be changed.
    bandwidthPackageBandwidth String
    The maximum bandwidth for the EIP. This value cannot be larger than the maximum bandwidth of the EIP bandwidth plan. Unit: Mbit/s.
    cancelCommonBandwidthPackageIpBandwidth Boolean
    Whether to cancel the maximum bandwidth configuration for the EIP. Default: false.
    ipType String
    IP type. Set the value to EIP, which indicates that the EIP is added to the Internet shared bandwidth.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the CommonBandwithPackageAttachment resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Status string
    The status of the Internet Shared Bandwidth instance.
    Id string
    The provider-assigned unique ID for this managed resource.
    Status string
    The status of the Internet Shared Bandwidth instance.
    id String
    The provider-assigned unique ID for this managed resource.
    status String
    The status of the Internet Shared Bandwidth instance.
    id string
    The provider-assigned unique ID for this managed resource.
    status string
    The status of the Internet Shared Bandwidth instance.
    id str
    The provider-assigned unique ID for this managed resource.
    status str
    The status of the Internet Shared Bandwidth instance.
    id String
    The provider-assigned unique ID for this managed resource.
    status String
    The status of the Internet Shared Bandwidth instance.

    Look up Existing CommonBandwithPackageAttachment Resource

    Get an existing CommonBandwithPackageAttachment 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?: CommonBandwithPackageAttachmentState, opts?: CustomResourceOptions): CommonBandwithPackageAttachment
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            bandwidth_package_bandwidth: Optional[str] = None,
            bandwidth_package_id: Optional[str] = None,
            cancel_common_bandwidth_package_ip_bandwidth: Optional[bool] = None,
            instance_id: Optional[str] = None,
            ip_type: Optional[str] = None,
            status: Optional[str] = None) -> CommonBandwithPackageAttachment
    func GetCommonBandwithPackageAttachment(ctx *Context, name string, id IDInput, state *CommonBandwithPackageAttachmentState, opts ...ResourceOption) (*CommonBandwithPackageAttachment, error)
    public static CommonBandwithPackageAttachment Get(string name, Input<string> id, CommonBandwithPackageAttachmentState? state, CustomResourceOptions? opts = null)
    public static CommonBandwithPackageAttachment get(String name, Output<String> id, CommonBandwithPackageAttachmentState 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:
    BandwidthPackageBandwidth string
    The maximum bandwidth for the EIP. This value cannot be larger than the maximum bandwidth of the EIP bandwidth plan. Unit: Mbit/s.
    BandwidthPackageId string
    The bandwidth_package_id of the common bandwidth package attachment, the field can't be changed.
    CancelCommonBandwidthPackageIpBandwidth bool
    Whether to cancel the maximum bandwidth configuration for the EIP. Default: false.
    InstanceId string
    The instance_id of the common bandwidth package attachment, the field can't be changed.
    IpType string
    IP type. Set the value to EIP, which indicates that the EIP is added to the Internet shared bandwidth.
    Status string
    The status of the Internet Shared Bandwidth instance.
    BandwidthPackageBandwidth string
    The maximum bandwidth for the EIP. This value cannot be larger than the maximum bandwidth of the EIP bandwidth plan. Unit: Mbit/s.
    BandwidthPackageId string
    The bandwidth_package_id of the common bandwidth package attachment, the field can't be changed.
    CancelCommonBandwidthPackageIpBandwidth bool
    Whether to cancel the maximum bandwidth configuration for the EIP. Default: false.
    InstanceId string
    The instance_id of the common bandwidth package attachment, the field can't be changed.
    IpType string
    IP type. Set the value to EIP, which indicates that the EIP is added to the Internet shared bandwidth.
    Status string
    The status of the Internet Shared Bandwidth instance.
    bandwidthPackageBandwidth String
    The maximum bandwidth for the EIP. This value cannot be larger than the maximum bandwidth of the EIP bandwidth plan. Unit: Mbit/s.
    bandwidthPackageId String
    The bandwidth_package_id of the common bandwidth package attachment, the field can't be changed.
    cancelCommonBandwidthPackageIpBandwidth Boolean
    Whether to cancel the maximum bandwidth configuration for the EIP. Default: false.
    instanceId String
    The instance_id of the common bandwidth package attachment, the field can't be changed.
    ipType String
    IP type. Set the value to EIP, which indicates that the EIP is added to the Internet shared bandwidth.
    status String
    The status of the Internet Shared Bandwidth instance.
    bandwidthPackageBandwidth string
    The maximum bandwidth for the EIP. This value cannot be larger than the maximum bandwidth of the EIP bandwidth plan. Unit: Mbit/s.
    bandwidthPackageId string
    The bandwidth_package_id of the common bandwidth package attachment, the field can't be changed.
    cancelCommonBandwidthPackageIpBandwidth boolean
    Whether to cancel the maximum bandwidth configuration for the EIP. Default: false.
    instanceId string
    The instance_id of the common bandwidth package attachment, the field can't be changed.
    ipType string
    IP type. Set the value to EIP, which indicates that the EIP is added to the Internet shared bandwidth.
    status string
    The status of the Internet Shared Bandwidth instance.
    bandwidth_package_bandwidth str
    The maximum bandwidth for the EIP. This value cannot be larger than the maximum bandwidth of the EIP bandwidth plan. Unit: Mbit/s.
    bandwidth_package_id str
    The bandwidth_package_id of the common bandwidth package attachment, the field can't be changed.
    cancel_common_bandwidth_package_ip_bandwidth bool
    Whether to cancel the maximum bandwidth configuration for the EIP. Default: false.
    instance_id str
    The instance_id of the common bandwidth package attachment, the field can't be changed.
    ip_type str
    IP type. Set the value to EIP, which indicates that the EIP is added to the Internet shared bandwidth.
    status str
    The status of the Internet Shared Bandwidth instance.
    bandwidthPackageBandwidth String
    The maximum bandwidth for the EIP. This value cannot be larger than the maximum bandwidth of the EIP bandwidth plan. Unit: Mbit/s.
    bandwidthPackageId String
    The bandwidth_package_id of the common bandwidth package attachment, the field can't be changed.
    cancelCommonBandwidthPackageIpBandwidth Boolean
    Whether to cancel the maximum bandwidth configuration for the EIP. Default: false.
    instanceId String
    The instance_id of the common bandwidth package attachment, the field can't be changed.
    ipType String
    IP type. Set the value to EIP, which indicates that the EIP is added to the Internet shared bandwidth.
    status String
    The status of the Internet Shared Bandwidth instance.

    Import

    cbwp Common Bandwidth Package Attachment can be imported using the id, e.g.

    $ pulumi import alicloud:vpc/commonBandwithPackageAttachment:CommonBandwithPackageAttachment example <bandwidth_package_id>:<instance_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.
    alicloud logo
    Alibaba Cloud v3.53.0 published on Wednesday, Apr 17, 2024 by Pulumi