pulumi-oci 3.3.0a1752697833__py3-none-any.whl → 3.3.0a1752726228__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_oci/containerengine/addon.py +1 -1
- pulumi_oci/containerengine/outputs.py +10 -9
- pulumi_oci/pulumi-plugin.json +1 -1
- {pulumi_oci-3.3.0a1752697833.dist-info → pulumi_oci-3.3.0a1752726228.dist-info}/METADATA +1 -1
- {pulumi_oci-3.3.0a1752697833.dist-info → pulumi_oci-3.3.0a1752726228.dist-info}/RECORD +7 -7
- {pulumi_oci-3.3.0a1752697833.dist-info → pulumi_oci-3.3.0a1752726228.dist-info}/WHEEL +0 -0
- {pulumi_oci-3.3.0a1752697833.dist-info → pulumi_oci-3.3.0a1752726228.dist-info}/top_level.txt +0 -0
@@ -540,7 +540,7 @@ class Addon(pulumi.CustomResource):
|
|
540
540
|
|
541
541
|
@property
|
542
542
|
@pulumi.getter
|
543
|
-
def version(self) -> pulumi.Output[builtins.str]:
|
543
|
+
def version(self) -> pulumi.Output[Optional[builtins.str]]:
|
544
544
|
"""
|
545
545
|
(Updatable) The version of addon to be installed.
|
546
546
|
|
@@ -4347,8 +4347,8 @@ class GetAddonsAddonResult(dict):
|
|
4347
4347
|
remove_addon_resources_on_delete: builtins.bool,
|
4348
4348
|
state: builtins.str,
|
4349
4349
|
time_created: builtins.str,
|
4350
|
-
|
4351
|
-
|
4350
|
+
override_existing: Optional[builtins.bool] = None,
|
4351
|
+
version: Optional[builtins.str] = None):
|
4352
4352
|
"""
|
4353
4353
|
:param Sequence['GetAddonsAddonAddonErrorArgs'] addon_errors: The error info of the addon.
|
4354
4354
|
:param builtins.str addon_name: The name of the addon.
|
@@ -4367,9 +4367,10 @@ class GetAddonsAddonResult(dict):
|
|
4367
4367
|
pulumi.set(__self__, "remove_addon_resources_on_delete", remove_addon_resources_on_delete)
|
4368
4368
|
pulumi.set(__self__, "state", state)
|
4369
4369
|
pulumi.set(__self__, "time_created", time_created)
|
4370
|
-
pulumi.set(__self__, "version", version)
|
4371
4370
|
if override_existing is not None:
|
4372
4371
|
pulumi.set(__self__, "override_existing", override_existing)
|
4372
|
+
if version is not None:
|
4373
|
+
pulumi.set(__self__, "version", version)
|
4373
4374
|
|
4374
4375
|
@property
|
4375
4376
|
@pulumi.getter(name="addonErrors")
|
@@ -4432,19 +4433,19 @@ class GetAddonsAddonResult(dict):
|
|
4432
4433
|
"""
|
4433
4434
|
return pulumi.get(self, "time_created")
|
4434
4435
|
|
4436
|
+
@property
|
4437
|
+
@pulumi.getter(name="overrideExisting")
|
4438
|
+
def override_existing(self) -> Optional[builtins.bool]:
|
4439
|
+
return pulumi.get(self, "override_existing")
|
4440
|
+
|
4435
4441
|
@property
|
4436
4442
|
@pulumi.getter
|
4437
|
-
def version(self) -> builtins.str:
|
4443
|
+
def version(self) -> Optional[builtins.str]:
|
4438
4444
|
"""
|
4439
4445
|
selected addon version, or null indicates autoUpdate
|
4440
4446
|
"""
|
4441
4447
|
return pulumi.get(self, "version")
|
4442
4448
|
|
4443
|
-
@property
|
4444
|
-
@pulumi.getter(name="overrideExisting")
|
4445
|
-
def override_existing(self) -> Optional[builtins.bool]:
|
4446
|
-
return pulumi.get(self, "override_existing")
|
4447
|
-
|
4448
4449
|
|
4449
4450
|
@pulumi.output_type
|
4450
4451
|
class GetAddonsAddonAddonErrorResult(dict):
|
pulumi_oci/pulumi-plugin.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
pulumi_oci/__init__.py,sha256=npCUCYo7KR4eznlj6sCdg5vYuD15IBVtN7oUI6TLcYY,191773
|
2
2
|
pulumi_oci/_utilities.py,sha256=66uLGQDI1oMFOI3Fe5igAphtexWhcSLDyuVW50jW3ik,10789
|
3
3
|
pulumi_oci/provider.py,sha256=0bfJPDKWIXVcBS2jXnPOfeMELjg9ppSJsIsbT4Ced-Y,27097
|
4
|
-
pulumi_oci/pulumi-plugin.json,sha256=
|
4
|
+
pulumi_oci/pulumi-plugin.json,sha256=Fs0XlzOEVDD8qXCH1PMFGVKJ3AtEKLTAcWYzbXzvQ-o,79
|
5
5
|
pulumi_oci/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
6
6
|
pulumi_oci/adm/__init__.py,sha256=Q51pU-my-diUjNMWhPJgRFhovj4XDVslfioqfKszgNo,1047
|
7
7
|
pulumi_oci/adm/_inputs.py,sha256=l12jeA-fX9-_o6pUMtQJUIF2Tl6es2dM0V2i6pPiehc,74338
|
@@ -445,7 +445,7 @@ pulumi_oci/config/__init__.pyi,sha256=wUuvahmIjaJUSuCXpRE1VsM1trq15kXjdJHAvMclCA
|
|
445
445
|
pulumi_oci/config/vars.py,sha256=EmWRD7q-7ACZY1wuV4hEIW38Cqy4KNrGSevj5SuPPtA,4469
|
446
446
|
pulumi_oci/containerengine/__init__.py,sha256=82__OCthHTle-NTEYEu7eDSHdDOLriOPUU92rnU-LUw,1330
|
447
447
|
pulumi_oci/containerengine/_inputs.py,sha256=QTaw9gYsv6I-yxMrExGUmMvAdsKrOHTmOg4n9OSh6iA,255234
|
448
|
-
pulumi_oci/containerengine/addon.py,sha256=
|
448
|
+
pulumi_oci/containerengine/addon.py,sha256=ZxCdjhxX1nqlEcMLU7kjEjYCVtUZL9ay_36AVrudATw,25612
|
449
449
|
pulumi_oci/containerengine/cluster.py,sha256=JhR5wJ_WWws-kH7mFWW39gfErOwrD_-M-OEiyHNxSD4,59506
|
450
450
|
pulumi_oci/containerengine/cluster_complete_credential_rotation_management.py,sha256=XfivIpzm6R3GN10dYHQtto2E5v6mvcqcoFHNJn9RVVw,9411
|
451
451
|
pulumi_oci/containerengine/cluster_start_credential_rotation_management.py,sha256=TeV50XmK2PBog17x9KveeORvafVjd5tNux7sb_AUnVA,12876
|
@@ -472,7 +472,7 @@ pulumi_oci/containerengine/get_work_request_errors.py,sha256=6jS-SvQN42b44p8-oNl
|
|
472
472
|
pulumi_oci/containerengine/get_work_request_log_entries.py,sha256=OKVMjBqaA6a4h5suSvompcRlixVqKf5sZNEmU10SYfs,7168
|
473
473
|
pulumi_oci/containerengine/get_work_requests.py,sha256=_CoONIUo-ZmiI6jujLF8MmCc3DcUnKuCxqx0-CRmYec,9838
|
474
474
|
pulumi_oci/containerengine/node_pool.py,sha256=4JpuyaGDx2iAC5gOCi5fTzsNwuBXrJYW6Jhev-XHbTg,81067
|
475
|
-
pulumi_oci/containerengine/outputs.py,sha256=
|
475
|
+
pulumi_oci/containerengine/outputs.py,sha256=g0lgHwZ1e3kOu5fsQu4GinnPLAk10riWAI3zRmmYMjc,412073
|
476
476
|
pulumi_oci/containerengine/virtual_node_pool.py,sha256=6hpTX0k-zmPs_uh5UfOkRAIlx4LRNAkL6xT3fO0bRK8,55782
|
477
477
|
pulumi_oci/containerinstances/__init__.py,sha256=VzfWoplTSsQ7JBeeNOgC6V7nq9m22k2n8_XILkp5v0Y,478
|
478
478
|
pulumi_oci/containerinstances/_inputs.py,sha256=up_Fc_Zo-2U9WCkLcEkKuF1PQXrBwnog8JCG9bMamQg,4013
|
@@ -3218,7 +3218,7 @@ pulumi_oci/zpr/get_zpr_policies.py,sha256=uUbCvTQoQjq22Qt_ALwWf0xeGd6eH2idVKNGty
|
|
3218
3218
|
pulumi_oci/zpr/get_zpr_policy.py,sha256=0V6Io7EfDUn9YaW1ChtBpeH8KmePoGqOZe5tAXUoG6Q,11616
|
3219
3219
|
pulumi_oci/zpr/outputs.py,sha256=fRmSFG5R8HLgVUhj7oOyZyMZy5jufe1_U9iqNVFaHVE,9319
|
3220
3220
|
pulumi_oci/zpr/zpr_policy.py,sha256=i4GgbtPrCmQHOH9O1g3Dgypo_1vYRic_gXHh5fkNJ-0,33682
|
3221
|
-
pulumi_oci-3.3.
|
3222
|
-
pulumi_oci-3.3.
|
3223
|
-
pulumi_oci-3.3.
|
3224
|
-
pulumi_oci-3.3.
|
3221
|
+
pulumi_oci-3.3.0a1752726228.dist-info/METADATA,sha256=m2PEeC7RkkXZlBxaN1MoKc5H7qQdvqt9lu5Inl_Bfps,4751
|
3222
|
+
pulumi_oci-3.3.0a1752726228.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
3223
|
+
pulumi_oci-3.3.0a1752726228.dist-info/top_level.txt,sha256=0k-nWr_IdDNVF3qcT4ALORmmu1SNCLxWZfHDMN7TWsg,11
|
3224
|
+
pulumi_oci-3.3.0a1752726228.dist-info/RECORD,,
|
File without changes
|
{pulumi_oci-3.3.0a1752697833.dist-info → pulumi_oci-3.3.0a1752726228.dist-info}/top_level.txt
RENAMED
File without changes
|