pulumi-alicloud 3.67.0__py3-none-any.whl → 3.67.0a1731734345__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.

Files changed (44) hide show
  1. pulumi_alicloud/__init__.py +0 -16
  2. pulumi_alicloud/cen/flow_log.py +58 -373
  3. pulumi_alicloud/cen/transit_router_ecr_attachment.py +4 -4
  4. pulumi_alicloud/cr/registry_enterprise_instance.py +90 -474
  5. pulumi_alicloud/ecs/ecs_image_component.py +48 -221
  6. pulumi_alicloud/ess/_inputs.py +0 -94
  7. pulumi_alicloud/ess/eci_scaling_configuration.py +14 -42
  8. pulumi_alicloud/ess/outputs.py +0 -79
  9. pulumi_alicloud/ess/scaling_configuration.py +0 -47
  10. pulumi_alicloud/expressconnect/router_vbr_child_instance.py +25 -86
  11. pulumi_alicloud/kms/key.py +1 -1
  12. pulumi_alicloud/kvstore/account.py +24 -24
  13. pulumi_alicloud/kvstore/audit_log_config.py +4 -4
  14. pulumi_alicloud/kvstore/backup_policy.py +2 -2
  15. pulumi_alicloud/kvstore/connection.py +8 -8
  16. pulumi_alicloud/kvstore/get_accounts.py +4 -4
  17. pulumi_alicloud/kvstore/get_connections.py +5 -5
  18. pulumi_alicloud/kvstore/get_instance_classes.py +12 -12
  19. pulumi_alicloud/kvstore/get_instance_engines.py +7 -7
  20. pulumi_alicloud/kvstore/get_permission.py +10 -10
  21. pulumi_alicloud/kvstore/get_zones.py +4 -4
  22. pulumi_alicloud/kvstore/outputs.py +2 -2
  23. pulumi_alicloud/mongodb/instance.py +0 -47
  24. pulumi_alicloud/mongodb/sharding_instance.py +0 -47
  25. pulumi_alicloud/polardb/cluster.py +7 -7
  26. pulumi_alicloud/privatelink/vpc_endpoint_service.py +91 -42
  27. pulumi_alicloud/privatelink/vpc_endpoint_service_connection.py +23 -27
  28. pulumi_alicloud/privatelink/vpc_endpoint_service_resource.py +37 -34
  29. pulumi_alicloud/privatelink/vpc_endpoint_zone.py +0 -28
  30. pulumi_alicloud/pulumi-plugin.json +1 -1
  31. pulumi_alicloud/rds/__init__.py +0 -2
  32. pulumi_alicloud/rds/_inputs.py +0 -146
  33. pulumi_alicloud/rds/outputs.py +0 -105
  34. pulumi_alicloud/redis/tair_instance.py +1 -76
  35. pulumi_alicloud/vpc/_inputs.py +0 -54
  36. pulumi_alicloud/vpc/nat_gateway.py +14 -175
  37. pulumi_alicloud/vpc/outputs.py +0 -51
  38. pulumi_alicloud/vpn/gateway_vco_route.py +21 -68
  39. {pulumi_alicloud-3.67.0.dist-info → pulumi_alicloud-3.67.0a1731734345.dist-info}/METADATA +5 -5
  40. {pulumi_alicloud-3.67.0.dist-info → pulumi_alicloud-3.67.0a1731734345.dist-info}/RECORD +42 -44
  41. {pulumi_alicloud-3.67.0.dist-info → pulumi_alicloud-3.67.0a1731734345.dist-info}/WHEEL +1 -1
  42. pulumi_alicloud/rds/custom.py +0 -1630
  43. pulumi_alicloud/rds/custom_deployment_set.py +0 -525
  44. {pulumi_alicloud-3.67.0.dist-info → pulumi_alicloud-3.67.0a1731734345.dist-info}/top_level.txt +0 -0
@@ -21,79 +21,51 @@ class RegistryEnterpriseInstanceArgs:
21
21
  def __init__(__self__, *,
22
22
  instance_name: pulumi.Input[str],
23
23
  instance_type: pulumi.Input[str],
24
- payment_type: pulumi.Input[str],
25
24
  custom_oss_bucket: Optional[pulumi.Input[str]] = None,
26
- default_oss_bucket: Optional[pulumi.Input[str]] = None,
27
- image_scanner: Optional[pulumi.Input[str]] = None,
28
25
  kms_encrypted_password: Optional[pulumi.Input[str]] = None,
29
26
  kms_encryption_context: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
30
27
  password: Optional[pulumi.Input[str]] = None,
28
+ payment_type: Optional[pulumi.Input[str]] = None,
31
29
  period: Optional[pulumi.Input[int]] = None,
32
30
  renew_period: Optional[pulumi.Input[int]] = None,
33
- renewal_status: Optional[pulumi.Input[str]] = None,
34
- resource_group_id: Optional[pulumi.Input[str]] = None):
31
+ renewal_status: Optional[pulumi.Input[str]] = None):
35
32
  """
36
33
  The set of arguments for constructing a RegistryEnterpriseInstance resource.
37
- :param pulumi.Input[str] instance_name: InstanceName
38
- :param pulumi.Input[str] instance_type: The Value configuration of the Group 1 attribute of Container Mirror Service Enterprise Edition. Valid values:
39
-
40
- Basic: Basic instance
41
-
42
- Standard: Standard instance
43
-
44
- Advanced: Advanced Edition Instance
45
- :param pulumi.Input[str] payment_type: Payment type, value:
46
- - Subscription: Prepaid.
47
- :param pulumi.Input[str] custom_oss_bucket: Custom OSS Bucket name
48
- :param pulumi.Input[str] default_oss_bucket: Whether to use the default OSS Bucket
49
- :param pulumi.Input[str] image_scanner: Security scan engine
34
+ :param pulumi.Input[str] instance_name: Name of Container Registry Enterprise Edition instance.
35
+ :param pulumi.Input[str] instance_type: Type of Container Registry Enterprise Edition instance. Valid values: `Basic`, `Standard`, `Advanced`. **NOTE:** International Account doesn't supports `Standard`.
36
+ :param pulumi.Input[str] custom_oss_bucket: Name of your customized oss bucket. Use this bucket as instance storage if set.
50
37
  :param pulumi.Input[str] kms_encrypted_password: An KMS encrypts password used to an instance. If the `password` is filled in, this field will be ignored.
51
38
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] kms_encryption_context: An KMS encryption context used to decrypt `kms_encrypted_password` before creating or updating instance with `kms_encrypted_password`. See [Encryption Context](https://www.alibabacloud.com/help/doc-detail/42975.htm). It is valid when `kms_encrypted_password` is set.
52
- :param pulumi.Input[str] password: Permanent access credentials of the instance
53
- :param pulumi.Input[int] period: Prepaid cycle. The unit is Monthly, please enter an integer multiple of 12 for annual paid products.
54
-
55
- > **NOTE:** must be set when creating a prepaid instance.
56
- :param pulumi.Input[int] renew_period: Automatic renewal cycle, in months.
57
-
58
- > **NOTE:** When `RenewalStatus` is set to `AutoRenewal`, it must be set.
59
- :param pulumi.Input[str] renewal_status: Automatic renewal status, value:
60
- - AutoRenewal: automatic renewal.
61
- - ManualRenewal: manual renewal.
62
-
63
- Default ManualRenewal.
64
- :param pulumi.Input[str] resource_group_id: The ID of the resource group
65
-
66
- The following arguments will be discarded. Please use new fields as soon as possible:
39
+ :param pulumi.Input[str] password: The password of the Instance. The password is a string of 8 to 30 characters and must contain uppercase letters, lowercase letters, and numbers.
40
+ :param pulumi.Input[str] payment_type: Subscription of Container Registry Enterprise Edition instance. Default value: `Subscription`. Valid values: `Subscription`.
41
+ :param pulumi.Input[int] period: Service time of Container Registry Enterprise Edition instance. Default value: `12`. Valid values: `1`, `2`, `3`, `6`, `12`, `24`, `36`, `48`, `60`. Unit: `month`.
42
+ :param pulumi.Input[int] renew_period: Renewal period of Container Registry Enterprise Edition instance. Unit: `month`.
43
+ :param pulumi.Input[str] renewal_status: Renewal status of Container Registry Enterprise Edition instance. Valid values: `AutoRenewal`, `ManualRenewal`.
67
44
  """
