pulumi-oci 2.9.0a1724479778__py3-none-any.whl → 2.9.0a1724836493__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/__init__.py +86 -38
- pulumi_oci/announcementsservice/__init__.py +1 -0
- pulumi_oci/announcementsservice/_inputs.py +46 -6
- pulumi_oci/announcementsservice/announcement_subscription.py +14 -14
- pulumi_oci/announcementsservice/get_announcement_subscription.py +2 -2
- pulumi_oci/announcementsservice/get_services.py +173 -0
- pulumi_oci/announcementsservice/outputs.py +195 -18
- pulumi_oci/bigdataservice/_inputs.py +1 -49
- pulumi_oci/bigdataservice/bds_instance.py +0 -128
- pulumi_oci/bigdataservice/get_bds_instance.py +1 -31
- pulumi_oci/bigdataservice/outputs.py +3 -132
- pulumi_oci/database/_inputs.py +32 -0
- pulumi_oci/database/autonomous_database.py +28 -0
- pulumi_oci/database/data_guard_association.py +49 -0
- pulumi_oci/database/get_autonomous_database.py +14 -1
- pulumi_oci/database/get_autonomous_databases.py +32 -95
- pulumi_oci/database/get_data_guard_association.py +11 -1
- pulumi_oci/database/outputs.py +163 -42
- pulumi_oci/databasemanagement/__init__.py +1 -0
- pulumi_oci/databasemanagement/_inputs.py +873 -10
- pulumi_oci/databasemanagement/autonomous_database_autonomous_database_dbm_features_management.py +275 -0
- pulumi_oci/databasemanagement/database_dbm_features_management.py +37 -3
- pulumi_oci/databasemanagement/db_management_private_endpoint.py +49 -0
- pulumi_oci/databasemanagement/get_db_management_private_endpoint.py +14 -1
- pulumi_oci/databasemanagement/get_db_management_private_endpoints.py +21 -1
- pulumi_oci/databasemanagement/get_managed_database.py +47 -3
- pulumi_oci/databasemanagement/managed_database.py +56 -0
- pulumi_oci/databasemanagement/outputs.py +3331 -1397
- pulumi_oci/databasemanagement/pluggabledatabase_pluggable_database_dbm_features_management.py +35 -1
- pulumi_oci/datasafe/__init__.py +6 -0
- pulumi_oci/datasafe/_inputs.py +18 -0
- pulumi_oci/datasafe/database_security_config_management.py +244 -2
- pulumi_oci/datasafe/masking_policy_health_report_management.py +453 -0
- pulumi_oci/datasafe/masking_report_management.py +693 -0
- pulumi_oci/datasafe/outputs.py +18 -0
- pulumi_oci/datasafe/security_policy_deployment_management.py +180 -2
- pulumi_oci/datasafe/security_policy_management.py +172 -2
- pulumi_oci/datasafe/set_security_assessment_baseline_management.py +304 -0
- pulumi_oci/datasafe/set_user_assessment_baseline_management.py +304 -0
- pulumi_oci/datasafe/sql_firewall_policy_management.py +354 -2
- pulumi_oci/datasafe/unset_security_assessment_baseline_management.py +264 -0
- pulumi_oci/datasafe/unset_user_assessment_baseline_management.py +264 -0
- pulumi_oci/delegateaccesscontrol/__init__.py +24 -0
- pulumi_oci/delegateaccesscontrol/_inputs.py +306 -0
- pulumi_oci/delegateaccesscontrol/delegation_control.py +1082 -0
- pulumi_oci/{globallydistributeddatabase/private_endpoint.py → delegateaccesscontrol/delegation_subscription.py} +162 -267
- pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_request.py +535 -0
- pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_request_audit_log_report.py +174 -0
- pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_request_histories.py +133 -0
- pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_requests.py +250 -0
- pulumi_oci/delegateaccesscontrol/get_delegation_control.py +378 -0
- pulumi_oci/delegateaccesscontrol/get_delegation_control_resources.py +133 -0
- pulumi_oci/delegateaccesscontrol/get_delegation_controls.py +213 -0
- pulumi_oci/{globallydistributeddatabase/get_private_endpoint.py → delegateaccesscontrol/get_delegation_subscription.py} +66 -105
- pulumi_oci/delegateaccesscontrol/get_delegation_subscriptions.py +176 -0
- pulumi_oci/delegateaccesscontrol/get_service_provider.py +274 -0
- pulumi_oci/delegateaccesscontrol/get_service_provider_action.py +210 -0
- pulumi_oci/delegateaccesscontrol/get_service_provider_actions.py +210 -0
- pulumi_oci/delegateaccesscontrol/get_service_providers.py +213 -0
- pulumi_oci/delegateaccesscontrol/outputs.py +1679 -0
- pulumi_oci/{fleetsoftwareupdate → desktops}/__init__.py +7 -6
- pulumi_oci/desktops/_inputs.py +483 -0
- pulumi_oci/desktops/desktop_pool.py +1348 -0
- pulumi_oci/desktops/get_desktop.py +223 -0
- pulumi_oci/desktops/get_desktop_pool.py +418 -0
- pulumi_oci/desktops/get_desktop_pool_desktops.py +208 -0
- pulumi_oci/desktops/get_desktop_pool_volumes.py +214 -0
- pulumi_oci/desktops/get_desktop_pools.py +203 -0
- pulumi_oci/desktops/get_desktops.py +214 -0
- pulumi_oci/desktops/outputs.py +1738 -0
- pulumi_oci/filestorage/mount_target.py +143 -38
- pulumi_oci/filestorage/outputs.py +44 -0
- pulumi_oci/identity/domains_group.py +34 -0
- pulumi_oci/identity/domains_user.py +34 -0
- pulumi_oci/identity/get_domains_group.py +11 -1
- pulumi_oci/identity/get_domains_user.py +11 -1
- pulumi_oci/identity/outputs.py +14 -0
- pulumi_oci/kms/_inputs.py +10 -10
- pulumi_oci/kms/get_vault.py +14 -1
- pulumi_oci/kms/outputs.py +41 -30
- pulumi_oci/kms/vault.py +28 -0
- pulumi_oci/loadbalancer/load_balancer.py +224 -0
- pulumi_oci/loadbalancer/outputs.py +22 -0
- pulumi_oci/mysql/_inputs.py +23 -0
- pulumi_oci/mysql/get_mysql_db_system.py +15 -2
- pulumi_oci/mysql/mysql_db_system.py +53 -0
- pulumi_oci/mysql/outputs.py +74 -6
- pulumi_oci/ocvp/get_cluster.py +2 -2
- pulumi_oci/ocvp/get_exsi_hosts.py +2 -2
- pulumi_oci/ocvp/get_supported_vmware_software_versions.py +22 -5
- pulumi_oci/ocvp/outputs.py +2 -2
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/recoverymod/_inputs.py +0 -8
- pulumi_oci/recoverymod/get_protected_database.py +14 -1
- pulumi_oci/recoverymod/get_protection_policy.py +14 -1
- pulumi_oci/recoverymod/outputs.py +22 -8
- pulumi_oci/recoverymod/protected_database.py +80 -3
- pulumi_oci/recoverymod/protection_policy.py +49 -0
- pulumi_oci/waf/_inputs.py +29 -16
- pulumi_oci/waf/outputs.py +33 -10
- {pulumi_oci-2.9.0a1724479778.dist-info → pulumi_oci-2.9.0a1724836493.dist-info}/METADATA +1 -1
- {pulumi_oci-2.9.0a1724479778.dist-info → pulumi_oci-2.9.0a1724836493.dist-info}/RECORD +104 -86
- {pulumi_oci-2.9.0a1724479778.dist-info → pulumi_oci-2.9.0a1724836493.dist-info}/WHEEL +1 -1
- pulumi_oci/fleetsoftwareupdate/_inputs.py +0 -553
- pulumi_oci/fleetsoftwareupdate/fsu_collection.py +0 -514
- pulumi_oci/fleetsoftwareupdate/fsu_cycle.py +0 -812
- pulumi_oci/fleetsoftwareupdate/get_fsu_collection.py +0 -225
- pulumi_oci/fleetsoftwareupdate/get_fsu_collections.py +0 -141
- pulumi_oci/fleetsoftwareupdate/get_fsu_cycle.py +0 -325
- pulumi_oci/fleetsoftwareupdate/get_fsu_cycles.py +0 -167
- pulumi_oci/fleetsoftwareupdate/outputs.py +0 -1481
- pulumi_oci/globallydistributeddatabase/__init__.py +0 -15
- pulumi_oci/globallydistributeddatabase/_inputs.py +0 -1003
- pulumi_oci/globallydistributeddatabase/get_private_endpoints.py +0 -176
- pulumi_oci/globallydistributeddatabase/get_sharded_database.py +0 -610
- pulumi_oci/globallydistributeddatabase/get_sharded_databases.py +0 -176
- pulumi_oci/globallydistributeddatabase/outputs.py +0 -2058
- pulumi_oci/globallydistributeddatabase/sharded_database.py +0 -1816
- {pulumi_oci-2.9.0a1724479778.dist-info → pulumi_oci-2.9.0a1724836493.dist-info}/top_level.txt +0 -0
@@ -29,6 +29,7 @@ class DomainsUserArgs:
|
|
29
29
|
emails: Optional[pulumi.Input[Sequence[pulumi.Input['DomainsUserEmailArgs']]]] = None,
|
30
30
|
entitlements: Optional[pulumi.Input[Sequence[pulumi.Input['DomainsUserEntitlementArgs']]]] = None,
|
31
31
|
external_id: Optional[pulumi.Input[str]] = None,
|
32
|
+
force_delete: Optional[pulumi.Input[bool]] = None,
|
32
33
|
ims: Optional[pulumi.Input[Sequence[pulumi.Input['DomainsUserImArgs']]]] = None,
|
33
34
|
locale: Optional[pulumi.Input[str]] = None,
|
34
35
|
name: Optional[pulumi.Input['DomainsUserNameArgs']] = None,
|
@@ -422,6 +423,8 @@ class DomainsUserArgs:
|
|
422
423
|
pulumi.set(__self__, "entitlements", entitlements)
|
423
424
|
if external_id is not None:
|
424
425
|
pulumi.set(__self__, "external_id", external_id)
|
426
|
+
if force_delete is not None:
|
427
|
+
pulumi.set(__self__, "force_delete", force_delete)
|
425
428
|
if ims is not None:
|
426
429
|
pulumi.set(__self__, "ims", ims)
|
427
430
|
if locale is not None:
|
@@ -751,6 +754,15 @@ class DomainsUserArgs:
|
|
751
754
|
def external_id(self, value: Optional[pulumi.Input[str]]):
|
752
755
|
pulumi.set(self, "external_id", value)
|
753
756
|
|
757
|
+
@property
|
758
|
+
@pulumi.getter(name="forceDelete")
|
759
|
+
def force_delete(self) -> Optional[pulumi.Input[bool]]:
|
760
|
+
return pulumi.get(self, "force_delete")
|
761
|
+
|
762
|
+
@force_delete.setter
|
763
|
+
def force_delete(self, value: Optional[pulumi.Input[bool]]):
|
764
|
+
pulumi.set(self, "force_delete", value)
|
765
|
+
|
754
766
|
@property
|
755
767
|
@pulumi.getter
|
756
768
|
def ims(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['DomainsUserImArgs']]]]:
|
@@ -1358,6 +1370,7 @@ class _DomainsUserState:
|
|
1358
1370
|
emails: Optional[pulumi.Input[Sequence[pulumi.Input['DomainsUserEmailArgs']]]] = None,
|
1359
1371
|
entitlements: Optional[pulumi.Input[Sequence[pulumi.Input['DomainsUserEntitlementArgs']]]] = None,
|
1360
1372
|
external_id: Optional[pulumi.Input[str]] = None,
|
1373
|
+
force_delete: Optional[pulumi.Input[bool]] = None,
|
1361
1374
|
groups: Optional[pulumi.Input[Sequence[pulumi.Input['DomainsUserGroupArgs']]]] = None,
|
1362
1375
|
idcs_created_bies: Optional[pulumi.Input[Sequence[pulumi.Input['DomainsUserIdcsCreatedByArgs']]]] = None,
|
1363
1376
|
idcs_endpoint: Optional[pulumi.Input[str]] = None,
|
@@ -1875,6 +1888,8 @@ class _DomainsUserState:
|
|
1875
1888
|
pulumi.set(__self__, "entitlements", entitlements)
|
1876
1889
|
if external_id is not None:
|
1877
1890
|
pulumi.set(__self__, "external_id", external_id)
|
1891
|
+
if force_delete is not None:
|
1892
|
+
pulumi.set(__self__, "force_delete", force_delete)
|
1878
1893
|
if groups is not None:
|
1879
1894
|
pulumi.set(__self__, "groups", groups)
|
1880
1895
|
if idcs_created_bies is not None:
|
@@ -2237,6 +2252,15 @@ class _DomainsUserState:
|
|
2237
2252
|
def external_id(self, value: Optional[pulumi.Input[str]]):
|
2238
2253
|
pulumi.set(self, "external_id", value)
|
2239
2254
|
|
2255
|
+
@property
|
2256
|
+
@pulumi.getter(name="forceDelete")
|
2257
|
+
def force_delete(self) -> Optional[pulumi.Input[bool]]:
|
2258
|
+
return pulumi.get(self, "force_delete")
|
2259
|
+
|
2260
|
+
@force_delete.setter
|
2261
|
+
def force_delete(self, value: Optional[pulumi.Input[bool]]):
|
2262
|
+
pulumi.set(self, "force_delete", value)
|
2263
|
+
|
2240
2264
|
@property
|
2241
2265
|
@pulumi.getter
|
2242
2266
|
def groups(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['DomainsUserGroupArgs']]]]:
|
@@ -3087,6 +3111,7 @@ class DomainsUser(pulumi.CustomResource):
|
|
3087
3111
|
emails: Optional[pulumi.Input[Sequence[pulumi.Input[Union['DomainsUserEmailArgs', 'DomainsUserEmailArgsDict']]]]] = None,
|
3088
3112
|
entitlements: Optional[pulumi.Input[Sequence[pulumi.Input[Union['DomainsUserEntitlementArgs', 'DomainsUserEntitlementArgsDict']]]]] = None,
|
3089
3113
|
external_id: Optional[pulumi.Input[str]] = None,
|
3114
|
+
force_delete: Optional[pulumi.Input[bool]] = None,
|
3090
3115
|
idcs_endpoint: Optional[pulumi.Input[str]] = None,
|
3091
3116
|
ims: Optional[pulumi.Input[Sequence[pulumi.Input[Union['DomainsUserImArgs', 'DomainsUserImArgsDict']]]]] = None,
|
3092
3117
|
locale: Optional[pulumi.Input[str]] = None,
|
@@ -3518,6 +3543,7 @@ class DomainsUser(pulumi.CustomResource):
|
|
3518
3543
|
emails: Optional[pulumi.Input[Sequence[pulumi.Input[Union['DomainsUserEmailArgs', 'DomainsUserEmailArgsDict']]]]] = None,
|
3519
3544
|
entitlements: Optional[pulumi.Input[Sequence[pulumi.Input[Union['DomainsUserEntitlementArgs', 'DomainsUserEntitlementArgsDict']]]]] = None,
|
3520
3545
|
external_id: Optional[pulumi.Input[str]] = None,
|
3546
|
+
force_delete: Optional[pulumi.Input[bool]] = None,
|
3521
3547
|
idcs_endpoint: Optional[pulumi.Input[str]] = None,
|
3522
3548
|
ims: Optional[pulumi.Input[Sequence[pulumi.Input[Union['DomainsUserImArgs', 'DomainsUserImArgsDict']]]]] = None,
|
3523
3549
|
locale: Optional[pulumi.Input[str]] = None,
|
@@ -3574,6 +3600,7 @@ class DomainsUser(pulumi.CustomResource):
|
|
3574
3600
|
__props__.__dict__["emails"] = emails
|
3575
3601
|
__props__.__dict__["entitlements"] = entitlements
|
3576
3602
|
__props__.__dict__["external_id"] = external_id
|
3603
|
+
__props__.__dict__["force_delete"] = force_delete
|
3577
3604
|
if idcs_endpoint is None and not opts.urn:
|
3578
3605
|
raise TypeError("Missing required property 'idcs_endpoint'")
|
3579
3606
|
__props__.__dict__["idcs_endpoint"] = idcs_endpoint
|
@@ -3655,6 +3682,7 @@ class DomainsUser(pulumi.CustomResource):
|
|
3655
3682
|
emails: Optional[pulumi.Input[Sequence[pulumi.Input[Union['DomainsUserEmailArgs', 'DomainsUserEmailArgsDict']]]]] = None,
|
3656
3683
|
entitlements: Optional[pulumi.Input[Sequence[pulumi.Input[Union['DomainsUserEntitlementArgs', 'DomainsUserEntitlementArgsDict']]]]] = None,
|
3657
3684
|
external_id: Optional[pulumi.Input[str]] = None,
|
3685
|
+
force_delete: Optional[pulumi.Input[bool]] = None,
|
3658
3686
|
groups: Optional[pulumi.Input[Sequence[pulumi.Input[Union['DomainsUserGroupArgs', 'DomainsUserGroupArgsDict']]]]] = None,
|
3659
3687
|
idcs_created_bies: Optional[pulumi.Input[Sequence[pulumi.Input[Union['DomainsUserIdcsCreatedByArgs', 'DomainsUserIdcsCreatedByArgsDict']]]]] = None,
|
3660
3688
|
idcs_endpoint: Optional[pulumi.Input[str]] = None,
|
@@ -4168,6 +4196,7 @@ class DomainsUser(pulumi.CustomResource):
|
|
4168
4196
|
__props__.__dict__["emails"] = emails
|
4169
4197
|
__props__.__dict__["entitlements"] = entitlements
|
4170
4198
|
__props__.__dict__["external_id"] = external_id
|
4199
|
+
__props__.__dict__["force_delete"] = force_delete
|
4171
4200
|
__props__.__dict__["groups"] = groups
|
4172
4201
|
__props__.__dict__["idcs_created_bies"] = idcs_created_bies
|
4173
4202
|
__props__.__dict__["idcs_endpoint"] = idcs_endpoint
|
@@ -4432,6 +4461,11 @@ class DomainsUser(pulumi.CustomResource):
|
|
4432
4461
|
"""
|
4433
4462
|
return pulumi.get(self, "external_id")
|
4434
4463
|
|
4464
|
+
@property
|
4465
|
+
@pulumi.getter(name="forceDelete")
|
4466
|
+
def force_delete(self) -> pulumi.Output[Optional[bool]]:
|
4467
|
+
return pulumi.get(self, "force_delete")
|
4468
|
+
|
4435
4469
|
@property
|
4436
4470
|
@pulumi.getter
|
4437
4471
|
def groups(self) -> pulumi.Output[Sequence['outputs.DomainsUserGroup']]:
|
@@ -22,7 +22,7 @@ class GetDomainsGroupResult:
|
|
22
22
|
"""
|
23
23
|
A collection of values returned by getDomainsGroup.
|
24
24
|
"""
|
25
|
-
def __init__(__self__, attribute_sets=None, attributes=None, authorization=None, compartment_ocid=None, delete_in_progress=None, display_name=None, domain_ocid=None, external_id=None, group_id=None, id=None, idcs_created_bies=None, idcs_endpoint=None, idcs_last_modified_bies=None, idcs_last_upgraded_in_release=None, idcs_prevented_operations=None, members=None, metas=None, non_unique_display_name=None, ocid=None, resource_type_schema_version=None, schemas=None, tags=None, tenancy_ocid=None, urnietfparamsscimschemasoracleidcsextension_oci_tags=None, urnietfparamsscimschemasoracleidcsextensiondbcs_groups=None, urnietfparamsscimschemasoracleidcsextensiondynamic_groups=None, urnietfparamsscimschemasoracleidcsextensiongroup_groups=None, urnietfparamsscimschemasoracleidcsextensionposix_groups=None, urnietfparamsscimschemasoracleidcsextensionrequestable_groups=None):
|
25
|
+
def __init__(__self__, attribute_sets=None, attributes=None, authorization=None, compartment_ocid=None, delete_in_progress=None, display_name=None, domain_ocid=None, external_id=None, force_delete=None, group_id=None, id=None, idcs_created_bies=None, idcs_endpoint=None, idcs_last_modified_bies=None, idcs_last_upgraded_in_release=None, idcs_prevented_operations=None, members=None, metas=None, non_unique_display_name=None, ocid=None, resource_type_schema_version=None, schemas=None, tags=None, tenancy_ocid=None, urnietfparamsscimschemasoracleidcsextension_oci_tags=None, urnietfparamsscimschemasoracleidcsextensiondbcs_groups=None, urnietfparamsscimschemasoracleidcsextensiondynamic_groups=None, urnietfparamsscimschemasoracleidcsextensiongroup_groups=None, urnietfparamsscimschemasoracleidcsextensionposix_groups=None, urnietfparamsscimschemasoracleidcsextensionrequestable_groups=None):
|
26
26
|
if attribute_sets and not isinstance(attribute_sets, list):
|
27
27
|
raise TypeError("Expected argument 'attribute_sets' to be a list")
|
28
28
|
pulumi.set(__self__, "attribute_sets", attribute_sets)
|
@@ -47,6 +47,9 @@ class GetDomainsGroupResult:
|
|
47
47
|
if external_id and not isinstance(external_id, str):
|
48
48
|
raise TypeError("Expected argument 'external_id' to be a str")
|
49
49
|
pulumi.set(__self__, "external_id", external_id)
|
50
|
+
if force_delete and not isinstance(force_delete, bool):
|
51
|
+
raise TypeError("Expected argument 'force_delete' to be a bool")
|
52
|
+
pulumi.set(__self__, "force_delete", force_delete)
|
50
53
|
if group_id and not isinstance(group_id, str):
|
51
54
|
raise TypeError("Expected argument 'group_id' to be a str")
|
52
55
|
pulumi.set(__self__, "group_id", group_id)
|
@@ -166,6 +169,11 @@ class GetDomainsGroupResult:
|
|
166
169
|
"""
|
167
170
|
return pulumi.get(self, "external_id")
|
168
171
|
|
172
|
+
@property
|
173
|
+
@pulumi.getter(name="forceDelete")
|
174
|
+
def force_delete(self) -> bool:
|
175
|
+
return pulumi.get(self, "force_delete")
|
176
|
+
|
169
177
|
@property
|
170
178
|
@pulumi.getter(name="groupId")
|
171
179
|
def group_id(self) -> str:
|
@@ -340,6 +348,7 @@ class AwaitableGetDomainsGroupResult(GetDomainsGroupResult):
|
|
340
348
|
display_name=self.display_name,
|
341
349
|
domain_ocid=self.domain_ocid,
|
342
350
|
external_id=self.external_id,
|
351
|
+
force_delete=self.force_delete,
|
343
352
|
group_id=self.group_id,
|
344
353
|
id=self.id,
|
345
354
|
idcs_created_bies=self.idcs_created_bies,
|
@@ -416,6 +425,7 @@ def get_domains_group(attribute_sets: Optional[Sequence[str]] = None,
|
|
416
425
|
display_name=pulumi.get(__ret__, 'display_name'),
|
417
426
|
domain_ocid=pulumi.get(__ret__, 'domain_ocid'),
|
418
427
|
external_id=pulumi.get(__ret__, 'external_id'),
|
428
|
+
force_delete=pulumi.get(__ret__, 'force_delete'),
|
419
429
|
group_id=pulumi.get(__ret__, 'group_id'),
|
420
430
|
id=pulumi.get(__ret__, 'id'),
|
421
431
|
idcs_created_bies=pulumi.get(__ret__, 'idcs_created_bies'),
|
@@ -22,7 +22,7 @@ class GetDomainsUserResult:
|
|
22
22
|
"""
|
23
23
|
A collection of values returned by getDomainsUser.
|
24
24
|
"""
|
25
|
-
def __init__(__self__, active=None, addresses=None, attribute_sets=None, attributes=None, authorization=None, compartment_ocid=None, delete_in_progress=None, description=None, display_name=None, domain_ocid=None, emails=None, entitlements=None, external_id=None, groups=None, id=None, idcs_created_bies=None, idcs_endpoint=None, idcs_last_modified_bies=None, idcs_last_upgraded_in_release=None, idcs_prevented_operations=None, ims=None, locale=None, metas=None, names=None, nick_name=None, ocid=None, password=None, phone_numbers=None, photos=None, preferred_language=None, profile_url=None, resource_type_schema_version=None, roles=None, schemas=None, tags=None, tenancy_ocid=None, timezone=None, title=None, urnietfparamsscimschemasextensionenterprise20users=None, urnietfparamsscimschemasoracleidcsextension_oci_tags=None, urnietfparamsscimschemasoracleidcsextensionadaptive_users=None, urnietfparamsscimschemasoracleidcsextensioncapabilities_users=None, urnietfparamsscimschemasoracleidcsextensiondb_credentials_users=None, urnietfparamsscimschemasoracleidcsextensiondb_user_users=None, urnietfparamsscimschemasoracleidcsextensionkerberos_user_users=None, urnietfparamsscimschemasoracleidcsextensionmfa_users=None, urnietfparamsscimschemasoracleidcsextensionpassword_state_users=None, urnietfparamsscimschemasoracleidcsextensionpasswordless_users=None, urnietfparamsscimschemasoracleidcsextensionposix_users=None, urnietfparamsscimschemasoracleidcsextensionsecurity_questions_users=None, urnietfparamsscimschemasoracleidcsextensionself_change_users=None, urnietfparamsscimschemasoracleidcsextensionself_registration_users=None, urnietfparamsscimschemasoracleidcsextensionsff_users=None, urnietfparamsscimschemasoracleidcsextensionsocial_account_users=None, urnietfparamsscimschemasoracleidcsextensionterms_of_use_users=None, urnietfparamsscimschemasoracleidcsextensionuser_credentials_users=None, urnietfparamsscimschemasoracleidcsextensionuser_state_users=None, urnietfparamsscimschemasoracleidcsextensionuser_users=None, user_id=None, user_name=None, user_type=None, x509certificates=None):
|
25
|
+
def __init__(__self__, active=None, addresses=None, attribute_sets=None, attributes=None, authorization=None, compartment_ocid=None, delete_in_progress=None, description=None, display_name=None, domain_ocid=None, emails=None, entitlements=None, external_id=None, force_delete=None, groups=None, id=None, idcs_created_bies=None, idcs_endpoint=None, idcs_last_modified_bies=None, idcs_last_upgraded_in_release=None, idcs_prevented_operations=None, ims=None, locale=None, metas=None, names=None, nick_name=None, ocid=None, password=None, phone_numbers=None, photos=None, preferred_language=None, profile_url=None, resource_type_schema_version=None, roles=None, schemas=None, tags=None, tenancy_ocid=None, timezone=None, title=None, urnietfparamsscimschemasextensionenterprise20users=None, urnietfparamsscimschemasoracleidcsextension_oci_tags=None, urnietfparamsscimschemasoracleidcsextensionadaptive_users=None, urnietfparamsscimschemasoracleidcsextensioncapabilities_users=None, urnietfparamsscimschemasoracleidcsextensiondb_credentials_users=None, urnietfparamsscimschemasoracleidcsextensiondb_user_users=None, urnietfparamsscimschemasoracleidcsextensionkerberos_user_users=None, urnietfparamsscimschemasoracleidcsextensionmfa_users=None, urnietfparamsscimschemasoracleidcsextensionpassword_state_users=None, urnietfparamsscimschemasoracleidcsextensionpasswordless_users=None, urnietfparamsscimschemasoracleidcsextensionposix_users=None, urnietfparamsscimschemasoracleidcsextensionsecurity_questions_users=None, urnietfparamsscimschemasoracleidcsextensionself_change_users=None, urnietfparamsscimschemasoracleidcsextensionself_registration_users=None, urnietfparamsscimschemasoracleidcsextensionsff_users=None, urnietfparamsscimschemasoracleidcsextensionsocial_account_users=None, urnietfparamsscimschemasoracleidcsextensionterms_of_use_users=None, urnietfparamsscimschemasoracleidcsextensionuser_credentials_users=None, urnietfparamsscimschemasoracleidcsextensionuser_state_users=None, urnietfparamsscimschemasoracleidcsextensionuser_users=None, user_id=None, user_name=None, user_type=None, x509certificates=None):
|
26
26
|
if active and not isinstance(active, bool):
|
27
27
|
raise TypeError("Expected argument 'active' to be a bool")
|
28
28
|
pulumi.set(__self__, "active", active)
|
@@ -62,6 +62,9 @@ class GetDomainsUserResult:
|
|
62
62
|
if external_id and not isinstance(external_id, str):
|
63
63
|
raise TypeError("Expected argument 'external_id' to be a str")
|
64
64
|
pulumi.set(__self__, "external_id", external_id)
|
65
|
+
if force_delete and not isinstance(force_delete, bool):
|
66
|
+
raise TypeError("Expected argument 'force_delete' to be a bool")
|
67
|
+
pulumi.set(__self__, "force_delete", force_delete)
|
65
68
|
if groups and not isinstance(groups, list):
|
66
69
|
raise TypeError("Expected argument 'groups' to be a list")
|
67
70
|
pulumi.set(__self__, "groups", groups)
|
@@ -305,6 +308,11 @@ class GetDomainsUserResult:
|
|
305
308
|
"""
|
306
309
|
return pulumi.get(self, "external_id")
|
307
310
|
|
311
|
+
@property
|
312
|
+
@pulumi.getter(name="forceDelete")
|
313
|
+
def force_delete(self) -> bool:
|
314
|
+
return pulumi.get(self, "force_delete")
|
315
|
+
|
308
316
|
@property
|
309
317
|
@pulumi.getter
|
310
318
|
def groups(self) -> Sequence['outputs.GetDomainsUserGroupResult']:
|
@@ -711,6 +719,7 @@ class AwaitableGetDomainsUserResult(GetDomainsUserResult):
|
|
711
719
|
emails=self.emails,
|
712
720
|
entitlements=self.entitlements,
|
713
721
|
external_id=self.external_id,
|
722
|
+
force_delete=self.force_delete,
|
714
723
|
groups=self.groups,
|
715
724
|
id=self.id,
|
716
725
|
idcs_created_bies=self.idcs_created_bies,
|
@@ -820,6 +829,7 @@ def get_domains_user(attribute_sets: Optional[Sequence[str]] = None,
|
|
820
829
|
emails=pulumi.get(__ret__, 'emails'),
|
821
830
|
entitlements=pulumi.get(__ret__, 'entitlements'),
|
822
831
|
external_id=pulumi.get(__ret__, 'external_id'),
|
832
|
+
force_delete=pulumi.get(__ret__, 'force_delete'),
|
823
833
|
groups=pulumi.get(__ret__, 'groups'),
|
824
834
|
id=pulumi.get(__ret__, 'id'),
|
825
835
|
idcs_created_bies=pulumi.get(__ret__, 'idcs_created_bies'),
|
pulumi_oci/identity/outputs.py
CHANGED
@@ -97037,6 +97037,7 @@ class GetDomainsGroupsGroupResult(dict):
|
|
97037
97037
|
display_name: str,
|
97038
97038
|
domain_ocid: str,
|
97039
97039
|
external_id: str,
|
97040
|
+
force_delete: bool,
|
97040
97041
|
id: str,
|
97041
97042
|
idcs_created_bies: Sequence['outputs.GetDomainsGroupsGroupIdcsCreatedByResult'],
|
97042
97043
|
idcs_endpoint: str,
|
@@ -97095,6 +97096,7 @@ class GetDomainsGroupsGroupResult(dict):
|
|
97095
97096
|
pulumi.set(__self__, "display_name", display_name)
|
97096
97097
|
pulumi.set(__self__, "domain_ocid", domain_ocid)
|
97097
97098
|
pulumi.set(__self__, "external_id", external_id)
|
97099
|
+
pulumi.set(__self__, "force_delete", force_delete)
|
97098
97100
|
pulumi.set(__self__, "id", id)
|
97099
97101
|
pulumi.set(__self__, "idcs_created_bies", idcs_created_bies)
|
97100
97102
|
pulumi.set(__self__, "idcs_endpoint", idcs_endpoint)
|
@@ -97180,6 +97182,11 @@ class GetDomainsGroupsGroupResult(dict):
|
|
97180
97182
|
"""
|
97181
97183
|
return pulumi.get(self, "external_id")
|
97182
97184
|
|
97185
|
+
@property
|
97186
|
+
@pulumi.getter(name="forceDelete")
|
97187
|
+
def force_delete(self) -> bool:
|
97188
|
+
return pulumi.get(self, "force_delete")
|
97189
|
+
|
97183
97190
|
@property
|
97184
97191
|
@pulumi.getter
|
97185
97192
|
def id(self) -> str:
|
@@ -136748,6 +136755,7 @@ class GetDomainsUsersUserResult(dict):
|
|
136748
136755
|
emails: Sequence['outputs.GetDomainsUsersUserEmailResult'],
|
136749
136756
|
entitlements: Sequence['outputs.GetDomainsUsersUserEntitlementResult'],
|
136750
136757
|
external_id: str,
|
136758
|
+
force_delete: bool,
|
136751
136759
|
groups: Sequence['outputs.GetDomainsUsersUserGroupResult'],
|
136752
136760
|
id: str,
|
136753
136761
|
idcs_created_bies: Sequence['outputs.GetDomainsUsersUserIdcsCreatedByResult'],
|
@@ -136872,6 +136880,7 @@ class GetDomainsUsersUserResult(dict):
|
|
136872
136880
|
pulumi.set(__self__, "emails", emails)
|
136873
136881
|
pulumi.set(__self__, "entitlements", entitlements)
|
136874
136882
|
pulumi.set(__self__, "external_id", external_id)
|
136883
|
+
pulumi.set(__self__, "force_delete", force_delete)
|
136875
136884
|
pulumi.set(__self__, "groups", groups)
|
136876
136885
|
pulumi.set(__self__, "id", id)
|
136877
136886
|
pulumi.set(__self__, "idcs_created_bies", idcs_created_bies)
|
@@ -137025,6 +137034,11 @@ class GetDomainsUsersUserResult(dict):
|
|
137025
137034
|
"""
|
137026
137035
|
return pulumi.get(self, "external_id")
|
137027
137036
|
|
137037
|
+
@property
|
137038
|
+
@pulumi.getter(name="forceDelete")
|
137039
|
+
def force_delete(self) -> bool:
|
137040
|
+
return pulumi.get(self, "force_delete")
|
137041
|
+
|
137028
137042
|
@property
|
137029
137043
|
@pulumi.getter
|
137030
137044
|
def groups(self) -> Sequence['outputs.GetDomainsUsersUserGroupResult']:
|
pulumi_oci/kms/_inputs.py
CHANGED
@@ -103,12 +103,12 @@ class KeyAutoKeyRotationDetailsArgs:
|
|
103
103
|
time_of_next_rotation: Optional[pulumi.Input[str]] = None,
|
104
104
|
time_of_schedule_start: Optional[pulumi.Input[str]] = None):
|
105
105
|
"""
|
106
|
-
:param pulumi.Input[str] last_rotation_message: (Updatable) The last execution status message.
|
106
|
+
:param pulumi.Input[str] last_rotation_message: (Updatable) The last execution status message of auto key rotation.
|
107
107
|
:param pulumi.Input[str] last_rotation_status: (Updatable) The status of last execution of auto key rotation.
|
108
|
-
:param pulumi.Input[int] rotation_interval_in_days: (Updatable) The interval of auto key rotation. For auto key rotation the interval should between
|
109
|
-
:param pulumi.Input[str] time_of_last_rotation: (Updatable) A
|
110
|
-
:param pulumi.Input[str] time_of_next_rotation: (Updatable) A property indicating Next estimated scheduled Time, as per the interval, expressed as date YYYY-MM-DD String. Example: `2023-04-04T00:00:00Z
|
111
|
-
:param pulumi.Input[str] time_of_schedule_start: (Updatable) A property indicating scheduled start date expressed as date YYYY-MM-DD String. Example: `2023-04-04T00:00:00Z
|
108
|
+
:param pulumi.Input[int] rotation_interval_in_days: (Updatable) The interval of auto key rotation. For auto key rotation the interval should between 60 day and 365 days (1 year). Note: User must specify this parameter when creating a new schedule.
|
109
|
+
:param pulumi.Input[str] time_of_last_rotation: (Updatable) A property indicating Last rotation Date. Example: `2023-04-04T00:00:00Z`.
|
110
|
+
:param pulumi.Input[str] time_of_next_rotation: (Updatable) A property indicating Next estimated scheduled Time, as per the interval, expressed as date YYYY-MM-DD String. Example: `2023-04-04T00:00:00Z`. The time has no significance when scheduling an auto key rotation as this can be done anytime approximately the scheduled day, KMS ignores the time and replaces it with 00:00, for example 2023-04-04T15:14:13Z will be used as 2023-04-04T00:00:00Z.
|
111
|
+
:param pulumi.Input[str] time_of_schedule_start: (Updatable) A property indicating scheduled start date expressed as date YYYY-MM-DD String. Example: `2023-04-04T00:00:00Z. The time has no significance when scheduling an auto key rotation as this can be done anytime approximately the scheduled day, KMS ignores the time and replaces it with 00:00, for example 2023-04-04T15:14:13Z will be used as 2023-04-04T00:00:00Z . Note : Today’s date will be used if not specified by customer.
|
112
112
|
"""
|
113
113
|
if last_rotation_message is not None:
|
114
114
|
pulumi.set(__self__, "last_rotation_message", last_rotation_message)
|
@@ -127,7 +127,7 @@ class KeyAutoKeyRotationDetailsArgs:
|
|
127
127
|
@pulumi.getter(name="lastRotationMessage")
|
128
128
|
def last_rotation_message(self) -> Optional[pulumi.Input[str]]:
|
129
129
|
"""
|
130
|
-
(Updatable) The last execution status message.
|
130
|
+
(Updatable) The last execution status message of auto key rotation.
|
131
131
|
"""
|
132
132
|
return pulumi.get(self, "last_rotation_message")
|
133
133
|
|
@@ -151,7 +151,7 @@ class KeyAutoKeyRotationDetailsArgs:
|
|
151
151
|
@pulumi.getter(name="rotationIntervalInDays")
|
152
152
|
def rotation_interval_in_days(self) -> Optional[pulumi.Input[int]]:
|
153
153
|
"""
|
154
|
-
(Updatable) The interval of auto key rotation. For auto key rotation the interval should between
|
154
|
+
(Updatable) The interval of auto key rotation. For auto key rotation the interval should between 60 day and 365 days (1 year). Note: User must specify this parameter when creating a new schedule.
|
155
155
|
"""
|
156
156
|
return pulumi.get(self, "rotation_interval_in_days")
|
157
157
|
|
@@ -163,7 +163,7 @@ class KeyAutoKeyRotationDetailsArgs:
|
|
163
163
|
@pulumi.getter(name="timeOfLastRotation")
|
164
164
|
def time_of_last_rotation(self) -> Optional[pulumi.Input[str]]:
|
165
165
|
"""
|
166
|
-
(Updatable) A
|
166
|
+
(Updatable) A property indicating Last rotation Date. Example: `2023-04-04T00:00:00Z`.
|
167
167
|
"""
|
168
168
|
return pulumi.get(self, "time_of_last_rotation")
|
169
169
|
|
@@ -175,7 +175,7 @@ class KeyAutoKeyRotationDetailsArgs:
|
|
175
175
|
@pulumi.getter(name="timeOfNextRotation")
|
176
176
|
def time_of_next_rotation(self) -> Optional[pulumi.Input[str]]:
|
177
177
|
"""
|
178
|
-
(Updatable) A property indicating Next estimated scheduled Time, as per the interval, expressed as date YYYY-MM-DD String. Example: `2023-04-04T00:00:00Z
|
178
|
+
(Updatable) A property indicating Next estimated scheduled Time, as per the interval, expressed as date YYYY-MM-DD String. Example: `2023-04-04T00:00:00Z`. The time has no significance when scheduling an auto key rotation as this can be done anytime approximately the scheduled day, KMS ignores the time and replaces it with 00:00, for example 2023-04-04T15:14:13Z will be used as 2023-04-04T00:00:00Z.
|
179
179
|
"""
|
180
180
|
return pulumi.get(self, "time_of_next_rotation")
|
181
181
|
|
@@ -187,7 +187,7 @@ class KeyAutoKeyRotationDetailsArgs:
|
|
187
187
|
@pulumi.getter(name="timeOfScheduleStart")
|
188
188
|
def time_of_schedule_start(self) -> Optional[pulumi.Input[str]]:
|
189
189
|
"""
|
190
|
-
(Updatable) A property indicating scheduled start date expressed as date YYYY-MM-DD String. Example: `2023-04-04T00:00:00Z
|
190
|
+
(Updatable) A property indicating scheduled start date expressed as date YYYY-MM-DD String. Example: `2023-04-04T00:00:00Z. The time has no significance when scheduling an auto key rotation as this can be done anytime approximately the scheduled day, KMS ignores the time and replaces it with 00:00, for example 2023-04-04T15:14:13Z will be used as 2023-04-04T00:00:00Z . Note : Today’s date will be used if not specified by customer.
|
191
191
|
"""
|
192
192
|
return pulumi.get(self, "time_of_schedule_start")
|
193
193
|
|
pulumi_oci/kms/get_vault.py
CHANGED
@@ -22,7 +22,7 @@ class GetVaultResult:
|
|
22
22
|
"""
|
23
23
|
A collection of values returned by getVault.
|
24
24
|
"""
|
25
|
-
def __init__(__self__, compartment_id=None, crypto_endpoint=None, defined_tags=None, display_name=None, external_key_manager_metadata_summaries=None, external_key_manager_metadatas=None, freeform_tags=None, id=None, is_primary=None, management_endpoint=None, replica_details=None, restore_from_files=None, restore_from_object_stores=None, restore_trigger=None, restored_from_vault_id=None, state=None, time_created=None, time_of_deletion=None, vault_id=None, vault_type=None):
|
25
|
+
def __init__(__self__, compartment_id=None, crypto_endpoint=None, defined_tags=None, display_name=None, external_key_manager_metadata_summaries=None, external_key_manager_metadatas=None, freeform_tags=None, id=None, is_primary=None, is_vault_replicable=None, management_endpoint=None, replica_details=None, restore_from_files=None, restore_from_object_stores=None, restore_trigger=None, restored_from_vault_id=None, state=None, time_created=None, time_of_deletion=None, vault_id=None, vault_type=None):
|
26
26
|
if compartment_id and not isinstance(compartment_id, str):
|
27
27
|
raise TypeError("Expected argument 'compartment_id' to be a str")
|
28
28
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
@@ -50,6 +50,9 @@ class GetVaultResult:
|
|
50
50
|
if is_primary and not isinstance(is_primary, bool):
|
51
51
|
raise TypeError("Expected argument 'is_primary' to be a bool")
|
52
52
|
pulumi.set(__self__, "is_primary", is_primary)
|
53
|
+
if is_vault_replicable and not isinstance(is_vault_replicable, bool):
|
54
|
+
raise TypeError("Expected argument 'is_vault_replicable' to be a bool")
|
55
|
+
pulumi.set(__self__, "is_vault_replicable", is_vault_replicable)
|
53
56
|
if management_endpoint and not isinstance(management_endpoint, str):
|
54
57
|
raise TypeError("Expected argument 'management_endpoint' to be a str")
|
55
58
|
pulumi.set(__self__, "management_endpoint", management_endpoint)
|
@@ -153,6 +156,14 @@ class GetVaultResult:
|
|
153
156
|
"""
|
154
157
|
return pulumi.get(self, "is_primary")
|
155
158
|
|
159
|
+
@property
|
160
|
+
@pulumi.getter(name="isVaultReplicable")
|
161
|
+
def is_vault_replicable(self) -> bool:
|
162
|
+
"""
|
163
|
+
A Boolean value that indicates whether the Vault has cross region replication capability. Always true for Virtual Private Vaults.
|
164
|
+
"""
|
165
|
+
return pulumi.get(self, "is_vault_replicable")
|
166
|
+
|
156
167
|
@property
|
157
168
|
@pulumi.getter(name="managementEndpoint")
|
158
169
|
def management_endpoint(self) -> str:
|
@@ -254,6 +265,7 @@ class AwaitableGetVaultResult(GetVaultResult):
|
|
254
265
|
freeform_tags=self.freeform_tags,
|
255
266
|
id=self.id,
|
256
267
|
is_primary=self.is_primary,
|
268
|
+
is_vault_replicable=self.is_vault_replicable,
|
257
269
|
management_endpoint=self.management_endpoint,
|
258
270
|
replica_details=self.replica_details,
|
259
271
|
restore_from_files=self.restore_from_files,
|
@@ -306,6 +318,7 @@ def get_vault(vault_id: Optional[str] = None,
|
|
306
318
|
freeform_tags=pulumi.get(__ret__, 'freeform_tags'),
|
307
319
|
id=pulumi.get(__ret__, 'id'),
|
308
320
|
is_primary=pulumi.get(__ret__, 'is_primary'),
|
321
|
+
is_vault_replicable=pulumi.get(__ret__, 'is_vault_replicable'),
|
309
322
|
management_endpoint=pulumi.get(__ret__, 'management_endpoint'),
|
310
323
|
replica_details=pulumi.get(__ret__, 'replica_details'),
|
311
324
|
restore_from_files=pulumi.get(__ret__, 'restore_from_files'),
|
pulumi_oci/kms/outputs.py
CHANGED
@@ -174,12 +174,12 @@ class KeyAutoKeyRotationDetails(dict):
|
|
174
174
|
time_of_next_rotation: Optional[str] = None,
|
175
175
|
time_of_schedule_start: Optional[str] = None):
|
176
176
|
"""
|
177
|
-
:param str last_rotation_message: (Updatable) The last execution status message.
|
177
|
+
:param str last_rotation_message: (Updatable) The last execution status message of auto key rotation.
|
178
178
|
:param str last_rotation_status: (Updatable) The status of last execution of auto key rotation.
|
179
|
-
:param int rotation_interval_in_days: (Updatable) The interval of auto key rotation. For auto key rotation the interval should between
|
180
|
-
:param str time_of_last_rotation: (Updatable) A
|
181
|
-
:param str time_of_next_rotation: (Updatable) A property indicating Next estimated scheduled Time, as per the interval, expressed as date YYYY-MM-DD String. Example: `2023-04-04T00:00:00Z
|
182
|
-
:param str time_of_schedule_start: (Updatable) A property indicating scheduled start date expressed as date YYYY-MM-DD String. Example: `2023-04-04T00:00:00Z
|
179
|
+
:param int rotation_interval_in_days: (Updatable) The interval of auto key rotation. For auto key rotation the interval should between 60 day and 365 days (1 year). Note: User must specify this parameter when creating a new schedule.
|
180
|
+
:param str time_of_last_rotation: (Updatable) A property indicating Last rotation Date. Example: `2023-04-04T00:00:00Z`.
|
181
|
+
:param str time_of_next_rotation: (Updatable) A property indicating Next estimated scheduled Time, as per the interval, expressed as date YYYY-MM-DD String. Example: `2023-04-04T00:00:00Z`. The time has no significance when scheduling an auto key rotation as this can be done anytime approximately the scheduled day, KMS ignores the time and replaces it with 00:00, for example 2023-04-04T15:14:13Z will be used as 2023-04-04T00:00:00Z.
|
182
|
+
:param str time_of_schedule_start: (Updatable) A property indicating scheduled start date expressed as date YYYY-MM-DD String. Example: `2023-04-04T00:00:00Z. The time has no significance when scheduling an auto key rotation as this can be done anytime approximately the scheduled day, KMS ignores the time and replaces it with 00:00, for example 2023-04-04T15:14:13Z will be used as 2023-04-04T00:00:00Z . Note : Today’s date will be used if not specified by customer.
|
183
183
|
"""
|
184
184
|
if last_rotation_message is not None:
|
185
185
|
pulumi.set(__self__, "last_rotation_message", last_rotation_message)
|
@@ -198,7 +198,7 @@ class KeyAutoKeyRotationDetails(dict):
|
|
198
198
|
@pulumi.getter(name="lastRotationMessage")
|
199
199
|
def last_rotation_message(self) -> Optional[str]:
|
200
200
|
"""
|
201
|
-
(Updatable) The last execution status message.
|
201
|
+
(Updatable) The last execution status message of auto key rotation.
|
202
202
|
"""
|
203
203
|
return pulumi.get(self, "last_rotation_message")
|
204
204
|
|
@@ -214,7 +214,7 @@ class KeyAutoKeyRotationDetails(dict):
|
|
214
214
|
@pulumi.getter(name="rotationIntervalInDays")
|
215
215
|
def rotation_interval_in_days(self) -> Optional[int]:
|
216
216
|
"""
|
217
|
-
(Updatable) The interval of auto key rotation. For auto key rotation the interval should between
|
217
|
+
(Updatable) The interval of auto key rotation. For auto key rotation the interval should between 60 day and 365 days (1 year). Note: User must specify this parameter when creating a new schedule.
|
218
218
|
"""
|
219
219
|
return pulumi.get(self, "rotation_interval_in_days")
|
220
220
|
|
@@ -222,7 +222,7 @@ class KeyAutoKeyRotationDetails(dict):
|
|
222
222
|
@pulumi.getter(name="timeOfLastRotation")
|
223
223
|
def time_of_last_rotation(self) -> Optional[str]:
|
224
224
|
"""
|
225
|
-
(Updatable) A
|
225
|
+
(Updatable) A property indicating Last rotation Date. Example: `2023-04-04T00:00:00Z`.
|
226
226
|
"""
|
227
227
|
return pulumi.get(self, "time_of_last_rotation")
|
228
228
|
|
@@ -230,7 +230,7 @@ class KeyAutoKeyRotationDetails(dict):
|
|
230
230
|
@pulumi.getter(name="timeOfNextRotation")
|
231
231
|
def time_of_next_rotation(self) -> Optional[str]:
|
232
232
|
"""
|
233
|
-
(Updatable) A property indicating Next estimated scheduled Time, as per the interval, expressed as date YYYY-MM-DD String. Example: `2023-04-04T00:00:00Z
|
233
|
+
(Updatable) A property indicating Next estimated scheduled Time, as per the interval, expressed as date YYYY-MM-DD String. Example: `2023-04-04T00:00:00Z`. The time has no significance when scheduling an auto key rotation as this can be done anytime approximately the scheduled day, KMS ignores the time and replaces it with 00:00, for example 2023-04-04T15:14:13Z will be used as 2023-04-04T00:00:00Z.
|
234
234
|
"""
|
235
235
|
return pulumi.get(self, "time_of_next_rotation")
|
236
236
|
|
@@ -238,7 +238,7 @@ class KeyAutoKeyRotationDetails(dict):
|
|
238
238
|
@pulumi.getter(name="timeOfScheduleStart")
|
239
239
|
def time_of_schedule_start(self) -> Optional[str]:
|
240
240
|
"""
|
241
|
-
(Updatable) A property indicating scheduled start date expressed as date YYYY-MM-DD String. Example: `2023-04-04T00:00:00Z
|
241
|
+
(Updatable) A property indicating scheduled start date expressed as date YYYY-MM-DD String. Example: `2023-04-04T00:00:00Z. The time has no significance when scheduling an auto key rotation as this can be done anytime approximately the scheduled day, KMS ignores the time and replaces it with 00:00, for example 2023-04-04T15:14:13Z will be used as 2023-04-04T00:00:00Z . Note : Today’s date will be used if not specified by customer.
|
242
242
|
"""
|
243
243
|
return pulumi.get(self, "time_of_schedule_start")
|
244
244
|
|
@@ -1252,12 +1252,12 @@ class GetKeyAutoKeyRotationDetailResult(dict):
|
|
1252
1252
|
time_of_next_rotation: str,
|
1253
1253
|
time_of_schedule_start: str):
|
1254
1254
|
"""
|
1255
|
-
:param str last_rotation_message: The last execution status message.
|
1255
|
+
:param str last_rotation_message: The last execution status message of auto key rotation.
|
1256
1256
|
:param str last_rotation_status: The status of last execution of auto key rotation.
|
1257
|
-
:param int rotation_interval_in_days: The interval of auto key rotation. For auto key rotation the interval should between
|
1258
|
-
:param str time_of_last_rotation: A
|
1259
|
-
:param str time_of_next_rotation: A property indicating Next estimated scheduled Time, as per the interval, expressed as date YYYY-MM-DD String. Example: `2023-04-04T00:00:00Z
|
1260
|
-
:param str time_of_schedule_start: A property indicating scheduled start date expressed as date YYYY-MM-DD String. Example: `2023-04-04T00:00:00Z
|
1257
|
+
:param int rotation_interval_in_days: The interval of auto key rotation. For auto key rotation the interval should between 60 day and 365 days (1 year). Note: User must specify this parameter when creating a new schedule.
|
1258
|
+
:param str time_of_last_rotation: A property indicating Last rotation Date. Example: `2023-04-04T00:00:00Z`.
|
1259
|
+
:param str time_of_next_rotation: A property indicating Next estimated scheduled Time, as per the interval, expressed as date YYYY-MM-DD String. Example: `2023-04-04T00:00:00Z`. The time has no significance when scheduling an auto key rotation as this can be done anytime approximately the scheduled day, KMS ignores the time and replaces it with 00:00, for example 2023-04-04T15:14:13Z will be used as 2023-04-04T00:00:00Z.
|
1260
|
+
:param str time_of_schedule_start: A property indicating scheduled start date expressed as date YYYY-MM-DD String. Example: `2023-04-04T00:00:00Z. The time has no significance when scheduling an auto key rotation as this can be done anytime approximately the scheduled day, KMS ignores the time and replaces it with 00:00, for example 2023-04-04T15:14:13Z will be used as 2023-04-04T00:00:00Z . Note : Today’s date will be used if not specified by customer.
|
1261
1261
|
"""
|
1262
1262
|
pulumi.set(__self__, "last_rotation_message", last_rotation_message)
|
1263
1263
|
pulumi.set(__self__, "last_rotation_status", last_rotation_status)
|
@@ -1270,7 +1270,7 @@ class GetKeyAutoKeyRotationDetailResult(dict):
|
|
1270
1270
|
@pulumi.getter(name="lastRotationMessage")
|
1271
1271
|
def last_rotation_message(self) -> str:
|
1272
1272
|
"""
|
1273
|
-
The last execution status message.
|
1273
|
+
The last execution status message of auto key rotation.
|
1274
1274
|
"""
|
1275
1275
|
return pulumi.get(self, "last_rotation_message")
|
1276
1276
|
|
@@ -1286,7 +1286,7 @@ class GetKeyAutoKeyRotationDetailResult(dict):
|
|
1286
1286
|
@pulumi.getter(name="rotationIntervalInDays")
|
1287
1287
|
def rotation_interval_in_days(self) -> int:
|
1288
1288
|
"""
|
1289
|
-
The interval of auto key rotation. For auto key rotation the interval should between
|
1289
|
+
The interval of auto key rotation. For auto key rotation the interval should between 60 day and 365 days (1 year). Note: User must specify this parameter when creating a new schedule.
|
1290
1290
|
"""
|
1291
1291
|
return pulumi.get(self, "rotation_interval_in_days")
|
1292
1292
|
|
@@ -1294,7 +1294,7 @@ class GetKeyAutoKeyRotationDetailResult(dict):
|
|
1294
1294
|
@pulumi.getter(name="timeOfLastRotation")
|
1295
1295
|
def time_of_last_rotation(self) -> str:
|
1296
1296
|
"""
|
1297
|
-
A
|
1297
|
+
A property indicating Last rotation Date. Example: `2023-04-04T00:00:00Z`.
|
1298
1298
|
"""
|
1299
1299
|
return pulumi.get(self, "time_of_last_rotation")
|
1300
1300
|
|
@@ -1302,7 +1302,7 @@ class GetKeyAutoKeyRotationDetailResult(dict):
|
|
1302
1302
|
@pulumi.getter(name="timeOfNextRotation")
|
1303
1303
|
def time_of_next_rotation(self) -> str:
|
1304
1304
|
"""
|
1305
|
-
A property indicating Next estimated scheduled Time, as per the interval, expressed as date YYYY-MM-DD String. Example: `2023-04-04T00:00:00Z
|
1305
|
+
A property indicating Next estimated scheduled Time, as per the interval, expressed as date YYYY-MM-DD String. Example: `2023-04-04T00:00:00Z`. The time has no significance when scheduling an auto key rotation as this can be done anytime approximately the scheduled day, KMS ignores the time and replaces it with 00:00, for example 2023-04-04T15:14:13Z will be used as 2023-04-04T00:00:00Z.
|
1306
1306
|
"""
|
1307
1307
|
return pulumi.get(self, "time_of_next_rotation")
|
1308
1308
|
|
@@ -1310,7 +1310,7 @@ class GetKeyAutoKeyRotationDetailResult(dict):
|
|
1310
1310
|
@pulumi.getter(name="timeOfScheduleStart")
|
1311
1311
|
def time_of_schedule_start(self) -> str:
|
1312
1312
|
"""
|
1313
|
-
A property indicating scheduled start date expressed as date YYYY-MM-DD String. Example: `2023-04-04T00:00:00Z
|
1313
|
+
A property indicating scheduled start date expressed as date YYYY-MM-DD String. Example: `2023-04-04T00:00:00Z. The time has no significance when scheduling an auto key rotation as this can be done anytime approximately the scheduled day, KMS ignores the time and replaces it with 00:00, for example 2023-04-04T15:14:13Z will be used as 2023-04-04T00:00:00Z . Note : Today’s date will be used if not specified by customer.
|
1314
1314
|
"""
|
1315
1315
|
return pulumi.get(self, "time_of_schedule_start")
|
1316
1316
|
|
@@ -2123,12 +2123,12 @@ class GetKeysKeyAutoKeyRotationDetailResult(dict):
|
|
2123
2123
|
time_of_next_rotation: str,
|
2124
2124
|
time_of_schedule_start: str):
|
2125
2125
|
"""
|
2126
|
-
:param str last_rotation_message: The last execution status message.
|
2126
|
+
:param str last_rotation_message: The last execution status message of auto key rotation.
|
2127
2127
|
:param str last_rotation_status: The status of last execution of auto key rotation.
|
2128
|
-
:param int rotation_interval_in_days: The interval of auto key rotation. For auto key rotation the interval should between
|
2129
|
-
:param str time_of_last_rotation: A
|
2130
|
-
:param str time_of_next_rotation: A property indicating Next estimated scheduled Time, as per the interval, expressed as date YYYY-MM-DD String. Example: `2023-04-04T00:00:00Z
|
2131
|
-
:param str time_of_schedule_start: A property indicating scheduled start date expressed as date YYYY-MM-DD String. Example: `2023-04-04T00:00:00Z
|
2128
|
+
:param int rotation_interval_in_days: The interval of auto key rotation. For auto key rotation the interval should between 60 day and 365 days (1 year). Note: User must specify this parameter when creating a new schedule.
|
2129
|
+
:param str time_of_last_rotation: A property indicating Last rotation Date. Example: `2023-04-04T00:00:00Z`.
|
2130
|
+
:param str time_of_next_rotation: A property indicating Next estimated scheduled Time, as per the interval, expressed as date YYYY-MM-DD String. Example: `2023-04-04T00:00:00Z`. The time has no significance when scheduling an auto key rotation as this can be done anytime approximately the scheduled day, KMS ignores the time and replaces it with 00:00, for example 2023-04-04T15:14:13Z will be used as 2023-04-04T00:00:00Z.
|
2131
|
+
:param str time_of_schedule_start: A property indicating scheduled start date expressed as date YYYY-MM-DD String. Example: `2023-04-04T00:00:00Z. The time has no significance when scheduling an auto key rotation as this can be done anytime approximately the scheduled day, KMS ignores the time and replaces it with 00:00, for example 2023-04-04T15:14:13Z will be used as 2023-04-04T00:00:00Z . Note : Today’s date will be used if not specified by customer.
|
2132
2132
|
"""
|
2133
2133
|
pulumi.set(__self__, "last_rotation_message", last_rotation_message)
|
2134
2134
|
pulumi.set(__self__, "last_rotation_status", last_rotation_status)
|
@@ -2141,7 +2141,7 @@ class GetKeysKeyAutoKeyRotationDetailResult(dict):
|
|
2141
2141
|
@pulumi.getter(name="lastRotationMessage")
|
2142
2142
|
def last_rotation_message(self) -> str:
|
2143
2143
|
"""
|
2144
|
-
The last execution status message.
|
2144
|
+
The last execution status message of auto key rotation.
|
2145
2145
|
"""
|
2146
2146
|
return pulumi.get(self, "last_rotation_message")
|
2147
2147
|
|
@@ -2157,7 +2157,7 @@ class GetKeysKeyAutoKeyRotationDetailResult(dict):
|
|
2157
2157
|
@pulumi.getter(name="rotationIntervalInDays")
|
2158
2158
|
def rotation_interval_in_days(self) -> int:
|
2159
2159
|
"""
|
2160
|
-
The interval of auto key rotation. For auto key rotation the interval should between
|
2160
|
+
The interval of auto key rotation. For auto key rotation the interval should between 60 day and 365 days (1 year). Note: User must specify this parameter when creating a new schedule.
|
2161
2161
|
"""
|
2162
2162
|
return pulumi.get(self, "rotation_interval_in_days")
|
2163
2163
|
|
@@ -2165,7 +2165,7 @@ class GetKeysKeyAutoKeyRotationDetailResult(dict):
|
|
2165
2165
|
@pulumi.getter(name="timeOfLastRotation")
|
2166
2166
|
def time_of_last_rotation(self) -> str:
|
2167
2167
|
"""
|
2168
|
-
A
|
2168
|
+
A property indicating Last rotation Date. Example: `2023-04-04T00:00:00Z`.
|
2169
2169
|
"""
|
2170
2170
|
return pulumi.get(self, "time_of_last_rotation")
|
2171
2171
|
|
@@ -2173,7 +2173,7 @@ class GetKeysKeyAutoKeyRotationDetailResult(dict):
|
|
2173
2173
|
@pulumi.getter(name="timeOfNextRotation")
|
2174
2174
|
def time_of_next_rotation(self) -> str:
|
2175
2175
|
"""
|
2176
|
-
A property indicating Next estimated scheduled Time, as per the interval, expressed as date YYYY-MM-DD String. Example: `2023-04-04T00:00:00Z
|
2176
|
+
A property indicating Next estimated scheduled Time, as per the interval, expressed as date YYYY-MM-DD String. Example: `2023-04-04T00:00:00Z`. The time has no significance when scheduling an auto key rotation as this can be done anytime approximately the scheduled day, KMS ignores the time and replaces it with 00:00, for example 2023-04-04T15:14:13Z will be used as 2023-04-04T00:00:00Z.
|
2177
2177
|
"""
|
2178
2178
|
return pulumi.get(self, "time_of_next_rotation")
|
2179
2179
|
|
@@ -2181,7 +2181,7 @@ class GetKeysKeyAutoKeyRotationDetailResult(dict):
|
|
2181
2181
|
@pulumi.getter(name="timeOfScheduleStart")
|
2182
2182
|
def time_of_schedule_start(self) -> str:
|
2183
2183
|
"""
|
2184
|
-
A property indicating scheduled start date expressed as date YYYY-MM-DD String. Example: `2023-04-04T00:00:00Z
|
2184
|
+
A property indicating scheduled start date expressed as date YYYY-MM-DD String. Example: `2023-04-04T00:00:00Z. The time has no significance when scheduling an auto key rotation as this can be done anytime approximately the scheduled day, KMS ignores the time and replaces it with 00:00, for example 2023-04-04T15:14:13Z will be used as 2023-04-04T00:00:00Z . Note : Today’s date will be used if not specified by customer.
|
2185
2185
|
"""
|
2186
2186
|
return pulumi.get(self, "time_of_schedule_start")
|
2187
2187
|
|
@@ -2775,6 +2775,7 @@ class GetVaultsVaultResult(dict):
|
|
2775
2775
|
freeform_tags: Mapping[str, str],
|
2776
2776
|
id: str,
|
2777
2777
|
is_primary: bool,
|
2778
|
+
is_vault_replicable: bool,
|
2778
2779
|
management_endpoint: str,
|
2779
2780
|
replica_details: Sequence['outputs.GetVaultsVaultReplicaDetailResult'],
|
2780
2781
|
restore_from_files: Sequence['outputs.GetVaultsVaultRestoreFromFileResult'],
|
@@ -2794,6 +2795,7 @@ class GetVaultsVaultResult(dict):
|
|
2794
2795
|
:param Mapping[str, str] freeform_tags: Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
2795
2796
|
:param str id: The OCID of the vault.
|
2796
2797
|
:param bool is_primary: A Boolean value that indicates whether the Vault is primary Vault or replica Vault.
|
2798
|
+
:param bool is_vault_replicable: A Boolean value that indicates whether the Vault has cross region replication capability. Always true for Virtual Private Vaults.
|
2797
2799
|
:param str management_endpoint: The service endpoint to perform management operations against. Management operations include "Create," "Update," "List," "Get," and "Delete" operations.
|
2798
2800
|
:param Sequence['GetVaultsVaultReplicaDetailArgs'] replica_details: Vault replica details
|
2799
2801
|
:param str restored_from_vault_id: The OCID of the vault from which this vault was restored, if it was restored from a backup file. If you restore a vault to the same region, the vault retains the same OCID that it had when you backed up the vault.
|
@@ -2811,6 +2813,7 @@ class GetVaultsVaultResult(dict):
|
|
2811
2813
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
2812
2814
|
pulumi.set(__self__, "id", id)
|
2813
2815
|
pulumi.set(__self__, "is_primary", is_primary)
|
2816
|
+
pulumi.set(__self__, "is_vault_replicable", is_vault_replicable)
|
2814
2817
|
pulumi.set(__self__, "management_endpoint", management_endpoint)
|
2815
2818
|
pulumi.set(__self__, "replica_details", replica_details)
|
2816
2819
|
pulumi.set(__self__, "restore_from_files", restore_from_files)
|
@@ -2891,6 +2894,14 @@ class GetVaultsVaultResult(dict):
|
|
2891
2894
|
"""
|
2892
2895
|
return pulumi.get(self, "is_primary")
|
2893
2896
|
|
2897
|
+
@property
|
2898
|
+
@pulumi.getter(name="isVaultReplicable")
|
2899
|
+
def is_vault_replicable(self) -> bool:
|
2900
|
+
"""
|
2901
|
+
A Boolean value that indicates whether the Vault has cross region replication capability. Always true for Virtual Private Vaults.
|
2902
|
+
"""
|
2903
|
+
return pulumi.get(self, "is_vault_replicable")
|
2904
|
+
|
2894
2905
|
@property
|
2895
2906
|
@pulumi.getter(name="managementEndpoint")
|
2896
2907
|
def management_endpoint(self) -> str:
|