pulumi-oci 1.17.0a1702406535__py3-none-any.whl → 1.18.0a1702447417__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 (82) hide show
  1. pulumi_oci/__init__.py +48 -0
  2. pulumi_oci/core/instance.py +7 -7
  3. pulumi_oci/database/__init__.py +1 -0
  4. pulumi_oci/database/autonomous_database.py +20 -1
  5. pulumi_oci/database/autonomous_database_saas_admin_user.py +479 -0
  6. pulumi_oci/datacatalog/_inputs.py +216 -0
  7. pulumi_oci/datacatalog/catalog.py +58 -0
  8. pulumi_oci/datacatalog/catalog_private_endpoint.py +58 -0
  9. pulumi_oci/datacatalog/get_catalog.py +28 -1
  10. pulumi_oci/datacatalog/get_catalog_private_endpoint.py +28 -1
  11. pulumi_oci/datacatalog/get_metastore.py +28 -1
  12. pulumi_oci/datacatalog/metastore.py +58 -0
  13. pulumi_oci/datacatalog/outputs.py +603 -0
  14. pulumi_oci/datasafe/_inputs.py +32 -0
  15. pulumi_oci/datasafe/database_security_config.py +7 -7
  16. pulumi_oci/datasafe/get_audit_events.py +1 -1
  17. pulumi_oci/datasafe/get_discovery_analytics.py +38 -1
  18. pulumi_oci/datasafe/get_report.py +1 -1
  19. pulumi_oci/datasafe/get_report_content.py +2 -2
  20. pulumi_oci/datasafe/get_report_definition.py +4 -4
  21. pulumi_oci/datasafe/get_sdm_masking_policy_difference.py +2 -2
  22. pulumi_oci/datasafe/get_sdm_masking_policy_differences.py +1 -1
  23. pulumi_oci/datasafe/get_security_assessment_findings.py +1 -1
  24. pulumi_oci/datasafe/get_sensitive_type.py +14 -1
  25. pulumi_oci/datasafe/get_sensitive_types.py +21 -1
  26. pulumi_oci/datasafe/get_user_assessment_profile_analytics.py +2 -2
  27. pulumi_oci/datasafe/get_user_assessment_user_analytics.py +2 -2
  28. pulumi_oci/datasafe/masking_policies_masking_column.py +2 -0
  29. pulumi_oci/datasafe/outputs.py +114 -24
  30. pulumi_oci/datasafe/report_definition.py +16 -16
  31. pulumi_oci/datasafe/sensitive_type.py +28 -0
  32. pulumi_oci/datasafe/sql_firewall_policy.py +103 -103
  33. pulumi_oci/goldengate/_inputs.py +28 -2
  34. pulumi_oci/goldengate/connection.py +77 -21
  35. pulumi_oci/goldengate/database_registration.py +7 -7
  36. pulumi_oci/goldengate/deployment.py +110 -7
  37. pulumi_oci/goldengate/get_connection.py +16 -2
  38. pulumi_oci/goldengate/get_database_registration.py +1 -1
  39. pulumi_oci/goldengate/get_deployment.py +41 -2
  40. pulumi_oci/goldengate/outputs.py +138 -11
  41. pulumi_oci/identity/__init__.py +3 -0
  42. pulumi_oci/identity/_inputs.py +862 -6
  43. pulumi_oci/identity/domains_identity_propagation_trust.py +3489 -0
  44. pulumi_oci/identity/domains_user.py +40 -41
  45. pulumi_oci/identity/get_domains_identity_propagation_trust.py +581 -0
  46. pulumi_oci/identity/get_domains_identity_propagation_trusts.py +310 -0
  47. pulumi_oci/identity/outputs.py +2625 -821
  48. pulumi_oci/logging/_inputs.py +17 -1
  49. pulumi_oci/logging/log.py +2 -0
  50. pulumi_oci/logging/outputs.py +35 -1
  51. pulumi_oci/meteringcomputation/__init__.py +7 -0
  52. pulumi_oci/meteringcomputation/_inputs.py +787 -0
  53. pulumi_oci/meteringcomputation/get_average_carbon_emission.py +121 -0
  54. pulumi_oci/meteringcomputation/get_clean_energy_usage.py +116 -0
  55. pulumi_oci/meteringcomputation/get_schedule.py +2 -2
  56. pulumi_oci/meteringcomputation/get_usage_carbon_emissions_config.py +119 -0
  57. pulumi_oci/meteringcomputation/get_usage_carbon_emissions_queries.py +136 -0
  58. pulumi_oci/meteringcomputation/get_usage_carbon_emissions_query.py +132 -0
  59. pulumi_oci/meteringcomputation/outputs.py +2410 -1149
  60. pulumi_oci/meteringcomputation/schedule.py +14 -14
  61. pulumi_oci/meteringcomputation/usage_carbon_emission.py +597 -0
  62. pulumi_oci/meteringcomputation/usage_carbon_emissions_query.py +282 -0
  63. pulumi_oci/opsi/__init__.py +4 -0
  64. pulumi_oci/opsi/_inputs.py +46 -0
  65. pulumi_oci/opsi/awr_hub.py +49 -22
  66. pulumi_oci/opsi/awr_hub_source.py +957 -0
  67. pulumi_oci/opsi/awr_hub_source_awrhubsources_management.py +248 -0
  68. pulumi_oci/opsi/get_awr_hub.py +14 -1
  69. pulumi_oci/opsi/get_awr_hub_source.py +391 -0
  70. pulumi_oci/opsi/get_awr_hub_sources.py +250 -0
  71. pulumi_oci/opsi/operations_insights_warehouse.py +7 -7
  72. pulumi_oci/opsi/outputs.py +319 -0
  73. pulumi_oci/optimizer/get_histories.py +18 -1
  74. pulumi_oci/optimizer/get_profile.py +11 -1
  75. pulumi_oci/optimizer/get_resource_action.py +22 -5
  76. pulumi_oci/optimizer/get_resource_actions.py +18 -1
  77. pulumi_oci/optimizer/outputs.py +7 -0
  78. pulumi_oci/optimizer/profile.py +20 -0
  79. {pulumi_oci-1.17.0a1702406535.dist-info → pulumi_oci-1.18.0a1702447417.dist-info}/METADATA +1 -1
  80. {pulumi_oci-1.17.0a1702406535.dist-info → pulumi_oci-1.18.0a1702447417.dist-info}/RECORD +82 -67
  81. {pulumi_oci-1.17.0a1702406535.dist-info → pulumi_oci-1.18.0a1702447417.dist-info}/WHEEL +0 -0
  82. {pulumi_oci-1.17.0a1702406535.dist-info → pulumi_oci-1.18.0a1702447417.dist-info}/top_level.txt +0 -0
