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
@@ -0,0 +1,310 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ import copy
6
+ import warnings
7
+ import pulumi
8
+ import pulumi.runtime
9
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
10
+ from .. import _utilities
11
+ from . import outputs
12
+
13
+ __all__ = [
14
+ 'GetDomainsIdentityPropagationTrustsResult',
15
+ 'AwaitableGetDomainsIdentityPropagationTrustsResult',
16
+ 'get_domains_identity_propagation_trusts',
17
+ 'get_domains_identity_propagation_trusts_output',
18
+ ]
19
+
20
+ @pulumi.output_type
21
+ class GetDomainsIdentityPropagationTrustsResult:
22
+ """
23
+ A collection of values returned by getDomainsIdentityPropagationTrusts.
24
+ """
25
+ def __init__(__self__, attribute_sets=None, attributes=None, authorization=None, compartment_id=None, id=None, idcs_endpoint=None, identity_propagation_trust_count=None, identity_propagation_trust_filter=None, identity_propagation_trusts=None, items_per_page=None, resource_type_schema_version=None, schemas=None, sort_by=None, sort_order=None, start_index=None, total_results=None):
26
+ if attribute_sets and not isinstance(attribute_sets, list):
27
+ raise TypeError("Expected argument 'attribute_sets' to be a list")
28
+ pulumi.set(__self__, "attribute_sets", attribute_sets)
29
+ if attributes and not isinstance(attributes, str):
30
+ raise TypeError("Expected argument 'attributes' to be a str")
31
+ pulumi.set(__self__, "attributes", attributes)
32
+ if authorization and not isinstance(authorization, str):
33
+ raise TypeError("Expected argument 'authorization' to be a str")
34
+ pulumi.set(__self__, "authorization", authorization)
35
+ if compartment_id and not isinstance(compartment_id, str):
36
+ raise TypeError("Expected argument 'compartment_id' to be a str")
37
+ pulumi.set(__self__, "compartment_id", compartment_id)
38
+ if id and not isinstance(id, str):
39
+ raise TypeError("Expected argument 'id' to be a str")
40
+ pulumi.set(__self__, "id", id)
41
+ if idcs_endpoint and not isinstance(idcs_endpoint, str):
42
+ raise TypeError("Expected argument 'idcs_endpoint' to be a str")
43
+ pulumi.set(__self__, "idcs_endpoint", idcs_endpoint)
44
+ if identity_propagation_trust_count and not isinstance(identity_propagation_trust_count, int):
45
+ raise TypeError("Expected argument 'identity_propagation_trust_count' to be a int")
46
+ pulumi.set(__self__, "identity_propagation_trust_count", identity_propagation_trust_count)
47
+ if identity_propagation_trust_filter and not isinstance(identity_propagation_trust_filter, str):
48
+ raise TypeError("Expected argument 'identity_propagation_trust_filter' to be a str")
49
+ pulumi.set(__self__, "identity_propagation_trust_filter", identity_propagation_trust_filter)
50
+ if identity_propagation_trusts and not isinstance(identity_propagation_trusts, list):
51
+ raise TypeError("Expected argument 'identity_propagation_trusts' to be a list")
52
+ pulumi.set(__self__, "identity_propagation_trusts", identity_propagation_trusts)
53
+ if items_per_page and not isinstance(items_per_page, int):
54
+ raise TypeError("Expected argument 'items_per_page' to be a int")
55
+ pulumi.set(__self__, "items_per_page", items_per_page)
56
+ if resource_type_schema_version and not isinstance(resource_type_schema_version, str):
57
+ raise TypeError("Expected argument 'resource_type_schema_version' to be a str")
58
+ pulumi.set(__self__, "resource_type_schema_version", resource_type_schema_version)
59
+ if schemas and not isinstance(schemas, list):
60
+ raise TypeError("Expected argument 'schemas' to be a list")
61
+ pulumi.set(__self__, "schemas", schemas)
62
+ if sort_by and not isinstance(sort_by, str):
63
+ raise TypeError("Expected argument 'sort_by' to be a str")
64
+ pulumi.set(__self__, "sort_by", sort_by)
65
+ if sort_order and not isinstance(sort_order, str):
66
+ raise TypeError("Expected argument 'sort_order' to be a str")
67
+ pulumi.set(__self__, "sort_order", sort_order)
68
+ if start_index and not isinstance(start_index, int):
69
+ raise TypeError("Expected argument 'start_index' to be a int")
70
+ pulumi.set(__self__, "start_index", start_index)
71
+ if total_results and not isinstance(total_results, int):
72
+ raise TypeError("Expected argument 'total_results' to be a int")
73
+ pulumi.set(__self__, "total_results", total_results)
74
+
75
+ @property
76
+ @pulumi.getter(name="attributeSets")
77
+ def attribute_sets(self) -> Optional[Sequence[str]]:
78
+ return pulumi.get(self, "attribute_sets")
79
+
80
+ @property
81
+ @pulumi.getter
82
+ def attributes(self) -> Optional[str]:
83
+ return pulumi.get(self, "attributes")
84
+
85
+ @property
86
+ @pulumi.getter
87
+ def authorization(self) -> Optional[str]:
88
+ return pulumi.get(self, "authorization")
89
+
90
+ @property
91
+ @pulumi.getter(name="compartmentId")
92
+ def compartment_id(self) -> Optional[str]:
93
+ return pulumi.get(self, "compartment_id")
94
+
95
+ @property
96
+ @pulumi.getter
97
+ def id(self) -> str:
98
+ """
99
+ The provider-assigned unique ID for this managed resource.
100
+ """
101
+ return pulumi.get(self, "id")
102
+
103
+ @property
104
+ @pulumi.getter(name="idcsEndpoint")
105
+ def idcs_endpoint(self) -> str:
106
+ return pulumi.get(self, "idcs_endpoint")
107
+
108
+ @property
109
+ @pulumi.getter(name="identityPropagationTrustCount")
110
+ def identity_propagation_trust_count(self) -> Optional[int]:
111
+ return pulumi.get(self, "identity_propagation_trust_count")
112
+
113
+ @property
114
+ @pulumi.getter(name="identityPropagationTrustFilter")
115
+ def identity_propagation_trust_filter(self) -> Optional[str]:
116
+ return pulumi.get(self, "identity_propagation_trust_filter")
117
+
118
+ @property
119
+ @pulumi.getter(name="identityPropagationTrusts")
120
+ def identity_propagation_trusts(self) -> Sequence['outputs.GetDomainsIdentityPropagationTrustsIdentityPropagationTrustResult']:
121
+ """
122
+ The list of identity_propagation_trusts.
123
+ """
124
+ return pulumi.get(self, "identity_propagation_trusts")
125
+
126
+ @property
127
+ @pulumi.getter(name="itemsPerPage")
128
+ def items_per_page(self) -> int:
129
+ return pulumi.get(self, "items_per_page")
130
+
131
+ @property
132
+ @pulumi.getter(name="resourceTypeSchemaVersion")
133
+ def resource_type_schema_version(self) -> Optional[str]:
134
+ return pulumi.get(self, "resource_type_schema_version")
135
+
136
+ @property
137
+ @pulumi.getter
138
+ def schemas(self) -> Sequence[str]:
139
+ """
140
+ 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.
141
+ """
142
+ return pulumi.get(self, "schemas")
143
+
144
+ @property
145
+ @pulumi.getter(name="sortBy")
146
+ def sort_by(self) -> Optional[str]:
147
+ return pulumi.get(self, "sort_by")
148
+
149
+ @property
150
+ @pulumi.getter(name="sortOrder")
151
+ def sort_order(self) -> Optional[str]:
152
+ return pulumi.get(self, "sort_order")
153
+
154
+ @property
155
+ @pulumi.getter(name="startIndex")
156
+ def start_index(self) -> Optional[int]:
157
+ return pulumi.get(self, "start_index")
158
+
159
+ @property
160
+ @pulumi.getter(name="totalResults")
161
+ def total_results(self) -> int:
162
+ return pulumi.get(self, "total_results")
163
+
164
+
165
+ class AwaitableGetDomainsIdentityPropagationTrustsResult(GetDomainsIdentityPropagationTrustsResult):
166
+ # pylint: disable=using-constant-test
167
+ def __await__(self):
168
+ if False:
169
+ yield self
170
+ return GetDomainsIdentityPropagationTrustsResult(
171
+ attribute_sets=self.attribute_sets,
172
+ attributes=self.attributes,
173
+ authorization=self.authorization,
174
+ compartment_id=self.compartment_id,
175
+ id=self.id,
176
+ idcs_endpoint=self.idcs_endpoint,
177
+ identity_propagation_trust_count=self.identity_propagation_trust_count,
178
+ identity_propagation_trust_filter=self.identity_propagation_trust_filter,
179
+ identity_propagation_trusts=self.identity_propagation_trusts,
180
+ items_per_page=self.items_per_page,
181
+ resource_type_schema_version=self.resource_type_schema_version,
182
+ schemas=self.schemas,
183
+ sort_by=self.sort_by,
184
+ sort_order=self.sort_order,
185
+ start_index=self.start_index,
186
+ total_results=self.total_results)
187
+
188
+
189
+ def get_domains_identity_propagation_trusts(attribute_sets: Optional[Sequence[str]] = None,
190
+ attributes: Optional[str] = None,
191
+ authorization: Optional[str] = None,
192
+ compartment_id: Optional[str] = None,
193
+ idcs_endpoint: Optional[str] = None,
194
+ identity_propagation_trust_count: Optional[int] = None,
195
+ identity_propagation_trust_filter: Optional[str] = None,
196
+ resource_type_schema_version: Optional[str] = None,
197
+ sort_by: Optional[str] = None,
198
+ sort_order: Optional[str] = None,
199
+ start_index: Optional[int] = None,
200
+ opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetDomainsIdentityPropagationTrustsResult:
201
+ """
202
+ This data source provides the list of Identity Propagation Trusts in Oracle Cloud Infrastructure Identity Domains service.
203
+
204
+ List the Identity Propagation Trust configurations.
205
+
206
+ ## Example Usage
207
+
208
+ ```python
209
+ import pulumi
210
+ import pulumi_oci as oci
211
+
212
+ test_identity_propagation_trusts = oci.Identity.get_domains_identity_propagation_trusts(idcs_endpoint=data["oci_identity_domain"]["test_domain"]["url"],
213
+ identity_propagation_trust_count=var["identity_propagation_trust_identity_propagation_trust_count"],
214
+ identity_propagation_trust_filter=var["identity_propagation_trust_identity_propagation_trust_filter"],
215
+ attribute_sets=["all"],
216
+ attributes="",
217
+ authorization=var["identity_propagation_trust_authorization"],
218
+ resource_type_schema_version=var["identity_propagation_trust_resource_type_schema_version"],
219
+ start_index=var["identity_propagation_trust_start_index"])
220
+ ```
221
+
222
+
223
+ :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.
224
+ :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.
225
+ :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.
226
+ :param str idcs_endpoint: The basic endpoint for the identity domain
227
+ :param int identity_propagation_trust_count: OPTIONAL. An integer that indicates the desired maximum number of query results per page. 1000 is the largest value that you can use. See the Pagination section of the System for Cross-Domain Identity Management Protocol specification for more information. (Section 3.4.2.4).
228
+ :param str identity_propagation_trust_filter: OPTIONAL. The filter string that is used to request a subset of resources. The filter string MUST be a valid filter expression. See the Filtering section of the SCIM specification for more information (Section 3.4.2.2). The string should contain at least one condition that each item must match in order to be returned in the search results. Each condition specifies an attribute, an operator, and a value. Conditions within a filter can be connected by logical operators (such as AND and OR). Sets of conditions can be grouped together using parentheses.
229
+ :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.
230
+ :param int start_index: OPTIONAL. An integer that indicates the 1-based index of the first query result. See the Pagination section of the SCIM specification for more information. (Section 3.4.2.4). The number of results pages to return. The first page is 1. Specify 2 to access the second page of results, and so on.
231
+ """
232
+ __args__ = dict()
233
+ __args__['attributeSets'] = attribute_sets
234
+ __args__['attributes'] = attributes
235
+ __args__['authorization'] = authorization
236
+ __args__['compartmentId'] = compartment_id
237
+ __args__['idcsEndpoint'] = idcs_endpoint
238
+ __args__['identityPropagationTrustCount'] = identity_propagation_trust_count
239
+ __args__['identityPropagationTrustFilter'] = identity_propagation_trust_filter
240
+ __args__['resourceTypeSchemaVersion'] = resource_type_schema_version
241
+ __args__['sortBy'] = sort_by
242
+ __args__['sortOrder'] = sort_order
243
+ __args__['startIndex'] = start_index
244
+ opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
245
+ __ret__ = pulumi.runtime.invoke('oci:Identity/getDomainsIdentityPropagationTrusts:getDomainsIdentityPropagationTrusts', __args__, opts=opts, typ=GetDomainsIdentityPropagationTrustsResult).value
246
+
247
+ return AwaitableGetDomainsIdentityPropagationTrustsResult(
248
+ attribute_sets=pulumi.get(__ret__, 'attribute_sets'),
249
+ attributes=pulumi.get(__ret__, 'attributes'),
250
+ authorization=pulumi.get(__ret__, 'authorization'),
251
+ compartment_id=pulumi.get(__ret__, 'compartment_id'),
252
+ id=pulumi.get(__ret__, 'id'),
253
+ idcs_endpoint=pulumi.get(__ret__, 'idcs_endpoint'),
254
+ identity_propagation_trust_count=pulumi.get(__ret__, 'identity_propagation_trust_count'),
255
+ identity_propagation_trust_filter=pulumi.get(__ret__, 'identity_propagation_trust_filter'),
256
+ identity_propagation_trusts=pulumi.get(__ret__, 'identity_propagation_trusts'),
257
+ items_per_page=pulumi.get(__ret__, 'items_per_page'),
258
+ resource_type_schema_version=pulumi.get(__ret__, 'resource_type_schema_version'),
259
+ schemas=pulumi.get(__ret__, 'schemas'),
260
+ sort_by=pulumi.get(__ret__, 'sort_by'),
261
+ sort_order=pulumi.get(__ret__, 'sort_order'),
262
+ start_index=pulumi.get(__ret__, 'start_index'),
263
+ total_results=pulumi.get(__ret__, 'total_results'))
264
+
265
+
266
+ @_utilities.lift_output_func(get_domains_identity_propagation_trusts)
267
+ def get_domains_identity_propagation_trusts_output(attribute_sets: Optional[pulumi.Input[Optional[Sequence[str]]]] = None,
268
+ attributes: Optional[pulumi.Input[Optional[str]]] = None,
269
+ authorization: Optional[pulumi.Input[Optional[str]]] = None,
270
+ compartment_id: Optional[pulumi.Input[Optional[str]]] = None,
271
+ idcs_endpoint: Optional[pulumi.Input[str]] = None,
272
+ identity_propagation_trust_count: Optional[pulumi.Input[Optional[int]]] = None,
273
+ identity_propagation_trust_filter: Optional[pulumi.Input[Optional[str]]] = None,
274
+ resource_type_schema_version: Optional[pulumi.Input[Optional[str]]] = None,
275
+ sort_by: Optional[pulumi.Input[Optional[str]]] = None,
276
+ sort_order: Optional[pulumi.Input[Optional[str]]] = None,
277
+ start_index: Optional[pulumi.Input[Optional[int]]] = None,
278
+ opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetDomainsIdentityPropagationTrustsResult]:
279
+ """
280
+ This data source provides the list of Identity Propagation Trusts in Oracle Cloud Infrastructure Identity Domains service.
281
+
282
+ List the Identity Propagation Trust configurations.
283
+
284
+ ## Example Usage
285
+
286
+ ```python
287
+ import pulumi
288
+ import pulumi_oci as oci
289
+
290
+ test_identity_propagation_trusts = oci.Identity.get_domains_identity_propagation_trusts(idcs_endpoint=data["oci_identity_domain"]["test_domain"]["url"],
291
+ identity_propagation_trust_count=var["identity_propagation_trust_identity_propagation_trust_count"],
292
+ identity_propagation_trust_filter=var["identity_propagation_trust_identity_propagation_trust_filter"],
293
+ attribute_sets=["all"],
294
+ attributes="",
295
+ authorization=var["identity_propagation_trust_authorization"],
296
+ resource_type_schema_version=var["identity_propagation_trust_resource_type_schema_version"],
297
+ start_index=var["identity_propagation_trust_start_index"])
298
+ ```
299
+
300
+
301
+ :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.
302
+ :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.
303
+ :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.
304
+ :param str idcs_endpoint: The basic endpoint for the identity domain
305
+ :param int identity_propagation_trust_count: OPTIONAL. An integer that indicates the desired maximum number of query results per page. 1000 is the largest value that you can use. See the Pagination section of the System for Cross-Domain Identity Management Protocol specification for more information. (Section 3.4.2.4).
306
+ :param str identity_propagation_trust_filter: OPTIONAL. The filter string that is used to request a subset of resources. The filter string MUST be a valid filter expression. See the Filtering section of the SCIM specification for more information (Section 3.4.2.2). The string should contain at least one condition that each item must match in order to be returned in the search results. Each condition specifies an attribute, an operator, and a value. Conditions within a filter can be connected by logical operators (such as AND and OR). Sets of conditions can be grouped together using parentheses.
307
+ :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.
308
+ :param int start_index: OPTIONAL. An integer that indicates the 1-based index of the first query result. See the Pagination section of the SCIM specification for more information. (Section 3.4.2.4). The number of results pages to return. The first page is 1. Specify 2 to access the second page of results, and so on.
309
+ """
310
+ ...