68
45
  pulumi.set(__self__, "instance_name", instance_name)
69
46
  pulumi.set(__self__, "instance_type", instance_type)
70
- pulumi.set(__self__, "payment_type", payment_type)
71
47
  if custom_oss_bucket is not None:
72
48
  pulumi.set(__self__, "custom_oss_bucket", custom_oss_bucket)
73
- if default_oss_bucket is not None:
74
- pulumi.set(__self__, "default_oss_bucket", default_oss_bucket)
75
- if image_scanner is not None:
76
- pulumi.set(__self__, "image_scanner", image_scanner)
77
49
  if kms_encrypted_password is not None:
78
50
  pulumi.set(__self__, "kms_encrypted_password", kms_encrypted_password)
79
51
  if kms_encryption_context is not None:
80
52
  pulumi.set(__self__, "kms_encryption_context", kms_encryption_context)
81
53
  if password is not None:
82
54
  pulumi.set(__self__, "password", password)
55
+ if payment_type is not None:
56
+ pulumi.set(__self__, "payment_type", payment_type)
83
57
  if period is not None:
84
58
  pulumi.set(__self__, "period", period)
85
59
  if renew_period is not None:
86
60
  pulumi.set(__self__, "renew_period", renew_period)
87
61
  if renewal_status is not None:
88
62
  pulumi.set(__self__, "renewal_status", renewal_status)
89
- if resource_group_id is not None:
90
- pulumi.set(__self__, "resource_group_id", resource_group_id)
91
63
 
92
64
  @property
93
65
  @pulumi.getter(name="instanceName")
94
66
  def instance_name(self) -> pulumi.Input[str]:
95
67
  """
96
- InstanceName
68
+ Name of Container Registry Enterprise Edition instance.
97
69
  """
98
70
  return pulumi.get(self, "instance_name")
99
71
 
@@ -105,13 +77,7 @@ class RegistryEnterpriseInstanceArgs:
105
77
  @pulumi.getter(name="instanceType")
106
78
  def instance_type(self) -> pulumi.Input[str]:
107
79
  """
108
- The Value configuration of the Group 1 attribute of Container Mirror Service Enterprise Edition. Valid values:
109
-
110
- Basic: Basic instance
111
-
112
- Standard: Standard instance
113
-
114
- Advanced: Advanced Edition Instance
80
+ Type of Container Registry Enterprise Edition instance. Valid values: `Basic`, `Standard`, `Advanced`. **NOTE:** International Account doesn't supports `Standard`.
115
81
  """
116
82
  return pulumi.get(self, "instance_type")
117
83
 
@@ -119,24 +85,11 @@ class RegistryEnterpriseInstanceArgs:
119
85
  def instance_type(self, value: pulumi.Input[str]):
120
86
  pulumi.set(self, "instance_type", value)
121
87
 
122
- @property
123
- @pulumi.getter(name="paymentType")
124
- def payment_type(self) -> pulumi.Input[str]:
125
- """
126
- Payment type, value:
127
- - Subscription: Prepaid.
128
- """
129
- return pulumi.get(self, "payment_type")
130
-
131
- @payment_type.setter
132
- def payment_type(self, value: pulumi.Input[str]):
133
- pulumi.set(self, "payment_type", value)
134
-
135
88
  @property
136
89
  @pulumi.getter(name="customOssBucket")
137
90
  def custom_oss_bucket(self) -> Optional[pulumi.Input[str]]:
138
91
  """
139
- Custom OSS Bucket name
92
+ Name of your customized oss bucket. Use this bucket as instance storage if set.
140
93
  """
141
94
  return pulumi.get(self, "custom_oss_bucket")
142
95
 
@@ -144,30 +97,6 @@ class RegistryEnterpriseInstanceArgs:
144
97
  def custom_oss_bucket(self, value: Optional[pulumi.Input[str]]):
145
98
  pulumi.set(self, "custom_oss_bucket", value)
146
99
 
147
- @property
148
- @pulumi.getter(name="defaultOssBucket")
149
- def default_oss_bucket(self) -> Optional[pulumi.Input[str]]:
150
- """
151
- Whether to use the default OSS Bucket
152
- """
153
- return pulumi.get(self, "default_oss_bucket")
154
-
155
- @default_oss_bucket.setter
156
- def default_oss_bucket(self, value: Optional[pulumi.Input[str]]):
157
- pulumi.set(self, "default_oss_bucket", value)
158
-
159
- @property
160
- @pulumi.getter(name="imageScanner")
161
- def image_scanner(self) -> Optional[pulumi.Input[str]]:
162
- """
163
- Security scan engine
164
- """
165
- return pulumi.get(self, "image_scanner")
166
-
167
- @image_scanner.setter
168
- def image_scanner(self, value: Optional[pulumi.Input[str]]):
169
- pulumi.set(self, "image_scanner", value)
170
-
171
100
  @property
172
101
  @pulumi.getter(name="kmsEncryptedPassword")
173
102
  def kms_encrypted_password(self) -> Optional[pulumi.Input[str]]:
@@ -196,7 +125,7 @@ class RegistryEnterpriseInstanceArgs:
196
125
  @pulumi.getter
197
126
  def password(self) -> Optional[pulumi.Input[str]]:
198
127
  """
199
- Permanent access credentials of the instance
128
+ The password of the Instance. The password is a string of 8 to 30 characters and must contain uppercase letters, lowercase letters, and numbers.
200
129
  """
201
130
  return pulumi.get(self, "password")
202
131
 
@@ -204,13 +133,23 @@ class RegistryEnterpriseInstanceArgs:
204
133
  def password(self, value: Optional[pulumi.Input[str]]):
205
134
  pulumi.set(self, "password", value)
206
135
 
136
+ @property
137
+ @pulumi.getter(name="paymentType")
138
+ def payment_type(self) -> Optional[pulumi.Input[str]]:
139
+ """
140
+ Subscription of Container Registry Enterprise Edition instance. Default value: `Subscription`. Valid values: `Subscription`.
141
+ """
142
+ return pulumi.get(self, "payment_type")
143
+
144
+ @payment_type.setter
145
+ def payment_type(self, value: Optional[pulumi.Input[str]]):
146
+ pulumi.set(self, "payment_type", value)
147
+
207
148
  @property
208
149
  @pulumi.getter
209
150
  def period(self) -> Optional[pulumi.Input[int]]:
