pulumi-oci 2.16.0a1731363948__py3-none-any.whl → 2.16.0a1731504509__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.
Files changed (44) hide show
  1. pulumi_oci/__init__.py +19 -0
  2. pulumi_oci/database/autonomous_database.py +47 -0
  3. pulumi_oci/database/cloud_autonomous_vm_cluster.py +105 -0
  4. pulumi_oci/database/cloud_vm_cluster.py +49 -0
  5. pulumi_oci/database/data_guard_association.py +49 -0
  6. pulumi_oci/database/db_system.py +47 -0
  7. pulumi_oci/database/exadb_vm_cluster.py +68 -7
  8. pulumi_oci/database/get_autonomous_database.py +15 -1
  9. pulumi_oci/database/get_cloud_autonomous_vm_cluster.py +43 -1
  10. pulumi_oci/database/get_cloud_vm_cluster.py +15 -1
  11. pulumi_oci/database/get_data_guard_association.py +12 -1
  12. pulumi_oci/database/get_exadb_vm_cluster.py +16 -2
  13. pulumi_oci/database/outputs.py +97 -2
  14. pulumi_oci/dataflow/get_sql_endpoint.py +1 -15
  15. pulumi_oci/dataflow/outputs.py +0 -11
  16. pulumi_oci/dataflow/sql_endpoint.py +88 -85
  17. pulumi_oci/globallydistributeddatabase/__init__.py +15 -0
  18. pulumi_oci/globallydistributeddatabase/_inputs.py +1289 -0
  19. pulumi_oci/globallydistributeddatabase/get_private_endpoint.py +348 -0
  20. pulumi_oci/globallydistributeddatabase/get_private_endpoints.py +191 -0
  21. pulumi_oci/globallydistributeddatabase/get_sharded_database.py +746 -0
  22. pulumi_oci/globallydistributeddatabase/get_sharded_databases.py +191 -0
  23. pulumi_oci/globallydistributeddatabase/outputs.py +2114 -0
  24. pulumi_oci/globallydistributeddatabase/private_endpoint.py +822 -0
  25. pulumi_oci/globallydistributeddatabase/sharded_database.py +2157 -0
  26. pulumi_oci/identity/__init__.py +2 -0
  27. pulumi_oci/identity/_inputs.py +55 -6
  28. pulumi_oci/identity/domains_condition.py +9 -2
  29. pulumi_oci/identity/domains_policy.py +9 -2
  30. pulumi_oci/identity/domains_rule.py +9 -2
  31. pulumi_oci/identity/get_domains_condition.py +2 -2
  32. pulumi_oci/identity/get_domains_conditions.py +2 -2
  33. pulumi_oci/identity/get_domains_oci_console_sign_on_policy_consent.py +503 -0
  34. pulumi_oci/identity/get_domains_oci_console_sign_on_policy_consents.py +338 -0
  35. pulumi_oci/identity/get_domains_policies.py +2 -2
  36. pulumi_oci/identity/get_domains_policy.py +2 -2
  37. pulumi_oci/identity/get_domains_rule.py +2 -2
  38. pulumi_oci/identity/get_domains_rules.py +2 -2
  39. pulumi_oci/identity/outputs.py +917 -4
  40. pulumi_oci/pulumi-plugin.json +1 -1
  41. {pulumi_oci-2.16.0a1731363948.dist-info → pulumi_oci-2.16.0a1731504509.dist-info}/METADATA +1 -1
  42. {pulumi_oci-2.16.0a1731363948.dist-info → pulumi_oci-2.16.0a1731504509.dist-info}/RECORD +44 -33
  43. {pulumi_oci-2.16.0a1731363948.dist-info → pulumi_oci-2.16.0a1731504509.dist-info}/WHEEL +1 -1
  44. {pulumi_oci-2.16.0a1731363948.dist-info → pulumi_oci-2.16.0a1731504509.dist-info}/top_level.txt +0 -0
@@ -1197,6 +1197,22 @@ __all__ = [
1197
1197
  'GetDomainsOauthPartnerCertificatesOauthPartnerCertificateIdcsLastModifiedByResult',
1198
1198
  'GetDomainsOauthPartnerCertificatesOauthPartnerCertificateMetaResult',
1199
1199
  'GetDomainsOauthPartnerCertificatesOauthPartnerCertificateTagResult',
1200
+ 'GetDomainsOciConsoleSignOnPolicyConsentConsentSignedByResult',
1201
+ 'GetDomainsOciConsoleSignOnPolicyConsentIdcsCreatedByResult',
1202
+ 'GetDomainsOciConsoleSignOnPolicyConsentIdcsLastModifiedByResult',
1203
+ 'GetDomainsOciConsoleSignOnPolicyConsentMetaResult',
1204
+ 'GetDomainsOciConsoleSignOnPolicyConsentModifiedResourceResult',
1205
+ 'GetDomainsOciConsoleSignOnPolicyConsentPolicyResourceResult',
1206
+ 'GetDomainsOciConsoleSignOnPolicyConsentTagResult',
1207
+ 'GetDomainsOciConsoleSignOnPolicyConsentsFilterResult',
1208
+ 'GetDomainsOciConsoleSignOnPolicyConsentsResourceResult',
1209
+ 'GetDomainsOciConsoleSignOnPolicyConsentsResourceConsentSignedByResult',
1210
+ 'GetDomainsOciConsoleSignOnPolicyConsentsResourceIdcsCreatedByResult',
1211
+ 'GetDomainsOciConsoleSignOnPolicyConsentsResourceIdcsLastModifiedByResult',
1212
+ 'GetDomainsOciConsoleSignOnPolicyConsentsResourceMetaResult',
1213
+ 'GetDomainsOciConsoleSignOnPolicyConsentsResourceModifiedResourceResult',
1214
+ 'GetDomainsOciConsoleSignOnPolicyConsentsResourcePolicyResourceResult',
1215
+ 'GetDomainsOciConsoleSignOnPolicyConsentsTagResult',
1200
1216
  'GetDomainsPasswordPoliciesPasswordPolicyResult',
1201
1217
  'GetDomainsPasswordPoliciesPasswordPolicyConfiguredPasswordPolicyRuleResult',
1202
1218
  'GetDomainsPasswordPoliciesPasswordPolicyGroupResult',
@@ -47535,7 +47551,7 @@ class DomainsPolicyPolicyType(dict):
47535
47551
  value: str,
47536
47552
  ref: Optional[str] = None):