@@ -202,6 +202,12 @@ __all__ = [
202
202
  'DomainsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupSyncedFromApp',
203
203
  'DomainsGroupUrnietfparamsscimschemasoracleidcsextensionposixGroup',
204
204
  'DomainsGroupUrnietfparamsscimschemasoracleidcsextensionrequestableGroup',
205
+ 'DomainsIdentityPropagationTrustIdcsCreatedBy',
206
+ 'DomainsIdentityPropagationTrustIdcsLastModifiedBy',
207
+ 'DomainsIdentityPropagationTrustImpersonationServiceUser',
208
+ 'DomainsIdentityPropagationTrustKeytab',
209
+ 'DomainsIdentityPropagationTrustMeta',
210
+ 'DomainsIdentityPropagationTrustTag',
205
211
  'DomainsIdentityProviderCorrelationPolicy',
206
212
  'DomainsIdentityProviderIdcsCreatedBy',
207
213
  'DomainsIdentityProviderIdcsLastModifiedBy',
@@ -887,6 +893,19 @@ __all__ = [
887
893
  'GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupSyncedFromAppResult',
888
894
  'GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensionposixGroupResult',
889
895
  'GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensionrequestableGroupResult',
896
+ 'GetDomainsIdentityPropagationTrustIdcsCreatedByResult',
897
+ 'GetDomainsIdentityPropagationTrustIdcsLastModifiedByResult',
898
+ 'GetDomainsIdentityPropagationTrustImpersonationServiceUserResult',
899
+ 'GetDomainsIdentityPropagationTrustKeytabResult',
900
+ 'GetDomainsIdentityPropagationTrustMetaResult',
901
+ 'GetDomainsIdentityPropagationTrustTagResult',
902
+ 'GetDomainsIdentityPropagationTrustsIdentityPropagationTrustResult',
903
+ 'GetDomainsIdentityPropagationTrustsIdentityPropagationTrustIdcsCreatedByResult',
904
+ 'GetDomainsIdentityPropagationTrustsIdentityPropagationTrustIdcsLastModifiedByResult',
905
+ 'GetDomainsIdentityPropagationTrustsIdentityPropagationTrustImpersonationServiceUserResult',
906
+ 'GetDomainsIdentityPropagationTrustsIdentityPropagationTrustKeytabResult',
907
+ 'GetDomainsIdentityPropagationTrustsIdentityPropagationTrustMetaResult',
908
+ 'GetDomainsIdentityPropagationTrustsIdentityPropagationTrustTagResult',
890
909
  'GetDomainsIdentityProviderCorrelationPolicyResult',
891
910
  'GetDomainsIdentityProviderIdcsCreatedByResult',
892
911
  'GetDomainsIdentityProviderIdcsLastModifiedByResult',
@@ -31909,6 +31928,757 @@ class DomainsGroupUrnietfparamsscimschemasoracleidcsextensionrequestableGroup(di
31909
31928
  return pulumi.get(self, "requestable")
31910
31929
 
31911
31930
 
31931
+ @pulumi.output_type
31932
+ class DomainsIdentityPropagationTrustIdcsCreatedBy(dict):
31933
+ def __init__(__self__, *,
31934
+ value: str,
31935
+ display: Optional[str] = None,
31936
+ ocid: Optional[str] = None,
31937
+ ref: Optional[str] = None,
31938
+ type: Optional[str] = None):
31939
+ """
31940
+ :param str value: (Updatable) Value of the tag.
31941
+
31942
+ **SCIM++ Properties:**
31943
+ * caseExact: false
31944
+ * idcsSearchable: true
31945
+ * multiValued: false
31946
+ * mutability: readWrite
31947
+ * required: true
31948
+ * returned: default
31949
+ * type: string
31950
+ * uniqueness: none
31951
+ :param str display: (Updatable) The displayName of the User or App who modified this Resource
31952
+
31953
+ **SCIM++ Properties:**
31954
+ * caseExact: true
31955
+ * idcsSearchable: false
31956
+ * multiValued: false
31957
+ * mutability: readOnly
31958
+ * required: false
31959
+ * returned: default
31960
+ * type: string
31961
+ * uniqueness: none
31962
+ :param str ocid: (Updatable) Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
31963
+
31964
+ **SCIM++ Properties:**
31965
+ * caseExact: true
31966
+ * idcsSearchable: true
31967
+ * multiValued: false
31968
+ * mutability: immutable
31969
+ * required: false
31970
+ * returned: default
31971
+ * type: string
31972
+ * uniqueness: global
31973
+ :param str type: (Updatable) The type of the inbound token from the Identity cloud provider.
31974
+
31975
+ **SCIM++ Properties:**
31976
+ * caseExact: true
31977
+ * idcsSearchable: false
31978
+ * required: true
31979
+ * mutability: readWrite
31980
+ * returned: default
31981
+ * type: string
31982
+ * multiValued: false
31983
+ * uniqueness: none
31984
+
31985
+
31986
+ ** IMPORTANT **
31987
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
31988
+ """
31989
+ pulumi.set(__self__, "value", value)
31990
+ if display is not None:
31991
+ pulumi.set(__self__, "display", display)
31992
+ if ocid is not None:
31993
+ pulumi.set(__self__, "ocid", ocid)
31994
+ if ref is not None:
31995
+ pulumi.set(__self__, "ref", ref)
31996
+ if type is not None:
31997
+ pulumi.set(__self__, "type", type)
31998
+
31999
+ @property
32000
+ @pulumi.getter
32001
+ def value(self) -> str:
32002
+ """
32003
+ (Updatable) Value of the tag.
32004
+
32005
+ **SCIM++ Properties:**
32006
+ * caseExact: false
32007
+ * idcsSearchable: true
32008
+ * multiValued: false
32009
+ * mutability: readWrite
32010
+ * required: true
32011
+ * returned: default
32012
+ * type: string
32013
+ * uniqueness: none
32014
+ """
32015
+ return pulumi.get(self, "value")
32016
+
32017
+ @property
32018
+ @pulumi.getter
32019
+ def display(self) -> Optional[str]:
32020
+ """
32021
+ (Updatable) The displayName of the User or App who modified this Resource
32022
+
32023
+ **SCIM++ Properties:**
32024
+ * caseExact: true
32025
+ * idcsSearchable: false
32026
+ * multiValued: false
32027
+ * mutability: readOnly
32028
+ * required: false
32029
+ * returned: default
32030
+ * type: string
32031
+ * uniqueness: none
32032
+ """
32033
+ return pulumi.get(self, "display")
32034
+
32035
+ @property
32036
+ @pulumi.getter
32037
+ def ocid(self) -> Optional[str]:
32038
+ """
32039
+ (Updatable) Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
32040
+
32041
+ **SCIM++ Properties:**
32042
+ * caseExact: true
32043
+ * idcsSearchable: true
32044
+ * multiValued: false
32045
+ * mutability: immutable
32046
+ * required: false
32047
+ * returned: default
32048
+ * type: string
32049
+ * uniqueness: global
32050
+ """
32051
+ return pulumi.get(self, "ocid")
32052
+
32053
+ @property
32054
+ @pulumi.getter
32055
+ def ref(self) -> Optional[str]:
32056
+ return pulumi.get(self, "ref")
32057
+
32058
+ @property
32059
+ @pulumi.getter
32060
+ def type(self) -> Optional[str]:
32061
+ """
32062
+ (Updatable) The type of the inbound token from the Identity cloud provider.
32063
+
32064
+ **SCIM++ Properties:**
32065
+ * caseExact: true
32066
+ * idcsSearchable: false
32067
+ * required: true
32068
+ * mutability: readWrite
32069
+ * returned: default
32070
+ * type: string
32071
+ * multiValued: false
32072
+ * uniqueness: none
32073
+
32074
+
32075
+ ** IMPORTANT **
32076
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
32077
+ """
32078
+ return pulumi.get(self, "type")
32079
+
32080
+
32081
+ @pulumi.output_type
32082
+ class DomainsIdentityPropagationTrustIdcsLastModifiedBy(dict):
32083
+ def __init__(__self__, *,
32084
+ value: str,
32085
+ display: Optional[str] = None,
32086
+ ocid: Optional[str] = None,
32087
+ ref: Optional[str] = None,
32088
+ type: Optional[str] = None):
32089
+ """
32090
+ :param str value: (Updatable) Value of the tag.
32091
+
32092
+ **SCIM++ Properties:**
32093
+ * caseExact: false
32094
+ * idcsSearchable: true
32095
+ * multiValued: false
32096
+ * mutability: readWrite
32097
+ * required: true
32098
+ * returned: default
32099
+ * type: string
32100
+ * uniqueness: none
32101
+ :param str display: (Updatable) The displayName of the User or App who modified this Resource
32102
+
32103
+ **SCIM++ Properties:**
32104
+ * caseExact: true
32105
+ * idcsSearchable: false
32106
+ * multiValued: false
32107
+ * mutability: readOnly
32108
+ * required: false
32109
+ * returned: default
32110
+ * type: string
32111
+ * uniqueness: none
32112
+ :param str ocid: (Updatable) Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
32113
+
32114
+ **SCIM++ Properties:**
32115
+ * caseExact: true
32116
+ * idcsSearchable: true
32117
+ * multiValued: false
32118
+ * mutability: immutable
32119
+ * required: false
32120
+ * returned: default
32121
+ * type: string
32122
+ * uniqueness: global
32123
+ :param str type: (Updatable) The type of the inbound token from the Identity cloud provider.
32124
+
32125
+ **SCIM++ Properties:**
32126
+ * caseExact: true
32127
+ * idcsSearchable: false
32128
+ * required: true
32129
+ * mutability: readWrite
32130
+ * returned: default
32131
+ * type: string
32132
+ * multiValued: false
32133
+ * uniqueness: none
32134
+
32135
+
32136
+ ** IMPORTANT **
32137
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
32138
+ """
32139
+ pulumi.set(__self__, "value", value)
32140
+ if display is not None:
32141
+ pulumi.set(__self__, "display", display)
32142
+ if ocid is not None:
32143
+ pulumi.set(__self__, "ocid", ocid)
32144
+ if ref is not None:
32145
+ pulumi.set(__self__, "ref", ref)
32146
+ if type is not None:
32147
+ pulumi.set(__self__, "type", type)
32148
+
32149
+ @property
32150
+ @pulumi.getter
32151
+ def value(self) -> str:
32152
+ """
32153
+ (Updatable) Value of the tag.
32154
+
32155
+ **SCIM++ Properties:**
32156
+ * caseExact: false
32157
+ * idcsSearchable: true
32158
+ * multiValued: false
32159
+ * mutability: readWrite
32160
+ * required: true
32161
+ * returned: default
32162
+ * type: string
32163
+ * uniqueness: none
32164
+ """
32165
+ return pulumi.get(self, "value")
32166
+
32167
+ @property
32168
+ @pulumi.getter
32169
+ def display(self) -> Optional[str]:
32170
+ """
32171
+ (Updatable) The displayName of the User or App who modified this Resource
32172
+
32173
+ **SCIM++ Properties:**
32174
+ * caseExact: true
32175
+ * idcsSearchable: false
32176
+ * multiValued: false
32177
+ * mutability: readOnly
32178
+ * required: false
32179
+ * returned: default
32180
+ * type: string
32181
+ * uniqueness: none
32182
+ """
32183
+ return pulumi.get(self, "display")
32184
+
32185
+ @property
32186
+ @pulumi.getter
32187
+ def ocid(self) -> Optional[str]:
32188
+ """
32189
+ (Updatable) Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
32190
+
32191
+ **SCIM++ Properties:**
32192
+ * caseExact: true
32193
+ * idcsSearchable: true
32194
+ * multiValued: false
32195
+ * mutability: immutable
32196
+ * required: false
32197
+ * returned: default
32198
+ * type: string
32199
+ * uniqueness: global
32200
+ """
32201
+ return pulumi.get(self, "ocid")
32202
+
32203
+ @property
32204
+ @pulumi.getter
32205
+ def ref(self) -> Optional[str]:
32206
+ return pulumi.get(self, "ref")
32207
+
32208
+ @property
32209
+ @pulumi.getter
32210
+ def type(self) -> Optional[str]:
32211
+ """
32212
+ (Updatable) The type of the inbound token from the Identity cloud provider.
32213
+
32214
+ **SCIM++ Properties:**
32215
+ * caseExact: true
32216
+ * idcsSearchable: false
32217
+ * required: true
32218
+ * mutability: readWrite
32219
+ * returned: default
32220
+ * type: string
32221
+ * multiValued: false
32222
+ * uniqueness: none
32223
+
32224
+
32225
+ ** IMPORTANT **
32226
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
32227
+ """
32228
+ return pulumi.get(self, "type")
32229
+
32230
+
32231
+ @pulumi.output_type
32232
+ class DomainsIdentityPropagationTrustImpersonationServiceUser(dict):
32233
+ def __init__(__self__, *,
32234
+ rule: str,
32235
+ value: str,
32236
+ ocid: Optional[str] = None,
32237
+ ref: Optional[str] = None):
32238
+ """
32239
+ :param str rule: (Updatable) The rule expression to be used for matching the inbound token for impersonation.
32240
+
32241
+ **SCIM++ Properties:**
32242
+ * idcsSearchable: false
32243
+ * multiValued: false
32244
+ * mutability: readWrite
32245
+ * required: true
32246
+ * returned: default
32247
+ * type: string
32248
+ * uniqueness: none
32249
+ :param str value: (Updatable) Value of the tag.
32250
+
32251
+ **SCIM++ Properties:**
32252
+ * caseExact: false
32253
+ * idcsSearchable: true
32254
+ * multiValued: false
32255
+ * mutability: readWrite
32256
+ * required: true
32257
+ * returned: default
32258
+ * type: string
32259
+ * uniqueness: none
32260
+ :param str ocid: (Updatable) Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
32261
+
32262
+ **SCIM++ Properties:**
32263
+ * caseExact: true
32264
+ * idcsSearchable: true
32265
+ * multiValued: false
32266
+ * mutability: immutable
32267
+ * required: false
32268
+ * returned: default
32269
+ * type: string
32270
+ * uniqueness: global
32271
+ """
32272
+ pulumi.set(__self__, "rule", rule)
32273
+ pulumi.set(__self__, "value", value)
32274
+ if ocid is not None:
32275
+ pulumi.set(__self__, "ocid", ocid)
32276
+ if ref is not None:
32277
+ pulumi.set(__self__, "ref", ref)
32278
+
32279
+ @property
32280
+ @pulumi.getter
32281
+ def rule(self) -> str:
32282
+ """
32283
+ (Updatable) The rule expression to be used for matching the inbound token for impersonation.
32284
+
32285
+ **SCIM++ Properties:**
32286
+ * idcsSearchable: false
32287
+ * multiValued: false
32288
+ * mutability: readWrite
32289
+ * required: true
32290
+ * returned: default
32291
+ * type: string
32292
+ * uniqueness: none
32293
+ """
32294
+ return pulumi.get(self, "rule")
32295
+
32296
+ @property
32297
+ @pulumi.getter
32298
+ def value(self) -> str:
32299
+ """
32300
+ (Updatable) Value of the tag.
32301
+
32302
+ **SCIM++ Properties:**
32303
+ * caseExact: false
32304
+ * idcsSearchable: true
32305
+ * multiValued: false
32306
+ * mutability: readWrite
32307
+ * required: true
32308
+ * returned: default
32309
+ * type: string
32310
+ * uniqueness: none
32311
+ """
32312
+ return pulumi.get(self, "value")
32313
+
32314
+ @property
32315
+ @pulumi.getter
32316
+ def ocid(self) -> Optional[str]:
32317
+ """
32318
+ (Updatable) Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
32319
+
32320
+ **SCIM++ Properties:**
32321
+ * caseExact: true
32322
+ * idcsSearchable: true
32323
+ * multiValued: false
32324
+ * mutability: immutable
32325
+ * required: false
32326
+ * returned: default
32327
+ * type: string
32328
+ * uniqueness: global
32329
+ """
32330
+ return pulumi.get(self, "ocid")
32331
+
32332
+ @property
32333
+ @pulumi.getter
32334
+ def ref(self) -> Optional[str]:
32335
+ return pulumi.get(self, "ref")
32336
+
32337
+
32338
+ @pulumi.output_type
32339
+ class DomainsIdentityPropagationTrustKeytab(dict):
32340
+ @staticmethod
32341
+ def __key_warning(key: str):
32342
+ suggest = None
32343
+ if key == "secretOcid":
32344
+ suggest = "secret_ocid"
32345
+ elif key == "secretVersion":
32346
+ suggest = "secret_version"
32347
+
32348
+ if suggest:
32349
+ pulumi.log.warn(f"Key '{key}' not found in DomainsIdentityPropagationTrustKeytab. Access the value via the '{suggest}' property getter instead.")
32350
+
32351
+ def __getitem__(self, key: str) -> Any:
32352
+ DomainsIdentityPropagationTrustKeytab.__key_warning(key)
32353
+ return super().__getitem__(key)
32354
+
32355
+ def get(self, key: str, default = None) -> Any:
32356
+ DomainsIdentityPropagationTrustKeytab.__key_warning(key)
32357
+ return super().get(key, default)
32358
+
32359
+ def __init__(__self__, *,
32360
+ secret_ocid: str,
32361
+ secret_version: Optional[int] = None):
32362
+ """
32363
+ :param str secret_ocid: (Updatable) The OCID of the secret. The secret content corresponding to the OCID is expected to be in Base64 encoded content type.
32364
+
32365
+ **SCIM++ Properties:**
32366
+ * caseExact: true
32367
+ * idcsSearchable: false
32368
+ * multiValued: false
32369
+ * mutability: readWrite
32370
+ * required: true
32371
+ * returned: default
32372
+ * type: string
32373
+ * uniqueness: none
32374
+ :param int secret_version: (Updatable) The version of the secret. When the version is not specified, then the latest secret version is used during runtime.
32375
+
32376
+ **SCIM++ Properties:**
32377
+ * caseExact: true
32378
+ * idcsSearchable: false
32379
+ * multiValued: false
32380
+ * mutability: readWrite
32381
+ * required: false
32382
+ * returned: default
32383
+ * type: integer
32384
+ * uniqueness: none
32385
+ """
32386
+ pulumi.set(__self__, "secret_ocid", secret_ocid)
32387
+ if secret_version is not None:
32388
+ pulumi.set(__self__, "secret_version", secret_version)
32389
+
32390
+ @property
32391
+ @pulumi.getter(name="secretOcid")
32392
+ def secret_ocid(self) -> str:
32393
+ """
32394
+ (Updatable) The OCID of the secret. The secret content corresponding to the OCID is expected to be in Base64 encoded content type.
32395
+
32396
+ **SCIM++ Properties:**
32397
+ * caseExact: true
32398
+ * idcsSearchable: false
32399
+ * multiValued: false
32400
+ * mutability: readWrite
32401
+ * required: true
32402
+ * returned: default
32403
+ * type: string
32404
+ * uniqueness: none
32405
+ """
32406
+ return pulumi.get(self, "secret_ocid")
32407
+
32408
+ @property
32409
+ @pulumi.getter(name="secretVersion")
32410
+ def secret_version(self) -> Optional[int]:
32411
+ """
32412
+ (Updatable) The version of the secret. When the version is not specified, then the latest secret version is used during runtime.
32413
+
32414
+ **SCIM++ Properties:**
32415
+ * caseExact: true
32416
+ * idcsSearchable: false
32417
+ * multiValued: false
32418
+ * mutability: readWrite
32419
+ * required: false
32420
+ * returned: default
32421
+ * type: integer
32422
+ * uniqueness: none
32423
+ """
32424
+ return pulumi.get(self, "secret_version")
32425
+
32426
+
32427
+ @pulumi.output_type
32428
+ class DomainsIdentityPropagationTrustMeta(dict):
32429
+ @staticmethod
32430
+ def __key_warning(key: str):
32431
+ suggest = None
32432
+ if key == "lastModified":
32433
+ suggest = "last_modified"
32434
+ elif key == "resourceType":
32435
+ suggest = "resource_type"
32436
+
32437
+ if suggest:
32438
+ pulumi.log.warn(f"Key '{key}' not found in DomainsIdentityPropagationTrustMeta. Access the value via the '{suggest}' property getter instead.")
32439
+
32440
+ def __getitem__(self, key: str) -> Any:
32441
+ DomainsIdentityPropagationTrustMeta.__key_warning(key)
32442
+ return super().__getitem__(key)
32443
+
32444
+ def get(self, key: str, default = None) -> Any:
32445
+ DomainsIdentityPropagationTrustMeta.__key_warning(key)
32446
+ return super().get(key, default)
32447
+
32448
+ def __init__(__self__, *,
32449
+ created: Optional[str] = None,
32450
+ last_modified: Optional[str] = None,
32451
+ location: Optional[str] = None,
32452
+ resource_type: Optional[str] = None,
32453
+ version: Optional[str] = None):
32454
+ """
32455
+ :param str created: (Updatable) The DateTime the Resource was added to the Service Provider
32456
+
32457
+ **SCIM++ Properties:**
32458
+ * caseExact: false
32459
+ * idcsSearchable: true
32460
+ * multiValued: false
32461
+ * mutability: readOnly
32462
+ * required: false
32463
+ * returned: default
32464
+ * type: dateTime
32465
+ * uniqueness: none
32466
+ :param str last_modified: (Updatable) 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.
32467
+
32468
+ **SCIM++ Properties:**
32469
+ * caseExact: false
32470
+ * idcsSearchable: true
32471
+ * multiValued: false
32472
+ * mutability: readOnly
32473
+ * required: false
32474
+ * returned: default
32475
+ * type: dateTime
32476
+ * uniqueness: none
32477
+ :param str location: (Updatable) The URI of the Resource being returned. This value MUST be the same as the Location HTTP response header.
32478
+
32479
+ **SCIM++ Properties:**
32480
+ * caseExact: false
32481
+ * idcsSearchable: false
32482
+ * multiValued: false
32483
+ * mutability: readOnly
32484
+ * required: false
32485
+ * returned: default
32486
+ * type: string
32487
+ * uniqueness: none
32488
+ :param str resource_type: (Updatable) Name of the resource type of the resource--for example, Users or Groups
32489
+
32490
+ **SCIM++ Properties:**
32491
+ * caseExact: false
32492
+ * idcsSearchable: false
32493
+ * multiValued: false
32494
+ * mutability: readOnly
32495
+ * required: false
32496
+ * returned: default
32497
+ * type: string
32498
+ * uniqueness: none
32499
+ :param str version: (Updatable) The version of the Resource being returned. This value must be the same as the ETag HTTP response header.
32500
+
32501
+ **SCIM++ Properties:**
32502
+ * caseExact: false
32503
+ * idcsSearchable: false
32504
+ * multiValued: false
32505
+ * mutability: readOnly
32506
+ * required: false
32507
+ * returned: default
32508
+ * type: string
32509
+ * uniqueness: none
32510
+ """
32511
+ if created is not None:
32512
+ pulumi.set(__self__, "created", created)
32513
+ if last_modified is not None:
32514
+ pulumi.set(__self__, "last_modified", last_modified)
32515
+ if location is not None:
32516
+ pulumi.set(__self__, "location", location)
32517
+ if resource_type is not None:
32518
+ pulumi.set(__self__, "resource_type", resource_type)
32519
+ if version is not None:
32520
+ pulumi.set(__self__, "version", version)
32521
+
32522
+ @property
32523
+ @pulumi.getter
32524
+ def created(self) -> Optional[str]:
32525
+ """
32526
+ (Updatable) The DateTime the Resource was added to the Service Provider
32527
+
32528
+ **SCIM++ Properties:**
32529
+ * caseExact: false
32530
+ * idcsSearchable: true
32531
+ * multiValued: false
32532
+ * mutability: readOnly
32533
+ * required: false
32534
+ * returned: default
32535
+ * type: dateTime
32536
+ * uniqueness: none
32537
+ """
32538
+ return pulumi.get(self, "created")
32539
+
32540
+ @property
32541
+ @pulumi.getter(name="lastModified")
32542
+ def last_modified(self) -> Optional[str]:
32543
+ """
32544
+ (Updatable) 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.
32545
+
32546
+ **SCIM++ Properties:**
32547
+ * caseExact: false
32548
+ * idcsSearchable: true
32549
+ * multiValued: false
32550
+ * mutability: readOnly
32551
+ * required: false
32552
+ * returned: default
32553
+ * type: dateTime
32554
+ * uniqueness: none
32555
+ """
32556
+ return pulumi.get(self, "last_modified")
32557
+
32558
+ @property
32559
+ @pulumi.getter
32560
+ def location(self) -> Optional[str]:
32561
+ """
32562
+ (Updatable) The URI of the Resource being returned. This value MUST be the same as the Location HTTP response header.
32563
+
32564
+ **SCIM++ Properties:**
32565
+ * caseExact: false
32566
+ * idcsSearchable: false
32567
+ * multiValued: false
32568
+ * mutability: readOnly
32569
+ * required: false
32570
+ * returned: default
32571
+ * type: string
32572
+ * uniqueness: none
32573
+ """
32574
+ return pulumi.get(self, "location")
32575
+
32576
+ @property
32577
+ @pulumi.getter(name="resourceType")
32578
+ def resource_type(self) -> Optional[str]:
32579
+ """
32580
+ (Updatable) Name of the resource type of the resource--for example, Users or Groups
32581
+
32582
+ **SCIM++ Properties:**
32583
+ * caseExact: false
32584
+ * idcsSearchable: false
32585
+ * multiValued: false
32586
+ * mutability: readOnly
32587
+ * required: false
32588
+ * returned: default
32589
+ * type: string
32590
+ * uniqueness: none
32591
+ """
32592
+ return pulumi.get(self, "resource_type")
32593
+
32594
+ @property
32595
+ @pulumi.getter
32596
+ def version(self) -> Optional[str]:
32597
+ """
32598
+ (Updatable) The version of the Resource being returned. This value must be the same as the ETag HTTP response header.
32599
+
32600
+ **SCIM++ Properties:**
32601
+ * caseExact: false
32602
+ * idcsSearchable: false
32603
+ * multiValued: false
32604
+ * mutability: readOnly
32605
+ * required: false
32606
+ * returned: default
32607
+ * type: string
32608
+ * uniqueness: none
32609
+ """
32610
+ return pulumi.get(self, "version")
32611
+
32612
+
32613
+ @pulumi.output_type
32614
+ class DomainsIdentityPropagationTrustTag(dict):
32615
+ def __init__(__self__, *,
32616
+ key: str,
32617
+ value: str):
32618
+ """
32619
+ :param str key: (Updatable) Key or name of the tag.
32620
+
32621
+ **SCIM++ Properties:**
32622
+ * caseExact: false
32623
+ * idcsSearchable: true
32624
+ * multiValued: false
32625
+ * mutability: readWrite
32626
+ * required: true
32627
+ * returned: default
32628
+ * type: string
32629
+ * uniqueness: none
32630
+ :param str value: (Updatable) Value of the tag.
32631
+
32632
+ **SCIM++ Properties:**
32633
+ * caseExact: false
32634
+ * idcsSearchable: true
32635
+ * multiValued: false
32636
+ * mutability: readWrite
32637
+ * required: true
32638
+ * returned: default
32639
+ * type: string
32640
+ * uniqueness: none
32641
+ """
32642
+ pulumi.set(__self__, "key", key)
32643
+ pulumi.set(__self__, "value", value)
32644
+
32645
+ @property
32646
+ @pulumi.getter
32647
+ def key(self) -> str:
32648
+ """
32649
+ (Updatable) Key or name of the tag.
32650
+
32651
+ **SCIM++ Properties:**
32652
+ * caseExact: false
32653
+ * idcsSearchable: true
32654
+ * multiValued: false
32655
+ * mutability: readWrite
32656
+ * required: true
32657
+ * returned: default
32658
+ * type: string
32659
+ * uniqueness: none
32660
+ """
32661
+ return pulumi.get(self, "key")
32662
+
32663
+ @property
32664
+ @pulumi.getter
32665
+ def value(self) -> str:
32666
+ """
32667
+ (Updatable) Value of the tag.
32668
+
32669
+ **SCIM++ Properties:**
32670
+ * caseExact: false
32671
+ * idcsSearchable: true
32672
+ * multiValued: false
32673
+ * mutability: readWrite
32674
+ * required: true
32675
+ * returned: default
32676
+ * type: string
32677
+ * uniqueness: none
32678
+ """
32679
+ return pulumi.get(self, "value")
32680
+
32681
+
31912
32682
  @pulumi.output_type
31913
32683
  class DomainsIdentityProviderCorrelationPolicy(dict):
31914
32684
  def __init__(__self__, *,
@@ -56522,7 +57292,7 @@ class DomainsUserName(dict):
56522
57292
  return super().get(key, default)
56523
57293
 
56524
57294
  def __init__(__self__, *,
56525
- family_name: str,
57295
+ family_name: Optional[str] = None,
56526
57296
  formatted: Optional[str] = None,
56527
57297
  given_name: Optional[str] = None,
56528
57298
  honorific_prefix: Optional[str] = None,
@@ -56537,7 +57307,7 @@ class DomainsUserName(dict):
56537
57307
  * idcsSearchable: true
56538
57308
  * multiValued: false
56539
57309
  * mutability: readWrite
56540
- * required: true
57310
+ * required: false
56541
57311
  * returned: default
56542
57312
  * type: string
56543
57313
  * uniqueness: none
@@ -56599,7 +57369,8 @@ class DomainsUserName(dict):
56599
57369
  * type: string
56600
57370
  * uniqueness: none
56601
57371
  """
56602
- pulumi.set(__self__, "family_name", family_name)
57372
+ if family_name is not None:
57373
+ pulumi.set(__self__, "family_name", family_name)
56603
57374
  if formatted is not None:
56604
57375
  pulumi.set(__self__, "formatted", formatted)
56605
57376
  if given_name is not None:
@@ -56613,7 +57384,7 @@ class DomainsUserName(dict):
56613
57384
 
56614
57385
  @property
56615
57386
  @pulumi.getter(name="familyName")
56616
- def family_name(self) -> str:
57387
+ def family_name(self) -> Optional[str]:
56617
57388
  """
56618
57389
  (Updatable) Last name
56619
57390
 
@@ -56623,7 +57394,7 @@ class DomainsUserName(dict):
56623
57394
  * idcsSearchable: true
56624
57395
  * multiValued: false
56625
57396
  * mutability: readWrite
56626
- * required: true
57397
+ * required: false
56627
57398
  * returned: default
56628
57399
  * type: string
56629
57400
  * uniqueness: none
@@ -63627,6 +64398,8 @@ class DomainsUserUrnietfparamsscimschemasoracleidcsextensionuserUser(dict):
63627
64398
  suggest = "notification_email_template_id"
63628
64399
  elif key == "preferredUiLandingPage":
63629
64400
  suggest = "preferred_ui_landing_page"
64401
+ elif key == "serviceUser":
64402
+ suggest = "service_user"
63630
64403
  elif key == "supportAccounts":
63631
64404
  suggest = "support_accounts"
63632
64405
  elif key == "syncedFromApp":
@@ -63668,6 +64441,7 @@ class DomainsUserUrnietfparamsscimschemasoracleidcsextensionuserUser(dict):
63668
64441
  is_group_membership_synced_to_users_groups: Optional[bool] = None,
63669
64442
  notification_email_template_id: Optional[str] = None,
63670
64443
  preferred_ui_landing_page: Optional[str] = None,
64444
+ service_user: Optional[bool] = None,
63671
64445
  status: Optional[str] = None,
63672
64446
  support_accounts: Optional[Sequence['outputs.DomainsUserUrnietfparamsscimschemasoracleidcsextensionuserUserSupportAccount']] = None,
63673
64447
  synced_from_app: Optional['outputs.DomainsUserUrnietfparamsscimschemasoracleidcsextensionuserUserSyncedFromApp'] = None,
@@ -63894,6 +64668,21 @@ class DomainsUserUrnietfparamsscimschemasoracleidcsextensionuserUser(dict):
63894
64668
  * returned: default
63895
64669
  * type: string
63896
64670
  * uniqueness: none
64671
+ :param bool service_user: (Updatable) Indicates if User is a Service User
64672
+
64673
+ **Added In:** 2306131901
64674
+
64675
+ **SCIM++ Properties:**
64676
+ * caseExact: false
64677
+ * idcsCsvAttributeName: Service User
64678
+ * idcsCsvAttributeNameMappings: [[columnHeaderName:Service User]]
64679
+ * idcsSearchable: true
64680
+ * multiValued: false
64681
+ * mutability: immutable
64682
+ * required: false
64683
+ * returned: default
64684
+ * type: boolean
64685
+ * uniqueness: none
63897
64686
  :param str status: (Updatable) A supplemental status indicating the reason why a user is disabled
63898
64687
 
63899
64688
  **SCIM++ Properties:**
@@ -64006,6 +64795,8 @@ class DomainsUserUrnietfparamsscimschemasoracleidcsextensionuserUser(dict):
64006
64795
  pulumi.set(__self__, "notification_email_template_id", notification_email_template_id)
64007
64796
  if preferred_ui_landing_page is not None:
64008
64797
  pulumi.set(__self__, "preferred_ui_landing_page", preferred_ui_landing_page)
64798
+ if service_user is not None:
64799
+ pulumi.set(__self__, "service_user", service_user)
64009
64800
  if status is not None:
64010
64801
  pulumi.set(__self__, "status", status)
64011
64802
  if support_accounts is not None:
@@ -64364,6 +65155,28 @@ class DomainsUserUrnietfparamsscimschemasoracleidcsextensionuserUser(dict):
64364
65155
  """
64365
65156
  return pulumi.get(self, "preferred_ui_landing_page")
64366
65157
 
65158
+ @property
65159
+ @pulumi.getter(name="serviceUser")
65160
+ def service_user(self) -> Optional[bool]:
65161
+ """
65162
+ (Updatable) Indicates if User is a Service User
65163
+
65164
+ **Added In:** 2306131901
65165
+
65166
+ **SCIM++ Properties:**
65167
+ * caseExact: false
65168
+ * idcsCsvAttributeName: Service User
65169
+ * idcsCsvAttributeNameMappings: [[columnHeaderName:Service User]]
65170
+ * idcsSearchable: true
65171
+ * multiValued: false
65172
+ * mutability: immutable
65173
+ * required: false
65174
+ * returned: default
65175
+ * type: boolean
65176
+ * uniqueness: none
65177
+ """
65178
+ return pulumi.get(self, "service_user")
65179
+
64367
65180
  @property
64368
65181
  @pulumi.getter
64369
65182
  def status(self) -> Optional[str]:
@@ -95571,7 +96384,1304 @@ class GetDomainsGroupMemberResult(dict):
95571
96384
 
95572
96385
 
95573
96386
  @pulumi.output_type
95574
- class GetDomainsGroupMetaResult(dict):
96387
+ class GetDomainsGroupMetaResult(dict):
96388
+ def __init__(__self__, *,
96389
+ created: str,
96390
+ last_modified: str,
96391
+ location: str,
96392
+ resource_type: str,
96393
+ version: str):
96394
+ """
96395
+ :param str created: The DateTime the Resource was added to the Service Provider
96396
+ :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.
96397
+ :param str location: The URI of the Resource being returned. This value MUST be the same as the Location HTTP response header.
96398
+ :param str resource_type: Name of the resource type of the resource--for example, Users or Groups
96399
+ :param str version: The version of the Resource being returned. This value must be the same as the ETag HTTP response header.
96400
+ """
96401
+ pulumi.set(__self__, "created", created)
96402
+ pulumi.set(__self__, "last_modified", last_modified)
96403
+ pulumi.set(__self__, "location", location)
96404
+ pulumi.set(__self__, "resource_type", resource_type)
96405
+ pulumi.set(__self__, "version", version)
96406
+
96407
+ @property
96408
+ @pulumi.getter
96409
+ def created(self) -> str:
96410
+ """
96411
+ The DateTime the Resource was added to the Service Provider
96412
+ """
96413
+ return pulumi.get(self, "created")
96414
+
96415
+ @property
96416
+ @pulumi.getter(name="lastModified")
96417
+ def last_modified(self) -> str:
96418
+ """
96419
+ 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.
96420
+ """
96421
+ return pulumi.get(self, "last_modified")
96422
+
96423
+ @property
96424
+ @pulumi.getter
96425
+ def location(self) -> str:
96426
+ """
96427
+ The URI of the Resource being returned. This value MUST be the same as the Location HTTP response header.
96428
+ """
96429
+ return pulumi.get(self, "location")
96430
+
96431
+ @property
96432
+ @pulumi.getter(name="resourceType")
96433
+ def resource_type(self) -> str:
96434
+ """
96435
+ Name of the resource type of the resource--for example, Users or Groups
96436
+ """
96437
+ return pulumi.get(self, "resource_type")
96438
+
96439
+ @property
96440
+ @pulumi.getter
96441
+ def version(self) -> str:
96442
+ """
96443
+ The version of the Resource being returned. This value must be the same as the ETag HTTP response header.
96444
+ """
96445
+ return pulumi.get(self, "version")
96446
+
96447
+
96448
+ @pulumi.output_type
96449
+ class GetDomainsGroupTagResult(dict):
96450
+ def __init__(__self__, *,
96451
+ key: str,
96452
+ value: str):
96453
+ """
96454
+ :param str key: Oracle Cloud Infrastructure Tag key
96455
+ :param str value: The ID of the App.
96456
+ """
96457
+ pulumi.set(__self__, "key", key)
96458
+ pulumi.set(__self__, "value", value)
96459
+
96460
+ @property
96461
+ @pulumi.getter
96462
+ def key(self) -> str:
96463
+ """
96464
+ Oracle Cloud Infrastructure Tag key
96465
+ """
96466
+ return pulumi.get(self, "key")
96467
+
96468
+ @property
96469
+ @pulumi.getter
96470
+ def value(self) -> str:
96471
+ """
96472
+ The ID of the App.
96473
+ """
96474
+ return pulumi.get(self, "value")
96475
+
96476
+
96477
+ @pulumi.output_type
96478
+ class GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensionOciTagResult(dict):
96479
+ def __init__(__self__, *,
96480
+ defined_tags: Sequence['outputs.GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensionOciTagDefinedTagResult'],
96481
+ freeform_tags: Sequence['outputs.GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensionOciTagFreeformTagResult'],
96482
+ tag_slug: str):
96483
+ """
96484
+ :param Sequence['GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensionOciTagDefinedTagArgs'] defined_tags: Oracle Cloud Infrastructure Defined Tags
96485
+ :param Sequence['GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensionOciTagFreeformTagArgs'] freeform_tags: Oracle Cloud Infrastructure Freeform Tags
96486
+ :param str tag_slug: Oracle Cloud Infrastructure Tag slug
96487
+ """
96488
+ pulumi.set(__self__, "defined_tags", defined_tags)
96489
+ pulumi.set(__self__, "freeform_tags", freeform_tags)
96490
+ pulumi.set(__self__, "tag_slug", tag_slug)
96491
+
96492
+ @property
96493
+ @pulumi.getter(name="definedTags")
96494
+ def defined_tags(self) -> Sequence['outputs.GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensionOciTagDefinedTagResult']:
96495
+ """
96496
+ Oracle Cloud Infrastructure Defined Tags
96497
+ """
96498
+ return pulumi.get(self, "defined_tags")
96499
+
96500
+ @property
96501
+ @pulumi.getter(name="freeformTags")
96502
+ def freeform_tags(self) -> Sequence['outputs.GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensionOciTagFreeformTagResult']:
96503
+ """
96504
+ Oracle Cloud Infrastructure Freeform Tags
96505
+ """
96506
+ return pulumi.get(self, "freeform_tags")
96507
+
96508
+ @property
96509
+ @pulumi.getter(name="tagSlug")
96510
+ def tag_slug(self) -> str:
96511
+ """
96512
+ Oracle Cloud Infrastructure Tag slug
96513
+ """
96514
+ return pulumi.get(self, "tag_slug")
96515
+
96516
+
96517
+ @pulumi.output_type
96518
+ class GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensionOciTagDefinedTagResult(dict):
96519
+ def __init__(__self__, *,
96520
+ key: str,
96521
+ namespace: str,
96522
+ value: str):
96523
+ """
96524
+ :param str key: Oracle Cloud Infrastructure Tag key
96525
+ :param str namespace: Oracle Cloud Infrastructure Tag namespace
96526
+ :param str value: The ID of the App.
96527
+ """
96528
+ pulumi.set(__self__, "key", key)
96529
+ pulumi.set(__self__, "namespace", namespace)
96530
+ pulumi.set(__self__, "value", value)
96531
+
96532
+ @property
96533
+ @pulumi.getter
96534
+ def key(self) -> str:
96535
+ """
96536
+ Oracle Cloud Infrastructure Tag key
96537
+ """
96538
+ return pulumi.get(self, "key")
96539
+
96540
+ @property
96541
+ @pulumi.getter
96542
+ def namespace(self) -> str:
96543
+ """
96544
+ Oracle Cloud Infrastructure Tag namespace
96545
+ """
96546
+ return pulumi.get(self, "namespace")
96547
+
96548
+ @property
96549
+ @pulumi.getter
96550
+ def value(self) -> str:
96551
+ """
96552
+ The ID of the App.
96553
+ """
96554
+ return pulumi.get(self, "value")
96555
+
96556
+
96557
+ @pulumi.output_type
96558
+ class GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensionOciTagFreeformTagResult(dict):
96559
+ def __init__(__self__, *,
96560
+ key: str,
96561
+ value: str):
96562
+ """
96563
+ :param str key: Oracle Cloud Infrastructure Tag key
96564
+ :param str value: The ID of the App.
96565
+ """
96566
+ pulumi.set(__self__, "key", key)
96567
+ pulumi.set(__self__, "value", value)
96568
+
96569
+ @property
96570
+ @pulumi.getter
96571
+ def key(self) -> str:
96572
+ """
96573
+ Oracle Cloud Infrastructure Tag key
96574
+ """
96575
+ return pulumi.get(self, "key")
96576
+
96577
+ @property
96578
+ @pulumi.getter
96579
+ def value(self) -> str:
96580
+ """
96581
+ The ID of the App.
96582
+ """
96583
+ return pulumi.get(self, "value")
96584
+
96585
+
96586
+ @pulumi.output_type
96587
+ class GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensiondbcsGroupResult(dict):
96588
+ def __init__(__self__, *,
96589
+ domain_level_schema: str,
96590
+ domain_level_schema_names: Sequence['outputs.GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensiondbcsGroupDomainLevelSchemaNameResult'],
96591
+ instance_level_schema: str,
96592
+ instance_level_schema_names: Sequence['outputs.GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensiondbcsGroupInstanceLevelSchemaNameResult']):
96593
+ """
96594
+ :param str domain_level_schema: DBCS Domain-level schema-name. This attribute refers implicitly to a value of 'domainLevelSchemaNames' for a particular DB Domain.
96595
+ :param Sequence['GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensiondbcsGroupDomainLevelSchemaNameArgs'] domain_level_schema_names: DBCS Domain-level schema-names. Each value is specific to a DB Domain.
96596
+ :param str instance_level_schema: DBCS instance-level schema-name. This attribute refers implicitly to a value of 'instanceLevelSchemaNames' for a particular DB Instance.
96597
+ :param Sequence['GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensiondbcsGroupInstanceLevelSchemaNameArgs'] instance_level_schema_names: DBCS instance-level schema-names. Each schema-name is specific to a DB Instance.
96598
+ """
96599
+ pulumi.set(__self__, "domain_level_schema", domain_level_schema)
96600
+ pulumi.set(__self__, "domain_level_schema_names", domain_level_schema_names)
96601
+ pulumi.set(__self__, "instance_level_schema", instance_level_schema)
96602
+ pulumi.set(__self__, "instance_level_schema_names", instance_level_schema_names)
96603
+
96604
+ @property
96605
+ @pulumi.getter(name="domainLevelSchema")
96606
+ def domain_level_schema(self) -> str:
96607
+ """
96608
+ DBCS Domain-level schema-name. This attribute refers implicitly to a value of 'domainLevelSchemaNames' for a particular DB Domain.
96609
+ """
96610
+ return pulumi.get(self, "domain_level_schema")
96611
+
96612
+ @property
96613
+ @pulumi.getter(name="domainLevelSchemaNames")
96614
+ def domain_level_schema_names(self) -> Sequence['outputs.GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensiondbcsGroupDomainLevelSchemaNameResult']:
96615
+ """
96616
+ DBCS Domain-level schema-names. Each value is specific to a DB Domain.
96617
+ """
96618
+ return pulumi.get(self, "domain_level_schema_names")
96619
+
96620
+ @property
96621
+ @pulumi.getter(name="instanceLevelSchema")
96622
+ def instance_level_schema(self) -> str:
96623
+ """
96624
+ DBCS instance-level schema-name. This attribute refers implicitly to a value of 'instanceLevelSchemaNames' for a particular DB Instance.
96625
+ """
96626
+ return pulumi.get(self, "instance_level_schema")
96627
+
96628
+ @property
96629
+ @pulumi.getter(name="instanceLevelSchemaNames")
96630
+ def instance_level_schema_names(self) -> Sequence['outputs.GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensiondbcsGroupInstanceLevelSchemaNameResult']:
96631
+ """
96632
+ DBCS instance-level schema-names. Each schema-name is specific to a DB Instance.
96633
+ """
96634
+ return pulumi.get(self, "instance_level_schema_names")
96635
+
96636
+
96637
+ @pulumi.output_type
96638
+ class GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensiondbcsGroupDomainLevelSchemaNameResult(dict):
96639
+ def __init__(__self__, *,
96640
+ domain_name: str,
96641
+ schema_name: str):
96642
+ """
96643
+ :param str domain_name: DBCS Domain Name
96644
+ :param str schema_name: The DBCS schema-name granted to this Group for the DB instance that 'dbInstanceId' specifies.
96645
+ """
96646
+ pulumi.set(__self__, "domain_name", domain_name)
96647
+ pulumi.set(__self__, "schema_name", schema_name)
96648
+
96649
+ @property
96650
+ @pulumi.getter(name="domainName")
96651
+ def domain_name(self) -> str:
96652
+ """
96653
+ DBCS Domain Name
96654
+ """
96655
+ return pulumi.get(self, "domain_name")
96656
+
96657
+ @property
96658
+ @pulumi.getter(name="schemaName")
96659
+ def schema_name(self) -> str:
96660
+ """
96661
+ The DBCS schema-name granted to this Group for the DB instance that 'dbInstanceId' specifies.
96662
+ """
96663
+ return pulumi.get(self, "schema_name")
96664
+
96665
+
96666
+ @pulumi.output_type
96667
+ class GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensiondbcsGroupInstanceLevelSchemaNameResult(dict):
96668
+ def __init__(__self__, *,
96669
+ db_instance_id: str,
96670
+ schema_name: str):
96671
+ """
96672
+ :param str db_instance_id: App Id of DBCS App instance
96673
+ :param str schema_name: The DBCS schema-name granted to this Group for the DB instance that 'dbInstanceId' specifies.
96674
+ """
96675
+ pulumi.set(__self__, "db_instance_id", db_instance_id)
96676
+ pulumi.set(__self__, "schema_name", schema_name)
96677
+
96678
+ @property
96679
+ @pulumi.getter(name="dbInstanceId")
96680
+ def db_instance_id(self) -> str:
96681
+ """
96682
+ App Id of DBCS App instance
96683
+ """
96684
+ return pulumi.get(self, "db_instance_id")
96685
+
96686
+ @property
96687
+ @pulumi.getter(name="schemaName")
96688
+ def schema_name(self) -> str:
96689
+ """
96690
+ The DBCS schema-name granted to this Group for the DB instance that 'dbInstanceId' specifies.
96691
+ """
96692
+ return pulumi.get(self, "schema_name")
96693
+
96694
+
96695
+ @pulumi.output_type
96696
+ class GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensiondynamicGroupResult(dict):
96697
+ def __init__(__self__, *,
96698
+ membership_rule: str,
96699
+ membership_type: str):
96700
+ """
96701
+ :param str membership_rule: Membership rule
96702
+ :param str membership_type: Membership type
96703
+ """
96704
+ pulumi.set(__self__, "membership_rule", membership_rule)
96705
+ pulumi.set(__self__, "membership_type", membership_type)
96706
+
96707
+ @property
96708
+ @pulumi.getter(name="membershipRule")
96709
+ def membership_rule(self) -> str:
96710
+ """
96711
+ Membership rule
96712
+ """
96713
+ return pulumi.get(self, "membership_rule")
96714
+
96715
+ @property
96716
+ @pulumi.getter(name="membershipType")
96717
+ def membership_type(self) -> str:
96718
+ """
96719
+ Membership type
96720
+ """
96721
+ return pulumi.get(self, "membership_type")
96722
+
96723
+
96724
+ @pulumi.output_type
96725
+ class GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupResult(dict):
96726
+ def __init__(__self__, *,
96727
+ app_roles: Sequence['outputs.GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupAppRoleResult'],
96728
+ creation_mechanism: str,
96729
+ description: str,
96730
+ grants: Sequence['outputs.GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupGrantResult'],
96731
+ owners: Sequence['outputs.GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupOwnerResult'],
96732
+ password_policies: Sequence['outputs.GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupPasswordPolicyResult'],
96733
+ synced_from_apps: Sequence['outputs.GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupSyncedFromAppResult']):
96734
+ """
96735
+ :param Sequence['GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupAppRoleArgs'] app_roles: A list of appRoles that the user belongs to, either thorough direct membership, nested groups, or dynamically calculated
96736
+ :param str creation_mechanism: Source from which this group got created.
96737
+ :param str description: Group description
96738
+ :param Sequence['GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupGrantArgs'] grants: Grants assigned to group
96739
+ :param Sequence['GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupOwnerArgs'] owners: Group owners
96740
+ :param Sequence['GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupPasswordPolicyArgs'] password_policies: Password Policy associated with this Group.
96741
+ :param Sequence['GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupSyncedFromAppArgs'] synced_from_apps: The entity that created this Group.
96742
+ """
96743
+ pulumi.set(__self__, "app_roles", app_roles)
96744
+ pulumi.set(__self__, "creation_mechanism", creation_mechanism)
96745
+ pulumi.set(__self__, "description", description)
96746
+ pulumi.set(__self__, "grants", grants)
96747
+ pulumi.set(__self__, "owners", owners)
96748
+ pulumi.set(__self__, "password_policies", password_policies)
96749
+ pulumi.set(__self__, "synced_from_apps", synced_from_apps)
96750
+
96751
+ @property
96752
+ @pulumi.getter(name="appRoles")
96753
+ def app_roles(self) -> Sequence['outputs.GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupAppRoleResult']:
96754
+ """
96755
+ A list of appRoles that the user belongs to, either thorough direct membership, nested groups, or dynamically calculated
96756
+ """
96757
+ return pulumi.get(self, "app_roles")
96758
+
96759
+ @property
96760
+ @pulumi.getter(name="creationMechanism")
96761
+ def creation_mechanism(self) -> str:
96762
+ """
96763
+ Source from which this group got created.
96764
+ """
96765
+ return pulumi.get(self, "creation_mechanism")
96766
+
96767
+ @property
96768
+ @pulumi.getter
96769
+ def description(self) -> str:
96770
+ """
96771
+ Group description
96772
+ """
96773
+ return pulumi.get(self, "description")
96774
+
96775
+ @property
96776
+ @pulumi.getter
96777
+ def grants(self) -> Sequence['outputs.GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupGrantResult']:
96778
+ """
96779
+ Grants assigned to group
96780
+ """
96781
+ return pulumi.get(self, "grants")
96782
+
96783
+ @property
96784
+ @pulumi.getter
96785
+ def owners(self) -> Sequence['outputs.GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupOwnerResult']:
96786
+ """
96787
+ Group owners
96788
+ """
96789
+ return pulumi.get(self, "owners")
96790
+
96791
+ @property
96792
+ @pulumi.getter(name="passwordPolicies")
96793
+ def password_policies(self) -> Sequence['outputs.GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupPasswordPolicyResult']:
96794
+ """
96795
+ Password Policy associated with this Group.
96796
+ """
96797
+ return pulumi.get(self, "password_policies")
96798
+
96799
+ @property
96800
+ @pulumi.getter(name="syncedFromApps")
96801
+ def synced_from_apps(self) -> Sequence['outputs.GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupSyncedFromAppResult']:
96802
+ """
96803
+ The entity that created this Group.
96804
+ """
96805
+ return pulumi.get(self, "synced_from_apps")
96806
+
96807
+
96808
+ @pulumi.output_type
96809
+ class GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupAppRoleResult(dict):
96810
+ def __init__(__self__, *,
96811
+ admin_role: bool,
96812
+ app_id: str,
96813
+ app_name: str,
96814
+ display: str,
96815
+ legacy_group_name: str,
96816
+ ref: str,
96817
+ type: str,
96818
+ value: str):
96819
+ """
96820
+ :param bool admin_role: If true, then the role provides administrative access privileges. READ-ONLY.
96821
+ :param str app_id: App identifier
96822
+ :param str app_name: Name of parent App. READ-ONLY.
96823
+ :param str display: App Display Name
96824
+ :param str legacy_group_name: The name of the legacy group associated with this AppRole.
96825
+ :param str ref: App URI
96826
+ :param str type: The type of the entity that created this Group.
96827
+ :param str value: The ID of the App.
96828
+ """
96829
+ pulumi.set(__self__, "admin_role", admin_role)
96830
+ pulumi.set(__self__, "app_id", app_id)
96831
+ pulumi.set(__self__, "app_name", app_name)
96832
+ pulumi.set(__self__, "display", display)
96833
+ pulumi.set(__self__, "legacy_group_name", legacy_group_name)
96834
+ pulumi.set(__self__, "ref", ref)
96835
+ pulumi.set(__self__, "type", type)
96836
+ pulumi.set(__self__, "value", value)
96837
+
96838
+ @property
96839
+ @pulumi.getter(name="adminRole")
96840
+ def admin_role(self) -> bool:
96841
+ """
96842
+ If true, then the role provides administrative access privileges. READ-ONLY.
96843
+ """
96844
+ return pulumi.get(self, "admin_role")
96845
+
96846
+ @property
96847
+ @pulumi.getter(name="appId")
96848
+ def app_id(self) -> str:
96849
+ """
96850
+ App identifier
96851
+ """
96852
+ return pulumi.get(self, "app_id")
96853
+
96854
+ @property
96855
+ @pulumi.getter(name="appName")
96856
+ def app_name(self) -> str:
96857
+ """
96858
+ Name of parent App. READ-ONLY.
96859
+ """
96860
+ return pulumi.get(self, "app_name")
96861
+
96862
+ @property
96863
+ @pulumi.getter
96864
+ def display(self) -> str:
96865
+ """
96866
+ App Display Name
96867
+ """
96868
+ return pulumi.get(self, "display")
96869
+
96870
+ @property
96871
+ @pulumi.getter(name="legacyGroupName")
96872
+ def legacy_group_name(self) -> str:
96873
+ """
96874
+ The name of the legacy group associated with this AppRole.
96875
+ """
96876
+ return pulumi.get(self, "legacy_group_name")
96877
+
96878
+ @property
96879
+ @pulumi.getter
96880
+ def ref(self) -> str:
96881
+ """
96882
+ App URI
96883
+ """
96884
+ return pulumi.get(self, "ref")
96885
+
96886
+ @property
96887
+ @pulumi.getter
96888
+ def type(self) -> str:
96889
+ """
96890
+ The type of the entity that created this Group.
96891
+ """
96892
+ return pulumi.get(self, "type")
96893
+
96894
+ @property
96895
+ @pulumi.getter
96896
+ def value(self) -> str:
96897
+ """
96898
+ The ID of the App.
96899
+ """
96900
+ return pulumi.get(self, "value")
96901
+
96902
+
96903
+ @pulumi.output_type
96904
+ class GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupGrantResult(dict):
96905
+ def __init__(__self__, *,
96906
+ app_id: str,
96907
+ grant_mechanism: str,
96908
+ ref: str,
96909
+ value: str):
96910
+ """
96911
+ :param str app_id: App identifier
96912
+ :param str grant_mechanism: Each value of grantMechanism indicates how (or by what component) some App (or App-Entitlement) was granted. A customer or the UI should use only grantMechanism values that start with 'ADMINISTRATOR':
96913
+ * 'ADMINISTRATOR_TO_USER' is for a direct grant to a specific User.
96914
+ * 'ADMINISTRATOR_TO_GROUP' is for a grant to a specific Group, which results in indirect grants to Users who are members of that Group.
96915
+ * 'ADMINISTRATOR_TO_APP' is for a grant to a specific App. The grantee (client) App gains access to the granted (server) App.
96916
+ :param str ref: App URI
96917
+ :param str value: The ID of the App.
96918
+ """
96919
+ pulumi.set(__self__, "app_id", app_id)
96920
+ pulumi.set(__self__, "grant_mechanism", grant_mechanism)
96921
+ pulumi.set(__self__, "ref", ref)
96922
+ pulumi.set(__self__, "value", value)
96923
+
96924
+ @property
96925
+ @pulumi.getter(name="appId")
96926
+ def app_id(self) -> str:
96927
+ """
96928
+ App identifier
96929
+ """
96930
+ return pulumi.get(self, "app_id")
96931
+
96932
+ @property
96933
+ @pulumi.getter(name="grantMechanism")
96934
+ def grant_mechanism(self) -> str:
96935
+ """
96936
+ Each value of grantMechanism indicates how (or by what component) some App (or App-Entitlement) was granted. A customer or the UI should use only grantMechanism values that start with 'ADMINISTRATOR':
96937
+ * 'ADMINISTRATOR_TO_USER' is for a direct grant to a specific User.
96938
+ * 'ADMINISTRATOR_TO_GROUP' is for a grant to a specific Group, which results in indirect grants to Users who are members of that Group.
96939
+ * 'ADMINISTRATOR_TO_APP' is for a grant to a specific App. The grantee (client) App gains access to the granted (server) App.
96940
+ """
96941
+ return pulumi.get(self, "grant_mechanism")
96942
+
96943
+ @property
96944
+ @pulumi.getter
96945
+ def ref(self) -> str:
96946
+ """
96947
+ App URI
96948
+ """
96949
+ return pulumi.get(self, "ref")
96950
+
96951
+ @property
96952
+ @pulumi.getter
96953
+ def value(self) -> str:
96954
+ """
96955
+ The ID of the App.
96956
+ """
96957
+ return pulumi.get(self, "value")
96958
+
96959
+
96960
+ @pulumi.output_type
96961
+ class GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupOwnerResult(dict):
96962
+ def __init__(__self__, *,
96963
+ display: str,
96964
+ ref: str,
96965
+ type: str,
96966
+ value: str):
96967
+ """
96968
+ :param str display: App Display Name
96969
+ :param str ref: App URI
96970
+ :param str type: The type of the entity that created this Group.
96971
+ :param str value: The ID of the App.
96972
+ """
96973
+ pulumi.set(__self__, "display", display)
96974
+ pulumi.set(__self__, "ref", ref)
96975
+ pulumi.set(__self__, "type", type)
96976
+ pulumi.set(__self__, "value", value)
96977
+
96978
+ @property
96979
+ @pulumi.getter
96980
+ def display(self) -> str:
96981
+ """
96982
+ App Display Name
96983
+ """
96984
+ return pulumi.get(self, "display")
96985
+
96986
+ @property
96987
+ @pulumi.getter
96988
+ def ref(self) -> str:
96989
+ """
96990
+ App URI
96991
+ """
96992
+ return pulumi.get(self, "ref")
96993
+
96994
+ @property
96995
+ @pulumi.getter
96996
+ def type(self) -> str:
96997
+ """
96998
+ The type of the entity that created this Group.
96999
+ """
97000
+ return pulumi.get(self, "type")
97001
+
97002
+ @property
97003
+ @pulumi.getter
97004
+ def value(self) -> str:
97005
+ """
97006
+ The ID of the App.
97007
+ """
97008
+ return pulumi.get(self, "value")
97009
+
97010
+
97011
+ @pulumi.output_type
97012
+ class GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupPasswordPolicyResult(dict):
97013
+ def __init__(__self__, *,
97014
+ name: str,
97015
+ priority: int,
97016
+ ref: str,
97017
+ value: str):
97018
+ """
97019
+ :param str name: PasswordPolicy Name
97020
+ :param int priority: PasswordPolicy priority
97021
+ :param str ref: App URI
97022
+ :param str value: The ID of the App.
97023
+ """
97024
+ pulumi.set(__self__, "name", name)
97025
+ pulumi.set(__self__, "priority", priority)
97026
+ pulumi.set(__self__, "ref", ref)
97027
+ pulumi.set(__self__, "value", value)
97028
+
97029
+ @property
97030
+ @pulumi.getter
97031
+ def name(self) -> str:
97032
+ """
97033
+ PasswordPolicy Name
97034
+ """
97035
+ return pulumi.get(self, "name")
97036
+
97037
+ @property
97038
+ @pulumi.getter
97039
+ def priority(self) -> int:
97040
+ """
97041
+ PasswordPolicy priority
97042
+ """
97043
+ return pulumi.get(self, "priority")
97044
+
97045
+ @property
97046
+ @pulumi.getter
97047
+ def ref(self) -> str:
97048
+ """
97049
+ App URI
97050
+ """
97051
+ return pulumi.get(self, "ref")
97052
+
97053
+ @property
97054
+ @pulumi.getter
97055
+ def value(self) -> str:
97056
+ """
97057
+ The ID of the App.
97058
+ """
97059
+ return pulumi.get(self, "value")
97060
+
97061
+
97062
+ @pulumi.output_type
97063
+ class GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupSyncedFromAppResult(dict):
97064
+ def __init__(__self__, *,
97065
+ display: str,
97066
+ ref: str,
97067
+ type: str,
97068
+ value: str):
97069
+ """
97070
+ :param str display: App Display Name
97071
+ :param str ref: App URI
97072
+ :param str type: The type of the entity that created this Group.
97073
+ :param str value: The ID of the App.
97074
+ """
97075
+ pulumi.set(__self__, "display", display)
97076
+ pulumi.set(__self__, "ref", ref)
97077
+ pulumi.set(__self__, "type", type)
97078
+ pulumi.set(__self__, "value", value)
97079
+
97080
+ @property
97081
+ @pulumi.getter
97082
+ def display(self) -> str:
97083
+ """
97084
+ App Display Name
97085
+ """
97086
+ return pulumi.get(self, "display")
97087
+
97088
+ @property
97089
+ @pulumi.getter
97090
+ def ref(self) -> str:
97091
+ """
97092
+ App URI
97093
+ """
97094
+ return pulumi.get(self, "ref")
97095
+
97096
+ @property
97097
+ @pulumi.getter
97098
+ def type(self) -> str:
97099
+ """
97100
+ The type of the entity that created this Group.
97101
+ """
97102
+ return pulumi.get(self, "type")
97103
+
97104
+ @property
97105
+ @pulumi.getter
97106
+ def value(self) -> str:
97107
+ """
97108
+ The ID of the App.
97109
+ """
97110
+ return pulumi.get(self, "value")
97111
+
97112
+
97113
+ @pulumi.output_type
97114
+ class GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensionposixGroupResult(dict):
97115
+ def __init__(__self__, *,
97116
+ gid_number: int):
97117
+ """
97118
+ :param int gid_number: Integer uniquely identifying a group in a POSIX administrative domain
97119
+ """
97120
+ pulumi.set(__self__, "gid_number", gid_number)
97121
+
97122
+ @property
97123
+ @pulumi.getter(name="gidNumber")
97124
+ def gid_number(self) -> int:
97125
+ """
97126
+ Integer uniquely identifying a group in a POSIX administrative domain
97127
+ """
97128
+ return pulumi.get(self, "gid_number")
97129
+
97130
+
97131
+ @pulumi.output_type
97132
+ class GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensionrequestableGroupResult(dict):
97133
+ def __init__(__self__, *,
97134
+ requestable: bool):
97135
+ """
97136
+ :param bool requestable: Flag controlling whether group membership can be request by user through self service console.
97137
+ """
97138
+ pulumi.set(__self__, "requestable", requestable)
97139
+
97140
+ @property
97141
+ @pulumi.getter
97142
+ def requestable(self) -> bool:
97143
+ """
97144
+ Flag controlling whether group membership can be request by user through self service console.
97145
+ """
97146
+ return pulumi.get(self, "requestable")
97147
+
97148
+
97149
+ @pulumi.output_type
97150
+ class GetDomainsGroupsGroupResult(dict):
97151
+ def __init__(__self__, *,
97152
+ attribute_sets: Sequence[str],
97153
+ attributes: str,
97154
+ authorization: str,
97155
+ compartment_ocid: str,
97156
+ delete_in_progress: bool,
97157
+ display_name: str,
97158
+ domain_ocid: str,
97159
+ external_id: str,
97160
+ id: str,
97161
+ idcs_created_bies: Sequence['outputs.GetDomainsGroupsGroupIdcsCreatedByResult'],
97162
+ idcs_endpoint: str,
97163
+ idcs_last_modified_bies: Sequence['outputs.GetDomainsGroupsGroupIdcsLastModifiedByResult'],
97164
+ idcs_last_upgraded_in_release: str,
97165
+ idcs_prevented_operations: Sequence[str],
97166
+ members: Sequence['outputs.GetDomainsGroupsGroupMemberResult'],
97167
+ metas: Sequence['outputs.GetDomainsGroupsGroupMetaResult'],
97168
+ non_unique_display_name: str,
97169
+ ocid: str,
97170
+ resource_type_schema_version: str,
97171
+ schemas: Sequence[str],
97172
+ tags: Sequence['outputs.GetDomainsGroupsGroupTagResult'],
97173
+ tenancy_ocid: str,
97174
+ urnietfparamsscimschemasoracleidcsextension_oci_tags: Sequence['outputs.GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensionOciTagResult'],
97175
+ urnietfparamsscimschemasoracleidcsextensiondbcs_groups: Sequence['outputs.GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensiondbcsGroupResult'],
97176
+ urnietfparamsscimschemasoracleidcsextensiondynamic_groups: Sequence['outputs.GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensiondynamicGroupResult'],
97177
+ urnietfparamsscimschemasoracleidcsextensiongroup_groups: Sequence['outputs.GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupResult'],
97178
+ urnietfparamsscimschemasoracleidcsextensionposix_groups: Sequence['outputs.GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensionposixGroupResult'],
97179
+ urnietfparamsscimschemasoracleidcsextensionrequestable_groups: Sequence['outputs.GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensionrequestableGroupResult']):
97180
+ """
97181
+ :param Sequence[str] attribute_sets: A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.
97182
+ :param str attributes: A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
97183
+ :param str authorization: The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
97184
+ :param str compartment_ocid: Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
97185
+ :param bool delete_in_progress: A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long.
97186
+ :param str display_name: The Group display name.
97187
+ :param str domain_ocid: Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
97188
+ :param str external_id: An identifier for the Resource as defined by the Service Consumer. The externalId may simplify identification of the Resource between Service Consumer and Service Provider by allowing the Consumer to refer to the Resource with its own identifier, obviating the need to store a local mapping between the local identifier of the Resource and the identifier used by the Service Provider. Each Resource MAY include a non-empty externalId value. The value of the externalId attribute is always issued by the Service Consumer and can never be specified by the Service Provider. The Service Provider MUST always interpret the externalId as scoped to the Service Consumer's tenant.
97189
+ :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.
97190
+ :param Sequence['GetDomainsGroupsGroupIdcsCreatedByArgs'] idcs_created_bies: The User or App who created the Resource
97191
+ :param str idcs_endpoint: The basic endpoint for the identity domain
97192
+ :param Sequence['GetDomainsGroupsGroupIdcsLastModifiedByArgs'] idcs_last_modified_bies: The User or App who modified the Resource
97193
+ :param str idcs_last_upgraded_in_release: The release number when the resource was upgraded.
97194
+ :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.
97195
+ :param Sequence['GetDomainsGroupsGroupMemberArgs'] members: The group members. <b>Important:</b> When requesting group members, a maximum of 10,000 members can be returned in a single request. If the response contains more than 10,000 members, the request will fail. Use 'startIndex' and 'count' to return members in pages instead of in a single response, for example: #attributes=members[startIndex=1%26count=10]. This REST API is SCIM compliant.
97196
+ :param Sequence['GetDomainsGroupsGroupMetaArgs'] metas: A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
97197
+ :param str non_unique_display_name: A human readable name for the group as defined by the Service Consumer.
97198
+ :param str ocid: Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
97199
+ :param str resource_type_schema_version: An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
97200
+ :param Sequence[str] schemas: REQUIRED. The schemas attribute is an array of Strings which allows introspection of the supported schema version for a SCIM representation as well any schema extensions supported by that representation. Each String value must be a unique URI. This specification defines URIs for User, Group, and a standard \\"enterprise\\" extension. All representations of SCIM schema MUST include a non-zero value array with value(s) of the URIs supported by that representation. Duplicate values MUST NOT be included. Value order is not specified and MUST not impact behavior.
97201
+ :param Sequence['GetDomainsGroupsGroupTagArgs'] tags: A list of tags on this resource.
97202
+ :param str tenancy_ocid: Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
97203
+ :param Sequence['GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensionOciTagArgs'] urnietfparamsscimschemasoracleidcsextension_oci_tags: Oracle Cloud Infrastructure Tags.
97204
+ :param Sequence['GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensiondbcsGroupArgs'] urnietfparamsscimschemasoracleidcsextensiondbcs_groups: Schema for Database Service Resource
97205
+ :param Sequence['GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensiondynamicGroupArgs'] urnietfparamsscimschemasoracleidcsextensiondynamic_groups: Dynamic Group
97206
+ :param Sequence['GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupArgs'] urnietfparamsscimschemasoracleidcsextensiongroup_groups: Oracle Identity Cloud Service Group
97207
+ :param Sequence['GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensionposixGroupArgs'] urnietfparamsscimschemasoracleidcsextensionposix_groups: POSIX Group extension
97208
+ :param Sequence['GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensionrequestableGroupArgs'] urnietfparamsscimschemasoracleidcsextensionrequestable_groups: Requestable Group
97209
+ """
97210
+ pulumi.set(__self__, "attribute_sets", attribute_sets)
97211
+ pulumi.set(__self__, "attributes", attributes)
97212
+ pulumi.set(__self__, "authorization", authorization)
97213
+ pulumi.set(__self__, "compartment_ocid", compartment_ocid)
97214
+ pulumi.set(__self__, "delete_in_progress", delete_in_progress)
97215
+ pulumi.set(__self__, "display_name", display_name)
97216
+ pulumi.set(__self__, "domain_ocid", domain_ocid)
97217
+ pulumi.set(__self__, "external_id", external_id)
97218
+ pulumi.set(__self__, "id", id)
97219
+ pulumi.set(__self__, "idcs_created_bies", idcs_created_bies)
97220
+ pulumi.set(__self__, "idcs_endpoint", idcs_endpoint)
97221
+ pulumi.set(__self__, "idcs_last_modified_bies", idcs_last_modified_bies)
97222
+ pulumi.set(__self__, "idcs_last_upgraded_in_release", idcs_last_upgraded_in_release)
97223
+ pulumi.set(__self__, "idcs_prevented_operations", idcs_prevented_operations)
97224
+ pulumi.set(__self__, "members", members)
97225
+ pulumi.set(__self__, "metas", metas)
97226
+ pulumi.set(__self__, "non_unique_display_name", non_unique_display_name)
97227
+ pulumi.set(__self__, "ocid", ocid)
97228
+ pulumi.set(__self__, "resource_type_schema_version", resource_type_schema_version)
97229
+ pulumi.set(__self__, "schemas", schemas)
97230
+ pulumi.set(__self__, "tags", tags)
97231
+ pulumi.set(__self__, "tenancy_ocid", tenancy_ocid)
97232
+ pulumi.set(__self__, "urnietfparamsscimschemasoracleidcsextension_oci_tags", urnietfparamsscimschemasoracleidcsextension_oci_tags)
97233
+ pulumi.set(__self__, "urnietfparamsscimschemasoracleidcsextensiondbcs_groups", urnietfparamsscimschemasoracleidcsextensiondbcs_groups)
97234
+ pulumi.set(__self__, "urnietfparamsscimschemasoracleidcsextensiondynamic_groups", urnietfparamsscimschemasoracleidcsextensiondynamic_groups)
97235
+ pulumi.set(__self__, "urnietfparamsscimschemasoracleidcsextensiongroup_groups", urnietfparamsscimschemasoracleidcsextensiongroup_groups)
97236
+ pulumi.set(__self__, "urnietfparamsscimschemasoracleidcsextensionposix_groups", urnietfparamsscimschemasoracleidcsextensionposix_groups)
97237
+ pulumi.set(__self__, "urnietfparamsscimschemasoracleidcsextensionrequestable_groups", urnietfparamsscimschemasoracleidcsextensionrequestable_groups)
97238
+
97239
+ @property
97240
+ @pulumi.getter(name="attributeSets")
97241
+ def attribute_sets(self) -> Sequence[str]:
97242
+ """
97243
+ A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.
97244
+ """
97245
+ return pulumi.get(self, "attribute_sets")
97246
+
97247
+ @property
97248
+ @pulumi.getter
97249
+ def attributes(self) -> str:
97250
+ """
97251
+ A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
97252
+ """
97253
+ return pulumi.get(self, "attributes")
97254
+
97255
+ @property
97256
+ @pulumi.getter
97257
+ def authorization(self) -> str:
97258
+ """
97259
+ The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
97260
+ """
97261
+ return pulumi.get(self, "authorization")
97262
+
97263
+ @property
97264
+ @pulumi.getter(name="compartmentOcid")
97265
+ def compartment_ocid(self) -> str:
97266
+ """
97267
+ Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
97268
+ """
97269
+ return pulumi.get(self, "compartment_ocid")
97270
+
97271
+ @property
97272
+ @pulumi.getter(name="deleteInProgress")
97273
+ def delete_in_progress(self) -> bool:
97274
+ """
97275
+ A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long.
97276
+ """
97277
+ return pulumi.get(self, "delete_in_progress")
97278
+
97279
+ @property
97280
+ @pulumi.getter(name="displayName")
97281
+ def display_name(self) -> str:
97282
+ """
97283
+ The Group display name.
97284
+ """
97285
+ return pulumi.get(self, "display_name")
97286
+
97287
+ @property
97288
+ @pulumi.getter(name="domainOcid")
97289
+ def domain_ocid(self) -> str:
97290
+ """
97291
+ Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
97292
+ """
97293
+ return pulumi.get(self, "domain_ocid")
97294
+
97295
+ @property
97296
+ @pulumi.getter(name="externalId")
97297
+ def external_id(self) -> str:
97298
+ """
97299
+ An identifier for the Resource as defined by the Service Consumer. The externalId may simplify identification of the Resource between Service Consumer and Service Provider by allowing the Consumer to refer to the Resource with its own identifier, obviating the need to store a local mapping between the local identifier of the Resource and the identifier used by the Service Provider. Each Resource MAY include a non-empty externalId value. The value of the externalId attribute is always issued by the Service Consumer and can never be specified by the Service Provider. The Service Provider MUST always interpret the externalId as scoped to the Service Consumer's tenant.
97300
+ """
97301
+ return pulumi.get(self, "external_id")
97302
+
97303
+ @property
97304
+ @pulumi.getter
97305
+ def id(self) -> str:
97306
+ """
97307
+ 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.
97308
+ """
97309
+ return pulumi.get(self, "id")
97310
+
97311
+ @property
97312
+ @pulumi.getter(name="idcsCreatedBies")
97313
+ def idcs_created_bies(self) -> Sequence['outputs.GetDomainsGroupsGroupIdcsCreatedByResult']:
97314
+ """
97315
+ The User or App who created the Resource
97316
+ """
97317
+ return pulumi.get(self, "idcs_created_bies")
97318
+
97319
+ @property
97320
+ @pulumi.getter(name="idcsEndpoint")
97321
+ def idcs_endpoint(self) -> str:
97322
+ """
97323
+ The basic endpoint for the identity domain
97324
+ """
97325
+ return pulumi.get(self, "idcs_endpoint")
97326
+
97327
+ @property
97328
+ @pulumi.getter(name="idcsLastModifiedBies")
97329
+ def idcs_last_modified_bies(self) -> Sequence['outputs.GetDomainsGroupsGroupIdcsLastModifiedByResult']:
97330
+ """
97331
+ The User or App who modified the Resource
97332
+ """
97333
+ return pulumi.get(self, "idcs_last_modified_bies")
97334
+
97335
+ @property
97336
+ @pulumi.getter(name="idcsLastUpgradedInRelease")
97337
+ def idcs_last_upgraded_in_release(self) -> str:
97338
+ """
97339
+ The release number when the resource was upgraded.
97340
+ """
97341
+ return pulumi.get(self, "idcs_last_upgraded_in_release")
97342
+
97343
+ @property
97344
+ @pulumi.getter(name="idcsPreventedOperations")
97345
+ def idcs_prevented_operations(self) -> Sequence[str]:
97346
+ """
97347
+ Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
97348
+ """
97349
+ return pulumi.get(self, "idcs_prevented_operations")
97350
+
97351
+ @property
97352
+ @pulumi.getter
97353
+ def members(self) -> Sequence['outputs.GetDomainsGroupsGroupMemberResult']:
97354
+ """
97355
+ The group members. <b>Important:</b> When requesting group members, a maximum of 10,000 members can be returned in a single request. If the response contains more than 10,000 members, the request will fail. Use 'startIndex' and 'count' to return members in pages instead of in a single response, for example: #attributes=members[startIndex=1%26count=10]. This REST API is SCIM compliant.
97356
+ """
97357
+ return pulumi.get(self, "members")
97358
+
97359
+ @property
97360
+ @pulumi.getter
97361
+ def metas(self) -> Sequence['outputs.GetDomainsGroupsGroupMetaResult']:
97362
+ """
97363
+ A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
97364
+ """
97365
+ return pulumi.get(self, "metas")
97366
+
97367
+ @property
97368
+ @pulumi.getter(name="nonUniqueDisplayName")
97369
+ def non_unique_display_name(self) -> str:
97370
+ """
97371
+ A human readable name for the group as defined by the Service Consumer.
97372
+ """
97373
+ return pulumi.get(self, "non_unique_display_name")
97374
+
97375
+ @property
97376
+ @pulumi.getter
97377
+ def ocid(self) -> str:
97378
+ """
97379
+ Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
97380
+ """
97381
+ return pulumi.get(self, "ocid")
97382
+
97383
+ @property
97384
+ @pulumi.getter(name="resourceTypeSchemaVersion")
97385
+ def resource_type_schema_version(self) -> str:
97386
+ """
97387
+ An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
97388
+ """
97389
+ return pulumi.get(self, "resource_type_schema_version")
97390
+
97391
+ @property
97392
+ @pulumi.getter
97393
+ def schemas(self) -> Sequence[str]:
97394
+ """
97395
+ REQUIRED. The schemas attribute is an array of Strings which allows introspection of the supported schema version for a SCIM representation as well any schema extensions supported by that representation. Each String value must be a unique URI. This specification defines URIs for User, Group, and a standard \\"enterprise\\" extension. All representations of SCIM schema MUST include a non-zero value array with value(s) of the URIs supported by that representation. Duplicate values MUST NOT be included. Value order is not specified and MUST not impact behavior.
97396
+ """
97397
+ return pulumi.get(self, "schemas")
97398
+
97399
+ @property
97400
+ @pulumi.getter
97401
+ def tags(self) -> Sequence['outputs.GetDomainsGroupsGroupTagResult']:
97402
+ """
97403
+ A list of tags on this resource.
97404
+ """
97405
+ return pulumi.get(self, "tags")
97406
+
97407
+ @property
97408
+ @pulumi.getter(name="tenancyOcid")
97409
+ def tenancy_ocid(self) -> str:
97410
+ """
97411
+ Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
97412
+ """
97413
+ return pulumi.get(self, "tenancy_ocid")
97414
+
97415
+ @property
97416
+ @pulumi.getter(name="urnietfparamsscimschemasoracleidcsextensionOciTags")
97417
+ def urnietfparamsscimschemasoracleidcsextension_oci_tags(self) -> Sequence['outputs.GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensionOciTagResult']:
97418
+ """
97419
+ Oracle Cloud Infrastructure Tags.
97420
+ """
97421
+ return pulumi.get(self, "urnietfparamsscimschemasoracleidcsextension_oci_tags")
97422
+
97423
+ @property
97424
+ @pulumi.getter(name="urnietfparamsscimschemasoracleidcsextensiondbcsGroups")
97425
+ def urnietfparamsscimschemasoracleidcsextensiondbcs_groups(self) -> Sequence['outputs.GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensiondbcsGroupResult']:
97426
+ """
97427
+ Schema for Database Service Resource
97428
+ """
97429
+ return pulumi.get(self, "urnietfparamsscimschemasoracleidcsextensiondbcs_groups")
97430
+
97431
+ @property
97432
+ @pulumi.getter(name="urnietfparamsscimschemasoracleidcsextensiondynamicGroups")
97433
+ def urnietfparamsscimschemasoracleidcsextensiondynamic_groups(self) -> Sequence['outputs.GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensiondynamicGroupResult']:
97434
+ """
97435
+ Dynamic Group
97436
+ """
97437
+ return pulumi.get(self, "urnietfparamsscimschemasoracleidcsextensiondynamic_groups")
97438
+
97439
+ @property
97440
+ @pulumi.getter(name="urnietfparamsscimschemasoracleidcsextensiongroupGroups")
97441
+ def urnietfparamsscimschemasoracleidcsextensiongroup_groups(self) -> Sequence['outputs.GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupResult']:
97442
+ """
97443
+ Oracle Identity Cloud Service Group
97444
+ """
97445
+ return pulumi.get(self, "urnietfparamsscimschemasoracleidcsextensiongroup_groups")
97446
+
97447
+ @property
97448
+ @pulumi.getter(name="urnietfparamsscimschemasoracleidcsextensionposixGroups")
97449
+ def urnietfparamsscimschemasoracleidcsextensionposix_groups(self) -> Sequence['outputs.GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensionposixGroupResult']:
97450
+ """
97451
+ POSIX Group extension
97452
+ """
97453
+ return pulumi.get(self, "urnietfparamsscimschemasoracleidcsextensionposix_groups")
97454
+
97455
+ @property
97456
+ @pulumi.getter(name="urnietfparamsscimschemasoracleidcsextensionrequestableGroups")
97457
+ def urnietfparamsscimschemasoracleidcsextensionrequestable_groups(self) -> Sequence['outputs.GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensionrequestableGroupResult']:
97458
+ """
97459
+ Requestable Group
97460
+ """
97461
+ return pulumi.get(self, "urnietfparamsscimschemasoracleidcsextensionrequestable_groups")
97462
+
97463
+
97464
+ @pulumi.output_type
97465
+ class GetDomainsGroupsGroupIdcsCreatedByResult(dict):
97466
+ def __init__(__self__, *,
97467
+ display: str,
97468
+ ocid: str,
97469
+ ref: str,
97470
+ type: str,
97471
+ value: str):
97472
+ """
97473
+ :param str display: App Display Name
97474
+ :param str ocid: Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
97475
+ :param str ref: App URI
97476
+ :param str type: The type of the entity that created this Group.
97477
+ :param str value: The ID of the App.
97478
+ """
97479
+ pulumi.set(__self__, "display", display)
97480
+ pulumi.set(__self__, "ocid", ocid)
97481
+ pulumi.set(__self__, "ref", ref)
97482
+ pulumi.set(__self__, "type", type)
97483
+ pulumi.set(__self__, "value", value)
97484
+
97485
+ @property
97486
+ @pulumi.getter
97487
+ def display(self) -> str:
97488
+ """
97489
+ App Display Name
97490
+ """
97491
+ return pulumi.get(self, "display")
97492
+
97493
+ @property
97494
+ @pulumi.getter
97495
+ def ocid(self) -> str:
97496
+ """
97497
+ Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
97498
+ """
97499
+ return pulumi.get(self, "ocid")
97500
+
97501
+ @property
97502
+ @pulumi.getter
97503
+ def ref(self) -> str:
97504
+ """
97505
+ App URI
97506
+ """
97507
+ return pulumi.get(self, "ref")
97508
+
97509
+ @property
97510
+ @pulumi.getter
97511
+ def type(self) -> str:
97512
+ """
97513
+ The type of the entity that created this Group.
97514
+ """
97515
+ return pulumi.get(self, "type")
97516
+
97517
+ @property
97518
+ @pulumi.getter
97519
+ def value(self) -> str:
97520
+ """
97521
+ The ID of the App.
97522
+ """
97523
+ return pulumi.get(self, "value")
97524
+
97525
+
97526
+ @pulumi.output_type
97527
+ class GetDomainsGroupsGroupIdcsLastModifiedByResult(dict):
97528
+ def __init__(__self__, *,
97529
+ display: str,
97530
+ ocid: str,
97531
+ ref: str,
97532
+ type: str,
97533
+ value: str):
97534
+ """
97535
+ :param str display: App Display Name
97536
+ :param str ocid: Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
97537
+ :param str ref: App URI
97538
+ :param str type: The type of the entity that created this Group.
97539
+ :param str value: The ID of the App.
97540
+ """
97541
+ pulumi.set(__self__, "display", display)
97542
+ pulumi.set(__self__, "ocid", ocid)
97543
+ pulumi.set(__self__, "ref", ref)
97544
+ pulumi.set(__self__, "type", type)
97545
+ pulumi.set(__self__, "value", value)
97546
+
97547
+ @property
97548
+ @pulumi.getter
97549
+ def display(self) -> str:
97550
+ """
97551
+ App Display Name
97552
+ """
97553
+ return pulumi.get(self, "display")
97554
+
97555
+ @property
97556
+ @pulumi.getter
97557
+ def ocid(self) -> str:
97558
+ """
97559
+ Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
97560
+ """
97561
+ return pulumi.get(self, "ocid")
97562
+
97563
+ @property
97564
+ @pulumi.getter
97565
+ def ref(self) -> str:
97566
+ """
97567
+ App URI
97568
+ """
97569
+ return pulumi.get(self, "ref")
97570
+
97571
+ @property
97572
+ @pulumi.getter
97573
+ def type(self) -> str:
97574
+ """
97575
+ The type of the entity that created this Group.
97576
+ """
97577
+ return pulumi.get(self, "type")
97578
+
97579
+ @property
97580
+ @pulumi.getter
97581
+ def value(self) -> str:
97582
+ """
97583
+ The ID of the App.
97584
+ """
97585
+ return pulumi.get(self, "value")
97586
+
97587
+
97588
+ @pulumi.output_type
97589
+ class GetDomainsGroupsGroupMemberResult(dict):
97590
+ def __init__(__self__, *,
97591
+ date_added: str,
97592
+ display: str,
97593
+ membership_ocid: str,
97594
+ name: str,
97595
+ ocid: str,
97596
+ ref: str,
97597
+ type: str,
97598
+ value: str):
97599
+ """
97600
+ :param str date_added: The date and time that the member was added to the group.
97601
+ :param str display: App Display Name
97602
+ :param str membership_ocid: The membership OCID.
97603
+ :param str name: PasswordPolicy Name
97604
+ :param str ocid: Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
97605
+ :param str ref: App URI
97606
+ :param str type: The type of the entity that created this Group.
97607
+ :param str value: The ID of the App.
97608
+ """
97609
+ pulumi.set(__self__, "date_added", date_added)
97610
+ pulumi.set(__self__, "display", display)
97611
+ pulumi.set(__self__, "membership_ocid", membership_ocid)
97612
+ pulumi.set(__self__, "name", name)
97613
+ pulumi.set(__self__, "ocid", ocid)
97614
+ pulumi.set(__self__, "ref", ref)
97615
+ pulumi.set(__self__, "type", type)
97616
+ pulumi.set(__self__, "value", value)
97617
+
97618
+ @property
97619
+ @pulumi.getter(name="dateAdded")
97620
+ def date_added(self) -> str:
97621
+ """
97622
+ The date and time that the member was added to the group.
97623
+ """
97624
+ return pulumi.get(self, "date_added")
97625
+
97626
+ @property
97627
+ @pulumi.getter
97628
+ def display(self) -> str:
97629
+ """
97630
+ App Display Name
97631
+ """
97632
+ return pulumi.get(self, "display")
97633
+
97634
+ @property
97635
+ @pulumi.getter(name="membershipOcid")
97636
+ def membership_ocid(self) -> str:
97637
+ """
97638
+ The membership OCID.
97639
+ """
97640
+ return pulumi.get(self, "membership_ocid")
97641
+
97642
+ @property
97643
+ @pulumi.getter
97644
+ def name(self) -> str:
97645
+ """
97646
+ PasswordPolicy Name
97647
+ """
97648
+ return pulumi.get(self, "name")
97649
+
97650
+ @property
97651
+ @pulumi.getter
97652
+ def ocid(self) -> str:
97653
+ """
97654
+ Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
97655
+ """
97656
+ return pulumi.get(self, "ocid")
97657
+
97658
+ @property
97659
+ @pulumi.getter
97660
+ def ref(self) -> str:
97661
+ """
97662
+ App URI
97663
+ """
97664
+ return pulumi.get(self, "ref")
97665
+
97666
+ @property
97667
+ @pulumi.getter
97668
+ def type(self) -> str:
97669
+ """
97670
+ The type of the entity that created this Group.
97671
+ """
97672
+ return pulumi.get(self, "type")
97673
+
97674
+ @property
97675
+ @pulumi.getter
97676
+ def value(self) -> str:
97677
+ """
97678
+ The ID of the App.
97679
+ """
97680
+ return pulumi.get(self, "value")
97681
+
97682
+
97683
+ @pulumi.output_type
97684
+ class GetDomainsGroupsGroupMetaResult(dict):
95575
97685
  def __init__(__self__, *,
95576
97686
  created: str,
95577
97687
  last_modified: str,
@@ -95633,7 +97743,7 @@ class GetDomainsGroupMetaResult(dict):
95633
97743
 
95634
97744
 
95635
97745
  @pulumi.output_type
95636
- class GetDomainsGroupTagResult(dict):
97746
+ class GetDomainsGroupsGroupTagResult(dict):
95637
97747
  def __init__(__self__, *,
95638
97748
  key: str,
95639
97749
  value: str):
@@ -95662,14 +97772,14 @@ class GetDomainsGroupTagResult(dict):
95662
97772
 
95663
97773
 
95664
97774
  @pulumi.output_type
95665
- class GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensionOciTagResult(dict):
97775
+ class GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensionOciTagResult(dict):
95666
97776
  def __init__(__self__, *,
95667
- defined_tags: Sequence['outputs.GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensionOciTagDefinedTagResult'],
95668
- freeform_tags: Sequence['outputs.GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensionOciTagFreeformTagResult'],
97777
+ defined_tags: Sequence['outputs.GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensionOciTagDefinedTagResult'],
97778
+ freeform_tags: Sequence['outputs.GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensionOciTagFreeformTagResult'],
95669
97779
  tag_slug: str):
95670
97780
  """
95671
- :param Sequence['GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensionOciTagDefinedTagArgs'] defined_tags: Oracle Cloud Infrastructure Defined Tags
95672
- :param Sequence['GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensionOciTagFreeformTagArgs'] freeform_tags: Oracle Cloud Infrastructure Freeform Tags
97781
+ :param Sequence['GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensionOciTagDefinedTagArgs'] defined_tags: Oracle Cloud Infrastructure Defined Tags
97782
+ :param Sequence['GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensionOciTagFreeformTagArgs'] freeform_tags: Oracle Cloud Infrastructure Freeform Tags
95673
97783
  :param str tag_slug: Oracle Cloud Infrastructure Tag slug
95674
97784
  """
95675
97785
  pulumi.set(__self__, "defined_tags", defined_tags)
@@ -95678,7 +97788,7 @@ class GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensionOciTagResult(dic
95678
97788
 
95679
97789
  @property
95680
97790
  @pulumi.getter(name="definedTags")
95681
- def defined_tags(self) -> Sequence['outputs.GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensionOciTagDefinedTagResult']:
97791
+ def defined_tags(self) -> Sequence['outputs.GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensionOciTagDefinedTagResult']:
95682
97792
  """
95683
97793
  Oracle Cloud Infrastructure Defined Tags
95684
97794
  """
@@ -95686,7 +97796,7 @@ class GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensionOciTagResult(dic
95686
97796
 
95687
97797
  @property
95688
97798
  @pulumi.getter(name="freeformTags")
95689
- def freeform_tags(self) -> Sequence['outputs.GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensionOciTagFreeformTagResult']:
97799
+ def freeform_tags(self) -> Sequence['outputs.GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensionOciTagFreeformTagResult']:
95690
97800
  """
95691
97801
  Oracle Cloud Infrastructure Freeform Tags
95692
97802
  """
@@ -95702,7 +97812,7 @@ class GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensionOciTagResult(dic
95702
97812
 
95703
97813
 
95704
97814
  @pulumi.output_type
95705
- class GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensionOciTagDefinedTagResult(dict):
97815
+ class GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensionOciTagDefinedTagResult(dict):
95706
97816
  def __init__(__self__, *,
95707
97817
  key: str,
95708
97818
  namespace: str,
@@ -95742,7 +97852,7 @@ class GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensionOciTagDefinedTag
95742
97852
 
95743
97853
 
95744
97854
  @pulumi.output_type
95745
- class GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensionOciTagFreeformTagResult(dict):
97855
+ class GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensionOciTagFreeformTagResult(dict):
95746
97856
  def __init__(__self__, *,
95747
97857
  key: str,
95748
97858
  value: str):
@@ -95771,17 +97881,17 @@ class GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensionOciTagFreeformTa
95771
97881
 
95772
97882
 
95773
97883
  @pulumi.output_type
95774
- class GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensiondbcsGroupResult(dict):
97884
+ class GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensiondbcsGroupResult(dict):
95775
97885
  def __init__(__self__, *,
95776
97886
  domain_level_schema: str,
95777
- domain_level_schema_names: Sequence['outputs.GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensiondbcsGroupDomainLevelSchemaNameResult'],
97887
+ domain_level_schema_names: Sequence['outputs.GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensiondbcsGroupDomainLevelSchemaNameResult'],
95778
97888
  instance_level_schema: str,
95779
- instance_level_schema_names: Sequence['outputs.GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensiondbcsGroupInstanceLevelSchemaNameResult']):
97889
+ instance_level_schema_names: Sequence['outputs.GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensiondbcsGroupInstanceLevelSchemaNameResult']):
95780
97890
  """
95781
97891
  :param str domain_level_schema: DBCS Domain-level schema-name. This attribute refers implicitly to a value of 'domainLevelSchemaNames' for a particular DB Domain.
95782
- :param Sequence['GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensiondbcsGroupDomainLevelSchemaNameArgs'] domain_level_schema_names: DBCS Domain-level schema-names. Each value is specific to a DB Domain.
97892
+ :param Sequence['GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensiondbcsGroupDomainLevelSchemaNameArgs'] domain_level_schema_names: DBCS Domain-level schema-names. Each value is specific to a DB Domain.
95783
97893
  :param str instance_level_schema: DBCS instance-level schema-name. This attribute refers implicitly to a value of 'instanceLevelSchemaNames' for a particular DB Instance.
95784
- :param Sequence['GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensiondbcsGroupInstanceLevelSchemaNameArgs'] instance_level_schema_names: DBCS instance-level schema-names. Each schema-name is specific to a DB Instance.
97894
+ :param Sequence['GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensiondbcsGroupInstanceLevelSchemaNameArgs'] instance_level_schema_names: DBCS instance-level schema-names. Each schema-name is specific to a DB Instance.
95785
97895
  """
95786
97896
  pulumi.set(__self__, "domain_level_schema", domain_level_schema)
95787
97897
  pulumi.set(__self__, "domain_level_schema_names", domain_level_schema_names)
@@ -95798,7 +97908,7 @@ class GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensiondbcsGroupResult(
95798
97908
 
95799
97909
  @property
95800
97910
  @pulumi.getter(name="domainLevelSchemaNames")
95801
- def domain_level_schema_names(self) -> Sequence['outputs.GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensiondbcsGroupDomainLevelSchemaNameResult']:
97911
+ def domain_level_schema_names(self) -> Sequence['outputs.GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensiondbcsGroupDomainLevelSchemaNameResult']:
95802
97912
  """
95803
97913
  DBCS Domain-level schema-names. Each value is specific to a DB Domain.
95804
97914
  """
@@ -95814,7 +97924,7 @@ class GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensiondbcsGroupResult(
95814
97924
 
95815
97925
  @property
95816
97926
  @pulumi.getter(name="instanceLevelSchemaNames")
95817
- def instance_level_schema_names(self) -> Sequence['outputs.GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensiondbcsGroupInstanceLevelSchemaNameResult']:
97927
+ def instance_level_schema_names(self) -> Sequence['outputs.GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensiondbcsGroupInstanceLevelSchemaNameResult']:
95818
97928
  """
95819
97929
  DBCS instance-level schema-names. Each schema-name is specific to a DB Instance.
95820
97930
  """
@@ -95822,7 +97932,7 @@ class GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensiondbcsGroupResult(
95822
97932
 
95823
97933
 
95824
97934
  @pulumi.output_type
95825
- class GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensiondbcsGroupDomainLevelSchemaNameResult(dict):
97935
+ class GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensiondbcsGroupDomainLevelSchemaNameResult(dict):
95826
97936
  def __init__(__self__, *,
95827
97937
  domain_name: str,
95828
97938
  schema_name: str):
@@ -95851,7 +97961,7 @@ class GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensiondbcsGroupDomainL
95851
97961
 
95852
97962
 
95853
97963
  @pulumi.output_type
95854
- class GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensiondbcsGroupInstanceLevelSchemaNameResult(dict):
97964
+ class GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensiondbcsGroupInstanceLevelSchemaNameResult(dict):
95855
97965
  def __init__(__self__, *,
95856
97966
  db_instance_id: str,
95857
97967
  schema_name: str):
@@ -95880,7 +97990,7 @@ class GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensiondbcsGroupInstanc
95880
97990
 
95881
97991
 
95882
97992
  @pulumi.output_type
95883
- class GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensiondynamicGroupResult(dict):
97993
+ class GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensiondynamicGroupResult(dict):
95884
97994
  def __init__(__self__, *,
95885
97995
  membership_rule: str,
95886
97996
  membership_type: str):
@@ -95909,23 +98019,23 @@ class GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensiondynamicGroupResu
95909
98019
 
95910
98020
 
95911
98021
  @pulumi.output_type
95912
- class GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupResult(dict):
98022
+ class GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupResult(dict):
95913
98023
  def __init__(__self__, *,
95914
- app_roles: Sequence['outputs.GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupAppRoleResult'],
98024
+ app_roles: Sequence['outputs.GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupAppRoleResult'],
95915
98025
  creation_mechanism: str,
95916
98026
  description: str,
95917
- grants: Sequence['outputs.GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupGrantResult'],
95918
- owners: Sequence['outputs.GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupOwnerResult'],
95919
- password_policies: Sequence['outputs.GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupPasswordPolicyResult'],
95920
- synced_from_apps: Sequence['outputs.GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupSyncedFromAppResult']):
98027
+ grants: Sequence['outputs.GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupGrantResult'],
98028
+ owners: Sequence['outputs.GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupOwnerResult'],
98029
+ password_policies: Sequence['outputs.GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupPasswordPolicyResult'],
98030
+ synced_from_apps: Sequence['outputs.GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupSyncedFromAppResult']):
95921
98031
  """
95922
- :param Sequence['GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupAppRoleArgs'] app_roles: A list of appRoles that the user belongs to, either thorough direct membership, nested groups, or dynamically calculated
98032
+ :param Sequence['GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupAppRoleArgs'] app_roles: A list of appRoles that the user belongs to, either thorough direct membership, nested groups, or dynamically calculated
95923
98033
  :param str creation_mechanism: Source from which this group got created.
95924
98034
  :param str description: Group description
95925
- :param Sequence['GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupGrantArgs'] grants: Grants assigned to group
95926
- :param Sequence['GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupOwnerArgs'] owners: Group owners
95927
- :param Sequence['GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupPasswordPolicyArgs'] password_policies: Password Policy associated with this Group.
95928
- :param Sequence['GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupSyncedFromAppArgs'] synced_from_apps: The entity that created this Group.
98035
+ :param Sequence['GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupGrantArgs'] grants: Grants assigned to group
98036
+ :param Sequence['GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupOwnerArgs'] owners: Group owners
98037
+ :param Sequence['GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupPasswordPolicyArgs'] password_policies: Password Policy associated with this Group.
98038
+ :param Sequence['GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupSyncedFromAppArgs'] synced_from_apps: The entity that created this Group.
95929
98039
  """
95930
98040
  pulumi.set(__self__, "app_roles", app_roles)
95931
98041
  pulumi.set(__self__, "creation_mechanism", creation_mechanism)
@@ -95937,7 +98047,7 @@ class GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupResult
95937
98047
 
95938
98048
  @property
95939
98049
  @pulumi.getter(name="appRoles")
95940
- def app_roles(self) -> Sequence['outputs.GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupAppRoleResult']:
98050
+ def app_roles(self) -> Sequence['outputs.GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupAppRoleResult']:
95941
98051
  """
95942
98052
  A list of appRoles that the user belongs to, either thorough direct membership, nested groups, or dynamically calculated
95943
98053
  """
@@ -95961,7 +98071,7 @@ class GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupResult
95961
98071
 
95962
98072
  @property
95963
98073
  @pulumi.getter
95964
- def grants(self) -> Sequence['outputs.GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupGrantResult']:
98074
+ def grants(self) -> Sequence['outputs.GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupGrantResult']:
95965
98075
  """
95966
98076
  Grants assigned to group
95967
98077
  """
@@ -95969,7 +98079,7 @@ class GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupResult
95969
98079
 
95970
98080
  @property
95971
98081
  @pulumi.getter
95972
- def owners(self) -> Sequence['outputs.GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupOwnerResult']:
98082
+ def owners(self) -> Sequence['outputs.GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupOwnerResult']:
95973
98083
  """
95974
98084
  Group owners
95975
98085
  """
@@ -95977,7 +98087,7 @@ class GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupResult
95977
98087
 
95978
98088
  @property
95979
98089
  @pulumi.getter(name="passwordPolicies")
95980
- def password_policies(self) -> Sequence['outputs.GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupPasswordPolicyResult']:
98090
+ def password_policies(self) -> Sequence['outputs.GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupPasswordPolicyResult']:
95981
98091
  """
95982
98092
  Password Policy associated with this Group.
95983
98093
  """
@@ -95985,7 +98095,7 @@ class GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupResult
95985
98095
 
95986
98096
  @property
95987
98097
  @pulumi.getter(name="syncedFromApps")
95988
- def synced_from_apps(self) -> Sequence['outputs.GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupSyncedFromAppResult']:
98098
+ def synced_from_apps(self) -> Sequence['outputs.GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupSyncedFromAppResult']:
95989
98099
  """
95990
98100
  The entity that created this Group.
95991
98101
  """
@@ -95993,7 +98103,7 @@ class GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupResult
95993
98103
 
95994
98104
 
95995
98105
  @pulumi.output_type
95996
- class GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupAppRoleResult(dict):
98106
+ class GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupAppRoleResult(dict):
95997
98107
  def __init__(__self__, *,
95998
98108
  admin_role: bool,
95999
98109
  app_id: str,
@@ -96088,7 +98198,7 @@ class GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupAppRol
96088
98198
 
96089
98199
 
96090
98200
  @pulumi.output_type
96091
- class GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupGrantResult(dict):
98201
+ class GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupGrantResult(dict):
96092
98202
  def __init__(__self__, *,
96093
98203
  app_id: str,
96094
98204
  grant_mechanism: str,
@@ -96145,7 +98255,7 @@ class GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupGrantR
96145
98255
 
96146
98256
 
96147
98257
  @pulumi.output_type
96148
- class GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupOwnerResult(dict):
98258
+ class GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupOwnerResult(dict):
96149
98259
  def __init__(__self__, *,
96150
98260
  display: str,
96151
98261
  ref: str,
@@ -96196,7 +98306,7 @@ class GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupOwnerR
96196
98306
 
96197
98307
 
96198
98308
  @pulumi.output_type
96199
- class GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupPasswordPolicyResult(dict):
98309
+ class GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupPasswordPolicyResult(dict):
96200
98310
  def __init__(__self__, *,
96201
98311
  name: str,
96202
98312
  priority: int,
@@ -96247,7 +98357,7 @@ class GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupPasswo
96247
98357
 
96248
98358
 
96249
98359
  @pulumi.output_type
96250
- class GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupSyncedFromAppResult(dict):
98360
+ class GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupSyncedFromAppResult(dict):
96251
98361
  def __init__(__self__, *,
96252
98362
  display: str,
96253
98363
  ref: str,
@@ -96298,7 +98408,7 @@ class GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupSynced
96298
98408
 
96299
98409
 
96300
98410
  @pulumi.output_type
96301
- class GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensionposixGroupResult(dict):
98411
+ class GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensionposixGroupResult(dict):
96302
98412
  def __init__(__self__, *,
96303
98413
  gid_number: int):
96304
98414
  """
@@ -96316,7 +98426,7 @@ class GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensionposixGroupResult
96316
98426
 
96317
98427
 
96318
98428
  @pulumi.output_type
96319
- class GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensionrequestableGroupResult(dict):
98429
+ class GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensionrequestableGroupResult(dict):
96320
98430
  def __init__(__self__, *,
96321
98431
  requestable: bool):
96322
98432
  """
@@ -96334,322 +98444,7 @@ class GetDomainsGroupUrnietfparamsscimschemasoracleidcsextensionrequestableGroup
96334
98444
 
96335
98445
 
96336
98446
  @pulumi.output_type
96337
- class GetDomainsGroupsGroupResult(dict):
96338
- def __init__(__self__, *,
96339
- attribute_sets: Sequence[str],
96340
- attributes: str,
96341
- authorization: str,
96342
- compartment_ocid: str,
96343
- delete_in_progress: bool,
96344
- display_name: str,
96345
- domain_ocid: str,
96346
- external_id: str,
96347
- id: str,
96348
- idcs_created_bies: Sequence['outputs.GetDomainsGroupsGroupIdcsCreatedByResult'],
96349
- idcs_endpoint: str,
96350
- idcs_last_modified_bies: Sequence['outputs.GetDomainsGroupsGroupIdcsLastModifiedByResult'],
96351
- idcs_last_upgraded_in_release: str,
96352
- idcs_prevented_operations: Sequence[str],
96353
- members: Sequence['outputs.GetDomainsGroupsGroupMemberResult'],
96354
- metas: Sequence['outputs.GetDomainsGroupsGroupMetaResult'],
96355
- non_unique_display_name: str,
96356
- ocid: str,
96357
- resource_type_schema_version: str,
96358
- schemas: Sequence[str],
96359
- tags: Sequence['outputs.GetDomainsGroupsGroupTagResult'],
96360
- tenancy_ocid: str,
96361
- urnietfparamsscimschemasoracleidcsextension_oci_tags: Sequence['outputs.GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensionOciTagResult'],
96362
- urnietfparamsscimschemasoracleidcsextensiondbcs_groups: Sequence['outputs.GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensiondbcsGroupResult'],
96363
- urnietfparamsscimschemasoracleidcsextensiondynamic_groups: Sequence['outputs.GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensiondynamicGroupResult'],
96364
- urnietfparamsscimschemasoracleidcsextensiongroup_groups: Sequence['outputs.GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupResult'],
96365
- urnietfparamsscimschemasoracleidcsextensionposix_groups: Sequence['outputs.GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensionposixGroupResult'],
96366
- urnietfparamsscimschemasoracleidcsextensionrequestable_groups: Sequence['outputs.GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensionrequestableGroupResult']):
96367
- """
96368
- :param Sequence[str] attribute_sets: A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.
96369
- :param str attributes: A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
96370
- :param str authorization: The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
96371
- :param str compartment_ocid: Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
96372
- :param bool delete_in_progress: A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long.
96373
- :param str display_name: The Group display name.
96374
- :param str domain_ocid: Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
96375
- :param str external_id: An identifier for the Resource as defined by the Service Consumer. The externalId may simplify identification of the Resource between Service Consumer and Service Provider by allowing the Consumer to refer to the Resource with its own identifier, obviating the need to store a local mapping between the local identifier of the Resource and the identifier used by the Service Provider. Each Resource MAY include a non-empty externalId value. The value of the externalId attribute is always issued by the Service Consumer and can never be specified by the Service Provider. The Service Provider MUST always interpret the externalId as scoped to the Service Consumer's tenant.
96376
- :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.
96377
- :param Sequence['GetDomainsGroupsGroupIdcsCreatedByArgs'] idcs_created_bies: The User or App who created the Resource
96378
- :param str idcs_endpoint: The basic endpoint for the identity domain
96379
- :param Sequence['GetDomainsGroupsGroupIdcsLastModifiedByArgs'] idcs_last_modified_bies: The User or App who modified the Resource
96380
- :param str idcs_last_upgraded_in_release: The release number when the resource was upgraded.
96381
- :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.
96382
- :param Sequence['GetDomainsGroupsGroupMemberArgs'] members: The group members. <b>Important:</b> When requesting group members, a maximum of 10,000 members can be returned in a single request. If the response contains more than 10,000 members, the request will fail. Use 'startIndex' and 'count' to return members in pages instead of in a single response, for example: #attributes=members[startIndex=1%26count=10]. This REST API is SCIM compliant.
96383
- :param Sequence['GetDomainsGroupsGroupMetaArgs'] metas: A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
96384
- :param str non_unique_display_name: A human readable name for the group as defined by the Service Consumer.
96385
- :param str ocid: Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
96386
- :param str resource_type_schema_version: An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
96387
- :param Sequence[str] schemas: REQUIRED. The schemas attribute is an array of Strings which allows introspection of the supported schema version for a SCIM representation as well any schema extensions supported by that representation. Each String value must be a unique URI. This specification defines URIs for User, Group, and a standard \\"enterprise\\" extension. All representations of SCIM schema MUST include a non-zero value array with value(s) of the URIs supported by that representation. Duplicate values MUST NOT be included. Value order is not specified and MUST not impact behavior.
96388
- :param Sequence['GetDomainsGroupsGroupTagArgs'] tags: A list of tags on this resource.
96389
- :param str tenancy_ocid: Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
96390
- :param Sequence['GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensionOciTagArgs'] urnietfparamsscimschemasoracleidcsextension_oci_tags: Oracle Cloud Infrastructure Tags.
96391
- :param Sequence['GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensiondbcsGroupArgs'] urnietfparamsscimschemasoracleidcsextensiondbcs_groups: Schema for Database Service Resource
96392
- :param Sequence['GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensiondynamicGroupArgs'] urnietfparamsscimschemasoracleidcsextensiondynamic_groups: Dynamic Group
96393
- :param Sequence['GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupArgs'] urnietfparamsscimschemasoracleidcsextensiongroup_groups: Oracle Identity Cloud Service Group
96394
- :param Sequence['GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensionposixGroupArgs'] urnietfparamsscimschemasoracleidcsextensionposix_groups: POSIX Group extension
96395
- :param Sequence['GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensionrequestableGroupArgs'] urnietfparamsscimschemasoracleidcsextensionrequestable_groups: Requestable Group
96396
- """
96397
- pulumi.set(__self__, "attribute_sets", attribute_sets)
96398
- pulumi.set(__self__, "attributes", attributes)
96399
- pulumi.set(__self__, "authorization", authorization)
96400
- pulumi.set(__self__, "compartment_ocid", compartment_ocid)
96401
- pulumi.set(__self__, "delete_in_progress", delete_in_progress)
96402
- pulumi.set(__self__, "display_name", display_name)
96403
- pulumi.set(__self__, "domain_ocid", domain_ocid)
96404
- pulumi.set(__self__, "external_id", external_id)
96405
- pulumi.set(__self__, "id", id)
96406
- pulumi.set(__self__, "idcs_created_bies", idcs_created_bies)
96407
- pulumi.set(__self__, "idcs_endpoint", idcs_endpoint)
96408
- pulumi.set(__self__, "idcs_last_modified_bies", idcs_last_modified_bies)
96409
- pulumi.set(__self__, "idcs_last_upgraded_in_release", idcs_last_upgraded_in_release)
96410
- pulumi.set(__self__, "idcs_prevented_operations", idcs_prevented_operations)
96411
- pulumi.set(__self__, "members", members)
96412
- pulumi.set(__self__, "metas", metas)
96413
- pulumi.set(__self__, "non_unique_display_name", non_unique_display_name)
96414
- pulumi.set(__self__, "ocid", ocid)
96415
- pulumi.set(__self__, "resource_type_schema_version", resource_type_schema_version)
96416
- pulumi.set(__self__, "schemas", schemas)
96417
- pulumi.set(__self__, "tags", tags)
96418
- pulumi.set(__self__, "tenancy_ocid", tenancy_ocid)
96419
- pulumi.set(__self__, "urnietfparamsscimschemasoracleidcsextension_oci_tags", urnietfparamsscimschemasoracleidcsextension_oci_tags)
96420
- pulumi.set(__self__, "urnietfparamsscimschemasoracleidcsextensiondbcs_groups", urnietfparamsscimschemasoracleidcsextensiondbcs_groups)
96421
- pulumi.set(__self__, "urnietfparamsscimschemasoracleidcsextensiondynamic_groups", urnietfparamsscimschemasoracleidcsextensiondynamic_groups)
96422
- pulumi.set(__self__, "urnietfparamsscimschemasoracleidcsextensiongroup_groups", urnietfparamsscimschemasoracleidcsextensiongroup_groups)
96423
- pulumi.set(__self__, "urnietfparamsscimschemasoracleidcsextensionposix_groups", urnietfparamsscimschemasoracleidcsextensionposix_groups)
96424
- pulumi.set(__self__, "urnietfparamsscimschemasoracleidcsextensionrequestable_groups", urnietfparamsscimschemasoracleidcsextensionrequestable_groups)
96425
-
96426
- @property
96427
- @pulumi.getter(name="attributeSets")
96428
- def attribute_sets(self) -> Sequence[str]:
96429
- """
96430
- A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.
96431
- """
96432
- return pulumi.get(self, "attribute_sets")
96433
-
96434
- @property
96435
- @pulumi.getter
96436
- def attributes(self) -> str:
96437
- """
96438
- A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
96439
- """
96440
- return pulumi.get(self, "attributes")
96441
-
96442
- @property
96443
- @pulumi.getter
96444
- def authorization(self) -> str:
96445
- """
96446
- The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
96447
- """
96448
- return pulumi.get(self, "authorization")
96449
-
96450
- @property
96451
- @pulumi.getter(name="compartmentOcid")
96452
- def compartment_ocid(self) -> str:
96453
- """
96454
- Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
96455
- """
96456
- return pulumi.get(self, "compartment_ocid")
96457
-
96458
- @property
96459
- @pulumi.getter(name="deleteInProgress")
96460
- def delete_in_progress(self) -> bool:
96461
- """
96462
- A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long.
96463
- """
96464
- return pulumi.get(self, "delete_in_progress")
96465
-
96466
- @property
96467
- @pulumi.getter(name="displayName")
96468
- def display_name(self) -> str:
96469
- """
96470
- The Group display name.
96471
- """
96472
- return pulumi.get(self, "display_name")
96473
-
96474
- @property
96475
- @pulumi.getter(name="domainOcid")
96476
- def domain_ocid(self) -> str:
96477
- """
96478
- Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
96479
- """
96480
- return pulumi.get(self, "domain_ocid")
96481
-
96482
- @property
96483
- @pulumi.getter(name="externalId")
96484
- def external_id(self) -> str:
96485
- """
96486
- An identifier for the Resource as defined by the Service Consumer. The externalId may simplify identification of the Resource between Service Consumer and Service Provider by allowing the Consumer to refer to the Resource with its own identifier, obviating the need to store a local mapping between the local identifier of the Resource and the identifier used by the Service Provider. Each Resource MAY include a non-empty externalId value. The value of the externalId attribute is always issued by the Service Consumer and can never be specified by the Service Provider. The Service Provider MUST always interpret the externalId as scoped to the Service Consumer's tenant.
96487
- """
96488
- return pulumi.get(self, "external_id")
96489
-
96490
- @property
96491
- @pulumi.getter
96492
- def id(self) -> str:
96493
- """
96494
- 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.
96495
- """
96496
- return pulumi.get(self, "id")
96497
-
96498
- @property
96499
- @pulumi.getter(name="idcsCreatedBies")
96500
- def idcs_created_bies(self) -> Sequence['outputs.GetDomainsGroupsGroupIdcsCreatedByResult']:
96501
- """
96502
- The User or App who created the Resource
96503
- """
96504
- return pulumi.get(self, "idcs_created_bies")
96505
-
96506
- @property
96507
- @pulumi.getter(name="idcsEndpoint")
96508
- def idcs_endpoint(self) -> str:
96509
- """
96510
- The basic endpoint for the identity domain
96511
- """
96512
- return pulumi.get(self, "idcs_endpoint")
96513
-
96514
- @property
96515
- @pulumi.getter(name="idcsLastModifiedBies")
96516
- def idcs_last_modified_bies(self) -> Sequence['outputs.GetDomainsGroupsGroupIdcsLastModifiedByResult']:
96517
- """
96518
- The User or App who modified the Resource
96519
- """
96520
- return pulumi.get(self, "idcs_last_modified_bies")
96521
-
96522
- @property
96523
- @pulumi.getter(name="idcsLastUpgradedInRelease")
96524
- def idcs_last_upgraded_in_release(self) -> str:
96525
- """
96526
- The release number when the resource was upgraded.
96527
- """
96528
- return pulumi.get(self, "idcs_last_upgraded_in_release")
96529
-
96530
- @property
96531
- @pulumi.getter(name="idcsPreventedOperations")
96532
- def idcs_prevented_operations(self) -> Sequence[str]:
96533
- """
96534
- Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
96535
- """
96536
- return pulumi.get(self, "idcs_prevented_operations")
96537
-
96538
- @property
96539
- @pulumi.getter
96540
- def members(self) -> Sequence['outputs.GetDomainsGroupsGroupMemberResult']:
96541
- """
96542
- The group members. <b>Important:</b> When requesting group members, a maximum of 10,000 members can be returned in a single request. If the response contains more than 10,000 members, the request will fail. Use 'startIndex' and 'count' to return members in pages instead of in a single response, for example: #attributes=members[startIndex=1%26count=10]. This REST API is SCIM compliant.
96543
- """
96544
- return pulumi.get(self, "members")
96545
-
96546
- @property
96547
- @pulumi.getter
96548
- def metas(self) -> Sequence['outputs.GetDomainsGroupsGroupMetaResult']:
96549
- """
96550
- A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
96551
- """
96552
- return pulumi.get(self, "metas")
96553
-
96554
- @property
96555
- @pulumi.getter(name="nonUniqueDisplayName")
96556
- def non_unique_display_name(self) -> str:
96557
- """
96558
- A human readable name for the group as defined by the Service Consumer.
96559
- """
96560
- return pulumi.get(self, "non_unique_display_name")
96561
-
96562
- @property
96563
- @pulumi.getter
96564
- def ocid(self) -> str:
96565
- """
96566
- Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
96567
- """
96568
- return pulumi.get(self, "ocid")
96569
-
96570
- @property
96571
- @pulumi.getter(name="resourceTypeSchemaVersion")
96572
- def resource_type_schema_version(self) -> str:
96573
- """
96574
- An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
96575
- """
96576
- return pulumi.get(self, "resource_type_schema_version")
96577
-
96578
- @property
96579
- @pulumi.getter
96580
- def schemas(self) -> Sequence[str]:
96581
- """
96582
- REQUIRED. The schemas attribute is an array of Strings which allows introspection of the supported schema version for a SCIM representation as well any schema extensions supported by that representation. Each String value must be a unique URI. This specification defines URIs for User, Group, and a standard \\"enterprise\\" extension. All representations of SCIM schema MUST include a non-zero value array with value(s) of the URIs supported by that representation. Duplicate values MUST NOT be included. Value order is not specified and MUST not impact behavior.
96583
- """
96584
- return pulumi.get(self, "schemas")
96585
-
96586
- @property
96587
- @pulumi.getter
96588
- def tags(self) -> Sequence['outputs.GetDomainsGroupsGroupTagResult']:
96589
- """
96590
- A list of tags on this resource.
96591
- """
96592
- return pulumi.get(self, "tags")
96593
-
96594
- @property
96595
- @pulumi.getter(name="tenancyOcid")
96596
- def tenancy_ocid(self) -> str:
96597
- """
96598
- Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
96599
- """
96600
- return pulumi.get(self, "tenancy_ocid")
96601
-
96602
- @property
96603
- @pulumi.getter(name="urnietfparamsscimschemasoracleidcsextensionOciTags")
96604
- def urnietfparamsscimschemasoracleidcsextension_oci_tags(self) -> Sequence['outputs.GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensionOciTagResult']:
96605
- """
96606
- Oracle Cloud Infrastructure Tags.
96607
- """
96608
- return pulumi.get(self, "urnietfparamsscimschemasoracleidcsextension_oci_tags")
96609
-
96610
- @property
96611
- @pulumi.getter(name="urnietfparamsscimschemasoracleidcsextensiondbcsGroups")
96612
- def urnietfparamsscimschemasoracleidcsextensiondbcs_groups(self) -> Sequence['outputs.GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensiondbcsGroupResult']:
96613
- """
96614
- Schema for Database Service Resource
96615
- """
96616
- return pulumi.get(self, "urnietfparamsscimschemasoracleidcsextensiondbcs_groups")
96617
-
96618
- @property
96619
- @pulumi.getter(name="urnietfparamsscimschemasoracleidcsextensiondynamicGroups")
96620
- def urnietfparamsscimschemasoracleidcsextensiondynamic_groups(self) -> Sequence['outputs.GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensiondynamicGroupResult']:
96621
- """
96622
- Dynamic Group
96623
- """
96624
- return pulumi.get(self, "urnietfparamsscimschemasoracleidcsextensiondynamic_groups")
96625
-
96626
- @property
96627
- @pulumi.getter(name="urnietfparamsscimschemasoracleidcsextensiongroupGroups")
96628
- def urnietfparamsscimschemasoracleidcsextensiongroup_groups(self) -> Sequence['outputs.GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupResult']:
96629
- """
96630
- Oracle Identity Cloud Service Group
96631
- """
96632
- return pulumi.get(self, "urnietfparamsscimschemasoracleidcsextensiongroup_groups")
96633
-
96634
- @property
96635
- @pulumi.getter(name="urnietfparamsscimschemasoracleidcsextensionposixGroups")
96636
- def urnietfparamsscimschemasoracleidcsextensionposix_groups(self) -> Sequence['outputs.GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensionposixGroupResult']:
96637
- """
96638
- POSIX Group extension
96639
- """
96640
- return pulumi.get(self, "urnietfparamsscimschemasoracleidcsextensionposix_groups")
96641
-
96642
- @property
96643
- @pulumi.getter(name="urnietfparamsscimschemasoracleidcsextensionrequestableGroups")
96644
- def urnietfparamsscimschemasoracleidcsextensionrequestable_groups(self) -> Sequence['outputs.GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensionrequestableGroupResult']:
96645
- """
96646
- Requestable Group
96647
- """
96648
- return pulumi.get(self, "urnietfparamsscimschemasoracleidcsextensionrequestable_groups")
96649
-
96650
-
96651
- @pulumi.output_type
96652
- class GetDomainsGroupsGroupIdcsCreatedByResult(dict):
98447
+ class GetDomainsIdentityPropagationTrustIdcsCreatedByResult(dict):
96653
98448
  def __init__(__self__, *,
96654
98449
  display: str,
96655
98450
  ocid: str,
@@ -96657,11 +98452,10 @@ class GetDomainsGroupsGroupIdcsCreatedByResult(dict):
96657
98452
  type: str,
96658
98453
  value: str):
96659
98454
  """
96660
- :param str display: App Display Name
98455
+ :param str display: The displayName of the User or App who modified this Resource
96661
98456
  :param str ocid: Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
96662
- :param str ref: App URI
96663
- :param str type: The type of the entity that created this Group.
96664
- :param str value: The ID of the App.
98457
+ :param str type: The type of the inbound token from the Identity cloud provider.
98458
+ :param str value: Value of the tag.
96665
98459
  """
96666
98460
  pulumi.set(__self__, "display", display)
96667
98461
  pulumi.set(__self__, "ocid", ocid)
@@ -96673,7 +98467,7 @@ class GetDomainsGroupsGroupIdcsCreatedByResult(dict):
96673
98467
  @pulumi.getter
96674
98468
  def display(self) -> str:
96675
98469
  """
96676
- App Display Name
98470
+ The displayName of the User or App who modified this Resource
96677
98471
  """
96678
98472
  return pulumi.get(self, "display")
96679
98473
 
@@ -96688,16 +98482,13 @@ class GetDomainsGroupsGroupIdcsCreatedByResult(dict):
96688
98482
  @property
96689
98483
  @pulumi.getter
96690
98484
  def ref(self) -> str:
96691
- """
96692
- App URI
96693
- """
96694
98485
  return pulumi.get(self, "ref")
96695
98486
 
96696
98487
  @property
96697
98488
  @pulumi.getter
96698
98489
  def type(self) -> str:
96699
98490
  """
96700
- The type of the entity that created this Group.
98491
+ The type of the inbound token from the Identity cloud provider.
96701
98492
  """
96702
98493
  return pulumi.get(self, "type")
96703
98494
 
@@ -96705,13 +98496,13 @@ class GetDomainsGroupsGroupIdcsCreatedByResult(dict):
96705
98496
  @pulumi.getter
96706
98497
  def value(self) -> str:
96707
98498
  """
96708
- The ID of the App.
98499
+ Value of the tag.
96709
98500
  """
96710
98501
  return pulumi.get(self, "value")
96711
98502
 
96712
98503
 
96713
98504
  @pulumi.output_type
96714
- class GetDomainsGroupsGroupIdcsLastModifiedByResult(dict):
98505
+ class GetDomainsIdentityPropagationTrustIdcsLastModifiedByResult(dict):
96715
98506
  def __init__(__self__, *,
96716
98507
  display: str,
96717
98508
  ocid: str,
@@ -96719,11 +98510,10 @@ class GetDomainsGroupsGroupIdcsLastModifiedByResult(dict):
96719
98510
  type: str,
96720
98511
  value: str):
96721
98512
  """
96722
- :param str display: App Display Name
98513
+ :param str display: The displayName of the User or App who modified this Resource
96723
98514
  :param str ocid: Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
96724
- :param str ref: App URI
96725
- :param str type: The type of the entity that created this Group.
96726
- :param str value: The ID of the App.
98515
+ :param str type: The type of the inbound token from the Identity cloud provider.
98516
+ :param str value: Value of the tag.
96727
98517
  """
96728
98518
  pulumi.set(__self__, "display", display)
96729
98519
  pulumi.set(__self__, "ocid", ocid)
@@ -96735,7 +98525,7 @@ class GetDomainsGroupsGroupIdcsLastModifiedByResult(dict):
96735
98525
  @pulumi.getter
96736
98526
  def display(self) -> str:
96737
98527
  """
96738
- App Display Name
98528
+ The displayName of the User or App who modified this Resource
96739
98529
  """
96740
98530
  return pulumi.get(self, "display")
96741
98531
 
@@ -96750,16 +98540,13 @@ class GetDomainsGroupsGroupIdcsLastModifiedByResult(dict):
96750
98540
  @property
96751
98541
  @pulumi.getter
96752
98542
  def ref(self) -> str:
96753
- """
96754
- App URI
96755
- """
96756
98543
  return pulumi.get(self, "ref")
96757
98544
 
96758
98545
  @property
96759
98546
  @pulumi.getter
96760
98547
  def type(self) -> str:
96761
98548
  """
96762
- The type of the entity that created this Group.
98549
+ The type of the inbound token from the Identity cloud provider.
96763
98550
  """
96764
98551
  return pulumi.get(self, "type")
96765
98552
 
@@ -96767,108 +98554,89 @@ class GetDomainsGroupsGroupIdcsLastModifiedByResult(dict):
96767
98554
  @pulumi.getter
96768
98555
  def value(self) -> str:
96769
98556
  """
96770
- The ID of the App.
98557
+ Value of the tag.
96771
98558
  """
96772
98559
  return pulumi.get(self, "value")
96773
98560
 
96774
98561
 
96775
98562
  @pulumi.output_type
96776
- class GetDomainsGroupsGroupMemberResult(dict):
98563
+ class GetDomainsIdentityPropagationTrustImpersonationServiceUserResult(dict):
96777
98564
  def __init__(__self__, *,
96778
- date_added: str,
96779
- display: str,
96780
- membership_ocid: str,
96781
- name: str,
96782
98565
  ocid: str,
96783
98566
  ref: str,
96784
- type: str,
98567
+ rule: str,
96785
98568
  value: str):
96786
98569
  """
96787
- :param str date_added: The date and time that the member was added to the group.
96788
- :param str display: App Display Name
96789
- :param str membership_ocid: The membership OCID.
96790
- :param str name: PasswordPolicy Name
96791
98570
  :param str ocid: Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
96792
- :param str ref: App URI
96793
- :param str type: The type of the entity that created this Group.
96794
- :param str value: The ID of the App.
98571
+ :param str rule: The rule expression to be used for matching the inbound token for impersonation.
98572
+ :param str value: Value of the tag.
96795
98573
  """
96796
- pulumi.set(__self__, "date_added", date_added)
96797
- pulumi.set(__self__, "display", display)
96798
- pulumi.set(__self__, "membership_ocid", membership_ocid)
96799
- pulumi.set(__self__, "name", name)
96800
98574
  pulumi.set(__self__, "ocid", ocid)
96801
98575
  pulumi.set(__self__, "ref", ref)
96802
- pulumi.set(__self__, "type", type)
98576
+ pulumi.set(__self__, "rule", rule)
96803
98577
  pulumi.set(__self__, "value", value)
96804
98578
 
96805
- @property
96806
- @pulumi.getter(name="dateAdded")
96807
- def date_added(self) -> str:
96808
- """
96809
- The date and time that the member was added to the group.
96810
- """
96811
- return pulumi.get(self, "date_added")
96812
-
96813
98579
  @property
96814
98580
  @pulumi.getter
96815
- def display(self) -> str:
98581
+ def ocid(self) -> str:
96816
98582
  """
96817
- App Display Name
98583
+ Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
96818
98584
  """
96819
- return pulumi.get(self, "display")
98585
+ return pulumi.get(self, "ocid")
96820
98586
 
96821
98587
  @property
96822
- @pulumi.getter(name="membershipOcid")
96823
- def membership_ocid(self) -> str:
96824
- """
96825
- The membership OCID.
96826
- """
96827
- return pulumi.get(self, "membership_ocid")
98588
+ @pulumi.getter
98589
+ def ref(self) -> str:
98590
+ return pulumi.get(self, "ref")
96828
98591
 
96829
98592
  @property
96830
98593
  @pulumi.getter
96831
- def name(self) -> str:
98594
+ def rule(self) -> str:
96832
98595
  """
96833
- PasswordPolicy Name
98596
+ The rule expression to be used for matching the inbound token for impersonation.
96834
98597
  """
96835
- return pulumi.get(self, "name")
98598
+ return pulumi.get(self, "rule")
96836
98599
 
96837
98600
  @property
96838
98601
  @pulumi.getter
96839
- def ocid(self) -> str:
98602
+ def value(self) -> str:
96840
98603
  """
96841
- Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
98604
+ Value of the tag.
96842
98605
  """
96843
- return pulumi.get(self, "ocid")
98606
+ return pulumi.get(self, "value")
96844
98607
 
96845
- @property
96846
- @pulumi.getter
96847
- def ref(self) -> str:
98608
+
98609
+ @pulumi.output_type
98610
+ class GetDomainsIdentityPropagationTrustKeytabResult(dict):
98611
+ def __init__(__self__, *,
98612
+ secret_ocid: str,
98613
+ secret_version: int):
96848
98614
  """
96849
- App URI
98615
+ :param str secret_ocid: The OCID of the secret. The secret content corresponding to the OCID is expected to be in Base64 encoded content type.
98616
+ :param int secret_version: The version of the secret. When the version is not specified, then the latest secret version is used during runtime.
96850
98617
  """
96851
- return pulumi.get(self, "ref")
98618
+ pulumi.set(__self__, "secret_ocid", secret_ocid)
98619
+ pulumi.set(__self__, "secret_version", secret_version)
96852
98620
 
96853
98621
  @property
96854
- @pulumi.getter
96855
- def type(self) -> str:
98622
+ @pulumi.getter(name="secretOcid")
98623
+ def secret_ocid(self) -> str:
96856
98624
  """
96857
- The type of the entity that created this Group.
98625
+ The OCID of the secret. The secret content corresponding to the OCID is expected to be in Base64 encoded content type.
96858
98626
  """
96859
- return pulumi.get(self, "type")
98627
+ return pulumi.get(self, "secret_ocid")
96860
98628
 
96861
98629
  @property
96862
- @pulumi.getter
96863
- def value(self) -> str:
98630
+ @pulumi.getter(name="secretVersion")
98631
+ def secret_version(self) -> int:
96864
98632
  """
96865
- The ID of the App.
98633
+ The version of the secret. When the version is not specified, then the latest secret version is used during runtime.
96866
98634
  """
96867
- return pulumi.get(self, "value")
98635
+ return pulumi.get(self, "secret_version")
96868
98636
 
96869
98637
 
96870
98638
  @pulumi.output_type
96871
- class GetDomainsGroupsGroupMetaResult(dict):
98639
+ class GetDomainsIdentityPropagationTrustMetaResult(dict):
96872
98640
  def __init__(__self__, *,
96873
98641
  created: str,
96874
98642
  last_modified: str,
@@ -96930,13 +98698,13 @@ class GetDomainsGroupsGroupMetaResult(dict):
96930
98698
 
96931
98699
 
96932
98700
  @pulumi.output_type
96933
- class GetDomainsGroupsGroupTagResult(dict):
98701
+ class GetDomainsIdentityPropagationTrustTagResult(dict):
96934
98702
  def __init__(__self__, *,
96935
98703
  key: str,
96936
98704
  value: str):
96937
98705
  """
96938
- :param str key: Oracle Cloud Infrastructure Tag key
96939
- :param str value: The ID of the App.
98706
+ :param str key: Key or name of the tag.
98707
+ :param str value: Value of the tag.
96940
98708
  """
96941
98709
  pulumi.set(__self__, "key", key)
96942
98710
  pulumi.set(__self__, "value", value)
@@ -96945,7 +98713,7 @@ class GetDomainsGroupsGroupTagResult(dict):
96945
98713
  @pulumi.getter
96946
98714
  def key(self) -> str:
96947
98715
  """
96948
- Oracle Cloud Infrastructure Tag key
98716
+ Key or name of the tag.
96949
98717
  """
96950
98718
  return pulumi.get(self, "key")
96951
98719
 
@@ -96953,508 +98721,488 @@ class GetDomainsGroupsGroupTagResult(dict):
96953
98721
  @pulumi.getter
96954
98722
  def value(self) -> str:
96955
98723
  """
96956
- The ID of the App.
98724
+ Value of the tag.
96957
98725
  """
96958
98726
  return pulumi.get(self, "value")
96959
98727
 
96960
98728
 
96961
98729
  @pulumi.output_type
96962
- class GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensionOciTagResult(dict):
98730
+ class GetDomainsIdentityPropagationTrustsIdentityPropagationTrustResult(dict):
96963
98731
  def __init__(__self__, *,
96964
- defined_tags: Sequence['outputs.GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensionOciTagDefinedTagResult'],
96965
- freeform_tags: Sequence['outputs.GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensionOciTagFreeformTagResult'],
96966
- tag_slug: str):
98732
+ account_id: str,
98733
+ active: bool,
98734
+ allow_impersonation: bool,
98735
+ attribute_sets: Sequence[str],
98736
+ attributes: str,
98737
+ authorization: str,
98738
+ client_claim_name: str,
98739
+ client_claim_values: Sequence[str],
98740
+ clock_skew_seconds: int,
98741
+ compartment_ocid: str,
98742
+ delete_in_progress: bool,
98743
+ description: str,
98744
+ domain_ocid: str,
98745
+ id: str,
98746
+ idcs_created_bies: Sequence['outputs.GetDomainsIdentityPropagationTrustsIdentityPropagationTrustIdcsCreatedByResult'],
98747
+ idcs_endpoint: str,
98748
+ idcs_last_modified_bies: Sequence['outputs.GetDomainsIdentityPropagationTrustsIdentityPropagationTrustIdcsLastModifiedByResult'],
98749
+ idcs_last_upgraded_in_release: str,
98750
+ idcs_prevented_operations: Sequence[str],
98751
+ impersonation_service_users: Sequence['outputs.GetDomainsIdentityPropagationTrustsIdentityPropagationTrustImpersonationServiceUserResult'],
98752
+ issuer: str,
98753
+ keytabs: Sequence['outputs.GetDomainsIdentityPropagationTrustsIdentityPropagationTrustKeytabResult'],
98754
+ metas: Sequence['outputs.GetDomainsIdentityPropagationTrustsIdentityPropagationTrustMetaResult'],
98755
+ name: str,
98756
+ oauth_clients: Sequence[str],
98757
+ ocid: str,
98758
+ public_certificate: str,
98759
+ public_key_endpoint: str,
98760
+ resource_type_schema_version: str,
98761
+ schemas: Sequence[str],
98762
+ subject_claim_name: str,
98763
+ subject_mapping_attribute: str,
98764
+ subject_type: str,
98765
+ tags: Sequence['outputs.GetDomainsIdentityPropagationTrustsIdentityPropagationTrustTagResult'],
98766
+ tenancy_ocid: str,
98767
+ type: str):
96967
98768
  """
96968
- :param Sequence['GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensionOciTagDefinedTagArgs'] defined_tags: Oracle Cloud Infrastructure Defined Tags
96969
- :param Sequence['GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensionOciTagFreeformTagArgs'] freeform_tags: Oracle Cloud Infrastructure Freeform Tags
96970
- :param str tag_slug: Oracle Cloud Infrastructure Tag slug
98769
+ :param str account_id: The Identity cloud provider service identifier, for example, the Azure Tenancy ID, AWS Account ID, or GCP Project ID.
98770
+ :param bool active: If true, specifies that this Identity Propagation Trust is in an enabled state. The default value is false.
98771
+ :param bool allow_impersonation: Allow customers to define whether the resulting token should contain the authenticated user as the subject or whether the token should impersonate another Application Principal in IAM.
98772
+ :param Sequence[str] attribute_sets: A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.
98773
+ :param str attributes: A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
98774
+ :param str authorization: The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
98775
+ :param str client_claim_name: The claim name that identifies to whom the JWT/SAML token is issued. If AWS, then \\"aud\\" or \\"client_id\\". If Azure, then \\"appid\\". If GCP, then \\"aud\\".
98776
+ :param Sequence[str] client_claim_values: The value that corresponds to the client claim name used to identify to whom the token is issued.
98777
+ :param int clock_skew_seconds: The clock skew (in secs) that's allowed for the token issue and expiry time.
98778
+ :param str compartment_ocid: Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
98779
+ :param bool delete_in_progress: A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long.
98780
+ :param str description: The description of the Identity Propagation Trust.
98781
+ :param str domain_ocid: Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
98782
+ :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.
98783
+ :param Sequence['GetDomainsIdentityPropagationTrustsIdentityPropagationTrustIdcsCreatedByArgs'] idcs_created_bies: The User or App who created the Resource
98784
+ :param str idcs_endpoint: The basic endpoint for the identity domain
98785
+ :param Sequence['GetDomainsIdentityPropagationTrustsIdentityPropagationTrustIdcsLastModifiedByArgs'] idcs_last_modified_bies: The User or App who modified the Resource
98786
+ :param str idcs_last_upgraded_in_release: The release number when the resource was upgraded.
98787
+ :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.
98788
+ :param Sequence['GetDomainsIdentityPropagationTrustsIdentityPropagationTrustImpersonationServiceUserArgs'] impersonation_service_users: The Impersonating Principal.
98789
+ :param str issuer: The issuer claim of the Identity provider.
98790
+ :param Sequence['GetDomainsIdentityPropagationTrustsIdentityPropagationTrustKeytabArgs'] keytabs: The keytab stored in the tenancy's Vault. This is required if the identity propagation type is 'SPNEGO'.
98791
+ :param Sequence['GetDomainsIdentityPropagationTrustsIdentityPropagationTrustMetaArgs'] metas: A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
98792
+ :param str name: The name of the the Identity Propagation Trust.
98793
+ :param Sequence[str] oauth_clients: The value of all the authorized OAuth Clients.
98794
+ :param str ocid: Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
98795
+ :param str public_certificate: Store the public key if public key cert.
98796
+ :param str public_key_endpoint: The cloud provider's public key API of SAML and OIDC providers for signature validation.
98797
+ :param str resource_type_schema_version: An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
98798
+ :param Sequence[str] schemas: REQUIRED. The schemas attribute is an array of Strings which allows introspection of the supported schema version for a SCIM representation as well any schema extensions supported by that representation. Each String value must be a unique URI. This specification defines URIs for User, Group, and a standard \\"enterprise\\" extension. All representations of SCIM schema MUST include a non-zero value array with value(s) of the URIs supported by that representation. Duplicate values MUST NOT be included. Value order is not specified and MUST not impact behavior.
98799
+ :param str subject_claim_name: Used for locating the subject claim from the incoming token.
98800
+ :param str subject_mapping_attribute: Subject Mapping Attribute to which the value from subject claim name value would be used for identity lookup.
98801
+ :param str subject_type: The type of the resource against which lookup will be made in the identity domain in IAM for the incoming subject claim value.
98802
+ :param Sequence['GetDomainsIdentityPropagationTrustsIdentityPropagationTrustTagArgs'] tags: A list of tags on this resource.
98803
+ :param str tenancy_ocid: Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
98804
+ :param str type: The type of the inbound token from the Identity cloud provider.
96971
98805
  """
96972
- pulumi.set(__self__, "defined_tags", defined_tags)
96973
- pulumi.set(__self__, "freeform_tags", freeform_tags)
96974
- pulumi.set(__self__, "tag_slug", tag_slug)
98806
+ pulumi.set(__self__, "account_id", account_id)
98807
+ pulumi.set(__self__, "active", active)
98808
+ pulumi.set(__self__, "allow_impersonation", allow_impersonation)
98809
+ pulumi.set(__self__, "attribute_sets", attribute_sets)
98810
+ pulumi.set(__self__, "attributes", attributes)
98811
+ pulumi.set(__self__, "authorization", authorization)
98812
+ pulumi.set(__self__, "client_claim_name", client_claim_name)
98813
+ pulumi.set(__self__, "client_claim_values", client_claim_values)
98814
+ pulumi.set(__self__, "clock_skew_seconds", clock_skew_seconds)
98815
+ pulumi.set(__self__, "compartment_ocid", compartment_ocid)
98816
+ pulumi.set(__self__, "delete_in_progress", delete_in_progress)
98817
+ pulumi.set(__self__, "description", description)
98818
+ pulumi.set(__self__, "domain_ocid", domain_ocid)
98819
+ pulumi.set(__self__, "id", id)
98820
+ pulumi.set(__self__, "idcs_created_bies", idcs_created_bies)
98821
+ pulumi.set(__self__, "idcs_endpoint", idcs_endpoint)
98822
+ pulumi.set(__self__, "idcs_last_modified_bies", idcs_last_modified_bies)
98823
+ pulumi.set(__self__, "idcs_last_upgraded_in_release", idcs_last_upgraded_in_release)
98824
+ pulumi.set(__self__, "idcs_prevented_operations", idcs_prevented_operations)
98825
+ pulumi.set(__self__, "impersonation_service_users", impersonation_service_users)
98826
+ pulumi.set(__self__, "issuer", issuer)
98827
+ pulumi.set(__self__, "keytabs", keytabs)
98828
+ pulumi.set(__self__, "metas", metas)
98829
+ pulumi.set(__self__, "name", name)
98830
+ pulumi.set(__self__, "oauth_clients", oauth_clients)
98831
+ pulumi.set(__self__, "ocid", ocid)
98832
+ pulumi.set(__self__, "public_certificate", public_certificate)
98833
+ pulumi.set(__self__, "public_key_endpoint", public_key_endpoint)
98834
+ pulumi.set(__self__, "resource_type_schema_version", resource_type_schema_version)
98835
+ pulumi.set(__self__, "schemas", schemas)
98836
+ pulumi.set(__self__, "subject_claim_name", subject_claim_name)
98837
+ pulumi.set(__self__, "subject_mapping_attribute", subject_mapping_attribute)
98838
+ pulumi.set(__self__, "subject_type", subject_type)
98839
+ pulumi.set(__self__, "tags", tags)
98840
+ pulumi.set(__self__, "tenancy_ocid", tenancy_ocid)
98841
+ pulumi.set(__self__, "type", type)
96975
98842
 
96976
98843
  @property
96977
- @pulumi.getter(name="definedTags")
96978
- def defined_tags(self) -> Sequence['outputs.GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensionOciTagDefinedTagResult']:
98844
+ @pulumi.getter(name="accountId")
98845
+ def account_id(self) -> str:
96979
98846
  """
96980
- Oracle Cloud Infrastructure Defined Tags
98847
+ The Identity cloud provider service identifier, for example, the Azure Tenancy ID, AWS Account ID, or GCP Project ID.
96981
98848
  """
96982
- return pulumi.get(self, "defined_tags")
98849
+ return pulumi.get(self, "account_id")
96983
98850
 
96984
98851
  @property
96985
- @pulumi.getter(name="freeformTags")
96986
- def freeform_tags(self) -> Sequence['outputs.GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensionOciTagFreeformTagResult']:
98852
+ @pulumi.getter
98853
+ def active(self) -> bool:
96987
98854
  """
96988
- Oracle Cloud Infrastructure Freeform Tags
98855
+ If true, specifies that this Identity Propagation Trust is in an enabled state. The default value is false.
96989
98856
  """
96990
- return pulumi.get(self, "freeform_tags")
98857
+ return pulumi.get(self, "active")
96991
98858
 
96992
98859
  @property
96993
- @pulumi.getter(name="tagSlug")
96994
- def tag_slug(self) -> str:
96995
- """
96996
- Oracle Cloud Infrastructure Tag slug
96997
- """
96998
- return pulumi.get(self, "tag_slug")
96999
-
97000
-
97001
- @pulumi.output_type
97002
- class GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensionOciTagDefinedTagResult(dict):
97003
- def __init__(__self__, *,
97004
- key: str,
97005
- namespace: str,
97006
- value: str):
98860
+ @pulumi.getter(name="allowImpersonation")
98861
+ def allow_impersonation(self) -> bool:
97007
98862
  """
97008
- :param str key: Oracle Cloud Infrastructure Tag key
97009
- :param str namespace: Oracle Cloud Infrastructure Tag namespace
97010
- :param str value: The ID of the App.
98863
+ Allow customers to define whether the resulting token should contain the authenticated user as the subject or whether the token should impersonate another Application Principal in IAM.
97011
98864
  """
97012
- pulumi.set(__self__, "key", key)
97013
- pulumi.set(__self__, "namespace", namespace)
97014
- pulumi.set(__self__, "value", value)
98865
+ return pulumi.get(self, "allow_impersonation")
97015
98866
 
97016
98867
  @property
97017
- @pulumi.getter
97018
- def key(self) -> str:
98868
+ @pulumi.getter(name="attributeSets")
98869
+ def attribute_sets(self) -> Sequence[str]:
97019
98870
  """
97020
- Oracle Cloud Infrastructure Tag key
98871
+ A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.
97021
98872
  """
97022
- return pulumi.get(self, "key")
98873
+ return pulumi.get(self, "attribute_sets")
97023
98874
 
97024
98875
  @property
97025
98876
  @pulumi.getter
97026
- def namespace(self) -> str:
98877
+ def attributes(self) -> str:
97027
98878
  """
97028
- Oracle Cloud Infrastructure Tag namespace
98879
+ A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
97029
98880
  """
97030
- return pulumi.get(self, "namespace")
98881
+ return pulumi.get(self, "attributes")
97031
98882
 
97032
98883
  @property
97033
98884
  @pulumi.getter
97034
- def value(self) -> str:
97035
- """
97036
- The ID of the App.
97037
- """
97038
- return pulumi.get(self, "value")
97039
-
97040
-
97041
- @pulumi.output_type
97042
- class GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensionOciTagFreeformTagResult(dict):
97043
- def __init__(__self__, *,
97044
- key: str,
97045
- value: str):
98885
+ def authorization(self) -> str:
97046
98886
  """
97047
- :param str key: Oracle Cloud Infrastructure Tag key
97048
- :param str value: The ID of the App.
98887
+ The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
97049
98888
  """
97050
- pulumi.set(__self__, "key", key)
97051
- pulumi.set(__self__, "value", value)
98889
+ return pulumi.get(self, "authorization")
97052
98890
 
97053
98891
  @property
97054
- @pulumi.getter
97055
- def key(self) -> str:
98892
+ @pulumi.getter(name="clientClaimName")
98893
+ def client_claim_name(self) -> str:
97056
98894
  """
97057
- Oracle Cloud Infrastructure Tag key
98895
+ The claim name that identifies to whom the JWT/SAML token is issued. If AWS, then \\"aud\\" or \\"client_id\\". If Azure, then \\"appid\\". If GCP, then \\"aud\\".
97058
98896
  """
97059
- return pulumi.get(self, "key")
98897
+ return pulumi.get(self, "client_claim_name")
97060
98898
 
97061
98899
  @property
97062
- @pulumi.getter
97063
- def value(self) -> str:
98900
+ @pulumi.getter(name="clientClaimValues")
98901
+ def client_claim_values(self) -> Sequence[str]:
97064
98902
  """
97065
- The ID of the App.
98903
+ The value that corresponds to the client claim name used to identify to whom the token is issued.
97066
98904
  """
97067
- return pulumi.get(self, "value")
97068
-
97069
-
97070
- @pulumi.output_type
97071
- class GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensiondbcsGroupResult(dict):
97072
- def __init__(__self__, *,
97073
- domain_level_schema: str,
97074
- domain_level_schema_names: Sequence['outputs.GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensiondbcsGroupDomainLevelSchemaNameResult'],
97075
- instance_level_schema: str,
97076
- instance_level_schema_names: Sequence['outputs.GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensiondbcsGroupInstanceLevelSchemaNameResult']):
97077
- """
97078
- :param str domain_level_schema: DBCS Domain-level schema-name. This attribute refers implicitly to a value of 'domainLevelSchemaNames' for a particular DB Domain.
97079
- :param Sequence['GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensiondbcsGroupDomainLevelSchemaNameArgs'] domain_level_schema_names: DBCS Domain-level schema-names. Each value is specific to a DB Domain.
97080
- :param str instance_level_schema: DBCS instance-level schema-name. This attribute refers implicitly to a value of 'instanceLevelSchemaNames' for a particular DB Instance.
97081
- :param Sequence['GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensiondbcsGroupInstanceLevelSchemaNameArgs'] instance_level_schema_names: DBCS instance-level schema-names. Each schema-name is specific to a DB Instance.
97082
- """
97083
- pulumi.set(__self__, "domain_level_schema", domain_level_schema)
97084
- pulumi.set(__self__, "domain_level_schema_names", domain_level_schema_names)
97085
- pulumi.set(__self__, "instance_level_schema", instance_level_schema)
97086
- pulumi.set(__self__, "instance_level_schema_names", instance_level_schema_names)
98905
+ return pulumi.get(self, "client_claim_values")
97087
98906
 
97088
98907
  @property
97089
- @pulumi.getter(name="domainLevelSchema")
97090
- def domain_level_schema(self) -> str:
98908
+ @pulumi.getter(name="clockSkewSeconds")
98909
+ def clock_skew_seconds(self) -> int:
97091
98910
  """
97092
- DBCS Domain-level schema-name. This attribute refers implicitly to a value of 'domainLevelSchemaNames' for a particular DB Domain.
98911
+ The clock skew (in secs) that's allowed for the token issue and expiry time.
97093
98912
  """
97094
- return pulumi.get(self, "domain_level_schema")
98913
+ return pulumi.get(self, "clock_skew_seconds")
97095
98914
 
97096
98915
  @property
97097
- @pulumi.getter(name="domainLevelSchemaNames")
97098
- def domain_level_schema_names(self) -> Sequence['outputs.GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensiondbcsGroupDomainLevelSchemaNameResult']:
98916
+ @pulumi.getter(name="compartmentOcid")
98917
+ def compartment_ocid(self) -> str:
97099
98918
  """
97100
- DBCS Domain-level schema-names. Each value is specific to a DB Domain.
98919
+ Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
97101
98920
  """
97102
- return pulumi.get(self, "domain_level_schema_names")
98921
+ return pulumi.get(self, "compartment_ocid")
97103
98922
 
97104
98923
  @property
97105
- @pulumi.getter(name="instanceLevelSchema")
97106
- def instance_level_schema(self) -> str:
98924
+ @pulumi.getter(name="deleteInProgress")
98925
+ def delete_in_progress(self) -> bool:
97107
98926
  """
97108
- DBCS instance-level schema-name. This attribute refers implicitly to a value of 'instanceLevelSchemaNames' for a particular DB Instance.
98927
+ A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long.
97109
98928
  """
97110
- return pulumi.get(self, "instance_level_schema")
98929
+ return pulumi.get(self, "delete_in_progress")
97111
98930
 
97112
98931
  @property
97113
- @pulumi.getter(name="instanceLevelSchemaNames")
97114
- def instance_level_schema_names(self) -> Sequence['outputs.GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensiondbcsGroupInstanceLevelSchemaNameResult']:
97115
- """
97116
- DBCS instance-level schema-names. Each schema-name is specific to a DB Instance.
97117
- """
97118
- return pulumi.get(self, "instance_level_schema_names")
97119
-
97120
-
97121
- @pulumi.output_type
97122
- class GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensiondbcsGroupDomainLevelSchemaNameResult(dict):
97123
- def __init__(__self__, *,
97124
- domain_name: str,
97125
- schema_name: str):
98932
+ @pulumi.getter
98933
+ def description(self) -> str:
97126
98934
  """
97127
- :param str domain_name: DBCS Domain Name
97128
- :param str schema_name: The DBCS schema-name granted to this Group for the DB instance that 'dbInstanceId' specifies.
98935
+ The description of the Identity Propagation Trust.
97129
98936
  """
97130
- pulumi.set(__self__, "domain_name", domain_name)
97131
- pulumi.set(__self__, "schema_name", schema_name)
98937
+ return pulumi.get(self, "description")
97132
98938
 
97133
98939
  @property
97134
- @pulumi.getter(name="domainName")
97135
- def domain_name(self) -> str:
98940
+ @pulumi.getter(name="domainOcid")
98941
+ def domain_ocid(self) -> str:
97136
98942
  """
97137
- DBCS Domain Name
98943
+ Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
97138
98944
  """
97139
- return pulumi.get(self, "domain_name")
98945
+ return pulumi.get(self, "domain_ocid")
97140
98946
 
97141
98947
  @property
97142
- @pulumi.getter(name="schemaName")
97143
- def schema_name(self) -> str:
97144
- """
97145
- The DBCS schema-name granted to this Group for the DB instance that 'dbInstanceId' specifies.
97146
- """
97147
- return pulumi.get(self, "schema_name")
97148
-
97149
-
97150
- @pulumi.output_type
97151
- class GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensiondbcsGroupInstanceLevelSchemaNameResult(dict):
97152
- def __init__(__self__, *,
97153
- db_instance_id: str,
97154
- schema_name: str):
98948
+ @pulumi.getter
98949
+ def id(self) -> str:
97155
98950
  """
97156
- :param str db_instance_id: App Id of DBCS App instance
97157
- :param str schema_name: The DBCS schema-name granted to this Group for the DB instance that 'dbInstanceId' specifies.
98951
+ 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.
97158
98952
  """
97159
- pulumi.set(__self__, "db_instance_id", db_instance_id)
97160
- pulumi.set(__self__, "schema_name", schema_name)
98953
+ return pulumi.get(self, "id")
97161
98954
 
97162
98955
  @property
97163
- @pulumi.getter(name="dbInstanceId")
97164
- def db_instance_id(self) -> str:
98956
+ @pulumi.getter(name="idcsCreatedBies")
98957
+ def idcs_created_bies(self) -> Sequence['outputs.GetDomainsIdentityPropagationTrustsIdentityPropagationTrustIdcsCreatedByResult']:
97165
98958
  """
97166
- App Id of DBCS App instance
98959
+ The User or App who created the Resource
97167
98960
  """
97168
- return pulumi.get(self, "db_instance_id")
98961
+ return pulumi.get(self, "idcs_created_bies")
97169
98962
 
97170
98963
  @property
97171
- @pulumi.getter(name="schemaName")
97172
- def schema_name(self) -> str:
98964
+ @pulumi.getter(name="idcsEndpoint")
98965
+ def idcs_endpoint(self) -> str:
97173
98966
  """
97174
- The DBCS schema-name granted to this Group for the DB instance that 'dbInstanceId' specifies.
98967
+ The basic endpoint for the identity domain
97175
98968
  """
97176
- return pulumi.get(self, "schema_name")
97177
-
98969
+ return pulumi.get(self, "idcs_endpoint")
97178
98970
 
97179
- @pulumi.output_type
97180
- class GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensiondynamicGroupResult(dict):
97181
- def __init__(__self__, *,
97182
- membership_rule: str,
97183
- membership_type: str):
98971
+ @property
98972
+ @pulumi.getter(name="idcsLastModifiedBies")
98973
+ def idcs_last_modified_bies(self) -> Sequence['outputs.GetDomainsIdentityPropagationTrustsIdentityPropagationTrustIdcsLastModifiedByResult']:
97184
98974
  """
97185
- :param str membership_rule: Membership rule
97186
- :param str membership_type: Membership type
98975
+ The User or App who modified the Resource
97187
98976
  """
97188
- pulumi.set(__self__, "membership_rule", membership_rule)
97189
- pulumi.set(__self__, "membership_type", membership_type)
98977
+ return pulumi.get(self, "idcs_last_modified_bies")
97190
98978
 
97191
98979
  @property
97192
- @pulumi.getter(name="membershipRule")
97193
- def membership_rule(self) -> str:
98980
+ @pulumi.getter(name="idcsLastUpgradedInRelease")
98981
+ def idcs_last_upgraded_in_release(self) -> str:
97194
98982
  """
97195
- Membership rule
98983
+ The release number when the resource was upgraded.
97196
98984
  """
97197
- return pulumi.get(self, "membership_rule")
98985
+ return pulumi.get(self, "idcs_last_upgraded_in_release")
97198
98986
 
97199
98987
  @property
97200
- @pulumi.getter(name="membershipType")
97201
- def membership_type(self) -> str:
98988
+ @pulumi.getter(name="idcsPreventedOperations")
98989
+ def idcs_prevented_operations(self) -> Sequence[str]:
97202
98990
  """
97203
- Membership type
98991
+ Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
97204
98992
  """
97205
- return pulumi.get(self, "membership_type")
97206
-
98993
+ return pulumi.get(self, "idcs_prevented_operations")
97207
98994
 
97208
- @pulumi.output_type
97209
- class GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupResult(dict):
97210
- def __init__(__self__, *,
97211
- app_roles: Sequence['outputs.GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupAppRoleResult'],
97212
- creation_mechanism: str,
97213
- description: str,
97214
- grants: Sequence['outputs.GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupGrantResult'],
97215
- owners: Sequence['outputs.GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupOwnerResult'],
97216
- password_policies: Sequence['outputs.GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupPasswordPolicyResult'],
97217
- synced_from_apps: Sequence['outputs.GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupSyncedFromAppResult']):
98995
+ @property
98996
+ @pulumi.getter(name="impersonationServiceUsers")
98997
+ def impersonation_service_users(self) -> Sequence['outputs.GetDomainsIdentityPropagationTrustsIdentityPropagationTrustImpersonationServiceUserResult']:
97218
98998
  """
97219
- :param Sequence['GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupAppRoleArgs'] app_roles: A list of appRoles that the user belongs to, either thorough direct membership, nested groups, or dynamically calculated
97220
- :param str creation_mechanism: Source from which this group got created.
97221
- :param str description: Group description
97222
- :param Sequence['GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupGrantArgs'] grants: Grants assigned to group
97223
- :param Sequence['GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupOwnerArgs'] owners: Group owners
97224
- :param Sequence['GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupPasswordPolicyArgs'] password_policies: Password Policy associated with this Group.
97225
- :param Sequence['GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupSyncedFromAppArgs'] synced_from_apps: The entity that created this Group.
98999
+ The Impersonating Principal.
97226
99000
  """
97227
- pulumi.set(__self__, "app_roles", app_roles)
97228
- pulumi.set(__self__, "creation_mechanism", creation_mechanism)
97229
- pulumi.set(__self__, "description", description)
97230
- pulumi.set(__self__, "grants", grants)
97231
- pulumi.set(__self__, "owners", owners)
97232
- pulumi.set(__self__, "password_policies", password_policies)
97233
- pulumi.set(__self__, "synced_from_apps", synced_from_apps)
99001
+ return pulumi.get(self, "impersonation_service_users")
97234
99002
 
97235
99003
  @property
97236
- @pulumi.getter(name="appRoles")
97237
- def app_roles(self) -> Sequence['outputs.GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupAppRoleResult']:
99004
+ @pulumi.getter
99005
+ def issuer(self) -> str:
97238
99006
  """
97239
- A list of appRoles that the user belongs to, either thorough direct membership, nested groups, or dynamically calculated
99007
+ The issuer claim of the Identity provider.
97240
99008
  """
97241
- return pulumi.get(self, "app_roles")
99009
+ return pulumi.get(self, "issuer")
97242
99010
 
97243
99011
  @property
97244
- @pulumi.getter(name="creationMechanism")
97245
- def creation_mechanism(self) -> str:
99012
+ @pulumi.getter
99013
+ def keytabs(self) -> Sequence['outputs.GetDomainsIdentityPropagationTrustsIdentityPropagationTrustKeytabResult']:
97246
99014
  """
97247
- Source from which this group got created.
99015
+ The keytab stored in the tenancy's Vault. This is required if the identity propagation type is 'SPNEGO'.
97248
99016
  """
97249
- return pulumi.get(self, "creation_mechanism")
99017
+ return pulumi.get(self, "keytabs")
97250
99018
 
97251
99019
  @property
97252
99020
  @pulumi.getter
97253
- def description(self) -> str:
99021
+ def metas(self) -> Sequence['outputs.GetDomainsIdentityPropagationTrustsIdentityPropagationTrustMetaResult']:
97254
99022
  """
97255
- Group description
99023
+ A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
97256
99024
  """
97257
- return pulumi.get(self, "description")
99025
+ return pulumi.get(self, "metas")
97258
99026
 
97259
99027
  @property
97260
99028
  @pulumi.getter
97261
- def grants(self) -> Sequence['outputs.GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupGrantResult']:
99029
+ def name(self) -> str:
97262
99030
  """
97263
- Grants assigned to group
99031
+ The name of the the Identity Propagation Trust.
97264
99032
  """
97265
- return pulumi.get(self, "grants")
99033
+ return pulumi.get(self, "name")
97266
99034
 
97267
99035
  @property
97268
- @pulumi.getter
97269
- def owners(self) -> Sequence['outputs.GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupOwnerResult']:
99036
+ @pulumi.getter(name="oauthClients")
99037
+ def oauth_clients(self) -> Sequence[str]:
97270
99038
  """
97271
- Group owners
99039
+ The value of all the authorized OAuth Clients.
97272
99040
  """
97273
- return pulumi.get(self, "owners")
99041
+ return pulumi.get(self, "oauth_clients")
97274
99042
 
97275
99043
  @property
97276
- @pulumi.getter(name="passwordPolicies")
97277
- def password_policies(self) -> Sequence['outputs.GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupPasswordPolicyResult']:
99044
+ @pulumi.getter
99045
+ def ocid(self) -> str:
97278
99046
  """
97279
- Password Policy associated with this Group.
99047
+ Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
97280
99048
  """
97281
- return pulumi.get(self, "password_policies")
99049
+ return pulumi.get(self, "ocid")
97282
99050
 
97283
99051
  @property
97284
- @pulumi.getter(name="syncedFromApps")
97285
- def synced_from_apps(self) -> Sequence['outputs.GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupSyncedFromAppResult']:
99052
+ @pulumi.getter(name="publicCertificate")
99053
+ def public_certificate(self) -> str:
97286
99054
  """
97287
- The entity that created this Group.
99055
+ Store the public key if public key cert.
97288
99056
  """
97289
- return pulumi.get(self, "synced_from_apps")
97290
-
99057
+ return pulumi.get(self, "public_certificate")
97291
99058
 
97292
- @pulumi.output_type
97293
- class GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupAppRoleResult(dict):
97294
- def __init__(__self__, *,
97295
- admin_role: bool,
97296
- app_id: str,
97297
- app_name: str,
97298
- display: str,
97299
- legacy_group_name: str,
97300
- ref: str,
97301
- type: str,
97302
- value: str):
99059
+ @property
99060
+ @pulumi.getter(name="publicKeyEndpoint")
99061
+ def public_key_endpoint(self) -> str:
97303
99062
  """
97304
- :param bool admin_role: If true, then the role provides administrative access privileges. READ-ONLY.
97305
- :param str app_id: App identifier
97306
- :param str app_name: Name of parent App. READ-ONLY.
97307
- :param str display: App Display Name
97308
- :param str legacy_group_name: The name of the legacy group associated with this AppRole.
97309
- :param str ref: App URI
97310
- :param str type: The type of the entity that created this Group.
97311
- :param str value: The ID of the App.
99063
+ The cloud provider's public key API of SAML and OIDC providers for signature validation.
97312
99064
  """
97313
- pulumi.set(__self__, "admin_role", admin_role)
97314
- pulumi.set(__self__, "app_id", app_id)
97315
- pulumi.set(__self__, "app_name", app_name)
97316
- pulumi.set(__self__, "display", display)
97317
- pulumi.set(__self__, "legacy_group_name", legacy_group_name)
97318
- pulumi.set(__self__, "ref", ref)
97319
- pulumi.set(__self__, "type", type)
97320
- pulumi.set(__self__, "value", value)
99065
+ return pulumi.get(self, "public_key_endpoint")
97321
99066
 
97322
99067
  @property
97323
- @pulumi.getter(name="adminRole")
97324
- def admin_role(self) -> bool:
99068
+ @pulumi.getter(name="resourceTypeSchemaVersion")
99069
+ def resource_type_schema_version(self) -> str:
97325
99070
  """
97326
- If true, then the role provides administrative access privileges. READ-ONLY.
99071
+ An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
97327
99072
  """
97328
- return pulumi.get(self, "admin_role")
99073
+ return pulumi.get(self, "resource_type_schema_version")
97329
99074
 
97330
99075
  @property
97331
- @pulumi.getter(name="appId")
97332
- def app_id(self) -> str:
99076
+ @pulumi.getter
99077
+ def schemas(self) -> Sequence[str]:
97333
99078
  """
97334
- App identifier
99079
+ REQUIRED. The schemas attribute is an array of Strings which allows introspection of the supported schema version for a SCIM representation as well any schema extensions supported by that representation. Each String value must be a unique URI. This specification defines URIs for User, Group, and a standard \\"enterprise\\" extension. All representations of SCIM schema MUST include a non-zero value array with value(s) of the URIs supported by that representation. Duplicate values MUST NOT be included. Value order is not specified and MUST not impact behavior.
97335
99080
  """
97336
- return pulumi.get(self, "app_id")
99081
+ return pulumi.get(self, "schemas")
97337
99082
 
97338
99083
  @property
97339
- @pulumi.getter(name="appName")
97340
- def app_name(self) -> str:
99084
+ @pulumi.getter(name="subjectClaimName")
99085
+ def subject_claim_name(self) -> str:
97341
99086
  """
97342
- Name of parent App. READ-ONLY.
99087
+ Used for locating the subject claim from the incoming token.
97343
99088
  """
97344
- return pulumi.get(self, "app_name")
99089
+ return pulumi.get(self, "subject_claim_name")
97345
99090
 
97346
99091
  @property
97347
- @pulumi.getter
97348
- def display(self) -> str:
99092
+ @pulumi.getter(name="subjectMappingAttribute")
99093
+ def subject_mapping_attribute(self) -> str:
97349
99094
  """
97350
- App Display Name
99095
+ Subject Mapping Attribute to which the value from subject claim name value would be used for identity lookup.
97351
99096
  """
97352
- return pulumi.get(self, "display")
99097
+ return pulumi.get(self, "subject_mapping_attribute")
97353
99098
 
97354
99099
  @property
97355
- @pulumi.getter(name="legacyGroupName")
97356
- def legacy_group_name(self) -> str:
99100
+ @pulumi.getter(name="subjectType")
99101
+ def subject_type(self) -> str:
97357
99102
  """
97358
- The name of the legacy group associated with this AppRole.
99103
+ The type of the resource against which lookup will be made in the identity domain in IAM for the incoming subject claim value.
97359
99104
  """
97360
- return pulumi.get(self, "legacy_group_name")
99105
+ return pulumi.get(self, "subject_type")
97361
99106
 
97362
99107
  @property
97363
99108
  @pulumi.getter
97364
- def ref(self) -> str:
99109
+ def tags(self) -> Sequence['outputs.GetDomainsIdentityPropagationTrustsIdentityPropagationTrustTagResult']:
97365
99110
  """
97366
- App URI
99111
+ A list of tags on this resource.
97367
99112
  """
97368
- return pulumi.get(self, "ref")
99113
+ return pulumi.get(self, "tags")
97369
99114
 
97370
99115
  @property
97371
- @pulumi.getter
97372
- def type(self) -> str:
99116
+ @pulumi.getter(name="tenancyOcid")
99117
+ def tenancy_ocid(self) -> str:
97373
99118
  """
97374
- The type of the entity that created this Group.
99119
+ Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
97375
99120
  """
97376
- return pulumi.get(self, "type")
99121
+ return pulumi.get(self, "tenancy_ocid")
97377
99122
 
97378
99123
  @property
97379
99124
  @pulumi.getter
97380
- def value(self) -> str:
99125
+ def type(self) -> str:
97381
99126
  """
97382
- The ID of the App.
99127
+ The type of the inbound token from the Identity cloud provider.
97383
99128
  """
97384
- return pulumi.get(self, "value")
99129
+ return pulumi.get(self, "type")
97385
99130
 
97386
99131
 
97387
99132
  @pulumi.output_type
97388
- class GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupGrantResult(dict):
99133
+ class GetDomainsIdentityPropagationTrustsIdentityPropagationTrustIdcsCreatedByResult(dict):
97389
99134
  def __init__(__self__, *,
97390
- app_id: str,
97391
- grant_mechanism: str,
99135
+ display: str,
99136
+ ocid: str,
97392
99137
  ref: str,
99138
+ type: str,
97393
99139
  value: str):
97394
99140
  """
97395
- :param str app_id: App identifier
97396
- :param str grant_mechanism: Each value of grantMechanism indicates how (or by what component) some App (or App-Entitlement) was granted. A customer or the UI should use only grantMechanism values that start with 'ADMINISTRATOR':
97397
- * 'ADMINISTRATOR_TO_USER' is for a direct grant to a specific User.
97398
- * 'ADMINISTRATOR_TO_GROUP' is for a grant to a specific Group, which results in indirect grants to Users who are members of that Group.
97399
- * 'ADMINISTRATOR_TO_APP' is for a grant to a specific App. The grantee (client) App gains access to the granted (server) App.
97400
- :param str ref: App URI
97401
- :param str value: The ID of the App.
99141
+ :param str display: The displayName of the User or App who modified this Resource
99142
+ :param str ocid: Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
99143
+ :param str type: The type of the inbound token from the Identity cloud provider.
99144
+ :param str value: Value of the tag.
97402
99145
  """
97403
- pulumi.set(__self__, "app_id", app_id)
97404
- pulumi.set(__self__, "grant_mechanism", grant_mechanism)
99146
+ pulumi.set(__self__, "display", display)
99147
+ pulumi.set(__self__, "ocid", ocid)
97405
99148
  pulumi.set(__self__, "ref", ref)
99149
+ pulumi.set(__self__, "type", type)
97406
99150
  pulumi.set(__self__, "value", value)
97407
99151
 
97408
99152
  @property
97409
- @pulumi.getter(name="appId")
97410
- def app_id(self) -> str:
99153
+ @pulumi.getter
99154
+ def display(self) -> str:
97411
99155
  """
97412
- App identifier
99156
+ The displayName of the User or App who modified this Resource
97413
99157
  """
97414
- return pulumi.get(self, "app_id")
99158
+ return pulumi.get(self, "display")
97415
99159
 
97416
99160
  @property
97417
- @pulumi.getter(name="grantMechanism")
97418
- def grant_mechanism(self) -> str:
99161
+ @pulumi.getter
99162
+ def ocid(self) -> str:
97419
99163
  """
97420
- Each value of grantMechanism indicates how (or by what component) some App (or App-Entitlement) was granted. A customer or the UI should use only grantMechanism values that start with 'ADMINISTRATOR':
97421
- * 'ADMINISTRATOR_TO_USER' is for a direct grant to a specific User.
97422
- * 'ADMINISTRATOR_TO_GROUP' is for a grant to a specific Group, which results in indirect grants to Users who are members of that Group.
97423
- * 'ADMINISTRATOR_TO_APP' is for a grant to a specific App. The grantee (client) App gains access to the granted (server) App.
99164
+ Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
97424
99165
  """
97425
- return pulumi.get(self, "grant_mechanism")
99166
+ return pulumi.get(self, "ocid")
97426
99167
 
97427
99168
  @property
97428
99169
  @pulumi.getter
97429
99170
  def ref(self) -> str:
99171
+ return pulumi.get(self, "ref")
99172
+
99173
+ @property
99174
+ @pulumi.getter
99175
+ def type(self) -> str:
97430
99176
  """
97431
- App URI
99177
+ The type of the inbound token from the Identity cloud provider.
97432
99178
  """
97433
- return pulumi.get(self, "ref")
99179
+ return pulumi.get(self, "type")
97434
99180
 
97435
99181
  @property
97436
99182
  @pulumi.getter
97437
99183
  def value(self) -> str:
97438
99184
  """
97439
- The ID of the App.
99185
+ Value of the tag.
97440
99186
  """
97441
99187
  return pulumi.get(self, "value")
97442
99188
 
97443
99189
 
97444
99190
  @pulumi.output_type
97445
- class GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupOwnerResult(dict):
99191
+ class GetDomainsIdentityPropagationTrustsIdentityPropagationTrustIdcsLastModifiedByResult(dict):
97446
99192
  def __init__(__self__, *,
97447
99193
  display: str,
99194
+ ocid: str,
97448
99195
  ref: str,
97449
99196
  type: str,
97450
99197
  value: str):
97451
99198
  """
97452
- :param str display: App Display Name
97453
- :param str ref: App URI
97454
- :param str type: The type of the entity that created this Group.
97455
- :param str value: The ID of the App.
99199
+ :param str display: The displayName of the User or App who modified this Resource
99200
+ :param str ocid: Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
99201
+ :param str type: The type of the inbound token from the Identity cloud provider.
99202
+ :param str value: Value of the tag.
97456
99203
  """
97457
99204
  pulumi.set(__self__, "display", display)
99205
+ pulumi.set(__self__, "ocid", ocid)
97458
99206
  pulumi.set(__self__, "ref", ref)
97459
99207
  pulumi.set(__self__, "type", type)
97460
99208
  pulumi.set(__self__, "value", value)
@@ -97463,23 +99211,28 @@ class GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroup
97463
99211
  @pulumi.getter
97464
99212
  def display(self) -> str:
97465
99213
  """
97466
- App Display Name
99214
+ The displayName of the User or App who modified this Resource
97467
99215
  """
97468
99216
  return pulumi.get(self, "display")
97469
99217
 
97470
99218
  @property
97471
99219
  @pulumi.getter
97472
- def ref(self) -> str:
99220
+ def ocid(self) -> str:
97473
99221
  """
97474
- App URI
99222
+ Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
97475
99223
  """
99224
+ return pulumi.get(self, "ocid")
99225
+
99226
+ @property
99227
+ @pulumi.getter
99228
+ def ref(self) -> str:
97476
99229
  return pulumi.get(self, "ref")
97477
99230
 
97478
99231
  @property
97479
99232
  @pulumi.getter
97480
99233
  def type(self) -> str:
97481
99234
  """
97482
- The type of the entity that created this Group.
99235
+ The type of the inbound token from the Identity cloud provider.
97483
99236
  """
97484
99237
  return pulumi.get(self, "type")
97485
99238
 
@@ -97487,147 +99240,176 @@ class GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroup
97487
99240
  @pulumi.getter
97488
99241
  def value(self) -> str:
97489
99242
  """
97490
- The ID of the App.
99243
+ Value of the tag.
97491
99244
  """
97492
99245
  return pulumi.get(self, "value")
97493
99246
 
97494
99247
 
97495
99248
  @pulumi.output_type
97496
- class GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupPasswordPolicyResult(dict):
99249
+ class GetDomainsIdentityPropagationTrustsIdentityPropagationTrustImpersonationServiceUserResult(dict):
97497
99250
  def __init__(__self__, *,
97498
- name: str,
97499
- priority: int,
99251
+ ocid: str,
97500
99252
  ref: str,
99253
+ rule: str,
97501
99254
  value: str):
97502
99255
  """
97503
- :param str name: PasswordPolicy Name
97504
- :param int priority: PasswordPolicy priority
97505
- :param str ref: App URI
97506
- :param str value: The ID of the App.
99256
+ :param str ocid: Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
99257
+ :param str rule: The rule expression to be used for matching the inbound token for impersonation.
99258
+ :param str value: Value of the tag.
97507
99259
  """
97508
- pulumi.set(__self__, "name", name)
97509
- pulumi.set(__self__, "priority", priority)
99260
+ pulumi.set(__self__, "ocid", ocid)
97510
99261
  pulumi.set(__self__, "ref", ref)
99262
+ pulumi.set(__self__, "rule", rule)
97511
99263
  pulumi.set(__self__, "value", value)
97512
99264
 
97513
99265
  @property
97514
99266
  @pulumi.getter
97515
- def name(self) -> str:
99267
+ def ocid(self) -> str:
97516
99268
  """
97517
- PasswordPolicy Name
99269
+ Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
97518
99270
  """
97519
- return pulumi.get(self, "name")
99271
+ return pulumi.get(self, "ocid")
97520
99272
 
97521
99273
  @property
97522
99274
  @pulumi.getter
97523
- def priority(self) -> int:
97524
- """
97525
- PasswordPolicy priority
97526
- """
97527
- return pulumi.get(self, "priority")
99275
+ def ref(self) -> str:
99276
+ return pulumi.get(self, "ref")
97528
99277
 
97529
99278
  @property
97530
99279
  @pulumi.getter
97531
- def ref(self) -> str:
99280
+ def rule(self) -> str:
97532
99281
  """
97533
- App URI
99282
+ The rule expression to be used for matching the inbound token for impersonation.
97534
99283
  """
97535
- return pulumi.get(self, "ref")
99284
+ return pulumi.get(self, "rule")
97536
99285
 
97537
99286
  @property
97538
99287
  @pulumi.getter
97539
99288
  def value(self) -> str:
97540
99289
  """
97541
- The ID of the App.
99290
+ Value of the tag.
97542
99291
  """
97543
99292
  return pulumi.get(self, "value")
97544
99293
 
97545
99294
 
97546
99295
  @pulumi.output_type
97547
- class GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupSyncedFromAppResult(dict):
99296
+ class GetDomainsIdentityPropagationTrustsIdentityPropagationTrustKeytabResult(dict):
97548
99297
  def __init__(__self__, *,
97549
- display: str,
97550
- ref: str,
97551
- type: str,
97552
- value: str):
99298
+ secret_ocid: str,
99299
+ secret_version: int):
97553
99300
  """
97554
- :param str display: App Display Name
97555
- :param str ref: App URI
97556
- :param str type: The type of the entity that created this Group.
97557
- :param str value: The ID of the App.
99301
+ :param str secret_ocid: The OCID of the secret. The secret content corresponding to the OCID is expected to be in Base64 encoded content type.
99302
+ :param int secret_version: The version of the secret. When the version is not specified, then the latest secret version is used during runtime.
97558
99303
  """
97559
- pulumi.set(__self__, "display", display)
97560
- pulumi.set(__self__, "ref", ref)
97561
- pulumi.set(__self__, "type", type)
97562
- pulumi.set(__self__, "value", value)
99304
+ pulumi.set(__self__, "secret_ocid", secret_ocid)
99305
+ pulumi.set(__self__, "secret_version", secret_version)
97563
99306
 
97564
99307
  @property
97565
- @pulumi.getter
97566
- def display(self) -> str:
99308
+ @pulumi.getter(name="secretOcid")
99309
+ def secret_ocid(self) -> str:
97567
99310
  """
97568
- App Display Name
99311
+ The OCID of the secret. The secret content corresponding to the OCID is expected to be in Base64 encoded content type.
97569
99312
  """
97570
- return pulumi.get(self, "display")
99313
+ return pulumi.get(self, "secret_ocid")
97571
99314
 
97572
99315
  @property
97573
- @pulumi.getter
97574
- def ref(self) -> str:
99316
+ @pulumi.getter(name="secretVersion")
99317
+ def secret_version(self) -> int:
97575
99318
  """
97576
- App URI
99319
+ The version of the secret. When the version is not specified, then the latest secret version is used during runtime.
97577
99320
  """
97578
- return pulumi.get(self, "ref")
99321
+ return pulumi.get(self, "secret_version")
99322
+
99323
+
99324
+ @pulumi.output_type
99325
+ class GetDomainsIdentityPropagationTrustsIdentityPropagationTrustMetaResult(dict):
99326
+ def __init__(__self__, *,
99327
+ created: str,
99328
+ last_modified: str,
99329
+ location: str,
99330
+ resource_type: str,
99331
+ version: str):
99332
+ """
99333
+ :param str created: The DateTime the Resource was added to the Service Provider
99334
+ :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.
99335
+ :param str location: The URI of the Resource being returned. This value MUST be the same as the Location HTTP response header.
99336
+ :param str resource_type: Name of the resource type of the resource--for example, Users or Groups
99337
+ :param str version: The version of the Resource being returned. This value must be the same as the ETag HTTP response header.
99338
+ """
99339
+ pulumi.set(__self__, "created", created)
99340
+ pulumi.set(__self__, "last_modified", last_modified)
99341
+ pulumi.set(__self__, "location", location)
99342
+ pulumi.set(__self__, "resource_type", resource_type)
99343
+ pulumi.set(__self__, "version", version)
97579
99344
 
97580
99345
  @property
97581
99346
  @pulumi.getter
97582
- def type(self) -> str:
99347
+ def created(self) -> str:
97583
99348
  """
97584
- The type of the entity that created this Group.
99349
+ The DateTime the Resource was added to the Service Provider
97585
99350
  """
97586
- return pulumi.get(self, "type")
99351
+ return pulumi.get(self, "created")
97587
99352
 
97588
99353
  @property
97589
- @pulumi.getter
97590
- def value(self) -> str:
99354
+ @pulumi.getter(name="lastModified")
99355
+ def last_modified(self) -> str:
97591
99356
  """
97592
- The ID of the App.
99357
+ 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.
97593
99358
  """
97594
- return pulumi.get(self, "value")
99359
+ return pulumi.get(self, "last_modified")
97595
99360
 
99361
+ @property
99362
+ @pulumi.getter
99363
+ def location(self) -> str:
99364
+ """
99365
+ The URI of the Resource being returned. This value MUST be the same as the Location HTTP response header.
99366
+ """
99367
+ return pulumi.get(self, "location")
97596
99368
 
97597
- @pulumi.output_type
97598
- class GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensionposixGroupResult(dict):
97599
- def __init__(__self__, *,
97600
- gid_number: int):
99369
+ @property
99370
+ @pulumi.getter(name="resourceType")
99371
+ def resource_type(self) -> str:
97601
99372
  """
97602
- :param int gid_number: Integer uniquely identifying a group in a POSIX administrative domain
99373
+ Name of the resource type of the resource--for example, Users or Groups
97603
99374
  """
97604
- pulumi.set(__self__, "gid_number", gid_number)
99375
+ return pulumi.get(self, "resource_type")
97605
99376
 
97606
99377
  @property
97607
- @pulumi.getter(name="gidNumber")
97608
- def gid_number(self) -> int:
99378
+ @pulumi.getter
99379
+ def version(self) -> str:
97609
99380
  """
97610
- Integer uniquely identifying a group in a POSIX administrative domain
99381
+ The version of the Resource being returned. This value must be the same as the ETag HTTP response header.
97611
99382
  """
97612
- return pulumi.get(self, "gid_number")
99383
+ return pulumi.get(self, "version")
97613
99384
 
97614
99385
 
97615
99386
  @pulumi.output_type
97616
- class GetDomainsGroupsGroupUrnietfparamsscimschemasoracleidcsextensionrequestableGroupResult(dict):
99387
+ class GetDomainsIdentityPropagationTrustsIdentityPropagationTrustTagResult(dict):
97617
99388
  def __init__(__self__, *,
97618
- requestable: bool):
99389
+ key: str,
99390
+ value: str):
97619
99391
  """
97620
- :param bool requestable: Flag controlling whether group membership can be request by user through self service console.
99392
+ :param str key: Key or name of the tag.
99393
+ :param str value: Value of the tag.
97621
99394
  """
97622
- pulumi.set(__self__, "requestable", requestable)
99395
+ pulumi.set(__self__, "key", key)
99396
+ pulumi.set(__self__, "value", value)
97623
99397
 
97624
99398
  @property
97625
99399
  @pulumi.getter
97626
- def requestable(self) -> bool:
99400
+ def key(self) -> str:
97627
99401
  """
97628
- Flag controlling whether group membership can be request by user through self service console.
99402
+ Key or name of the tag.
97629
99403
  """
97630
- return pulumi.get(self, "requestable")
99404
+ return pulumi.get(self, "key")
99405
+
99406
+ @property
99407
+ @pulumi.getter
99408
+ def value(self) -> str:
99409
+ """
99410
+ Value of the tag.
99411
+ """
99412
+ return pulumi.get(self, "value")
97631
99413
 
97632
99414
 
97633
99415
  @pulumi.output_type
@@ -133024,6 +134806,7 @@ class GetDomainsUserUrnietfparamsscimschemasoracleidcsextensionuserUserResult(di
133024
134806
  is_group_membership_synced_to_users_groups: bool,
133025
134807
  notification_email_template_id: str,
133026
134808
  preferred_ui_landing_page: str,
134809
+ service_user: bool,
133027
134810
  status: str,
133028
134811
  support_accounts: Sequence['outputs.GetDomainsUserUrnietfparamsscimschemasoracleidcsextensionuserUserSupportAccountResult'],
133029
134812
  synced_from_apps: Sequence['outputs.GetDomainsUserUrnietfparamsscimschemasoracleidcsextensionuserUserSyncedFromAppResult'],
@@ -133049,6 +134832,7 @@ class GetDomainsUserUrnietfparamsscimschemasoracleidcsextensionuserUserResult(di
133049
134832
  :param bool is_group_membership_synced_to_users_groups: A Boolean value Indicates whether this User's group membership has been sync'ed from Group.members to UsersGroups.
133050
134833
  :param str notification_email_template_id: Specifies the EmailTemplate to be used when sending notification to the user this request is for. If specified, it overrides the default EmailTemplate for this event.
133051
134834
  :param str preferred_ui_landing_page: User's preferred landing page following login, logout and reset password.
134835
+ :param bool service_user: Indicates if User is a Service User
133052
134836
  :param str status: A supplemental status indicating the reason why a user is disabled
133053
134837
  :param Sequence['GetDomainsUserUrnietfparamsscimschemasoracleidcsextensionuserUserSupportAccountArgs'] support_accounts: A list of Support Accounts corresponding to user.
133054
134838
  :param Sequence['GetDomainsUserUrnietfparamsscimschemasoracleidcsextensionuserUserSyncedFromAppArgs'] synced_from_apps: Managed App or an Identity Source from where the user is synced. If enabled, this Managed App or Identity Source can be used for performing delegated authentication.
@@ -133074,6 +134858,7 @@ class GetDomainsUserUrnietfparamsscimschemasoracleidcsextensionuserUserResult(di
133074
134858
  pulumi.set(__self__, "is_group_membership_synced_to_users_groups", is_group_membership_synced_to_users_groups)
133075
134859
  pulumi.set(__self__, "notification_email_template_id", notification_email_template_id)
133076
134860
  pulumi.set(__self__, "preferred_ui_landing_page", preferred_ui_landing_page)
134861
+ pulumi.set(__self__, "service_user", service_user)
133077
134862
  pulumi.set(__self__, "status", status)
133078
134863
  pulumi.set(__self__, "support_accounts", support_accounts)
133079
134864
  pulumi.set(__self__, "synced_from_apps", synced_from_apps)
@@ -133225,6 +135010,14 @@ class GetDomainsUserUrnietfparamsscimschemasoracleidcsextensionuserUserResult(di
133225
135010
  """
133226
135011
  return pulumi.get(self, "preferred_ui_landing_page")
133227
135012
 
135013
+ @property
135014
+ @pulumi.getter(name="serviceUser")
135015
+ def service_user(self) -> bool:
135016
+ """
135017
+ Indicates if User is a Service User
135018
+ """
135019
+ return pulumi.get(self, "service_user")
135020
+
133228
135021
  @property
133229
135022
  @pulumi.getter
133230
135023
  def status(self) -> str:
@@ -137444,6 +139237,7 @@ class GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserUserResu
137444
139237
  is_group_membership_synced_to_users_groups: bool,
137445
139238
  notification_email_template_id: str,
137446
139239
  preferred_ui_landing_page: str,
139240
+ service_user: bool,
137447
139241
  status: str,
137448
139242
  support_accounts: Sequence['outputs.GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserUserSupportAccountResult'],
137449
139243
  synced_from_apps: Sequence['outputs.GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserUserSyncedFromAppResult'],
@@ -137469,6 +139263,7 @@ class GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserUserResu
137469
139263
  :param bool is_group_membership_synced_to_users_groups: A Boolean value Indicates whether this User's group membership has been sync'ed from Group.members to UsersGroups.
137470
139264
  :param str notification_email_template_id: Specifies the EmailTemplate to be used when sending notification to the user this request is for. If specified, it overrides the default EmailTemplate for this event.
137471
139265
  :param str preferred_ui_landing_page: User's preferred landing page following login, logout and reset password.
139266
+ :param bool service_user: Indicates if User is a Service User
137472
139267
  :param str status: A supplemental status indicating the reason why a user is disabled
137473
139268
  :param Sequence['GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserUserSupportAccountArgs'] support_accounts: A list of Support Accounts corresponding to user.
137474
139269
  :param Sequence['GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserUserSyncedFromAppArgs'] synced_from_apps: Managed App or an Identity Source from where the user is synced. If enabled, this Managed App or Identity Source can be used for performing delegated authentication.
@@ -137494,6 +139289,7 @@ class GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserUserResu
137494
139289
  pulumi.set(__self__, "is_group_membership_synced_to_users_groups", is_group_membership_synced_to_users_groups)
137495
139290
  pulumi.set(__self__, "notification_email_template_id", notification_email_template_id)
137496
139291
  pulumi.set(__self__, "preferred_ui_landing_page", preferred_ui_landing_page)
139292
+ pulumi.set(__self__, "service_user", service_user)
137497
139293
  pulumi.set(__self__, "status", status)
137498
139294
  pulumi.set(__self__, "support_accounts", support_accounts)
137499
139295
  pulumi.set(__self__, "synced_from_apps", synced_from_apps)
@@ -137645,6 +139441,14 @@ class GetDomainsUsersUserUrnietfparamsscimschemasoracleidcsextensionuserUserResu
137645
139441
  """
137646
139442
  return pulumi.get(self, "preferred_ui_landing_page")
137647
139443
 
139444
+ @property
139445
+ @pulumi.getter(name="serviceUser")
139446
+ def service_user(self) -> bool:
139447
+ """
139448
+ Indicates if User is a Service User
139449
+ """
139450
+ return pulumi.get(self, "service_user")
139451
+
137648
139452
  @property
137649
139453
  @pulumi.getter
137650
139454
  def status(self) -> str: