pulumi-oci 3.1.0a1751948424__py3-none-any.whl → 3.2.0a1752121229__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.0a1752121229.dist-info}/METADATA +1 -1
  35. {pulumi_oci-3.1.0a1751948424.dist-info → pulumi_oci-3.2.0a1752121229.dist-info}/RECORD +37 -24
  36. {pulumi_oci-3.1.0a1751948424.dist-info → pulumi_oci-3.2.0a1752121229.dist-info}/WHEEL +0 -0
  37. {pulumi_oci-3.1.0a1751948424.dist-info → pulumi_oci-3.2.0a1752121229.dist-info}/top_level.txt +0 -0
@@ -60,6 +60,9 @@ __all__ = [
60
60
  'BdsInstanceNetworkConfig',
61
61
  'BdsInstanceNode',
62
62
  'BdsInstanceNodeAttachedBlockVolume',
63
+ 'BdsInstanceNodeBackupConfigurationLevelTypeDetails',
64
+ 'BdsInstanceNodeBackupLevelTypeDetails',
65
+ 'BdsInstanceNodeReplaceConfigurationLevelTypeDetails',
63
66
  'BdsInstanceOperationCertificateManagementsManagementHostCertDetail',
64
67
  'BdsInstanceOsPatchActionPatchingConfigs',
65
68
  'BdsInstancePatchActionPatchingConfig',
@@ -146,6 +149,16 @@ __all__ = [
146
149
  'GetBdsInstanceNetworkConfigResult',
147
150
  'GetBdsInstanceNodeResult',
148
151
  'GetBdsInstanceNodeAttachedBlockVolumeResult',
152
+ 'GetBdsInstanceNodeBackupConfigurationLevelTypeDetailResult',
153
+ 'GetBdsInstanceNodeBackupConfigurationsFilterResult',
154
+ 'GetBdsInstanceNodeBackupConfigurationsNodeBackupConfigurationResult',
155
+ 'GetBdsInstanceNodeBackupConfigurationsNodeBackupConfigurationLevelTypeDetailResult',
156
+ 'GetBdsInstanceNodeBackupsFilterResult',
157
+ 'GetBdsInstanceNodeBackupsNodeBackupResult',
158
+ 'GetBdsInstanceNodeReplaceConfigurationLevelTypeDetailResult',
159
+ 'GetBdsInstanceNodeReplaceConfigurationsFilterResult',
160
+ 'GetBdsInstanceNodeReplaceConfigurationsNodeReplaceConfigurationResult',
161
+ 'GetBdsInstanceNodeReplaceConfigurationsNodeReplaceConfigurationLevelTypeDetailResult',
149
162
  'GetBdsInstancePatchHistoriesFilterResult',
150
163
  'GetBdsInstancePatchHistoriesPatchHistoryResult',
151
164
  'GetBdsInstancePatchesFilterResult',
@@ -3464,6 +3477,203 @@ class BdsInstanceNodeAttachedBlockVolume(dict):
3464
3477
  return pulumi.get(self, "volume_size_in_gbs")
3465
3478
 
3466
3479
 
3480
+ @pulumi.output_type
3481
+ class BdsInstanceNodeBackupConfigurationLevelTypeDetails(dict):
3482
+ @staticmethod
3483
+ def __key_warning(key: str):
3484
+ suggest = None
3485
+ if key == "levelType":
3486
+ suggest = "level_type"
3487
+ elif key == "nodeHostName":
3488
+ suggest = "node_host_name"
3489
+ elif key == "nodeType":
3490
+ suggest = "node_type"
3491
+
3492
+ if suggest:
3493
+ pulumi.log.warn(f"Key '{key}' not found in BdsInstanceNodeBackupConfigurationLevelTypeDetails. Access the value via the '{suggest}' property getter instead.")
3494
+
3495
+ def __getitem__(self, key: str) -> Any:
3496
+ BdsInstanceNodeBackupConfigurationLevelTypeDetails.__key_warning(key)
3497
+ return super().__getitem__(key)
3498
+
3499
+ def get(self, key: str, default = None) -> Any:
3500
+ BdsInstanceNodeBackupConfigurationLevelTypeDetails.__key_warning(key)
3501
+ return super().get(key, default)
3502
+
3503
+ def __init__(__self__, *,
3504
+ level_type: builtins.str,
3505
+ node_host_name: Optional[builtins.str] = None,
3506
+ node_type: Optional[builtins.str] = None):
3507
+ """
3508
+ :param builtins.str level_type: (Updatable) Type of level used to trigger the creation of a new node backup configuration or node replacement configuration.
3509
+ :param builtins.str node_host_name: (Updatable) Host name of the node to create backup configuration.
3510
+ :param builtins.str node_type: (Updatable) Type of the node or nodes of the node backup configuration or node replacement configuration which are going to be created. Accepted values are MASTER and UTILITY.
3511
+ """
3512
+ pulumi.set(__self__, "level_type", level_type)
3513
+ if node_host_name is not None:
3514
+ pulumi.set(__self__, "node_host_name", node_host_name)
3515
+ if node_type is not None:
3516
+ pulumi.set(__self__, "node_type", node_type)
3517
+
3518
+ @property
3519
+ @pulumi.getter(name="levelType")
3520
+ def level_type(self) -> builtins.str:
3521
+ """
3522
+ (Updatable) Type of level used to trigger the creation of a new node backup configuration or node replacement configuration.
3523
+ """
3524
+ return pulumi.get(self, "level_type")
3525
+
3526
+ @property
3527
+ @pulumi.getter(name="nodeHostName")
3528
+ def node_host_name(self) -> Optional[builtins.str]:
3529
+ """
3530
+ (Updatable) Host name of the node to create backup configuration.
3531
+ """
3532
+ return pulumi.get(self, "node_host_name")
3533
+
3534
+ @property
3535
+ @pulumi.getter(name="nodeType")
3536
+ def node_type(self) -> Optional[builtins.str]:
3537
+ """
3538
+ (Updatable) Type of the node or nodes of the node backup configuration or node replacement configuration which are going to be created. Accepted values are MASTER and UTILITY.
3539
+ """
3540
+ return pulumi.get(self, "node_type")
3541
+
3542
+
3543
+ @pulumi.output_type
3544
+ class BdsInstanceNodeBackupLevelTypeDetails(dict):
3545
+ @staticmethod
3546
+ def __key_warning(key: str):
3547
+ suggest = None
3548
+ if key == "levelType":
3549
+ suggest = "level_type"
3550
+ elif key == "nodeHostName":
3551
+ suggest = "node_host_name"
3552
+ elif key == "nodeType":
3553
+ suggest = "node_type"
3554
+
3555
+ if suggest:
3556
+ pulumi.log.warn(f"Key '{key}' not found in BdsInstanceNodeBackupLevelTypeDetails. Access the value via the '{suggest}' property getter instead.")
3557
+
3558
+ def __getitem__(self, key: str) -> Any:
3559
+ BdsInstanceNodeBackupLevelTypeDetails.__key_warning(key)
3560
+ return super().__getitem__(key)
3561
+
3562
+ def get(self, key: str, default = None) -> Any:
3563
+ BdsInstanceNodeBackupLevelTypeDetails.__key_warning(key)
3564
+ return super().get(key, default)
3565
+
3566
+ def __init__(__self__, *,
3567
+ level_type: builtins.str,
3568
+ node_host_name: Optional[builtins.str] = None,
3569
+ node_type: Optional[builtins.str] = None):
3570
+ """
3571
+ :param builtins.str level_type: Type of level used to trigger the creation of a new node backup.
3572
+ :param builtins.str node_host_name: (Updatable) Host name of the node to create backup.
3573
+ :param builtins.str node_type: (Updatable) Type of the node or nodes of the node backup which are going to be created.
3574
+
3575
+
3576
+ ** IMPORTANT **
3577
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
3578
+ """
3579
+ pulumi.set(__self__, "level_type", level_type)
3580
+ if node_host_name is not None:
3581
+ pulumi.set(__self__, "node_host_name", node_host_name)
3582
+ if node_type is not None:
3583
+ pulumi.set(__self__, "node_type", node_type)
3584
+
3585
+ @property
3586
+ @pulumi.getter(name="levelType")
3587
+ def level_type(self) -> builtins.str:
3588
+ """
3589
+ Type of level used to trigger the creation of a new node backup.
3590
+ """
3591
+ return pulumi.get(self, "level_type")
3592
+
3593
+ @property
3594
+ @pulumi.getter(name="nodeHostName")
3595
+ def node_host_name(self) -> Optional[builtins.str]:
3596
+ """
3597
+ (Updatable) Host name of the node to create backup.
3598
+ """
3599
+ return pulumi.get(self, "node_host_name")
3600
+
3601
+ @property
3602
+ @pulumi.getter(name="nodeType")
3603
+ def node_type(self) -> Optional[builtins.str]:
3604
+ """
3605
+ (Updatable) Type of the node or nodes of the node backup which are going to be created.
3606
+
3607
+
3608
+ ** IMPORTANT **
3609
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
3610
+ """
3611
+ return pulumi.get(self, "node_type")
3612
+
3613
+
3614
+ @pulumi.output_type
3615
+ class BdsInstanceNodeReplaceConfigurationLevelTypeDetails(dict):
3616
+ @staticmethod
3617
+ def __key_warning(key: str):
3618
+ suggest = None
3619
+ if key == "levelType":
3620
+ suggest = "level_type"
3621
+ elif key == "nodeHostName":
3622
+ suggest = "node_host_name"
3623
+ elif key == "nodeType":
3624
+ suggest = "node_type"
3625
+
3626
+ if suggest:
3627
+ pulumi.log.warn(f"Key '{key}' not found in BdsInstanceNodeReplaceConfigurationLevelTypeDetails. Access the value via the '{suggest}' property getter instead.")
3628
+
3629
+ def __getitem__(self, key: str) -> Any:
3630
+ BdsInstanceNodeReplaceConfigurationLevelTypeDetails.__key_warning(key)
3631
+ return super().__getitem__(key)
3632
+
3633
+ def get(self, key: str, default = None) -> Any:
3634
+ BdsInstanceNodeReplaceConfigurationLevelTypeDetails.__key_warning(key)
3635
+ return super().get(key, default)
3636
+
3637
+ def __init__(__self__, *,
3638
+ level_type: builtins.str,
3639
+ node_host_name: Optional[builtins.str] = None,
3640
+ node_type: Optional[builtins.str] = None):
3641
+ """
3642
+ :param builtins.str level_type: (Updatable) Type of level used to trigger the creation of a new node backup configuration or node replacement configuration. Accepted values are NODE_LEVEL and NODE_TYPE_LEVEL.
3643
+ :param builtins.str node_host_name: (Updatable) Host name of the node to create backup configuration.
3644
+ :param builtins.str node_type: (Updatable) Type of the node or nodes of the node backup configuration or node replacement configuration which are going to be created.
3645
+ """
3646
+ pulumi.set(__self__, "level_type", level_type)
3647
+ if node_host_name is not None:
3648
+ pulumi.set(__self__, "node_host_name", node_host_name)
3649
+ if node_type is not None:
3650
+ pulumi.set(__self__, "node_type", node_type)
3651
+
3652
+ @property
3653
+ @pulumi.getter(name="levelType")
3654
+ def level_type(self) -> builtins.str:
3655
+ """
3656
+ (Updatable) Type of level used to trigger the creation of a new node backup configuration or node replacement configuration. Accepted values are NODE_LEVEL and NODE_TYPE_LEVEL.
3657
+ """
3658
+ return pulumi.get(self, "level_type")
3659
+
3660
+ @property
3661
+ @pulumi.getter(name="nodeHostName")
3662
+ def node_host_name(self) -> Optional[builtins.str]:
3663
+ """
3664
+ (Updatable) Host name of the node to create backup configuration.
3665
+ """
3666
+ return pulumi.get(self, "node_host_name")
3667
+
3668
+ @property
3669
+ @pulumi.getter(name="nodeType")
3670
+ def node_type(self) -> Optional[builtins.str]:
3671
+ """
3672
+ (Updatable) Type of the node or nodes of the node backup configuration or node replacement configuration which are going to be created.
3673
+ """
3674
+ return pulumi.get(self, "node_type")
3675
+
3676
+
3467
3677
  @pulumi.output_type
3468
3678
  class BdsInstanceOperationCertificateManagementsManagementHostCertDetail(dict):
3469
3679
  @staticmethod
@@ -7736,6 +7946,594 @@ class GetBdsInstanceNodeAttachedBlockVolumeResult(dict):
7736
7946
  return pulumi.get(self, "volume_size_in_gbs")
7737
7947
 
7738
7948
 
7949
+ @pulumi.output_type
7950
+ class GetBdsInstanceNodeBackupConfigurationLevelTypeDetailResult(dict):
7951
+ def __init__(__self__, *,
7952
+ level_type: builtins.str,
7953
+ node_host_name: builtins.str,
7954
+ node_type: builtins.str):
7955
+ """
7956
+ :param builtins.str level_type: Type of level used to trigger the creation of a new node backup configuration or node replacement configuration.
7957
+ :param builtins.str node_host_name: Host name of the node to create backup configuration.
7958
+ :param builtins.str node_type: Type of the node or nodes of the node backup configuration or node replacement configuration which are going to be created.
7959
+ """
7960
+ pulumi.set(__self__, "level_type", level_type)
7961
+ pulumi.set(__self__, "node_host_name", node_host_name)
7962
+ pulumi.set(__self__, "node_type", node_type)
7963
+
7964
+ @property
7965
+ @pulumi.getter(name="levelType")
7966
+ def level_type(self) -> builtins.str:
7967
+ """
7968
+ Type of level used to trigger the creation of a new node backup configuration or node replacement configuration.
7969
+ """
7970
+ return pulumi.get(self, "level_type")
7971
+
7972
+ @property
7973
+ @pulumi.getter(name="nodeHostName")
7974
+ def node_host_name(self) -> builtins.str:
7975
+ """
7976
+ Host name of the node to create backup configuration.
7977
+ """
7978
+ return pulumi.get(self, "node_host_name")
7979
+
7980
+ @property
7981
+ @pulumi.getter(name="nodeType")
7982
+ def node_type(self) -> builtins.str:
7983
+ """
7984
+ Type of the node or nodes of the node backup configuration or node replacement configuration which are going to be created.
7985
+ """
7986
+ return pulumi.get(self, "node_type")
7987
+
7988
+
7989
+ @pulumi.output_type
7990
+ class GetBdsInstanceNodeBackupConfigurationsFilterResult(dict):
7991
+ def __init__(__self__, *,
7992
+ name: builtins.str,
7993
+ values: Sequence[builtins.str],
7994
+ regex: Optional[builtins.bool] = None):
7995
+ pulumi.set(__self__, "name", name)
7996
+ pulumi.set(__self__, "values", values)
7997
+ if regex is not None:
7998
+ pulumi.set(__self__, "regex", regex)
7999
+
8000
+ @property
8001
+ @pulumi.getter
8002
+ def name(self) -> builtins.str:
8003
+ return pulumi.get(self, "name")
8004
+
8005
+ @property
8006
+ @pulumi.getter
8007
+ def values(self) -> Sequence[builtins.str]:
8008
+ return pulumi.get(self, "values")
8009
+
8010
+ @property
8011
+ @pulumi.getter
8012
+ def regex(self) -> Optional[builtins.bool]:
8013
+ return pulumi.get(self, "regex")
8014
+
8015
+
8016
+ @pulumi.output_type
8017
+ class GetBdsInstanceNodeBackupConfigurationsNodeBackupConfigurationResult(dict):
8018
+ def __init__(__self__, *,
8019
+ backup_type: builtins.str,
8020
+ bds_instance_id: builtins.str,
8021
+ display_name: builtins.str,
8022
+ id: builtins.str,
8023
+ level_type_details: Sequence['outputs.GetBdsInstanceNodeBackupConfigurationsNodeBackupConfigurationLevelTypeDetailResult'],
8024
+ number_of_backups_to_retain: builtins.int,
8025
+ schedule: builtins.str,
8026
+ state: builtins.str,
8027
+ time_created: builtins.str,
8028
+ time_updated: builtins.str,
8029
+ timezone: builtins.str):
8030
+ """
8031
+ :param builtins.str backup_type: Incremental backup type includes only the changes since the last backup. Full backup type includes all changes since the volume was created.
8032
+ :param builtins.str bds_instance_id: The OCID of the cluster.
8033
+ :param builtins.str display_name: A filter to return only resources that match the entire display name given.
8034
+ :param builtins.str id: The unique identifier for the NodeBackupConfiguration.
8035
+ :param Sequence['GetBdsInstanceNodeBackupConfigurationsNodeBackupConfigurationLevelTypeDetailArgs'] level_type_details: Details of the type of level used to trigger the creation of a new node backup configuration or node replacement configuration.
8036
+ :param builtins.int number_of_backups_to_retain: Number of backup copies to retain.
8037
+ :param builtins.str schedule: 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.
8038
+ :param builtins.str state: The state of the NodeBackupConfiguration configuration.
8039
+ :param builtins.str time_created: The time the NodeBackupConfiguration was created, shown as an RFC 3339 formatted datetime string.
8040
+ :param builtins.str time_updated: The time the NodeBackupConfiguration was updated, shown as an RFC 3339 formatted datetime string.
8041
+ :param builtins.str timezone: The time zone of the execution schedule, in IANA time zone database name format
8042
+ """
8043
+ pulumi.set(__self__, "backup_type", backup_type)
8044
+ pulumi.set(__self__, "bds_instance_id", bds_instance_id)
8045
+ pulumi.set(__self__, "display_name", display_name)
8046
+ pulumi.set(__self__, "id", id)
8047
+ pulumi.set(__self__, "level_type_details", level_type_details)
8048
+ pulumi.set(__self__, "number_of_backups_to_retain", number_of_backups_to_retain)
8049
+ pulumi.set(__self__, "schedule", schedule)
8050
+ pulumi.set(__self__, "state", state)
8051
+ pulumi.set(__self__, "time_created", time_created)
8052
+ pulumi.set(__self__, "time_updated", time_updated)
8053
+ pulumi.set(__self__, "timezone", timezone)
8054
+
8055
+ @property
8056
+ @pulumi.getter(name="backupType")
8057
+ def backup_type(self) -> builtins.str:
8058
+ """
8059
+ Incremental backup type includes only the changes since the last backup. Full backup type includes all changes since the volume was created.
8060
+ """
8061
+ return pulumi.get(self, "backup_type")
8062
+
8063
+ @property
8064
+ @pulumi.getter(name="bdsInstanceId")
8065
+ def bds_instance_id(self) -> builtins.str:
8066
+ """
8067
+ The OCID of the cluster.
8068
+ """
8069
+ return pulumi.get(self, "bds_instance_id")
8070
+
8071
+ @property
8072
+ @pulumi.getter(name="displayName")
8073
+ def display_name(self) -> builtins.str:
8074
+ """
8075
+ A filter to return only resources that match the entire display name given.
8076
+ """
8077
+ return pulumi.get(self, "display_name")
8078
+
8079
+ @property
8080
+ @pulumi.getter
8081
+ def id(self) -> builtins.str:
8082
+ """
8083
+ The unique identifier for the NodeBackupConfiguration.
8084
+ """
8085
+ return pulumi.get(self, "id")
8086
+
8087
+ @property
8088
+ @pulumi.getter(name="levelTypeDetails")
8089
+ def level_type_details(self) -> Sequence['outputs.GetBdsInstanceNodeBackupConfigurationsNodeBackupConfigurationLevelTypeDetailResult']:
8090
+ """
8091
+ Details of the type of level used to trigger the creation of a new node backup configuration or node replacement configuration.
8092
+ """
8093
+ return pulumi.get(self, "level_type_details")
8094
+
8095
+ @property
8096
+ @pulumi.getter(name="numberOfBackupsToRetain")
8097
+ def number_of_backups_to_retain(self) -> builtins.int:
8098
+ """
8099
+ Number of backup copies to retain.
8100
+ """
8101
+ return pulumi.get(self, "number_of_backups_to_retain")
8102
+
8103
+ @property
8104
+ @pulumi.getter
8105
+ def schedule(self) -> builtins.str:
8106
+ """
8107
+ 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.
8108
+ """
8109
+ return pulumi.get(self, "schedule")
8110
+
8111
+ @property
8112
+ @pulumi.getter
8113
+ def state(self) -> builtins.str:
8114
+ """
8115
+ The state of the NodeBackupConfiguration configuration.
8116
+ """
8117
+ return pulumi.get(self, "state")
8118
+
8119
+ @property
8120
+ @pulumi.getter(name="timeCreated")
8121
+ def time_created(self) -> builtins.str:
8122
+ """
8123
+ The time the NodeBackupConfiguration was created, shown as an RFC 3339 formatted datetime string.
8124
+ """
8125
+ return pulumi.get(self, "time_created")
8126
+
8127
+ @property
8128
+ @pulumi.getter(name="timeUpdated")
8129
+ def time_updated(self) -> builtins.str:
8130
+ """
8131
+ The time the NodeBackupConfiguration was updated, shown as an RFC 3339 formatted datetime string.
8132
+ """
8133
+ return pulumi.get(self, "time_updated")
8134
+
8135
+ @property
8136
+ @pulumi.getter
8137
+ def timezone(self) -> builtins.str:
8138
+ """
8139
+ The time zone of the execution schedule, in IANA time zone database name format
8140
+ """
8141
+ return pulumi.get(self, "timezone")
8142
+
8143
+
8144
+ @pulumi.output_type
8145
+ class GetBdsInstanceNodeBackupConfigurationsNodeBackupConfigurationLevelTypeDetailResult(dict):
8146
+ def __init__(__self__, *,
8147
+ level_type: builtins.str,
8148
+ node_host_name: builtins.str,
8149
+ node_type: builtins.str):
8150
+ """
8151
+ :param builtins.str level_type: Type of level used to trigger the creation of a new node backup configuration or node replacement configuration.
8152
+ :param builtins.str node_host_name: Host name of the node to create backup configuration.
8153
+ :param builtins.str node_type: Type of the node or nodes of the node backup configuration or node replacement configuration which are going to be created.
8154
+ """
8155
+ pulumi.set(__self__, "level_type", level_type)
8156
+ pulumi.set(__self__, "node_host_name", node_host_name)
8157
+ pulumi.set(__self__, "node_type", node_type)
8158
+
8159
+ @property
8160
+ @pulumi.getter(name="levelType")
8161
+ def level_type(self) -> builtins.str:
8162
+ """
8163
+ Type of level used to trigger the creation of a new node backup configuration or node replacement configuration.
8164
+ """
8165
+ return pulumi.get(self, "level_type")
8166
+
8167
+ @property
8168
+ @pulumi.getter(name="nodeHostName")
8169
+ def node_host_name(self) -> builtins.str:
8170
+ """
8171
+ Host name of the node to create backup configuration.
8172
+ """
8173
+ return pulumi.get(self, "node_host_name")
8174
+
8175
+ @property
8176
+ @pulumi.getter(name="nodeType")
8177
+ def node_type(self) -> builtins.str:
8178
+ """
8179
+ Type of the node or nodes of the node backup configuration or node replacement configuration which are going to be created.
8180
+ """
8181
+ return pulumi.get(self, "node_type")
8182
+
8183
+
8184
+ @pulumi.output_type
8185
+ class GetBdsInstanceNodeBackupsFilterResult(dict):
8186
+ def __init__(__self__, *,
8187
+ name: builtins.str,
8188
+ values: Sequence[builtins.str],
8189
+ regex: Optional[builtins.bool] = None):
8190
+ pulumi.set(__self__, "name", name)
8191
+ pulumi.set(__self__, "values", values)
8192
+ if regex is not None:
8193
+ pulumi.set(__self__, "regex", regex)
8194
+
8195
+ @property
8196
+ @pulumi.getter
8197
+ def name(self) -> builtins.str:
8198
+ return pulumi.get(self, "name")
8199
+
8200
+ @property
8201
+ @pulumi.getter
8202
+ def values(self) -> Sequence[builtins.str]:
8203
+ return pulumi.get(self, "values")
8204
+
8205
+ @property
8206
+ @pulumi.getter
8207
+ def regex(self) -> Optional[builtins.bool]:
8208
+ return pulumi.get(self, "regex")
8209
+
8210
+
8211
+ @pulumi.output_type
8212
+ class GetBdsInstanceNodeBackupsNodeBackupResult(dict):
8213
+ def __init__(__self__, *,
8214
+ backup_trigger_type: builtins.str,
8215
+ backup_type: builtins.str,
8216
+ display_name: builtins.str,
8217
+ id: builtins.str,
8218
+ node_backup_config_id: builtins.str,
8219
+ node_host_name: builtins.str,
8220
+ node_instance_id: builtins.str,
8221
+ state: builtins.str,
8222
+ time_created: builtins.str):
8223
+ """
8224
+ :param builtins.str backup_trigger_type: type based on how backup action was initiated.
8225
+ :param builtins.str backup_type: Incremental backup type includes only the changes since the last backup. Full backup type includes all changes since the volume was created.
8226
+ :param builtins.str display_name: The display name belonged to the node backup.
8227
+ :param builtins.str id: The id of the node backup.
8228
+ :param builtins.str node_backup_config_id: The ID of the nodeBackupConfiguration if the NodeBackup is automatically created by applying the configuration.
8229
+ :param builtins.str node_host_name: The node host name belonged to a node that has a node backup.
8230
+ :param builtins.str node_instance_id: The instance OCID of the node, which is the resource from which the node backup was acquired.
8231
+ :param builtins.str state: The state of the Node's Backup.
8232
+ :param builtins.str time_created: The time the cluster was created, shown as an RFC 3339 formatted datetime string.
8233
+ """
8234
+ pulumi.set(__self__, "backup_trigger_type", backup_trigger_type)
8235
+ pulumi.set(__self__, "backup_type", backup_type)
8236
+ pulumi.set(__self__, "display_name", display_name)
8237
+ pulumi.set(__self__, "id", id)
8238
+ pulumi.set(__self__, "node_backup_config_id", node_backup_config_id)
8239
+ pulumi.set(__self__, "node_host_name", node_host_name)
8240
+ pulumi.set(__self__, "node_instance_id", node_instance_id)
8241
+ pulumi.set(__self__, "state", state)
8242
+ pulumi.set(__self__, "time_created", time_created)
8243
+
8244
+ @property
8245
+ @pulumi.getter(name="backupTriggerType")
8246
+ def backup_trigger_type(self) -> builtins.str:
8247
+ """
8248
+ type based on how backup action was initiated.
8249
+ """
8250
+ return pulumi.get(self, "backup_trigger_type")
8251
+
8252
+ @property
8253
+ @pulumi.getter(name="backupType")
8254
+ def backup_type(self) -> builtins.str:
8255
+ """
8256
+ Incremental backup type includes only the changes since the last backup. Full backup type includes all changes since the volume was created.
8257
+ """
8258
+ return pulumi.get(self, "backup_type")
8259
+
8260
+ @property
8261
+ @pulumi.getter(name="displayName")
8262
+ def display_name(self) -> builtins.str:
8263
+ """
8264
+ The display name belonged to the node backup.
8265
+ """
8266
+ return pulumi.get(self, "display_name")
8267
+
8268
+ @property
8269
+ @pulumi.getter
8270
+ def id(self) -> builtins.str:
8271
+ """
8272
+ The id of the node backup.
8273
+ """
8274
+ return pulumi.get(self, "id")
8275
+
8276
+ @property
8277
+ @pulumi.getter(name="nodeBackupConfigId")
8278
+ def node_backup_config_id(self) -> builtins.str:
8279
+ """
8280
+ The ID of the nodeBackupConfiguration if the NodeBackup is automatically created by applying the configuration.
8281
+ """
8282
+ return pulumi.get(self, "node_backup_config_id")
8283
+
8284
+ @property
8285
+ @pulumi.getter(name="nodeHostName")
8286
+ def node_host_name(self) -> builtins.str:
8287
+ """
8288
+ The node host name belonged to a node that has a node backup.
8289
+ """
8290
+ return pulumi.get(self, "node_host_name")
8291
+
8292
+ @property
8293
+ @pulumi.getter(name="nodeInstanceId")
8294
+ def node_instance_id(self) -> builtins.str:
8295
+ """
8296
+ The instance OCID of the node, which is the resource from which the node backup was acquired.
8297
+ """
8298
+ return pulumi.get(self, "node_instance_id")
8299
+
8300
+ @property
8301
+ @pulumi.getter
8302
+ def state(self) -> builtins.str:
8303
+ """
8304
+ The state of the Node's Backup.
8305
+ """
8306
+ return pulumi.get(self, "state")
8307
+
8308
+ @property
8309
+ @pulumi.getter(name="timeCreated")
8310
+ def time_created(self) -> builtins.str:
8311
+ """
8312
+ The time the cluster was created, shown as an RFC 3339 formatted datetime string.
8313
+ """
8314
+ return pulumi.get(self, "time_created")
8315
+
8316
+
8317
+ @pulumi.output_type
8318
+ class GetBdsInstanceNodeReplaceConfigurationLevelTypeDetailResult(dict):
8319
+ def __init__(__self__, *,
8320
+ level_type: builtins.str,
8321
+ node_host_name: builtins.str,
8322
+ node_type: builtins.str):
8323
+ """
8324
+ :param builtins.str level_type: Type of level used to trigger the creation of a new node backup configuration or node replacement configuration.
8325
+ :param builtins.str node_host_name: Host name of the node to create backup configuration.
8326
+ :param builtins.str node_type: Type of the node or nodes of the node backup configuration or node replacement configuration which are going to be created.
8327
+ """
8328
+ pulumi.set(__self__, "level_type", level_type)
8329
+ pulumi.set(__self__, "node_host_name", node_host_name)
8330
+ pulumi.set(__self__, "node_type", node_type)
8331
+
8332
+ @property
8333
+ @pulumi.getter(name="levelType")
8334
+ def level_type(self) -> builtins.str:
8335
+ """
8336
+ Type of level used to trigger the creation of a new node backup configuration or node replacement configuration.
8337
+ """
8338
+ return pulumi.get(self, "level_type")
8339
+
8340
+ @property
8341
+ @pulumi.getter(name="nodeHostName")
8342
+ def node_host_name(self) -> builtins.str:
8343
+ """
8344
+ Host name of the node to create backup configuration.
8345
+ """
8346
+ return pulumi.get(self, "node_host_name")
8347
+
8348
+ @property
8349
+ @pulumi.getter(name="nodeType")
8350
+ def node_type(self) -> builtins.str:
8351
+ """
8352
+ Type of the node or nodes of the node backup configuration or node replacement configuration which are going to be created.
8353
+ """
8354
+ return pulumi.get(self, "node_type")
8355
+
8356
+
8357
+ @pulumi.output_type
8358
+ class GetBdsInstanceNodeReplaceConfigurationsFilterResult(dict):
8359
+ def __init__(__self__, *,
8360
+ name: builtins.str,
8361
+ values: Sequence[builtins.str],
8362
+ regex: Optional[builtins.bool] = None):
8363
+ pulumi.set(__self__, "name", name)
8364
+ pulumi.set(__self__, "values", values)
8365
+ if regex is not None:
8366
+ pulumi.set(__self__, "regex", regex)
8367
+
8368
+ @property
8369
+ @pulumi.getter
8370
+ def name(self) -> builtins.str:
8371
+ return pulumi.get(self, "name")
8372
+
8373
+ @property
8374
+ @pulumi.getter
8375
+ def values(self) -> Sequence[builtins.str]:
8376
+ return pulumi.get(self, "values")
8377
+
8378
+ @property
8379
+ @pulumi.getter
8380
+ def regex(self) -> Optional[builtins.bool]:
8381
+ return pulumi.get(self, "regex")
8382
+
8383
+
8384
+ @pulumi.output_type
8385
+ class GetBdsInstanceNodeReplaceConfigurationsNodeReplaceConfigurationResult(dict):
8386
+ def __init__(__self__, *,
8387
+ bds_instance_id: builtins.str,
8388
+ cluster_admin_password: builtins.str,
8389
+ display_name: builtins.str,
8390
+ duration_in_minutes: builtins.int,
8391
+ id: builtins.str,
8392
+ level_type_details: Sequence['outputs.GetBdsInstanceNodeReplaceConfigurationsNodeReplaceConfigurationLevelTypeDetailResult'],
8393
+ metric_type: builtins.str,
8394
+ state: builtins.str,
8395
+ time_created: builtins.str,
8396
+ time_updated: builtins.str):
8397
+ """
8398
+ :param builtins.str bds_instance_id: The OCID of the cluster.
8399
+ :param builtins.str display_name: A filter to return only resources that match the entire display name given.
8400
+ :param builtins.int duration_in_minutes: This value is the minimum period of time to wait for metric emission before triggering node replacement. The value is in minutes.
8401
+ :param builtins.str id: The unique identifier for the NodeReplaceConfiguration.
8402
+ :param Sequence['GetBdsInstanceNodeReplaceConfigurationsNodeReplaceConfigurationLevelTypeDetailArgs'] level_type_details: Details of the type of level used to trigger the creation of a new node backup configuration or node replacement configuration.
8403
+ :param builtins.str metric_type: Type of compute instance health metric to use for node replacement
8404
+ :param builtins.str state: The state of the NodeReplaceConfiguration.
8405
+ :param builtins.str time_created: The time the NodeReplaceConfiguration was created, shown as an RFC 3339 formatted datetime string.
8406
+ :param builtins.str time_updated: The time the NodeReplaceConfiguration was updated, shown as an RFC 3339 formatted datetime string.
8407
+ """
8408
+ pulumi.set(__self__, "bds_instance_id", bds_instance_id)
8409
+ pulumi.set(__self__, "cluster_admin_password", cluster_admin_password)
8410
+ pulumi.set(__self__, "display_name", display_name)
8411
+ pulumi.set(__self__, "duration_in_minutes", duration_in_minutes)
8412
+ pulumi.set(__self__, "id", id)
8413
+ pulumi.set(__self__, "level_type_details", level_type_details)
8414
+ pulumi.set(__self__, "metric_type", metric_type)
8415
+ pulumi.set(__self__, "state", state)
8416
+ pulumi.set(__self__, "time_created", time_created)
8417
+ pulumi.set(__self__, "time_updated", time_updated)
8418
+
8419
+ @property
8420
+ @pulumi.getter(name="bdsInstanceId")
8421
+ def bds_instance_id(self) -> builtins.str:
8422
+ """
8423
+ The OCID of the cluster.
8424
+ """
8425
+ return pulumi.get(self, "bds_instance_id")
8426
+
8427
+ @property
8428
+ @pulumi.getter(name="clusterAdminPassword")
8429
+ def cluster_admin_password(self) -> builtins.str:
8430
+ return pulumi.get(self, "cluster_admin_password")
8431
+
8432
+ @property
8433
+ @pulumi.getter(name="displayName")
8434
+ def display_name(self) -> builtins.str:
8435
+ """
8436
+ A filter to return only resources that match the entire display name given.
8437
+ """
8438
+ return pulumi.get(self, "display_name")
8439
+
8440
+ @property
8441
+ @pulumi.getter(name="durationInMinutes")
8442
+ def duration_in_minutes(self) -> builtins.int:
8443
+ """
8444
+ This value is the minimum period of time to wait for metric emission before triggering node replacement. The value is in minutes.
8445
+ """
8446
+ return pulumi.get(self, "duration_in_minutes")
8447
+
8448
+ @property
8449
+ @pulumi.getter
8450
+ def id(self) -> builtins.str:
8451
+ """
8452
+ The unique identifier for the NodeReplaceConfiguration.
8453
+ """
8454
+ return pulumi.get(self, "id")
8455
+
8456
+ @property
8457
+ @pulumi.getter(name="levelTypeDetails")
8458
+ def level_type_details(self) -> Sequence['outputs.GetBdsInstanceNodeReplaceConfigurationsNodeReplaceConfigurationLevelTypeDetailResult']:
8459
+ """
8460
+ Details of the type of level used to trigger the creation of a new node backup configuration or node replacement configuration.
8461
+ """
8462
+ return pulumi.get(self, "level_type_details")
8463
+
8464
+ @property
8465
+ @pulumi.getter(name="metricType")
8466
+ def metric_type(self) -> builtins.str:
8467
+ """
8468
+ Type of compute instance health metric to use for node replacement
8469
+ """
8470
+ return pulumi.get(self, "metric_type")
8471
+
8472
+ @property
8473
+ @pulumi.getter
8474
+ def state(self) -> builtins.str:
8475
+ """
8476
+ The state of the NodeReplaceConfiguration.
8477
+ """
8478
+ return pulumi.get(self, "state")
8479
+
8480
+ @property
8481
+ @pulumi.getter(name="timeCreated")
8482
+ def time_created(self) -> builtins.str:
8483
+ """
8484
+ The time the NodeReplaceConfiguration was created, shown as an RFC 3339 formatted datetime string.
8485
+ """
8486
+ return pulumi.get(self, "time_created")
8487
+
8488
+ @property
8489
+ @pulumi.getter(name="timeUpdated")
8490
+ def time_updated(self) -> builtins.str:
8491
+ """
8492
+ The time the NodeReplaceConfiguration was updated, shown as an RFC 3339 formatted datetime string.
8493
+ """
8494
+ return pulumi.get(self, "time_updated")
8495
+
8496
+
8497
+ @pulumi.output_type
8498
+ class GetBdsInstanceNodeReplaceConfigurationsNodeReplaceConfigurationLevelTypeDetailResult(dict):
8499
+ def __init__(__self__, *,
8500
+ level_type: builtins.str,
8501
+ node_host_name: builtins.str,
8502
+ node_type: builtins.str):
8503
+ """
8504
+ :param builtins.str level_type: Type of level used to trigger the creation of a new node backup configuration or node replacement configuration.
8505
+ :param builtins.str node_host_name: Host name of the node to create backup configuration.
8506
+ :param builtins.str node_type: Type of the node or nodes of the node backup configuration or node replacement configuration which are going to be created.
8507
+ """
8508
+ pulumi.set(__self__, "level_type", level_type)
8509
+ pulumi.set(__self__, "node_host_name", node_host_name)
8510
+ pulumi.set(__self__, "node_type", node_type)
8511
+
8512
+ @property
8513
+ @pulumi.getter(name="levelType")
8514
+ def level_type(self) -> builtins.str:
8515
+ """
8516
+ Type of level used to trigger the creation of a new node backup configuration or node replacement configuration.
8517
+ """
8518
+ return pulumi.get(self, "level_type")
8519
+
8520
+ @property
8521
+ @pulumi.getter(name="nodeHostName")
8522
+ def node_host_name(self) -> builtins.str:
8523
+ """
8524
+ Host name of the node to create backup configuration.
8525
+ """
8526
+ return pulumi.get(self, "node_host_name")
8527
+
8528
+ @property
8529
+ @pulumi.getter(name="nodeType")
8530
+ def node_type(self) -> builtins.str:
8531
+ """
8532
+ Type of the node or nodes of the node backup configuration or node replacement configuration which are going to be created.
8533
+ """
8534
+ return pulumi.get(self, "node_type")
8535
+
8536
+
7739
8537
  @pulumi.output_type
7740
8538
  class GetBdsInstancePatchHistoriesFilterResult(dict):
7741
8539
  def __init__(__self__, *,