47537
47553
  """
47538
- :param str value: (Updatable) PolicyType identifier
47554
+ :param str value: (Updatable) PolicyType identifier.
47539
47555
 
47540
47556
  **SCIM++ Properties:**
47541
47557
  * caseExact: true
@@ -47565,7 +47581,7 @@ class DomainsPolicyPolicyType(dict):
47565
47581
  @pulumi.getter
47566
47582
  def value(self) -> str:
47567
47583
  """
47568
- (Updatable) PolicyType identifier
47584
+ (Updatable) PolicyType identifier.
47569
47585
 
47570
47586
  **SCIM++ Properties:**
47571
47587
  * caseExact: true
@@ -47842,7 +47858,7 @@ class DomainsRuleConditionGroup(dict):
47842
47858
  * returned: default
47843
47859
  * type: reference
47844
47860
  * uniqueness: none
47845
- :param str value: (Updatable) Condition or ConditionGroup identifier
47861
+ :param str value: (Updatable) Condition or ConditionGroup identifier.
47846
47862
 
47847
47863
  **SCIM++ Properties:**
47848
47864
  * caseExact: true
@@ -47920,7 +47936,7 @@ class DomainsRuleConditionGroup(dict):
47920
47936
  @pulumi.getter
47921
47937
  def value(self) -> Optional[str]:
