pulumi-oci 1.19.0a1705693078__py3-none-any.whl → 1.20.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 -0
- pulumi_oci/adm/_inputs.py +99 -18
- pulumi_oci/adm/get_remediation_run_application_dependency_recommendations.py +23 -3
- pulumi_oci/adm/get_vulnerability_audit.py +31 -5
- pulumi_oci/adm/get_vulnerability_audit_application_dependency_vulnerabilities.py +43 -6
- pulumi_oci/adm/get_vulnerability_audit_application_dependency_vulnerability.py +27 -1
- pulumi_oci/adm/get_vulnerability_audits.py +54 -3
- pulumi_oci/adm/outputs.py +296 -31
- pulumi_oci/adm/remediation_recipe.py +2 -0
- pulumi_oci/adm/vulnerability_audit.py +96 -37
- pulumi_oci/database/__init__.py +1 -0
- pulumi_oci/database/_inputs.py +40 -0
- pulumi_oci/database/cloud_vm_cluster.py +22 -1
- pulumi_oci/database/get_system_versions.py +173 -0
- pulumi_oci/database/outputs.py +88 -0
- pulumi_oci/database/vm_cluster.py +22 -1
- pulumi_oci/datasafe/__init__.py +22 -0
- pulumi_oci/datasafe/_inputs.py +1826 -161
- pulumi_oci/datasafe/audit_trail.py +140 -0
- pulumi_oci/datasafe/discovery_mod.py +7 -7
- pulumi_oci/datasafe/get_audit_trail.py +66 -1
- pulumi_oci/datasafe/get_discovery_job.py +1 -1
- pulumi_oci/datasafe/get_discovery_jobs_result.py +1 -1
- pulumi_oci/datasafe/get_discovery_jobs_results.py +1 -1
- pulumi_oci/datasafe/get_masking_policies_masking_column.py +1 -1
- pulumi_oci/datasafe/get_masking_policies_masking_columns.py +1 -1
- pulumi_oci/datasafe/get_masking_policy.py +1 -1
- pulumi_oci/datasafe/get_report.py +1 -1
- pulumi_oci/datasafe/get_security_assessment.py +3 -3
- pulumi_oci/datasafe/get_security_assessment_comparison.py +5 -5
- pulumi_oci/datasafe/get_security_assessment_finding.py +29 -3
- pulumi_oci/datasafe/get_security_assessment_finding_analytics.py +276 -0
- pulumi_oci/datasafe/get_security_assessment_findings.py +43 -7
- pulumi_oci/datasafe/get_security_assessment_findings_change_audit_logs.py +309 -0
- pulumi_oci/datasafe/get_security_assessment_security_feature_analytics.py +198 -0
- pulumi_oci/datasafe/get_security_assessment_security_features.py +377 -0
- pulumi_oci/datasafe/get_security_assessments.py +2 -2
- pulumi_oci/datasafe/get_security_policies.py +253 -0
- pulumi_oci/datasafe/get_security_policy.py +235 -0
- pulumi_oci/datasafe/get_security_policy_deployment.py +261 -0
- pulumi_oci/datasafe/get_security_policy_deployment_security_policy_entry_state.py +165 -0
- pulumi_oci/datasafe/get_security_policy_deployment_security_policy_entry_states.py +180 -0
- pulumi_oci/datasafe/get_security_policy_deployments.py +293 -0
- pulumi_oci/datasafe/get_security_policy_report.py +248 -0
- pulumi_oci/datasafe/get_security_policy_report_database_table_access_entries.py +158 -0
- pulumi_oci/datasafe/get_security_policy_report_database_table_access_entry.py +408 -0
- pulumi_oci/datasafe/get_security_policy_report_database_view_access_entries.py +178 -0
- pulumi_oci/datasafe/get_security_policy_report_database_view_access_entry.py +382 -0
- pulumi_oci/datasafe/get_security_policy_report_role_grant_paths.py +177 -0
- pulumi_oci/datasafe/get_security_policy_reports.py +273 -0
- pulumi_oci/datasafe/get_sensitive_data_model.py +1 -1
- pulumi_oci/datasafe/get_target_database.py +27 -4
- pulumi_oci/datasafe/get_target_database_peer_target_database.py +263 -0
- pulumi_oci/datasafe/get_target_database_peer_target_databases.py +133 -0
- pulumi_oci/datasafe/get_target_databases.py +1 -1
- pulumi_oci/datasafe/get_user_assessment.py +5 -5
- pulumi_oci/datasafe/get_user_assessment_comparison.py +2 -2
- pulumi_oci/datasafe/get_user_assessment_user_access_analytics.py +133 -0
- pulumi_oci/datasafe/get_user_assessment_user_analytics.py +2 -2
- pulumi_oci/datasafe/get_user_assessment_users.py +42 -2
- pulumi_oci/datasafe/get_user_assessments.py +2 -2
- pulumi_oci/datasafe/masking_policies_masking_column.py +7 -7
- pulumi_oci/datasafe/masking_policy.py +9 -9
- pulumi_oci/datasafe/outputs.py +16686 -9777
- pulumi_oci/datasafe/report.py +559 -0
- pulumi_oci/datasafe/security_assessment.py +12 -12
- pulumi_oci/datasafe/sensitive_data_model.py +7 -7
- pulumi_oci/datasafe/set_security_assessment_baseline.py +7 -7
- pulumi_oci/datasafe/set_user_assessment_baseline.py +7 -7
- pulumi_oci/datasafe/target_database.py +146 -25
- pulumi_oci/datasafe/target_database_peer_target_database.py +634 -0
- pulumi_oci/datasafe/user_assessment.py +20 -20
- pulumi_oci/generativeai/__init__.py +18 -0
- pulumi_oci/generativeai/_inputs.py +534 -0
- pulumi_oci/generativeai/dedicated_ai_cluster.py +808 -0
- pulumi_oci/generativeai/endpoint.py +717 -0
- pulumi_oci/generativeai/get_dedicated_ai_cluster.py +288 -0
- pulumi_oci/generativeai/get_dedicated_ai_clusters.py +183 -0
- pulumi_oci/generativeai/get_endpoint.py +275 -0
- pulumi_oci/generativeai/get_endpoints.py +183 -0
- pulumi_oci/generativeai/get_model.py +353 -0
- pulumi_oci/generativeai/get_models.py +220 -0
- pulumi_oci/generativeai/model.py +858 -0
- pulumi_oci/generativeai/outputs.py +1721 -0
- pulumi_oci/marketplace/get_publication.py +14 -1
- pulumi_oci/marketplace/outputs.py +11 -0
- pulumi_oci/marketplace/publication.py +28 -0
- pulumi_oci/monitoring/__init__.py +3 -0
- pulumi_oci/monitoring/_inputs.py +82 -4
- pulumi_oci/monitoring/alarm.py +15 -15
- pulumi_oci/monitoring/alarm_suppression.py +745 -0
- pulumi_oci/monitoring/get_alarm.py +5 -5
- pulumi_oci/monitoring/get_alarm_history_collection.py +4 -4
- pulumi_oci/monitoring/get_alarm_statuses.py +3 -1
- pulumi_oci/monitoring/get_alarm_suppression.py +276 -0
- pulumi_oci/monitoring/get_alarm_suppressions.py +192 -0
- pulumi_oci/monitoring/get_metric_data.py +12 -8
- pulumi_oci/monitoring/get_metrics.py +2 -2
- pulumi_oci/monitoring/outputs.py +355 -50
- pulumi_oci/networkfirewall/_inputs.py +25 -20
- pulumi_oci/networkfirewall/outputs.py +40 -30
- pulumi_oci/stackmonitoring/__init__.py +3 -0
- pulumi_oci/stackmonitoring/_inputs.py +143 -0
- pulumi_oci/stackmonitoring/get_process_set.py +236 -0
- pulumi_oci/stackmonitoring/get_process_sets.py +156 -0
- pulumi_oci/stackmonitoring/outputs.py +422 -0
- pulumi_oci/stackmonitoring/process_set.py +548 -0
- {pulumi_oci-1.19.0a1705693078.dist-info → pulumi_oci-1.20.0.dist-info}/METADATA +1 -1
- {pulumi_oci-1.19.0a1705693078.dist-info → pulumi_oci-1.20.0.dist-info}/RECORD +111 -70
- {pulumi_oci-1.19.0a1705693078.dist-info → pulumi_oci-1.20.0.dist-info}/WHEEL +0 -0
- {pulumi_oci-1.19.0a1705693078.dist-info → pulumi_oci-1.20.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,173 @@
|
|
1
|
+
# coding=utf-8
|
2
|
+
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
|
+
|
5
|
+
import copy
|
6
|
+
import warnings
|
7
|
+
import pulumi
|
8
|
+
import pulumi.runtime
|
9
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
10
|
+
from .. import _utilities
|
11
|
+
from . import outputs
|
12
|
+
from ._inputs import *
|
13
|
+
|
14
|
+
__all__ = [
|
15
|
+
'GetSystemVersionsResult',
|
16
|
+
'AwaitableGetSystemVersionsResult',
|
17
|
+
'get_system_versions',
|
18
|
+
'get_system_versions_output',
|
19
|
+
]
|
20
|
+
|
21
|
+
@pulumi.output_type
|
22
|
+
class GetSystemVersionsResult:
|
23
|
+
"""
|
24
|
+
A collection of values returned by getSystemVersions.
|
25
|
+
"""
|
26
|
+
def __init__(__self__, compartment_id=None, filters=None, gi_version=None, id=None, shape=None, system_version_collections=None):
|
27
|
+
if compartment_id and not isinstance(compartment_id, str):
|
28
|
+
raise TypeError("Expected argument 'compartment_id' to be a str")
|
29
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
30
|
+
if filters and not isinstance(filters, list):
|
31
|
+
raise TypeError("Expected argument 'filters' to be a list")
|
32
|
+
pulumi.set(__self__, "filters", filters)
|
33
|
+
if gi_version and not isinstance(gi_version, str):
|
34
|
+
raise TypeError("Expected argument 'gi_version' to be a str")
|
35
|
+
pulumi.set(__self__, "gi_version", gi_version)
|
36
|
+
if id and not isinstance(id, str):
|
37
|
+
raise TypeError("Expected argument 'id' to be a str")
|
38
|
+
pulumi.set(__self__, "id", id)
|
39
|
+
if shape and not isinstance(shape, str):
|
40
|
+
raise TypeError("Expected argument 'shape' to be a str")
|
41
|
+
pulumi.set(__self__, "shape", shape)
|
42
|
+
if system_version_collections and not isinstance(system_version_collections, list):
|
43
|
+
raise TypeError("Expected argument 'system_version_collections' to be a list")
|
44
|
+
pulumi.set(__self__, "system_version_collections", system_version_collections)
|
45
|
+
|
46
|
+
@property
|
47
|
+
@pulumi.getter(name="compartmentId")
|
48
|
+
def compartment_id(self) -> str:
|
49
|
+
return pulumi.get(self, "compartment_id")
|
50
|
+
|
51
|
+
@property
|
52
|
+
@pulumi.getter
|
53
|
+
def filters(self) -> Optional[Sequence['outputs.GetSystemVersionsFilterResult']]:
|
54
|
+
return pulumi.get(self, "filters")
|
55
|
+
|
56
|
+
@property
|
57
|
+
@pulumi.getter(name="giVersion")
|
58
|
+
def gi_version(self) -> str:
|
59
|
+
"""
|
60
|
+
Grid Infrastructure version.
|
61
|
+
"""
|
62
|
+
return pulumi.get(self, "gi_version")
|
63
|
+
|
64
|
+
@property
|
65
|
+
@pulumi.getter
|
66
|
+
def id(self) -> str:
|
67
|
+
"""
|
68
|
+
The provider-assigned unique ID for this managed resource.
|
69
|
+
"""
|
70
|
+
return pulumi.get(self, "id")
|
71
|
+
|
72
|
+
@property
|
73
|
+
@pulumi.getter
|
74
|
+
def shape(self) -> str:
|
75
|
+
"""
|
76
|
+
Exadata shape.
|
77
|
+
"""
|
78
|
+
return pulumi.get(self, "shape")
|
79
|
+
|
80
|
+
@property
|
81
|
+
@pulumi.getter(name="systemVersionCollections")
|
82
|
+
def system_version_collections(self) -> Sequence['outputs.GetSystemVersionsSystemVersionCollectionResult']:
|
83
|
+
"""
|
84
|
+
The list of system_version_collection.
|
85
|
+
"""
|
86
|
+
return pulumi.get(self, "system_version_collections")
|
87
|
+
|
88
|
+
|
89
|
+
class AwaitableGetSystemVersionsResult(GetSystemVersionsResult):
|
90
|
+
# pylint: disable=using-constant-test
|
91
|
+
def __await__(self):
|
92
|
+
if False:
|
93
|
+
yield self
|
94
|
+
return GetSystemVersionsResult(
|
95
|
+
compartment_id=self.compartment_id,
|
96
|
+
filters=self.filters,
|
97
|
+
gi_version=self.gi_version,
|
98
|
+
id=self.id,
|
99
|
+
shape=self.shape,
|
100
|
+
system_version_collections=self.system_version_collections)
|
101
|
+
|
102
|
+
|
103
|
+
def get_system_versions(compartment_id: Optional[str] = None,
|
104
|
+
filters: Optional[Sequence[pulumi.InputType['GetSystemVersionsFilterArgs']]] = None,
|
105
|
+
gi_version: Optional[str] = None,
|
106
|
+
shape: Optional[str] = None,
|
107
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetSystemVersionsResult:
|
108
|
+
"""
|
109
|
+
This data source provides the list of System Versions in Oracle Cloud Infrastructure Database service.
|
110
|
+
|
111
|
+
Gets a list of supported Exadata system versions for a given shape and GI version.
|
112
|
+
|
113
|
+
## Example Usage
|
114
|
+
|
115
|
+
```python
|
116
|
+
import pulumi
|
117
|
+
import pulumi_oci as oci
|
118
|
+
|
119
|
+
test_system_versions = oci.Database.get_system_versions(compartment_id=var["compartment_id"],
|
120
|
+
gi_version=var["system_version_gi_version"],
|
121
|
+
shape=var["system_version_shape"])
|
122
|
+
```
|
123
|
+
|
124
|
+
|
125
|
+
:param str compartment_id: The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
126
|
+
:param str gi_version: Specifies gi version query parameter.
|
127
|
+
:param str shape: Specifies shape query parameter.
|
128
|
+
"""
|
129
|
+
__args__ = dict()
|
130
|
+
__args__['compartmentId'] = compartment_id
|
131
|
+
__args__['filters'] = filters
|
132
|
+
__args__['giVersion'] = gi_version
|
133
|
+
__args__['shape'] = shape
|
134
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
135
|
+
__ret__ = pulumi.runtime.invoke('oci:Database/getSystemVersions:getSystemVersions', __args__, opts=opts, typ=GetSystemVersionsResult).value
|
136
|
+
|
137
|
+
return AwaitableGetSystemVersionsResult(
|
138
|
+
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
139
|
+
filters=pulumi.get(__ret__, 'filters'),
|
140
|
+
gi_version=pulumi.get(__ret__, 'gi_version'),
|
141
|
+
id=pulumi.get(__ret__, 'id'),
|
142
|
+
shape=pulumi.get(__ret__, 'shape'),
|
143
|
+
system_version_collections=pulumi.get(__ret__, 'system_version_collections'))
|
144
|
+
|
145
|
+
|
146
|
+
@_utilities.lift_output_func(get_system_versions)
|
147
|
+
def get_system_versions_output(compartment_id: Optional[pulumi.Input[str]] = None,
|
148
|
+
filters: Optional[pulumi.Input[Optional[Sequence[pulumi.InputType['GetSystemVersionsFilterArgs']]]]] = None,
|
149
|
+
gi_version: Optional[pulumi.Input[str]] = None,
|
150
|
+
shape: Optional[pulumi.Input[str]] = None,
|
151
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetSystemVersionsResult]:
|
152
|
+
"""
|
153
|
+
This data source provides the list of System Versions in Oracle Cloud Infrastructure Database service.
|
154
|
+
|
155
|
+
Gets a list of supported Exadata system versions for a given shape and GI version.
|
156
|
+
|
157
|
+
## Example Usage
|
158
|
+
|
159
|
+
```python
|
160
|
+
import pulumi
|
161
|
+
import pulumi_oci as oci
|
162
|
+
|
163
|
+
test_system_versions = oci.Database.get_system_versions(compartment_id=var["compartment_id"],
|
164
|
+
gi_version=var["system_version_gi_version"],
|
165
|
+
shape=var["system_version_shape"])
|
166
|
+
```
|
167
|
+
|
168
|
+
|
169
|
+
:param str compartment_id: The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
170
|
+
:param str gi_version: Specifies gi version query parameter.
|
171
|
+
:param str shape: Specifies shape query parameter.
|
172
|
+
"""
|
173
|
+
...
|
pulumi_oci/database/outputs.py
CHANGED
@@ -521,6 +521,9 @@ __all__ = [
|
|
521
521
|
'GetPluggableDatabasesPluggableDatabasePdbNodeLevelDetailResult',
|
522
522
|
'GetPluggableDatabasesPluggableDatabasePluggableDatabaseManagementConfigResult',
|
523
523
|
'GetPluggableDatabasesPluggableDatabaseRefreshableCloneConfigResult',
|
524
|
+
'GetSystemVersionsFilterResult',
|
525
|
+
'GetSystemVersionsSystemVersionCollectionResult',
|
526
|
+
'GetSystemVersionsSystemVersionCollectionItemResult',
|
524
527
|
'GetVmClusterDataCollectionOptionResult',
|
525
528
|
'GetVmClusterNetworkDrScanResult',
|
526
529
|
'GetVmClusterNetworkScanResult',
|
@@ -39419,6 +39422,91 @@ class GetPluggableDatabasesPluggableDatabaseRefreshableCloneConfigResult(dict):
|
|
39419
39422
|
return pulumi.get(self, "is_refreshable_clone")
|
39420
39423
|
|
39421
39424
|
|
39425
|
+
@pulumi.output_type
|
39426
|
+
class GetSystemVersionsFilterResult(dict):
|
39427
|
+
def __init__(__self__, *,
|
39428
|
+
name: str,
|
39429
|
+
values: Sequence[str],
|
39430
|
+
regex: Optional[bool] = None):
|
39431
|
+
pulumi.set(__self__, "name", name)
|
39432
|
+
pulumi.set(__self__, "values", values)
|
39433
|
+
if regex is not None:
|
39434
|
+
pulumi.set(__self__, "regex", regex)
|
39435
|
+
|
39436
|
+
@property
|
39437
|
+
@pulumi.getter
|
39438
|
+
def name(self) -> str:
|
39439
|
+
return pulumi.get(self, "name")
|
39440
|
+
|
39441
|
+
@property
|
39442
|
+
@pulumi.getter
|
39443
|
+
def values(self) -> Sequence[str]:
|
39444
|
+
return pulumi.get(self, "values")
|
39445
|
+
|
39446
|
+
@property
|
39447
|
+
@pulumi.getter
|
39448
|
+
def regex(self) -> Optional[bool]:
|
39449
|
+
return pulumi.get(self, "regex")
|
39450
|
+
|
39451
|
+
|
39452
|
+
@pulumi.output_type
|
39453
|
+
class GetSystemVersionsSystemVersionCollectionResult(dict):
|
39454
|
+
def __init__(__self__, *,
|
39455
|
+
items: Sequence['outputs.GetSystemVersionsSystemVersionCollectionItemResult']):
|
39456
|
+
"""
|
39457
|
+
:param Sequence['GetSystemVersionsSystemVersionCollectionItemArgs'] items: List of System versions.
|
39458
|
+
"""
|
39459
|
+
pulumi.set(__self__, "items", items)
|
39460
|
+
|
39461
|
+
@property
|
39462
|
+
@pulumi.getter
|
39463
|
+
def items(self) -> Sequence['outputs.GetSystemVersionsSystemVersionCollectionItemResult']:
|
39464
|
+
"""
|
39465
|
+
List of System versions.
|
39466
|
+
"""
|
39467
|
+
return pulumi.get(self, "items")
|
39468
|
+
|
39469
|
+
|
39470
|
+
@pulumi.output_type
|
39471
|
+
class GetSystemVersionsSystemVersionCollectionItemResult(dict):
|
39472
|
+
def __init__(__self__, *,
|
39473
|
+
gi_version: str,
|
39474
|
+
shape: str,
|
39475
|
+
system_versions: Sequence[str]):
|
39476
|
+
"""
|
39477
|
+
:param str gi_version: Specifies gi version query parameter.
|
39478
|
+
:param str shape: Specifies shape query parameter.
|
39479
|
+
:param Sequence[str] system_versions: Compatible Exadata system versions for a given shape and GI version.
|
39480
|
+
"""
|
39481
|
+
pulumi.set(__self__, "gi_version", gi_version)
|
39482
|
+
pulumi.set(__self__, "shape", shape)
|
39483
|
+
pulumi.set(__self__, "system_versions", system_versions)
|
39484
|
+
|
39485
|
+
@property
|
39486
|
+
@pulumi.getter(name="giVersion")
|
39487
|
+
def gi_version(self) -> str:
|
39488
|
+
"""
|
39489
|
+
Specifies gi version query parameter.
|
39490
|
+
"""
|
39491
|
+
return pulumi.get(self, "gi_version")
|
39492
|
+
|
39493
|
+
@property
|
39494
|
+
@pulumi.getter
|
39495
|
+
def shape(self) -> str:
|
39496
|
+
"""
|
39497
|
+
Specifies shape query parameter.
|
39498
|
+
"""
|
39499
|
+
return pulumi.get(self, "shape")
|
39500
|
+
|
39501
|
+
@property
|
39502
|
+
@pulumi.getter(name="systemVersions")
|
39503
|
+
def system_versions(self) -> Sequence[str]:
|
39504
|
+
"""
|
39505
|
+
Compatible Exadata system versions for a given shape and GI version.
|
39506
|
+
"""
|
39507
|
+
return pulumi.get(self, "system_versions")
|
39508
|
+
|
39509
|
+
|
39422
39510
|
@pulumi.output_type
|
39423
39511
|
class GetVmClusterDataCollectionOptionResult(dict):
|
39424
39512
|
def __init__(__self__, *,
|
@@ -35,6 +35,7 @@ class VmClusterArgs:
|
|
35
35
|
license_model: Optional[pulumi.Input[str]] = None,
|
36
36
|
memory_size_in_gbs: Optional[pulumi.Input[int]] = None,
|
37
37
|
ocpu_count: Optional[pulumi.Input[float]] = None,
|
38
|
+
system_version: Optional[pulumi.Input[str]] = None,
|
38
39
|
time_zone: Optional[pulumi.Input[str]] = None):
|
39
40
|
"""
|
40
41
|
The set of arguments for constructing a VmCluster resource.
|
@@ -59,6 +60,7 @@ class VmClusterArgs:
|
|
59
60
|
:param pulumi.Input[bool] is_sparse_diskgroup_enabled: If true, the sparse disk group is configured for the VM cluster. If false, the sparse disk group is not created.
|
60
61
|
:param pulumi.Input[str] license_model: (Updatable) The Oracle license model that applies to the VM cluster. The default is BRING_YOUR_OWN_LICENSE.
|
61
62
|
:param pulumi.Input[int] memory_size_in_gbs: (Updatable) The memory to be allocated in GBs.
|
63
|
+
:param pulumi.Input[str] system_version: Operating system version of the image.
|
62
64
|
:param pulumi.Input[str] time_zone: The time zone to use for the VM cluster. For details, see [DB System Time Zones](https://docs.cloud.oracle.com/iaas/Content/Database/References/timezones.htm).
|
63
65
|
"""
|
64
66
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
@@ -92,6 +94,8 @@ class VmClusterArgs:
|
|
92
94
|
pulumi.set(__self__, "memory_size_in_gbs", memory_size_in_gbs)
|
93
95
|
if ocpu_count is not None:
|
94
96
|
pulumi.set(__self__, "ocpu_count", ocpu_count)
|
97
|
+
if system_version is not None:
|
98
|
+
pulumi.set(__self__, "system_version", system_version)
|
95
99
|
if time_zone is not None:
|
96
100
|
pulumi.set(__self__, "time_zone", time_zone)
|
97
101
|
|
@@ -321,6 +325,18 @@ class VmClusterArgs:
|
|
321
325
|
def ocpu_count(self, value: Optional[pulumi.Input[float]]):
|
322
326
|
pulumi.set(self, "ocpu_count", value)
|
323
327
|
|
328
|
+
@property
|
329
|
+
@pulumi.getter(name="systemVersion")
|
330
|
+
def system_version(self) -> Optional[pulumi.Input[str]]:
|
331
|
+
"""
|
332
|
+
Operating system version of the image.
|
333
|
+
"""
|
334
|
+
return pulumi.get(self, "system_version")
|
335
|
+
|
336
|
+
@system_version.setter
|
337
|
+
def system_version(self, value: Optional[pulumi.Input[str]]):
|
338
|
+
pulumi.set(self, "system_version", value)
|
339
|
+
|
324
340
|
@property
|
325
341
|
@pulumi.getter(name="timeZone")
|
326
342
|
def time_zone(self) -> Optional[pulumi.Input[str]]:
|
@@ -825,6 +841,7 @@ class VmCluster(pulumi.CustomResource):
|
|
825
841
|
memory_size_in_gbs: Optional[pulumi.Input[int]] = None,
|
826
842
|
ocpu_count: Optional[pulumi.Input[float]] = None,
|
827
843
|
ssh_public_keys: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
844
|
+
system_version: Optional[pulumi.Input[str]] = None,
|
828
845
|
time_zone: Optional[pulumi.Input[str]] = None,
|
829
846
|
vm_cluster_network_id: Optional[pulumi.Input[str]] = None,
|
830
847
|
__props__=None):
|
@@ -863,6 +880,7 @@ class VmCluster(pulumi.CustomResource):
|
|
863
880
|
is_sparse_diskgroup_enabled=var["vm_cluster_is_sparse_diskgroup_enabled"],
|
864
881
|
license_model=var["vm_cluster_license_model"],
|
865
882
|
memory_size_in_gbs=var["vm_cluster_memory_size_in_gbs"],
|
883
|
+
system_version=var["vm_cluster_system_version"],
|
866
884
|
time_zone=var["vm_cluster_time_zone"])
|
867
885
|
```
|
868
886
|
|
@@ -892,6 +910,7 @@ class VmCluster(pulumi.CustomResource):
|
|
892
910
|
:param pulumi.Input[str] license_model: (Updatable) The Oracle license model that applies to the VM cluster. The default is BRING_YOUR_OWN_LICENSE.
|
893
911
|
:param pulumi.Input[int] memory_size_in_gbs: (Updatable) The memory to be allocated in GBs.
|
894
912
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] ssh_public_keys: (Updatable) The public key portion of one or more key pairs used for SSH access to the VM cluster.
|
913
|
+
:param pulumi.Input[str] system_version: Operating system version of the image.
|
895
914
|
:param pulumi.Input[str] time_zone: The time zone to use for the VM cluster. For details, see [DB System Time Zones](https://docs.cloud.oracle.com/iaas/Content/Database/References/timezones.htm).
|
896
915
|
:param pulumi.Input[str] vm_cluster_network_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the VM cluster network.
|
897
916
|
|
@@ -940,6 +959,7 @@ class VmCluster(pulumi.CustomResource):
|
|
940
959
|
is_sparse_diskgroup_enabled=var["vm_cluster_is_sparse_diskgroup_enabled"],
|
941
960
|
license_model=var["vm_cluster_license_model"],
|
942
961
|
memory_size_in_gbs=var["vm_cluster_memory_size_in_gbs"],
|
962
|
+
system_version=var["vm_cluster_system_version"],
|
943
963
|
time_zone=var["vm_cluster_time_zone"])
|
944
964
|
```
|
945
965
|
|
@@ -984,6 +1004,7 @@ class VmCluster(pulumi.CustomResource):
|
|
984
1004
|
memory_size_in_gbs: Optional[pulumi.Input[int]] = None,
|
985
1005
|
ocpu_count: Optional[pulumi.Input[float]] = None,
|
986
1006
|
ssh_public_keys: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
1007
|
+
system_version: Optional[pulumi.Input[str]] = None,
|
987
1008
|
time_zone: Optional[pulumi.Input[str]] = None,
|
988
1009
|
vm_cluster_network_id: Optional[pulumi.Input[str]] = None,
|
989
1010
|
__props__=None):
|
@@ -1025,6 +1046,7 @@ class VmCluster(pulumi.CustomResource):
|
|
1025
1046
|
if ssh_public_keys is None and not opts.urn:
|
1026
1047
|
raise TypeError("Missing required property 'ssh_public_keys'")
|
1027
1048
|
__props__.__dict__["ssh_public_keys"] = ssh_public_keys
|
1049
|
+
__props__.__dict__["system_version"] = system_version
|
1028
1050
|
__props__.__dict__["time_zone"] = time_zone
|
1029
1051
|
if vm_cluster_network_id is None and not opts.urn:
|
1030
1052
|
raise TypeError("Missing required property 'vm_cluster_network_id'")
|
@@ -1036,7 +1058,6 @@ class VmCluster(pulumi.CustomResource):
|
|
1036
1058
|
__props__.__dict__["ocpus_enabled"] = None
|
1037
1059
|
__props__.__dict__["shape"] = None
|
1038
1060
|
__props__.__dict__["state"] = None
|
1039
|
-
__props__.__dict__["system_version"] = None
|
1040
1061
|
__props__.__dict__["time_created"] = None
|
1041
1062
|
super(VmCluster, __self__).__init__(
|
1042
1063
|
'oci:Database/vmCluster:VmCluster',
|
pulumi_oci/datasafe/__init__.py
CHANGED
@@ -85,8 +85,25 @@ from .get_sdm_masking_policy_differences import *
|
|
85
85
|
from .get_security_assessment import *
|
86
86
|
from .get_security_assessment_comparison import *
|
87
87
|
from .get_security_assessment_finding import *
|
88
|
+
from .get_security_assessment_finding_analytics import *
|
88
89
|
from .get_security_assessment_findings import *
|
90
|
+
from .get_security_assessment_findings_change_audit_logs import *
|
91
|
+
from .get_security_assessment_security_feature_analytics import *
|
92
|
+
from .get_security_assessment_security_features import *
|
89
93
|
from .get_security_assessments import *
|
94
|
+
from .get_security_policies import *
|
95
|
+
from .get_security_policy import *
|
96
|
+
from .get_security_policy_deployment import *
|
97
|
+
from .get_security_policy_deployment_security_policy_entry_state import *
|
98
|
+
from .get_security_policy_deployment_security_policy_entry_states import *
|
99
|
+
from .get_security_policy_deployments import *
|
100
|
+
from .get_security_policy_report import *
|
101
|
+
from .get_security_policy_report_database_table_access_entries import *
|
102
|
+
from .get_security_policy_report_database_table_access_entry import *
|
103
|
+
from .get_security_policy_report_database_view_access_entries import *
|
104
|
+
from .get_security_policy_report_database_view_access_entry import *
|
105
|
+
from .get_security_policy_report_role_grant_paths import *
|
106
|
+
from .get_security_policy_reports import *
|
90
107
|
from .get_sensitive_data_model import *
|
91
108
|
from .get_sensitive_data_model_sensitive_objects import *
|
92
109
|
from .get_sensitive_data_model_sensitive_schemas import *
|
@@ -98,6 +115,8 @@ from .get_sensitive_types import *
|
|
98
115
|
from .get_target_alert_policy_association import *
|
99
116
|
from .get_target_alert_policy_associations import *
|
100
117
|
from .get_target_database import *
|
118
|
+
from .get_target_database_peer_target_database import *
|
119
|
+
from .get_target_database_peer_target_databases import *
|
101
120
|
from .get_target_database_role import *
|
102
121
|
from .get_target_database_roles import *
|
103
122
|
from .get_target_databases import *
|
@@ -108,6 +127,7 @@ from .get_user_assessment import *
|
|
108
127
|
from .get_user_assessment_comparison import *
|
109
128
|
from .get_user_assessment_profile_analytics import *
|
110
129
|
from .get_user_assessment_profiles import *
|
130
|
+
from .get_user_assessment_user_access_analytics import *
|
111
131
|
from .get_user_assessment_user_analytics import *
|
112
132
|
from .get_user_assessment_users import *
|
113
133
|
from .get_user_assessments import *
|
@@ -117,6 +137,7 @@ from .masking_policies_apply_difference_to_masking_columns import *
|
|
117
137
|
from .masking_policies_masking_column import *
|
118
138
|
from .masking_policy import *
|
119
139
|
from .on_prem_connector import *
|
140
|
+
from .report import *
|
120
141
|
from .report_definition import *
|
121
142
|
from .sdm_masking_policy_difference import *
|
122
143
|
from .security_assessment import *
|
@@ -135,6 +156,7 @@ from .sql_firewall_policy import *
|
|
135
156
|
from .sql_firewall_policy_management import *
|
136
157
|
from .target_alert_policy_association import *
|
137
158
|
from .target_database import *
|
159
|
+
from .target_database_peer_target_database import *
|
138
160
|
from .unset_security_assessment_baseline import *
|
139
161
|
from .unset_user_assessment_baseline import *
|
140
162
|
from .user_assessment import *
|