210
151
  """
211
- Prepaid cycle. The unit is Monthly, please enter an integer multiple of 12 for annual paid products.
212
-
213
- > **NOTE:** must be set when creating a prepaid instance.
152
+ Service time of Container Registry Enterprise Edition instance. Default value: `12`. Valid values: `1`, `2`, `3`, `6`, `12`, `24`, `36`, `48`, `60`. Unit: `month`.
214
153
  """
215
154
  return pulumi.get(self, "period")
216
155
 
@@ -222,9 +161,7 @@ class RegistryEnterpriseInstanceArgs:
222
161
  @pulumi.getter(name="renewPeriod")
223
162
  def renew_period(self) -> Optional[pulumi.Input[int]]:
224
163
  """
225
- Automatic renewal cycle, in months.
226
-
227
- > **NOTE:** When `RenewalStatus` is set to `AutoRenewal`, it must be set.
164
+ Renewal period of Container Registry Enterprise Edition instance. Unit: `month`.
228
165
  """
229
166
  return pulumi.get(self, "renew_period")
230
167
 
@@ -236,11 +173,7 @@ class RegistryEnterpriseInstanceArgs:
236
173
  @pulumi.getter(name="renewalStatus")
237
174
  def renewal_status(self) -> Optional[pulumi.Input[str]]:
238
175
  """
239
- Automatic renewal status, value:
240
- - AutoRenewal: automatic renewal.
241
- - ManualRenewal: manual renewal.
242
-
243
- Default ManualRenewal.
176
+ Renewal status of Container Registry Enterprise Edition instance. Valid values: `AutoRenewal`, `ManualRenewal`.
244
177
  """
245
178
  return pulumi.get(self, "renewal_status")
246
179
 
@@ -248,30 +181,13 @@ class RegistryEnterpriseInstanceArgs:
248
181
  def renewal_status(self, value: Optional[pulumi.Input[str]]):
249
182
  pulumi.set(self, "renewal_status", value)
250
183
 
251
- @property
252
- @pulumi.getter(name="resourceGroupId")
253
- def resource_group_id(self) -> Optional[pulumi.Input[str]]:
254
- """
255
- The ID of the resource group
256
-
257
- The following arguments will be discarded. Please use new fields as soon as possible:
258
- """
259
- return pulumi.get(self, "resource_group_id")
260
-
261
- @resource_group_id.setter
262
- def resource_group_id(self, value: Optional[pulumi.Input[str]]):
263
- pulumi.set(self, "resource_group_id", value)
264
-
265
184
 
266
185
  @pulumi.input_type
267
186
  class _RegistryEnterpriseInstanceState:
268
187
  def __init__(__self__, *,
269
- create_time: Optional[pulumi.Input[str]] = None,
270
188
  created_time: Optional[pulumi.Input[str]] = None,
271
189
  custom_oss_bucket: Optional[pulumi.Input[str]] = None,
272
- default_oss_bucket: Optional[pulumi.Input[str]] = None,
273
190
  end_time: Optional[pulumi.Input[str]] = None,
274
- image_scanner: Optional[pulumi.Input[str]] = None,
275
191
  instance_name: Optional[pulumi.Input[str]] = None,
276
192
  instance_type: Optional[pulumi.Input[str]] = None,
277
193
  kms_encrypted_password: Optional[pulumi.Input[str]] = None,
@@ -279,64 +195,31 @@ class _RegistryEnterpriseInstanceState:
279
195
  password: Optional[pulumi.Input[str]] = None,
280
196
  payment_type: Optional[pulumi.Input[str]] = None,
281
197
  period: Optional[pulumi.Input[int]] = None,
282
- region_id: Optional[pulumi.Input[str]] = None,
283
198
  renew_period: Optional[pulumi.Input[int]] = None,
284
199
  renewal_status: Optional[pulumi.Input[str]] = None,
285
- resource_group_id: Optional[pulumi.Input[str]] = None,
286
200
  status: Optional[pulumi.Input[str]] = None):
287
201
  """
288
202
  Input properties used for looking up and filtering RegistryEnterpriseInstance resources.
289
- :param pulumi.Input[str] create_time: The creation time of the resource
290
- :param pulumi.Input[str] created_time: . Field 'created_time' has been deprecated from provider version 1.235.0. New field 'create_time' instead.
291
- :param pulumi.Input[str] custom_oss_bucket: Custom OSS Bucket name
292
- :param pulumi.Input[str] default_oss_bucket: Whether to use the default OSS Bucket
293
- :param pulumi.Input[str] end_time: Expiration Time
294
- :param pulumi.Input[str] image_scanner: Security scan engine
295
- :param pulumi.Input[str] instance_name: InstanceName
296
- :param pulumi.Input[str] instance_type: The Value configuration of the Group 1 attribute of Container Mirror Service Enterprise Edition. Valid values:
297
-
298
- Basic: Basic instance
299
-
300
- Standard: Standard instance
301
-
302
- Advanced: Advanced Edition Instance
203
+ :param pulumi.Input[str] created_time: Time of Container Registry Enterprise Edition instance creation.
204
+ :param pulumi.Input[str] custom_oss_bucket: Name of your customized oss bucket. Use this bucket as instance storage if set.
205
+ :param pulumi.Input[str] end_time: Time of Container Registry Enterprise Edition instance expiration.
206
+ :param pulumi.Input[str] instance_name: Name of Container Registry Enterprise Edition instance.
207
+ :param pulumi.Input[str] instance_type: Type of Container Registry Enterprise Edition instance. Valid values: `Basic`, `Standard`, `Advanced`. **NOTE:** International Account doesn't supports `Standard`.
303
208
  :param pulumi.Input[str] kms_encrypted_password: An KMS encrypts password used to an instance. If the `password` is filled in, this field will be ignored.
304
209
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] kms_encryption_context: An KMS encryption context used to decrypt `kms_encrypted_password` before creating or updating instance with `kms_encrypted_password`. See [Encryption Context](https://www.alibabacloud.com/help/doc-detail/42975.htm). It is valid when `kms_encrypted_password` is set.
305
- :param pulumi.Input[str] password: Permanent access credentials of the instance
306
- :param pulumi.Input[str] payment_type: Payment type, value:
307
- - Subscription: Prepaid.
308
- :param pulumi.Input[int] period: Prepaid cycle. The unit is Monthly, please enter an integer multiple of 12 for annual paid products.
309
-
310
- > **NOTE:** must be set when creating a prepaid instance.
311
- :param pulumi.Input[str] region_id: RegionId
312
- :param pulumi.Input[int] renew_period: Automatic renewal cycle, in months.
313
-
314
- > **NOTE:** When `RenewalStatus` is set to `AutoRenewal`, it must be set.
315
- :param pulumi.Input[str] renewal_status: Automatic renewal status, value:
316
- - AutoRenewal: automatic renewal.
317
- - ManualRenewal: manual renewal.
318
-
319
- Default ManualRenewal.
320
- :param pulumi.Input[str] resource_group_id: The ID of the resource group
321
-
322
- The following arguments will be discarded. Please use new fields as soon as possible:
323
- :param pulumi.Input[str] status: Instance Status
324
- """
325
- if create_time is not None:
326
- pulumi.set(__self__, "create_time", create_time)
327
- if created_time is not None:
328
- warnings.warn("""Field 'created_time' has been deprecated since provider version 1.235.0. New field 'create_time' instead.""", DeprecationWarning)
329
- pulumi.log.warn("""created_time is deprecated: Field 'created_time' has been deprecated since provider version 1.235.0. New field 'create_time' instead.""")
210
+ :param pulumi.Input[str] password: The password of the Instance. The password is a string of 8 to 30 characters and must contain uppercase letters, lowercase letters, and numbers.
211
+ :param pulumi.Input[str] payment_type: Subscription of Container Registry Enterprise Edition instance. Default value: `Subscription`. Valid values: `Subscription`.
212
+ :param pulumi.Input[int] period: Service time of Container Registry Enterprise Edition instance. Default value: `12`. Valid values: `1`, `2`, `3`, `6`, `12`, `24`, `36`, `48`, `60`. Unit: `month`.
213
+ :param pulumi.Input[int] renew_period: Renewal period of Container Registry Enterprise Edition instance. Unit: `month`.
214
+ :param pulumi.Input[str] renewal_status: Renewal status of Container Registry Enterprise Edition instance. Valid values: `AutoRenewal`, `ManualRenewal`.
215
+ :param pulumi.Input[str] status: Status of Container Registry Enterprise Edition instance.
216
+ """
330
217
  if created_time is not None:
331
218
  pulumi.set(__self__, "created_time", created_time)
332
219
  if custom_oss_bucket is not None:
333
220
  pulumi.set(__self__, "custom_oss_bucket", custom_oss_bucket)
334
- if default_oss_bucket is not None:
335
- pulumi.set(__self__, "default_oss_bucket", default_oss_bucket)
336
221
  if end_time is not None:
337
222
  pulumi.set(__self__, "end_time", end_time)
338
- if image_scanner is not None:
339
- pulumi.set(__self__, "image_scanner", image_scanner)
340
223
  if instance_name is not None:
341
224
  pulumi.set(__self__, "instance_name", instance_name)
342
225
  if instance_type is not None:
@@ -351,35 +234,18 @@ class _RegistryEnterpriseInstanceState:
351
234
  pulumi.set(__self__, "payment_type", payment_type)
352
235
  if period is not None:
353
236
  pulumi.set(__self__, "period", period)
354
- if region_id is not None:
355
- pulumi.set(__self__, "region_id", region_id)
356
237
  if renew_period is not None:
357
238
  pulumi.set(__self__, "renew_period", renew_period)
358
239
  if renewal_status is not None:
359
240
  pulumi.set(__self__, "renewal_status", renewal_status)
360
- if resource_group_id is not None:
361
- pulumi.set(__self__, "resource_group_id", resource_group_id)
362
241
  if status is not None:
363
242
  pulumi.set(__self__, "status", status)
364
243
 
365
- @property
366
- @pulumi.getter(name="createTime")
367
- def create_time(self) -> Optional[pulumi.Input[str]]:
368
- """
369
- The creation time of the resource
370
- """
371
- return pulumi.get(self, "create_time")
372
-
373
- @create_time.setter
374
- def create_time(self, value: Optional[pulumi.Input[str]]):
375
- pulumi.set(self, "create_time", value)
376
-
377
244
  @property
378
245
  @pulumi.getter(name="createdTime")
379
- @_utilities.deprecated("""Field 'created_time' has been deprecated since provider version 1.235.0. New field 'create_time' instead.""")
380
246
  def created_time(self) -> Optional[pulumi.Input[str]]:
381
247
  """
