pulumi-oci 2.10.0a1726208124__py3-none-any.whl → 2.11.0__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 (55) hide show
  1. pulumi_oci/__init__.py +62 -0
  2. pulumi_oci/bigdataservice/__init__.py +3 -0
  3. pulumi_oci/bigdataservice/_inputs.py +66 -0
  4. pulumi_oci/bigdataservice/bds_instance_os_patch_action.py +136 -2
  5. pulumi_oci/bigdataservice/bds_instance_resource_principal_configuration.py +524 -0
  6. pulumi_oci/bigdataservice/get_bds_instance_resource_principal_configuration.py +236 -0
  7. pulumi_oci/bigdataservice/get_bds_instance_resource_principal_configurations.py +176 -0
  8. pulumi_oci/bigdataservice/outputs.py +175 -0
  9. pulumi_oci/capacitymanagement/__init__.py +8 -0
  10. pulumi_oci/capacitymanagement/_inputs.py +465 -3
  11. pulumi_oci/capacitymanagement/get_internal_namespace_occ_overviews.py +221 -0
  12. pulumi_oci/capacitymanagement/get_internal_occ_availability_catalogs.py +7 -7
  13. pulumi_oci/capacitymanagement/get_internal_occ_handover_resource_block_details.py +150 -0
  14. pulumi_oci/capacitymanagement/get_internal_occ_handover_resource_blocks.py +247 -0
  15. pulumi_oci/capacitymanagement/get_namespace_occ_overviews.py +204 -0
  16. pulumi_oci/capacitymanagement/get_occ_availability_catalog.py +1 -1
  17. pulumi_oci/capacitymanagement/get_occ_capacity_request.py +15 -2
  18. pulumi_oci/capacitymanagement/get_occ_capacity_requests.py +25 -5
  19. pulumi_oci/capacitymanagement/get_occ_customer_group.py +1 -1
  20. pulumi_oci/capacitymanagement/get_occ_handover_resource_block_details.py +150 -0
  21. pulumi_oci/capacitymanagement/get_occ_handover_resource_blocks.py +227 -0
  22. pulumi_oci/capacitymanagement/occ_availability_catalog.py +4 -4
  23. pulumi_oci/capacitymanagement/occ_capacity_request.py +78 -32
  24. pulumi_oci/capacitymanagement/occ_customer_group.py +690 -0
  25. pulumi_oci/capacitymanagement/occ_customer_group_occ_customer.py +412 -0
  26. pulumi_oci/capacitymanagement/outputs.py +1668 -166
  27. pulumi_oci/containerengine/__init__.py +1 -0
  28. pulumi_oci/containerengine/get_cluster.py +327 -0
  29. pulumi_oci/containerengine/outputs.py +492 -0
  30. pulumi_oci/fleetsoftwareupdate/__init__.py +15 -0
  31. pulumi_oci/fleetsoftwareupdate/_inputs.py +717 -0
  32. pulumi_oci/fleetsoftwareupdate/fsu_collection.py +804 -0
  33. pulumi_oci/fleetsoftwareupdate/fsu_cycle.py +1231 -0
  34. pulumi_oci/fleetsoftwareupdate/get_fsu_collection.py +301 -0
  35. pulumi_oci/fleetsoftwareupdate/get_fsu_collections.py +196 -0
  36. pulumi_oci/fleetsoftwareupdate/get_fsu_cycle.py +431 -0
  37. pulumi_oci/fleetsoftwareupdate/get_fsu_cycles.py +233 -0
  38. pulumi_oci/fleetsoftwareupdate/outputs.py +2129 -0
  39. pulumi_oci/generativeai/dedicated_ai_cluster.py +7 -0
  40. pulumi_oci/generativeai/get_model.py +3 -0
  41. pulumi_oci/generativeai/outputs.py +4 -0
  42. pulumi_oci/globallydistributeddatabase/__init__.py +15 -0
  43. pulumi_oci/globallydistributeddatabase/_inputs.py +1003 -0
  44. pulumi_oci/globallydistributeddatabase/get_private_endpoint.py +300 -0
  45. pulumi_oci/globallydistributeddatabase/get_private_endpoints.py +176 -0
  46. pulumi_oci/globallydistributeddatabase/get_sharded_database.py +610 -0
  47. pulumi_oci/globallydistributeddatabase/get_sharded_databases.py +176 -0
  48. pulumi_oci/globallydistributeddatabase/outputs.py +2058 -0
  49. pulumi_oci/globallydistributeddatabase/private_endpoint.py +742 -0
  50. pulumi_oci/globallydistributeddatabase/sharded_database.py +1816 -0
  51. pulumi_oci/pulumi-plugin.json +1 -1
  52. {pulumi_oci-2.10.0a1726208124.dist-info → pulumi_oci-2.11.0.dist-info}/METADATA +1 -1
  53. {pulumi_oci-2.10.0a1726208124.dist-info → pulumi_oci-2.11.0.dist-info}/RECORD +55 -25
  54. {pulumi_oci-2.10.0a1726208124.dist-info → pulumi_oci-2.11.0.dist-info}/WHEEL +1 -1
  55. {pulumi_oci-2.10.0a1726208124.dist-info → pulumi_oci-2.11.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,412 @@
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
+
12
+ __all__ = ['OccCustomerGroupOccCustomerArgs', 'OccCustomerGroupOccCustomer']
13
+
14
+ @pulumi.input_type
15
+ class OccCustomerGroupOccCustomerArgs:
16
+ def __init__(__self__, *,
17
+ display_name: pulumi.Input[str],
18
+ occ_customer_group_id: pulumi.Input[str],
19
+ tenancy_id: pulumi.Input[str],
20
+ description: Optional[pulumi.Input[str]] = None,
21
+ status: Optional[pulumi.Input[str]] = None):
22
+ """
23
+ The set of arguments for constructing a OccCustomerGroupOccCustomer resource.
24
+ :param pulumi.Input[str] display_name: (Updatable) The display name for the customer.
25
+ :param pulumi.Input[str] occ_customer_group_id: The OCID of the customer group.
26
+ :param pulumi.Input[str] tenancy_id: The OCID of the tenancy belonging to the customer.
27
+
28
+
29
+ ** IMPORTANT **
30
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
31
+ :param pulumi.Input[str] description: (Updatable) The description about the customer group.
32
+ :param pulumi.Input[str] status: (Updatable) To determine whether the customer is enabled/disabled.
33
+ """
34
+ pulumi.set(__self__, "display_name", display_name)
35
+ pulumi.set(__self__, "occ_customer_group_id", occ_customer_group_id)
36
+ pulumi.set(__self__, "tenancy_id", tenancy_id)
37
+ if description is not None:
38
+ pulumi.set(__self__, "description", description)
39
+ if status is not None:
40
+ pulumi.set(__self__, "status", status)
41
+
42
+ @property
43
+ @pulumi.getter(name="displayName")
44
+ def display_name(self) -> pulumi.Input[str]:
45
+ """
46
+ (Updatable) The display name for the customer.
47
+ """
48
+ return pulumi.get(self, "display_name")
49
+
50
+ @display_name.setter
51
+ def display_name(self, value: pulumi.Input[str]):
52
+ pulumi.set(self, "display_name", value)
53
+
54
+ @property
55
+ @pulumi.getter(name="occCustomerGroupId")
56
+ def occ_customer_group_id(self) -> pulumi.Input[str]:
57
+ """
58
+ The OCID of the customer group.
59
+ """
60
+ return pulumi.get(self, "occ_customer_group_id")
61
+
62
+ @occ_customer_group_id.setter
63
+ def occ_customer_group_id(self, value: pulumi.Input[str]):
64
+ pulumi.set(self, "occ_customer_group_id", value)
65
+
66
+ @property
67
+ @pulumi.getter(name="tenancyId")
68
+ def tenancy_id(self) -> pulumi.Input[str]:
69
+ """
70
+ The OCID of the tenancy belonging to the customer.
71
+
72
+
73
+ ** IMPORTANT **
74
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
75
+ """
76
+ return pulumi.get(self, "tenancy_id")
77
+
78
+ @tenancy_id.setter
79
+ def tenancy_id(self, value: pulumi.Input[str]):
80
+ pulumi.set(self, "tenancy_id", value)
81
+
82
+ @property
83
+ @pulumi.getter
84
+ def description(self) -> Optional[pulumi.Input[str]]:
85
+ """
86
+ (Updatable) The description about the customer group.
87
+ """
88
+ return pulumi.get(self, "description")
89
+
90
+ @description.setter
91
+ def description(self, value: Optional[pulumi.Input[str]]):
92
+ pulumi.set(self, "description", value)
93
+
94
+ @property
95
+ @pulumi.getter
96
+ def status(self) -> Optional[pulumi.Input[str]]:
97
+ """
98
+ (Updatable) To determine whether the customer is enabled/disabled.
99
+ """
100
+ return pulumi.get(self, "status")
101
+
102
+ @status.setter
103
+ def status(self, value: Optional[pulumi.Input[str]]):
104
+ pulumi.set(self, "status", value)
105
+
106
+
107
+ @pulumi.input_type
108
+ class _OccCustomerGroupOccCustomerState:
109
+ def __init__(__self__, *,
110
+ description: Optional[pulumi.Input[str]] = None,
111
+ display_name: Optional[pulumi.Input[str]] = None,
112
+ occ_customer_group_id: Optional[pulumi.Input[str]] = None,
113
+ status: Optional[pulumi.Input[str]] = None,
114
+ tenancy_id: Optional[pulumi.Input[str]] = None):
115
+ """
116
+ Input properties used for looking up and filtering OccCustomerGroupOccCustomer resources.
117
+ :param pulumi.Input[str] description: (Updatable) The description about the customer group.
118
+ :param pulumi.Input[str] display_name: (Updatable) The display name for the customer.
119
+ :param pulumi.Input[str] occ_customer_group_id: The OCID of the customer group.
120
+ :param pulumi.Input[str] status: (Updatable) To determine whether the customer is enabled/disabled.
121
+ :param pulumi.Input[str] tenancy_id: The OCID of the tenancy belonging to the customer.
122
+
123
+
124
+ ** IMPORTANT **
125
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
126
+ """
127
+ if description is not None:
128
+ pulumi.set(__self__, "description", description)
129
+ if display_name is not None:
130
+ pulumi.set(__self__, "display_name", display_name)
131
+ if occ_customer_group_id is not None:
132
+ pulumi.set(__self__, "occ_customer_group_id", occ_customer_group_id)
133
+ if status is not None:
134
+ pulumi.set(__self__, "status", status)
135
+ if tenancy_id is not None:
136
+ pulumi.set(__self__, "tenancy_id", tenancy_id)
137
+
138
+ @property
139
+ @pulumi.getter
140
+ def description(self) -> Optional[pulumi.Input[str]]:
141
+ """
142
+ (Updatable) The description about the customer group.
143
+ """
144
+ return pulumi.get(self, "description")
145
+
146
+ @description.setter
147
+ def description(self, value: Optional[pulumi.Input[str]]):
148
+ pulumi.set(self, "description", value)
149
+
150
+ @property
151
+ @pulumi.getter(name="displayName")
152
+ def display_name(self) -> Optional[pulumi.Input[str]]:
153
+ """
154
+ (Updatable) The display name for the customer.
155
+ """
156
+ return pulumi.get(self, "display_name")
157
+
158
+ @display_name.setter
159
+ def display_name(self, value: Optional[pulumi.Input[str]]):
160
+ pulumi.set(self, "display_name", value)
161
+
162
+ @property
163
+ @pulumi.getter(name="occCustomerGroupId")
164
+ def occ_customer_group_id(self) -> Optional[pulumi.Input[str]]:
165
+ """
166
+ The OCID of the customer group.
167
+ """
168
+ return pulumi.get(self, "occ_customer_group_id")
169
+
170
+ @occ_customer_group_id.setter
171
+ def occ_customer_group_id(self, value: Optional[pulumi.Input[str]]):
172
+ pulumi.set(self, "occ_customer_group_id", value)
173
+
174
+ @property
175
+ @pulumi.getter
176
+ def status(self) -> Optional[pulumi.Input[str]]:
177
+ """
178
+ (Updatable) To determine whether the customer is enabled/disabled.
179
+ """
180
+ return pulumi.get(self, "status")
181
+
182
+ @status.setter
183
+ def status(self, value: Optional[pulumi.Input[str]]):
184
+ pulumi.set(self, "status", value)
185
+
186
+ @property
187
+ @pulumi.getter(name="tenancyId")
188
+ def tenancy_id(self) -> Optional[pulumi.Input[str]]:
189
+ """
190
+ The OCID of the tenancy belonging to the customer.
191
+
192
+
193
+ ** IMPORTANT **
194
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
195
+ """
196
+ return pulumi.get(self, "tenancy_id")
197
+
198
+ @tenancy_id.setter
199
+ def tenancy_id(self, value: Optional[pulumi.Input[str]]):
200
+ pulumi.set(self, "tenancy_id", value)
201
+
202
+
203
+ class OccCustomerGroupOccCustomer(pulumi.CustomResource):
204
+ @overload
205
+ def __init__(__self__,
206
+ resource_name: str,
207
+ opts: Optional[pulumi.ResourceOptions] = None,
208
+ description: Optional[pulumi.Input[str]] = None,
209
+ display_name: Optional[pulumi.Input[str]] = None,
210
+ occ_customer_group_id: Optional[pulumi.Input[str]] = None,
211
+ status: Optional[pulumi.Input[str]] = None,
212
+ tenancy_id: Optional[pulumi.Input[str]] = None,
213
+ __props__=None):
214
+ """
215
+ This resource provides the Occ Customer Group Occ Customer resource in Oracle Cloud Infrastructure Capacity Management service.
216
+
217
+ Create customer.
218
+
219
+ ## Example Usage
220
+
221
+ ```python
222
+ import pulumi
223
+ import pulumi_oci as oci
224
+
225
+ test_occ_customer_group_occ_customer = oci.capacity_management.OccCustomerGroupOccCustomer("test_occ_customer_group_occ_customer",
226
+ display_name=occ_customer_group_occ_customer_display_name,
227
+ occ_customer_group_id=test_occ_customer_group["id"],
228
+ tenancy_id=test_tenancy["id"],
229
+ description=occ_customer_group_occ_customer_description,
230
+ status=occ_customer_group_occ_customer_status)
231
+ ```
232
+
233
+ ## Import
234
+
235
+ OccCustomerGroupOccCustomers can be imported using the `id`, e.g.
236
+
237
+ ```sh
238
+ $ pulumi import oci:CapacityManagement/occCustomerGroupOccCustomer:OccCustomerGroupOccCustomer test_occ_customer_group_occ_customer "id"
239
+ ```
240
+
241
+ :param str resource_name: The name of the resource.
242
+ :param pulumi.ResourceOptions opts: Options for the resource.
243
+ :param pulumi.Input[str] description: (Updatable) The description about the customer group.
244
+ :param pulumi.Input[str] display_name: (Updatable) The display name for the customer.
245
+ :param pulumi.Input[str] occ_customer_group_id: The OCID of the customer group.
246
+ :param pulumi.Input[str] status: (Updatable) To determine whether the customer is enabled/disabled.
247
+ :param pulumi.Input[str] tenancy_id: The OCID of the tenancy belonging to the customer.
248
+
249
+
250
+ ** IMPORTANT **
251
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
252
+ """
253
+ ...
254
+ @overload
255
+ def __init__(__self__,
256
+ resource_name: str,
257
+ args: OccCustomerGroupOccCustomerArgs,
258
+ opts: Optional[pulumi.ResourceOptions] = None):
259
+ """
260
+ This resource provides the Occ Customer Group Occ Customer resource in Oracle Cloud Infrastructure Capacity Management service.
261
+
262
+ Create customer.
263
+
264
+ ## Example Usage
265
+
266
+ ```python
267
+ import pulumi
268
+ import pulumi_oci as oci
269
+
270
+ test_occ_customer_group_occ_customer = oci.capacity_management.OccCustomerGroupOccCustomer("test_occ_customer_group_occ_customer",
271
+ display_name=occ_customer_group_occ_customer_display_name,
272
+ occ_customer_group_id=test_occ_customer_group["id"],
273
+ tenancy_id=test_tenancy["id"],
274
+ description=occ_customer_group_occ_customer_description,
275
+ status=occ_customer_group_occ_customer_status)
276
+ ```
277
+
278
+ ## Import
279
+
280
+ OccCustomerGroupOccCustomers can be imported using the `id`, e.g.
281
+
282
+ ```sh
283
+ $ pulumi import oci:CapacityManagement/occCustomerGroupOccCustomer:OccCustomerGroupOccCustomer test_occ_customer_group_occ_customer "id"
284
+ ```
285
+
286
+ :param str resource_name: The name of the resource.
287
+ :param OccCustomerGroupOccCustomerArgs args: The arguments to use to populate this resource's properties.
288
+ :param pulumi.ResourceOptions opts: Options for the resource.
289
+ """
290
+ ...
291
+ def __init__(__self__, resource_name: str, *args, **kwargs):
292
+ resource_args, opts = _utilities.get_resource_args_opts(OccCustomerGroupOccCustomerArgs, pulumi.ResourceOptions, *args, **kwargs)
293
+ if resource_args is not None:
294
+ __self__._internal_init(resource_name, opts, **resource_args.__dict__)
295
+ else:
296
+ __self__._internal_init(resource_name, *args, **kwargs)
297
+
298
+ def _internal_init(__self__,
299
+ resource_name: str,
300
+ opts: Optional[pulumi.ResourceOptions] = None,
301
+ description: Optional[pulumi.Input[str]] = None,
302
+ display_name: Optional[pulumi.Input[str]] = None,
303
+ occ_customer_group_id: Optional[pulumi.Input[str]] = None,
304
+ status: Optional[pulumi.Input[str]] = None,
305
+ tenancy_id: Optional[pulumi.Input[str]] = None,
306
+ __props__=None):
307
+ opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
308
+ if not isinstance(opts, pulumi.ResourceOptions):
309
+ raise TypeError('Expected resource options to be a ResourceOptions instance')
310
+ if opts.id is None:
311
+ if __props__ is not None:
312
+ raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
313
+ __props__ = OccCustomerGroupOccCustomerArgs.__new__(OccCustomerGroupOccCustomerArgs)
314
+
315
+ __props__.__dict__["description"] = description
316
+ if display_name is None and not opts.urn:
317
+ raise TypeError("Missing required property 'display_name'")
318
+ __props__.__dict__["display_name"] = display_name
319
+ if occ_customer_group_id is None and not opts.urn:
320
+ raise TypeError("Missing required property 'occ_customer_group_id'")
321
+ __props__.__dict__["occ_customer_group_id"] = occ_customer_group_id
322
+ __props__.__dict__["status"] = status
323
+ if tenancy_id is None and not opts.urn:
324
+ raise TypeError("Missing required property 'tenancy_id'")
325
+ __props__.__dict__["tenancy_id"] = tenancy_id
326
+ super(OccCustomerGroupOccCustomer, __self__).__init__(
327
+ 'oci:CapacityManagement/occCustomerGroupOccCustomer:OccCustomerGroupOccCustomer',
328
+ resource_name,
329
+ __props__,
330
+ opts)
331
+
332
+ @staticmethod
333
+ def get(resource_name: str,
334
+ id: pulumi.Input[str],
335
+ opts: Optional[pulumi.ResourceOptions] = None,
336
+ description: Optional[pulumi.Input[str]] = None,
337
+ display_name: Optional[pulumi.Input[str]] = None,
338
+ occ_customer_group_id: Optional[pulumi.Input[str]] = None,
339
+ status: Optional[pulumi.Input[str]] = None,
340
+ tenancy_id: Optional[pulumi.Input[str]] = None) -> 'OccCustomerGroupOccCustomer':
341
+ """
342
+ Get an existing OccCustomerGroupOccCustomer resource's state with the given name, id, and optional extra
343
+ properties used to qualify the lookup.
344
+
345
+ :param str resource_name: The unique name of the resulting resource.
346
+ :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
347
+ :param pulumi.ResourceOptions opts: Options for the resource.
348
+ :param pulumi.Input[str] description: (Updatable) The description about the customer group.
349
+ :param pulumi.Input[str] display_name: (Updatable) The display name for the customer.
350
+ :param pulumi.Input[str] occ_customer_group_id: The OCID of the customer group.
351
+ :param pulumi.Input[str] status: (Updatable) To determine whether the customer is enabled/disabled.
352
+ :param pulumi.Input[str] tenancy_id: The OCID of the tenancy belonging to the customer.
353
+
354
+
355
+ ** IMPORTANT **
356
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
357
+ """
358
+ opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
359
+
360
+ __props__ = _OccCustomerGroupOccCustomerState.__new__(_OccCustomerGroupOccCustomerState)
361
+
362
+ __props__.__dict__["description"] = description
363
+ __props__.__dict__["display_name"] = display_name
364
+ __props__.__dict__["occ_customer_group_id"] = occ_customer_group_id
365
+ __props__.__dict__["status"] = status
366
+ __props__.__dict__["tenancy_id"] = tenancy_id
367
+ return OccCustomerGroupOccCustomer(resource_name, opts=opts, __props__=__props__)
368
+
369
+ @property
370
+ @pulumi.getter
371
+ def description(self) -> pulumi.Output[str]:
372
+ """
373
+ (Updatable) The description about the customer group.
374
+ """
375
+ return pulumi.get(self, "description")
376
+
377
+ @property
378
+ @pulumi.getter(name="displayName")
379
+ def display_name(self) -> pulumi.Output[str]:
380
+ """
381
+ (Updatable) The display name for the customer.
382
+ """
383
+ return pulumi.get(self, "display_name")
384
+
385
+ @property
386
+ @pulumi.getter(name="occCustomerGroupId")
387
+ def occ_customer_group_id(self) -> pulumi.Output[str]:
388
+ """
389
+ The OCID of the customer group.
390
+ """
391
+ return pulumi.get(self, "occ_customer_group_id")
392
+
393
+ @property
394
+ @pulumi.getter
395
+ def status(self) -> pulumi.Output[str]:
396
+ """
397
+ (Updatable) To determine whether the customer is enabled/disabled.
398
+ """
399
+ return pulumi.get(self, "status")
400
+
401
+ @property
402
+ @pulumi.getter(name="tenancyId")
403
+ def tenancy_id(self) -> pulumi.Output[str]:
404
+ """
405
+ The OCID of the tenancy belonging to the customer.
406
+
407
+
408
+ ** IMPORTANT **
409
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
410
+ """
411
+ return pulumi.get(self, "tenancy_id")
412
+