47922
47938
  """
47923
- (Updatable) Condition or ConditionGroup identifier
47939
+ (Updatable) Condition or ConditionGroup identifier.
47924
47940
 
47925
47941
  **SCIM++ Properties:**
47926
47942
  * caseExact: true
@@ -120194,6 +120210,903 @@ class GetDomainsOauthPartnerCertificatesOauthPartnerCertificateTagResult(dict):
120194
120210
  return pulumi.get(self, "value")
120195
120211
 
120196
120212
 
120213
+ @pulumi.output_type
120214
+ class GetDomainsOciConsoleSignOnPolicyConsentConsentSignedByResult(dict):
120215
+ def __init__(__self__, *,
120216
+ display_name: str,
120217
+ ocid: str,
120218
+ type: str,
120219
+ value: str):
120220
+ """
120221
+ :param str display_name: Name of the User or App that signed consent.
120222
+ :param str ocid: Policy Resource Ocid
120223
+ :param str type: The Modified Resource type - Policy, Rule, ConditionGroup, or Condition. A label that indicates the resource type.
120224
+ :param str value: Value of the tag.
120225
+ """
120226
+ pulumi.set(__self__, "display_name", display_name)
120227
+ pulumi.set(__self__, "ocid", ocid)
120228
+ pulumi.set(__self__, "type", type)
120229
+ pulumi.set(__self__, "value", value)
120230
+
120231
+ @property
120232
+ @pulumi.getter(name="displayName")
120233
+ def display_name(self) -> str:
120234
+ """
120235
+ Name of the User or App that signed consent.
120236
+ """
120237
+ return pulumi.get(self, "display_name")
120238
+
120239
+ @property
120240
+ @pulumi.getter
120241
+ def ocid(self) -> str:
120242
+ """
120243
+ Policy Resource Ocid
120244
+ """
120245
+ return pulumi.get(self, "ocid")
120246
+
120247
+ @property
120248
+ @pulumi.getter
120249
+ def type(self) -> str:
120250
+ """
120251
+ The Modified Resource type - Policy, Rule, ConditionGroup, or Condition. A label that indicates the resource type.
120252
+ """
120253
+ return pulumi.get(self, "type")
120254
+
120255
+ @property
120256
+ @pulumi.getter
120257
+ def value(self) -> str:
120258
+ """
120259
+ Value of the tag.
120260
+ """
120261
+ return pulumi.get(self, "value")
120262
+
120263
+
120264
+ @pulumi.output_type
120265
+ class GetDomainsOciConsoleSignOnPolicyConsentIdcsCreatedByResult(dict):
120266
+ def __init__(__self__, *,
120267
+ display: str,
120268
+ ocid: str,
120269
+ ref: str,
120270
+ type: str,
120271
+ value: str):
120272
+ """
120273
+ :param str display: The displayName of the User or App who modified this Resource
120274
+ :param str ocid: Policy Resource Ocid
120275
+ :param str type: The Modified Resource type - Policy, Rule, ConditionGroup, or Condition. A label that indicates the resource type.
120276
+ :param str value: Value of the tag.
120277
+ """
120278
+ pulumi.set(__self__, "display", display)
120279
+ pulumi.set(__self__, "ocid", ocid)
120280
+ pulumi.set(__self__, "ref", ref)
120281
+ pulumi.set(__self__, "type", type)
120282
+ pulumi.set(__self__, "value", value)
120283
+
120284
+ @property
120285
+ @pulumi.getter
120286
+ def display(self) -> str:
120287
+ """
120288
+ The displayName of the User or App who modified this Resource
120289
+ """
120290
+ return pulumi.get(self, "display")
120291
+
120292
+ @property
120293
+ @pulumi.getter
120294
+ def ocid(self) -> str:
120295
+ """
120296
+ Policy Resource Ocid
120297
+ """
120298
+ return pulumi.get(self, "ocid")
120299
+
120300
+ @property
120301
+ @pulumi.getter
120302
+ def ref(self) -> str:
120303
+ return pulumi.get(self, "ref")
120304
+
120305
+ @property
120306
+ @pulumi.getter
120307
+ def type(self) -> str:
120308
+ """
120309
+ The Modified Resource type - Policy, Rule, ConditionGroup, or Condition. A label that indicates the resource type.
120310
+ """
120311
+ return pulumi.get(self, "type")
120312
+
120313
+ @property
120314
+ @pulumi.getter
120315
+ def value(self) -> str:
120316
+ """
120317
+ Value of the tag.
120318
+ """
120319
+ return pulumi.get(self, "value")
120320
+
120321
+
120322
+ @pulumi.output_type
120323
+ class GetDomainsOciConsoleSignOnPolicyConsentIdcsLastModifiedByResult(dict):
120324
+ def __init__(__self__, *,
120325
+ display: str,
120326
+ ocid: str,
120327
+ ref: str,
120328
+ type: str,
120329
+ value: str):
120330
+ """
120331
+ :param str display: The displayName of the User or App who modified this Resource
120332
+ :param str ocid: Policy Resource Ocid
120333
+ :param str type: The Modified Resource type - Policy, Rule, ConditionGroup, or Condition. A label that indicates the resource type.
120334
+ :param str value: Value of the tag.
120335
+ """
120336
+ pulumi.set(__self__, "display", display)
120337
+ pulumi.set(__self__, "ocid", ocid)
120338
+ pulumi.set(__self__, "ref", ref)
120339
+ pulumi.set(__self__, "type", type)
120340
+ pulumi.set(__self__, "value", value)
120341
+
120342
+ @property
120343
+ @pulumi.getter
120344
+ def display(self) -> str:
120345
+ """
120346
+ The displayName of the User or App who modified this Resource
120347
+ """
120348
+ return pulumi.get(self, "display")
120349
+
120350
+ @property
120351
+ @pulumi.getter
120352
+ def ocid(self) -> str:
120353
+ """
120354
+ Policy Resource Ocid
120355
+ """
120356
+ return pulumi.get(self, "ocid")
120357
+
120358
+ @property
120359
+ @pulumi.getter
120360
+ def ref(self) -> str:
120361
+ return pulumi.get(self, "ref")
120362
+
120363
+ @property
120364
+ @pulumi.getter
120365
+ def type(self) -> str:
120366
+ """
120367
+ The Modified Resource type - Policy, Rule, ConditionGroup, or Condition. A label that indicates the resource type.
120368
+ """
120369
+ return pulumi.get(self, "type")
120370
+
120371
+ @property
120372
+ @pulumi.getter
120373
+ def value(self) -> str:
120374
+ """
120375
+ Value of the tag.
120376
+ """
120377
+ return pulumi.get(self, "value")
120378
+
120379
+
120380
+ @pulumi.output_type
120381
+ class GetDomainsOciConsoleSignOnPolicyConsentMetaResult(dict):
120382
+ def __init__(__self__, *,
120383
+ created: str,
120384
+ last_modified: str,
120385
+ location: str,
120386
+ resource_type: str,
120387
+ version: str):
120388
+ """
120389
+ :param str created: The DateTime the Resource was added to the Service Provider
120390
+ :param str last_modified: The most recent DateTime that the details of this Resource were updated at the Service Provider. If this Resource has never been modified since its initial creation, the value MUST be the same as the value of created. The attribute MUST be a DateTime.
120391
+ :param str location: The URI of the Resource being returned. This value MUST be the same as the Location HTTP response header.
120392
+ :param str resource_type: Name of the resource type of the resource--for example, Users or Groups
120393
+ :param str version: The version of the Resource being returned. This value must be the same as the ETag HTTP response header.
120394
+ """
120395
+ pulumi.set(__self__, "created", created)
120396
+ pulumi.set(__self__, "last_modified", last_modified)
120397
+ pulumi.set(__self__, "location", location)
120398
+ pulumi.set(__self__, "resource_type", resource_type)
120399
+ pulumi.set(__self__, "version", version)
120400
+
120401
+ @property
120402
+ @pulumi.getter
120403
+ def created(self) -> str:
120404
+ """
120405
+ The DateTime the Resource was added to the Service Provider
120406
+ """
120407
+ return pulumi.get(self, "created")
120408
+
120409
+ @property
120410
+ @pulumi.getter(name="lastModified")
120411
+ def last_modified(self) -> str:
120412
+ """
120413
+ The most recent DateTime that the details of this Resource were updated at the Service Provider. If this Resource has never been modified since its initial creation, the value MUST be the same as the value of created. The attribute MUST be a DateTime.
120414
+ """
120415
+ return pulumi.get(self, "last_modified")
120416
+
120417
+ @property
120418
+ @pulumi.getter
120419
+ def location(self) -> str:
120420
+ """
120421
+ The URI of the Resource being returned. This value MUST be the same as the Location HTTP response header.
120422
+ """
120423
+ return pulumi.get(self, "location")
120424
+
120425
+ @property
120426
+ @pulumi.getter(name="resourceType")
120427
+ def resource_type(self) -> str:
120428
+ """
120429
+ Name of the resource type of the resource--for example, Users or Groups
120430
+ """
120431
+ return pulumi.get(self, "resource_type")
120432
+
120433
+ @property
120434
+ @pulumi.getter
120435
+ def version(self) -> str:
120436
+ """
120437
+ The version of the Resource being returned. This value must be the same as the ETag HTTP response header.
120438
+ """
120439
+ return pulumi.get(self, "version")
120440
+
120441
+
120442
+ @pulumi.output_type
120443
+ class GetDomainsOciConsoleSignOnPolicyConsentModifiedResourceResult(dict):
120444
+ def __init__(__self__, *,
120445
+ ocid: str,
120446
+ type: str,
120447
+ value: str):
120448
+ """
120449
+ :param str ocid: Policy Resource Ocid
120450
+ :param str type: The Modified Resource type - Policy, Rule, ConditionGroup, or Condition. A label that indicates the resource type.
120451
+ :param str value: Value of the tag.
120452
+ """
120453
+ pulumi.set(__self__, "ocid", ocid)
120454
+ pulumi.set(__self__, "type", type)
120455
+ pulumi.set(__self__, "value", value)
120456
+
120457
+ @property
120458
+ @pulumi.getter
120459
+ def ocid(self) -> str:
120460
+ """
120461
+ Policy Resource Ocid
120462
+ """
120463
+ return pulumi.get(self, "ocid")
120464
+
120465
+ @property
120466
+ @pulumi.getter
120467
+ def type(self) -> str:
120468
+ """
120469
+ The Modified Resource type - Policy, Rule, ConditionGroup, or Condition. A label that indicates the resource type.
120470
+ """
120471
+ return pulumi.get(self, "type")
120472
+
120473
+ @property
120474
+ @pulumi.getter
120475
+ def value(self) -> str:
120476
+ """
120477
+ Value of the tag.
120478
+ """
120479
+ return pulumi.get(self, "value")
120480
+
120481
+
120482
+ @pulumi.output_type
120483
+ class GetDomainsOciConsoleSignOnPolicyConsentPolicyResourceResult(dict):
120484
+ def __init__(__self__, *,
120485
+ ocid: str,
120486
+ value: str):
120487
+ """
120488
+ :param str ocid: Policy Resource Ocid
120489
+ :param str value: Value of the tag.
120490
+ """
120491
+ pulumi.set(__self__, "ocid", ocid)
120492
+ pulumi.set(__self__, "value", value)
120493
+
120494
+ @property
120495
+ @pulumi.getter
120496
+ def ocid(self) -> str:
120497
+ """
120498
+ Policy Resource Ocid
120499
+ """
120500
+ return pulumi.get(self, "ocid")
120501
+
120502
+ @property
120503
+ @pulumi.getter
120504
+ def value(self) -> str:
120505
+ """
120506
+ Value of the tag.
120507
+ """
120508
+ return pulumi.get(self, "value")
120509
+
120510
+
120511
+ @pulumi.output_type
120512
+ class GetDomainsOciConsoleSignOnPolicyConsentTagResult(dict):
120513
+ def __init__(__self__, *,
120514
+ key: str,
120515
+ value: str):
120516
+ """
120517
+ :param str key: Key or name of the tag.
120518
+ :param str value: Value of the tag.
120519
+ """
120520
+ pulumi.set(__self__, "key", key)
120521
+ pulumi.set(__self__, "value", value)
120522
+
120523
+ @property
120524
+ @pulumi.getter
120525
+ def key(self) -> str:
120526
+ """
120527
+ Key or name of the tag.
120528
+ """
120529
+ return pulumi.get(self, "key")
120530
+
120531
+ @property
120532
+ @pulumi.getter
120533
+ def value(self) -> str:
120534
+ """
120535
+ Value of the tag.
120536
+ """
120537
+ return pulumi.get(self, "value")
120538
+
120539
+
120540
+ @pulumi.output_type
120541
+ class GetDomainsOciConsoleSignOnPolicyConsentsFilterResult(dict):
120542
+ def __init__(__self__, *,
120543
+ name: str,
120544
+ values: Sequence[str],
120545
+ regex: Optional[bool] = None):
120546
+ pulumi.set(__self__, "name", name)
120547
+ pulumi.set(__self__, "values", values)
120548
+ if regex is not None:
120549
+ pulumi.set(__self__, "regex", regex)
120550
+
120551
+ @property
120552
+ @pulumi.getter
120553
+ def name(self) -> str:
120554
+ return pulumi.get(self, "name")
120555
+
120556
+ @property
120557
+ @pulumi.getter
120558
+ def values(self) -> Sequence[str]:
120559
+ return pulumi.get(self, "values")
120560
+
120561
+ @property
120562
+ @pulumi.getter
120563
+ def regex(self) -> Optional[bool]:
120564
+ return pulumi.get(self, "regex")
120565
+
120566
+
120567
+ @pulumi.output_type
120568
+ class GetDomainsOciConsoleSignOnPolicyConsentsResourceResult(dict):
120569
+ def __init__(__self__, *,
120570
+ change_type: str,
120571
+ client_ip: str,
120572
+ compartment_ocid: str,
120573
+ consent_signed_bies: Sequence['outputs.GetDomainsOciConsoleSignOnPolicyConsentsResourceConsentSignedByResult'],
120574
+ domain_ocid: str,
120575
+ id: str,
120576
+ idcs_created_bies: Sequence['outputs.GetDomainsOciConsoleSignOnPolicyConsentsResourceIdcsCreatedByResult'],
120577
+ idcs_last_modified_bies: Sequence['outputs.GetDomainsOciConsoleSignOnPolicyConsentsResourceIdcsLastModifiedByResult'],
120578
+ idcs_last_upgraded_in_release: str,
120579
+ idcs_prevented_operations: Sequence[str],
120580
+ justification: str,
120581
+ metas: Sequence['outputs.GetDomainsOciConsoleSignOnPolicyConsentsResourceMetaResult'],
120582
+ modified_resources: Sequence['outputs.GetDomainsOciConsoleSignOnPolicyConsentsResourceModifiedResourceResult'],
120583
+ notification_recipients: Sequence[str],
120584
+ ocid: str,
120585
+ policy_resources: Sequence['outputs.GetDomainsOciConsoleSignOnPolicyConsentsResourcePolicyResourceResult'],
120586
+ reason: str,
120587
+ tenancy_ocid: str,
120588
+ time_consent_signed: str):
120589
+ """
120590
+ :param str change_type: Change Type - MODIFIED or RESTORED_TO_FACTORY_DEFAULT
120591
+ :param str client_ip: Client IP of the Consent Signer
120592
+ :param str compartment_ocid: Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
120593
+ :param Sequence['GetDomainsOciConsoleSignOnPolicyConsentsResourceConsentSignedByArgs'] consent_signed_bies: User or App that signs the consent.
120594
+ :param str domain_ocid: Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
120595
+ :param str id: Unique identifier for the SCIM Resource as defined by the Service Provider. Each representation of the Resource MUST include a non-empty id value. This identifier MUST be unique across the Service Provider's entire set of Resources. It MUST be a stable, non-reassignable identifier that does not change when the same Resource is returned in subsequent requests. The value of the id attribute is always issued by the Service Provider and MUST never be specified by the Service Consumer. bulkId: is a reserved keyword and MUST NOT be used in the unique identifier.
120596
+ :param Sequence['GetDomainsOciConsoleSignOnPolicyConsentsResourceIdcsCreatedByArgs'] idcs_created_bies: The User or App who created the Resource
120597
+ :param Sequence['GetDomainsOciConsoleSignOnPolicyConsentsResourceIdcsLastModifiedByArgs'] idcs_last_modified_bies: The User or App who modified the Resource
120598
+ :param str idcs_last_upgraded_in_release: The release number when the resource was upgraded.
120599
+ :param Sequence[str] idcs_prevented_operations: Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
120600
+ :param str justification: The justification for the change when an identity domain administrator opts to modify the Oracle security defaults for the "Security Policy for Oracle Cloud Infrastructure Console" sign-on policy shipped by Oracle.
120601
+ :param Sequence['GetDomainsOciConsoleSignOnPolicyConsentsResourceMetaArgs'] metas: A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
120602
+ :param Sequence['GetDomainsOciConsoleSignOnPolicyConsentsResourceModifiedResourceArgs'] modified_resources: The modified Policy, Rule, ConditionGroup or Condition during consent signing.
120603
+ :param Sequence[str] notification_recipients: The recipients of the email notification for the change in consent.
120604
+ :param str ocid: Policy Resource Ocid
120605
+ :param Sequence['GetDomainsOciConsoleSignOnPolicyConsentsResourcePolicyResourceArgs'] policy_resources: Policy Resource
120606
+ :param str reason: The detailed reason for the change when an identity domain administrator opts to modify the Oracle security defaults for the "Security Policy for Oracle Cloud Infrastructure Console" sign-on policy shipped by Oracle.
120607
+ :param str tenancy_ocid: Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
120608
+ :param str time_consent_signed: Time when Consent was signed.
120609
+ """
120610
+ pulumi.set(__self__, "change_type", change_type)
120611
+ pulumi.set(__self__, "client_ip", client_ip)
120612
+ pulumi.set(__self__, "compartment_ocid", compartment_ocid)
120613
+ pulumi.set(__self__, "consent_signed_bies", consent_signed_bies)
120614
+ pulumi.set(__self__, "domain_ocid", domain_ocid)
120615
+ pulumi.set(__self__, "id", id)
120616
+ pulumi.set(__self__, "idcs_created_bies", idcs_created_bies)
120617
+ pulumi.set(__self__, "idcs_last_modified_bies", idcs_last_modified_bies)
120618
+ pulumi.set(__self__, "idcs_last_upgraded_in_release", idcs_last_upgraded_in_release)
120619
+ pulumi.set(__self__, "idcs_prevented_operations", idcs_prevented_operations)
120620
+ pulumi.set(__self__, "justification", justification)
120621
+ pulumi.set(__self__, "metas", metas)
120622
+ pulumi.set(__self__, "modified_resources", modified_resources)
120623
+ pulumi.set(__self__, "notification_recipients", notification_recipients)
120624
+ pulumi.set(__self__, "ocid", ocid)
120625
+ pulumi.set(__self__, "policy_resources", policy_resources)
120626
+ pulumi.set(__self__, "reason", reason)
120627
+ pulumi.set(__self__, "tenancy_ocid", tenancy_ocid)
120628
+ pulumi.set(__self__, "time_consent_signed", time_consent_signed)
120629
+
120630
+ @property
120631
+ @pulumi.getter(name="changeType")
120632
+ def change_type(self) -> str:
120633
+ """
120634
+ Change Type - MODIFIED or RESTORED_TO_FACTORY_DEFAULT
120635
+ """
120636
+ return pulumi.get(self, "change_type")
120637
+
120638
+ @property
120639
+ @pulumi.getter(name="clientIp")
120640
+ def client_ip(self) -> str:
120641
+ """
120642
+ Client IP of the Consent Signer
120643
+ """
120644
+ return pulumi.get(self, "client_ip")
120645
+
120646
+ @property
120647
+ @pulumi.getter(name="compartmentOcid")
120648
+ def compartment_ocid(self) -> str:
120649
+ """
120650
+ Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
120651
+ """
120652
+ return pulumi.get(self, "compartment_ocid")
120653
+
120654
+ @property
120655
+ @pulumi.getter(name="consentSignedBies")
120656
+ def consent_signed_bies(self) -> Sequence['outputs.GetDomainsOciConsoleSignOnPolicyConsentsResourceConsentSignedByResult']:
120657
+ """
120658
+ User or App that signs the consent.
120659
+ """
120660
+ return pulumi.get(self, "consent_signed_bies")
120661
+
120662
+ @property
120663
+ @pulumi.getter(name="domainOcid")
120664
+ def domain_ocid(self) -> str:
120665
+ """
120666
+ Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
120667
+ """
120668
+ return pulumi.get(self, "domain_ocid")
120669
+
120670
+ @property
120671
+ @pulumi.getter
120672
+ def id(self) -> str:
120673
+ """
120674
+ Unique identifier for the SCIM Resource as defined by the Service Provider. Each representation of the Resource MUST include a non-empty id value. This identifier MUST be unique across the Service Provider's entire set of Resources. It MUST be a stable, non-reassignable identifier that does not change when the same Resource is returned in subsequent requests. The value of the id attribute is always issued by the Service Provider and MUST never be specified by the Service Consumer. bulkId: is a reserved keyword and MUST NOT be used in the unique identifier.
120675
+ """
120676
+ return pulumi.get(self, "id")
120677
+
120678
+ @property
120679
+ @pulumi.getter(name="idcsCreatedBies")
120680
+ def idcs_created_bies(self) -> Sequence['outputs.GetDomainsOciConsoleSignOnPolicyConsentsResourceIdcsCreatedByResult']:
120681
+ """
120682
+ The User or App who created the Resource
120683
+ """
120684
+ return pulumi.get(self, "idcs_created_bies")
120685
+
120686
+ @property
120687
+ @pulumi.getter(name="idcsLastModifiedBies")
120688
+ def idcs_last_modified_bies(self) -> Sequence['outputs.GetDomainsOciConsoleSignOnPolicyConsentsResourceIdcsLastModifiedByResult']:
120689
+ """
120690
+ The User or App who modified the Resource
120691
+ """
120692
+ return pulumi.get(self, "idcs_last_modified_bies")
120693
+
120694
+ @property
120695
+ @pulumi.getter(name="idcsLastUpgradedInRelease")
120696
+ def idcs_last_upgraded_in_release(self) -> str:
120697
+ """
120698
+ The release number when the resource was upgraded.
120699
+ """
120700
+ return pulumi.get(self, "idcs_last_upgraded_in_release")
120701
+
120702
+ @property
120703
+ @pulumi.getter(name="idcsPreventedOperations")
120704
+ def idcs_prevented_operations(self) -> Sequence[str]:
120705
+ """
120706
+ Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
120707
+ """
120708
+ return pulumi.get(self, "idcs_prevented_operations")
120709
+
120710
+ @property
120711
+ @pulumi.getter
120712
+ def justification(self) -> str:
120713
+ """
120714
+ The justification for the change when an identity domain administrator opts to modify the Oracle security defaults for the "Security Policy for Oracle Cloud Infrastructure Console" sign-on policy shipped by Oracle.
120715
+ """
120716
+ return pulumi.get(self, "justification")
120717
+
120718
+ @property
120719
+ @pulumi.getter
120720
+ def metas(self) -> Sequence['outputs.GetDomainsOciConsoleSignOnPolicyConsentsResourceMetaResult']:
120721
+ """
120722
+ A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
120723
+ """
120724
+ return pulumi.get(self, "metas")
120725
+
120726
+ @property
120727
+ @pulumi.getter(name="modifiedResources")
120728
+ def modified_resources(self) -> Sequence['outputs.GetDomainsOciConsoleSignOnPolicyConsentsResourceModifiedResourceResult']:
120729
+ """
120730
+ The modified Policy, Rule, ConditionGroup or Condition during consent signing.
120731
+ """
120732
+ return pulumi.get(self, "modified_resources")
120733
+
120734
+ @property
120735
+ @pulumi.getter(name="notificationRecipients")
120736
+ def notification_recipients(self) -> Sequence[str]:
120737
+ """
120738
+ The recipients of the email notification for the change in consent.
120739
+ """
120740
+ return pulumi.get(self, "notification_recipients")
120741
+
120742
+ @property
120743
+ @pulumi.getter
120744
+ def ocid(self) -> str:
120745
+ """
120746
+ Policy Resource Ocid
120747
+ """
120748
+ return pulumi.get(self, "ocid")
120749
+
120750
+ @property
120751
+ @pulumi.getter(name="policyResources")
120752
+ def policy_resources(self) -> Sequence['outputs.GetDomainsOciConsoleSignOnPolicyConsentsResourcePolicyResourceResult']:
120753
+ """
120754
+ Policy Resource
120755
+ """
120756
+ return pulumi.get(self, "policy_resources")
120757
+
120758
+ @property
120759
+ @pulumi.getter
120760
+ def reason(self) -> str:
120761
+ """
120762
+ The detailed reason for the change when an identity domain administrator opts to modify the Oracle security defaults for the "Security Policy for Oracle Cloud Infrastructure Console" sign-on policy shipped by Oracle.
120763
+ """
120764
+ return pulumi.get(self, "reason")
120765
+
120766
+ @property
120767
+ @pulumi.getter(name="tenancyOcid")
120768
+ def tenancy_ocid(self) -> str:
120769
+ """
120770
+ Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
120771
+ """
120772
+ return pulumi.get(self, "tenancy_ocid")
120773
+
120774
+ @property
120775
+ @pulumi.getter(name="timeConsentSigned")
120776
+ def time_consent_signed(self) -> str:
120777
+ """
120778
+ Time when Consent was signed.
120779
+ """
120780
+ return pulumi.get(self, "time_consent_signed")
120781
+
120782
+
120783
+ @pulumi.output_type
120784
+ class GetDomainsOciConsoleSignOnPolicyConsentsResourceConsentSignedByResult(dict):
120785
+ def __init__(__self__, *,
120786
+ display_name: str,
120787
+ ocid: str,
120788
+ type: str,
120789
+ value: str):
120790
+ """
120791
+ :param str display_name: Name of the User or App that signed consent.
120792
+ :param str ocid: Policy Resource Ocid
120793
+ :param str type: The Modified Resource type - Policy, Rule, ConditionGroup, or Condition. A label that indicates the resource type.
120794
+ :param str value: Value of the tag.
120795
+ """
120796
+ pulumi.set(__self__, "display_name", display_name)
120797
+ pulumi.set(__self__, "ocid", ocid)
120798
+ pulumi.set(__self__, "type", type)
120799
+ pulumi.set(__self__, "value", value)
120800
+
120801
+ @property
120802
+ @pulumi.getter(name="displayName")
120803
+ def display_name(self) -> str:
120804
+ """
120805
+ Name of the User or App that signed consent.
120806
+ """
120807
+ return pulumi.get(self, "display_name")
120808
+
120809
+ @property
120810
+ @pulumi.getter
120811
+ def ocid(self) -> str:
120812
+ """
120813
+ Policy Resource Ocid
120814
+ """
120815
+ return pulumi.get(self, "ocid")
120816
+
120817
+ @property
120818
+ @pulumi.getter
120819
+ def type(self) -> str:
120820
+ """
120821
+ The Modified Resource type - Policy, Rule, ConditionGroup, or Condition. A label that indicates the resource type.
120822
+ """
120823
+ return pulumi.get(self, "type")
120824
+
120825
+ @property
120826
+ @pulumi.getter
120827
+ def value(self) -> str:
120828
+ """
120829
+ Value of the tag.
120830
+ """
120831
+ return pulumi.get(self, "value")
120832
+
120833
+
120834
+ @pulumi.output_type
120835
+ class GetDomainsOciConsoleSignOnPolicyConsentsResourceIdcsCreatedByResult(dict):
120836
+ def __init__(__self__, *,
120837
+ display: str,
120838
+ ocid: str,
120839
+ ref: str,
120840
+ type: str,
120841
+ value: str):
120842
+ """
120843
+ :param str display: The displayName of the User or App who modified this Resource
120844
+ :param str ocid: Policy Resource Ocid
120845
+ :param str type: The Modified Resource type - Policy, Rule, ConditionGroup, or Condition. A label that indicates the resource type.
120846
+ :param str value: Value of the tag.
120847
+ """
120848
+ pulumi.set(__self__, "display", display)
120849
+ pulumi.set(__self__, "ocid", ocid)
120850
+ pulumi.set(__self__, "ref", ref)
120851
+ pulumi.set(__self__, "type", type)
120852
+ pulumi.set(__self__, "value", value)
120853
+
120854
+ @property
120855
+ @pulumi.getter
120856
+ def display(self) -> str:
120857
+ """
120858
+ The displayName of the User or App who modified this Resource
120859
+ """
120860
+ return pulumi.get(self, "display")
120861
+
120862
+ @property
120863
+ @pulumi.getter
120864
+ def ocid(self) -> str:
120865
+ """
120866
+ Policy Resource Ocid
120867
+ """
120868
+ return pulumi.get(self, "ocid")
120869
+
120870
+ @property
120871
+ @pulumi.getter
120872
+ def ref(self) -> str:
120873
+ return pulumi.get(self, "ref")
120874
+
120875
+ @property
120876
+ @pulumi.getter
120877
+ def type(self) -> str:
120878
+ """
120879
+ The Modified Resource type - Policy, Rule, ConditionGroup, or Condition. A label that indicates the resource type.
120880
+ """
120881
+ return pulumi.get(self, "type")
120882
+
120883
+ @property
120884
+ @pulumi.getter
120885
+ def value(self) -> str:
120886
+ """
120887
+ Value of the tag.
120888
+ """
120889
+ return pulumi.get(self, "value")
120890
+
120891
+
120892
+ @pulumi.output_type
120893
+ class GetDomainsOciConsoleSignOnPolicyConsentsResourceIdcsLastModifiedByResult(dict):
120894
+ def __init__(__self__, *,
120895
+ display: str,
120896
+ ocid: str,
120897
+ ref: str,
120898
+ type: str,
120899
+ value: str):
120900
+ """
120901
+ :param str display: The displayName of the User or App who modified this Resource
120902
+ :param str ocid: Policy Resource Ocid
120903
+ :param str type: The Modified Resource type - Policy, Rule, ConditionGroup, or Condition. A label that indicates the resource type.
120904
+ :param str value: Value of the tag.
120905
+ """
120906
+ pulumi.set(__self__, "display", display)
120907
+ pulumi.set(__self__, "ocid", ocid)
120908
+ pulumi.set(__self__, "ref", ref)
120909
+ pulumi.set(__self__, "type", type)
120910
+ pulumi.set(__self__, "value", value)
120911
+
120912
+ @property
120913
+ @pulumi.getter
120914
+ def display(self) -> str:
120915
+ """
120916
+ The displayName of the User or App who modified this Resource
120917
+ """
120918
+ return pulumi.get(self, "display")
120919
+
120920
+ @property
120921
+ @pulumi.getter
120922
+ def ocid(self) -> str:
120923
+ """
120924
+ Policy Resource Ocid
120925
+ """
120926
+ return pulumi.get(self, "ocid")
120927
+
120928
+ @property
120929
+ @pulumi.getter
120930
+ def ref(self) -> str:
120931
+ return pulumi.get(self, "ref")
120932
+
120933
+ @property
120934
+ @pulumi.getter
120935
+ def type(self) -> str:
120936
+ """
120937
+ The Modified Resource type - Policy, Rule, ConditionGroup, or Condition. A label that indicates the resource type.
120938
+ """
120939
+ return pulumi.get(self, "type")
120940
+
120941
+ @property
120942
+ @pulumi.getter
120943
+ def value(self) -> str:
120944
+ """
120945
+ Value of the tag.
120946
+ """
120947
+ return pulumi.get(self, "value")
120948
+
120949
+
120950
+ @pulumi.output_type
120951
+ class GetDomainsOciConsoleSignOnPolicyConsentsResourceMetaResult(dict):
120952
+ def __init__(__self__, *,
120953
+ created: str,
120954
+ last_modified: str,
120955
+ location: str,
120956
+ resource_type: str,
120957
+ version: str):
120958
+ """
120959
+ :param str created: The DateTime the Resource was added to the Service Provider
120960
+ :param str last_modified: The most recent DateTime that the details of this Resource were updated at the Service Provider. If this Resource has never been modified since its initial creation, the value MUST be the same as the value of created. The attribute MUST be a DateTime.
120961
+ :param str location: The URI of the Resource being returned. This value MUST be the same as the Location HTTP response header.
120962
+ :param str resource_type: Name of the resource type of the resource--for example, Users or Groups
120963
+ :param str version: The version of the Resource being returned. This value must be the same as the ETag HTTP response header.
120964
+ """
120965
+ pulumi.set(__self__, "created", created)
120966
+ pulumi.set(__self__, "last_modified", last_modified)
120967
+ pulumi.set(__self__, "location", location)
120968
+ pulumi.set(__self__, "resource_type", resource_type)
120969
+ pulumi.set(__self__, "version", version)
120970
+
120971
+ @property
120972
+ @pulumi.getter
120973
+ def created(self) -> str:
120974
+ """
120975
+ The DateTime the Resource was added to the Service Provider
120976
+ """
120977
+ return pulumi.get(self, "created")
120978
+
120979
+ @property
120980
+ @pulumi.getter(name="lastModified")
120981
+ def last_modified(self) -> str:
120982
+ """
120983
+ The most recent DateTime that the details of this Resource were updated at the Service Provider. If this Resource has never been modified since its initial creation, the value MUST be the same as the value of created. The attribute MUST be a DateTime.
120984
+ """
120985
+ return pulumi.get(self, "last_modified")
120986
+
120987
+ @property
120988
+ @pulumi.getter
120989
+ def location(self) -> str:
120990
+ """
120991
+ The URI of the Resource being returned. This value MUST be the same as the Location HTTP response header.
120992
+ """
120993
+ return pulumi.get(self, "location")
120994
+
120995
+ @property
120996
+ @pulumi.getter(name="resourceType")
120997
+ def resource_type(self) -> str:
120998
+ """
120999
+ Name of the resource type of the resource--for example, Users or Groups
121000
+ """
121001
+ return pulumi.get(self, "resource_type")
121002
+
121003
+ @property
121004
+ @pulumi.getter
121005
+ def version(self) -> str:
121006
+ """
121007
+ The version of the Resource being returned. This value must be the same as the ETag HTTP response header.
121008
+ """
121009
+ return pulumi.get(self, "version")
121010
+
121011
+
121012
+ @pulumi.output_type
121013
+ class GetDomainsOciConsoleSignOnPolicyConsentsResourceModifiedResourceResult(dict):
121014
+ def __init__(__self__, *,
121015
+ ocid: str,
121016
+ type: str,
121017
+ value: str):
121018
+ """
121019
+ :param str ocid: Policy Resource Ocid
121020
+ :param str type: The Modified Resource type - Policy, Rule, ConditionGroup, or Condition. A label that indicates the resource type.
121021
+ :param str value: Value of the tag.
121022
+ """
121023
+ pulumi.set(__self__, "ocid", ocid)
121024
+ pulumi.set(__self__, "type", type)
121025
+ pulumi.set(__self__, "value", value)
121026
+
121027
+ @property
121028
+ @pulumi.getter
121029
+ def ocid(self) -> str:
121030
+ """
121031
+ Policy Resource Ocid
121032
+ """
121033
+ return pulumi.get(self, "ocid")
121034
+
121035
+ @property
121036
+ @pulumi.getter
121037
+ def type(self) -> str:
121038
+ """
121039
+ The Modified Resource type - Policy, Rule, ConditionGroup, or Condition. A label that indicates the resource type.
121040
+ """
121041
+ return pulumi.get(self, "type")
121042
+
121043
+ @property
121044
+ @pulumi.getter
121045
+ def value(self) -> str:
121046
+ """
121047
+ Value of the tag.
121048
+ """
121049
+ return pulumi.get(self, "value")
121050
+
121051
+
121052
+ @pulumi.output_type
121053
+ class GetDomainsOciConsoleSignOnPolicyConsentsResourcePolicyResourceResult(dict):
121054
+ def __init__(__self__, *,
121055
+ ocid: str,
121056
+ value: str):
121057
+ """
121058
+ :param str ocid: Policy Resource Ocid
121059
+ :param str value: Value of the tag.
121060
+ """
121061
+ pulumi.set(__self__, "ocid", ocid)
121062
+ pulumi.set(__self__, "value", value)
121063
+
121064
+ @property
121065
+ @pulumi.getter
121066
+ def ocid(self) -> str:
121067
+ """
121068
+ Policy Resource Ocid
121069
+ """
121070
+ return pulumi.get(self, "ocid")
121071
+
121072
+ @property
121073
+ @pulumi.getter
121074
+ def value(self) -> str:
121075
+ """
121076
+ Value of the tag.
121077
+ """
121078
+ return pulumi.get(self, "value")
121079
+
121080
+
121081
+ @pulumi.output_type
121082
+ class GetDomainsOciConsoleSignOnPolicyConsentsTagResult(dict):
121083
+ def __init__(__self__, *,
121084
+ key: str,
121085
+ value: str):
121086
+ """
121087
+ :param str key: Key or name of the tag.
121088
+ :param str value: Value of the tag.
121089
+ """
121090
+ pulumi.set(__self__, "key", key)
121091
+ pulumi.set(__self__, "value", value)
121092
+
121093
+ @property
121094
+ @pulumi.getter
121095
+ def key(self) -> str:
121096
+ """
121097
+ Key or name of the tag.
121098
+ """
121099
+ return pulumi.get(self, "key")
121100
+
121101
+ @property
121102
+ @pulumi.getter
121103
+ def value(self) -> str:
121104
+ """
121105
+ Value of the tag.
121106
+ """
121107
+ return pulumi.get(self, "value")
121108
+
121109
+
120197
121110
  @pulumi.output_type
120198
121111
  class GetDomainsPasswordPoliciesPasswordPolicyResult(dict):
120199
121112
  def __init__(__self__, *,