pulumi-oci 2.4.0a1721933648__py3-none-any.whl → 2.5.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.
- pulumi_oci/__init__.py +59 -32
- pulumi_oci/_utilities.py +2 -0
- pulumi_oci/bigdataservice/bds_instance.py +47 -0
- pulumi_oci/bigdataservice/get_bds_instance.py +11 -1
- pulumi_oci/bigdataservice/outputs.py +7 -0
- pulumi_oci/core/__init__.py +3 -0
- pulumi_oci/core/_inputs.py +40 -0
- pulumi_oci/core/get_instance_maintenance_event.py +414 -0
- pulumi_oci/core/get_instance_maintenance_events.py +250 -0
- pulumi_oci/core/instance_maintenance_event.py +1022 -0
- pulumi_oci/core/outputs.py +314 -0
- pulumi_oci/database/autonomous_database.py +28 -0
- pulumi_oci/database/get_autonomous_database.py +14 -1
- pulumi_oci/database/outputs.py +22 -0
- pulumi_oci/databasemigration/_inputs.py +184 -0
- pulumi_oci/databasemigration/job.py +99 -24
- pulumi_oci/databasemigration/outputs.py +171 -0
- pulumi_oci/datasafe/__init__.py +2 -4
- pulumi_oci/datasafe/_inputs.py +55 -0
- pulumi_oci/datasafe/alert.py +56 -0
- pulumi_oci/datasafe/alert_policy.py +745 -0
- pulumi_oci/datasafe/alert_policy_rule.py +446 -0
- pulumi_oci/datasafe/get_alert.py +27 -1
- pulumi_oci/datasafe/get_alert_policy.py +26 -2
- pulumi_oci/datasafe/get_alert_policy_rule.py +94 -18
- pulumi_oci/datasafe/get_report.py +14 -1
- pulumi_oci/datasafe/get_report_definition.py +14 -1
- pulumi_oci/datasafe/get_target_alert_policy_association.py +15 -2
- pulumi_oci/datasafe/outputs.py +231 -27
- pulumi_oci/datasafe/report.py +28 -0
- pulumi_oci/datasafe/report_definition.py +28 -0
- pulumi_oci/datasafe/target_alert_policy_association.py +28 -0
- pulumi_oci/fleetsoftwareupdate/__init__.py +15 -0
- pulumi_oci/fleetsoftwareupdate/_inputs.py +553 -0
- pulumi_oci/fleetsoftwareupdate/fsu_collection.py +514 -0
- pulumi_oci/fleetsoftwareupdate/fsu_cycle.py +812 -0
- pulumi_oci/fleetsoftwareupdate/get_fsu_collection.py +225 -0
- pulumi_oci/fleetsoftwareupdate/get_fsu_collections.py +141 -0
- pulumi_oci/fleetsoftwareupdate/get_fsu_cycle.py +325 -0
- pulumi_oci/fleetsoftwareupdate/get_fsu_cycles.py +167 -0
- pulumi_oci/fleetsoftwareupdate/outputs.py +1481 -0
- pulumi_oci/generativeai/get_dedicated_ai_cluster.py +3 -0
- pulumi_oci/generativeai/get_dedicated_ai_clusters.py +3 -0
- pulumi_oci/generativeai/get_endpoint.py +6 -9
- pulumi_oci/generativeai/get_endpoints.py +3 -3
- pulumi_oci/generativeai/get_model.py +36 -6
- pulumi_oci/generativeai/get_models.py +6 -0
- pulumi_oci/generativeai/outputs.py +228 -16
- pulumi_oci/identity/__init__.py +3 -0
- pulumi_oci/identity/_inputs.py +1029 -0
- pulumi_oci/identity/domains_social_identity_provider.py +4628 -0
- pulumi_oci/identity/get_domains_social_identity_provider.py +664 -0
- pulumi_oci/identity/get_domains_social_identity_providers.py +276 -0
- pulumi_oci/identity/outputs.py +19544 -17378
- pulumi_oci/networkfirewall/__init__.py +3 -0
- pulumi_oci/networkfirewall/_inputs.py +150 -0
- pulumi_oci/networkfirewall/get_network_firewall_policy_tunnel_inspection_rule.py +227 -0
- pulumi_oci/networkfirewall/get_network_firewall_policy_tunnel_inspection_rules.py +167 -0
- pulumi_oci/networkfirewall/network_firewall_policy_tunnel_inspection_rule.py +605 -0
- pulumi_oci/networkfirewall/outputs.py +457 -0
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/redis/get_redis_cluster.py +1 -1
- pulumi_oci/redis/outputs.py +2 -2
- pulumi_oci/redis/redis_cluster.py +7 -7
- pulumi_oci/stackmonitoring/_inputs.py +2 -2
- pulumi_oci/stackmonitoring/baselineable_metric.py +76 -28
- pulumi_oci/stackmonitoring/get_baselineable_metric.py +14 -1
- pulumi_oci/stackmonitoring/get_baselineable_metrics.py +45 -5
- pulumi_oci/stackmonitoring/outputs.py +19 -8
- {pulumi_oci-2.4.0a1721933648.dist-info → pulumi_oci-2.5.0.dist-info}/METADATA +1 -1
- {pulumi_oci-2.4.0a1721933648.dist-info → pulumi_oci-2.5.0.dist-info}/RECORD +73 -57
- {pulumi_oci-2.4.0a1721933648.dist-info → pulumi_oci-2.5.0.dist-info}/WHEEL +1 -1
- pulumi_oci/datasafe/masking_policy_health_report_management.py +0 -453
- pulumi_oci/datasafe/masking_report_management.py +0 -693
- pulumi_oci/datasafe/set_security_assessment_baseline_management.py +0 -304
- pulumi_oci/datasafe/set_user_assessment_baseline_management.py +0 -304
- {pulumi_oci-2.4.0a1721933648.dist-info → pulumi_oci-2.5.0.dist-info}/top_level.txt +0 -0
pulumi_oci/__init__.py
CHANGED
@@ -107,6 +107,8 @@ if typing.TYPE_CHECKING:
|
|
107
107
|
events = __events
|
108
108
|
import pulumi_oci.filestorage as __filestorage
|
109
109
|
filestorage = __filestorage
|
110
|
+
import pulumi_oci.fleetsoftwareupdate as __fleetsoftwareupdate
|
111
|
+
fleetsoftwareupdate = __fleetsoftwareupdate
|
110
112
|
import pulumi_oci.functions as __functions
|
111
113
|
functions = __functions
|
112
114
|
import pulumi_oci.fusionapps as __fusionapps
|
@@ -291,6 +293,7 @@ else:
|
|
291
293
|
email = _utilities.lazy_import('pulumi_oci.email')
|
292
294
|
events = _utilities.lazy_import('pulumi_oci.events')
|
293
295
|
filestorage = _utilities.lazy_import('pulumi_oci.filestorage')
|
296
|
+
fleetsoftwareupdate = _utilities.lazy_import('pulumi_oci.fleetsoftwareupdate')
|
294
297
|
functions = _utilities.lazy_import('pulumi_oci.functions')
|
295
298
|
fusionapps = _utilities.lazy_import('pulumi_oci.fusionapps')
|
296
299
|
generativeai = _utilities.lazy_import('pulumi_oci.generativeai')
|
@@ -1410,6 +1413,14 @@ _utilities.register(
|
|
1410
1413
|
"oci:Core/instanceConsoleConnection:InstanceConsoleConnection": "InstanceConsoleConnection"
|
1411
1414
|
}
|
1412
1415
|
},
|
1416
|
+
{
|
1417
|
+
"pkg": "oci",
|
1418
|
+
"mod": "Core/instanceMaintenanceEvent",
|
1419
|
+
"fqn": "pulumi_oci.core",
|
1420
|
+
"classes": {
|
1421
|
+
"oci:Core/instanceMaintenanceEvent:InstanceMaintenanceEvent": "InstanceMaintenanceEvent"
|
1422
|
+
}
|
1423
|
+
},
|
1413
1424
|
{
|
1414
1425
|
"pkg": "oci",
|
1415
1426
|
"mod": "Core/instancePool",
|
@@ -1882,6 +1893,22 @@ _utilities.register(
|
|
1882
1893
|
"oci:DataSafe/alert:Alert": "Alert"
|
1883
1894
|
}
|
1884
1895
|
},
|
1896
|
+
{
|
1897
|
+
"pkg": "oci",
|
1898
|
+
"mod": "DataSafe/alertPolicy",
|
1899
|
+
"fqn": "pulumi_oci.datasafe",
|
1900
|
+
"classes": {
|
1901
|
+
"oci:DataSafe/alertPolicy:AlertPolicy": "AlertPolicy"
|
1902
|
+
}
|
1903
|
+
},
|
1904
|
+
{
|
1905
|
+
"pkg": "oci",
|
1906
|
+
"mod": "DataSafe/alertPolicyRule",
|
1907
|
+
"fqn": "pulumi_oci.datasafe",
|
1908
|
+
"classes": {
|
1909
|
+
"oci:DataSafe/alertPolicyRule:AlertPolicyRule": "AlertPolicyRule"
|
1910
|
+
}
|
1911
|
+
},
|
1885
1912
|
{
|
1886
1913
|
"pkg": "oci",
|
1887
1914
|
"mod": "DataSafe/auditArchiveRetrieval",
|
@@ -2042,22 +2069,6 @@ _utilities.register(
|
|
2042
2069
|
"oci:DataSafe/maskingPolicy:MaskingPolicy": "MaskingPolicy"
|
2043
2070
|
}
|
2044
2071
|
},
|
2045
|
-
{
|
2046
|
-
"pkg": "oci",
|
2047
|
-
"mod": "DataSafe/maskingPolicyHealthReportManagement",
|
2048
|
-
"fqn": "pulumi_oci.datasafe",
|
2049
|
-
"classes": {
|
2050
|
-
"oci:DataSafe/maskingPolicyHealthReportManagement:MaskingPolicyHealthReportManagement": "MaskingPolicyHealthReportManagement"
|
2051
|
-
}
|
2052
|
-
},
|
2053
|
-
{
|
2054
|
-
"pkg": "oci",
|
2055
|
-
"mod": "DataSafe/maskingReportManagement",
|
2056
|
-
"fqn": "pulumi_oci.datasafe",
|
2057
|
-
"classes": {
|
2058
|
-
"oci:DataSafe/maskingReportManagement:MaskingReportManagement": "MaskingReportManagement"
|
2059
|
-
}
|
2060
|
-
},
|
2061
2072
|
{
|
2062
2073
|
"pkg": "oci",
|
2063
2074
|
"mod": "DataSafe/onPremConnector",
|
@@ -2170,14 +2181,6 @@ _utilities.register(
|
|
2170
2181
|
"oci:DataSafe/setSecurityAssessmentBaseline:SetSecurityAssessmentBaseline": "SetSecurityAssessmentBaseline"
|
2171
2182
|
}
|
2172
2183
|
},
|
2173
|
-
{
|
2174
|
-
"pkg": "oci",
|
2175
|
-
"mod": "DataSafe/setSecurityAssessmentBaselineManagement",
|
2176
|
-
"fqn": "pulumi_oci.datasafe",
|
2177
|
-
"classes": {
|
2178
|
-
"oci:DataSafe/setSecurityAssessmentBaselineManagement:SetSecurityAssessmentBaselineManagement": "SetSecurityAssessmentBaselineManagement"
|
2179
|
-
}
|
2180
|
-
},
|
2181
2184
|
{
|
2182
2185
|
"pkg": "oci",
|
2183
2186
|
"mod": "DataSafe/setUserAssessmentBaseline",
|
@@ -2186,14 +2189,6 @@ _utilities.register(
|
|
2186
2189
|
"oci:DataSafe/setUserAssessmentBaseline:SetUserAssessmentBaseline": "SetUserAssessmentBaseline"
|
2187
2190
|
}
|
2188
2191
|
},
|
2189
|
-
{
|
2190
|
-
"pkg": "oci",
|
2191
|
-
"mod": "DataSafe/setUserAssessmentBaselineManagement",
|
2192
|
-
"fqn": "pulumi_oci.datasafe",
|
2193
|
-
"classes": {
|
2194
|
-
"oci:DataSafe/setUserAssessmentBaselineManagement:SetUserAssessmentBaselineManagement": "SetUserAssessmentBaselineManagement"
|
2195
|
-
}
|
2196
|
-
},
|
2197
2192
|
{
|
2198
2193
|
"pkg": "oci",
|
2199
2194
|
"mod": "DataSafe/sqlCollection",
|
@@ -3474,6 +3469,22 @@ _utilities.register(
|
|
3474
3469
|
"oci:FileStorage/snapshot:Snapshot": "Snapshot"
|
3475
3470
|
}
|
3476
3471
|
},
|
3472
|
+
{
|
3473
|
+
"pkg": "oci",
|
3474
|
+
"mod": "FleetSoftwareUpdate/fsuCollection",
|
3475
|
+
"fqn": "pulumi_oci.fleetsoftwareupdate",
|
3476
|
+
"classes": {
|
3477
|
+
"oci:FleetSoftwareUpdate/fsuCollection:FsuCollection": "FsuCollection"
|
3478
|
+
}
|
3479
|
+
},
|
3480
|
+
{
|
3481
|
+
"pkg": "oci",
|
3482
|
+
"mod": "FleetSoftwareUpdate/fsuCycle",
|
3483
|
+
"fqn": "pulumi_oci.fleetsoftwareupdate",
|
3484
|
+
"classes": {
|
3485
|
+
"oci:FleetSoftwareUpdate/fsuCycle:FsuCycle": "FsuCycle"
|
3486
|
+
}
|
3487
|
+
},
|
3477
3488
|
{
|
3478
3489
|
"pkg": "oci",
|
3479
3490
|
"mod": "Functions/application",
|
@@ -4074,6 +4085,14 @@ _utilities.register(
|
|
4074
4085
|
"oci:Identity/domainsSmtpCredential:DomainsSmtpCredential": "DomainsSmtpCredential"
|
4075
4086
|
}
|
4076
4087
|
},
|
4088
|
+
{
|
4089
|
+
"pkg": "oci",
|
4090
|
+
"mod": "Identity/domainsSocialIdentityProvider",
|
4091
|
+
"fqn": "pulumi_oci.identity",
|
4092
|
+
"classes": {
|
4093
|
+
"oci:Identity/domainsSocialIdentityProvider:DomainsSocialIdentityProvider": "DomainsSocialIdentityProvider"
|
4094
|
+
}
|
4095
|
+
},
|
4077
4096
|
{
|
4078
4097
|
"pkg": "oci",
|
4079
4098
|
"mod": "Identity/domainsUser",
|
@@ -4898,6 +4917,14 @@ _utilities.register(
|
|
4898
4917
|
"oci:NetworkFirewall/networkFirewallPolicyServiceList:NetworkFirewallPolicyServiceList": "NetworkFirewallPolicyServiceList"
|
4899
4918
|
}
|
4900
4919
|
},
|
4920
|
+
{
|
4921
|
+
"pkg": "oci",
|
4922
|
+
"mod": "NetworkFirewall/networkFirewallPolicyTunnelInspectionRule",
|
4923
|
+
"fqn": "pulumi_oci.networkfirewall",
|
4924
|
+
"classes": {
|
4925
|
+
"oci:NetworkFirewall/networkFirewallPolicyTunnelInspectionRule:NetworkFirewallPolicyTunnelInspectionRule": "NetworkFirewallPolicyTunnelInspectionRule"
|
4926
|
+
}
|
4927
|
+
},
|
4901
4928
|
{
|
4902
4929
|
"pkg": "oci",
|
4903
4930
|
"mod": "NetworkFirewall/networkFirewallPolicyUrlList",
|
pulumi_oci/_utilities.py
CHANGED
@@ -13,10 +13,12 @@ import os
|
|
13
13
|
import sys
|
14
14
|
import typing
|
15
15
|
import warnings
|
16
|
+
import base64
|
16
17
|
|
17
18
|
import pulumi
|
18
19
|
import pulumi.runtime
|
19
20
|
from pulumi.runtime.sync_await import _sync_await
|
21
|
+
from pulumi.runtime.proto import resource_pb2
|
20
22
|
|
21
23
|
from semver import VersionInfo as SemverVersion
|
22
24
|
from parver import Version as PEP440Version
|
@@ -33,6 +33,7 @@ class BdsInstanceArgs:
|
|
33
33
|
defined_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
34
34
|
edge_node: Optional[pulumi.Input['BdsInstanceEdgeNodeArgs']] = None,
|
35
35
|
freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
36
|
+
ignore_existing_nodes_shapes: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
36
37
|
is_cloud_sql_configured: Optional[pulumi.Input[bool]] = None,
|
37
38
|
is_force_stop_jobs: Optional[pulumi.Input[bool]] = None,
|
38
39
|
is_kafka_configured: Optional[pulumi.Input[bool]] = None,
|
@@ -58,6 +59,7 @@ class BdsInstanceArgs:
|
|
58
59
|
:param pulumi.Input[str] cluster_profile: Profile of the Big Data Service cluster.
|
59
60
|
:param pulumi.Input[Mapping[str, Any]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
60
61
|
:param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
62
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] ignore_existing_nodes_shapes: Tag to ignore changing the shape of existing worker, master, utility, compute_only_worker, edge, kafka_broker nodes, in a list format, when new nodes are added with a different shape.
|
61
63
|
:param pulumi.Input[bool] is_cloud_sql_configured: (Updatable) Boolean flag specifying whether we configure Cloud SQL or not
|
62
64
|
:param pulumi.Input[bool] is_force_stop_jobs: (Updatable) When setting state as `INACTIVE` for stopping a cluster, setting this flag to true forcefully stops the bds instance.
|
63
65
|
:param pulumi.Input[bool] is_kafka_configured: Boolean flag specifying whether or not Kafka should be configured.
|
@@ -92,6 +94,8 @@ class BdsInstanceArgs:
|
|
92
94
|
pulumi.set(__self__, "edge_node", edge_node)
|
93
95
|
if freeform_tags is not None:
|
94
96
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
97
|
+
if ignore_existing_nodes_shapes is not None:
|
98
|
+
pulumi.set(__self__, "ignore_existing_nodes_shapes", ignore_existing_nodes_shapes)
|
95
99
|
if is_cloud_sql_configured is not None:
|
96
100
|
pulumi.set(__self__, "is_cloud_sql_configured", is_cloud_sql_configured)
|
97
101
|
if is_force_stop_jobs is not None:
|
@@ -306,6 +310,18 @@ class BdsInstanceArgs:
|
|
306
310
|
def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
|
307
311
|
pulumi.set(self, "freeform_tags", value)
|
308
312
|
|
313
|
+
@property
|
314
|
+
@pulumi.getter(name="ignoreExistingNodesShapes")
|
315
|
+
def ignore_existing_nodes_shapes(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
316
|
+
"""
|
317
|
+
Tag to ignore changing the shape of existing worker, master, utility, compute_only_worker, edge, kafka_broker nodes, in a list format, when new nodes are added with a different shape.
|
318
|
+
"""
|
319
|
+
return pulumi.get(self, "ignore_existing_nodes_shapes")
|
320
|
+
|
321
|
+
@ignore_existing_nodes_shapes.setter
|
322
|
+
def ignore_existing_nodes_shapes(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
323
|
+
pulumi.set(self, "ignore_existing_nodes_shapes", value)
|
324
|
+
|
309
325
|
@property
|
310
326
|
@pulumi.getter(name="isCloudSqlConfigured")
|
311
327
|
def is_cloud_sql_configured(self) -> Optional[pulumi.Input[bool]]:
|
@@ -432,6 +448,7 @@ class _BdsInstanceState:
|
|
432
448
|
display_name: Optional[pulumi.Input[str]] = None,
|
433
449
|
edge_node: Optional[pulumi.Input['BdsInstanceEdgeNodeArgs']] = None,
|
434
450
|
freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
451
|
+
ignore_existing_nodes_shapes: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
435
452
|
is_cloud_sql_configured: Optional[pulumi.Input[bool]] = None,
|
436
453
|
is_force_stop_jobs: Optional[pulumi.Input[bool]] = None,
|
437
454
|
is_high_availability: Optional[pulumi.Input[bool]] = None,
|
@@ -465,6 +482,7 @@ class _BdsInstanceState:
|
|
465
482
|
:param pulumi.Input[Mapping[str, Any]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
466
483
|
:param pulumi.Input[str] display_name: (Updatable) Name of the BDS instance
|
467
484
|
:param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
485
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] ignore_existing_nodes_shapes: Tag to ignore changing the shape of existing worker, master, utility, compute_only_worker, edge, kafka_broker nodes, in a list format, when new nodes are added with a different shape.
|
468
486
|
:param pulumi.Input[bool] is_cloud_sql_configured: (Updatable) Boolean flag specifying whether we configure Cloud SQL or not
|
469
487
|
:param pulumi.Input[bool] is_force_stop_jobs: (Updatable) When setting state as `INACTIVE` for stopping a cluster, setting this flag to true forcefully stops the bds instance.
|
470
488
|
:param pulumi.Input[bool] is_high_availability: Boolean flag specifying whether or not the cluster is HA
|
@@ -512,6 +530,8 @@ class _BdsInstanceState:
|
|
512
530
|
pulumi.set(__self__, "edge_node", edge_node)
|
513
531
|
if freeform_tags is not None:
|
514
532
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
533
|
+
if ignore_existing_nodes_shapes is not None:
|
534
|
+
pulumi.set(__self__, "ignore_existing_nodes_shapes", ignore_existing_nodes_shapes)
|
515
535
|
if is_cloud_sql_configured is not None:
|
516
536
|
pulumi.set(__self__, "is_cloud_sql_configured", is_cloud_sql_configured)
|
517
537
|
if is_force_stop_jobs is not None:
|
@@ -713,6 +733,18 @@ class _BdsInstanceState:
|
|
713
733
|
def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
|
714
734
|
pulumi.set(self, "freeform_tags", value)
|
715
735
|
|
736
|
+
@property
|
737
|
+
@pulumi.getter(name="ignoreExistingNodesShapes")
|
738
|
+
def ignore_existing_nodes_shapes(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
739
|
+
"""
|
740
|
+
Tag to ignore changing the shape of existing worker, master, utility, compute_only_worker, edge, kafka_broker nodes, in a list format, when new nodes are added with a different shape.
|
741
|
+
"""
|
742
|
+
return pulumi.get(self, "ignore_existing_nodes_shapes")
|
743
|
+
|
744
|
+
@ignore_existing_nodes_shapes.setter
|
745
|
+
def ignore_existing_nodes_shapes(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
746
|
+
pulumi.set(self, "ignore_existing_nodes_shapes", value)
|
747
|
+
|
716
748
|
@property
|
717
749
|
@pulumi.getter(name="isCloudSqlConfigured")
|
718
750
|
def is_cloud_sql_configured(self) -> Optional[pulumi.Input[bool]]:
|
@@ -956,6 +988,7 @@ class BdsInstance(pulumi.CustomResource):
|
|
956
988
|
display_name: Optional[pulumi.Input[str]] = None,
|
957
989
|
edge_node: Optional[pulumi.Input[pulumi.InputType['BdsInstanceEdgeNodeArgs']]] = None,
|
958
990
|
freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
991
|
+
ignore_existing_nodes_shapes: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
959
992
|
is_cloud_sql_configured: Optional[pulumi.Input[bool]] = None,
|
960
993
|
is_force_stop_jobs: Optional[pulumi.Input[bool]] = None,
|
961
994
|
is_high_availability: Optional[pulumi.Input[bool]] = None,
|
@@ -996,6 +1029,7 @@ class BdsInstance(pulumi.CustomResource):
|
|
996
1029
|
:param pulumi.Input[Mapping[str, Any]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
997
1030
|
:param pulumi.Input[str] display_name: (Updatable) Name of the BDS instance
|
998
1031
|
:param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
1032
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] ignore_existing_nodes_shapes: Tag to ignore changing the shape of existing worker, master, utility, compute_only_worker, edge, kafka_broker nodes, in a list format, when new nodes are added with a different shape.
|
999
1033
|
:param pulumi.Input[bool] is_cloud_sql_configured: (Updatable) Boolean flag specifying whether we configure Cloud SQL or not
|
1000
1034
|
:param pulumi.Input[bool] is_force_stop_jobs: (Updatable) When setting state as `INACTIVE` for stopping a cluster, setting this flag to true forcefully stops the bds instance.
|
1001
1035
|
:param pulumi.Input[bool] is_high_availability: Boolean flag specifying whether or not the cluster is HA
|
@@ -1056,6 +1090,7 @@ class BdsInstance(pulumi.CustomResource):
|
|
1056
1090
|
display_name: Optional[pulumi.Input[str]] = None,
|
1057
1091
|
edge_node: Optional[pulumi.Input[pulumi.InputType['BdsInstanceEdgeNodeArgs']]] = None,
|
1058
1092
|
freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
1093
|
+
ignore_existing_nodes_shapes: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
1059
1094
|
is_cloud_sql_configured: Optional[pulumi.Input[bool]] = None,
|
1060
1095
|
is_force_stop_jobs: Optional[pulumi.Input[bool]] = None,
|
1061
1096
|
is_high_availability: Optional[pulumi.Input[bool]] = None,
|
@@ -1101,6 +1136,7 @@ class BdsInstance(pulumi.CustomResource):
|
|
1101
1136
|
__props__.__dict__["display_name"] = display_name
|
1102
1137
|
__props__.__dict__["edge_node"] = edge_node
|
1103
1138
|
__props__.__dict__["freeform_tags"] = freeform_tags
|
1139
|
+
__props__.__dict__["ignore_existing_nodes_shapes"] = ignore_existing_nodes_shapes
|
1104
1140
|
__props__.__dict__["is_cloud_sql_configured"] = is_cloud_sql_configured
|
1105
1141
|
__props__.__dict__["is_force_stop_jobs"] = is_force_stop_jobs
|
1106
1142
|
if is_high_availability is None and not opts.urn:
|
@@ -1158,6 +1194,7 @@ class BdsInstance(pulumi.CustomResource):
|
|
1158
1194
|
display_name: Optional[pulumi.Input[str]] = None,
|
1159
1195
|
edge_node: Optional[pulumi.Input[pulumi.InputType['BdsInstanceEdgeNodeArgs']]] = None,
|
1160
1196
|
freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
1197
|
+
ignore_existing_nodes_shapes: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
1161
1198
|
is_cloud_sql_configured: Optional[pulumi.Input[bool]] = None,
|
1162
1199
|
is_force_stop_jobs: Optional[pulumi.Input[bool]] = None,
|
1163
1200
|
is_high_availability: Optional[pulumi.Input[bool]] = None,
|
@@ -1196,6 +1233,7 @@ class BdsInstance(pulumi.CustomResource):
|
|
1196
1233
|
:param pulumi.Input[Mapping[str, Any]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
1197
1234
|
:param pulumi.Input[str] display_name: (Updatable) Name of the BDS instance
|
1198
1235
|
:param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
1236
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] ignore_existing_nodes_shapes: Tag to ignore changing the shape of existing worker, master, utility, compute_only_worker, edge, kafka_broker nodes, in a list format, when new nodes are added with a different shape.
|
1199
1237
|
:param pulumi.Input[bool] is_cloud_sql_configured: (Updatable) Boolean flag specifying whether we configure Cloud SQL or not
|
1200
1238
|
:param pulumi.Input[bool] is_force_stop_jobs: (Updatable) When setting state as `INACTIVE` for stopping a cluster, setting this flag to true forcefully stops the bds instance.
|
1201
1239
|
:param pulumi.Input[bool] is_high_availability: Boolean flag specifying whether or not the cluster is HA
|
@@ -1233,6 +1271,7 @@ class BdsInstance(pulumi.CustomResource):
|
|
1233
1271
|
__props__.__dict__["display_name"] = display_name
|
1234
1272
|
__props__.__dict__["edge_node"] = edge_node
|
1235
1273
|
__props__.__dict__["freeform_tags"] = freeform_tags
|
1274
|
+
__props__.__dict__["ignore_existing_nodes_shapes"] = ignore_existing_nodes_shapes
|
1236
1275
|
__props__.__dict__["is_cloud_sql_configured"] = is_cloud_sql_configured
|
1237
1276
|
__props__.__dict__["is_force_stop_jobs"] = is_force_stop_jobs
|
1238
1277
|
__props__.__dict__["is_high_availability"] = is_high_availability
|
@@ -1360,6 +1399,14 @@ class BdsInstance(pulumi.CustomResource):
|
|
1360
1399
|
"""
|
1361
1400
|
return pulumi.get(self, "freeform_tags")
|
1362
1401
|
|
1402
|
+
@property
|
1403
|
+
@pulumi.getter(name="ignoreExistingNodesShapes")
|
1404
|
+
def ignore_existing_nodes_shapes(self) -> pulumi.Output[Optional[Sequence[str]]]:
|
1405
|
+
"""
|
1406
|
+
Tag to ignore changing the shape of existing worker, master, utility, compute_only_worker, edge, kafka_broker nodes, in a list format, when new nodes are added with a different shape.
|
1407
|
+
"""
|
1408
|
+
return pulumi.get(self, "ignore_existing_nodes_shapes")
|
1409
|
+
|
1363
1410
|
@property
|
1364
1411
|
@pulumi.getter(name="isCloudSqlConfigured")
|
1365
1412
|
def is_cloud_sql_configured(self) -> pulumi.Output[bool]:
|
@@ -22,7 +22,7 @@ class GetBdsInstanceResult:
|
|
22
22
|
"""
|
23
23
|
A collection of values returned by getBdsInstance.
|
24
24
|
"""
|
25
|
-
def __init__(__self__, bds_instance_id=None, bootstrap_script_url=None, cloud_sql_details=None, cluster_admin_password=None, cluster_details=None, cluster_profile=None, cluster_public_key=None, cluster_version=None, compartment_id=None, compute_only_worker_nodes=None, created_by=None, defined_tags=None, display_name=None, edge_nodes=None, freeform_tags=None, id=None, is_cloud_sql_configured=None, is_force_stop_jobs=None, is_high_availability=None, is_kafka_configured=None, is_secure=None, kafka_broker_nodes=None, kerberos_realm_name=None, kms_key_id=None, master_nodes=None, network_configs=None, nodes=None, number_of_nodes=None, number_of_nodes_requiring_maintenance_reboot=None, os_patch_version=None, state=None, time_created=None, time_updated=None, util_nodes=None, worker_nodes=None):
|
25
|
+
def __init__(__self__, bds_instance_id=None, bootstrap_script_url=None, cloud_sql_details=None, cluster_admin_password=None, cluster_details=None, cluster_profile=None, cluster_public_key=None, cluster_version=None, compartment_id=None, compute_only_worker_nodes=None, created_by=None, defined_tags=None, display_name=None, edge_nodes=None, freeform_tags=None, id=None, ignore_existing_nodes_shapes=None, is_cloud_sql_configured=None, is_force_stop_jobs=None, is_high_availability=None, is_kafka_configured=None, is_secure=None, kafka_broker_nodes=None, kerberos_realm_name=None, kms_key_id=None, master_nodes=None, network_configs=None, nodes=None, number_of_nodes=None, number_of_nodes_requiring_maintenance_reboot=None, os_patch_version=None, state=None, time_created=None, time_updated=None, util_nodes=None, worker_nodes=None):
|
26
26
|
if bds_instance_id and not isinstance(bds_instance_id, str):
|
27
27
|
raise TypeError("Expected argument 'bds_instance_id' to be a str")
|
28
28
|
pulumi.set(__self__, "bds_instance_id", bds_instance_id)
|
@@ -71,6 +71,9 @@ class GetBdsInstanceResult:
|
|
71
71
|
if id and not isinstance(id, str):
|
72
72
|
raise TypeError("Expected argument 'id' to be a str")
|
73
73
|
pulumi.set(__self__, "id", id)
|
74
|
+
if ignore_existing_nodes_shapes and not isinstance(ignore_existing_nodes_shapes, list):
|
75
|
+
raise TypeError("Expected argument 'ignore_existing_nodes_shapes' to be a list")
|
76
|
+
pulumi.set(__self__, "ignore_existing_nodes_shapes", ignore_existing_nodes_shapes)
|
74
77
|
if is_cloud_sql_configured and not isinstance(is_cloud_sql_configured, bool):
|
75
78
|
raise TypeError("Expected argument 'is_cloud_sql_configured' to be a bool")
|
76
79
|
pulumi.set(__self__, "is_cloud_sql_configured", is_cloud_sql_configured)
|
@@ -242,6 +245,11 @@ class GetBdsInstanceResult:
|
|
242
245
|
"""
|
243
246
|
return pulumi.get(self, "id")
|
244
247
|
|
248
|
+
@property
|
249
|
+
@pulumi.getter(name="ignoreExistingNodesShapes")
|
250
|
+
def ignore_existing_nodes_shapes(self) -> Sequence[str]:
|
251
|
+
return pulumi.get(self, "ignore_existing_nodes_shapes")
|
252
|
+
|
245
253
|
@property
|
246
254
|
@pulumi.getter(name="isCloudSqlConfigured")
|
247
255
|
def is_cloud_sql_configured(self) -> bool:
|
@@ -396,6 +404,7 @@ class AwaitableGetBdsInstanceResult(GetBdsInstanceResult):
|
|
396
404
|
edge_nodes=self.edge_nodes,
|
397
405
|
freeform_tags=self.freeform_tags,
|
398
406
|
id=self.id,
|
407
|
+
ignore_existing_nodes_shapes=self.ignore_existing_nodes_shapes,
|
399
408
|
is_cloud_sql_configured=self.is_cloud_sql_configured,
|
400
409
|
is_force_stop_jobs=self.is_force_stop_jobs,
|
401
410
|
is_high_availability=self.is_high_availability,
|
@@ -458,6 +467,7 @@ def get_bds_instance(bds_instance_id: Optional[str] = None,
|
|
458
467
|
edge_nodes=pulumi.get(__ret__, 'edge_nodes'),
|
459
468
|
freeform_tags=pulumi.get(__ret__, 'freeform_tags'),
|
460
469
|
id=pulumi.get(__ret__, 'id'),
|
470
|
+
ignore_existing_nodes_shapes=pulumi.get(__ret__, 'ignore_existing_nodes_shapes'),
|
461
471
|
is_cloud_sql_configured=pulumi.get(__ret__, 'is_cloud_sql_configured'),
|
462
472
|
is_force_stop_jobs=pulumi.get(__ret__, 'is_force_stop_jobs'),
|
463
473
|
is_high_availability=pulumi.get(__ret__, 'is_high_availability'),
|
@@ -6467,6 +6467,7 @@ class GetBdsInstancesBdsInstanceResult(dict):
|
|
6467
6467
|
edge_nodes: Sequence['outputs.GetBdsInstancesBdsInstanceEdgeNodeResult'],
|
6468
6468
|
freeform_tags: Mapping[str, Any],
|
6469
6469
|
id: str,
|
6470
|
+
ignore_existing_nodes_shapes: Sequence[str],
|
6470
6471
|
is_cloud_sql_configured: bool,
|
6471
6472
|
is_force_stop_jobs: bool,
|
6472
6473
|
is_high_availability: bool,
|
@@ -6526,6 +6527,7 @@ class GetBdsInstancesBdsInstanceResult(dict):
|
|
6526
6527
|
pulumi.set(__self__, "edge_nodes", edge_nodes)
|
6527
6528
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
6528
6529
|
pulumi.set(__self__, "id", id)
|
6530
|
+
pulumi.set(__self__, "ignore_existing_nodes_shapes", ignore_existing_nodes_shapes)
|
6529
6531
|
pulumi.set(__self__, "is_cloud_sql_configured", is_cloud_sql_configured)
|
6530
6532
|
pulumi.set(__self__, "is_force_stop_jobs", is_force_stop_jobs)
|
6531
6533
|
pulumi.set(__self__, "is_high_availability", is_high_availability)
|
@@ -6654,6 +6656,11 @@ class GetBdsInstancesBdsInstanceResult(dict):
|
|
6654
6656
|
"""
|
6655
6657
|
return pulumi.get(self, "id")
|
6656
6658
|
|
6659
|
+
@property
|
6660
|
+
@pulumi.getter(name="ignoreExistingNodesShapes")
|
6661
|
+
def ignore_existing_nodes_shapes(self) -> Sequence[str]:
|
6662
|
+
return pulumi.get(self, "ignore_existing_nodes_shapes")
|
6663
|
+
|
6657
6664
|
@property
|
6658
6665
|
@pulumi.getter(name="isCloudSqlConfigured")
|
6659
6666
|
def is_cloud_sql_configured(self) -> bool:
|
pulumi_oci/core/__init__.py
CHANGED
@@ -112,6 +112,8 @@ from .get_instance_configurations import *
|
|
112
112
|
from .get_instance_console_connections import *
|
113
113
|
from .get_instance_credentials import *
|
114
114
|
from .get_instance_devices import *
|
115
|
+
from .get_instance_maintenance_event import *
|
116
|
+
from .get_instance_maintenance_events import *
|
115
117
|
from .get_instance_maintenance_reboot import *
|
116
118
|
from .get_instance_measured_boot_report import *
|
117
119
|
from .get_instance_pool import *
|
@@ -188,6 +190,7 @@ from .image import *
|
|
188
190
|
from .instance import *
|
189
191
|
from .instance_configuration import *
|
190
192
|
from .instance_console_connection import *
|
193
|
+
from .instance_maintenance_event import *
|
191
194
|
from .instance_pool import *
|
192
195
|
from .instance_pool_instance import *
|
193
196
|
from .internet_gateway import *
|
pulumi_oci/core/_inputs.py
CHANGED
@@ -235,6 +235,7 @@ __all__ = [
|
|
235
235
|
'GetInstanceConfigurationsFilterArgs',
|
236
236
|
'GetInstanceConsoleConnectionsFilterArgs',
|
237
237
|
'GetInstanceDevicesFilterArgs',
|
238
|
+
'GetInstanceMaintenanceEventsFilterArgs',
|
238
239
|
'GetInstancePoolInstancesFilterArgs',
|
239
240
|
'GetInstancePoolsFilterArgs',
|
240
241
|
'GetInstancesFilterArgs',
|
@@ -16137,6 +16138,45 @@ class GetInstanceDevicesFilterArgs:
|
|
16137
16138
|
pulumi.set(self, "regex", value)
|
16138
16139
|
|
16139
16140
|
|
16141
|
+
@pulumi.input_type
|
16142
|
+
class GetInstanceMaintenanceEventsFilterArgs:
|
16143
|
+
def __init__(__self__, *,
|
16144
|
+
name: str,
|
16145
|
+
values: Sequence[str],
|
16146
|
+
regex: Optional[bool] = None):
|
16147
|
+
pulumi.set(__self__, "name", name)
|
16148
|
+
pulumi.set(__self__, "values", values)
|
16149
|
+
if regex is not None:
|
16150
|
+
pulumi.set(__self__, "regex", regex)
|
16151
|
+
|
16152
|
+
@property
|
16153
|
+
@pulumi.getter
|
16154
|
+
def name(self) -> str:
|
16155
|
+
return pulumi.get(self, "name")
|
16156
|
+
|
16157
|
+
@name.setter
|
16158
|
+
def name(self, value: str):
|
16159
|
+
pulumi.set(self, "name", value)
|
16160
|
+
|
16161
|
+
@property
|
16162
|
+
@pulumi.getter
|
16163
|
+
def values(self) -> Sequence[str]:
|
16164
|
+
return pulumi.get(self, "values")
|
16165
|
+
|
16166
|
+
@values.setter
|
16167
|
+
def values(self, value: Sequence[str]):
|
16168
|
+
pulumi.set(self, "values", value)
|
16169
|
+
|
16170
|
+
@property
|
16171
|
+
@pulumi.getter
|
16172
|
+
def regex(self) -> Optional[bool]:
|
16173
|
+
return pulumi.get(self, "regex")
|
16174
|
+
|
16175
|
+
@regex.setter
|
16176
|
+
def regex(self, value: Optional[bool]):
|
16177
|
+
pulumi.set(self, "regex", value)
|
16178
|
+
|
16179
|
+
|
16140
16180
|
@pulumi.input_type
|
16141
16181
|
class GetInstancePoolInstancesFilterArgs:
|
16142
16182
|
def __init__(__self__, *,
|