pulumi-alicloud 3.61.1a1724698226__py3-none-any.whl → 3.61.2__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.
Potentially problematic release.
This version of pulumi-alicloud might be problematic. Click here for more details.
- pulumi_alicloud/brain/get_industrial_pid_loops.py +18 -2
- pulumi_alicloud/brain/get_industrial_pid_organizations.py +12 -2
- pulumi_alicloud/brain/get_industrial_pid_projects.py +18 -2
- pulumi_alicloud/brain/get_industrial_serice.py +6 -2
- pulumi_alicloud/brain/industrial_pid_loop.py +6 -2
- pulumi_alicloud/brain/industrial_pid_organization.py +4 -4
- pulumi_alicloud/brain/industrial_pid_project.py +4 -4
- pulumi_alicloud/cas/certificate.py +155 -13
- pulumi_alicloud/cas/service_certificate.py +9 -30
- pulumi_alicloud/cdn/real_time_log_delivery.py +2 -2
- pulumi_alicloud/cen/get_transit_router_route_tables.py +81 -14
- pulumi_alicloud/cen/outputs.py +6 -2
- pulumi_alicloud/cfg/remediation.py +6 -2
- pulumi_alicloud/clickhouse/account.py +2 -2
- pulumi_alicloud/clickhouse/backup_policy.py +2 -2
- pulumi_alicloud/cloudfirewall/instance.py +2 -0
- pulumi_alicloud/cs/_inputs.py +141 -21
- pulumi_alicloud/cs/kubernetes.py +7 -7
- pulumi_alicloud/cs/managed_kubernetes.py +506 -45
- pulumi_alicloud/cs/outputs.py +148 -21
- pulumi_alicloud/cs/registry_enterprise_namespace.py +92 -72
- pulumi_alicloud/cs/registry_enterprise_repo.py +96 -74
- pulumi_alicloud/cs/registry_enterprise_sync_rule.py +105 -101
- pulumi_alicloud/cs/serverless_kubernetes.py +174 -206
- pulumi_alicloud/databasefilesystem/instance.py +2 -2
- pulumi_alicloud/dts/consumer_channel.py +2 -2
- pulumi_alicloud/dts/subscription_job.py +2 -2
- pulumi_alicloud/ecs/auto_provisioning_group.py +2 -2
- pulumi_alicloud/ehpc/get_clusters.py +11 -2
- pulumi_alicloud/ehpc/get_job_templates.py +5 -2
- pulumi_alicloud/ehpc/job_template.py +2 -2
- pulumi_alicloud/ehpc/outputs.py +34 -2
- pulumi_alicloud/fc/function.py +6 -6
- pulumi_alicloud/fc/function_async_invoke_config.py +2 -2
- pulumi_alicloud/fc/trigger.py +2 -2
- pulumi_alicloud/gpdb/account.py +0 -4
- pulumi_alicloud/gpdb/connection.py +0 -4
- pulumi_alicloud/log/alert.py +30 -28
- pulumi_alicloud/log/audit.py +2 -0
- pulumi_alicloud/log/dashboard.py +8 -8
- pulumi_alicloud/log/etl.py +26 -26
- pulumi_alicloud/log/ingestion.py +10 -10
- pulumi_alicloud/log/log_tail_attachment.py +14 -14
- pulumi_alicloud/log/log_tail_config.py +10 -10
- pulumi_alicloud/log/machine_group.py +4 -4
- pulumi_alicloud/log/oss_export.py +10 -10
- pulumi_alicloud/log/project.py +4 -4
- pulumi_alicloud/log/store_index.py +10 -10
- pulumi_alicloud/nlb/server_group.py +2 -2
- pulumi_alicloud/oos/service_setting.py +10 -8
- pulumi_alicloud/oss/bucket.py +18 -10
- pulumi_alicloud/oss/bucket_object.py +12 -8
- pulumi_alicloud/oss/bucket_replication.py +2 -2
- pulumi_alicloud/polardb/cluster.py +75 -21
- pulumi_alicloud/pulumi-plugin.json +1 -1
- pulumi_alicloud/pvtz/zone_record.py +2 -2
- pulumi_alicloud/ram/access_key.py +4 -0
- pulumi_alicloud/rds/account_privilege.py +2 -2
- pulumi_alicloud/rds/backup_policy.py +270 -12
- pulumi_alicloud/rds/database.py +49 -7
- pulumi_alicloud/rds/instance.py +4 -2
- pulumi_alicloud/rocketmq/group.py +2 -2
- pulumi_alicloud/rocketmq/topic.py +2 -2
- pulumi_alicloud/sls/alert.py +6 -6
- pulumi_alicloud/sls/scheduled_sql.py +10 -10
- pulumi_alicloud/vpc/ha_vip_attachment.py +2 -2
- pulumi_alicloud/vpc/ipv6_internet_bandwidth.py +4 -4
- pulumi_alicloud/vpc/route_table_attachment.py +4 -4
- pulumi_alicloud/vpc/traffic_mirror_filter_ingress_rule.py +2 -2
- {pulumi_alicloud-3.61.1a1724698226.dist-info → pulumi_alicloud-3.61.2.dist-info}/METADATA +1 -1
- {pulumi_alicloud-3.61.1a1724698226.dist-info → pulumi_alicloud-3.61.2.dist-info}/RECORD +73 -73
- {pulumi_alicloud-3.61.1a1724698226.dist-info → pulumi_alicloud-3.61.2.dist-info}/WHEEL +1 -1
- {pulumi_alicloud-3.61.1a1724698226.dist-info → pulumi_alicloud-3.61.2.dist-info}/top_level.txt +0 -0
|
@@ -14,64 +14,70 @@ __all__ = ['RegistryEnterpriseNamespaceArgs', 'RegistryEnterpriseNamespace']
|
|
|
14
14
|
@pulumi.input_type
|
|
15
15
|
class RegistryEnterpriseNamespaceArgs:
|
|
16
16
|
def __init__(__self__, *,
|
|
17
|
-
auto_create: pulumi.Input[bool],
|
|
18
|
-
default_visibility: pulumi.Input[str],
|
|
19
17
|
instance_id: pulumi.Input[str],
|
|
18
|
+
auto_create: Optional[pulumi.Input[bool]] = None,
|
|
19
|
+
default_visibility: Optional[pulumi.Input[str]] = None,
|
|
20
20
|
name: Optional[pulumi.Input[str]] = None):
|
|
21
21
|
"""
|
|
22
22
|
The set of arguments for constructing a RegistryEnterpriseNamespace resource.
|
|
23
|
-
:param pulumi.Input[
|
|
24
|
-
:param pulumi.Input[
|
|
25
|
-
:param pulumi.Input[str]
|
|
26
|
-
|
|
23
|
+
:param pulumi.Input[str] instance_id: The ID of the Container Registry Enterprise Edition instance.
|
|
24
|
+
:param pulumi.Input[bool] auto_create: Specifies whether to automatically create an image repository in the namespace. Default value: `false`. Valid values: `true`, `false`.
|
|
25
|
+
:param pulumi.Input[str] default_visibility: The default type of the repository that is automatically created. Valid values:
|
|
26
|
+
- `PUBLIC`: A public repository.
|
|
27
|
+
- `PRIVATE`: A private repository.
|
|
28
|
+
:param pulumi.Input[str] name: The name of the Container Registry Enterprise Edition Name. It must be `2` to `120` characters in length, and can contain lowercase letters, digits, underscores (_), hyphens (-), and periods (.). It cannot start or end with a delimiter.
|
|
27
29
|
"""
|
|
28
|
-
pulumi.set(__self__, "auto_create", auto_create)
|
|
29
|
-
pulumi.set(__self__, "default_visibility", default_visibility)
|
|
30
30
|
pulumi.set(__self__, "instance_id", instance_id)
|
|
31
|
+
if auto_create is not None:
|
|
32
|
+
pulumi.set(__self__, "auto_create", auto_create)
|
|
33
|
+
if default_visibility is not None:
|
|
34
|
+
pulumi.set(__self__, "default_visibility", default_visibility)
|
|
31
35
|
if name is not None:
|
|
32
36
|
pulumi.set(__self__, "name", name)
|
|
33
37
|
|
|
38
|
+
@property
|
|
39
|
+
@pulumi.getter(name="instanceId")
|
|
40
|
+
def instance_id(self) -> pulumi.Input[str]:
|
|
41
|
+
"""
|
|
42
|
+
The ID of the Container Registry Enterprise Edition instance.
|
|
43
|
+
"""
|
|
44
|
+
return pulumi.get(self, "instance_id")
|
|
45
|
+
|
|
46
|
+
@instance_id.setter
|
|
47
|
+
def instance_id(self, value: pulumi.Input[str]):
|
|
48
|
+
pulumi.set(self, "instance_id", value)
|
|
49
|
+
|
|
34
50
|
@property
|
|
35
51
|
@pulumi.getter(name="autoCreate")
|
|
36
|
-
def auto_create(self) -> pulumi.Input[bool]:
|
|
52
|
+
def auto_create(self) -> Optional[pulumi.Input[bool]]:
|
|
37
53
|
"""
|
|
38
|
-
|
|
54
|
+
Specifies whether to automatically create an image repository in the namespace. Default value: `false`. Valid values: `true`, `false`.
|
|
39
55
|
"""
|
|
40
56
|
return pulumi.get(self, "auto_create")
|
|
41
57
|
|
|
42
58
|
@auto_create.setter
|
|
43
|
-
def auto_create(self, value: pulumi.Input[bool]):
|
|
59
|
+
def auto_create(self, value: Optional[pulumi.Input[bool]]):
|
|
44
60
|
pulumi.set(self, "auto_create", value)
|
|
45
61
|
|
|
46
62
|
@property
|
|
47
63
|
@pulumi.getter(name="defaultVisibility")
|
|
48
|
-
def default_visibility(self) -> pulumi.Input[str]:
|
|
64
|
+
def default_visibility(self) -> Optional[pulumi.Input[str]]:
|
|
49
65
|
"""
|
|
50
|
-
|
|
66
|
+
The default type of the repository that is automatically created. Valid values:
|
|
67
|
+
- `PUBLIC`: A public repository.
|
|
68
|
+
- `PRIVATE`: A private repository.
|
|
51
69
|
"""
|
|
52
70
|
return pulumi.get(self, "default_visibility")
|
|
53
71
|
|
|
54
72
|
@default_visibility.setter
|
|
55
|
-
def default_visibility(self, value: pulumi.Input[str]):
|
|
73
|
+
def default_visibility(self, value: Optional[pulumi.Input[str]]):
|
|
56
74
|
pulumi.set(self, "default_visibility", value)
|
|
57
75
|
|
|
58
|
-
@property
|
|
59
|
-
@pulumi.getter(name="instanceId")
|
|
60
|
-
def instance_id(self) -> pulumi.Input[str]:
|
|
61
|
-
"""
|
|
62
|
-
ID of Container Registry Enterprise Edition instance.
|
|
63
|
-
"""
|
|
64
|
-
return pulumi.get(self, "instance_id")
|
|
65
|
-
|
|
66
|
-
@instance_id.setter
|
|
67
|
-
def instance_id(self, value: pulumi.Input[str]):
|
|
68
|
-
pulumi.set(self, "instance_id", value)
|
|
69
|
-
|
|
70
76
|
@property
|
|
71
77
|
@pulumi.getter
|
|
72
78
|
def name(self) -> Optional[pulumi.Input[str]]:
|
|
73
79
|
"""
|
|
74
|
-
|
|
80
|
+
The name of the Container Registry Enterprise Edition Name. It must be `2` to `120` characters in length, and can contain lowercase letters, digits, underscores (_), hyphens (-), and periods (.). It cannot start or end with a delimiter.
|
|
75
81
|
"""
|
|
76
82
|
return pulumi.get(self, "name")
|
|
77
83
|
|
|
@@ -89,10 +95,12 @@ class _RegistryEnterpriseNamespaceState:
|
|
|
89
95
|
name: Optional[pulumi.Input[str]] = None):
|
|
90
96
|
"""
|
|
91
97
|
Input properties used for looking up and filtering RegistryEnterpriseNamespace resources.
|
|
92
|
-
:param pulumi.Input[bool] auto_create:
|
|
93
|
-
:param pulumi.Input[str] default_visibility:
|
|
94
|
-
|
|
95
|
-
|
|
98
|
+
:param pulumi.Input[bool] auto_create: Specifies whether to automatically create an image repository in the namespace. Default value: `false`. Valid values: `true`, `false`.
|
|
99
|
+
:param pulumi.Input[str] default_visibility: The default type of the repository that is automatically created. Valid values:
|
|
100
|
+
- `PUBLIC`: A public repository.
|
|
101
|
+
- `PRIVATE`: A private repository.
|
|
102
|
+
:param pulumi.Input[str] instance_id: The ID of the Container Registry Enterprise Edition instance.
|
|
103
|
+
:param pulumi.Input[str] name: The name of the Container Registry Enterprise Edition Name. It must be `2` to `120` characters in length, and can contain lowercase letters, digits, underscores (_), hyphens (-), and periods (.). It cannot start or end with a delimiter.
|
|
96
104
|
"""
|
|
97
105
|
if auto_create is not None:
|
|
98
106
|
pulumi.set(__self__, "auto_create", auto_create)
|
|
@@ -107,7 +115,7 @@ class _RegistryEnterpriseNamespaceState:
|
|
|
107
115
|
@pulumi.getter(name="autoCreate")
|
|
108
116
|
def auto_create(self) -> Optional[pulumi.Input[bool]]:
|
|
109
117
|
"""
|
|
110
|
-
|
|
118
|
+
Specifies whether to automatically create an image repository in the namespace. Default value: `false`. Valid values: `true`, `false`.
|
|
111
119
|
"""
|
|
112
120
|
return pulumi.get(self, "auto_create")
|
|
113
121
|
|
|
@@ -119,7 +127,9 @@ class _RegistryEnterpriseNamespaceState:
|
|
|
119
127
|
@pulumi.getter(name="defaultVisibility")
|
|
120
128
|
def default_visibility(self) -> Optional[pulumi.Input[str]]:
|
|
121
129
|
"""
|
|
122
|
-
|
|
130
|
+
The default type of the repository that is automatically created. Valid values:
|
|
131
|
+
- `PUBLIC`: A public repository.
|
|
132
|
+
- `PRIVATE`: A private repository.
|
|
123
133
|
"""
|
|
124
134
|
return pulumi.get(self, "default_visibility")
|
|
125
135
|
|
|
@@ -131,7 +141,7 @@ class _RegistryEnterpriseNamespaceState:
|
|
|
131
141
|
@pulumi.getter(name="instanceId")
|
|
132
142
|
def instance_id(self) -> Optional[pulumi.Input[str]]:
|
|
133
143
|
"""
|
|
134
|
-
ID of Container Registry Enterprise Edition instance.
|
|
144
|
+
The ID of the Container Registry Enterprise Edition instance.
|
|
135
145
|
"""
|
|
136
146
|
return pulumi.get(self, "instance_id")
|
|
137
147
|
|
|
@@ -143,7 +153,7 @@ class _RegistryEnterpriseNamespaceState:
|
|
|
143
153
|
@pulumi.getter
|
|
144
154
|
def name(self) -> Optional[pulumi.Input[str]]:
|
|
145
155
|
"""
|
|
146
|
-
|
|
156
|
+
The name of the Container Registry Enterprise Edition Name. It must be `2` to `120` characters in length, and can contain lowercase letters, digits, underscores (_), hyphens (-), and periods (.). It cannot start or end with a delimiter.
|
|
147
157
|
"""
|
|
148
158
|
return pulumi.get(self, "name")
|
|
149
159
|
|
|
@@ -163,9 +173,9 @@ class RegistryEnterpriseNamespace(pulumi.CustomResource):
|
|
|
163
173
|
name: Optional[pulumi.Input[str]] = None,
|
|
164
174
|
__props__=None):
|
|
165
175
|
"""
|
|
166
|
-
|
|
176
|
+
Provides a Container Registry Enterprise Edition Namespace resource.
|
|
167
177
|
|
|
168
|
-
For information about Container Registry Enterprise Edition
|
|
178
|
+
For information about Container Registry Enterprise Edition Namespace and how to use it, see [What is Namespace](https://www.alibabacloud.com/help/en/acr/developer-reference/api-cr-2018-12-01-createnamespace)
|
|
169
179
|
|
|
170
180
|
> **NOTE:** Available since v1.86.0.
|
|
171
181
|
|
|
@@ -178,39 +188,45 @@ class RegistryEnterpriseNamespace(pulumi.CustomResource):
|
|
|
178
188
|
```python
|
|
179
189
|
import pulumi
|
|
180
190
|
import pulumi_alicloud as alicloud
|
|
191
|
+
import pulumi_random as random
|
|
181
192
|
|
|
182
193
|
config = pulumi.Config()
|
|
183
194
|
name = config.get("name")
|
|
184
195
|
if name is None:
|
|
185
|
-
name = "terraform-example
|
|
186
|
-
|
|
196
|
+
name = "terraform-example"
|
|
197
|
+
default = random.index.Integer("default",
|
|
198
|
+
min=10000,
|
|
199
|
+
max=99999)
|
|
200
|
+
default_registry_enterprise_instance = alicloud.cr.RegistryEnterpriseInstance("default",
|
|
187
201
|
payment_type="Subscription",
|
|
188
202
|
period=1,
|
|
189
203
|
renew_period=0,
|
|
190
204
|
renewal_status="ManualRenewal",
|
|
191
205
|
instance_type="Advanced",
|
|
192
|
-
instance_name=name)
|
|
193
|
-
|
|
194
|
-
instance_id=
|
|
195
|
-
name=name,
|
|
206
|
+
instance_name=f"{name}-{default['result']}")
|
|
207
|
+
default_registry_enterprise_namespace = alicloud.cs.RegistryEnterpriseNamespace("default",
|
|
208
|
+
instance_id=default_registry_enterprise_instance.id,
|
|
209
|
+
name=f"{name}-{default['result']}",
|
|
196
210
|
auto_create=False,
|
|
197
211
|
default_visibility="PUBLIC")
|
|
198
212
|
```
|
|
199
213
|
|
|
200
214
|
## Import
|
|
201
215
|
|
|
202
|
-
Container Registry Enterprise Edition
|
|
216
|
+
Container Registry Enterprise Edition Namespace can be imported using the id, e.g.
|
|
203
217
|
|
|
204
218
|
```sh
|
|
205
|
-
$ pulumi import alicloud:cs/registryEnterpriseNamespace:RegistryEnterpriseNamespace
|
|
219
|
+
$ pulumi import alicloud:cs/registryEnterpriseNamespace:RegistryEnterpriseNamespace example <instance_id>:<name>
|
|
206
220
|
```
|
|
207
221
|
|
|
208
222
|
:param str resource_name: The name of the resource.
|
|
209
223
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
210
|
-
:param pulumi.Input[bool] auto_create:
|
|
211
|
-
:param pulumi.Input[str] default_visibility:
|
|
212
|
-
|
|
213
|
-
|
|
224
|
+
:param pulumi.Input[bool] auto_create: Specifies whether to automatically create an image repository in the namespace. Default value: `false`. Valid values: `true`, `false`.
|
|
225
|
+
:param pulumi.Input[str] default_visibility: The default type of the repository that is automatically created. Valid values:
|
|
226
|
+
- `PUBLIC`: A public repository.
|
|
227
|
+
- `PRIVATE`: A private repository.
|
|
228
|
+
:param pulumi.Input[str] instance_id: The ID of the Container Registry Enterprise Edition instance.
|
|
229
|
+
:param pulumi.Input[str] name: The name of the Container Registry Enterprise Edition Name. It must be `2` to `120` characters in length, and can contain lowercase letters, digits, underscores (_), hyphens (-), and periods (.). It cannot start or end with a delimiter.
|
|
214
230
|
"""
|
|
215
231
|
...
|
|
216
232
|
@overload
|
|
@@ -219,9 +235,9 @@ class RegistryEnterpriseNamespace(pulumi.CustomResource):
|
|
|
219
235
|
args: RegistryEnterpriseNamespaceArgs,
|
|
220
236
|
opts: Optional[pulumi.ResourceOptions] = None):
|
|
221
237
|
"""
|
|
222
|
-
|
|
238
|
+
Provides a Container Registry Enterprise Edition Namespace resource.
|
|
223
239
|
|
|
224
|
-
For information about Container Registry Enterprise Edition
|
|
240
|
+
For information about Container Registry Enterprise Edition Namespace and how to use it, see [What is Namespace](https://www.alibabacloud.com/help/en/acr/developer-reference/api-cr-2018-12-01-createnamespace)
|
|
225
241
|
|
|
226
242
|
> **NOTE:** Available since v1.86.0.
|
|
227
243
|
|
|
@@ -234,31 +250,35 @@ class RegistryEnterpriseNamespace(pulumi.CustomResource):
|
|
|
234
250
|
```python
|
|
235
251
|
import pulumi
|
|
236
252
|
import pulumi_alicloud as alicloud
|
|
253
|
+
import pulumi_random as random
|
|
237
254
|
|
|
238
255
|
config = pulumi.Config()
|
|
239
256
|
name = config.get("name")
|
|
240
257
|
if name is None:
|
|
241
|
-
name = "terraform-example
|
|
242
|
-
|
|
258
|
+
name = "terraform-example"
|
|
259
|
+
default = random.index.Integer("default",
|
|
260
|
+
min=10000,
|
|
261
|
+
max=99999)
|
|
262
|
+
default_registry_enterprise_instance = alicloud.cr.RegistryEnterpriseInstance("default",
|
|
243
263
|
payment_type="Subscription",
|
|
244
264
|
period=1,
|
|
245
265
|
renew_period=0,
|
|
246
266
|
renewal_status="ManualRenewal",
|
|
247
267
|
instance_type="Advanced",
|
|
248
|
-
instance_name=name)
|
|
249
|
-
|
|
250
|
-
instance_id=
|
|
251
|
-
name=name,
|
|
268
|
+
instance_name=f"{name}-{default['result']}")
|
|
269
|
+
default_registry_enterprise_namespace = alicloud.cs.RegistryEnterpriseNamespace("default",
|
|
270
|
+
instance_id=default_registry_enterprise_instance.id,
|
|
271
|
+
name=f"{name}-{default['result']}",
|
|
252
272
|
auto_create=False,
|
|
253
273
|
default_visibility="PUBLIC")
|
|
254
274
|
```
|
|
255
275
|
|
|
256
276
|
## Import
|
|
257
277
|
|
|
258
|
-
Container Registry Enterprise Edition
|
|
278
|
+
Container Registry Enterprise Edition Namespace can be imported using the id, e.g.
|
|
259
279
|
|
|
260
280
|
```sh
|
|
261
|
-
$ pulumi import alicloud:cs/registryEnterpriseNamespace:RegistryEnterpriseNamespace
|
|
281
|
+
$ pulumi import alicloud:cs/registryEnterpriseNamespace:RegistryEnterpriseNamespace example <instance_id>:<name>
|
|
262
282
|
```
|
|
263
283
|
|
|
264
284
|
:param str resource_name: The name of the resource.
|
|
@@ -289,11 +309,7 @@ class RegistryEnterpriseNamespace(pulumi.CustomResource):
|
|
|
289
309
|
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
|
290
310
|
__props__ = RegistryEnterpriseNamespaceArgs.__new__(RegistryEnterpriseNamespaceArgs)
|
|
291
311
|
|
|
292
|
-
if auto_create is None and not opts.urn:
|
|
293
|
-
raise TypeError("Missing required property 'auto_create'")
|
|
294
312
|
__props__.__dict__["auto_create"] = auto_create
|
|
295
|
-
if default_visibility is None and not opts.urn:
|
|
296
|
-
raise TypeError("Missing required property 'default_visibility'")
|
|
297
313
|
__props__.__dict__["default_visibility"] = default_visibility
|
|
298
314
|
if instance_id is None and not opts.urn:
|
|
299
315
|
raise TypeError("Missing required property 'instance_id'")
|
|
@@ -320,10 +336,12 @@ class RegistryEnterpriseNamespace(pulumi.CustomResource):
|
|
|
320
336
|
:param str resource_name: The unique name of the resulting resource.
|
|
321
337
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
322
338
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
323
|
-
:param pulumi.Input[bool] auto_create:
|
|
324
|
-
:param pulumi.Input[str] default_visibility:
|
|
325
|
-
|
|
326
|
-
|
|
339
|
+
:param pulumi.Input[bool] auto_create: Specifies whether to automatically create an image repository in the namespace. Default value: `false`. Valid values: `true`, `false`.
|
|
340
|
+
:param pulumi.Input[str] default_visibility: The default type of the repository that is automatically created. Valid values:
|
|
341
|
+
- `PUBLIC`: A public repository.
|
|
342
|
+
- `PRIVATE`: A private repository.
|
|
343
|
+
:param pulumi.Input[str] instance_id: The ID of the Container Registry Enterprise Edition instance.
|
|
344
|
+
:param pulumi.Input[str] name: The name of the Container Registry Enterprise Edition Name. It must be `2` to `120` characters in length, and can contain lowercase letters, digits, underscores (_), hyphens (-), and periods (.). It cannot start or end with a delimiter.
|
|
327
345
|
"""
|
|
328
346
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
329
347
|
|
|
@@ -337,9 +355,9 @@ class RegistryEnterpriseNamespace(pulumi.CustomResource):
|
|
|
337
355
|
|
|
338
356
|
@property
|
|
339
357
|
@pulumi.getter(name="autoCreate")
|
|
340
|
-
def auto_create(self) -> pulumi.Output[bool]:
|
|
358
|
+
def auto_create(self) -> pulumi.Output[Optional[bool]]:
|
|
341
359
|
"""
|
|
342
|
-
|
|
360
|
+
Specifies whether to automatically create an image repository in the namespace. Default value: `false`. Valid values: `true`, `false`.
|
|
343
361
|
"""
|
|
344
362
|
return pulumi.get(self, "auto_create")
|
|
345
363
|
|
|
@@ -347,7 +365,9 @@ class RegistryEnterpriseNamespace(pulumi.CustomResource):
|
|
|
347
365
|
@pulumi.getter(name="defaultVisibility")
|
|
348
366
|
def default_visibility(self) -> pulumi.Output[str]:
|
|
349
367
|
"""
|
|
350
|
-
|
|
368
|
+
The default type of the repository that is automatically created. Valid values:
|
|
369
|
+
- `PUBLIC`: A public repository.
|
|
370
|
+
- `PRIVATE`: A private repository.
|
|
351
371
|
"""
|
|
352
372
|
return pulumi.get(self, "default_visibility")
|
|
353
373
|
|
|
@@ -355,7 +375,7 @@ class RegistryEnterpriseNamespace(pulumi.CustomResource):
|
|
|
355
375
|
@pulumi.getter(name="instanceId")
|
|
356
376
|
def instance_id(self) -> pulumi.Output[str]:
|
|
357
377
|
"""
|
|
358
|
-
ID of Container Registry Enterprise Edition instance.
|
|
378
|
+
The ID of the Container Registry Enterprise Edition instance.
|
|
359
379
|
"""
|
|
360
380
|
return pulumi.get(self, "instance_id")
|
|
361
381
|
|
|
@@ -363,7 +383,7 @@ class RegistryEnterpriseNamespace(pulumi.CustomResource):
|
|
|
363
383
|
@pulumi.getter
|
|
364
384
|
def name(self) -> pulumi.Output[str]:
|
|
365
385
|
"""
|
|
366
|
-
|
|
386
|
+
The name of the Container Registry Enterprise Edition Name. It must be `2` to `120` characters in length, and can contain lowercase letters, digits, underscores (_), hyphens (-), and periods (.). It cannot start or end with a delimiter.
|
|
367
387
|
"""
|
|
368
388
|
return pulumi.get(self, "name")
|
|
369
389
|
|