382
- . Field 'created_time' has been deprecated from provider version 1.235.0. New field 'create_time' instead.
248
+ Time of Container Registry Enterprise Edition instance creation.
383
249
  """
384
250
  return pulumi.get(self, "created_time")
385
251
 
@@ -391,7 +257,7 @@ class _RegistryEnterpriseInstanceState:
391
257
  @pulumi.getter(name="customOssBucket")
392
258
  def custom_oss_bucket(self) -> Optional[pulumi.Input[str]]:
393
259
  """
394
- Custom OSS Bucket name
260
+ Name of your customized oss bucket. Use this bucket as instance storage if set.
395
261
  """
396
262
  return pulumi.get(self, "custom_oss_bucket")
397
263
 
@@ -399,23 +265,11 @@ class _RegistryEnterpriseInstanceState:
399
265
  def custom_oss_bucket(self, value: Optional[pulumi.Input[str]]):
400
266
  pulumi.set(self, "custom_oss_bucket", value)
401
267
 
402
- @property
403
- @pulumi.getter(name="defaultOssBucket")
404
- def default_oss_bucket(self) -> Optional[pulumi.Input[str]]:
405
- """
406
- Whether to use the default OSS Bucket
407
- """
408
- return pulumi.get(self, "default_oss_bucket")
409
-
410
- @default_oss_bucket.setter
411
- def default_oss_bucket(self, value: Optional[pulumi.Input[str]]):
412
- pulumi.set(self, "default_oss_bucket", value)
413
-
414
268
  @property
415
269
  @pulumi.getter(name="endTime")
416
270
  def end_time(self) -> Optional[pulumi.Input[str]]:
417
271
  """
418
- Expiration Time
272
+ Time of Container Registry Enterprise Edition instance expiration.
419
273
  """
420
274
  return pulumi.get(self, "end_time")
421
275
 
@@ -423,23 +277,11 @@ class _RegistryEnterpriseInstanceState:
423
277
  def end_time(self, value: Optional[pulumi.Input[str]]):
424
278
  pulumi.set(self, "end_time", value)
425
279
 
426
- @property
427
- @pulumi.getter(name="imageScanner")
428
- def image_scanner(self) -> Optional[pulumi.Input[str]]:
429
- """
430
- Security scan engine
431
- """
432
- return pulumi.get(self, "image_scanner")
433
-
434
- @image_scanner.setter
435
- def image_scanner(self, value: Optional[pulumi.Input[str]]):
436
- pulumi.set(self, "image_scanner", value)
437
-
438
280
  @property
439
281
  @pulumi.getter(name="instanceName")
440
282
  def instance_name(self) -> Optional[pulumi.Input[str]]:
441
283
  """
442
- InstanceName
284
+ Name of Container Registry Enterprise Edition instance.
443
285
  """
444
286
  return pulumi.get(self, "instance_name")
445
287
 
@@ -451,13 +293,7 @@ class _RegistryEnterpriseInstanceState:
451
293
  @pulumi.getter(name="instanceType")
452
294
  def instance_type(self) -> Optional[pulumi.Input[str]]:
453
295
  """
454
- The Value configuration of the Group 1 attribute of Container Mirror Service Enterprise Edition. Valid values:
455
-
456
- Basic: Basic instance
457
-
458
- Standard: Standard instance
459
-
460
- Advanced: Advanced Edition Instance
296
+ Type of Container Registry Enterprise Edition instance. Valid values: `Basic`, `Standard`, `Advanced`. **NOTE:** International Account doesn't supports `Standard`.
461
297
  """
462
298
  return pulumi.get(self, "instance_type")
463
299
 
@@ -493,7 +329,7 @@ class _RegistryEnterpriseInstanceState:
493
329
  @pulumi.getter
494
330
  def password(self) -> Optional[pulumi.Input[str]]:
495
331
  """
496
- Permanent access credentials of the instance
332
+ The password of the Instance. The password is a string of 8 to 30 characters and must contain uppercase letters, lowercase letters, and numbers.
497
333
  """
498
334
  return pulumi.get(self, "password")
499
335
 
@@ -505,8 +341,7 @@ class _RegistryEnterpriseInstanceState:
505
341
  @pulumi.getter(name="paymentType")
506
342
  def payment_type(self) -> Optional[pulumi.Input[str]]:
507
343
  """
