alicloud.scdn.DomainConfig
Explore with Pulumi AI
Provides a SCDN Accelerated Domain resource.
For information about domain config and how to use it, see Batch set config
NOTE: Available in v1.131.0+.
NOTE: Alibaba Cloud SCDN has stopped new customer purchases from January 26, 2023, and you can choose to buy Alibaba Cloud DCDN products with more comprehensive acceleration and protection capabilities. If you are already a SCDN customer, you can submit a work order at any time to apply for a smooth migration to Alibaba Cloud DCDN products. In the future, we will provide better acceleration and security protection services in Alibaba Cloud DCDN, thank you for your understanding and cooperation.
DEPRECATED: This resource has been deprecated from version
1.219.0
.
Example Usage
Basic Usage
Coming soon!
Coming soon!
Coming soon!
Coming soon!
Coming soon!
resources:
# Create a new Domain config.
domain:
type: alicloud:scdn:Domain
properties:
domainName: mydomain.alicloud-provider.cn
cdnType: web
scope: overseas
sources:
- content: 1.1.1.1
type: ipaddr
priority: '20'
port: 80
config:
type: alicloud:scdn:DomainConfig
properties:
domainName: ${domain.domainName}
functionName: ip_allow_list_set
functionArgs:
- argName: ip_list
argValue: 110.110.110.110
Create DomainConfig Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new DomainConfig(name: string, args: DomainConfigArgs, opts?: CustomResourceOptions);
@overload
def DomainConfig(resource_name: str,
args: DomainConfigArgs,
opts: Optional[ResourceOptions] = None)
@overload
def DomainConfig(resource_name: str,
opts: Optional[ResourceOptions] = None,
domain_name: Optional[str] = None,
function_args: Optional[Sequence[DomainConfigFunctionArgArgs]] = None,
function_name: Optional[str] = None)
func NewDomainConfig(ctx *Context, name string, args DomainConfigArgs, opts ...ResourceOption) (*DomainConfig, error)
public DomainConfig(string name, DomainConfigArgs args, CustomResourceOptions? opts = null)
public DomainConfig(String name, DomainConfigArgs args)
public DomainConfig(String name, DomainConfigArgs args, CustomResourceOptions options)
type: alicloud:scdn:DomainConfig
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 DomainConfigArgs
- 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 DomainConfigArgs
- 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 DomainConfigArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args DomainConfigArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args DomainConfigArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var exampledomainConfigResourceResourceFromScdndomainConfig = new AliCloud.Scdn.DomainConfig("exampledomainConfigResourceResourceFromScdndomainConfig", new()
{
DomainName = "string",
FunctionArgs = new[]
{
new AliCloud.Scdn.Inputs.DomainConfigFunctionArgArgs
{
ArgName = "string",
ArgValue = "string",
},
},
FunctionName = "string",
});
example, err := scdn.NewDomainConfig(ctx, "exampledomainConfigResourceResourceFromScdndomainConfig", &scdn.DomainConfigArgs{
DomainName: pulumi.String("string"),
FunctionArgs: scdn.DomainConfigFunctionArgArray{
&scdn.DomainConfigFunctionArgArgs{
ArgName: pulumi.String("string"),
ArgValue: pulumi.String("string"),
},
},
FunctionName: pulumi.String("string"),
})
var exampledomainConfigResourceResourceFromScdndomainConfig = new DomainConfig("exampledomainConfigResourceResourceFromScdndomainConfig", DomainConfigArgs.builder()
.domainName("string")
.functionArgs(DomainConfigFunctionArgArgs.builder()
.argName("string")
.argValue("string")
.build())
.functionName("string")
.build());
exampledomain_config_resource_resource_from_scdndomain_config = alicloud.scdn.DomainConfig("exampledomainConfigResourceResourceFromScdndomainConfig",
domain_name="string",
function_args=[alicloud.scdn.DomainConfigFunctionArgArgs(
arg_name="string",
arg_value="string",
)],
function_name="string")
const exampledomainConfigResourceResourceFromScdndomainConfig = new alicloud.scdn.DomainConfig("exampledomainConfigResourceResourceFromScdndomainConfig", {
domainName: "string",
functionArgs: [{
argName: "string",
argValue: "string",
}],
functionName: "string",
});
type: alicloud:scdn:DomainConfig
properties:
domainName: string
functionArgs:
- argName: string
argValue: string
functionName: string
DomainConfig 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 DomainConfig resource accepts the following input properties:
- Domain
Name string - Name of the accelerated domain. This name without suffix can have a string of 1 to 63 characters, must contain only alphanumeric characters or "-", and must not begin or end with "-", and "-" must not in the 3th and 4th character positions at the same time. Suffix
.sh
and.tel
are not supported. - Function
Args List<Pulumi.Ali Cloud. Scdn. Inputs. Domain Config Function Arg> - The args of the domain config.
- Function
Name string - The name of the domain config.
- Domain
Name string - Name of the accelerated domain. This name without suffix can have a string of 1 to 63 characters, must contain only alphanumeric characters or "-", and must not begin or end with "-", and "-" must not in the 3th and 4th character positions at the same time. Suffix
.sh
and.tel
are not supported. - Function
Args []DomainConfig Function Arg Args - The args of the domain config.
- Function
Name string - The name of the domain config.
- domain
Name String - Name of the accelerated domain. This name without suffix can have a string of 1 to 63 characters, must contain only alphanumeric characters or "-", and must not begin or end with "-", and "-" must not in the 3th and 4th character positions at the same time. Suffix
.sh
and.tel
are not supported. - function
Args List<DomainConfig Function Arg> - The args of the domain config.
- function
Name String - The name of the domain config.
- domain
Name string - Name of the accelerated domain. This name without suffix can have a string of 1 to 63 characters, must contain only alphanumeric characters or "-", and must not begin or end with "-", and "-" must not in the 3th and 4th character positions at the same time. Suffix
.sh
and.tel
are not supported. - function
Args DomainConfig Function Arg[] - The args of the domain config.
- function
Name string - The name of the domain config.
- domain_
name str - Name of the accelerated domain. This name without suffix can have a string of 1 to 63 characters, must contain only alphanumeric characters or "-", and must not begin or end with "-", and "-" must not in the 3th and 4th character positions at the same time. Suffix
.sh
and.tel
are not supported. - function_
args Sequence[DomainConfig Function Arg Args] - The args of the domain config.
- function_
name str - The name of the domain config.
- domain
Name String - Name of the accelerated domain. This name without suffix can have a string of 1 to 63 characters, must contain only alphanumeric characters or "-", and must not begin or end with "-", and "-" must not in the 3th and 4th character positions at the same time. Suffix
.sh
and.tel
are not supported. - function
Args List<Property Map> - The args of the domain config.
- function
Name String - The name of the domain config.
Outputs
All input properties are implicitly available as output properties. Additionally, the DomainConfig resource produces the following output properties:
Look up Existing DomainConfig Resource
Get an existing DomainConfig 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?: DomainConfigState, opts?: CustomResourceOptions): DomainConfig
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
config_id: Optional[str] = None,
domain_name: Optional[str] = None,
function_args: Optional[Sequence[DomainConfigFunctionArgArgs]] = None,
function_name: Optional[str] = None,
status: Optional[str] = None) -> DomainConfig
func GetDomainConfig(ctx *Context, name string, id IDInput, state *DomainConfigState, opts ...ResourceOption) (*DomainConfig, error)
public static DomainConfig Get(string name, Input<string> id, DomainConfigState? state, CustomResourceOptions? opts = null)
public static DomainConfig get(String name, Output<String> id, DomainConfigState 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.
- Config
Id string - The SCDN domain config id.
- Domain
Name string - Name of the accelerated domain. This name without suffix can have a string of 1 to 63 characters, must contain only alphanumeric characters or "-", and must not begin or end with "-", and "-" must not in the 3th and 4th character positions at the same time. Suffix
.sh
and.tel
are not supported. - Function
Args List<Pulumi.Ali Cloud. Scdn. Inputs. Domain Config Function Arg> - The args of the domain config.
- Function
Name string - The name of the domain config.
- Status string
- The status of this resource.
- Config
Id string - The SCDN domain config id.
- Domain
Name string - Name of the accelerated domain. This name without suffix can have a string of 1 to 63 characters, must contain only alphanumeric characters or "-", and must not begin or end with "-", and "-" must not in the 3th and 4th character positions at the same time. Suffix
.sh
and.tel
are not supported. - Function
Args []DomainConfig Function Arg Args - The args of the domain config.
- Function
Name string - The name of the domain config.
- Status string
- The status of this resource.
- config
Id String - The SCDN domain config id.
- domain
Name String - Name of the accelerated domain. This name without suffix can have a string of 1 to 63 characters, must contain only alphanumeric characters or "-", and must not begin or end with "-", and "-" must not in the 3th and 4th character positions at the same time. Suffix
.sh
and.tel
are not supported. - function
Args List<DomainConfig Function Arg> - The args of the domain config.
- function
Name String - The name of the domain config.
- status String
- The status of this resource.
- config
Id string - The SCDN domain config id.
- domain
Name string - Name of the accelerated domain. This name without suffix can have a string of 1 to 63 characters, must contain only alphanumeric characters or "-", and must not begin or end with "-", and "-" must not in the 3th and 4th character positions at the same time. Suffix
.sh
and.tel
are not supported. - function
Args DomainConfig Function Arg[] - The args of the domain config.
- function
Name string - The name of the domain config.
- status string
- The status of this resource.
- config_
id str - The SCDN domain config id.
- domain_
name str - Name of the accelerated domain. This name without suffix can have a string of 1 to 63 characters, must contain only alphanumeric characters or "-", and must not begin or end with "-", and "-" must not in the 3th and 4th character positions at the same time. Suffix
.sh
and.tel
are not supported. - function_
args Sequence[DomainConfig Function Arg Args] - The args of the domain config.
- function_
name str - The name of the domain config.
- status str
- The status of this resource.
- config
Id String - The SCDN domain config id.
- domain
Name String - Name of the accelerated domain. This name without suffix can have a string of 1 to 63 characters, must contain only alphanumeric characters or "-", and must not begin or end with "-", and "-" must not in the 3th and 4th character positions at the same time. Suffix
.sh
and.tel
are not supported. - function
Args List<Property Map> - The args of the domain config.
- function
Name String - The name of the domain config.
- status String
- The status of this resource.
Supporting Types
DomainConfigFunctionArg, DomainConfigFunctionArgArgs
Import
SCDN domain config can be imported using the id, e.g.
$ pulumi import alicloud:scdn/domainConfig:DomainConfig example <domain_name>:<function_name>:<config_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.