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

alicloud.ga.BasicEndpointGroup

Explore with Pulumi AI

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

    Provides a Global Accelerator (GA) Basic Endpoint Group resource.

    For information about Global Accelerator (GA) Basic Endpoint Group and how to use it, see What is Basic Endpoint Group.

    NOTE: Available since v1.194.0.

    Example Usage

    Basic Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as alicloud from "@pulumi/alicloud";
    
    const config = new pulumi.Config();
    const region = config.get("region") || "cn-hangzhou";
    const endpointGroupRegion = config.get("endpointGroupRegion") || "cn-beijing";
    const defaultZones = alicloud.getZones({
        availableResourceCreation: "VSwitch",
    });
    const defaultNetwork = new alicloud.vpc.Network("defaultNetwork", {
        vpcName: "terraform-example",
        cidrBlock: "172.17.3.0/24",
    });
    const defaultSwitch = new alicloud.vpc.Switch("defaultSwitch", {
        vswitchName: "terraform-example",
        cidrBlock: "172.17.3.0/24",
        vpcId: defaultNetwork.id,
        zoneId: defaultZones.then(defaultZones => defaultZones.zones?.[0]?.id),
    });
    const defaultApplicationLoadBalancer = new alicloud.slb.ApplicationLoadBalancer("defaultApplicationLoadBalancer", {
        loadBalancerName: "terraform-example",
        vswitchId: defaultSwitch.id,
        loadBalancerSpec: "slb.s2.small",
        addressType: "intranet",
    });
    const defaultBasicAccelerator = new alicloud.ga.BasicAccelerator("defaultBasicAccelerator", {
        duration: 1,
        basicAcceleratorName: "terraform-example",
        description: "terraform-example",
        bandwidthBillingType: "CDT",
        autoUseCoupon: "true",
        autoPay: true,
    });
    const defaultBasicEndpointGroup = new alicloud.ga.BasicEndpointGroup("defaultBasicEndpointGroup", {
        acceleratorId: defaultBasicAccelerator.id,
        endpointGroupRegion: endpointGroupRegion,
        endpointType: "SLB",
        endpointAddress: defaultApplicationLoadBalancer.id,
        endpointSubAddress: "192.168.0.1",
        basicEndpointGroupName: "terraform-example",
        description: "terraform-example",
    });
    
    import pulumi
    import pulumi_alicloud as alicloud
    
    config = pulumi.Config()
    region = config.get("region")
    if region is None:
        region = "cn-hangzhou"
    endpoint_group_region = config.get("endpointGroupRegion")
    if endpoint_group_region is None:
        endpoint_group_region = "cn-beijing"
    default_zones = alicloud.get_zones(available_resource_creation="VSwitch")
    default_network = alicloud.vpc.Network("defaultNetwork",
        vpc_name="terraform-example",
        cidr_block="172.17.3.0/24")
    default_switch = alicloud.vpc.Switch("defaultSwitch",
        vswitch_name="terraform-example",
        cidr_block="172.17.3.0/24",
        vpc_id=default_network.id,
        zone_id=default_zones.zones[0].id)
    default_application_load_balancer = alicloud.slb.ApplicationLoadBalancer("defaultApplicationLoadBalancer",
        load_balancer_name="terraform-example",
        vswitch_id=default_switch.id,
        load_balancer_spec="slb.s2.small",
        address_type="intranet")
    default_basic_accelerator = alicloud.ga.BasicAccelerator("defaultBasicAccelerator",
        duration=1,
        basic_accelerator_name="terraform-example",
        description="terraform-example",
        bandwidth_billing_type="CDT",
        auto_use_coupon="true",
        auto_pay=True)
    default_basic_endpoint_group = alicloud.ga.BasicEndpointGroup("defaultBasicEndpointGroup",
        accelerator_id=default_basic_accelerator.id,
        endpoint_group_region=endpoint_group_region,
        endpoint_type="SLB",
        endpoint_address=default_application_load_balancer.id,
        endpoint_sub_address="192.168.0.1",
        basic_endpoint_group_name="terraform-example",
        description="terraform-example")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud"
    	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/ga"
    	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/slb"
    	"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, "")
    		region := "cn-hangzhou"
    		if param := cfg.Get("region"); param != "" {
    			region = param
    		}
    		endpointGroupRegion := "cn-beijing"
    		if param := cfg.Get("endpointGroupRegion"); param != "" {
    			endpointGroupRegion = param
    		}
    		defaultZones, err := alicloud.GetZones(ctx, &alicloud.GetZonesArgs{
    			AvailableResourceCreation: pulumi.StringRef("VSwitch"),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		defaultNetwork, err := vpc.NewNetwork(ctx, "defaultNetwork", &vpc.NetworkArgs{
    			VpcName:   pulumi.String("terraform-example"),
    			CidrBlock: pulumi.String("172.17.3.0/24"),
    		})
    		if err != nil {
    			return err
    		}
    		defaultSwitch, err := vpc.NewSwitch(ctx, "defaultSwitch", &vpc.SwitchArgs{
    			VswitchName: pulumi.String("terraform-example"),
    			CidrBlock:   pulumi.String("172.17.3.0/24"),
    			VpcId:       defaultNetwork.ID(),
    			ZoneId:      pulumi.String(defaultZones.Zones[0].Id),
    		})
    		if err != nil {
    			return err
    		}
    		defaultApplicationLoadBalancer, err := slb.NewApplicationLoadBalancer(ctx, "defaultApplicationLoadBalancer", &slb.ApplicationLoadBalancerArgs{
    			LoadBalancerName: pulumi.String("terraform-example"),
    			VswitchId:        defaultSwitch.ID(),
    			LoadBalancerSpec: pulumi.String("slb.s2.small"),
    			AddressType:      pulumi.String("intranet"),
    		})
    		if err != nil {
    			return err
    		}
    		defaultBasicAccelerator, err := ga.NewBasicAccelerator(ctx, "defaultBasicAccelerator", &ga.BasicAcceleratorArgs{
    			Duration:             pulumi.Int(1),
    			BasicAcceleratorName: pulumi.String("terraform-example"),
    			Description:          pulumi.String("terraform-example"),
    			BandwidthBillingType: pulumi.String("CDT"),
    			AutoUseCoupon:        pulumi.String("true"),
    			AutoPay:              pulumi.Bool(true),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = ga.NewBasicEndpointGroup(ctx, "defaultBasicEndpointGroup", &ga.BasicEndpointGroupArgs{
    			AcceleratorId:          defaultBasicAccelerator.ID(),
    			EndpointGroupRegion:    pulumi.String(endpointGroupRegion),
    			EndpointType:           pulumi.String("SLB"),
    			EndpointAddress:        defaultApplicationLoadBalancer.ID(),
    			EndpointSubAddress:     pulumi.String("192.168.0.1"),
    			BasicEndpointGroupName: pulumi.String("terraform-example"),
    			Description:            pulumi.String("terraform-example"),
    		})
    		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 region = config.Get("region") ?? "cn-hangzhou";
        var endpointGroupRegion = config.Get("endpointGroupRegion") ?? "cn-beijing";
        var defaultZones = AliCloud.GetZones.Invoke(new()
        {
            AvailableResourceCreation = "VSwitch",
        });
    
        var defaultNetwork = new AliCloud.Vpc.Network("defaultNetwork", new()
        {
            VpcName = "terraform-example",
            CidrBlock = "172.17.3.0/24",
        });
    
        var defaultSwitch = new AliCloud.Vpc.Switch("defaultSwitch", new()
        {
            VswitchName = "terraform-example",
            CidrBlock = "172.17.3.0/24",
            VpcId = defaultNetwork.Id,
            ZoneId = defaultZones.Apply(getZonesResult => getZonesResult.Zones[0]?.Id),
        });
    
        var defaultApplicationLoadBalancer = new AliCloud.Slb.ApplicationLoadBalancer("defaultApplicationLoadBalancer", new()
        {
            LoadBalancerName = "terraform-example",
            VswitchId = defaultSwitch.Id,
            LoadBalancerSpec = "slb.s2.small",
            AddressType = "intranet",
        });
    
        var defaultBasicAccelerator = new AliCloud.Ga.BasicAccelerator("defaultBasicAccelerator", new()
        {
            Duration = 1,
            BasicAcceleratorName = "terraform-example",
            Description = "terraform-example",
            BandwidthBillingType = "CDT",
            AutoUseCoupon = "true",
            AutoPay = true,
        });
    
        var defaultBasicEndpointGroup = new AliCloud.Ga.BasicEndpointGroup("defaultBasicEndpointGroup", new()
        {
            AcceleratorId = defaultBasicAccelerator.Id,
            EndpointGroupRegion = endpointGroupRegion,
            EndpointType = "SLB",
            EndpointAddress = defaultApplicationLoadBalancer.Id,
            EndpointSubAddress = "192.168.0.1",
            BasicEndpointGroupName = "terraform-example",
            Description = "terraform-example",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.alicloud.AlicloudFunctions;
    import com.pulumi.alicloud.inputs.GetZonesArgs;
    import com.pulumi.alicloud.vpc.Network;
    import com.pulumi.alicloud.vpc.NetworkArgs;
    import com.pulumi.alicloud.vpc.Switch;
    import com.pulumi.alicloud.vpc.SwitchArgs;
    import com.pulumi.alicloud.slb.ApplicationLoadBalancer;
    import com.pulumi.alicloud.slb.ApplicationLoadBalancerArgs;
    import com.pulumi.alicloud.ga.BasicAccelerator;
    import com.pulumi.alicloud.ga.BasicAcceleratorArgs;
    import com.pulumi.alicloud.ga.BasicEndpointGroup;
    import com.pulumi.alicloud.ga.BasicEndpointGroupArgs;
    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 region = config.get("region").orElse("cn-hangzhou");
            final var endpointGroupRegion = config.get("endpointGroupRegion").orElse("cn-beijing");
            final var defaultZones = AlicloudFunctions.getZones(GetZonesArgs.builder()
                .availableResourceCreation("VSwitch")
                .build());
    
            var defaultNetwork = new Network("defaultNetwork", NetworkArgs.builder()        
                .vpcName("terraform-example")
                .cidrBlock("172.17.3.0/24")
                .build());
    
            var defaultSwitch = new Switch("defaultSwitch", SwitchArgs.builder()        
                .vswitchName("terraform-example")
                .cidrBlock("172.17.3.0/24")
                .vpcId(defaultNetwork.id())
                .zoneId(defaultZones.applyValue(getZonesResult -> getZonesResult.zones()[0].id()))
                .build());
    
            var defaultApplicationLoadBalancer = new ApplicationLoadBalancer("defaultApplicationLoadBalancer", ApplicationLoadBalancerArgs.builder()        
                .loadBalancerName("terraform-example")
                .vswitchId(defaultSwitch.id())
                .loadBalancerSpec("slb.s2.small")
                .addressType("intranet")
                .build());
    
            var defaultBasicAccelerator = new BasicAccelerator("defaultBasicAccelerator", BasicAcceleratorArgs.builder()        
                .duration(1)
                .basicAcceleratorName("terraform-example")
                .description("terraform-example")
                .bandwidthBillingType("CDT")
                .autoUseCoupon("true")
                .autoPay(true)
                .build());
    
            var defaultBasicEndpointGroup = new BasicEndpointGroup("defaultBasicEndpointGroup", BasicEndpointGroupArgs.builder()        
                .acceleratorId(defaultBasicAccelerator.id())
                .endpointGroupRegion(endpointGroupRegion)
                .endpointType("SLB")
                .endpointAddress(defaultApplicationLoadBalancer.id())
                .endpointSubAddress("192.168.0.1")
                .basicEndpointGroupName("terraform-example")
                .description("terraform-example")
                .build());
    
        }
    }
    
    configuration:
      region:
        type: string
        default: cn-hangzhou
      endpointGroupRegion:
        type: string
        default: cn-beijing
    resources:
      defaultNetwork:
        type: alicloud:vpc:Network
        properties:
          vpcName: terraform-example
          cidrBlock: 172.17.3.0/24
      defaultSwitch:
        type: alicloud:vpc:Switch
        properties:
          vswitchName: terraform-example
          cidrBlock: 172.17.3.0/24
          vpcId: ${defaultNetwork.id}
          zoneId: ${defaultZones.zones[0].id}
      defaultApplicationLoadBalancer:
        type: alicloud:slb:ApplicationLoadBalancer
        properties:
          loadBalancerName: terraform-example
          vswitchId: ${defaultSwitch.id}
          loadBalancerSpec: slb.s2.small
          addressType: intranet
      defaultBasicAccelerator:
        type: alicloud:ga:BasicAccelerator
        properties:
          duration: 1
          basicAcceleratorName: terraform-example
          description: terraform-example
          bandwidthBillingType: CDT
          autoUseCoupon: 'true'
          autoPay: true
      defaultBasicEndpointGroup:
        type: alicloud:ga:BasicEndpointGroup
        properties:
          acceleratorId: ${defaultBasicAccelerator.id}
          endpointGroupRegion: ${endpointGroupRegion}
          endpointType: SLB
          endpointAddress: ${defaultApplicationLoadBalancer.id}
          endpointSubAddress: 192.168.0.1
          basicEndpointGroupName: terraform-example
          description: terraform-example
    variables:
      defaultZones:
        fn::invoke:
          Function: alicloud:getZones
          Arguments:
            availableResourceCreation: VSwitch
    

    Create BasicEndpointGroup Resource

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

    Constructor syntax

    new BasicEndpointGroup(name: string, args: BasicEndpointGroupArgs, opts?: CustomResourceOptions);
    @overload
    def BasicEndpointGroup(resource_name: str,
                           args: BasicEndpointGroupArgs,
                           opts: Optional[ResourceOptions] = None)
    
    @overload
    def BasicEndpointGroup(resource_name: str,
                           opts: Optional[ResourceOptions] = None,
                           accelerator_id: Optional[str] = None,
                           endpoint_group_region: Optional[str] = None,
                           basic_endpoint_group_name: Optional[str] = None,
                           description: Optional[str] = None,
                           endpoint_address: Optional[str] = None,
                           endpoint_sub_address: Optional[str] = None,
                           endpoint_type: Optional[str] = None)
    func NewBasicEndpointGroup(ctx *Context, name string, args BasicEndpointGroupArgs, opts ...ResourceOption) (*BasicEndpointGroup, error)
    public BasicEndpointGroup(string name, BasicEndpointGroupArgs args, CustomResourceOptions? opts = null)
    public BasicEndpointGroup(String name, BasicEndpointGroupArgs args)
    public BasicEndpointGroup(String name, BasicEndpointGroupArgs args, CustomResourceOptions options)
    
    type: alicloud:ga:BasicEndpointGroup
    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 BasicEndpointGroupArgs
    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 BasicEndpointGroupArgs
    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 BasicEndpointGroupArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args BasicEndpointGroupArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args BasicEndpointGroupArgs
    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 basicEndpointGroupResource = new AliCloud.Ga.BasicEndpointGroup("basicEndpointGroupResource", new()
    {
        AcceleratorId = "string",
        EndpointGroupRegion = "string",
        BasicEndpointGroupName = "string",
        Description = "string",
        EndpointAddress = "string",
        EndpointSubAddress = "string",
        EndpointType = "string",
    });
    
    example, err := ga.NewBasicEndpointGroup(ctx, "basicEndpointGroupResource", &ga.BasicEndpointGroupArgs{
    	AcceleratorId:          pulumi.String("string"),
    	EndpointGroupRegion:    pulumi.String("string"),
    	BasicEndpointGroupName: pulumi.String("string"),
    	Description:            pulumi.String("string"),
    	EndpointAddress:        pulumi.String("string"),
    	EndpointSubAddress:     pulumi.String("string"),
    	EndpointType:           pulumi.String("string"),
    })
    
    var basicEndpointGroupResource = new BasicEndpointGroup("basicEndpointGroupResource", BasicEndpointGroupArgs.builder()        
        .acceleratorId("string")
        .endpointGroupRegion("string")
        .basicEndpointGroupName("string")
        .description("string")
        .endpointAddress("string")
        .endpointSubAddress("string")
        .endpointType("string")
        .build());
    
    basic_endpoint_group_resource = alicloud.ga.BasicEndpointGroup("basicEndpointGroupResource",
        accelerator_id="string",
        endpoint_group_region="string",
        basic_endpoint_group_name="string",
        description="string",
        endpoint_address="string",
        endpoint_sub_address="string",
        endpoint_type="string")
    
    const basicEndpointGroupResource = new alicloud.ga.BasicEndpointGroup("basicEndpointGroupResource", {
        acceleratorId: "string",
        endpointGroupRegion: "string",
        basicEndpointGroupName: "string",
        description: "string",
        endpointAddress: "string",
        endpointSubAddress: "string",
        endpointType: "string",
    });
    
    type: alicloud:ga:BasicEndpointGroup
    properties:
        acceleratorId: string
        basicEndpointGroupName: string
        description: string
        endpointAddress: string
        endpointGroupRegion: string
        endpointSubAddress: string
        endpointType: string
    

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

    AcceleratorId string
    The ID of the basic GA instance.
    EndpointGroupRegion string
    The ID of the region where you want to create the endpoint group.
    BasicEndpointGroupName string
    The name of the endpoint group. The basic_endpoint_group_name must be 2 to 128 characters in length, and can contain letters, digits, underscores (_), and hyphens (-). The name must start with a letter.
    Description string
    The description of the endpoint group. The description cannot exceed 256 characters in length and cannot contain http:// or https://.
    EndpointAddress string
    The address of the endpoint.
    EndpointSubAddress string
    The sub address of the endpoint.
    EndpointType string
    The type of the endpoint. Valid values: ENI, SLB and ECS.
    AcceleratorId string
    The ID of the basic GA instance.
    EndpointGroupRegion string
    The ID of the region where you want to create the endpoint group.
    BasicEndpointGroupName string
    The name of the endpoint group. The basic_endpoint_group_name must be 2 to 128 characters in length, and can contain letters, digits, underscores (_), and hyphens (-). The name must start with a letter.
    Description string
    The description of the endpoint group. The description cannot exceed 256 characters in length and cannot contain http:// or https://.
    EndpointAddress string
    The address of the endpoint.
    EndpointSubAddress string
    The sub address of the endpoint.
    EndpointType string
    The type of the endpoint. Valid values: ENI, SLB and ECS.
    acceleratorId String
    The ID of the basic GA instance.
    endpointGroupRegion String
    The ID of the region where you want to create the endpoint group.
    basicEndpointGroupName String
    The name of the endpoint group. The basic_endpoint_group_name must be 2 to 128 characters in length, and can contain letters, digits, underscores (_), and hyphens (-). The name must start with a letter.
    description String
    The description of the endpoint group. The description cannot exceed 256 characters in length and cannot contain http:// or https://.
    endpointAddress String
    The address of the endpoint.
    endpointSubAddress String
    The sub address of the endpoint.
    endpointType String
    The type of the endpoint. Valid values: ENI, SLB and ECS.
    acceleratorId string
    The ID of the basic GA instance.
    endpointGroupRegion string
    The ID of the region where you want to create the endpoint group.
    basicEndpointGroupName string
    The name of the endpoint group. The basic_endpoint_group_name must be 2 to 128 characters in length, and can contain letters, digits, underscores (_), and hyphens (-). The name must start with a letter.
    description string
    The description of the endpoint group. The description cannot exceed 256 characters in length and cannot contain http:// or https://.
    endpointAddress string
    The address of the endpoint.
    endpointSubAddress string
    The sub address of the endpoint.
    endpointType string
    The type of the endpoint. Valid values: ENI, SLB and ECS.
    accelerator_id str
    The ID of the basic GA instance.
    endpoint_group_region str
    The ID of the region where you want to create the endpoint group.
    basic_endpoint_group_name str
    The name of the endpoint group. The basic_endpoint_group_name must be 2 to 128 characters in length, and can contain letters, digits, underscores (_), and hyphens (-). The name must start with a letter.
    description str
    The description of the endpoint group. The description cannot exceed 256 characters in length and cannot contain http:// or https://.
    endpoint_address str
    The address of the endpoint.
    endpoint_sub_address str
    The sub address of the endpoint.
    endpoint_type str
    The type of the endpoint. Valid values: ENI, SLB and ECS.
    acceleratorId String
    The ID of the basic GA instance.
    endpointGroupRegion String
    The ID of the region where you want to create the endpoint group.
    basicEndpointGroupName String
    The name of the endpoint group. The basic_endpoint_group_name must be 2 to 128 characters in length, and can contain letters, digits, underscores (_), and hyphens (-). The name must start with a letter.
    description String
    The description of the endpoint group. The description cannot exceed 256 characters in length and cannot contain http:// or https://.
    endpointAddress String
    The address of the endpoint.
    endpointSubAddress String
    The sub address of the endpoint.
    endpointType String
    The type of the endpoint. Valid values: ENI, SLB and ECS.

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Status string
    The status of the Basic Endpoint Group.
    Id string
    The provider-assigned unique ID for this managed resource.
    Status string
    The status of the Basic Endpoint Group.
    id String
    The provider-assigned unique ID for this managed resource.
    status String
    The status of the Basic Endpoint Group.
    id string
    The provider-assigned unique ID for this managed resource.
    status string
    The status of the Basic Endpoint Group.
    id str
    The provider-assigned unique ID for this managed resource.
    status str
    The status of the Basic Endpoint Group.
    id String
    The provider-assigned unique ID for this managed resource.
    status String
    The status of the Basic Endpoint Group.

    Look up Existing BasicEndpointGroup Resource

    Get an existing BasicEndpointGroup 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?: BasicEndpointGroupState, opts?: CustomResourceOptions): BasicEndpointGroup
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            accelerator_id: Optional[str] = None,
            basic_endpoint_group_name: Optional[str] = None,
            description: Optional[str] = None,
            endpoint_address: Optional[str] = None,
            endpoint_group_region: Optional[str] = None,
            endpoint_sub_address: Optional[str] = None,
            endpoint_type: Optional[str] = None,
            status: Optional[str] = None) -> BasicEndpointGroup
    func GetBasicEndpointGroup(ctx *Context, name string, id IDInput, state *BasicEndpointGroupState, opts ...ResourceOption) (*BasicEndpointGroup, error)
    public static BasicEndpointGroup Get(string name, Input<string> id, BasicEndpointGroupState? state, CustomResourceOptions? opts = null)
    public static BasicEndpointGroup get(String name, Output<String> id, BasicEndpointGroupState 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:
    AcceleratorId string
    The ID of the basic GA instance.
    BasicEndpointGroupName string
    The name of the endpoint group. The basic_endpoint_group_name must be 2 to 128 characters in length, and can contain letters, digits, underscores (_), and hyphens (-). The name must start with a letter.
    Description string
    The description of the endpoint group. The description cannot exceed 256 characters in length and cannot contain http:// or https://.
    EndpointAddress string
    The address of the endpoint.
    EndpointGroupRegion string
    The ID of the region where you want to create the endpoint group.
    EndpointSubAddress string
    The sub address of the endpoint.
    EndpointType string
    The type of the endpoint. Valid values: ENI, SLB and ECS.
    Status string
    The status of the Basic Endpoint Group.
    AcceleratorId string
    The ID of the basic GA instance.
    BasicEndpointGroupName string
    The name of the endpoint group. The basic_endpoint_group_name must be 2 to 128 characters in length, and can contain letters, digits, underscores (_), and hyphens (-). The name must start with a letter.
    Description string
    The description of the endpoint group. The description cannot exceed 256 characters in length and cannot contain http:// or https://.
    EndpointAddress string
    The address of the endpoint.
    EndpointGroupRegion string
    The ID of the region where you want to create the endpoint group.
    EndpointSubAddress string
    The sub address of the endpoint.
    EndpointType string
    The type of the endpoint. Valid values: ENI, SLB and ECS.
    Status string
    The status of the Basic Endpoint Group.
    acceleratorId String
    The ID of the basic GA instance.
    basicEndpointGroupName String
    The name of the endpoint group. The basic_endpoint_group_name must be 2 to 128 characters in length, and can contain letters, digits, underscores (_), and hyphens (-). The name must start with a letter.
    description String
    The description of the endpoint group. The description cannot exceed 256 characters in length and cannot contain http:// or https://.
    endpointAddress String
    The address of the endpoint.
    endpointGroupRegion String
    The ID of the region where you want to create the endpoint group.
    endpointSubAddress String
    The sub address of the endpoint.
    endpointType String
    The type of the endpoint. Valid values: ENI, SLB and ECS.
    status String
    The status of the Basic Endpoint Group.
    acceleratorId string
    The ID of the basic GA instance.
    basicEndpointGroupName string
    The name of the endpoint group. The basic_endpoint_group_name must be 2 to 128 characters in length, and can contain letters, digits, underscores (_), and hyphens (-). The name must start with a letter.
    description string
    The description of the endpoint group. The description cannot exceed 256 characters in length and cannot contain http:// or https://.
    endpointAddress string
    The address of the endpoint.
    endpointGroupRegion string
    The ID of the region where you want to create the endpoint group.
    endpointSubAddress string
    The sub address of the endpoint.
    endpointType string
    The type of the endpoint. Valid values: ENI, SLB and ECS.
    status string
    The status of the Basic Endpoint Group.
    accelerator_id str
    The ID of the basic GA instance.
    basic_endpoint_group_name str
    The name of the endpoint group. The basic_endpoint_group_name must be 2 to 128 characters in length, and can contain letters, digits, underscores (_), and hyphens (-). The name must start with a letter.
    description str
    The description of the endpoint group. The description cannot exceed 256 characters in length and cannot contain http:// or https://.
    endpoint_address str
    The address of the endpoint.
    endpoint_group_region str
    The ID of the region where you want to create the endpoint group.
    endpoint_sub_address str
    The sub address of the endpoint.
    endpoint_type str
    The type of the endpoint. Valid values: ENI, SLB and ECS.
    status str
    The status of the Basic Endpoint Group.
    acceleratorId String
    The ID of the basic GA instance.
    basicEndpointGroupName String
    The name of the endpoint group. The basic_endpoint_group_name must be 2 to 128 characters in length, and can contain letters, digits, underscores (_), and hyphens (-). The name must start with a letter.
    description String
    The description of the endpoint group. The description cannot exceed 256 characters in length and cannot contain http:// or https://.
    endpointAddress String
    The address of the endpoint.
    endpointGroupRegion String
    The ID of the region where you want to create the endpoint group.
    endpointSubAddress String
    The sub address of the endpoint.
    endpointType String
    The type of the endpoint. Valid values: ENI, SLB and ECS.
    status String
    The status of the Basic Endpoint Group.

    Import

    Global Accelerator (GA) Basic Endpoint Group can be imported using the id, e.g.

    $ pulumi import alicloud:ga/basicEndpointGroup:BasicEndpointGroup 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.
    alicloud logo
    Alibaba Cloud v3.53.0 published on Wednesday, Apr 17, 2024 by Pulumi