1. Packages
  2. Tencentcloud Provider
  3. API Docs
  4. CdcSite
tencentcloud 1.81.189 published on Wednesday, Apr 30, 2025 by tencentcloudstack

tencentcloud.CdcSite

Explore with Pulumi AI

tencentcloud logo
tencentcloud 1.81.189 published on Wednesday, Apr 30, 2025 by tencentcloudstack

    Provides a resource to create a CDC site

    Example Usage

    Create a basic CDC site

    import * as pulumi from "@pulumi/pulumi";
    import * as tencentcloud from "@pulumi/tencentcloud";
    
    const example = new tencentcloud.CdcSite("example", {
        addressLine: "Tencent Building",
        city: "Guangzhou",
        country: "China",
        description: "desc.",
        province: "Guangdong Province",
    });
    
    import pulumi
    import pulumi_tencentcloud as tencentcloud
    
    example = tencentcloud.CdcSite("example",
        address_line="Tencent Building",
        city="Guangzhou",
        country="China",
        description="desc.",
        province="Guangdong Province")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/tencentcloud/tencentcloud"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := tencentcloud.NewCdcSite(ctx, "example", &tencentcloud.CdcSiteArgs{
    			AddressLine: pulumi.String("Tencent Building"),
    			City:        pulumi.String("Guangzhou"),
    			Country:     pulumi.String("China"),
    			Description: pulumi.String("desc."),
    			Province:    pulumi.String("Guangdong Province"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Tencentcloud = Pulumi.Tencentcloud;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Tencentcloud.CdcSite("example", new()
        {
            AddressLine = "Tencent Building",
            City = "Guangzhou",
            Country = "China",
            Description = "desc.",
            Province = "Guangdong Province",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.tencentcloud.CdcSite;
    import com.pulumi.tencentcloud.CdcSiteArgs;
    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) {
            var example = new CdcSite("example", CdcSiteArgs.builder()
                .addressLine("Tencent Building")
                .city("Guangzhou")
                .country("China")
                .description("desc.")
                .province("Guangdong Province")
                .build());
    
        }
    }
    
    resources:
      example:
        type: tencentcloud:CdcSite
        properties:
          addressLine: Tencent Building
          city: Guangzhou
          country: China
          description: desc.
          province: Guangdong Province
    

    Create a complete CDC site

    import * as pulumi from "@pulumi/pulumi";
    import * as tencentcloud from "@pulumi/tencentcloud";
    
    const example = new tencentcloud.CdcSite("example", {
        addressLine: "Shenzhen Tencent Building",
        breakerRequirement: true,
        city: "Guangzhou",
        conditionRequirement: true,
        country: "China",
        description: "desc.",
        dimensionRequirement: true,
        fiberType: "MM",
        maxWeight: 100,
        needHelp: true,
        opticalStandard: "MM",
        optionalAddressLine: "Shenzhen Tencent Building of Binhai",
        powerConnectors: "380VAC3P",
        powerDrawKva: 10,
        powerFeedDrop: "DOWN",
        province: "Guangdong Province",
        redundantNetworking: true,
        redundantPower: true,
        uplinkCount: 2,
        uplinkSpeedGbps: 10,
    });
    
    import pulumi
    import pulumi_tencentcloud as tencentcloud
    
    example = tencentcloud.CdcSite("example",
        address_line="Shenzhen Tencent Building",
        breaker_requirement=True,
        city="Guangzhou",
        condition_requirement=True,
        country="China",
        description="desc.",
        dimension_requirement=True,
        fiber_type="MM",
        max_weight=100,
        need_help=True,
        optical_standard="MM",
        optional_address_line="Shenzhen Tencent Building of Binhai",
        power_connectors="380VAC3P",
        power_draw_kva=10,
        power_feed_drop="DOWN",
        province="Guangdong Province",
        redundant_networking=True,
        redundant_power=True,
        uplink_count=2,
        uplink_speed_gbps=10)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/tencentcloud/tencentcloud"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := tencentcloud.NewCdcSite(ctx, "example", &tencentcloud.CdcSiteArgs{
    			AddressLine:          pulumi.String("Shenzhen Tencent Building"),
    			BreakerRequirement:   pulumi.Bool(true),
    			City:                 pulumi.String("Guangzhou"),
    			ConditionRequirement: pulumi.Bool(true),
    			Country:              pulumi.String("China"),
    			Description:          pulumi.String("desc."),
    			DimensionRequirement: pulumi.Bool(true),
    			FiberType:            pulumi.String("MM"),
    			MaxWeight:            pulumi.Float64(100),
    			NeedHelp:             pulumi.Bool(true),
    			OpticalStandard:      pulumi.String("MM"),
    			OptionalAddressLine:  pulumi.String("Shenzhen Tencent Building of Binhai"),
    			PowerConnectors:      pulumi.String("380VAC3P"),
    			PowerDrawKva:         pulumi.Float64(10),
    			PowerFeedDrop:        pulumi.String("DOWN"),
    			Province:             pulumi.String("Guangdong Province"),
    			RedundantNetworking:  pulumi.Bool(true),
    			RedundantPower:       pulumi.Bool(true),
    			UplinkCount:          pulumi.Float64(2),
    			UplinkSpeedGbps:      pulumi.Float64(10),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Tencentcloud = Pulumi.Tencentcloud;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Tencentcloud.CdcSite("example", new()
        {
            AddressLine = "Shenzhen Tencent Building",
            BreakerRequirement = true,
            City = "Guangzhou",
            ConditionRequirement = true,
            Country = "China",
            Description = "desc.",
            DimensionRequirement = true,
            FiberType = "MM",
            MaxWeight = 100,
            NeedHelp = true,
            OpticalStandard = "MM",
            OptionalAddressLine = "Shenzhen Tencent Building of Binhai",
            PowerConnectors = "380VAC3P",
            PowerDrawKva = 10,
            PowerFeedDrop = "DOWN",
            Province = "Guangdong Province",
            RedundantNetworking = true,
            RedundantPower = true,
            UplinkCount = 2,
            UplinkSpeedGbps = 10,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.tencentcloud.CdcSite;
    import com.pulumi.tencentcloud.CdcSiteArgs;
    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) {
            var example = new CdcSite("example", CdcSiteArgs.builder()
                .addressLine("Shenzhen Tencent Building")
                .breakerRequirement(true)
                .city("Guangzhou")
                .conditionRequirement(true)
                .country("China")
                .description("desc.")
                .dimensionRequirement(true)
                .fiberType("MM")
                .maxWeight(100)
                .needHelp(true)
                .opticalStandard("MM")
                .optionalAddressLine("Shenzhen Tencent Building of Binhai")
                .powerConnectors("380VAC3P")
                .powerDrawKva(10)
                .powerFeedDrop("DOWN")
                .province("Guangdong Province")
                .redundantNetworking(true)
                .redundantPower(true)
                .uplinkCount(2)
                .uplinkSpeedGbps(10)
                .build());
    
        }
    }
    
    resources:
      example:
        type: tencentcloud:CdcSite
        properties:
          addressLine: Shenzhen Tencent Building
          breakerRequirement: true
          city: Guangzhou
          conditionRequirement: true
          country: China
          description: desc.
          dimensionRequirement: true
          fiberType: MM
          maxWeight: 100
          needHelp: true
          opticalStandard: MM
          optionalAddressLine: Shenzhen Tencent Building of Binhai
          powerConnectors: 380VAC3P
          powerDrawKva: 10
          powerFeedDrop: DOWN
          province: Guangdong Province
          redundantNetworking: true
          redundantPower: true
          uplinkCount: 2
          uplinkSpeedGbps: 10
    

    Create CdcSite Resource

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

    Constructor syntax

    new CdcSite(name: string, args: CdcSiteArgs, opts?: CustomResourceOptions);
    @overload
    def CdcSite(resource_name: str,
                args: CdcSiteArgs,
                opts: Optional[ResourceOptions] = None)
    
    @overload
    def CdcSite(resource_name: str,
                opts: Optional[ResourceOptions] = None,
                country: Optional[str] = None,
                province: Optional[str] = None,
                address_line: Optional[str] = None,
                city: Optional[str] = None,
                name: Optional[str] = None,
                optional_address_line: Optional[str] = None,
                description: Optional[str] = None,
                dimension_requirement: Optional[bool] = None,
                fiber_type: Optional[str] = None,
                max_weight: Optional[float] = None,
                cdc_site_id: Optional[str] = None,
                need_help: Optional[bool] = None,
                optical_standard: Optional[str] = None,
                condition_requirement: Optional[bool] = None,
                power_connectors: Optional[str] = None,
                power_draw_kva: Optional[float] = None,
                power_feed_drop: Optional[str] = None,
                breaker_requirement: Optional[bool] = None,
                redundant_networking: Optional[bool] = None,
                redundant_power: Optional[bool] = None,
                uplink_count: Optional[float] = None,
                uplink_speed_gbps: Optional[float] = None)
    func NewCdcSite(ctx *Context, name string, args CdcSiteArgs, opts ...ResourceOption) (*CdcSite, error)
    public CdcSite(string name, CdcSiteArgs args, CustomResourceOptions? opts = null)
    public CdcSite(String name, CdcSiteArgs args)
    public CdcSite(String name, CdcSiteArgs args, CustomResourceOptions options)
    
    type: tencentcloud:CdcSite
    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 CdcSiteArgs
    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 CdcSiteArgs
    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 CdcSiteArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args CdcSiteArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args CdcSiteArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    CdcSite Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The CdcSite resource accepts the following input properties:

    AddressLine string
    Site Detail Address.
    City string
    Site City.
    Country string
    Site Country.
    Province string
    Site Province.
    BreakerRequirement bool
    Whether there is an upstream circuit breaker.
    CdcSiteId string
    ID of the resource.
    ConditionRequirement bool
    Whether the following environmental conditions are met: n1. There are no material requirements or the acceptance standard on site that will affect the delivery and installation of the CDC device. n2. The following conditions are met for finalized rack positions: Temperature ranges from 41 to 104 degrees F (5 to 40 degrees C). Humidity ranges from 10 degrees F (-12 degrees C) to 70 degrees F (21 degrees C) and relative humidity ranges from 8% RH to 80% RH. Air flows from front to back at the rack position and there is sufficient air in CFM (cubic feet per minute). The air quantity in CFM must be 145.8 times the power consumption (in KVA) of CDC.
    Description string
    Site Description.
    DimensionRequirement bool
    Whether the following dimension conditions are met: Your loading dock can accommodate one rack container (H x W x D = 94 x 54 x 48). You can provide a clear route from the delivery point of your rack (H x W x D = 80 x 24 x 48) to its final installation location. You should consider platforms, corridors, doors, turns, ramps, freight elevators as well as other access restrictions when measuring the depth. There shall be a 48 or greater front clearance and a 24 or greater rear clearance where the CDC is finally installed.
    FiberType string
    Site Fiber Type. Using optical fiber type to connect the CDC device to the network SM(Single-Mode) or MM(Multi-Mode) fibers are available.
    MaxWeight double
    Site Max Weight capacity (KG).
    Name string
    Site Name.
    NeedHelp bool
    Whether you need help from Tencent Cloud for rack installation.
    OpticalStandard string
    Site Optical Standard. Optical standard used to connect the CDC device to the network This field depends on the uplink speed, optical fiber type, and distance to upstream equipment. Allow value: SM, MM.
    OptionalAddressLine string
    Detailed address of the site area (to be added).
    PowerConnectors string
    Site Power Connectors. Example: 380VAC3P.
    PowerDrawKva double
    Site Power DrawKva (KW).
    PowerFeedDrop string
    Site Power Feed Drop. Whether power is supplied from above or below the rack. Allow value: UP, DOWN.
    RedundantNetworking bool
    Whether redundant upstream equipment (switch or router) is provided so that both network devices can be connected to the network.
    RedundantPower bool
    Whether there is power redundancy.
    UplinkCount double
    Number of uplinks used by each CDC device (2 devices per rack) when connected to the network.
    UplinkSpeedGbps double
    Uplink speed from the network to Tencent Cloud Region.
    AddressLine string
    Site Detail Address.
    City string
    Site City.
    Country string
    Site Country.
    Province string
    Site Province.
    BreakerRequirement bool
    Whether there is an upstream circuit breaker.
    CdcSiteId string
    ID of the resource.
    ConditionRequirement bool
    Whether the following environmental conditions are met: n1. There are no material requirements or the acceptance standard on site that will affect the delivery and installation of the CDC device. n2. The following conditions are met for finalized rack positions: Temperature ranges from 41 to 104 degrees F (5 to 40 degrees C). Humidity ranges from 10 degrees F (-12 degrees C) to 70 degrees F (21 degrees C) and relative humidity ranges from 8% RH to 80% RH. Air flows from front to back at the rack position and there is sufficient air in CFM (cubic feet per minute). The air quantity in CFM must be 145.8 times the power consumption (in KVA) of CDC.
    Description string
    Site Description.
    DimensionRequirement bool
    Whether the following dimension conditions are met: Your loading dock can accommodate one rack container (H x W x D = 94 x 54 x 48). You can provide a clear route from the delivery point of your rack (H x W x D = 80 x 24 x 48) to its final installation location. You should consider platforms, corridors, doors, turns, ramps, freight elevators as well as other access restrictions when measuring the depth. There shall be a 48 or greater front clearance and a 24 or greater rear clearance where the CDC is finally installed.
    FiberType string
    Site Fiber Type. Using optical fiber type to connect the CDC device to the network SM(Single-Mode) or MM(Multi-Mode) fibers are available.
    MaxWeight float64
    Site Max Weight capacity (KG).
    Name string
    Site Name.
    NeedHelp bool
    Whether you need help from Tencent Cloud for rack installation.
    OpticalStandard string
    Site Optical Standard. Optical standard used to connect the CDC device to the network This field depends on the uplink speed, optical fiber type, and distance to upstream equipment. Allow value: SM, MM.
    OptionalAddressLine string
    Detailed address of the site area (to be added).
    PowerConnectors string
    Site Power Connectors. Example: 380VAC3P.
    PowerDrawKva float64
    Site Power DrawKva (KW).
    PowerFeedDrop string
    Site Power Feed Drop. Whether power is supplied from above or below the rack. Allow value: UP, DOWN.
    RedundantNetworking bool
    Whether redundant upstream equipment (switch or router) is provided so that both network devices can be connected to the network.
    RedundantPower bool
    Whether there is power redundancy.
    UplinkCount float64
    Number of uplinks used by each CDC device (2 devices per rack) when connected to the network.
    UplinkSpeedGbps float64
    Uplink speed from the network to Tencent Cloud Region.
    addressLine String
    Site Detail Address.
    city String
    Site City.
    country String
    Site Country.
    province String
    Site Province.
    breakerRequirement Boolean
    Whether there is an upstream circuit breaker.
    cdcSiteId String
    ID of the resource.
    conditionRequirement Boolean
    Whether the following environmental conditions are met: n1. There are no material requirements or the acceptance standard on site that will affect the delivery and installation of the CDC device. n2. The following conditions are met for finalized rack positions: Temperature ranges from 41 to 104 degrees F (5 to 40 degrees C). Humidity ranges from 10 degrees F (-12 degrees C) to 70 degrees F (21 degrees C) and relative humidity ranges from 8% RH to 80% RH. Air flows from front to back at the rack position and there is sufficient air in CFM (cubic feet per minute). The air quantity in CFM must be 145.8 times the power consumption (in KVA) of CDC.
    description String
    Site Description.
    dimensionRequirement Boolean
    Whether the following dimension conditions are met: Your loading dock can accommodate one rack container (H x W x D = 94 x 54 x 48). You can provide a clear route from the delivery point of your rack (H x W x D = 80 x 24 x 48) to its final installation location. You should consider platforms, corridors, doors, turns, ramps, freight elevators as well as other access restrictions when measuring the depth. There shall be a 48 or greater front clearance and a 24 or greater rear clearance where the CDC is finally installed.
    fiberType String
    Site Fiber Type. Using optical fiber type to connect the CDC device to the network SM(Single-Mode) or MM(Multi-Mode) fibers are available.
    maxWeight Double
    Site Max Weight capacity (KG).
    name String
    Site Name.
    needHelp Boolean
    Whether you need help from Tencent Cloud for rack installation.
    opticalStandard String
    Site Optical Standard. Optical standard used to connect the CDC device to the network This field depends on the uplink speed, optical fiber type, and distance to upstream equipment. Allow value: SM, MM.
    optionalAddressLine String
    Detailed address of the site area (to be added).
    powerConnectors String
    Site Power Connectors. Example: 380VAC3P.
    powerDrawKva Double
    Site Power DrawKva (KW).
    powerFeedDrop String
    Site Power Feed Drop. Whether power is supplied from above or below the rack. Allow value: UP, DOWN.
    redundantNetworking Boolean
    Whether redundant upstream equipment (switch or router) is provided so that both network devices can be connected to the network.
    redundantPower Boolean
    Whether there is power redundancy.
    uplinkCount Double
    Number of uplinks used by each CDC device (2 devices per rack) when connected to the network.
    uplinkSpeedGbps Double
    Uplink speed from the network to Tencent Cloud Region.
    addressLine string
    Site Detail Address.
    city string
    Site City.
    country string
    Site Country.
    province string
    Site Province.
    breakerRequirement boolean
    Whether there is an upstream circuit breaker.
    cdcSiteId string
    ID of the resource.
    conditionRequirement boolean
    Whether the following environmental conditions are met: n1. There are no material requirements or the acceptance standard on site that will affect the delivery and installation of the CDC device. n2. The following conditions are met for finalized rack positions: Temperature ranges from 41 to 104 degrees F (5 to 40 degrees C). Humidity ranges from 10 degrees F (-12 degrees C) to 70 degrees F (21 degrees C) and relative humidity ranges from 8% RH to 80% RH. Air flows from front to back at the rack position and there is sufficient air in CFM (cubic feet per minute). The air quantity in CFM must be 145.8 times the power consumption (in KVA) of CDC.
    description string
    Site Description.
    dimensionRequirement boolean
    Whether the following dimension conditions are met: Your loading dock can accommodate one rack container (H x W x D = 94 x 54 x 48). You can provide a clear route from the delivery point of your rack (H x W x D = 80 x 24 x 48) to its final installation location. You should consider platforms, corridors, doors, turns, ramps, freight elevators as well as other access restrictions when measuring the depth. There shall be a 48 or greater front clearance and a 24 or greater rear clearance where the CDC is finally installed.
    fiberType string
    Site Fiber Type. Using optical fiber type to connect the CDC device to the network SM(Single-Mode) or MM(Multi-Mode) fibers are available.
    maxWeight number
    Site Max Weight capacity (KG).
    name string
    Site Name.
    needHelp boolean
    Whether you need help from Tencent Cloud for rack installation.
    opticalStandard string
    Site Optical Standard. Optical standard used to connect the CDC device to the network This field depends on the uplink speed, optical fiber type, and distance to upstream equipment. Allow value: SM, MM.
    optionalAddressLine string
    Detailed address of the site area (to be added).
    powerConnectors string
    Site Power Connectors. Example: 380VAC3P.
    powerDrawKva number
    Site Power DrawKva (KW).
    powerFeedDrop string
    Site Power Feed Drop. Whether power is supplied from above or below the rack. Allow value: UP, DOWN.
    redundantNetworking boolean
    Whether redundant upstream equipment (switch or router) is provided so that both network devices can be connected to the network.
    redundantPower boolean
    Whether there is power redundancy.
    uplinkCount number
    Number of uplinks used by each CDC device (2 devices per rack) when connected to the network.
    uplinkSpeedGbps number
    Uplink speed from the network to Tencent Cloud Region.
    address_line str
    Site Detail Address.
    city str
    Site City.
    country str
    Site Country.
    province str
    Site Province.
    breaker_requirement bool
    Whether there is an upstream circuit breaker.
    cdc_site_id str
    ID of the resource.
    condition_requirement bool
    Whether the following environmental conditions are met: n1. There are no material requirements or the acceptance standard on site that will affect the delivery and installation of the CDC device. n2. The following conditions are met for finalized rack positions: Temperature ranges from 41 to 104 degrees F (5 to 40 degrees C). Humidity ranges from 10 degrees F (-12 degrees C) to 70 degrees F (21 degrees C) and relative humidity ranges from 8% RH to 80% RH. Air flows from front to back at the rack position and there is sufficient air in CFM (cubic feet per minute). The air quantity in CFM must be 145.8 times the power consumption (in KVA) of CDC.
    description str
    Site Description.
    dimension_requirement bool
    Whether the following dimension conditions are met: Your loading dock can accommodate one rack container (H x W x D = 94 x 54 x 48). You can provide a clear route from the delivery point of your rack (H x W x D = 80 x 24 x 48) to its final installation location. You should consider platforms, corridors, doors, turns, ramps, freight elevators as well as other access restrictions when measuring the depth. There shall be a 48 or greater front clearance and a 24 or greater rear clearance where the CDC is finally installed.
    fiber_type str
    Site Fiber Type. Using optical fiber type to connect the CDC device to the network SM(Single-Mode) or MM(Multi-Mode) fibers are available.
    max_weight float
    Site Max Weight capacity (KG).
    name str
    Site Name.
    need_help bool
    Whether you need help from Tencent Cloud for rack installation.
    optical_standard str
    Site Optical Standard. Optical standard used to connect the CDC device to the network This field depends on the uplink speed, optical fiber type, and distance to upstream equipment. Allow value: SM, MM.
    optional_address_line str
    Detailed address of the site area (to be added).
    power_connectors str
    Site Power Connectors. Example: 380VAC3P.
    power_draw_kva float
    Site Power DrawKva (KW).
    power_feed_drop str
    Site Power Feed Drop. Whether power is supplied from above or below the rack. Allow value: UP, DOWN.
    redundant_networking bool
    Whether redundant upstream equipment (switch or router) is provided so that both network devices can be connected to the network.
    redundant_power bool
    Whether there is power redundancy.
    uplink_count float
    Number of uplinks used by each CDC device (2 devices per rack) when connected to the network.
    uplink_speed_gbps float
    Uplink speed from the network to Tencent Cloud Region.
    addressLine String
    Site Detail Address.
    city String
    Site City.
    country String
    Site Country.
    province String
    Site Province.
    breakerRequirement Boolean
    Whether there is an upstream circuit breaker.
    cdcSiteId String
    ID of the resource.
    conditionRequirement Boolean
    Whether the following environmental conditions are met: n1. There are no material requirements or the acceptance standard on site that will affect the delivery and installation of the CDC device. n2. The following conditions are met for finalized rack positions: Temperature ranges from 41 to 104 degrees F (5 to 40 degrees C). Humidity ranges from 10 degrees F (-12 degrees C) to 70 degrees F (21 degrees C) and relative humidity ranges from 8% RH to 80% RH. Air flows from front to back at the rack position and there is sufficient air in CFM (cubic feet per minute). The air quantity in CFM must be 145.8 times the power consumption (in KVA) of CDC.
    description String
    Site Description.
    dimensionRequirement Boolean
    Whether the following dimension conditions are met: Your loading dock can accommodate one rack container (H x W x D = 94 x 54 x 48). You can provide a clear route from the delivery point of your rack (H x W x D = 80 x 24 x 48) to its final installation location. You should consider platforms, corridors, doors, turns, ramps, freight elevators as well as other access restrictions when measuring the depth. There shall be a 48 or greater front clearance and a 24 or greater rear clearance where the CDC is finally installed.
    fiberType String
    Site Fiber Type. Using optical fiber type to connect the CDC device to the network SM(Single-Mode) or MM(Multi-Mode) fibers are available.
    maxWeight Number
    Site Max Weight capacity (KG).
    name String
    Site Name.
    needHelp Boolean
    Whether you need help from Tencent Cloud for rack installation.
    opticalStandard String
    Site Optical Standard. Optical standard used to connect the CDC device to the network This field depends on the uplink speed, optical fiber type, and distance to upstream equipment. Allow value: SM, MM.
    optionalAddressLine String
    Detailed address of the site area (to be added).
    powerConnectors String
    Site Power Connectors. Example: 380VAC3P.
    powerDrawKva Number
    Site Power DrawKva (KW).
    powerFeedDrop String
    Site Power Feed Drop. Whether power is supplied from above or below the rack. Allow value: UP, DOWN.
    redundantNetworking Boolean
    Whether redundant upstream equipment (switch or router) is provided so that both network devices can be connected to the network.
    redundantPower Boolean
    Whether there is power redundancy.
    uplinkCount Number
    Number of uplinks used by each CDC device (2 devices per rack) when connected to the network.
    uplinkSpeedGbps Number
    Uplink speed from the network to Tencent Cloud Region.

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing CdcSite Resource

    Get an existing CdcSite 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?: CdcSiteState, opts?: CustomResourceOptions): CdcSite
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            address_line: Optional[str] = None,
            breaker_requirement: Optional[bool] = None,
            cdc_site_id: Optional[str] = None,
            city: Optional[str] = None,
            condition_requirement: Optional[bool] = None,
            country: Optional[str] = None,
            description: Optional[str] = None,
            dimension_requirement: Optional[bool] = None,
            fiber_type: Optional[str] = None,
            max_weight: Optional[float] = None,
            name: Optional[str] = None,
            need_help: Optional[bool] = None,
            optical_standard: Optional[str] = None,
            optional_address_line: Optional[str] = None,
            power_connectors: Optional[str] = None,
            power_draw_kva: Optional[float] = None,
            power_feed_drop: Optional[str] = None,
            province: Optional[str] = None,
            redundant_networking: Optional[bool] = None,
            redundant_power: Optional[bool] = None,
            uplink_count: Optional[float] = None,
            uplink_speed_gbps: Optional[float] = None) -> CdcSite
    func GetCdcSite(ctx *Context, name string, id IDInput, state *CdcSiteState, opts ...ResourceOption) (*CdcSite, error)
    public static CdcSite Get(string name, Input<string> id, CdcSiteState? state, CustomResourceOptions? opts = null)
    public static CdcSite get(String name, Output<String> id, CdcSiteState state, CustomResourceOptions options)
    resources:  _:    type: tencentcloud:CdcSite    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    AddressLine string
    Site Detail Address.
    BreakerRequirement bool
    Whether there is an upstream circuit breaker.
    CdcSiteId string
    ID of the resource.
    City string
    Site City.
    ConditionRequirement bool
    Whether the following environmental conditions are met: n1. There are no material requirements or the acceptance standard on site that will affect the delivery and installation of the CDC device. n2. The following conditions are met for finalized rack positions: Temperature ranges from 41 to 104 degrees F (5 to 40 degrees C). Humidity ranges from 10 degrees F (-12 degrees C) to 70 degrees F (21 degrees C) and relative humidity ranges from 8% RH to 80% RH. Air flows from front to back at the rack position and there is sufficient air in CFM (cubic feet per minute). The air quantity in CFM must be 145.8 times the power consumption (in KVA) of CDC.
    Country string
    Site Country.
    Description string
    Site Description.
    DimensionRequirement bool
    Whether the following dimension conditions are met: Your loading dock can accommodate one rack container (H x W x D = 94 x 54 x 48). You can provide a clear route from the delivery point of your rack (H x W x D = 80 x 24 x 48) to its final installation location. You should consider platforms, corridors, doors, turns, ramps, freight elevators as well as other access restrictions when measuring the depth. There shall be a 48 or greater front clearance and a 24 or greater rear clearance where the CDC is finally installed.
    FiberType string
    Site Fiber Type. Using optical fiber type to connect the CDC device to the network SM(Single-Mode) or MM(Multi-Mode) fibers are available.
    MaxWeight double
    Site Max Weight capacity (KG).
    Name string
    Site Name.
    NeedHelp bool
    Whether you need help from Tencent Cloud for rack installation.
    OpticalStandard string
    Site Optical Standard. Optical standard used to connect the CDC device to the network This field depends on the uplink speed, optical fiber type, and distance to upstream equipment. Allow value: SM, MM.
    OptionalAddressLine string
    Detailed address of the site area (to be added).
    PowerConnectors string
    Site Power Connectors. Example: 380VAC3P.
    PowerDrawKva double
    Site Power DrawKva (KW).
    PowerFeedDrop string
    Site Power Feed Drop. Whether power is supplied from above or below the rack. Allow value: UP, DOWN.
    Province string
    Site Province.
    RedundantNetworking bool
    Whether redundant upstream equipment (switch or router) is provided so that both network devices can be connected to the network.
    RedundantPower bool
    Whether there is power redundancy.
    UplinkCount double
    Number of uplinks used by each CDC device (2 devices per rack) when connected to the network.
    UplinkSpeedGbps double
    Uplink speed from the network to Tencent Cloud Region.
    AddressLine string
    Site Detail Address.
    BreakerRequirement bool
    Whether there is an upstream circuit breaker.
    CdcSiteId string
    ID of the resource.
    City string
    Site City.
    ConditionRequirement bool
    Whether the following environmental conditions are met: n1. There are no material requirements or the acceptance standard on site that will affect the delivery and installation of the CDC device. n2. The following conditions are met for finalized rack positions: Temperature ranges from 41 to 104 degrees F (5 to 40 degrees C). Humidity ranges from 10 degrees F (-12 degrees C) to 70 degrees F (21 degrees C) and relative humidity ranges from 8% RH to 80% RH. Air flows from front to back at the rack position and there is sufficient air in CFM (cubic feet per minute). The air quantity in CFM must be 145.8 times the power consumption (in KVA) of CDC.
    Country string
    Site Country.
    Description string
    Site Description.
    DimensionRequirement bool
    Whether the following dimension conditions are met: Your loading dock can accommodate one rack container (H x W x D = 94 x 54 x 48). You can provide a clear route from the delivery point of your rack (H x W x D = 80 x 24 x 48) to its final installation location. You should consider platforms, corridors, doors, turns, ramps, freight elevators as well as other access restrictions when measuring the depth. There shall be a 48 or greater front clearance and a 24 or greater rear clearance where the CDC is finally installed.
    FiberType string
    Site Fiber Type. Using optical fiber type to connect the CDC device to the network SM(Single-Mode) or MM(Multi-Mode) fibers are available.
    MaxWeight float64
    Site Max Weight capacity (KG).
    Name string
    Site Name.
    NeedHelp bool
    Whether you need help from Tencent Cloud for rack installation.
    OpticalStandard string
    Site Optical Standard. Optical standard used to connect the CDC device to the network This field depends on the uplink speed, optical fiber type, and distance to upstream equipment. Allow value: SM, MM.
    OptionalAddressLine string
    Detailed address of the site area (to be added).
    PowerConnectors string
    Site Power Connectors. Example: 380VAC3P.
    PowerDrawKva float64
    Site Power DrawKva (KW).
    PowerFeedDrop string
    Site Power Feed Drop. Whether power is supplied from above or below the rack. Allow value: UP, DOWN.
    Province string
    Site Province.
    RedundantNetworking bool
    Whether redundant upstream equipment (switch or router) is provided so that both network devices can be connected to the network.
    RedundantPower bool
    Whether there is power redundancy.
    UplinkCount float64
    Number of uplinks used by each CDC device (2 devices per rack) when connected to the network.
    UplinkSpeedGbps float64
    Uplink speed from the network to Tencent Cloud Region.
    addressLine String
    Site Detail Address.
    breakerRequirement Boolean
    Whether there is an upstream circuit breaker.
    cdcSiteId String
    ID of the resource.
    city String
    Site City.
    conditionRequirement Boolean
    Whether the following environmental conditions are met: n1. There are no material requirements or the acceptance standard on site that will affect the delivery and installation of the CDC device. n2. The following conditions are met for finalized rack positions: Temperature ranges from 41 to 104 degrees F (5 to 40 degrees C). Humidity ranges from 10 degrees F (-12 degrees C) to 70 degrees F (21 degrees C) and relative humidity ranges from 8% RH to 80% RH. Air flows from front to back at the rack position and there is sufficient air in CFM (cubic feet per minute). The air quantity in CFM must be 145.8 times the power consumption (in KVA) of CDC.
    country String
    Site Country.
    description String
    Site Description.
    dimensionRequirement Boolean
    Whether the following dimension conditions are met: Your loading dock can accommodate one rack container (H x W x D = 94 x 54 x 48). You can provide a clear route from the delivery point of your rack (H x W x D = 80 x 24 x 48) to its final installation location. You should consider platforms, corridors, doors, turns, ramps, freight elevators as well as other access restrictions when measuring the depth. There shall be a 48 or greater front clearance and a 24 or greater rear clearance where the CDC is finally installed.
    fiberType String
    Site Fiber Type. Using optical fiber type to connect the CDC device to the network SM(Single-Mode) or MM(Multi-Mode) fibers are available.
    maxWeight Double
    Site Max Weight capacity (KG).
    name String
    Site Name.
    needHelp Boolean
    Whether you need help from Tencent Cloud for rack installation.
    opticalStandard String
    Site Optical Standard. Optical standard used to connect the CDC device to the network This field depends on the uplink speed, optical fiber type, and distance to upstream equipment. Allow value: SM, MM.
    optionalAddressLine String
    Detailed address of the site area (to be added).
    powerConnectors String
    Site Power Connectors. Example: 380VAC3P.
    powerDrawKva Double
    Site Power DrawKva (KW).
    powerFeedDrop String
    Site Power Feed Drop. Whether power is supplied from above or below the rack. Allow value: UP, DOWN.
    province String
    Site Province.
    redundantNetworking Boolean
    Whether redundant upstream equipment (switch or router) is provided so that both network devices can be connected to the network.
    redundantPower Boolean
    Whether there is power redundancy.
    uplinkCount Double
    Number of uplinks used by each CDC device (2 devices per rack) when connected to the network.
    uplinkSpeedGbps Double
    Uplink speed from the network to Tencent Cloud Region.
    addressLine string
    Site Detail Address.
    breakerRequirement boolean
    Whether there is an upstream circuit breaker.
    cdcSiteId string
    ID of the resource.
    city string
    Site City.
    conditionRequirement boolean
    Whether the following environmental conditions are met: n1. There are no material requirements or the acceptance standard on site that will affect the delivery and installation of the CDC device. n2. The following conditions are met for finalized rack positions: Temperature ranges from 41 to 104 degrees F (5 to 40 degrees C). Humidity ranges from 10 degrees F (-12 degrees C) to 70 degrees F (21 degrees C) and relative humidity ranges from 8% RH to 80% RH. Air flows from front to back at the rack position and there is sufficient air in CFM (cubic feet per minute). The air quantity in CFM must be 145.8 times the power consumption (in KVA) of CDC.
    country string
    Site Country.
    description string
    Site Description.
    dimensionRequirement boolean
    Whether the following dimension conditions are met: Your loading dock can accommodate one rack container (H x W x D = 94 x 54 x 48). You can provide a clear route from the delivery point of your rack (H x W x D = 80 x 24 x 48) to its final installation location. You should consider platforms, corridors, doors, turns, ramps, freight elevators as well as other access restrictions when measuring the depth. There shall be a 48 or greater front clearance and a 24 or greater rear clearance where the CDC is finally installed.
    fiberType string
    Site Fiber Type. Using optical fiber type to connect the CDC device to the network SM(Single-Mode) or MM(Multi-Mode) fibers are available.
    maxWeight number
    Site Max Weight capacity (KG).
    name string
    Site Name.
    needHelp boolean
    Whether you need help from Tencent Cloud for rack installation.
    opticalStandard string
    Site Optical Standard. Optical standard used to connect the CDC device to the network This field depends on the uplink speed, optical fiber type, and distance to upstream equipment. Allow value: SM, MM.
    optionalAddressLine string
    Detailed address of the site area (to be added).
    powerConnectors string
    Site Power Connectors. Example: 380VAC3P.
    powerDrawKva number
    Site Power DrawKva (KW).
    powerFeedDrop string
    Site Power Feed Drop. Whether power is supplied from above or below the rack. Allow value: UP, DOWN.
    province string
    Site Province.
    redundantNetworking boolean
    Whether redundant upstream equipment (switch or router) is provided so that both network devices can be connected to the network.
    redundantPower boolean
    Whether there is power redundancy.
    uplinkCount number
    Number of uplinks used by each CDC device (2 devices per rack) when connected to the network.
    uplinkSpeedGbps number
    Uplink speed from the network to Tencent Cloud Region.
    address_line str
    Site Detail Address.
    breaker_requirement bool
    Whether there is an upstream circuit breaker.
    cdc_site_id str
    ID of the resource.
    city str
    Site City.
    condition_requirement bool
    Whether the following environmental conditions are met: n1. There are no material requirements or the acceptance standard on site that will affect the delivery and installation of the CDC device. n2. The following conditions are met for finalized rack positions: Temperature ranges from 41 to 104 degrees F (5 to 40 degrees C). Humidity ranges from 10 degrees F (-12 degrees C) to 70 degrees F (21 degrees C) and relative humidity ranges from 8% RH to 80% RH. Air flows from front to back at the rack position and there is sufficient air in CFM (cubic feet per minute). The air quantity in CFM must be 145.8 times the power consumption (in KVA) of CDC.
    country str
    Site Country.
    description str
    Site Description.
    dimension_requirement bool
    Whether the following dimension conditions are met: Your loading dock can accommodate one rack container (H x W x D = 94 x 54 x 48). You can provide a clear route from the delivery point of your rack (H x W x D = 80 x 24 x 48) to its final installation location. You should consider platforms, corridors, doors, turns, ramps, freight elevators as well as other access restrictions when measuring the depth. There shall be a 48 or greater front clearance and a 24 or greater rear clearance where the CDC is finally installed.
    fiber_type str
    Site Fiber Type. Using optical fiber type to connect the CDC device to the network SM(Single-Mode) or MM(Multi-Mode) fibers are available.
    max_weight float
    Site Max Weight capacity (KG).
    name str
    Site Name.
    need_help bool
    Whether you need help from Tencent Cloud for rack installation.
    optical_standard str
    Site Optical Standard. Optical standard used to connect the CDC device to the network This field depends on the uplink speed, optical fiber type, and distance to upstream equipment. Allow value: SM, MM.
    optional_address_line str
    Detailed address of the site area (to be added).
    power_connectors str
    Site Power Connectors. Example: 380VAC3P.
    power_draw_kva float
    Site Power DrawKva (KW).
    power_feed_drop str
    Site Power Feed Drop. Whether power is supplied from above or below the rack. Allow value: UP, DOWN.
    province str
    Site Province.
    redundant_networking bool
    Whether redundant upstream equipment (switch or router) is provided so that both network devices can be connected to the network.
    redundant_power bool
    Whether there is power redundancy.
    uplink_count float
    Number of uplinks used by each CDC device (2 devices per rack) when connected to the network.
    uplink_speed_gbps float
    Uplink speed from the network to Tencent Cloud Region.
    addressLine String
    Site Detail Address.
    breakerRequirement Boolean
    Whether there is an upstream circuit breaker.
    cdcSiteId String
    ID of the resource.
    city String
    Site City.
    conditionRequirement Boolean
    Whether the following environmental conditions are met: n1. There are no material requirements or the acceptance standard on site that will affect the delivery and installation of the CDC device. n2. The following conditions are met for finalized rack positions: Temperature ranges from 41 to 104 degrees F (5 to 40 degrees C). Humidity ranges from 10 degrees F (-12 degrees C) to 70 degrees F (21 degrees C) and relative humidity ranges from 8% RH to 80% RH. Air flows from front to back at the rack position and there is sufficient air in CFM (cubic feet per minute). The air quantity in CFM must be 145.8 times the power consumption (in KVA) of CDC.
    country String
    Site Country.
    description String
    Site Description.
    dimensionRequirement Boolean
    Whether the following dimension conditions are met: Your loading dock can accommodate one rack container (H x W x D = 94 x 54 x 48). You can provide a clear route from the delivery point of your rack (H x W x D = 80 x 24 x 48) to its final installation location. You should consider platforms, corridors, doors, turns, ramps, freight elevators as well as other access restrictions when measuring the depth. There shall be a 48 or greater front clearance and a 24 or greater rear clearance where the CDC is finally installed.
    fiberType String
    Site Fiber Type. Using optical fiber type to connect the CDC device to the network SM(Single-Mode) or MM(Multi-Mode) fibers are available.
    maxWeight Number
    Site Max Weight capacity (KG).
    name String
    Site Name.
    needHelp Boolean
    Whether you need help from Tencent Cloud for rack installation.
    opticalStandard String
    Site Optical Standard. Optical standard used to connect the CDC device to the network This field depends on the uplink speed, optical fiber type, and distance to upstream equipment. Allow value: SM, MM.
    optionalAddressLine String
    Detailed address of the site area (to be added).
    powerConnectors String
    Site Power Connectors. Example: 380VAC3P.
    powerDrawKva Number
    Site Power DrawKva (KW).
    powerFeedDrop String
    Site Power Feed Drop. Whether power is supplied from above or below the rack. Allow value: UP, DOWN.
    province String
    Site Province.
    redundantNetworking Boolean
    Whether redundant upstream equipment (switch or router) is provided so that both network devices can be connected to the network.
    redundantPower Boolean
    Whether there is power redundancy.
    uplinkCount Number
    Number of uplinks used by each CDC device (2 devices per rack) when connected to the network.
    uplinkSpeedGbps Number
    Uplink speed from the network to Tencent Cloud Region.

    Import

    CDC site can be imported using the id, e.g.

    $ pulumi import tencentcloud:index/cdcSite:CdcSite example site-43qcf1ag
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    tencentcloud tencentcloudstack/terraform-provider-tencentcloud
    License
    Notes
    This Pulumi package is based on the tencentcloud Terraform Provider.
    tencentcloud logo
    tencentcloud 1.81.189 published on Wednesday, Apr 30, 2025 by tencentcloudstack