1. Packages
  2. Alibaba Cloud Provider
  3. API Docs
  4. esa
  5. getSites
Alibaba Cloud v3.76.0 published on Tuesday, Apr 8, 2025 by Pulumi

alicloud.esa.getSites

Explore with Pulumi AI

Alibaba Cloud v3.76.0 published on Tuesday, Apr 8, 2025 by Pulumi

This data source provides Esa Site available to the user.What is Site

NOTE: Available since v1.244.0.

Example 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 defaultIEoDfU = new alicloud.esa.RatePlanInstance("defaultIEoDfU", {
    type: "NS",
    autoRenew: true,
    period: 1,
    paymentType: "Subscription",
    coverage: "overseas",
    autoPay: true,
    planName: "basic",
});
const defaultSite = new alicloud.esa.Site("default", {
    siteName: "bcd.com",
    coverage: "overseas",
    accessType: "NS",
    instanceId: defaultIEoDfU.id,
});
const _default = alicloud.esa.getSitesOutput({
    ids: [defaultSite.id],
    nameRegex: defaultSite.siteName,
    siteName: "bcd.com",
});
export const alicloudEsaSiteExampleId = _default.apply(_default => _default.sites?.[0]?.id);
Copy
import pulumi
import pulumi_alicloud as alicloud

config = pulumi.Config()
name = config.get("name")
if name is None:
    name = "terraform-example"
default_i_eo_df_u = alicloud.esa.RatePlanInstance("defaultIEoDfU",
    type="NS",
    auto_renew=True,
    period=1,
    payment_type="Subscription",
    coverage="overseas",
    auto_pay=True,
    plan_name="basic")
default_site = alicloud.esa.Site("default",
    site_name="bcd.com",
    coverage="overseas",
    access_type="NS",
    instance_id=default_i_eo_df_u.id)
default = alicloud.esa.get_sites_output(ids=[default_site.id],
    name_regex=default_site.site_name,
    site_name="bcd.com")
pulumi.export("alicloudEsaSiteExampleId", default.sites[0].id)
Copy
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
}
defaultIEoDfU, err := esa.NewRatePlanInstance(ctx, "defaultIEoDfU", &esa.RatePlanInstanceArgs{
Type: pulumi.String("NS"),
AutoRenew: pulumi.Bool(true),
Period: pulumi.Int(1),
PaymentType: pulumi.String("Subscription"),
Coverage: pulumi.String("overseas"),
AutoPay: pulumi.Bool(true),
PlanName: pulumi.String("basic"),
})
if err != nil {
return err
}
defaultSite, err := esa.NewSite(ctx, "default", &esa.SiteArgs{
SiteName: pulumi.String("bcd.com"),
Coverage: pulumi.String("overseas"),
AccessType: pulumi.String("NS"),
InstanceId: defaultIEoDfU.ID(),
})
if err != nil {
return err
}
_default := esa.GetSitesOutput(ctx, esa.GetSitesOutputArgs{
Ids: pulumi.StringArray{
defaultSite.ID(),
},
NameRegex: defaultSite.SiteName,
SiteName: pulumi.String("bcd.com"),
}, nil);
ctx.Export("alicloudEsaSiteExampleId", _default.ApplyT(func(_default esa.GetSitesResult) (*int, error) {
return &default.Sites[0].Id, nil
}).(pulumi.IntPtrOutput))
return nil
})
}
Copy
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 defaultIEoDfU = new AliCloud.Esa.RatePlanInstance("defaultIEoDfU", new()
    {
        Type = "NS",
        AutoRenew = true,
        Period = 1,
        PaymentType = "Subscription",
        Coverage = "overseas",
        AutoPay = true,
        PlanName = "basic",
    });

    var defaultSite = new AliCloud.Esa.Site("default", new()
    {
        SiteName = "bcd.com",
        Coverage = "overseas",
        AccessType = "NS",
        InstanceId = defaultIEoDfU.Id,
    });

    var @default = AliCloud.Esa.GetSites.Invoke(new()
    {
        Ids = new[]
        {
            defaultSite.Id,
        },
        NameRegex = defaultSite.SiteName,
        SiteName = "bcd.com",
    });

    return new Dictionary<string, object?>
    {
        ["alicloudEsaSiteExampleId"] = @default.Apply(@default => @default.Apply(getSitesResult => getSitesResult.Sites[0]?.Id)),
    };
});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.esa.RatePlanInstance;
import com.pulumi.alicloud.esa.RatePlanInstanceArgs;
import com.pulumi.alicloud.esa.Site;
import com.pulumi.alicloud.esa.SiteArgs;
import com.pulumi.alicloud.esa.EsaFunctions;
import com.pulumi.alicloud.esa.inputs.GetSitesArgs;
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 defaultIEoDfU = new RatePlanInstance("defaultIEoDfU", RatePlanInstanceArgs.builder()
            .type("NS")
            .autoRenew(true)
            .period("1")
            .paymentType("Subscription")
            .coverage("overseas")
            .autoPay(true)
            .planName("basic")
            .build());

        var defaultSite = new Site("defaultSite", SiteArgs.builder()
            .siteName("bcd.com")
            .coverage("overseas")
            .accessType("NS")
            .instanceId(defaultIEoDfU.id())
            .build());

        final var default = EsaFunctions.getSites(GetSitesArgs.builder()
            .ids(defaultSite.id())
            .nameRegex(defaultSite.siteName())
            .siteName("bcd.com")
            .build());

        ctx.export("alicloudEsaSiteExampleId", default_.applyValue(default_ -> default_.sites()[0].id()));
    }
}
Copy
configuration:
  name:
    type: string
    default: terraform-example
resources:
  defaultIEoDfU:
    type: alicloud:esa:RatePlanInstance
    properties:
      type: NS
      autoRenew: true
      period: '1'
      paymentType: Subscription
      coverage: overseas
      autoPay: true
      planName: basic
  defaultSite:
    type: alicloud:esa:Site
    name: default
    properties:
      siteName: bcd.com
      coverage: overseas
      accessType: NS
      instanceId: ${defaultIEoDfU.id}
variables:
  default:
    fn::invoke:
      function: alicloud:esa:getSites
      arguments:
        ids:
          - ${defaultSite.id}
        nameRegex: ${defaultSite.siteName}
        siteName: bcd.com
outputs:
  alicloudEsaSiteExampleId: ${default.sites[0].id}
Copy

Using getSites

Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

function getSites(args: GetSitesArgs, opts?: InvokeOptions): Promise<GetSitesResult>
function getSitesOutput(args: GetSitesOutputArgs, opts?: InvokeOptions): Output<GetSitesResult>
Copy
def get_sites(access_type: Optional[str] = None,
              coverage: Optional[str] = None,
              ids: Optional[Sequence[str]] = None,
              name_regex: Optional[str] = None,
              only_enterprise: Optional[bool] = None,
              output_file: Optional[str] = None,
              page_number: Optional[int] = None,
              page_size: Optional[int] = None,
              plan_subscribe_type: Optional[str] = None,
              resource_group_id: Optional[str] = None,
              site_name: Optional[str] = None,
              site_search_type: Optional[str] = None,
              status: Optional[str] = None,
              tags: Optional[Mapping[str, str]] = None,
              opts: Optional[InvokeOptions] = None) -> GetSitesResult
def get_sites_output(access_type: Optional[pulumi.Input[str]] = None,
              coverage: Optional[pulumi.Input[str]] = None,
              ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
              name_regex: Optional[pulumi.Input[str]] = None,
              only_enterprise: Optional[pulumi.Input[bool]] = None,
              output_file: Optional[pulumi.Input[str]] = None,
              page_number: Optional[pulumi.Input[int]] = None,
              page_size: Optional[pulumi.Input[int]] = None,
              plan_subscribe_type: Optional[pulumi.Input[str]] = None,
              resource_group_id: Optional[pulumi.Input[str]] = None,
              site_name: Optional[pulumi.Input[str]] = None,
              site_search_type: Optional[pulumi.Input[str]] = None,
              status: Optional[pulumi.Input[str]] = None,
              tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
              opts: Optional[InvokeOptions] = None) -> Output[GetSitesResult]
Copy
func GetSites(ctx *Context, args *GetSitesArgs, opts ...InvokeOption) (*GetSitesResult, error)
func GetSitesOutput(ctx *Context, args *GetSitesOutputArgs, opts ...InvokeOption) GetSitesResultOutput
Copy

> Note: This function is named GetSites in the Go SDK.

public static class GetSites 
{
    public static Task<GetSitesResult> InvokeAsync(GetSitesArgs args, InvokeOptions? opts = null)
    public static Output<GetSitesResult> Invoke(GetSitesInvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetSitesResult> getSites(GetSitesArgs args, InvokeOptions options)
public static Output<GetSitesResult> getSites(GetSitesArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: alicloud:esa/getSites:getSites
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

AccessType Changes to this property will trigger replacement. string
Access type. Value:-NS: Managed access via NS.-CNAME: access through CNAME.
Coverage Changes to this property will trigger replacement. string
Acceleration area
Ids Changes to this property will trigger replacement. List<string>
A list of Site IDs.
NameRegex Changes to this property will trigger replacement. string
A regex string to filter results by Group Metric Rule name.
OnlyEnterprise Changes to this property will trigger replacement. bool
Only the Enterprise version, pass true when the table only queries the enterprise version of the site.
OutputFile Changes to this property will trigger replacement. string
File name where to save data source results (after running pulumi preview).
PageNumber Changes to this property will trigger replacement. int
Current page number.
PageSize Changes to this property will trigger replacement. int
Number of records per page.
PlanSubscribeType Changes to this property will trigger replacement. string
Package subscription type. Value:-basicplan: Basic version.-standardplan: Standard version.-advancedplan: Advanced version.-enterpriseplan: Enterprise Edition.
ResourceGroupId Changes to this property will trigger replacement. string
The ID of the resource group
SiteName Changes to this property will trigger replacement. string
Site Name
SiteSearchType Changes to this property will trigger replacement. string
The search match pattern for the site name. The default value is exact match. Valid values:-prefix: matches the prefix.-suffix: The suffix matches.-exact: exact match.-fuzzy: fuzzy match.
Status Changes to this property will trigger replacement. string
The status of the resource
Tags Changes to this property will trigger replacement. Dictionary<string, string>
Resource tags
AccessType Changes to this property will trigger replacement. string
Access type. Value:-NS: Managed access via NS.-CNAME: access through CNAME.
Coverage Changes to this property will trigger replacement. string
Acceleration area
Ids Changes to this property will trigger replacement. []string
A list of Site IDs.
NameRegex Changes to this property will trigger replacement. string
A regex string to filter results by Group Metric Rule name.
OnlyEnterprise Changes to this property will trigger replacement. bool
Only the Enterprise version, pass true when the table only queries the enterprise version of the site.
OutputFile Changes to this property will trigger replacement. string
File name where to save data source results (after running pulumi preview).
PageNumber Changes to this property will trigger replacement. int
Current page number.
PageSize Changes to this property will trigger replacement. int
Number of records per page.
PlanSubscribeType Changes to this property will trigger replacement. string
Package subscription type. Value:-basicplan: Basic version.-standardplan: Standard version.-advancedplan: Advanced version.-enterpriseplan: Enterprise Edition.
ResourceGroupId Changes to this property will trigger replacement. string
The ID of the resource group
SiteName Changes to this property will trigger replacement. string
Site Name
SiteSearchType Changes to this property will trigger replacement. string
The search match pattern for the site name. The default value is exact match. Valid values:-prefix: matches the prefix.-suffix: The suffix matches.-exact: exact match.-fuzzy: fuzzy match.
Status Changes to this property will trigger replacement. string
The status of the resource
Tags Changes to this property will trigger replacement. map[string]string
Resource tags
accessType Changes to this property will trigger replacement. String
Access type. Value:-NS: Managed access via NS.-CNAME: access through CNAME.
coverage Changes to this property will trigger replacement. String
Acceleration area
ids Changes to this property will trigger replacement. List<String>
A list of Site IDs.
nameRegex Changes to this property will trigger replacement. String
A regex string to filter results by Group Metric Rule name.
onlyEnterprise Changes to this property will trigger replacement. Boolean
Only the Enterprise version, pass true when the table only queries the enterprise version of the site.
outputFile Changes to this property will trigger replacement. String
File name where to save data source results (after running pulumi preview).
pageNumber Changes to this property will trigger replacement. Integer
Current page number.
pageSize Changes to this property will trigger replacement. Integer
Number of records per page.
planSubscribeType Changes to this property will trigger replacement. String
Package subscription type. Value:-basicplan: Basic version.-standardplan: Standard version.-advancedplan: Advanced version.-enterpriseplan: Enterprise Edition.
resourceGroupId Changes to this property will trigger replacement. String
The ID of the resource group
siteName Changes to this property will trigger replacement. String
Site Name
siteSearchType Changes to this property will trigger replacement. String
The search match pattern for the site name. The default value is exact match. Valid values:-prefix: matches the prefix.-suffix: The suffix matches.-exact: exact match.-fuzzy: fuzzy match.
status Changes to this property will trigger replacement. String
The status of the resource
tags Changes to this property will trigger replacement. Map<String,String>
Resource tags
accessType Changes to this property will trigger replacement. string
Access type. Value:-NS: Managed access via NS.-CNAME: access through CNAME.
coverage Changes to this property will trigger replacement. string
Acceleration area
ids Changes to this property will trigger replacement. string[]
A list of Site IDs.
nameRegex Changes to this property will trigger replacement. string
A regex string to filter results by Group Metric Rule name.
onlyEnterprise Changes to this property will trigger replacement. boolean
Only the Enterprise version, pass true when the table only queries the enterprise version of the site.
outputFile Changes to this property will trigger replacement. string
File name where to save data source results (after running pulumi preview).
pageNumber Changes to this property will trigger replacement. number
Current page number.
pageSize Changes to this property will trigger replacement. number
Number of records per page.
planSubscribeType Changes to this property will trigger replacement. string
Package subscription type. Value:-basicplan: Basic version.-standardplan: Standard version.-advancedplan: Advanced version.-enterpriseplan: Enterprise Edition.
resourceGroupId Changes to this property will trigger replacement. string
The ID of the resource group
siteName Changes to this property will trigger replacement. string
Site Name
siteSearchType Changes to this property will trigger replacement. string
The search match pattern for the site name. The default value is exact match. Valid values:-prefix: matches the prefix.-suffix: The suffix matches.-exact: exact match.-fuzzy: fuzzy match.
status Changes to this property will trigger replacement. string
The status of the resource
tags Changes to this property will trigger replacement. {[key: string]: string}
Resource tags
access_type Changes to this property will trigger replacement. str
Access type. Value:-NS: Managed access via NS.-CNAME: access through CNAME.
coverage Changes to this property will trigger replacement. str
Acceleration area
ids Changes to this property will trigger replacement. Sequence[str]
A list of Site IDs.
name_regex Changes to this property will trigger replacement. str
A regex string to filter results by Group Metric Rule name.
only_enterprise Changes to this property will trigger replacement. bool
Only the Enterprise version, pass true when the table only queries the enterprise version of the site.
output_file Changes to this property will trigger replacement. str
File name where to save data source results (after running pulumi preview).
page_number Changes to this property will trigger replacement. int
Current page number.
page_size Changes to this property will trigger replacement. int
Number of records per page.
plan_subscribe_type Changes to this property will trigger replacement. str
Package subscription type. Value:-basicplan: Basic version.-standardplan: Standard version.-advancedplan: Advanced version.-enterpriseplan: Enterprise Edition.
resource_group_id Changes to this property will trigger replacement. str
The ID of the resource group
site_name Changes to this property will trigger replacement. str
Site Name
site_search_type Changes to this property will trigger replacement. str
The search match pattern for the site name. The default value is exact match. Valid values:-prefix: matches the prefix.-suffix: The suffix matches.-exact: exact match.-fuzzy: fuzzy match.
status Changes to this property will trigger replacement. str
The status of the resource
tags Changes to this property will trigger replacement. Mapping[str, str]
Resource tags
accessType Changes to this property will trigger replacement. String
Access type. Value:-NS: Managed access via NS.-CNAME: access through CNAME.
coverage Changes to this property will trigger replacement. String
Acceleration area
ids Changes to this property will trigger replacement. List<String>
A list of Site IDs.
nameRegex Changes to this property will trigger replacement. String
A regex string to filter results by Group Metric Rule name.
onlyEnterprise Changes to this property will trigger replacement. Boolean
Only the Enterprise version, pass true when the table only queries the enterprise version of the site.
outputFile Changes to this property will trigger replacement. String
File name where to save data source results (after running pulumi preview).
pageNumber Changes to this property will trigger replacement. Number
Current page number.
pageSize Changes to this property will trigger replacement. Number
Number of records per page.
planSubscribeType Changes to this property will trigger replacement. String
Package subscription type. Value:-basicplan: Basic version.-standardplan: Standard version.-advancedplan: Advanced version.-enterpriseplan: Enterprise Edition.
resourceGroupId Changes to this property will trigger replacement. String
The ID of the resource group
siteName Changes to this property will trigger replacement. String
Site Name
siteSearchType Changes to this property will trigger replacement. String
The search match pattern for the site name. The default value is exact match. Valid values:-prefix: matches the prefix.-suffix: The suffix matches.-exact: exact match.-fuzzy: fuzzy match.
status Changes to this property will trigger replacement. String
The status of the resource
tags Changes to this property will trigger replacement. Map<String>
Resource tags

getSites Result

The following output properties are available:

Id string
The provider-assigned unique ID for this managed resource.
Ids List<string>
A list of Site IDs.
Names List<string>
A list of name of Sites.
Sites List<Pulumi.AliCloud.Esa.Outputs.GetSitesSite>
A list of Site Entries. Each element contains the following attributes:
AccessType string
Access type. Value:-NS: Managed access via NS.-CNAME: access through CNAME.
Coverage string
Acceleration area
NameRegex string
OnlyEnterprise bool
OutputFile string
PageNumber int
PageSize int
PlanSubscribeType string
ResourceGroupId string
The ID of the resource group
SiteName string
Site Name
SiteSearchType string
Status string
The status of the resource
Tags Dictionary<string, string>
Id string
The provider-assigned unique ID for this managed resource.
Ids []string
A list of Site IDs.
Names []string
A list of name of Sites.
Sites []GetSitesSite
A list of Site Entries. Each element contains the following attributes:
AccessType string
Access type. Value:-NS: Managed access via NS.-CNAME: access through CNAME.
Coverage string
Acceleration area
NameRegex string
OnlyEnterprise bool
OutputFile string
PageNumber int
PageSize int
PlanSubscribeType string
ResourceGroupId string
The ID of the resource group
SiteName string
Site Name
SiteSearchType string
Status string
The status of the resource
Tags map[string]string
id String
The provider-assigned unique ID for this managed resource.
ids List<String>
A list of Site IDs.
names List<String>
A list of name of Sites.
sites List<GetSitesSite>
A list of Site Entries. Each element contains the following attributes:
accessType String
Access type. Value:-NS: Managed access via NS.-CNAME: access through CNAME.
coverage String
Acceleration area
nameRegex String
onlyEnterprise Boolean
outputFile String
pageNumber Integer
pageSize Integer
planSubscribeType String
resourceGroupId String
The ID of the resource group
siteName String
Site Name
siteSearchType String
status String
The status of the resource
tags Map<String,String>
id string
The provider-assigned unique ID for this managed resource.
ids string[]
A list of Site IDs.
names string[]
A list of name of Sites.
sites GetSitesSite[]
A list of Site Entries. Each element contains the following attributes:
accessType string
Access type. Value:-NS: Managed access via NS.-CNAME: access through CNAME.
coverage string
Acceleration area
nameRegex string
onlyEnterprise boolean
outputFile string
pageNumber number
pageSize number
planSubscribeType string
resourceGroupId string
The ID of the resource group
siteName string
Site Name
siteSearchType string
status string
The status of the resource
tags {[key: string]: string}
id str
The provider-assigned unique ID for this managed resource.
ids Sequence[str]
A list of Site IDs.
names Sequence[str]
A list of name of Sites.
sites Sequence[GetSitesSite]
A list of Site Entries. Each element contains the following attributes:
access_type str
Access type. Value:-NS: Managed access via NS.-CNAME: access through CNAME.
coverage str
Acceleration area
name_regex str
only_enterprise bool
output_file str
page_number int
page_size int
plan_subscribe_type str
resource_group_id str
The ID of the resource group
site_name str
Site Name
site_search_type str
status str
The status of the resource
tags Mapping[str, str]
id String
The provider-assigned unique ID for this managed resource.
ids List<String>
A list of Site IDs.
names List<String>
A list of name of Sites.
sites List<Property Map>
A list of Site Entries. Each element contains the following attributes:
accessType String
Access type. Value:-NS: Managed access via NS.-CNAME: access through CNAME.
coverage String
Acceleration area
nameRegex String
onlyEnterprise Boolean
outputFile String
pageNumber Number
pageSize Number
planSubscribeType String
resourceGroupId String
The ID of the resource group
siteName String
Site Name
siteSearchType String
status String
The status of the resource
tags Map<String>

Supporting Types

GetSitesSite

AccessType This property is required. string
Access type. Value:-NS: Managed access via NS.-CNAME: access through CNAME.
Coverage This property is required. string
Acceleration area
CreateTime This property is required. string
Creation time
Id This property is required. int
The ID of the resource supplied above.
InstanceId This property is required. string
The ID of the associated package instance.
ModifyTime This property is required. string
Modification time
NameServerList This property is required. string
Site Resolution Name Server List
ResourceGroupId This property is required. string
The ID of the resource group
SiteId This property is required. int
Site ID
SiteName This property is required. string
Site Name
Status This property is required. string
The status of the resource
AccessType This property is required. string
Access type. Value:-NS: Managed access via NS.-CNAME: access through CNAME.
Coverage This property is required. string
Acceleration area
CreateTime This property is required. string
Creation time
Id This property is required. int
The ID of the resource supplied above.
InstanceId This property is required. string
The ID of the associated package instance.
ModifyTime This property is required. string
Modification time
NameServerList This property is required. string
Site Resolution Name Server List
ResourceGroupId This property is required. string
The ID of the resource group
SiteId This property is required. int
Site ID
SiteName This property is required. string
Site Name
Status This property is required. string
The status of the resource
accessType This property is required. String
Access type. Value:-NS: Managed access via NS.-CNAME: access through CNAME.
coverage This property is required. String
Acceleration area
createTime This property is required. String
Creation time
id This property is required. Integer
The ID of the resource supplied above.
instanceId This property is required. String
The ID of the associated package instance.
modifyTime This property is required. String
Modification time
nameServerList This property is required. String
Site Resolution Name Server List
resourceGroupId This property is required. String
The ID of the resource group
siteId This property is required. Integer
Site ID
siteName This property is required. String
Site Name
status This property is required. String
The status of the resource
accessType This property is required. string
Access type. Value:-NS: Managed access via NS.-CNAME: access through CNAME.
coverage This property is required. string
Acceleration area
createTime This property is required. string
Creation time
id This property is required. number
The ID of the resource supplied above.
instanceId This property is required. string
The ID of the associated package instance.
modifyTime This property is required. string
Modification time
nameServerList This property is required. string
Site Resolution Name Server List
resourceGroupId This property is required. string
The ID of the resource group
siteId This property is required. number
Site ID
siteName This property is required. string
Site Name
status This property is required. string
The status of the resource
access_type This property is required. str
Access type. Value:-NS: Managed access via NS.-CNAME: access through CNAME.
coverage This property is required. str
Acceleration area
create_time This property is required. str
Creation time
id This property is required. int
The ID of the resource supplied above.
instance_id This property is required. str
The ID of the associated package instance.
modify_time This property is required. str
Modification time
name_server_list This property is required. str
Site Resolution Name Server List
resource_group_id This property is required. str
The ID of the resource group
site_id This property is required. int
Site ID
site_name This property is required. str
Site Name
status This property is required. str
The status of the resource
accessType This property is required. String
Access type. Value:-NS: Managed access via NS.-CNAME: access through CNAME.
coverage This property is required. String
Acceleration area
createTime This property is required. String
Creation time
id This property is required. Number
The ID of the resource supplied above.
instanceId This property is required. String
The ID of the associated package instance.
modifyTime This property is required. String
Modification time
nameServerList This property is required. String
Site Resolution Name Server List
resourceGroupId This property is required. String
The ID of the resource group
siteId This property is required. Number
Site ID
siteName This property is required. String
Site Name
status This property is required. String
The status of the resource

Package Details

Repository
Alibaba Cloud pulumi/pulumi-alicloud
License
Apache-2.0
Notes
This Pulumi package is based on the alicloud Terraform Provider.
Alibaba Cloud v3.76.0 published on Tuesday, Apr 8, 2025 by Pulumi