@pulumi/oci 4.2.0 → 4.3.0-alpha.1773204600

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 (52) hide show
  1. package/core/instanceConfiguration.d.ts +16 -4
  2. package/core/instanceConfiguration.js +16 -4
  3. package/core/instanceConfiguration.js.map +1 -1
  4. package/core/vnicAttachment.d.ts +6 -1
  5. package/core/vnicAttachment.js +6 -1
  6. package/core/vnicAttachment.js.map +1 -1
  7. package/email/emailIpPool.d.ts +13 -0
  8. package/email/emailIpPool.js +3 -0
  9. package/email/emailIpPool.js.map +1 -1
  10. package/email/getEmailIpPool.d.ts +4 -0
  11. package/email/getEmailIpPool.js.map +1 -1
  12. package/identity/domainsGroup.d.ts +1 -1
  13. package/identity/domainsIdentityProofingProvider.d.ts +855 -0
  14. package/identity/domainsIdentityProofingProvider.js +163 -0
  15. package/identity/domainsIdentityProofingProvider.js.map +1 -0
  16. package/identity/domainsIdentityProofingProviderTemplate.d.ts +716 -0
  17. package/identity/domainsIdentityProofingProviderTemplate.js +149 -0
  18. package/identity/domainsIdentityProofingProviderTemplate.js.map +1 -0
  19. package/identity/getDomainsIdentityProofingProvider.d.ts +203 -0
  20. package/identity/getDomainsIdentityProofingProvider.js +74 -0
  21. package/identity/getDomainsIdentityProofingProvider.js.map +1 -0
  22. package/identity/getDomainsIdentityProofingProviderTemplate.d.ts +191 -0
  23. package/identity/getDomainsIdentityProofingProviderTemplate.js +74 -0
  24. package/identity/getDomainsIdentityProofingProviderTemplate.js.map +1 -0
  25. package/identity/getDomainsIdentityProofingProviderTemplates.d.ts +160 -0
  26. package/identity/getDomainsIdentityProofingProviderTemplates.js +88 -0
  27. package/identity/getDomainsIdentityProofingProviderTemplates.js.map +1 -0
  28. package/identity/getDomainsIdentityProofingProviders.d.ts +160 -0
  29. package/identity/getDomainsIdentityProofingProviders.js +88 -0
  30. package/identity/getDomainsIdentityProofingProviders.js.map +1 -0
  31. package/identity/index.d.ts +18 -0
  32. package/identity/index.js +30 -8
  33. package/identity/index.js.map +1 -1
  34. package/mysql/getMysqlConfiguration.d.ts +4 -0
  35. package/mysql/getMysqlConfiguration.js.map +1 -1
  36. package/mysql/mysqlConfiguration.d.ts +12 -0
  37. package/mysql/mysqlConfiguration.js.map +1 -1
  38. package/oci/gdpGdpPipeline.d.ts +371 -0
  39. package/oci/gdpGdpPipeline.js +160 -0
  40. package/oci/gdpGdpPipeline.js.map +1 -0
  41. package/oci/getGdpGdpPipeline.d.ts +169 -0
  42. package/oci/getGdpGdpPipeline.js +58 -0
  43. package/oci/getGdpGdpPipeline.js.map +1 -0
  44. package/oci/getGdpGdpPipelines.d.ts +100 -0
  45. package/oci/getGdpGdpPipelines.js +66 -0
  46. package/oci/getGdpGdpPipelines.js.map +1 -0
  47. package/oci/index.d.ts +9 -0
  48. package/oci/index.js +17 -6
  49. package/oci/index.js.map +1 -1
  50. package/package.json +2 -2
  51. package/types/input.d.ts +961 -190
  52. package/types/output.d.ts +1852 -226