508
- Payment type, value:
509
- - Subscription: Prepaid.
344
+ Subscription of Container Registry Enterprise Edition instance. Default value: `Subscription`. Valid values: `Subscription`.
510
345
  """
511
346
  return pulumi.get(self, "payment_type")
512
347
 
@@ -518,9 +353,7 @@ class _RegistryEnterpriseInstanceState:
518
353
  @pulumi.getter
519
354
  def period(self) -> Optional[pulumi.Input[int]]:
520
355
  """
521
- Prepaid cycle. The unit is Monthly, please enter an integer multiple of 12 for annual paid products.
522
-
523
- > **NOTE:** must be set when creating a prepaid instance.
356
+ Service time of Container Registry Enterprise Edition instance. Default value: `12`. Valid values: `1`, `2`, `3`, `6`, `12`, `24`, `36`, `48`, `60`. Unit: `month`.
524
357
  """
525
358
  return pulumi.get(self, "period")
526
359
 
@@ -528,25 +361,11 @@ class _RegistryEnterpriseInstanceState:
528
361
  def period(self, value: Optional[pulumi.Input[int]]):
529
362
  pulumi.set(self, "period", value)
530
363
 
531
- @property
532
- @pulumi.getter(name="regionId")
533
- def region_id(self) -> Optional[pulumi.Input[str]]:
534
- """
535
- RegionId
536
- """
537
- return pulumi.get(self, "region_id")
538
-
539
- @region_id.setter
540
- def region_id(self, value: Optional[pulumi.Input[str]]):
541
- pulumi.set(self, "region_id", value)
542
-
543
364
  @property
544
365
  @pulumi.getter(name="renewPeriod")
545
366
  def renew_period(self) -> Optional[pulumi.Input[int]]:
546
367
  """
547
- Automatic renewal cycle, in months.
548
-
549
- > **NOTE:** When `RenewalStatus` is set to `AutoRenewal`, it must be set.
368
+ Renewal period of Container Registry Enterprise Edition instance. Unit: `month`.
550
369
  """
551
370
  return pulumi.get(self, "renew_period")
552
371
 
@@ -558,11 +377,7 @@ class _RegistryEnterpriseInstanceState:
558
377
  @pulumi.getter(name="renewalStatus")
559
378
  def renewal_status(self) -> Optional[pulumi.Input[str]]:
560
379
  """
561
- Automatic renewal status, value:
562
- - AutoRenewal: automatic renewal.
563
- - ManualRenewal: manual renewal.
564
-
565
- Default ManualRenewal.
380
+ Renewal status of Container Registry Enterprise Edition instance. Valid values: `AutoRenewal`, `ManualRenewal`.
566
381
  """
567
382
  return pulumi.get(self, "renewal_status")
568
383
 
@@ -570,25 +385,11 @@ class _RegistryEnterpriseInstanceState:
570
385
  def renewal_status(self, value: Optional[pulumi.Input[str]]):
571
386
  pulumi.set(self, "renewal_status", value)
572
387
 
573
- @property
574
- @pulumi.getter(name="resourceGroupId")
575
- def resource_group_id(self) -> Optional[pulumi.Input[str]]:
576
- """
577
- The ID of the resource group
578
-
579
- The following arguments will be discarded. Please use new fields as soon as possible:
580
- """
581
- return pulumi.get(self, "resource_group_id")
582
-
583
- @resource_group_id.setter
584
- def resource_group_id(self, value: Optional[pulumi.Input[str]]):
585
- pulumi.set(self, "resource_group_id", value)
586
-
587
388
  @property
588
389
  @pulumi.getter
589
390
  def status(self) -> Optional[pulumi.Input[str]]:
590
391
  """
591
- Instance Status
392
+ Status of Container Registry Enterprise Edition instance.
592
393
  """
593
394
  return pulumi.get(self, "status")
594
395
 
@@ -603,8 +404,6 @@ class RegistryEnterpriseInstance(pulumi.CustomResource):
603
404
  resource_name: str,
604
405
  opts: Optional[pulumi.ResourceOptions] = None,
605
406
  custom_oss_bucket: Optional[pulumi.Input[str]] = None,
606
- default_oss_bucket: Optional[pulumi.Input[str]] = None,
607
- image_scanner: Optional[pulumi.Input[str]] = None,
608
407
  instance_name: Optional[pulumi.Input[str]] = None,
609
408
  instance_type: Optional[pulumi.Input[str]] = None,
610
409
  kms_encrypted_password: Optional[pulumi.Input[str]] = None,
@@ -614,80 +413,28 @@ class RegistryEnterpriseInstance(pulumi.CustomResource):
614
413
  period: Optional[pulumi.Input[int]] = None,
615
414
  renew_period: Optional[pulumi.Input[int]] = None,
616
415
  renewal_status: Optional[pulumi.Input[str]] = None,
617
- resource_group_id: Optional[pulumi.Input[str]] = None,
618
416
  __props__=None):
619
417
  """
