pulumi-oci 3.1.0a1751948424__py3-none-any.whl → 3.2.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 (37) hide show
  1. pulumi_oci/__init__.py +40 -0
  2. pulumi_oci/bigdataservice/__init__.py +10 -0
  3. pulumi_oci/bigdataservice/_inputs.py +378 -0
  4. pulumi_oci/bigdataservice/bds_instance_node_backup.py +481 -0
  5. pulumi_oci/bigdataservice/bds_instance_node_backup_configuration.py +611 -0
  6. pulumi_oci/bigdataservice/bds_instance_node_replace_configuration.py +538 -0
  7. pulumi_oci/bigdataservice/bds_instance_replace_node_action.py +406 -0
  8. pulumi_oci/bigdataservice/get_bds_instance_node_backup.py +245 -0
  9. pulumi_oci/bigdataservice/get_bds_instance_node_backup_configuration.py +263 -0
  10. pulumi_oci/bigdataservice/get_bds_instance_node_backup_configurations.py +192 -0
  11. pulumi_oci/bigdataservice/get_bds_instance_node_backups.py +211 -0
  12. pulumi_oci/bigdataservice/get_bds_instance_node_replace_configuration.py +246 -0
  13. pulumi_oci/bigdataservice/get_bds_instance_node_replace_configurations.py +192 -0
  14. pulumi_oci/bigdataservice/outputs.py +798 -0
  15. pulumi_oci/generativeai/__init__.py +3 -0
  16. pulumi_oci/generativeai/_inputs.py +1479 -132
  17. pulumi_oci/generativeai/agent_agent.py +66 -11
  18. pulumi_oci/generativeai/agent_agent_endpoint.py +296 -25
  19. pulumi_oci/generativeai/agent_data_source.py +70 -21
  20. pulumi_oci/generativeai/agent_tool.py +619 -0
  21. pulumi_oci/generativeai/get_agent_agent.py +17 -2
  22. pulumi_oci/generativeai/get_agent_agent_endpoint.py +72 -6
  23. pulumi_oci/generativeai/get_agent_agent_endpoints.py +0 -4
  24. pulumi_oci/generativeai/get_agent_data_source.py +15 -1
  25. pulumi_oci/generativeai/get_agent_tool.py +283 -0
  26. pulumi_oci/generativeai/get_agent_tools.py +214 -0
  27. pulumi_oci/generativeai/outputs.py +4001 -1259
  28. pulumi_oci/kms/vault_verification.py +62 -2
  29. pulumi_oci/ospgateway/_inputs.py +20 -0
  30. pulumi_oci/ospgateway/get_subscription.py +15 -1
  31. pulumi_oci/ospgateway/outputs.py +47 -0
  32. pulumi_oci/ospgateway/subscription.py +28 -0
  33. pulumi_oci/pulumi-plugin.json +1 -1
  34. {pulumi_oci-3.1.0a1751948424.dist-info → pulumi_oci-3.2.0.dist-info}/METADATA +1 -1
  35. {pulumi_oci-3.1.0a1751948424.dist-info → pulumi_oci-3.2.0.dist-info}/RECORD +37 -24
  36. {pulumi_oci-3.1.0a1751948424.dist-info → pulumi_oci-3.2.0.dist-info}/WHEEL +0 -0
  37. {pulumi_oci-3.1.0a1751948424.dist-info → pulumi_oci-3.2.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,611 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by pulumi-language-python. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ import builtins
6
+ import copy
7
+ import warnings
8
+ import sys
9
+ import pulumi
10
+ import pulumi.runtime
11
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
12
+ if sys.version_info >= (3, 11):
13
+ from typing import NotRequired, TypedDict, TypeAlias
14
+ else:
15
+ from typing_extensions import NotRequired, TypedDict, TypeAlias
16
+ from .. import _utilities
17
+ from . import outputs
18
+ from ._inputs import *
19
+
20
+ __all__ = ['BdsInstanceNodeBackupConfigurationArgs', 'BdsInstanceNodeBackupConfiguration']
21
+
22
+ @pulumi.input_type
23
+ class BdsInstanceNodeBackupConfigurationArgs:
24
+ def __init__(__self__, *,
25
+ bds_instance_id: pulumi.Input[builtins.str],
26
+ level_type_details: pulumi.Input['BdsInstanceNodeBackupConfigurationLevelTypeDetailsArgs'],
27
+ schedule: pulumi.Input[builtins.str],
28
+ backup_type: Optional[pulumi.Input[builtins.str]] = None,
29
+ display_name: Optional[pulumi.Input[builtins.str]] = None,
30
+ number_of_backups_to_retain: Optional[pulumi.Input[builtins.int]] = None,
31
+ timezone: Optional[pulumi.Input[builtins.str]] = None):
32
+ """
33
+ The set of arguments for constructing a BdsInstanceNodeBackupConfiguration resource.
34
+ :param pulumi.Input[builtins.str] bds_instance_id: The OCID of the cluster.
35
+ :param pulumi.Input['BdsInstanceNodeBackupConfigurationLevelTypeDetailsArgs'] level_type_details: (Updatable) Details of the type of level used to trigger the creation of a new node backup configuration or node replacement configuration.
36
+ :param pulumi.Input[builtins.str] schedule: (Updatable) Day/time recurrence (specified following RFC 5545) at which to trigger the backup process. Currently only DAILY, WEEKLY and MONTHLY frequency is supported. Days of the week are specified using BYDAY field. Time of the day is specified using BYHOUR. Other fields are not supported.
37
+ :param pulumi.Input[builtins.str] backup_type: (Updatable) Incremental backup type includes only the changes since the last backup. Full backup type includes all changes since the volume was created.
38
+ :param pulumi.Input[builtins.str] display_name: (Updatable) A user-friendly name. Only ASCII alphanumeric characters with no spaces allowed. The name does not have to be unique, and it may be changed. Avoid entering confidential information.
39
+ :param pulumi.Input[builtins.int] number_of_backups_to_retain: (Updatable) Number of backup copies to retain.
40
+ :param pulumi.Input[builtins.str] timezone: (Updatable) The time zone of the execution schedule, in IANA time zone database name format
41
+
42
+
43
+ ** IMPORTANT **
44
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
45
+ """
46
+ pulumi.set(__self__, "bds_instance_id", bds_instance_id)
47
+ pulumi.set(__self__, "level_type_details", level_type_details)
48
+ pulumi.set(__self__, "schedule", schedule)
49
+ if backup_type is not None:
50
+ pulumi.set(__self__, "backup_type", backup_type)
51
+ if display_name is not None:
52
+ pulumi.set(__self__, "display_name", display_name)
53
+ if number_of_backups_to_retain is not None:
54
+ pulumi.set(__self__, "number_of_backups_to_retain", number_of_backups_to_retain)
55
+ if timezone is not None:
56
+ pulumi.set(__self__, "timezone", timezone)
57
+
58
+ @property
59
+ @pulumi.getter(name="bdsInstanceId")
60
+ def bds_instance_id(self) -> pulumi.Input[builtins.str]:
61
+ """
62
+ The OCID of the cluster.
63
+ """
64
+ return pulumi.get(self, "bds_instance_id")
65
+
66
+ @bds_instance_id.setter
67
+ def bds_instance_id(self, value: pulumi.Input[builtins.str]):
68
+ pulumi.set(self, "bds_instance_id", value)
69
+
70
+ @property
71
+ @pulumi.getter(name="levelTypeDetails")
72
+ def level_type_details(self) -> pulumi.Input['BdsInstanceNodeBackupConfigurationLevelTypeDetailsArgs']:
73
+ """
74
+ (Updatable) Details of the type of level used to trigger the creation of a new node backup configuration or node replacement configuration.
75
+ """
76
+ return pulumi.get(self, "level_type_details")
77
+
78
+ @level_type_details.setter
79
+ def level_type_details(self, value: pulumi.Input['BdsInstanceNodeBackupConfigurationLevelTypeDetailsArgs']):
80
+ pulumi.set(self, "level_type_details", value)
81
+
82
+ @property
83
+ @pulumi.getter
84
+ def schedule(self) -> pulumi.Input[builtins.str]:
85
+ """
86
+ (Updatable) Day/time recurrence (specified following RFC 5545) at which to trigger the backup process. Currently only DAILY, WEEKLY and MONTHLY frequency is supported. Days of the week are specified using BYDAY field. Time of the day is specified using BYHOUR. Other fields are not supported.
87
+ """
88
+ return pulumi.get(self, "schedule")
89
+
90
+ @schedule.setter
91
+ def schedule(self, value: pulumi.Input[builtins.str]):
92
+ pulumi.set(self, "schedule", value)
93
+
94
+ @property
95
+ @pulumi.getter(name="backupType")
96
+ def backup_type(self) -> Optional[pulumi.Input[builtins.str]]:
97
+ """
98
+ (Updatable) Incremental backup type includes only the changes since the last backup. Full backup type includes all changes since the volume was created.
99
+ """
100
+ return pulumi.get(self, "backup_type")
101
+
102
+ @backup_type.setter
103
+ def backup_type(self, value: Optional[pulumi.Input[builtins.str]]):
104
+ pulumi.set(self, "backup_type", value)
105
+
106
+ @property
107
+ @pulumi.getter(name="displayName")
108
+ def display_name(self) -> Optional[pulumi.Input[builtins.str]]:
109
+ """
110
+ (Updatable) A user-friendly name. Only ASCII alphanumeric characters with no spaces allowed. The name does not have to be unique, and it may be changed. Avoid entering confidential information.
111
+ """
112
+ return pulumi.get(self, "display_name")
113
+
114
+ @display_name.setter
115
+ def display_name(self, value: Optional[pulumi.Input[builtins.str]]):
116
+ pulumi.set(self, "display_name", value)
117
+
118
+ @property
119
+ @pulumi.getter(name="numberOfBackupsToRetain")
120
+ def number_of_backups_to_retain(self) -> Optional[pulumi.Input[builtins.int]]:
121
+ """
122
+ (Updatable) Number of backup copies to retain.
123
+ """
124
+ return pulumi.get(self, "number_of_backups_to_retain")
125
+
126
+ @number_of_backups_to_retain.setter
127
+ def number_of_backups_to_retain(self, value: Optional[pulumi.Input[builtins.int]]):
128
+ pulumi.set(self, "number_of_backups_to_retain", value)
129
+
130
+ @property
131
+ @pulumi.getter
132
+ def timezone(self) -> Optional[pulumi.Input[builtins.str]]:
133
+ """
134
+ (Updatable) The time zone of the execution schedule, in IANA time zone database name format
135
+
136
+
137
+ ** IMPORTANT **
138
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
139
+ """
140
+ return pulumi.get(self, "timezone")
141
+
142
+ @timezone.setter
143
+ def timezone(self, value: Optional[pulumi.Input[builtins.str]]):
144
+ pulumi.set(self, "timezone", value)
145
+
146
+
147
+ @pulumi.input_type
148
+ class _BdsInstanceNodeBackupConfigurationState:
149
+ def __init__(__self__, *,
150
+ backup_type: Optional[pulumi.Input[builtins.str]] = None,
151
+ bds_instance_id: Optional[pulumi.Input[builtins.str]] = None,
152
+ display_name: Optional[pulumi.Input[builtins.str]] = None,
153
+ level_type_details: Optional[pulumi.Input['BdsInstanceNodeBackupConfigurationLevelTypeDetailsArgs']] = None,
154
+ number_of_backups_to_retain: Optional[pulumi.Input[builtins.int]] = None,
155
+ schedule: Optional[pulumi.Input[builtins.str]] = None,
156
+ state: Optional[pulumi.Input[builtins.str]] = None,
157
+ time_created: Optional[pulumi.Input[builtins.str]] = None,
158
+ time_updated: Optional[pulumi.Input[builtins.str]] = None,
159
+ timezone: Optional[pulumi.Input[builtins.str]] = None):
160
+ """
161
+ Input properties used for looking up and filtering BdsInstanceNodeBackupConfiguration resources.
162
+ :param pulumi.Input[builtins.str] backup_type: (Updatable) Incremental backup type includes only the changes since the last backup. Full backup type includes all changes since the volume was created.
163
+ :param pulumi.Input[builtins.str] bds_instance_id: The OCID of the cluster.
164
+ :param pulumi.Input[builtins.str] display_name: (Updatable) A user-friendly name. Only ASCII alphanumeric characters with no spaces allowed. The name does not have to be unique, and it may be changed. Avoid entering confidential information.
165
+ :param pulumi.Input['BdsInstanceNodeBackupConfigurationLevelTypeDetailsArgs'] level_type_details: (Updatable) Details of the type of level used to trigger the creation of a new node backup configuration or node replacement configuration.
166
+ :param pulumi.Input[builtins.int] number_of_backups_to_retain: (Updatable) Number of backup copies to retain.
167
+ :param pulumi.Input[builtins.str] schedule: (Updatable) Day/time recurrence (specified following RFC 5545) at which to trigger the backup process. Currently only DAILY, WEEKLY and MONTHLY frequency is supported. Days of the week are specified using BYDAY field. Time of the day is specified using BYHOUR. Other fields are not supported.
168
+ :param pulumi.Input[builtins.str] state: The state of the NodeBackupConfiguration.
169
+ :param pulumi.Input[builtins.str] time_created: The time the NodeBackupConfiguration was created, shown as an RFC 3339 formatted datetime string.
170
+ :param pulumi.Input[builtins.str] time_updated: The time the NodeBackupConfiguration was updated, shown as an RFC 3339 formatted datetime string.
171
+ :param pulumi.Input[builtins.str] timezone: (Updatable) The time zone of the execution schedule, in IANA time zone database name format
172
+
173
+
174
+ ** IMPORTANT **
175
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
176
+ """
177
+ if backup_type is not None:
178
+ pulumi.set(__self__, "backup_type", backup_type)
179
+ if bds_instance_id is not None:
180
+ pulumi.set(__self__, "bds_instance_id", bds_instance_id)
181
+ if display_name is not None:
182
+ pulumi.set(__self__, "display_name", display_name)
183
+ if level_type_details is not None:
184
+ pulumi.set(__self__, "level_type_details", level_type_details)
185
+ if number_of_backups_to_retain is not None:
186
+ pulumi.set(__self__, "number_of_backups_to_retain", number_of_backups_to_retain)
187
+ if schedule is not None:
188
+ pulumi.set(__self__, "schedule", schedule)
189
+ if state is not None:
190
+ pulumi.set(__self__, "state", state)
191
+ if time_created is not None:
192
+ pulumi.set(__self__, "time_created", time_created)
193
+ if time_updated is not None:
194
+ pulumi.set(__self__, "time_updated", time_updated)
195
+ if timezone is not None:
196
+ pulumi.set(__self__, "timezone", timezone)
197
+
198
+ @property
199
+ @pulumi.getter(name="backupType")
200
+ def backup_type(self) -> Optional[pulumi.Input[builtins.str]]:
201
+ """
202
+ (Updatable) Incremental backup type includes only the changes since the last backup. Full backup type includes all changes since the volume was created.
203
+ """
204
+ return pulumi.get(self, "backup_type")
205
+
206
+ @backup_type.setter
207
+ def backup_type(self, value: Optional[pulumi.Input[builtins.str]]):
208
+ pulumi.set(self, "backup_type", value)
209
+
210
+ @property
211
+ @pulumi.getter(name="bdsInstanceId")
212
+ def bds_instance_id(self) -> Optional[pulumi.Input[builtins.str]]:
213
+ """
214
+ The OCID of the cluster.
215
+ """
216
+ return pulumi.get(self, "bds_instance_id")
217
+
218
+ @bds_instance_id.setter
219
+ def bds_instance_id(self, value: Optional[pulumi.Input[builtins.str]]):
220
+ pulumi.set(self, "bds_instance_id", value)
221
+
222
+ @property
223
+ @pulumi.getter(name="displayName")
224
+ def display_name(self) -> Optional[pulumi.Input[builtins.str]]:
225
+ """
226
+ (Updatable) A user-friendly name. Only ASCII alphanumeric characters with no spaces allowed. The name does not have to be unique, and it may be changed. Avoid entering confidential information.
227
+ """
228
+ return pulumi.get(self, "display_name")
229
+
230
+ @display_name.setter
231
+ def display_name(self, value: Optional[pulumi.Input[builtins.str]]):
232
+ pulumi.set(self, "display_name", value)
233
+
234
+ @property
235
+ @pulumi.getter(name="levelTypeDetails")
236
+ def level_type_details(self) -> Optional[pulumi.Input['BdsInstanceNodeBackupConfigurationLevelTypeDetailsArgs']]:
237
+ """
238
+ (Updatable) Details of the type of level used to trigger the creation of a new node backup configuration or node replacement configuration.
239
+ """
240
+ return pulumi.get(self, "level_type_details")
241
+
242
+ @level_type_details.setter
243
+ def level_type_details(self, value: Optional[pulumi.Input['BdsInstanceNodeBackupConfigurationLevelTypeDetailsArgs']]):
244
+ pulumi.set(self, "level_type_details", value)
245
+
246
+ @property
247
+ @pulumi.getter(name="numberOfBackupsToRetain")
248
+ def number_of_backups_to_retain(self) -> Optional[pulumi.Input[builtins.int]]:
249
+ """
250
+ (Updatable) Number of backup copies to retain.
251
+ """
252
+ return pulumi.get(self, "number_of_backups_to_retain")
253
+
254
+ @number_of_backups_to_retain.setter
255
+ def number_of_backups_to_retain(self, value: Optional[pulumi.Input[builtins.int]]):
256
+ pulumi.set(self, "number_of_backups_to_retain", value)
257
+
258
+ @property
259
+ @pulumi.getter
260
+ def schedule(self) -> Optional[pulumi.Input[builtins.str]]:
261
+ """
262
+ (Updatable) Day/time recurrence (specified following RFC 5545) at which to trigger the backup process. Currently only DAILY, WEEKLY and MONTHLY frequency is supported. Days of the week are specified using BYDAY field. Time of the day is specified using BYHOUR. Other fields are not supported.
263
+ """
264
+ return pulumi.get(self, "schedule")
265
+
266
+ @schedule.setter
267
+ def schedule(self, value: Optional[pulumi.Input[builtins.str]]):
268
+ pulumi.set(self, "schedule", value)
269
+
270
+ @property
271
+ @pulumi.getter
272
+ def state(self) -> Optional[pulumi.Input[builtins.str]]:
273
+ """
274
+ The state of the NodeBackupConfiguration.
275
+ """
276
+ return pulumi.get(self, "state")
277
+
278
+ @state.setter
279
+ def state(self, value: Optional[pulumi.Input[builtins.str]]):
280
+ pulumi.set(self, "state", value)
281
+
282
+ @property
283
+ @pulumi.getter(name="timeCreated")
284
+ def time_created(self) -> Optional[pulumi.Input[builtins.str]]:
285
+ """
286
+ The time the NodeBackupConfiguration was created, shown as an RFC 3339 formatted datetime string.
287
+ """
288
+ return pulumi.get(self, "time_created")
289
+
290
+ @time_created.setter
291
+ def time_created(self, value: Optional[pulumi.Input[builtins.str]]):
292
+ pulumi.set(self, "time_created", value)
293
+
294
+ @property
295
+ @pulumi.getter(name="timeUpdated")
296
+ def time_updated(self) -> Optional[pulumi.Input[builtins.str]]:
297
+ """
298
+ The time the NodeBackupConfiguration was updated, shown as an RFC 3339 formatted datetime string.
299
+ """
300
+ return pulumi.get(self, "time_updated")
301
+
302
+ @time_updated.setter
303
+ def time_updated(self, value: Optional[pulumi.Input[builtins.str]]):
304
+ pulumi.set(self, "time_updated", value)
305
+
306
+ @property
307
+ @pulumi.getter
308
+ def timezone(self) -> Optional[pulumi.Input[builtins.str]]:
309
+ """
310
+ (Updatable) The time zone of the execution schedule, in IANA time zone database name format
311
+
312
+
313
+ ** IMPORTANT **
314
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
315
+ """
316
+ return pulumi.get(self, "timezone")
317
+
318
+ @timezone.setter
319
+ def timezone(self, value: Optional[pulumi.Input[builtins.str]]):
320
+ pulumi.set(self, "timezone", value)
321
+
322
+
323
+ @pulumi.type_token("oci:BigDataService/bdsInstanceNodeBackupConfiguration:BdsInstanceNodeBackupConfiguration")
324
+ class BdsInstanceNodeBackupConfiguration(pulumi.CustomResource):
325
+ @overload
326
+ def __init__(__self__,
327
+ resource_name: str,
328
+ opts: Optional[pulumi.ResourceOptions] = None,
329
+ backup_type: Optional[pulumi.Input[builtins.str]] = None,
330
+ bds_instance_id: Optional[pulumi.Input[builtins.str]] = None,
331
+ display_name: Optional[pulumi.Input[builtins.str]] = None,
332
+ level_type_details: Optional[pulumi.Input[Union['BdsInstanceNodeBackupConfigurationLevelTypeDetailsArgs', 'BdsInstanceNodeBackupConfigurationLevelTypeDetailsArgsDict']]] = None,
333
+ number_of_backups_to_retain: Optional[pulumi.Input[builtins.int]] = None,
334
+ schedule: Optional[pulumi.Input[builtins.str]] = None,
335
+ timezone: Optional[pulumi.Input[builtins.str]] = None,
336
+ __props__=None):
337
+ """
338
+ This resource provides the Bds Instance Node Backup Configuration resource in Oracle Cloud Infrastructure Big Data Service service.
339
+
340
+ Add a node volume backup configuration to the cluster for an indicated node type or node.
341
+
342
+ ## Example Usage
343
+
344
+ ```python
345
+ import pulumi
346
+ import pulumi_oci as oci
347
+
348
+ test_bds_instance_node_backup_configuration = oci.big_data_service.BdsInstanceNodeBackupConfiguration("test_bds_instance_node_backup_configuration",
349
+ bds_instance_id=test_bds_instance["id"],
350
+ level_type_details={
351
+ "level_type": bds_instance_node_backup_configuration_level_type_details_level_type,
352
+ "node_host_name": bds_instance_node_backup_configuration_level_type_details_node_host_name,
353
+ "node_type": bds_instance_node_backup_configuration_level_type_details_node_type,
354
+ },
355
+ schedule=bds_instance_node_backup_configuration_schedule,
356
+ backup_type=bds_instance_node_backup_configuration_backup_type,
357
+ display_name=bds_instance_node_backup_configuration_display_name,
358
+ number_of_backups_to_retain=bds_instance_node_backup_configuration_number_of_backups_to_retain,
359
+ timezone=bds_instance_node_backup_configuration_timezone)
360
+ ```
361
+
362
+ ## Import
363
+
364
+ BdsInstanceNodeBackupConfigurations can be imported using the `id`, e.g.
365
+
366
+ ```sh
367
+ $ pulumi import oci:BigDataService/bdsInstanceNodeBackupConfiguration:BdsInstanceNodeBackupConfiguration test_bds_instance_node_backup_configuration "bdsInstances/{bdsInstanceId}/nodeBackupConfigurations/{nodeBackupConfigurationId}"
368
+ ```
369
+
370
+ :param str resource_name: The name of the resource.
371
+ :param pulumi.ResourceOptions opts: Options for the resource.
372
+ :param pulumi.Input[builtins.str] backup_type: (Updatable) Incremental backup type includes only the changes since the last backup. Full backup type includes all changes since the volume was created.
373
+ :param pulumi.Input[builtins.str] bds_instance_id: The OCID of the cluster.
374
+ :param pulumi.Input[builtins.str] display_name: (Updatable) A user-friendly name. Only ASCII alphanumeric characters with no spaces allowed. The name does not have to be unique, and it may be changed. Avoid entering confidential information.
375
+ :param pulumi.Input[Union['BdsInstanceNodeBackupConfigurationLevelTypeDetailsArgs', 'BdsInstanceNodeBackupConfigurationLevelTypeDetailsArgsDict']] level_type_details: (Updatable) Details of the type of level used to trigger the creation of a new node backup configuration or node replacement configuration.
376
+ :param pulumi.Input[builtins.int] number_of_backups_to_retain: (Updatable) Number of backup copies to retain.
377
+ :param pulumi.Input[builtins.str] schedule: (Updatable) Day/time recurrence (specified following RFC 5545) at which to trigger the backup process. Currently only DAILY, WEEKLY and MONTHLY frequency is supported. Days of the week are specified using BYDAY field. Time of the day is specified using BYHOUR. Other fields are not supported.
378
+ :param pulumi.Input[builtins.str] timezone: (Updatable) The time zone of the execution schedule, in IANA time zone database name format
379
+
380
+
381
+ ** IMPORTANT **
382
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
383
+ """
384
+ ...
385
+ @overload
386
+ def __init__(__self__,
387
+ resource_name: str,
388
+ args: BdsInstanceNodeBackupConfigurationArgs,
389
+ opts: Optional[pulumi.ResourceOptions] = None):
390
+ """
391
+ This resource provides the Bds Instance Node Backup Configuration resource in Oracle Cloud Infrastructure Big Data Service service.
392
+
393
+ Add a node volume backup configuration to the cluster for an indicated node type or node.
394
+
395
+ ## Example Usage
396
+
397
+ ```python
398
+ import pulumi
399
+ import pulumi_oci as oci
400
+
401
+ test_bds_instance_node_backup_configuration = oci.big_data_service.BdsInstanceNodeBackupConfiguration("test_bds_instance_node_backup_configuration",
402
+ bds_instance_id=test_bds_instance["id"],
403
+ level_type_details={
404
+ "level_type": bds_instance_node_backup_configuration_level_type_details_level_type,
405
+ "node_host_name": bds_instance_node_backup_configuration_level_type_details_node_host_name,
406
+ "node_type": bds_instance_node_backup_configuration_level_type_details_node_type,
407
+ },
408
+ schedule=bds_instance_node_backup_configuration_schedule,
409
+ backup_type=bds_instance_node_backup_configuration_backup_type,
410
+ display_name=bds_instance_node_backup_configuration_display_name,
411
+ number_of_backups_to_retain=bds_instance_node_backup_configuration_number_of_backups_to_retain,
412
+ timezone=bds_instance_node_backup_configuration_timezone)
413
+ ```
414
+
415
+ ## Import
416
+
417
+ BdsInstanceNodeBackupConfigurations can be imported using the `id`, e.g.
418
+
419
+ ```sh
420
+ $ pulumi import oci:BigDataService/bdsInstanceNodeBackupConfiguration:BdsInstanceNodeBackupConfiguration test_bds_instance_node_backup_configuration "bdsInstances/{bdsInstanceId}/nodeBackupConfigurations/{nodeBackupConfigurationId}"
421
+ ```
422
+
423
+ :param str resource_name: The name of the resource.
424
+ :param BdsInstanceNodeBackupConfigurationArgs args: The arguments to use to populate this resource's properties.
425
+ :param pulumi.ResourceOptions opts: Options for the resource.
426
+ """
427
+ ...
428
+ def __init__(__self__, resource_name: str, *args, **kwargs):
429
+ resource_args, opts = _utilities.get_resource_args_opts(BdsInstanceNodeBackupConfigurationArgs, pulumi.ResourceOptions, *args, **kwargs)
430
+ if resource_args is not None:
431
+ __self__._internal_init(resource_name, opts, **resource_args.__dict__)
432
+ else:
433
+ __self__._internal_init(resource_name, *args, **kwargs)
434
+
435
+ def _internal_init(__self__,
436
+ resource_name: str,
437
+ opts: Optional[pulumi.ResourceOptions] = None,
438
+ backup_type: Optional[pulumi.Input[builtins.str]] = None,
439
+ bds_instance_id: Optional[pulumi.Input[builtins.str]] = None,
440
+ display_name: Optional[pulumi.Input[builtins.str]] = None,
441
+ level_type_details: Optional[pulumi.Input[Union['BdsInstanceNodeBackupConfigurationLevelTypeDetailsArgs', 'BdsInstanceNodeBackupConfigurationLevelTypeDetailsArgsDict']]] = None,
442
+ number_of_backups_to_retain: Optional[pulumi.Input[builtins.int]] = None,
443
+ schedule: Optional[pulumi.Input[builtins.str]] = None,
444
+ timezone: Optional[pulumi.Input[builtins.str]] = None,
445
+ __props__=None):
446
+ opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
447
+ if not isinstance(opts, pulumi.ResourceOptions):
448
+ raise TypeError('Expected resource options to be a ResourceOptions instance')
449
+ if opts.id is None:
450
+ if __props__ is not None:
451
+ raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
452
+ __props__ = BdsInstanceNodeBackupConfigurationArgs.__new__(BdsInstanceNodeBackupConfigurationArgs)
453
+
454
+ __props__.__dict__["backup_type"] = backup_type
455
+ if bds_instance_id is None and not opts.urn:
456
+ raise TypeError("Missing required property 'bds_instance_id'")
457
+ __props__.__dict__["bds_instance_id"] = bds_instance_id
458
+ __props__.__dict__["display_name"] = display_name
459
+ if level_type_details is None and not opts.urn:
460
+ raise TypeError("Missing required property 'level_type_details'")
461
+ __props__.__dict__["level_type_details"] = level_type_details
462
+ __props__.__dict__["number_of_backups_to_retain"] = number_of_backups_to_retain
463
+ if schedule is None and not opts.urn:
464
+ raise TypeError("Missing required property 'schedule'")
465
+ __props__.__dict__["schedule"] = schedule
466
+ __props__.__dict__["timezone"] = timezone
467
+ __props__.__dict__["state"] = None
468
+ __props__.__dict__["time_created"] = None
469
+ __props__.__dict__["time_updated"] = None
470
+ super(BdsInstanceNodeBackupConfiguration, __self__).__init__(
471
+ 'oci:BigDataService/bdsInstanceNodeBackupConfiguration:BdsInstanceNodeBackupConfiguration',
472
+ resource_name,
473
+ __props__,
474
+ opts)
475
+
476
+ @staticmethod
477
+ def get(resource_name: str,
478
+ id: pulumi.Input[str],
479
+ opts: Optional[pulumi.ResourceOptions] = None,
480
+ backup_type: Optional[pulumi.Input[builtins.str]] = None,
481
+ bds_instance_id: Optional[pulumi.Input[builtins.str]] = None,
482
+ display_name: Optional[pulumi.Input[builtins.str]] = None,
483
+ level_type_details: Optional[pulumi.Input[Union['BdsInstanceNodeBackupConfigurationLevelTypeDetailsArgs', 'BdsInstanceNodeBackupConfigurationLevelTypeDetailsArgsDict']]] = None,
484
+ number_of_backups_to_retain: Optional[pulumi.Input[builtins.int]] = None,
485
+ schedule: Optional[pulumi.Input[builtins.str]] = None,
486
+ state: Optional[pulumi.Input[builtins.str]] = None,
487
+ time_created: Optional[pulumi.Input[builtins.str]] = None,
488
+ time_updated: Optional[pulumi.Input[builtins.str]] = None,
489
+ timezone: Optional[pulumi.Input[builtins.str]] = None) -> 'BdsInstanceNodeBackupConfiguration':
490
+ """
491
+ Get an existing BdsInstanceNodeBackupConfiguration resource's state with the given name, id, and optional extra
492
+ properties used to qualify the lookup.
493
+
494
+ :param str resource_name: The unique name of the resulting resource.
495
+ :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
496
+ :param pulumi.ResourceOptions opts: Options for the resource.
497
+ :param pulumi.Input[builtins.str] backup_type: (Updatable) Incremental backup type includes only the changes since the last backup. Full backup type includes all changes since the volume was created.
498
+ :param pulumi.Input[builtins.str] bds_instance_id: The OCID of the cluster.
499
+ :param pulumi.Input[builtins.str] display_name: (Updatable) A user-friendly name. Only ASCII alphanumeric characters with no spaces allowed. The name does not have to be unique, and it may be changed. Avoid entering confidential information.
500
+ :param pulumi.Input[Union['BdsInstanceNodeBackupConfigurationLevelTypeDetailsArgs', 'BdsInstanceNodeBackupConfigurationLevelTypeDetailsArgsDict']] level_type_details: (Updatable) Details of the type of level used to trigger the creation of a new node backup configuration or node replacement configuration.
501
+ :param pulumi.Input[builtins.int] number_of_backups_to_retain: (Updatable) Number of backup copies to retain.
502
+ :param pulumi.Input[builtins.str] schedule: (Updatable) Day/time recurrence (specified following RFC 5545) at which to trigger the backup process. Currently only DAILY, WEEKLY and MONTHLY frequency is supported. Days of the week are specified using BYDAY field. Time of the day is specified using BYHOUR. Other fields are not supported.
503
+ :param pulumi.Input[builtins.str] state: The state of the NodeBackupConfiguration.
504
+ :param pulumi.Input[builtins.str] time_created: The time the NodeBackupConfiguration was created, shown as an RFC 3339 formatted datetime string.
505
+ :param pulumi.Input[builtins.str] time_updated: The time the NodeBackupConfiguration was updated, shown as an RFC 3339 formatted datetime string.
506
+ :param pulumi.Input[builtins.str] timezone: (Updatable) The time zone of the execution schedule, in IANA time zone database name format
507
+
508
+
509
+ ** IMPORTANT **
510
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
511
+ """
512
+ opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
513
+
514
+ __props__ = _BdsInstanceNodeBackupConfigurationState.__new__(_BdsInstanceNodeBackupConfigurationState)
515
+
516
+ __props__.__dict__["backup_type"] = backup_type
517
+ __props__.__dict__["bds_instance_id"] = bds_instance_id
518
+ __props__.__dict__["display_name"] = display_name
519
+ __props__.__dict__["level_type_details"] = level_type_details
520
+ __props__.__dict__["number_of_backups_to_retain"] = number_of_backups_to_retain
521
+ __props__.__dict__["schedule"] = schedule
522
+ __props__.__dict__["state"] = state
523
+ __props__.__dict__["time_created"] = time_created
524
+ __props__.__dict__["time_updated"] = time_updated
525
+ __props__.__dict__["timezone"] = timezone
526
+ return BdsInstanceNodeBackupConfiguration(resource_name, opts=opts, __props__=__props__)
527
+
528
+ @property
529
+ @pulumi.getter(name="backupType")
530
+ def backup_type(self) -> pulumi.Output[builtins.str]:
531
+ """
532
+ (Updatable) Incremental backup type includes only the changes since the last backup. Full backup type includes all changes since the volume was created.
533
+ """
534
+ return pulumi.get(self, "backup_type")
535
+
536
+ @property
537
+ @pulumi.getter(name="bdsInstanceId")
538
+ def bds_instance_id(self) -> pulumi.Output[builtins.str]:
539
+ """
540
+ The OCID of the cluster.
541
+ """
542
+ return pulumi.get(self, "bds_instance_id")
543
+
544
+ @property
545
+ @pulumi.getter(name="displayName")
546
+ def display_name(self) -> pulumi.Output[builtins.str]:
547
+ """
548
+ (Updatable) A user-friendly name. Only ASCII alphanumeric characters with no spaces allowed. The name does not have to be unique, and it may be changed. Avoid entering confidential information.
549
+ """
550
+ return pulumi.get(self, "display_name")
551
+
552
+ @property
553
+ @pulumi.getter(name="levelTypeDetails")
554
+ def level_type_details(self) -> pulumi.Output['outputs.BdsInstanceNodeBackupConfigurationLevelTypeDetails']:
555
+ """
556
+ (Updatable) Details of the type of level used to trigger the creation of a new node backup configuration or node replacement configuration.
557
+ """
558
+ return pulumi.get(self, "level_type_details")
559
+
560
+ @property
561
+ @pulumi.getter(name="numberOfBackupsToRetain")
562
+ def number_of_backups_to_retain(self) -> pulumi.Output[builtins.int]:
563
+ """
564
+ (Updatable) Number of backup copies to retain.
565
+ """
566
+ return pulumi.get(self, "number_of_backups_to_retain")
567
+
568
+ @property
569
+ @pulumi.getter
570
+ def schedule(self) -> pulumi.Output[builtins.str]:
571
+ """
572
+ (Updatable) Day/time recurrence (specified following RFC 5545) at which to trigger the backup process. Currently only DAILY, WEEKLY and MONTHLY frequency is supported. Days of the week are specified using BYDAY field. Time of the day is specified using BYHOUR. Other fields are not supported.
573
+ """
574
+ return pulumi.get(self, "schedule")
575
+
576
+ @property
577
+ @pulumi.getter
578
+ def state(self) -> pulumi.Output[builtins.str]:
579
+ """
580
+ The state of the NodeBackupConfiguration.
581
+ """
582
+ return pulumi.get(self, "state")
583
+
584
+ @property
585
+ @pulumi.getter(name="timeCreated")
586
+ def time_created(self) -> pulumi.Output[builtins.str]:
587
+ """
588
+ The time the NodeBackupConfiguration was created, shown as an RFC 3339 formatted datetime string.
589
+ """
590
+ return pulumi.get(self, "time_created")
591
+
592
+ @property
593
+ @pulumi.getter(name="timeUpdated")
594
+ def time_updated(self) -> pulumi.Output[builtins.str]:
595
+ """
596
+ The time the NodeBackupConfiguration was updated, shown as an RFC 3339 formatted datetime string.
597
+ """
598
+ return pulumi.get(self, "time_updated")
599
+
600
+ @property
601
+ @pulumi.getter
602
+ def timezone(self) -> pulumi.Output[builtins.str]:
603
+ """
604
+ (Updatable) The time zone of the execution schedule, in IANA time zone database name format
605
+
606
+
607
+ ** IMPORTANT **
608
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
609
+ """
610
+ return pulumi.get(self, "timezone")
611
+