@@ -0,0 +1,855 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ import * as inputs from "../types/input";
3
+ import * as outputs from "../types/output";
4
+ /**
5
+ * This resource provides the Identity Proofing Provider resource in Oracle Cloud Infrastructure Identity Domains service.
6
+ * Api doc link for the resource: https://docs.oracle.com/iaas/api/#/en/identity-domains/latest/IdentityProofingProvider
7
+ *
8
+ * Example terraform configs related to the resource : https://github.com/oracle/terraform-provider-oci/tree/master/examples/identity_domains
9
+ *
10
+ * Create an IdentityProofingProvider.
11
+ *
12
+ * ## Example Usage
13
+ *
14
+ * ```typescript
15
+ * import * as pulumi from "@pulumi/pulumi";
16
+ * import * as oci from "@pulumi/oci";
17
+ *
18
+ * const testIdentityProofingProvider = new oci.identity.DomainsIdentityProofingProvider("test_identity_proofing_provider", {
19
+ * identityProofingProviderProvider: identityProofingProviderIdentityProofingProviderProvider,
20
+ * claimMappings: [{
21
+ * attrMatch: identityProofingProviderClaimMappingAttrMatch,
22
+ * verifiableClaim: identityProofingProviderClaimMappingVerifiableClaim,
23
+ * }],
24
+ * configurations: [{
25
+ * name: identityProofingProviderConfigurationName,
26
+ * value: identityProofingProviderConfigurationValue,
27
+ * }],
28
+ * idcsEndpoint: testDomain.url,
29
+ * name: identityProofingProviderName,
30
+ * schemas: ["urn:ietf:params:scim:schemas:oracle:idcs:IdentityProofingProvider"],
31
+ * attributeSets: ["all"],
32
+ * attributes: "",
33
+ * authorization: identityProofingProviderAuthorization,
34
+ * description: identityProofingProviderDescription,
35
+ * ocid: identityProofingProviderOcid,
36
+ * resourceTypeSchemaVersion: identityProofingProviderResourceTypeSchemaVersion,
37
+ * runtimeDatas: [{
38
+ * attrName: identityProofingProviderRuntimeDataAttrName,
39
+ * attrValue: identityProofingProviderRuntimeDataAttrValue,
40
+ * }],
41
+ * status: identityProofingProviderStatus,
42
+ * });
43
+ * ```
44
+ *
45
+ * ## Import
46
+ *
47
+ * IdentityProofingProviders can be imported using the `id`, e.g.
48
+ *
49
+ * ```sh
50
+ * $ pulumi import oci:Identity/domainsIdentityProofingProvider:DomainsIdentityProofingProvider test_identity_proofing_provider "idcsEndpoint/{idcsEndpoint}/identityProofingProviders/{identityProofingProviderId}"
51
+ * ```
52
+ */
53
+ export declare class DomainsIdentityProofingProvider extends pulumi.CustomResource {
54
+ /**
55
+ * Get an existing DomainsIdentityProofingProvider resource's state with the given name, ID, and optional extra
56
+ * properties used to qualify the lookup.
57
+ *
58
+ * @param name The _unique_ name of the resulting resource.
59
+ * @param id The _unique_ provider ID of the resource to lookup.
60
+ * @param state Any extra arguments used during the lookup.
61
+ * @param opts Optional settings to control the behavior of the CustomResource.
62
+ */
63
+ static get(name: string, id: pulumi.Input<pulumi.ID>, state?: DomainsIdentityProofingProviderState, opts?: pulumi.CustomResourceOptions): DomainsIdentityProofingProvider;
64
+ /**
65
+ * Returns true if the given object is an instance of DomainsIdentityProofingProvider. This is designed to work even
66
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
67
+ */
68
+ static isInstance(obj: any): obj is DomainsIdentityProofingProvider;
69
+ /**
70
+ * (Updatable) 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.
71
+ */
72
+ readonly attributeSets: pulumi.Output<string[] | undefined>;
73
+ /**
74
+ * (Updatable) 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.
75
+ */
76
+ readonly attributes: pulumi.Output<string | undefined>;
77
+ /**
78
+ * (Updatable) The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
79
+ */
80
+ readonly authorization: pulumi.Output<string | undefined>;
81
+ /**
82
+ * (Updatable) Configure the verification claims and IAM Domain user attribute mapping.
83
+ *
84
+ * **SCIM++ Properties:**
85
+ * * idcsSearchable: false
86
+ * * multiValued: true
87
+ * * mutability: immutable
88
+ * * required: true
89
+ * * returned: always
90
+ * * idcsCompositeKey: [verifiableClaim]
91
+ * * type: complex
92
+ * * uniqueness: server
93
+ */
94
+ readonly claimMappings: pulumi.Output<outputs.Identity.DomainsIdentityProofingProviderClaimMapping[]>;
95
+ /**
96
+ * (Updatable) Oracle Cloud Infrastructure Compartment Id (OCID) in which the resource lives.
97
+ *
98
+ * **SCIM++ Properties:**
99
+ * * caseExact: false
100
+ * * idcsSearchable: false
101
+ * * multiValued: false
102
+ * * mutability: readOnly
103
+ * * required: false
104
+ * * returned: default
105
+ * * type: string
106
+ * * uniqueness: none
107
+ */
108
+ readonly compartmentOcid: pulumi.Output<string>;
109
+ /**
110
+ * (Updatable) Configure the verification provider.
111
+ *
112
+ * **SCIM++ Properties:**
113
+ * * idcsSearchable: false
114
+ * * multiValued: true
115
+ * * mutability: immutable
116
+ * * required: true
117
+ * * returned: always
118
+ * * idcsCompositeKey: [name]
119
+ * * type: complex
120
+ * * uniqueness: server
121
+ */
122
+ readonly configurations: pulumi.Output<outputs.Identity.DomainsIdentityProofingProviderConfiguration[]>;
123
+ /**
124
+ * (Updatable) 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.
125
+ *
126
+ * **SCIM++ Properties:**
127
+ * * caseExact: false
128
+ * * idcsSearchable: true
129
+ * * multiValued: false
130
+ * * mutability: readOnly
131
+ * * required: false
132
+ * * returned: default
133
+ * * type: boolean
134
+ * * uniqueness: none
135
+ */
136
+ readonly deleteInProgress: pulumi.Output<boolean>;
137
+ /**
138
+ * (Updatable) Description field to add comments and additional information about the Identity Proofing Provider.
139
+ *
140
+ * **SCIM++ Properties:**
141
+ * * idcsSearchable: false
142
+ * * multiValued: false
143
+ * * mutability: readWrite
144
+ * * required: false
145
+ * * returned: default
146
+ * * type: string
147
+ * * uniqueness: none
148
+ */
149
+ readonly description: pulumi.Output<string>;
150
+ /**
151
+ * (Updatable) Oracle Cloud Infrastructure Domain Id (OCID) in which the resource lives.
152
+ *
153
+ * **SCIM++ Properties:**
154
+ * * caseExact: false
155
+ * * idcsSearchable: false
156
+ * * multiValued: false
157
+ * * mutability: readOnly
158
+ * * required: false
159
+ * * returned: default
160
+ * * type: string
161
+ * * uniqueness: none
162
+ */
163
+ readonly domainOcid: pulumi.Output<string>;
164
+ /**
165
+ * (Updatable) The User or App who created the Resource
166
+ *
167
+ * **SCIM++ Properties:**
168
+ * * idcsSearchable: true
169
+ * * multiValued: false
170
+ * * mutability: readOnly
171
+ * * required: true
172
+ * * returned: default
173
+ * * type: complex
174
+ */
175
+ readonly idcsCreatedBies: pulumi.Output<outputs.Identity.DomainsIdentityProofingProviderIdcsCreatedBy[]>;
176
+ /**
177
+ * The basic endpoint for the identity domain
178
+ */
179
+ readonly idcsEndpoint: pulumi.Output<string>;
180
+ /**
181
+ * (Updatable) The User or App who modified the Resource
182
+ *
183
+ * **SCIM++ Properties:**
184
+ * * idcsSearchable: true
185
+ * * multiValued: false
186
+ * * mutability: readOnly
187
+ * * required: false
188
+ * * returned: default
189
+ * * type: complex
190
+ */
191
+ readonly idcsLastModifiedBies: pulumi.Output<outputs.Identity.DomainsIdentityProofingProviderIdcsLastModifiedBy[]>;
192
+ /**
193
+ * (Updatable) The release number when the resource was upgraded.
194
+ *
195
+ * **SCIM++ Properties:**
196
+ * * caseExact: false
197
+ * * idcsSearchable: false
198
+ * * multiValued: false
199
+ * * mutability: readOnly
200
+ * * required: false
201
+ * * returned: request
202
+ * * type: string
203
+ * * uniqueness: none
204
+ */
205
+ readonly idcsLastUpgradedInRelease: pulumi.Output<string>;
206
+ /**
207
+ * (Updatable) The User or App who locked the Resource.
208
+ *
209
+ * **SCIM++ Properties:**
210
+ * * idcsSearchable: false
211
+ * * multiValued: false
212
+ * * mutability: readOnly
213
+ * * required: false
214
+ * * returned: default
215
+ * * type: complex
216
+ */
217
+ readonly idcsLockedBies: pulumi.Output<outputs.Identity.DomainsIdentityProofingProviderIdcsLockedBy[]>;
218
+ /**
219
+ * (Updatable) The most recent DateTime the resource was locked.
220
+ *
221
+ * **SCIM++ Properties:**
222
+ * * caseExact: false
223
+ * * idcsSearchable: false
224
+ * * multiValued: false
225
+ * * mutability: readOnly
226
+ * * required: false
227
+ * * returned: default
228
+ * * type: dateTime
229
+ * * uniqueness: none
230
+ */
231
+ readonly idcsLockedOn: pulumi.Output<string>;
232
+ /**
233
+ * (Updatable) Operations that are locked on the resource.
234
+ *
235
+ * **SCIM++ Properties:**
236
+ * * idcsSearchable: false
237
+ * * idcsCsvAttributeNameMappings: [[columnHeaderName:Locked Operations, multiValueDelimiter:;]]
238
+ * * multiValued: true
239
+ * * mutability: readWrite
240
+ * * required: false
241
+ * * returned: default
242
+ * * type: string
243
+ * * uniqueness: none
244
+ */
245
+ readonly idcsLockedOperations: pulumi.Output<string[]>;
246
+ /**
247
+ * (Updatable) Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
248
+ *
249
+ * **SCIM++ Properties:**
250
+ * * idcsSearchable: false
251
+ * * multiValued: true
252
+ * * mutability: readOnly
253
+ * * required: false
254
+ * * returned: request
255
+ * * type: string
256
+ * * uniqueness: none
257
+ */
258
+ readonly idcsPreventedOperations: pulumi.Output<string[]>;
259
+ /**
260
+ * (Updatable) The Identity Proofing Provider.
261
+ *
262
+ * **SCIM++ Properties:**
263
+ * * idcsSearchable: true
264
+ * * multiValued: false
265
+ * * mutability: readWrite
266
+ * * idcsCanonicalValueSourceFilter: provider eq "$(provider)"
267
+ * * idcsCanonicalValueSourceResourceType: IdentityProofingProviderTemplate
268
+ * * caseExact: true
269
+ * * required: true
270
+ * * returned: always
271
+ * * type: string
272
+ * * uniqueness: none
273
+ */
274
+ readonly identityProofingProviderProvider: pulumi.Output<string>;
275
+ /**
276
+ * (Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
277
+ *
278
+ * **SCIM++ Properties:**
279
+ * * caseExact: false
280
+ * * idcsSearchable: true
281
+ * * multiValued: false
282
+ * * mutability: readOnly
283
+ * * required: false
284
+ * * returned: default
285
+ * * idcsCsvAttributeNameMappings: [[columnHeaderName:Created Date, mapsTo:meta.created]]
286
+ * * type: complex
287
+ */
288
+ readonly metas: pulumi.Output<outputs.Identity.DomainsIdentityProofingProviderMeta[]>;
289
+ /**
290
+ * (Updatable) Name of the Identity Proofing Provider.
291
+ *
292
+ * **SCIM++ Properties:**
293
+ * * idcsSearchable: false
294
+ * * multiValued: false
295
+ * * mutability: readWrite
296
+ * * required: true
297
+ * * returned: always
298
+ * * type: string
299
+ * * uniqueness: global
300
+ */
301
+ readonly name: pulumi.Output<string>;
302
+ /**
303
+ * (Updatable) Unique Oracle Cloud Infrastructure identifier (OCID) for the SCIM Resource.
304
+ *
305
+ * **SCIM++ Properties:**
306
+ * * caseExact: true
307
+ * * idcsSearchable: true
308
+ * * multiValued: false
309
+ * * mutability: immutable
310
+ * * required: false
311
+ * * returned: default
312
+ * * type: string
313
+ * * uniqueness: global
314
+ */
315
+ readonly ocid: pulumi.Output<string>;
316
+ /**
317
+ * (Updatable) 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.
318
+ */
319
+ readonly resourceTypeSchemaVersion: pulumi.Output<string | undefined>;
320
+ /**
321
+ * (Updatable) Identity Proofing runtime custom data.
322
+ *
323
+ * **Added In:** 2505161800
324
+ *
325
+ * **SCIM++ Properties:**
326
+ * * idcsCompositeKey: [attrName]
327
+ * * multiValued: true
328
+ * * mutability: readWrite
329
+ * * required: false
330
+ * * returned: default
331
+ * * type: complex
332
+ */
333
+ readonly runtimeDatas: pulumi.Output<outputs.Identity.DomainsIdentityProofingProviderRuntimeData[]>;
334
+ /**
335
+ * (Updatable) 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.
336
+ *
337
+ * **SCIM++ Properties:**
338
+ * * caseExact: false
339
+ * * idcsSearchable: false
340
+ * * multiValued: true
341
+ * * mutability: readWrite
342
+ * * required: true
343
+ * * returned: default
344
+ * * type: string
345
+ * * uniqueness: none
346
+ */
347
+ readonly schemas: pulumi.Output<string[]>;
348
+ /**
349
+ * (Updatable) Status of the Identity Proofing Provider.
350
+ *
351
+ * **SCIM++ Properties:**
352
+ * * idcsSearchable: true
353
+ * * multiValued: false
354
+ * * caseExact: true
355
+ * * mutability: readWrite
356
+ * * required: false
357
+ * * returned: default
358
+ * * type: string
359
+ * * uniqueness: none
360
+ */
361
+ readonly status: pulumi.Output<string>;
362
+ /**
363
+ * (Updatable) Oracle Cloud Infrastructure Tenant Id (OCID) in which the resource lives.
364
+ *
365
+ * **SCIM++ Properties:**
366
+ * * caseExact: false
367
+ * * idcsSearchable: false
368
+ * * multiValued: false
369
+ * * mutability: readOnly
370
+ * * required: false
371
+ * * returned: default
372
+ * * type: string
373
+ * * uniqueness: none
374
+ *
375
+ *
376
+ * ** IMPORTANT **
377
+ * Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
378
+ */
379
+ readonly tenancyOcid: pulumi.Output<string>;
380
+ /**
381
+ * Create a DomainsIdentityProofingProvider resource with the given unique name, arguments, and options.
382
+ *
383
+ * @param name The _unique_ name of the resource.
384
+ * @param args The arguments to use to populate this resource's properties.
385
+ * @param opts A bag of options that control this resource's behavior.
386
+ */
387
+ constructor(name: string, args: DomainsIdentityProofingProviderArgs, opts?: pulumi.CustomResourceOptions);
388
+ }
389
+ /**
390
+ * Input properties used for looking up and filtering DomainsIdentityProofingProvider resources.
391
+ */
392
+ export interface DomainsIdentityProofingProviderState {
393
+ /**
394
+ * (Updatable) 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.
395
+ */
396
+ attributeSets?: pulumi.Input<pulumi.Input<string>[]>;
397
+ /**
398
+ * (Updatable) 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.
399
+ */
400
+ attributes?: pulumi.Input<string>;
401
+ /**
402
+ * (Updatable) The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
403
+ */
404
+ authorization?: pulumi.Input<string>;
405
+ /**
406
+ * (Updatable) Configure the verification claims and IAM Domain user attribute mapping.
407
+ *
408
+ * **SCIM++ Properties:**
409
+ * * idcsSearchable: false
410
+ * * multiValued: true
411
+ * * mutability: immutable
412
+ * * required: true
413
+ * * returned: always
414
+ * * idcsCompositeKey: [verifiableClaim]
415
+ * * type: complex
416
+ * * uniqueness: server
417
+ */
418
+ claimMappings?: pulumi.Input<pulumi.Input<inputs.Identity.DomainsIdentityProofingProviderClaimMapping>[]>;
419
+ /**
420
+ * (Updatable) Oracle Cloud Infrastructure Compartment Id (OCID) in which the resource lives.
421
+ *
422
+ * **SCIM++ Properties:**
423
+ * * caseExact: false
424
+ * * idcsSearchable: false
425
+ * * multiValued: false
426
+ * * mutability: readOnly
427
+ * * required: false
428
+ * * returned: default
429
+ * * type: string
430
+ * * uniqueness: none
431
+ */
432
+ compartmentOcid?: pulumi.Input<string>;
433
+ /**
434
+ * (Updatable) Configure the verification provider.
435
+ *
436
+ * **SCIM++ Properties:**
437
+ * * idcsSearchable: false
438
+ * * multiValued: true
439
+ * * mutability: immutable
440
+ * * required: true
441
+ * * returned: always
442
+ * * idcsCompositeKey: [name]
443
+ * * type: complex
444
+ * * uniqueness: server
445
+ */
446
+ configurations?: pulumi.Input<pulumi.Input<inputs.Identity.DomainsIdentityProofingProviderConfiguration>[]>;
447
+ /**
448
+ * (Updatable) 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.
449
+ *
450
+ * **SCIM++ Properties:**
451
+ * * caseExact: false
452
+ * * idcsSearchable: true
453
+ * * multiValued: false
454
+ * * mutability: readOnly
455
+ * * required: false
456
+ * * returned: default
457
+ * * type: boolean
458
+ * * uniqueness: none
459
+ */
460
+ deleteInProgress?: pulumi.Input<boolean>;
461
+ /**
462
+ * (Updatable) Description field to add comments and additional information about the Identity Proofing Provider.
463
+ *
464
+ * **SCIM++ Properties:**
465
+ * * idcsSearchable: false
466
+ * * multiValued: false
467
+ * * mutability: readWrite
468
+ * * required: false
469
+ * * returned: default
470
+ * * type: string
471
+ * * uniqueness: none
472
+ */
473
+ description?: pulumi.Input<string>;
474
+ /**
475
+ * (Updatable) Oracle Cloud Infrastructure Domain Id (OCID) in which the resource lives.
476
+ *
477
+ * **SCIM++ Properties:**
478
+ * * caseExact: false
479
+ * * idcsSearchable: false
480
+ * * multiValued: false
481
+ * * mutability: readOnly
482
+ * * required: false
483
+ * * returned: default
484
+ * * type: string
485
+ * * uniqueness: none
486
+ */
487
+ domainOcid?: pulumi.Input<string>;
488
+ /**
489
+ * (Updatable) The User or App who created the Resource
490
+ *
491
+ * **SCIM++ Properties:**
492
+ * * idcsSearchable: true
493
+ * * multiValued: false
494
+ * * mutability: readOnly
495
+ * * required: true
496
+ * * returned: default
497
+ * * type: complex
498
+ */
499
+ idcsCreatedBies?: pulumi.Input<pulumi.Input<inputs.Identity.DomainsIdentityProofingProviderIdcsCreatedBy>[]>;
500
+ /**
501
+ * The basic endpoint for the identity domain
502
+ */
503
+ idcsEndpoint?: pulumi.Input<string>;
504
+ /**
505
+ * (Updatable) The User or App who modified the Resource
506
+ *
507
+ * **SCIM++ Properties:**
508
+ * * idcsSearchable: true
509
+ * * multiValued: false
510
+ * * mutability: readOnly
511
+ * * required: false
512
+ * * returned: default
513
+ * * type: complex
514
+ */
515
+ idcsLastModifiedBies?: pulumi.Input<pulumi.Input<inputs.Identity.DomainsIdentityProofingProviderIdcsLastModifiedBy>[]>;
516
+ /**
517
+ * (Updatable) The release number when the resource was upgraded.
518
+ *
519
+ * **SCIM++ Properties:**
520
+ * * caseExact: false
521
+ * * idcsSearchable: false
522
+ * * multiValued: false
523
+ * * mutability: readOnly
524
+ * * required: false
525
+ * * returned: request
526
+ * * type: string
527
+ * * uniqueness: none
528
+ */
529
+ idcsLastUpgradedInRelease?: pulumi.Input<string>;
530
+ /**
531
+ * (Updatable) The User or App who locked the Resource.
532
+ *
533
+ * **SCIM++ Properties:**
534
+ * * idcsSearchable: false
535
+ * * multiValued: false
536
+ * * mutability: readOnly
537
+ * * required: false
538
+ * * returned: default
539
+ * * type: complex
540
+ */
541
+ idcsLockedBies?: pulumi.Input<pulumi.Input<inputs.Identity.DomainsIdentityProofingProviderIdcsLockedBy>[]>;
542
+ /**
543
+ * (Updatable) The most recent DateTime the resource was locked.
544
+ *
545
+ * **SCIM++ Properties:**
546
+ * * caseExact: false
547
+ * * idcsSearchable: false
548
+ * * multiValued: false
549
+ * * mutability: readOnly
550
+ * * required: false
551
+ * * returned: default
552
+ * * type: dateTime
553
+ * * uniqueness: none
554
+ */
555
+ idcsLockedOn?: pulumi.Input<string>;
556
+ /**
557
+ * (Updatable) Operations that are locked on the resource.
558
+ *
559
+ * **SCIM++ Properties:**
560
+ * * idcsSearchable: false
561
+ * * idcsCsvAttributeNameMappings: [[columnHeaderName:Locked Operations, multiValueDelimiter:;]]
562
+ * * multiValued: true
563
+ * * mutability: readWrite
564
+ * * required: false
565
+ * * returned: default
566
+ * * type: string
567
+ * * uniqueness: none
568
+ */
569
+ idcsLockedOperations?: pulumi.Input<pulumi.Input<string>[]>;
570
+ /**
571
+ * (Updatable) Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
572
+ *
573
+ * **SCIM++ Properties:**
574
+ * * idcsSearchable: false
575
+ * * multiValued: true
576
+ * * mutability: readOnly
577
+ * * required: false
578
+ * * returned: request
579
+ * * type: string
580
+ * * uniqueness: none
581
+ */
582
+ idcsPreventedOperations?: pulumi.Input<pulumi.Input<string>[]>;
583
+ /**
584
+ * (Updatable) The Identity Proofing Provider.
585
+ *
586
+ * **SCIM++ Properties:**
587
+ * * idcsSearchable: true
588
+ * * multiValued: false
589
+ * * mutability: readWrite
590
+ * * idcsCanonicalValueSourceFilter: provider eq "$(provider)"
591
+ * * idcsCanonicalValueSourceResourceType: IdentityProofingProviderTemplate
592
+ * * caseExact: true
593
+ * * required: true
594
+ * * returned: always
595
+ * * type: string
596
+ * * uniqueness: none
597
+ */
598
+ identityProofingProviderProvider?: pulumi.Input<string>;
599
+ /**
600
+ * (Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
601
+ *
602
+ * **SCIM++ Properties:**
603
+ * * caseExact: false
604
+ * * idcsSearchable: true
605
+ * * multiValued: false
606
+ * * mutability: readOnly
607
+ * * required: false
608
+ * * returned: default
609
+ * * idcsCsvAttributeNameMappings: [[columnHeaderName:Created Date, mapsTo:meta.created]]
610
+ * * type: complex
611
+ */
612
+ metas?: pulumi.Input<pulumi.Input<inputs.Identity.DomainsIdentityProofingProviderMeta>[]>;
613
+ /**
614
+ * (Updatable) Name of the Identity Proofing Provider.
615
+ *
616
+ * **SCIM++ Properties:**
617
+ * * idcsSearchable: false
618
+ * * multiValued: false
619
+ * * mutability: readWrite
620
+ * * required: true
621
+ * * returned: always
622
+ * * type: string
623
+ * * uniqueness: global
624
+ */
625
+ name?: pulumi.Input<string>;
626
+ /**
627
+ * (Updatable) Unique Oracle Cloud Infrastructure identifier (OCID) for the SCIM Resource.
628
+ *
629
+ * **SCIM++ Properties:**
630
+ * * caseExact: true
631
+ * * idcsSearchable: true
632
+ * * multiValued: false
633
+ * * mutability: immutable
634
+ * * required: false
635
+ * * returned: default
636
+ * * type: string
637
+ * * uniqueness: global
638
+ */
639
+ ocid?: pulumi.Input<string>;
640
+ /**
641
+ * (Updatable) 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.
642
+ */
643
+ resourceTypeSchemaVersion?: pulumi.Input<string>;
644
+ /**
645
+ * (Updatable) Identity Proofing runtime custom data.
646
+ *
647
+ * **Added In:** 2505161800
648
+ *
649
+ * **SCIM++ Properties:**
650
+ * * idcsCompositeKey: [attrName]
651
+ * * multiValued: true
652
+ * * mutability: readWrite
653
+ * * required: false
654
+ * * returned: default
655
+ * * type: complex
656
+ */
657
+ runtimeDatas?: pulumi.Input<pulumi.Input<inputs.Identity.DomainsIdentityProofingProviderRuntimeData>[]>;
658
+ /**
659
+ * (Updatable) 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.
660
+ *
661
+ * **SCIM++ Properties:**
662
+ * * caseExact: false
663
+ * * idcsSearchable: false
664
+ * * multiValued: true
665
+ * * mutability: readWrite
666
+ * * required: true
667
+ * * returned: default
668
+ * * type: string
669
+ * * uniqueness: none
670
+ */
671
+ schemas?: pulumi.Input<pulumi.Input<string>[]>;
672
+ /**
673
+ * (Updatable) Status of the Identity Proofing Provider.
674
+ *
675
+ * **SCIM++ Properties:**
676
+ * * idcsSearchable: true
677
+ * * multiValued: false
678
+ * * caseExact: true
679
+ * * mutability: readWrite
680
+ * * required: false
681
+ * * returned: default
682
+ * * type: string
683
+ * * uniqueness: none
684
+ */
685
+ status?: pulumi.Input<string>;
686
+ /**
687
+ * (Updatable) Oracle Cloud Infrastructure Tenant Id (OCID) in which the resource lives.
688
+ *
689
+ * **SCIM++ Properties:**
690
+ * * caseExact: false
691
+ * * idcsSearchable: false
692
+ * * multiValued: false
693
+ * * mutability: readOnly
694
+ * * required: false
695
+ * * returned: default
696
+ * * type: string
697
+ * * uniqueness: none
698
+ *
699
+ *
700
+ * ** IMPORTANT **
701
+ * Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
702
+ */
703
+ tenancyOcid?: pulumi.Input<string>;
704
+ }
705
+ /**
706
+ * The set of arguments for constructing a DomainsIdentityProofingProvider resource.
707
+ */
708
+ export interface DomainsIdentityProofingProviderArgs {
709
+ /**
710
+ * (Updatable) 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.
711
+ */
712
+ attributeSets?: pulumi.Input<pulumi.Input<string>[]>;
713
+ /**
714
+ * (Updatable) 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.
715
+ */
716
+ attributes?: pulumi.Input<string>;
717
+ /**
718
+ * (Updatable) The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
719
+ */
720
+ authorization?: pulumi.Input<string>;
721
+ /**
722
+ * (Updatable) Configure the verification claims and IAM Domain user attribute mapping.
723
+ *
724
+ * **SCIM++ Properties:**
725
+ * * idcsSearchable: false
726
+ * * multiValued: true
727
+ * * mutability: immutable
728
+ * * required: true
729
+ * * returned: always
730
+ * * idcsCompositeKey: [verifiableClaim]
731
+ * * type: complex
732
+ * * uniqueness: server
733
+ */
734
+ claimMappings: pulumi.Input<pulumi.Input<inputs.Identity.DomainsIdentityProofingProviderClaimMapping>[]>;
735
+ /**
736
+ * (Updatable) Configure the verification provider.
737
+ *
738
+ * **SCIM++ Properties:**
739
+ * * idcsSearchable: false
740
+ * * multiValued: true
741
+ * * mutability: immutable
742
+ * * required: true
743
+ * * returned: always
744
+ * * idcsCompositeKey: [name]
745
+ * * type: complex
746
+ * * uniqueness: server
747
+ */
748
+ configurations: pulumi.Input<pulumi.Input<inputs.Identity.DomainsIdentityProofingProviderConfiguration>[]>;
749
+ /**
750
+ * (Updatable) Description field to add comments and additional information about the Identity Proofing Provider.
751
+ *
752
+ * **SCIM++ Properties:**
753
+ * * idcsSearchable: false
754
+ * * multiValued: false
755
+ * * mutability: readWrite
756
+ * * required: false
757
+ * * returned: default
758
+ * * type: string
759
+ * * uniqueness: none
760
+ */
761
+ description?: pulumi.Input<string>;
762
+ /**
763
+ * The basic endpoint for the identity domain
764
+ */
765
+ idcsEndpoint: pulumi.Input<string>;
766
+ /**
767
+ * (Updatable) The Identity Proofing Provider.
768
+ *
769
+ * **SCIM++ Properties:**
770
+ * * idcsSearchable: true
771
+ * * multiValued: false
772
+ * * mutability: readWrite
773
+ * * idcsCanonicalValueSourceFilter: provider eq "$(provider)"
774
+ * * idcsCanonicalValueSourceResourceType: IdentityProofingProviderTemplate
775
+ * * caseExact: true
776
+ * * required: true
777
+ * * returned: always
778
+ * * type: string
779
+ * * uniqueness: none
780
+ */
781
+ identityProofingProviderProvider: pulumi.Input<string>;
782
+ /**
783
+ * (Updatable) Name of the Identity Proofing Provider.
784
+ *
785
+ * **SCIM++ Properties:**
786
+ * * idcsSearchable: false
787
+ * * multiValued: false
788
+ * * mutability: readWrite
789
+ * * required: true
790
+ * * returned: always
791
+ * * type: string
792
+ * * uniqueness: global
793
+ */
794
+ name?: pulumi.Input<string>;
795
+ /**
796
+ * (Updatable) Unique Oracle Cloud Infrastructure identifier (OCID) for the SCIM Resource.
797
+ *
798
+ * **SCIM++ Properties:**
799
+ * * caseExact: true
800
+ * * idcsSearchable: true
801
+ * * multiValued: false
802
+ * * mutability: immutable
803
+ * * required: false
804
+ * * returned: default
805
+ * * type: string
806
+ * * uniqueness: global
807
+ */
808
+ ocid?: pulumi.Input<string>;
809
+ /**
810
+ * (Updatable) 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.
811
+ */
812
+ resourceTypeSchemaVersion?: pulumi.Input<string>;
813
+ /**
814
+ * (Updatable) Identity Proofing runtime custom data.
815
+ *
816
+ * **Added In:** 2505161800
817
+ *
818
+ * **SCIM++ Properties:**
819
+ * * idcsCompositeKey: [attrName]
820
+ * * multiValued: true
821
+ * * mutability: readWrite
822
+ * * required: false
823
+ * * returned: default
824
+ * * type: complex
825
+ */
826
+ runtimeDatas?: pulumi.Input<pulumi.Input<inputs.Identity.DomainsIdentityProofingProviderRuntimeData>[]>;
827
+ /**
828
+ * (Updatable) 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.
829
+ *
830
+ * **SCIM++ Properties:**
831
+ * * caseExact: false
832
+ * * idcsSearchable: false
833
+ * * multiValued: true
834
+ * * mutability: readWrite
835
+ * * required: true
836
+ * * returned: default
837
+ * * type: string
838
+ * * uniqueness: none
839
+ */
840
+ schemas: pulumi.Input<pulumi.Input<string>[]>;
841
+ /**
842
+ * (Updatable) Status of the Identity Proofing Provider.
843
+ *
844
+ * **SCIM++ Properties:**
845
+ * * idcsSearchable: true
846
+ * * multiValued: false
847
+ * * caseExact: true
848
+ * * mutability: readWrite
849
+ * * required: false
850
+ * * returned: default
851
+ * * type: string
852
+ * * uniqueness: none
853
+ */
854
+ status?: pulumi.Input<string>;
855
+ }