620
- Provides a CR Instance resource.
621
-
622
- For information about Container Registry Enterprise Edition instances and how to use it, see [Create a Instance](https://www.alibabacloud.com/help/en/doc-detail/208144.htm)
623
-
624
- > **NOTE:** Available since v1.124.0.
625
-
626
- ## Example Usage
627
-
628
- Basic Usage
629
-
630
- ```python
631
- import pulumi
632
- import pulumi_alicloud as alicloud
633
- import pulumi_random as random
634
-
635
- config = pulumi.Config()
636
- name = config.get("name")
637
- if name is None:
638
- name = "terraform-example"
639
- default = random.index.Integer("default",
640
- min=10000000,
641
- max=99999999)
642
- default_registry_enterprise_instance = alicloud.cr.RegistryEnterpriseInstance("default",
643
- payment_type="Subscription",
644
- period=1,
645
- renew_period=0,
646
- renewal_status="ManualRenewal",
647
- instance_type="Advanced",
648
- instance_name=f"{name}-{default['result']}")
649
- ```
650
-
651
418
  ## Import
652
419
 
653
- CR Instance can be imported using the id, e.g.
420
+ Container Registry Enterprise Edition instance can be imported using the `id`, e.g.
654
421
 
655
422
  ```sh
656
- $ pulumi import alicloud:cr/registryEnterpriseInstance:RegistryEnterpriseInstance example <id>
423
+ $ pulumi import alicloud:cr/registryEnterpriseInstance:RegistryEnterpriseInstance default cri-test
657
424
  ```
658
425
 
659
426
  :param str resource_name: The name of the resource.
660
427
  :param pulumi.ResourceOptions opts: Options for the resource.
661
- :param pulumi.Input[str] custom_oss_bucket: Custom OSS Bucket name
662
- :param pulumi.Input[str] default_oss_bucket: Whether to use the default OSS Bucket
663
- :param pulumi.Input[str] image_scanner: Security scan engine
664
- :param pulumi.Input[str] instance_name: InstanceName
665
- :param pulumi.Input[str] instance_type: The Value configuration of the Group 1 attribute of Container Mirror Service Enterprise Edition. Valid values:
666
-
667
- Basic: Basic instance
668
-
669
- Standard: Standard instance
670
-
671
- Advanced: Advanced Edition Instance
428
+ :param pulumi.Input[str] custom_oss_bucket: Name of your customized oss bucket. Use this bucket as instance storage if set.
429
+ :param pulumi.Input[str] instance_name: Name of Container Registry Enterprise Edition instance.
430
+ :param pulumi.Input[str] instance_type: Type of Container Registry Enterprise Edition instance. Valid values: `Basic`, `Standard`, `Advanced`. **NOTE:** International Account doesn't supports `Standard`.
672
431
  :param pulumi.Input[str] kms_encrypted_password: An KMS encrypts password used to an instance. If the `password` is filled in, this field will be ignored.
673
432
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] kms_encryption_context: An KMS encryption context used to decrypt `kms_encrypted_password` before creating or updating instance with `kms_encrypted_password`. See [Encryption Context](https://www.alibabacloud.com/help/doc-detail/42975.htm). It is valid when `kms_encrypted_password` is set.
674
- :param pulumi.Input[str] password: Permanent access credentials of the instance
675
- :param pulumi.Input[str] payment_type: Payment type, value:
676
- - Subscription: Prepaid.
677
- :param pulumi.Input[int] period: Prepaid cycle. The unit is Monthly, please enter an integer multiple of 12 for annual paid products.
678
-
679
- > **NOTE:** must be set when creating a prepaid instance.
680
- :param pulumi.Input[int] renew_period: Automatic renewal cycle, in months.
681
-
682
- > **NOTE:** When `RenewalStatus` is set to `AutoRenewal`, it must be set.
683
- :param pulumi.Input[str] renewal_status: Automatic renewal status, value:
684
- - AutoRenewal: automatic renewal.
685
- - ManualRenewal: manual renewal.
686
-
687
- Default ManualRenewal.
688
- :param pulumi.Input[str] resource_group_id: The ID of the resource group
689
-
690
- The following arguments will be discarded. Please use new fields as soon as possible:
433
+ :param pulumi.Input[str] password: The password of the Instance. The password is a string of 8 to 30 characters and must contain uppercase letters, lowercase letters, and numbers.
434
+ :param pulumi.Input[str] payment_type: Subscription of Container Registry Enterprise Edition instance. Default value: `Subscription`. Valid values: `Subscription`.
435
+ :param pulumi.Input[int] period: Service time of Container Registry Enterprise Edition instance. Default value: `12`. Valid values: `1`, `2`, `3`, `6`, `12`, `24`, `36`, `48`, `60`. Unit: `month`.
436
+ :param pulumi.Input[int] renew_period: Renewal period of Container Registry Enterprise Edition instance. Unit: `month`.
437
+ :param pulumi.Input[str] renewal_status: Renewal status of Container Registry Enterprise Edition instance. Valid values: `AutoRenewal`, `ManualRenewal`.
691
438
  """
692
439
  ...
693
440
  @overload
@@ -696,43 +443,12 @@ class RegistryEnterpriseInstance(pulumi.CustomResource):
696
443
  args: RegistryEnterpriseInstanceArgs,
697
444
  opts: Optional[pulumi.ResourceOptions] = None):
698
445
  """
699
- Provides a CR Instance resource.
700
-
701
- For information about Container Registry Enterprise Edition instances and how to use it, see [Create a Instance](https://www.alibabacloud.com/help/en/doc-detail/208144.htm)
702
-
703
- > **NOTE:** Available since v1.124.0.
704
-
705
- ## Example Usage
706
-
707
- Basic Usage
708
-
709
- ```python
710
- import pulumi
711
- import pulumi_alicloud as alicloud
712
- import pulumi_random as random
713
-
714
- config = pulumi.Config()
715
- name = config.get("name")
716
- if name is None:
717
- name = "terraform-example"
718
- default = random.index.Integer("default",
719
- min=10000000,
720
- max=99999999)
721
- default_registry_enterprise_instance = alicloud.cr.RegistryEnterpriseInstance("default",
722
- payment_type="Subscription",
723
- period=1,
724
- renew_period=0,
725
- renewal_status="ManualRenewal",
726
- instance_type="Advanced",
727
- instance_name=f"{name}-{default['result']}")
728
- ```
729
-
730
446
  ## Import
731
447
 
732
- CR Instance can be imported using the id, e.g.
448
+ Container Registry Enterprise Edition instance can be imported using the `id`, e.g.
733
449
 
734
450
  ```sh
735
- $ pulumi import alicloud:cr/registryEnterpriseInstance:RegistryEnterpriseInstance example <id>
451
+ $ pulumi import alicloud:cr/registryEnterpriseInstance:RegistryEnterpriseInstance default cri-test
736
452
  ```
737
453
 
738
454
  :param str resource_name: The name of the resource.
@@ -751,8 +467,6 @@ class RegistryEnterpriseInstance(pulumi.CustomResource):
751
467
  resource_name: str,
752
468
  opts: Optional[pulumi.ResourceOptions] = None,
753
469
  custom_oss_bucket: Optional[pulumi.Input[str]] = None,
754
- default_oss_bucket: Optional[pulumi.Input[str]] = None,
755
- image_scanner: Optional[pulumi.Input[str]] = None,
756
470
  instance_name: Optional[pulumi.Input[str]] = None,
757
471
  instance_type: Optional[pulumi.Input[str]] = None,
758
472
  kms_encrypted_password: Optional[pulumi.Input[str]] = None,
@@ -762,7 +476,6 @@ class RegistryEnterpriseInstance(pulumi.CustomResource):
762
476
  period: Optional[pulumi.Input[int]] = None,
763
477
  renew_period: Optional[pulumi.Input[int]] = None,
764
478
  renewal_status: Optional[pulumi.Input[str]] = None,
765
- resource_group_id: Optional[pulumi.Input[str]] = None,
766
479
  __props__=None):
767
480
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
768
481
  if not isinstance(opts, pulumi.ResourceOptions):
@@ -773,8 +486,6 @@ class RegistryEnterpriseInstance(pulumi.CustomResource):
773
486
  __props__ = RegistryEnterpriseInstanceArgs.__new__(RegistryEnterpriseInstanceArgs)
774
487
 
775
488
  __props__.__dict__["custom_oss_bucket"] = custom_oss_bucket
776
- __props__.__dict__["default_oss_bucket"] = default_oss_bucket
777
- __props__.__dict__["image_scanner"] = image_scanner
778
489
  if instance_name is None and not opts.urn:
779
490
  raise TypeError("Missing required property 'instance_name'")
780
491
  __props__.__dict__["instance_name"] = instance_name
@@ -784,17 +495,12 @@ class RegistryEnterpriseInstance(pulumi.CustomResource):
784
495
  __props__.__dict__["kms_encrypted_password"] = kms_encrypted_password
785
496
  __props__.__dict__["kms_encryption_context"] = kms_encryption_context
786
497
  __props__.__dict__["password"] = None if password is None else pulumi.Output.secret(password)
787
- if payment_type is None and not opts.urn:
788
- raise TypeError("Missing required property 'payment_type'")
789
498
  __props__.__dict__["payment_type"] = payment_type
790
499
  __props__.__dict__["period"] = period
791
500
  __props__.__dict__["renew_period"] = renew_period
792
501
  __props__.__dict__["renewal_status"] = renewal_status
793
- __props__.__dict__["resource_group_id"] = resource_group_id
794
- __props__.__dict__["create_time"] = None
795
502
  __props__.__dict__["created_time"] = None
796
503
  __props__.__dict__["end_time"] = None
797
- __props__.__dict__["region_id"] = None
798
504
  __props__.__dict__["status"] = None
799
505
  secret_opts = pulumi.ResourceOptions(additional_secret_outputs=["password"])
800
506
  opts = pulumi.ResourceOptions.merge(opts, secret_opts)
@@ -808,12 +514,9 @@ class RegistryEnterpriseInstance(pulumi.CustomResource):
808
514
  def get(resource_name: str,
809
515
  id: pulumi.Input[str],
810
516
  opts: Optional[pulumi.ResourceOptions] = None,
811
- create_time: Optional[pulumi.Input[str]] = None,
812
517
  created_time: Optional[pulumi.Input[str]] = None,
813
518
  custom_oss_bucket: Optional[pulumi.Input[str]] = None,
814
- default_oss_bucket: Optional[pulumi.Input[str]] = None,
815
519
  end_time: Optional[pulumi.Input[str]] = None,
816
- image_scanner: Optional[pulumi.Input[str]] = None,
817
520
  instance_name: Optional[pulumi.Input[str]] = None,
818
521
  instance_type: Optional[pulumi.Input[str]] = None,
819
522
  kms_encrypted_password: Optional[pulumi.Input[str]] = None,
@@ -821,10 +524,8 @@ class RegistryEnterpriseInstance(pulumi.CustomResource):
821
524
  password: Optional[pulumi.Input[str]] = None,
822
525
  payment_type: Optional[pulumi.Input[str]] = None,
823
526
  period: Optional[pulumi.Input[int]] = None,
824
- region_id: Optional[pulumi.Input[str]] = None,
825
527
  renew_period: Optional[pulumi.Input[int]] = None,
826
528
  renewal_status: Optional[pulumi.Input[str]] = None,
827
- resource_group_id: Optional[pulumi.Input[str]] = None,
828
529
  status: Optional[pulumi.Input[str]] = None) -> 'RegistryEnterpriseInstance':
829
530
  """
830
531
  Get an existing RegistryEnterpriseInstance resource's state with the given name, id, and optional extra
@@ -833,52 +534,27 @@ class RegistryEnterpriseInstance(pulumi.CustomResource):
833
534
  :param str resource_name: The unique name of the resulting resource.
834
535
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
835
536
  :param pulumi.ResourceOptions opts: Options for the resource.
836
- :param pulumi.Input[str] create_time: The creation time of the resource
837
- :param pulumi.Input[str] created_time: . Field 'created_time' has been deprecated from provider version 1.235.0. New field 'create_time' instead.
838
- :param pulumi.Input[str] custom_oss_bucket: Custom OSS Bucket name
839
- :param pulumi.Input[str] default_oss_bucket: Whether to use the default OSS Bucket
840
- :param pulumi.Input[str] end_time: Expiration Time
841
- :param pulumi.Input[str] image_scanner: Security scan engine
842
- :param pulumi.Input[str] instance_name: InstanceName
843
- :param pulumi.Input[str] instance_type: The Value configuration of the Group 1 attribute of Container Mirror Service Enterprise Edition. Valid values:
844
-
845
- Basic: Basic instance
846
-
847
- Standard: Standard instance
848
-
849
- Advanced: Advanced Edition Instance
537
+ :param pulumi.Input[str] created_time: Time of Container Registry Enterprise Edition instance creation.
538
+ :param pulumi.Input[str] custom_oss_bucket: Name of your customized oss bucket. Use this bucket as instance storage if set.
539
+ :param pulumi.Input[str] end_time: Time of Container Registry Enterprise Edition instance expiration.
540
+ :param pulumi.Input[str] instance_name: Name of Container Registry Enterprise Edition instance.
541
+ :param pulumi.Input[str] instance_type: Type of Container Registry Enterprise Edition instance. Valid values: `Basic`, `Standard`, `Advanced`. **NOTE:** International Account doesn't supports `Standard`.
850
542
  :param pulumi.Input[str] kms_encrypted_password: An KMS encrypts password used to an instance. If the `password` is filled in, this field will be ignored.
851
543
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] kms_encryption_context: An KMS encryption context used to decrypt `kms_encrypted_password` before creating or updating instance with `kms_encrypted_password`. See [Encryption Context](https://www.alibabacloud.com/help/doc-detail/42975.htm). It is valid when `kms_encrypted_password` is set.
852
- :param pulumi.Input[str] password: Permanent access credentials of the instance
853
- :param pulumi.Input[str] payment_type: Payment type, value:
854
- - Subscription: Prepaid.
855
- :param pulumi.Input[int] period: Prepaid cycle. The unit is Monthly, please enter an integer multiple of 12 for annual paid products.
856
-
857
- > **NOTE:** must be set when creating a prepaid instance.
858
- :param pulumi.Input[str] region_id: RegionId
859
- :param pulumi.Input[int] renew_period: Automatic renewal cycle, in months.
860
-
861
- > **NOTE:** When `RenewalStatus` is set to `AutoRenewal`, it must be set.
862
- :param pulumi.Input[str] renewal_status: Automatic renewal status, value:
863
- - AutoRenewal: automatic renewal.
864
- - ManualRenewal: manual renewal.
865
-
866
- Default ManualRenewal.
867
- :param pulumi.Input[str] resource_group_id: The ID of the resource group
868
-
869
- The following arguments will be discarded. Please use new fields as soon as possible:
870
- :param pulumi.Input[str] status: Instance Status
544
+ :param pulumi.Input[str] password: The password of the Instance. The password is a string of 8 to 30 characters and must contain uppercase letters, lowercase letters, and numbers.
545
+ :param pulumi.Input[str] payment_type: Subscription of Container Registry Enterprise Edition instance. Default value: `Subscription`. Valid values: `Subscription`.
546
+ :param pulumi.Input[int] period: Service time of Container Registry Enterprise Edition instance. Default value: `12`. Valid values: `1`, `2`, `3`, `6`, `12`, `24`, `36`, `48`, `60`. Unit: `month`.
547
+ :param pulumi.Input[int] renew_period: Renewal period of Container Registry Enterprise Edition instance. Unit: `month`.
548
+ :param pulumi.Input[str] renewal_status: Renewal status of Container Registry Enterprise Edition instance. Valid values: `AutoRenewal`, `ManualRenewal`.
549
+ :param pulumi.Input[str] status: Status of Container Registry Enterprise Edition instance.
871
550
  """
872
551
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
873
552
 
874
553
  __props__ = _RegistryEnterpriseInstanceState.__new__(_RegistryEnterpriseInstanceState)
875
554
 
876
- __props__.__dict__["create_time"] = create_time
877
555
  __props__.__dict__["created_time"] = created_time
878
556
  __props__.__dict__["custom_oss_bucket"] = custom_oss_bucket
879
- __props__.__dict__["default_oss_bucket"] = default_oss_bucket
880
557
  __props__.__dict__["end_time"] = end_time
881
- __props__.__dict__["image_scanner"] = image_scanner
882
558
  __props__.__dict__["instance_name"] = instance_name
883
559
  __props__.__dict__["instance_type"] = instance_type
884
560
  __props__.__dict__["kms_encrypted_password"] = kms_encrypted_password
@@ -886,27 +562,16 @@ class RegistryEnterpriseInstance(pulumi.CustomResource):
886
562
  __props__.__dict__["password"] = password
887
563
  __props__.__dict__["payment_type"] = payment_type
888
564
  __props__.__dict__["period"] = period
889
- __props__.__dict__["region_id"] = region_id
890
565
  __props__.__dict__["renew_period"] = renew_period
891
566
  __props__.__dict__["renewal_status"] = renewal_status
892
- __props__.__dict__["resource_group_id"] = resource_group_id
893
567
  __props__.__dict__["status"] = status
894
568
  return RegistryEnterpriseInstance(resource_name, opts=opts, __props__=__props__)
895
569
 
896
- @property
897
- @pulumi.getter(name="createTime")
898
- def create_time(self) -> pulumi.Output[str]:
899
- """
900
- The creation time of the resource
901
- """
902
- return pulumi.get(self, "create_time")
903
-
904
570
  @property
905
571
  @pulumi.getter(name="createdTime")
906
- @_utilities.deprecated("""Field 'created_time' has been deprecated since provider version 1.235.0. New field 'create_time' instead.""")
907
572
  def created_time(self) -> pulumi.Output[str]:
908
573
  """
909
- . Field 'created_time' has been deprecated from provider version 1.235.0. New field 'create_time' instead.
574
+ Time of Container Registry Enterprise Edition instance creation.
910
575
  """
911
576
  return pulumi.get(self, "created_time")
912
577
 
@@ -914,39 +579,23 @@ class RegistryEnterpriseInstance(pulumi.CustomResource):
914
579
  @pulumi.getter(name="customOssBucket")
915
580
  def custom_oss_bucket(self) -> pulumi.Output[Optional[str]]:
916
581
  """
917
- Custom OSS Bucket name
582
+ Name of your customized oss bucket. Use this bucket as instance storage if set.
918
583
  """
919
584
  return pulumi.get(self, "custom_oss_bucket")
920
585
 
921
- @property
922
- @pulumi.getter(name="defaultOssBucket")
923
- def default_oss_bucket(self) -> pulumi.Output[Optional[str]]:
924
- """
925
- Whether to use the default OSS Bucket
926
- """
927
- return pulumi.get(self, "default_oss_bucket")
928
-
929
586
  @property
930
587
  @pulumi.getter(name="endTime")
931
588
  def end_time(self) -> pulumi.Output[str]:
932
589
  """
933
- Expiration Time
590
+ Time of Container Registry Enterprise Edition instance expiration.
934
591
  """
935
592
  return pulumi.get(self, "end_time")
936
593
 
937
- @property
938
- @pulumi.getter(name="imageScanner")
939
- def image_scanner(self) -> pulumi.Output[Optional[str]]:
940
- """
941
- Security scan engine
942
- """
943
- return pulumi.get(self, "image_scanner")
944
-
945
594
  @property
946
595
  @pulumi.getter(name="instanceName")
947
596
  def instance_name(self) -> pulumi.Output[str]:
948
597
  """
949
- InstanceName
598
+ Name of Container Registry Enterprise Edition instance.
950
599
  """
951
600
  return pulumi.get(self, "instance_name")
952
601
 
@@ -954,13 +603,7 @@ class RegistryEnterpriseInstance(pulumi.CustomResource):
954
603
  @pulumi.getter(name="instanceType")
955
604
  def instance_type(self) -> pulumi.Output[str]:
956
605
  """
957
- The Value configuration of the Group 1 attribute of Container Mirror Service Enterprise Edition. Valid values:
958
-
959
- Basic: Basic instance
960
-
961
- Standard: Standard instance
962
-
963
- Advanced: Advanced Edition Instance
606
+ Type of Container Registry Enterprise Edition instance. Valid values: `Basic`, `Standard`, `Advanced`. **NOTE:** International Account doesn't supports `Standard`.
964
607
  """
965
608
  return pulumi.get(self, "instance_type")
966
609
 
@@ -984,16 +627,15 @@ class RegistryEnterpriseInstance(pulumi.CustomResource):
984
627
  @pulumi.getter
985
628
  def password(self) -> pulumi.Output[Optional[str]]:
986
629
  """
987
- Permanent access credentials of the instance
630
+ The password of the Instance. The password is a string of 8 to 30 characters and must contain uppercase letters, lowercase letters, and numbers.
988
631
  """
989
632
  return pulumi.get(self, "password")
990
633
 
991
634
  @property
992
635
  @pulumi.getter(name="paymentType")
993
- def payment_type(self) -> pulumi.Output[str]:
636
+ def payment_type(self) -> pulumi.Output[Optional[str]]:
994
637
  """
995
- Payment type, value:
996
- - Subscription: Prepaid.
638
+ Subscription of Container Registry Enterprise Edition instance. Default value: `Subscription`. Valid values: `Subscription`.
997
639
  """
998
640
  return pulumi.get(self, "payment_type")
999
641
 
@@ -1001,57 +643,31 @@ class RegistryEnterpriseInstance(pulumi.CustomResource):
1001
643
  @pulumi.getter
1002
644
  def period(self) -> pulumi.Output[Optional[int]]:
1003
645
  """
1004
- Prepaid cycle. The unit is Monthly, please enter an integer multiple of 12 for annual paid products.
1005
-
1006
- > **NOTE:** must be set when creating a prepaid instance.
646
+ Service time of Container Registry Enterprise Edition instance. Default value: `12`. Valid values: `1`, `2`, `3`, `6`, `12`, `24`, `36`, `48`, `60`. Unit: `month`.
1007
647
  """
1008
648
  return pulumi.get(self, "period")
1009
649
 
1010
- @property
1011
- @pulumi.getter(name="regionId")
1012
- def region_id(self) -> pulumi.Output[str]:
1013
- """
1014
- RegionId
1015
- """
1016
- return pulumi.get(self, "region_id")
1017
-
1018
650
  @property
1019
651
  @pulumi.getter(name="renewPeriod")
1020
652
  def renew_period(self) -> pulumi.Output[Optional[int]]:
1021
653
  """
1022
- Automatic renewal cycle, in months.
1023
-
1024
- > **NOTE:** When `RenewalStatus` is set to `AutoRenewal`, it must be set.
654
+ Renewal period of Container Registry Enterprise Edition instance. Unit: `month`.
1025
655
  """
1026
656
  return pulumi.get(self, "renew_period")
1027
657
 
1028
658
  @property
1029
659
  @pulumi.getter(name="renewalStatus")
1030
- def renewal_status(self) -> pulumi.Output[str]:
660
+ def renewal_status(self) -> pulumi.Output[Optional[str]]:
1031
661
  """
1032
- Automatic renewal status, value:
1033
- - AutoRenewal: automatic renewal.
1034
- - ManualRenewal: manual renewal.
1035
-
1036
- Default ManualRenewal.
662
+ Renewal status of Container Registry Enterprise Edition instance. Valid values: `AutoRenewal`, `ManualRenewal`.
1037
663
  """
1038
664
  return pulumi.get(self, "renewal_status")
1039
665
 
1040
- @property
1041
- @pulumi.getter(name="resourceGroupId")
1042
- def resource_group_id(self) -> pulumi.Output[str]:
1043
- """
1044
- The ID of the resource group
1045
-
1046
- The following arguments will be discarded. Please use new fields as soon as possible:
1047
- """
1048
- return pulumi.get(self, "resource_group_id")
1049
-
1050
666
  @property
1051
667
  @pulumi.getter
1052
668
  def status(self) -> pulumi.Output[str]:
1053
669
  """
1054
- Instance Status
670
+ Status of Container Registry Enterprise Edition instance.
1055
671
  """
1056
672
  return pulumi.get(self, "status")
1057
673