pulumi-alicloud 3.60.0a1721884766__py3-none-any.whl → 3.60.0a1721971165__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_alicloud/_utilities.py +2 -0
- pulumi_alicloud/cen/get_transit_router_service.py +2 -2
- pulumi_alicloud/cloudfirewall/control_policy_order.py +60 -44
- pulumi_alicloud/cs/node_pool.py +7 -7
- pulumi_alicloud/dcdn/_inputs.py +23 -27
- pulumi_alicloud/dcdn/domain.py +366 -217
- pulumi_alicloud/dcdn/outputs.py +18 -22
- pulumi_alicloud/directmail/get_domains.py +31 -24
- pulumi_alicloud/directmail/outputs.py +131 -32
- pulumi_alicloud/eci/_inputs.py +8 -0
- pulumi_alicloud/eci/outputs.py +8 -0
- pulumi_alicloud/ecs/_inputs.py +40 -8
- pulumi_alicloud/ecs/ecs_disk.py +7 -0
- pulumi_alicloud/ecs/instance.py +304 -102
- pulumi_alicloud/ecs/outputs.py +37 -9
- pulumi_alicloud/maxcompute/_inputs.py +44 -42
- pulumi_alicloud/maxcompute/outputs.py +44 -42
- pulumi_alicloud/maxcompute/project.py +230 -66
- pulumi_alicloud/polardb/cluster.py +28 -28
- pulumi_alicloud/pulumi-plugin.json +1 -1
- pulumi_alicloud/rdc/organization.py +2 -2
- pulumi_alicloud/slb/_inputs.py +8 -8
- pulumi_alicloud/slb/outputs.py +8 -8
- pulumi_alicloud/slb/server_group.py +140 -84
- pulumi_alicloud/vpc/_inputs.py +18 -12
- pulumi_alicloud/vpc/network.py +332 -134
- pulumi_alicloud/vpc/outputs.py +18 -12
- pulumi_alicloud/vpc/public_ip_address_pool.py +118 -10
- {pulumi_alicloud-3.60.0a1721884766.dist-info → pulumi_alicloud-3.60.0a1721971165.dist-info}/METADATA +1 -1
- {pulumi_alicloud-3.60.0a1721884766.dist-info → pulumi_alicloud-3.60.0a1721971165.dist-info}/RECORD +32 -32
- {pulumi_alicloud-3.60.0a1721884766.dist-info → pulumi_alicloud-3.60.0a1721971165.dist-info}/WHEEL +0 -0
- {pulumi_alicloud-3.60.0a1721884766.dist-info → pulumi_alicloud-3.60.0a1721971165.dist-info}/top_level.txt +0 -0
pulumi_alicloud/dcdn/outputs.py
CHANGED
|
@@ -119,49 +119,37 @@ class DomainConfigFunctionArg(dict):
|
|
|
119
119
|
@pulumi.output_type
|
|
120
120
|
class DomainSource(dict):
|
|
121
121
|
def __init__(__self__, *,
|
|
122
|
-
content: str,
|
|
123
|
-
type: str,
|
|
122
|
+
content: Optional[str] = None,
|
|
124
123
|
port: Optional[int] = None,
|
|
125
124
|
priority: Optional[str] = None,
|
|
125
|
+
type: Optional[str] = None,
|
|
126
126
|
weight: Optional[str] = None):
|
|
127
127
|
"""
|
|
128
|
-
:param str content: The
|
|
129
|
-
:param str type: The type of the origin. Valid values:
|
|
130
|
-
`ipaddr`: The origin is configured using an IP address.
|
|
131
|
-
`domain`: The origin is configured using a domain name.
|
|
132
|
-
`oss`: The origin is configured using the Internet domain name of an Alibaba Cloud Object Storage Service (OSS) bucket.
|
|
128
|
+
:param str content: The address of the source station.
|
|
133
129
|
:param int port: The port number. Valid values: `443` and `80`. Default to `80`.
|
|
134
130
|
:param str priority: The priority of the origin if multiple origins are specified. Default to `20`.
|
|
131
|
+
:param str type: The type of the origin. Valid values:
|
|
135
132
|
:param str weight: The weight of the origin if multiple origins are specified. Default to `10`.
|
|
136
133
|
"""
|
|
137
|
-
|
|
138
|
-
|
|
134
|
+
if content is not None:
|
|
135
|
+
pulumi.set(__self__, "content", content)
|
|
139
136
|
if port is not None:
|
|
140
137
|
pulumi.set(__self__, "port", port)
|
|
141
138
|
if priority is not None:
|
|
142
139
|
pulumi.set(__self__, "priority", priority)
|
|
140
|
+
if type is not None:
|
|
141
|
+
pulumi.set(__self__, "type", type)
|
|
143
142
|
if weight is not None:
|
|
144
143
|
pulumi.set(__self__, "weight", weight)
|
|
145
144
|
|
|
146
145
|
@property
|
|
147
146
|
@pulumi.getter
|
|
148
|
-
def content(self) -> str:
|
|
147
|
+
def content(self) -> Optional[str]:
|
|
149
148
|
"""
|
|
150
|
-
The
|
|
149
|
+
The address of the source station.
|
|
151
150
|
"""
|
|
152
151
|
return pulumi.get(self, "content")
|
|
153
152
|
|
|
154
|
-
@property
|
|
155
|
-
@pulumi.getter
|
|
156
|
-
def type(self) -> str:
|
|
157
|
-
"""
|
|
158
|
-
The type of the origin. Valid values:
|
|
159
|
-
`ipaddr`: The origin is configured using an IP address.
|
|
160
|
-
`domain`: The origin is configured using a domain name.
|
|
161
|
-
`oss`: The origin is configured using the Internet domain name of an Alibaba Cloud Object Storage Service (OSS) bucket.
|
|
162
|
-
"""
|
|
163
|
-
return pulumi.get(self, "type")
|
|
164
|
-
|
|
165
153
|
@property
|
|
166
154
|
@pulumi.getter
|
|
167
155
|
def port(self) -> Optional[int]:
|
|
@@ -178,6 +166,14 @@ class DomainSource(dict):
|
|
|
178
166
|
"""
|
|
179
167
|
return pulumi.get(self, "priority")
|
|
180
168
|
|
|
169
|
+
@property
|
|
170
|
+
@pulumi.getter
|
|
171
|
+
def type(self) -> Optional[str]:
|
|
172
|
+
"""
|
|
173
|
+
The type of the origin. Valid values:
|
|
174
|
+
"""
|
|
175
|
+
return pulumi.get(self, "type")
|
|
176
|
+
|
|
181
177
|
@property
|
|
182
178
|
@pulumi.getter
|
|
183
179
|
def weight(self) -> Optional[str]:
|
|
@@ -54,6 +54,9 @@ class GetDomainsResult:
|
|
|
54
54
|
@property
|
|
55
55
|
@pulumi.getter
|
|
56
56
|
def domains(self) -> Sequence['outputs.GetDomainsDomainResult']:
|
|
57
|
+
"""
|
|
58
|
+
A list of Domains. Each element contains the following attributes:
|
|
59
|
+
"""
|
|
57
60
|
return pulumi.get(self, "domains")
|
|
58
61
|
|
|
59
62
|
@property
|
|
@@ -87,6 +90,9 @@ class GetDomainsResult:
|
|
|
87
90
|
@property
|
|
88
91
|
@pulumi.getter
|
|
89
92
|
def names(self) -> Sequence[str]:
|
|
93
|
+
"""
|
|
94
|
+
A list of Domain names.
|
|
95
|
+
"""
|
|
90
96
|
return pulumi.get(self, "names")
|
|
91
97
|
|
|
92
98
|
@property
|
|
@@ -97,6 +103,9 @@ class GetDomainsResult:
|
|
|
97
103
|
@property
|
|
98
104
|
@pulumi.getter
|
|
99
105
|
def status(self) -> Optional[str]:
|
|
106
|
+
"""
|
|
107
|
+
The status of the domain name.
|
|
108
|
+
"""
|
|
100
109
|
return pulumi.get(self, "status")
|
|
101
110
|
|
|
102
111
|
|
|
@@ -127,7 +136,7 @@ def get_domains(enable_details: Optional[bool] = None,
|
|
|
127
136
|
"""
|
|
128
137
|
This data source provides the Direct Mail Domains of the current Alibaba Cloud user.
|
|
129
138
|
|
|
130
|
-
> **NOTE:** Available
|
|
139
|
+
> **NOTE:** Available since v1.134.0.
|
|
131
140
|
|
|
132
141
|
## Example Usage
|
|
133
142
|
|
|
@@ -137,23 +146,22 @@ def get_domains(enable_details: Optional[bool] = None,
|
|
|
137
146
|
import pulumi
|
|
138
147
|
import pulumi_alicloud as alicloud
|
|
139
148
|
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
pulumi.export("directMailDomainId3", example.domains[0].id)
|
|
149
|
+
config = pulumi.Config()
|
|
150
|
+
name = config.get("name")
|
|
151
|
+
if name is None:
|
|
152
|
+
name = "terraform-example.pop.com"
|
|
153
|
+
default = alicloud.directmail.Domain("default", domain_name=name)
|
|
154
|
+
ids = alicloud.directmail.get_domains_output(ids=[default.id])
|
|
155
|
+
pulumi.export("directMailDomainsId0", ids.domains[0].id)
|
|
148
156
|
```
|
|
149
157
|
|
|
150
158
|
|
|
151
|
-
:param bool enable_details:
|
|
159
|
+
:param bool enable_details: Whether to query the detailed list of resource attributes. Default value: `false`.
|
|
152
160
|
:param Sequence[str] ids: A list of Domain IDs.
|
|
153
|
-
:param str key_word: domain
|
|
161
|
+
:param str key_word: The domain name. It must be 1 to 50 characters in length and can contain digits, letters, periods (.), and hyphens (-).
|
|
154
162
|
:param str name_regex: A regex string to filter results by Domain name.
|
|
155
163
|
:param str output_file: File name where to save data source results (after running `pulumi preview`).
|
|
156
|
-
:param str status: The status of the domain name. Valid values
|
|
164
|
+
:param str status: The status of the domain name. Valid values:
|
|
157
165
|
"""
|
|
158
166
|
__args__ = dict()
|
|
159
167
|
__args__['enableDetails'] = enable_details
|
|
@@ -188,7 +196,7 @@ def get_domains_output(enable_details: Optional[pulumi.Input[Optional[bool]]] =
|
|
|
188
196
|
"""
|
|
189
197
|
This data source provides the Direct Mail Domains of the current Alibaba Cloud user.
|
|
190
198
|
|
|
191
|
-
> **NOTE:** Available
|
|
199
|
+
> **NOTE:** Available since v1.134.0.
|
|
192
200
|
|
|
193
201
|
## Example Usage
|
|
194
202
|
|
|
@@ -198,22 +206,21 @@ def get_domains_output(enable_details: Optional[pulumi.Input[Optional[bool]]] =
|
|
|
198
206
|
import pulumi
|
|
199
207
|
import pulumi_alicloud as alicloud
|
|
200
208
|
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
pulumi.export("directMailDomainId3", example.domains[0].id)
|
|
209
|
+
config = pulumi.Config()
|
|
210
|
+
name = config.get("name")
|
|
211
|
+
if name is None:
|
|
212
|
+
name = "terraform-example.pop.com"
|
|
213
|
+
default = alicloud.directmail.Domain("default", domain_name=name)
|
|
214
|
+
ids = alicloud.directmail.get_domains_output(ids=[default.id])
|
|
215
|
+
pulumi.export("directMailDomainsId0", ids.domains[0].id)
|
|
209
216
|
```
|
|
210
217
|
|
|
211
218
|
|
|
212
|
-
:param bool enable_details:
|
|
219
|
+
:param bool enable_details: Whether to query the detailed list of resource attributes. Default value: `false`.
|
|
213
220
|
:param Sequence[str] ids: A list of Domain IDs.
|
|
214
|
-
:param str key_word: domain
|
|
221
|
+
:param str key_word: The domain name. It must be 1 to 50 characters in length and can contain digits, letters, periods (.), and hyphens (-).
|
|
215
222
|
:param str name_regex: A regex string to filter results by Domain name.
|
|
216
223
|
:param str output_file: File name where to save data source results (after running `pulumi preview`).
|
|
217
|
-
:param str status: The status of the domain name. Valid values
|
|
224
|
+
:param str status: The status of the domain name. Valid values:
|
|
218
225
|
"""
|
|
219
226
|
...
|
|
@@ -24,12 +24,21 @@ class GetDomainsDomainResult(dict):
|
|
|
24
24
|
cname_record: str,
|
|
25
25
|
create_time: str,
|
|
26
26
|
default_domain: str,
|
|
27
|
+
dkim_auth_status: str,
|
|
28
|
+
dkim_public_key: str,
|
|
29
|
+
dkim_rr: str,
|
|
30
|
+
dmarc_auth_status: str,
|
|
31
|
+
dmarc_host_record: str,
|
|
32
|
+
dmarc_record: str,
|
|
33
|
+
dns_dmarc: str,
|
|
27
34
|
dns_mx: str,
|
|
28
35
|
dns_spf: str,
|
|
29
36
|
dns_txt: str,
|
|
30
37
|
domain_id: str,
|
|
31
38
|
domain_name: str,
|
|
39
|
+
domain_record: str,
|
|
32
40
|
domain_type: str,
|
|
41
|
+
host_record: str,
|
|
33
42
|
icp_status: str,
|
|
34
43
|
id: str,
|
|
35
44
|
mx_auth_status: str,
|
|
@@ -40,38 +49,56 @@ class GetDomainsDomainResult(dict):
|
|
|
40
49
|
tl_domain_name: str,
|
|
41
50
|
tracef_record: str):
|
|
42
51
|
"""
|
|
43
|
-
:param str cname_auth_status:
|
|
44
|
-
:param str cname_confirm_status: Indicates whether the CNAME record is successfully verified.
|
|
45
|
-
:param str cname_record: The value of the CNAME record.
|
|
52
|
+
:param str cname_auth_status: Indicates whether your ownership of the domain is verified.
|
|
53
|
+
:param str cname_confirm_status: Indicates whether the CNAME record is successfully verified. **Note:** `cname_confirm_status` takes effect only if `enable_details` is set to `true`.
|
|
54
|
+
:param str cname_record: The value of the CNAME record. **Note:** `cname_record` takes effect only if `enable_details` is set to `true`.
|
|
46
55
|
:param str create_time: The time when the DNS record was created.
|
|
47
|
-
:param str default_domain: The default domain name.
|
|
48
|
-
:param str
|
|
49
|
-
:param str
|
|
50
|
-
:param str
|
|
56
|
+
:param str default_domain: The default domain name. **Note:** `default_domain` takes effect only if `enable_details` is set to `true`.
|
|
57
|
+
:param str dkim_auth_status: (Available since v1.227.1) The DKIM validation flag. **Note:** `dkim_auth_status` takes effect only if `enable_details` is set to `true`.
|
|
58
|
+
:param str dkim_public_key: (Available since v1.227.1) The DKIM public key. **Note:** `dkim_public_key` takes effect only if `enable_details` is set to `true`.
|
|
59
|
+
:param str dkim_rr: (Available since v1.227.1) The DKIM Host Record. **Note:** `dkim_rr` takes effect only if `enable_details` is set to `true`.
|
|
60
|
+
:param str dmarc_auth_status: (Available since v1.227.1) The DMARC validation flag. **Note:** `dmarc_auth_status` takes effect only if `enable_details` is set to `true`.
|
|
61
|
+
:param str dmarc_host_record: (Available since v1.227.1) The DMARC Host Record. **Note:** `dmarc_host_record` takes effect only if `enable_details` is set to `true`.
|
|
62
|
+
:param str dmarc_record: (Available since v1.227.1) The DMARC record. **Note:** `dmarc_record` takes effect only if `enable_details` is set to `true`.
|
|
63
|
+
:param str dns_dmarc: (Available since v1.227.1) The DMARC record value resolved through public DNS. **Note:** `dns_dmarc` takes effect only if `enable_details` is set to `true`.
|
|
64
|
+
:param str dns_mx: The MX record value resolved through public DNS. **Note:** `dns_mx` takes effect only if `enable_details` is set to `true`.
|
|
65
|
+
:param str dns_spf: The SPF record value resolved through public DNS. **Note:** `dns_spf` takes effect only if `enable_details` is set to `true`.
|
|
66
|
+
:param str dns_txt: The TXT record value resolved through public DNS. **Note:** `dns_txt` takes effect only if `enable_details` is set to `true`.
|
|
51
67
|
:param str domain_id: The ID of the domain name.
|
|
52
68
|
:param str domain_name: The domain name.
|
|
53
|
-
:param str
|
|
54
|
-
:param str
|
|
69
|
+
:param str domain_record: (Available since v1.227.1) The value of the Domain record.
|
|
70
|
+
:param str domain_type: The type of the domain. **Note:** `domain_type` takes effect only if `enable_details` is set to `true`.
|
|
71
|
+
:param str host_record: (Available since v1.227.1) The value of the host record. **Note:** `host_record` takes effect only if `enable_details` is set to `true`.
|
|
72
|
+
:param str icp_status: The status of ICP filing.
|
|
55
73
|
:param str id: The ID of the Domain.
|
|
56
|
-
:param str mx_auth_status: Indicates whether the MX record is successfully verified.
|
|
57
|
-
:param str mx_record: The MX verification record provided by
|
|
58
|
-
:param str spf_auth_status: Indicates whether the SPF record is successfully verified.
|
|
59
|
-
:param str spf_record: The SPF verification record provided by
|
|
60
|
-
:param str status: The status of the domain name. Valid values
|
|
61
|
-
:param str tl_domain_name: The primary domain name.
|
|
62
|
-
:param str tracef_record: The CNAME verification record provided by
|
|
74
|
+
:param str mx_auth_status: Indicates whether the MX record is successfully verified.
|
|
75
|
+
:param str mx_record: The MX verification record provided by the Direct Mail console. **Note:** `mx_record` takes effect only if `enable_details` is set to `true`.
|
|
76
|
+
:param str spf_auth_status: Indicates whether the SPF record is successfully verified.
|
|
77
|
+
:param str spf_record: The SPF verification record provided by the Direct Mail console. **Note:** `spf_record` takes effect only if `enable_details` is set to `true`.
|
|
78
|
+
:param str status: The status of the domain name. Valid values:
|
|
79
|
+
:param str tl_domain_name: The primary domain name. **Note:** `tl_domain_name` takes effect only if `enable_details` is set to `true`.
|
|
80
|
+
:param str tracef_record: The CNAME verification record provided by the Direct Mail console. **Note:** `tracef_record` takes effect only if `enable_details` is set to `true`.
|
|
63
81
|
"""
|
|
64
82
|
pulumi.set(__self__, "cname_auth_status", cname_auth_status)
|
|
65
83
|
pulumi.set(__self__, "cname_confirm_status", cname_confirm_status)
|
|
66
84
|
pulumi.set(__self__, "cname_record", cname_record)
|
|
67
85
|
pulumi.set(__self__, "create_time", create_time)
|
|
68
86
|
pulumi.set(__self__, "default_domain", default_domain)
|
|
87
|
+
pulumi.set(__self__, "dkim_auth_status", dkim_auth_status)
|
|
88
|
+
pulumi.set(__self__, "dkim_public_key", dkim_public_key)
|
|
89
|
+
pulumi.set(__self__, "dkim_rr", dkim_rr)
|
|
90
|
+
pulumi.set(__self__, "dmarc_auth_status", dmarc_auth_status)
|
|
91
|
+
pulumi.set(__self__, "dmarc_host_record", dmarc_host_record)
|
|
92
|
+
pulumi.set(__self__, "dmarc_record", dmarc_record)
|
|
93
|
+
pulumi.set(__self__, "dns_dmarc", dns_dmarc)
|
|
69
94
|
pulumi.set(__self__, "dns_mx", dns_mx)
|
|
70
95
|
pulumi.set(__self__, "dns_spf", dns_spf)
|
|
71
96
|
pulumi.set(__self__, "dns_txt", dns_txt)
|
|
72
97
|
pulumi.set(__self__, "domain_id", domain_id)
|
|
73
98
|
pulumi.set(__self__, "domain_name", domain_name)
|
|
99
|
+
pulumi.set(__self__, "domain_record", domain_record)
|
|
74
100
|
pulumi.set(__self__, "domain_type", domain_type)
|
|
101
|
+
pulumi.set(__self__, "host_record", host_record)
|
|
75
102
|
pulumi.set(__self__, "icp_status", icp_status)
|
|
76
103
|
pulumi.set(__self__, "id", id)
|
|
77
104
|
pulumi.set(__self__, "mx_auth_status", mx_auth_status)
|
|
@@ -86,7 +113,7 @@ class GetDomainsDomainResult(dict):
|
|
|
86
113
|
@pulumi.getter(name="cnameAuthStatus")
|
|
87
114
|
def cname_auth_status(self) -> str:
|
|
88
115
|
"""
|
|
89
|
-
|
|
116
|
+
Indicates whether your ownership of the domain is verified.
|
|
90
117
|
"""
|
|
91
118
|
return pulumi.get(self, "cname_auth_status")
|
|
92
119
|
|
|
@@ -94,7 +121,7 @@ class GetDomainsDomainResult(dict):
|
|
|
94
121
|
@pulumi.getter(name="cnameConfirmStatus")
|
|
95
122
|
def cname_confirm_status(self) -> str:
|
|
96
123
|
"""
|
|
97
|
-
Indicates whether the CNAME record is successfully verified.
|
|
124
|
+
Indicates whether the CNAME record is successfully verified. **Note:** `cname_confirm_status` takes effect only if `enable_details` is set to `true`.
|
|
98
125
|
"""
|
|
99
126
|
return pulumi.get(self, "cname_confirm_status")
|
|
100
127
|
|
|
@@ -102,7 +129,7 @@ class GetDomainsDomainResult(dict):
|
|
|
102
129
|
@pulumi.getter(name="cnameRecord")
|
|
103
130
|
def cname_record(self) -> str:
|
|
104
131
|
"""
|
|
105
|
-
The value of the CNAME record.
|
|
132
|
+
The value of the CNAME record. **Note:** `cname_record` takes effect only if `enable_details` is set to `true`.
|
|
106
133
|
"""
|
|
107
134
|
return pulumi.get(self, "cname_record")
|
|
108
135
|
|
|
@@ -118,15 +145,71 @@ class GetDomainsDomainResult(dict):
|
|
|
118
145
|
@pulumi.getter(name="defaultDomain")
|
|
119
146
|
def default_domain(self) -> str:
|
|
120
147
|
"""
|
|
121
|
-
The default domain name.
|
|
148
|
+
The default domain name. **Note:** `default_domain` takes effect only if `enable_details` is set to `true`.
|
|
122
149
|
"""
|
|
123
150
|
return pulumi.get(self, "default_domain")
|
|
124
151
|
|
|
152
|
+
@property
|
|
153
|
+
@pulumi.getter(name="dkimAuthStatus")
|
|
154
|
+
def dkim_auth_status(self) -> str:
|
|
155
|
+
"""
|
|
156
|
+
(Available since v1.227.1) The DKIM validation flag. **Note:** `dkim_auth_status` takes effect only if `enable_details` is set to `true`.
|
|
157
|
+
"""
|
|
158
|
+
return pulumi.get(self, "dkim_auth_status")
|
|
159
|
+
|
|
160
|
+
@property
|
|
161
|
+
@pulumi.getter(name="dkimPublicKey")
|
|
162
|
+
def dkim_public_key(self) -> str:
|
|
163
|
+
"""
|
|
164
|
+
(Available since v1.227.1) The DKIM public key. **Note:** `dkim_public_key` takes effect only if `enable_details` is set to `true`.
|
|
165
|
+
"""
|
|
166
|
+
return pulumi.get(self, "dkim_public_key")
|
|
167
|
+
|
|
168
|
+
@property
|
|
169
|
+
@pulumi.getter(name="dkimRr")
|
|
170
|
+
def dkim_rr(self) -> str:
|
|
171
|
+
"""
|
|
172
|
+
(Available since v1.227.1) The DKIM Host Record. **Note:** `dkim_rr` takes effect only if `enable_details` is set to `true`.
|
|
173
|
+
"""
|
|
174
|
+
return pulumi.get(self, "dkim_rr")
|
|
175
|
+
|
|
176
|
+
@property
|
|
177
|
+
@pulumi.getter(name="dmarcAuthStatus")
|
|
178
|
+
def dmarc_auth_status(self) -> str:
|
|
179
|
+
"""
|
|
180
|
+
(Available since v1.227.1) The DMARC validation flag. **Note:** `dmarc_auth_status` takes effect only if `enable_details` is set to `true`.
|
|
181
|
+
"""
|
|
182
|
+
return pulumi.get(self, "dmarc_auth_status")
|
|
183
|
+
|
|
184
|
+
@property
|
|
185
|
+
@pulumi.getter(name="dmarcHostRecord")
|
|
186
|
+
def dmarc_host_record(self) -> str:
|
|
187
|
+
"""
|
|
188
|
+
(Available since v1.227.1) The DMARC Host Record. **Note:** `dmarc_host_record` takes effect only if `enable_details` is set to `true`.
|
|
189
|
+
"""
|
|
190
|
+
return pulumi.get(self, "dmarc_host_record")
|
|
191
|
+
|
|
192
|
+
@property
|
|
193
|
+
@pulumi.getter(name="dmarcRecord")
|
|
194
|
+
def dmarc_record(self) -> str:
|
|
195
|
+
"""
|
|
196
|
+
(Available since v1.227.1) The DMARC record. **Note:** `dmarc_record` takes effect only if `enable_details` is set to `true`.
|
|
197
|
+
"""
|
|
198
|
+
return pulumi.get(self, "dmarc_record")
|
|
199
|
+
|
|
200
|
+
@property
|
|
201
|
+
@pulumi.getter(name="dnsDmarc")
|
|
202
|
+
def dns_dmarc(self) -> str:
|
|
203
|
+
"""
|
|
204
|
+
(Available since v1.227.1) The DMARC record value resolved through public DNS. **Note:** `dns_dmarc` takes effect only if `enable_details` is set to `true`.
|
|
205
|
+
"""
|
|
206
|
+
return pulumi.get(self, "dns_dmarc")
|
|
207
|
+
|
|
125
208
|
@property
|
|
126
209
|
@pulumi.getter(name="dnsMx")
|
|
127
210
|
def dns_mx(self) -> str:
|
|
128
211
|
"""
|
|
129
|
-
The value
|
|
212
|
+
The MX record value resolved through public DNS. **Note:** `dns_mx` takes effect only if `enable_details` is set to `true`.
|
|
130
213
|
"""
|
|
131
214
|
return pulumi.get(self, "dns_mx")
|
|
132
215
|
|
|
@@ -134,7 +217,7 @@ class GetDomainsDomainResult(dict):
|
|
|
134
217
|
@pulumi.getter(name="dnsSpf")
|
|
135
218
|
def dns_spf(self) -> str:
|
|
136
219
|
"""
|
|
137
|
-
The value
|
|
220
|
+
The SPF record value resolved through public DNS. **Note:** `dns_spf` takes effect only if `enable_details` is set to `true`.
|
|
138
221
|
"""
|
|
139
222
|
return pulumi.get(self, "dns_spf")
|
|
140
223
|
|
|
@@ -142,7 +225,7 @@ class GetDomainsDomainResult(dict):
|
|
|
142
225
|
@pulumi.getter(name="dnsTxt")
|
|
143
226
|
def dns_txt(self) -> str:
|
|
144
227
|
"""
|
|
145
|
-
The value
|
|
228
|
+
The TXT record value resolved through public DNS. **Note:** `dns_txt` takes effect only if `enable_details` is set to `true`.
|
|
146
229
|
"""
|
|
147
230
|
return pulumi.get(self, "dns_txt")
|
|
148
231
|
|
|
@@ -162,19 +245,35 @@ class GetDomainsDomainResult(dict):
|
|
|
162
245
|
"""
|
|
163
246
|
return pulumi.get(self, "domain_name")
|
|
164
247
|
|
|
248
|
+
@property
|
|
249
|
+
@pulumi.getter(name="domainRecord")
|
|
250
|
+
def domain_record(self) -> str:
|
|
251
|
+
"""
|
|
252
|
+
(Available since v1.227.1) The value of the Domain record.
|
|
253
|
+
"""
|
|
254
|
+
return pulumi.get(self, "domain_record")
|
|
255
|
+
|
|
165
256
|
@property
|
|
166
257
|
@pulumi.getter(name="domainType")
|
|
167
258
|
def domain_type(self) -> str:
|
|
168
259
|
"""
|
|
169
|
-
The type of the domain.
|
|
260
|
+
The type of the domain. **Note:** `domain_type` takes effect only if `enable_details` is set to `true`.
|
|
170
261
|
"""
|
|
171
262
|
return pulumi.get(self, "domain_type")
|
|
172
263
|
|
|
264
|
+
@property
|
|
265
|
+
@pulumi.getter(name="hostRecord")
|
|
266
|
+
def host_record(self) -> str:
|
|
267
|
+
"""
|
|
268
|
+
(Available since v1.227.1) The value of the host record. **Note:** `host_record` takes effect only if `enable_details` is set to `true`.
|
|
269
|
+
"""
|
|
270
|
+
return pulumi.get(self, "host_record")
|
|
271
|
+
|
|
173
272
|
@property
|
|
174
273
|
@pulumi.getter(name="icpStatus")
|
|
175
274
|
def icp_status(self) -> str:
|
|
176
275
|
"""
|
|
177
|
-
The status of ICP filing.
|
|
276
|
+
The status of ICP filing.
|
|
178
277
|
"""
|
|
179
278
|
return pulumi.get(self, "icp_status")
|
|
180
279
|
|
|
@@ -190,7 +289,7 @@ class GetDomainsDomainResult(dict):
|
|
|
190
289
|
@pulumi.getter(name="mxAuthStatus")
|
|
191
290
|
def mx_auth_status(self) -> str:
|
|
192
291
|
"""
|
|
193
|
-
Indicates whether the MX record is successfully verified.
|
|
292
|
+
Indicates whether the MX record is successfully verified.
|
|
194
293
|
"""
|
|
195
294
|
return pulumi.get(self, "mx_auth_status")
|
|
196
295
|
|
|
@@ -198,7 +297,7 @@ class GetDomainsDomainResult(dict):
|
|
|
198
297
|
@pulumi.getter(name="mxRecord")
|
|
199
298
|
def mx_record(self) -> str:
|
|
200
299
|
"""
|
|
201
|
-
The MX verification record provided by
|
|
300
|
+
The MX verification record provided by the Direct Mail console. **Note:** `mx_record` takes effect only if `enable_details` is set to `true`.
|
|
202
301
|
"""
|
|
203
302
|
return pulumi.get(self, "mx_record")
|
|
204
303
|
|
|
@@ -206,7 +305,7 @@ class GetDomainsDomainResult(dict):
|
|
|
206
305
|
@pulumi.getter(name="spfAuthStatus")
|
|
207
306
|
def spf_auth_status(self) -> str:
|
|
208
307
|
"""
|
|
209
|
-
Indicates whether the SPF record is successfully verified.
|
|
308
|
+
Indicates whether the SPF record is successfully verified.
|
|
210
309
|
"""
|
|
211
310
|
return pulumi.get(self, "spf_auth_status")
|
|
212
311
|
|
|
@@ -214,7 +313,7 @@ class GetDomainsDomainResult(dict):
|
|
|
214
313
|
@pulumi.getter(name="spfRecord")
|
|
215
314
|
def spf_record(self) -> str:
|
|
216
315
|
"""
|
|
217
|
-
The SPF verification record provided by
|
|
316
|
+
The SPF verification record provided by the Direct Mail console. **Note:** `spf_record` takes effect only if `enable_details` is set to `true`.
|
|
218
317
|
"""
|
|
219
318
|
return pulumi.get(self, "spf_record")
|
|
220
319
|
|
|
@@ -222,7 +321,7 @@ class GetDomainsDomainResult(dict):
|
|
|
222
321
|
@pulumi.getter
|
|
223
322
|
def status(self) -> str:
|
|
224
323
|
"""
|
|
225
|
-
The status of the domain name. Valid values
|
|
324
|
+
The status of the domain name. Valid values:
|
|
226
325
|
"""
|
|
227
326
|
return pulumi.get(self, "status")
|
|
228
327
|
|
|
@@ -230,7 +329,7 @@ class GetDomainsDomainResult(dict):
|
|
|
230
329
|
@pulumi.getter(name="tlDomainName")
|
|
231
330
|
def tl_domain_name(self) -> str:
|
|
232
331
|
"""
|
|
233
|
-
The primary domain name.
|
|
332
|
+
The primary domain name. **Note:** `tl_domain_name` takes effect only if `enable_details` is set to `true`.
|
|
234
333
|
"""
|
|
235
334
|
return pulumi.get(self, "tl_domain_name")
|
|
236
335
|
|
|
@@ -238,7 +337,7 @@ class GetDomainsDomainResult(dict):
|
|
|
238
337
|
@pulumi.getter(name="tracefRecord")
|
|
239
338
|
def tracef_record(self) -> str:
|
|
240
339
|
"""
|
|
241
|
-
The CNAME verification record provided by
|
|
340
|
+
The CNAME verification record provided by the Direct Mail console. **Note:** `tracef_record` takes effect only if `enable_details` is set to `true`.
|
|
242
341
|
"""
|
|
243
342
|
return pulumi.get(self, "tracef_record")
|
|
244
343
|
|
pulumi_alicloud/eci/_inputs.py
CHANGED
|
@@ -483,6 +483,8 @@ class ContainerGroupContainerLivenessProbeArgs:
|
|
|
483
483
|
:param pulumi.Input[Sequence[pulumi.Input['ContainerGroupContainerLivenessProbeExecArgs']]] execs: Health check using command line method. See `exec` below.
|
|
484
484
|
:param pulumi.Input[int] failure_threshold: Threshold for the number of checks that are determined to have failed since the last successful check (must be consecutive failures), default is 3.
|
|
485
485
|
:param pulumi.Input[Sequence[pulumi.Input['ContainerGroupContainerLivenessProbeHttpGetArgs']]] http_gets: Health check using HTTP request method. See `http_get` below.
|
|
486
|
+
|
|
487
|
+
> **NOTE:** When you configure `readiness_probe`, you can select only one of the `exec`, `tcp_socket`, `http_get`.
|
|
486
488
|
:param pulumi.Input[int] initial_delay_seconds: Check the time to start execution, calculated from the completion of container startup.
|
|
487
489
|
:param pulumi.Input[int] period_seconds: Buffer time for the program to handle operations before closing.
|
|
488
490
|
:param pulumi.Input[int] success_threshold: The check count threshold for re-identifying successful checks since the last failed check (must be consecutive successes), default is 1. Current must be 1.
|
|
@@ -535,6 +537,8 @@ class ContainerGroupContainerLivenessProbeArgs:
|
|
|
535
537
|
def http_gets(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ContainerGroupContainerLivenessProbeHttpGetArgs']]]]:
|
|
536
538
|
"""
|
|
537
539
|
Health check using HTTP request method. See `http_get` below.
|
|
540
|
+
|
|
541
|
+
> **NOTE:** When you configure `readiness_probe`, you can select only one of the `exec`, `tcp_socket`, `http_get`.
|
|
538
542
|
"""
|
|
539
543
|
return pulumi.get(self, "http_gets")
|
|
540
544
|
|
|
@@ -728,6 +732,8 @@ class ContainerGroupContainerReadinessProbeArgs:
|
|
|
728
732
|
:param pulumi.Input[Sequence[pulumi.Input['ContainerGroupContainerReadinessProbeExecArgs']]] execs: Health check using command line method. See `exec` below.
|
|
729
733
|
:param pulumi.Input[int] failure_threshold: Threshold for the number of checks that are determined to have failed since the last successful check (must be consecutive failures), default is 3.
|
|
730
734
|
:param pulumi.Input[Sequence[pulumi.Input['ContainerGroupContainerReadinessProbeHttpGetArgs']]] http_gets: Health check using HTTP request method. See `http_get` below.
|
|
735
|
+
|
|
736
|
+
> **NOTE:** When you configure `readiness_probe`, you can select only one of the `exec`, `tcp_socket`, `http_get`.
|
|
731
737
|
:param pulumi.Input[int] initial_delay_seconds: Check the time to start execution, calculated from the completion of container startup.
|
|
732
738
|
:param pulumi.Input[int] period_seconds: Buffer time for the program to handle operations before closing.
|
|
733
739
|
:param pulumi.Input[int] success_threshold: The check count threshold for re-identifying successful checks since the last failed check (must be consecutive successes), default is 1. Current must be 1.
|
|
@@ -780,6 +786,8 @@ class ContainerGroupContainerReadinessProbeArgs:
|
|
|
780
786
|
def http_gets(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ContainerGroupContainerReadinessProbeHttpGetArgs']]]]:
|
|
781
787
|
"""
|
|
782
788
|
Health check using HTTP request method. See `http_get` below.
|
|
789
|
+
|
|
790
|
+
> **NOTE:** When you configure `readiness_probe`, you can select only one of the `exec`, `tcp_socket`, `http_get`.
|
|
783
791
|
"""
|
|
784
792
|
return pulumi.get(self, "http_gets")
|
|
785
793
|
|
pulumi_alicloud/eci/outputs.py
CHANGED
|
@@ -519,6 +519,8 @@ class ContainerGroupContainerLivenessProbe(dict):
|
|
|
519
519
|
:param Sequence['ContainerGroupContainerLivenessProbeExecArgs'] execs: Health check using command line method. See `exec` below.
|
|
520
520
|
:param int failure_threshold: Threshold for the number of checks that are determined to have failed since the last successful check (must be consecutive failures), default is 3.
|
|
521
521
|
:param Sequence['ContainerGroupContainerLivenessProbeHttpGetArgs'] http_gets: Health check using HTTP request method. See `http_get` below.
|
|
522
|
+
|
|
523
|
+
> **NOTE:** When you configure `readiness_probe`, you can select only one of the `exec`, `tcp_socket`, `http_get`.
|
|
522
524
|
:param int initial_delay_seconds: Check the time to start execution, calculated from the completion of container startup.
|
|
523
525
|
:param int period_seconds: Buffer time for the program to handle operations before closing.
|
|
524
526
|
:param int success_threshold: The check count threshold for re-identifying successful checks since the last failed check (must be consecutive successes), default is 1. Current must be 1.
|
|
@@ -563,6 +565,8 @@ class ContainerGroupContainerLivenessProbe(dict):
|
|
|
563
565
|
def http_gets(self) -> Optional[Sequence['outputs.ContainerGroupContainerLivenessProbeHttpGet']]:
|
|
564
566
|
"""
|
|
565
567
|
Health check using HTTP request method. See `http_get` below.
|
|
568
|
+
|
|
569
|
+
> **NOTE:** When you configure `readiness_probe`, you can select only one of the `exec`, `tcp_socket`, `http_get`.
|
|
566
570
|
"""
|
|
567
571
|
return pulumi.get(self, "http_gets")
|
|
568
572
|
|
|
@@ -733,6 +737,8 @@ class ContainerGroupContainerReadinessProbe(dict):
|
|
|
733
737
|
:param Sequence['ContainerGroupContainerReadinessProbeExecArgs'] execs: Health check using command line method. See `exec` below.
|
|
734
738
|
:param int failure_threshold: Threshold for the number of checks that are determined to have failed since the last successful check (must be consecutive failures), default is 3.
|
|
735
739
|
:param Sequence['ContainerGroupContainerReadinessProbeHttpGetArgs'] http_gets: Health check using HTTP request method. See `http_get` below.
|
|
740
|
+
|
|
741
|
+
> **NOTE:** When you configure `readiness_probe`, you can select only one of the `exec`, `tcp_socket`, `http_get`.
|
|
736
742
|
:param int initial_delay_seconds: Check the time to start execution, calculated from the completion of container startup.
|
|
737
743
|
:param int period_seconds: Buffer time for the program to handle operations before closing.
|
|
738
744
|
:param int success_threshold: The check count threshold for re-identifying successful checks since the last failed check (must be consecutive successes), default is 1. Current must be 1.
|
|
@@ -777,6 +783,8 @@ class ContainerGroupContainerReadinessProbe(dict):
|
|
|
777
783
|
def http_gets(self) -> Optional[Sequence['outputs.ContainerGroupContainerReadinessProbeHttpGet']]:
|
|
778
784
|
"""
|
|
779
785
|
Health check using HTTP request method. See `http_get` below.
|
|
786
|
+
|
|
787
|
+
> **NOTE:** When you configure `readiness_probe`, you can select only one of the `exec`, `tcp_socket`, `http_get`.
|
|
780
788
|
"""
|
|
781
789
|
return pulumi.get(self, "http_gets")
|
|
782
790
|
|