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
@@ -472,6 +472,7 @@ class RemediationRecipe(pulumi.CustomResource):
|
|
472
472
|
exclusions=var["remediation_recipe_detect_configuration_exclusions"],
|
473
473
|
max_permissible_cvss_v2score=var["remediation_recipe_detect_configuration_max_permissible_cvss_v2score"],
|
474
474
|
max_permissible_cvss_v3score=var["remediation_recipe_detect_configuration_max_permissible_cvss_v3score"],
|
475
|
+
max_permissible_severity=var["remediation_recipe_detect_configuration_max_permissible_severity"],
|
475
476
|
upgrade_policy=var["remediation_recipe_detect_configuration_upgrade_policy"],
|
476
477
|
),
|
477
478
|
is_run_triggered_on_kb_change=var["remediation_recipe_is_run_triggered_on_kb_change"],
|
@@ -561,6 +562,7 @@ class RemediationRecipe(pulumi.CustomResource):
|
|
561
562
|
exclusions=var["remediation_recipe_detect_configuration_exclusions"],
|
562
563
|
max_permissible_cvss_v2score=var["remediation_recipe_detect_configuration_max_permissible_cvss_v2score"],
|
563
564
|
max_permissible_cvss_v3score=var["remediation_recipe_detect_configuration_max_permissible_cvss_v3score"],
|
565
|
+
max_permissible_severity=var["remediation_recipe_detect_configuration_max_permissible_severity"],
|
564
566
|
upgrade_policy=var["remediation_recipe_detect_configuration_upgrade_policy"],
|
565
567
|
),
|
566
568
|
is_run_triggered_on_kb_change=var["remediation_recipe_is_run_triggered_on_kb_change"],
|
@@ -16,9 +16,9 @@ __all__ = ['VulnerabilityAuditArgs', 'VulnerabilityAudit']
|
|
16
16
|
@pulumi.input_type
|
17
17
|
class VulnerabilityAuditArgs:
|
18
18
|
def __init__(__self__, *,
|
19
|
-
build_type: pulumi.Input[str],
|
20
19
|
knowledge_base_id: pulumi.Input[str],
|
21
20
|
application_dependencies: Optional[pulumi.Input[Sequence[pulumi.Input['VulnerabilityAuditApplicationDependencyArgs']]]] = None,
|
21
|
+
build_type: Optional[pulumi.Input[str]] = None,
|
22
22
|
compartment_id: Optional[pulumi.Input[str]] = None,
|
23
23
|
configuration: Optional[pulumi.Input['VulnerabilityAuditConfigurationArgs']] = None,
|
24
24
|
defined_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
@@ -28,21 +28,22 @@ class VulnerabilityAuditArgs:
|
|
28
28
|
usage_data: Optional[pulumi.Input['VulnerabilityAuditUsageDataArgs']] = None):
|
29
29
|
"""
|
30
30
|
The set of arguments for constructing a VulnerabilityAudit resource.
|
31
|
-
:param pulumi.Input[str] build_type: The type of the build tool.
|
32
31
|
:param pulumi.Input[str] knowledge_base_id: The Oracle Cloud identifier ([OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm)) of the knowledge base.
|
33
32
|
:param pulumi.Input[Sequence[pulumi.Input['VulnerabilityAuditApplicationDependencyArgs']]] application_dependencies: List of application dependencies (without vulnerabilities).
|
33
|
+
:param pulumi.Input[str] build_type: The type of the build tool is restricted to only two values MAVEN or UNSET. Use UNSET when the list of application dependencies is not Maven-related or is a mix of Maven and other ecosystems. This option is soon to be deprecated.
|
34
34
|
:param pulumi.Input[str] compartment_id: (Updatable) The compartment Oracle Cloud identifier ([OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm)) of the vulnerability audit. If compartment identifier is not provided the compartment of the associated knowledge base will be used instead.
|
35
35
|
:param pulumi.Input['VulnerabilityAuditConfigurationArgs'] configuration: Configuration for a vulnerability audit. A vulnerable application dependency is ignored if its name does match any of the items in `exclusions`, or all of the associated Vulnerabilies have a CVSS v2 score below `maxPermissibleCvssV2Score` and a CVSS v3 score below `maxPermissibleCvssV3Score`. type: object
|
36
36
|
: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"}`
|
37
37
|
:param pulumi.Input[str] display_name: (Updatable) The name of the vulnerability audit.
|
38
38
|
: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"}`
|
39
39
|
:param pulumi.Input['VulnerabilityAuditSourceArgs'] source: vulnerability audit source.
|
40
|
-
:param pulumi.Input['VulnerabilityAuditUsageDataArgs'] usage_data: The source details of the usage data
|
40
|
+
:param pulumi.Input['VulnerabilityAuditUsageDataArgs'] usage_data: The source details of the usage data in object storage. The usage data file uploaded to object storage must be a gzip archive of the JSON usage data returned from the GraalVM native-image-inspect tool after a native-image build. Set `sourceType` to `objectStorageTuple` and use [UsageDataViaObjectStorageTupleDetails](https://docs.cloud.oracle.com/iaas/api/#/en/adm/latest/requests/UsageDataViaObjectStorageTupleDetails) when specifying the namespace, bucket name, and object name.
|
41
41
|
"""
|
42
|
-
pulumi.set(__self__, "build_type", build_type)
|
43
42
|
pulumi.set(__self__, "knowledge_base_id", knowledge_base_id)
|
44
43
|
if application_dependencies is not None:
|
45
44
|
pulumi.set(__self__, "application_dependencies", application_dependencies)
|
45
|
+
if build_type is not None:
|
46
|
+
pulumi.set(__self__, "build_type", build_type)
|
46
47
|
if compartment_id is not None:
|
47
48
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
48
49
|
if configuration is not None:
|
@@ -58,18 +59,6 @@ class VulnerabilityAuditArgs:
|
|
58
59
|
if usage_data is not None:
|
59
60
|
pulumi.set(__self__, "usage_data", usage_data)
|
60
61
|
|
61
|
-
@property
|
62
|
-
@pulumi.getter(name="buildType")
|
63
|
-
def build_type(self) -> pulumi.Input[str]:
|
64
|
-
"""
|
65
|
-
The type of the build tool.
|
66
|
-
"""
|
67
|
-
return pulumi.get(self, "build_type")
|
68
|
-
|
69
|
-
@build_type.setter
|
70
|
-
def build_type(self, value: pulumi.Input[str]):
|
71
|
-
pulumi.set(self, "build_type", value)
|
72
|
-
|
73
62
|
@property
|
74
63
|
@pulumi.getter(name="knowledgeBaseId")
|
75
64
|
def knowledge_base_id(self) -> pulumi.Input[str]:
|
@@ -94,6 +83,18 @@ class VulnerabilityAuditArgs:
|
|
94
83
|
def application_dependencies(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['VulnerabilityAuditApplicationDependencyArgs']]]]):
|
95
84
|
pulumi.set(self, "application_dependencies", value)
|
96
85
|
|
86
|
+
@property
|
87
|
+
@pulumi.getter(name="buildType")
|
88
|
+
def build_type(self) -> Optional[pulumi.Input[str]]:
|
89
|
+
"""
|
90
|
+
The type of the build tool is restricted to only two values MAVEN or UNSET. Use UNSET when the list of application dependencies is not Maven-related or is a mix of Maven and other ecosystems. This option is soon to be deprecated.
|
91
|
+
"""
|
92
|
+
return pulumi.get(self, "build_type")
|
93
|
+
|
94
|
+
@build_type.setter
|
95
|
+
def build_type(self, value: Optional[pulumi.Input[str]]):
|
96
|
+
pulumi.set(self, "build_type", value)
|
97
|
+
|
97
98
|
@property
|
98
99
|
@pulumi.getter(name="compartmentId")
|
99
100
|
def compartment_id(self) -> Optional[pulumi.Input[str]]:
|
@@ -170,7 +171,7 @@ class VulnerabilityAuditArgs:
|
|
170
171
|
@pulumi.getter(name="usageData")
|
171
172
|
def usage_data(self) -> Optional[pulumi.Input['VulnerabilityAuditUsageDataArgs']]:
|
172
173
|
"""
|
173
|
-
The source details of the usage data
|
174
|
+
The source details of the usage data in object storage. The usage data file uploaded to object storage must be a gzip archive of the JSON usage data returned from the GraalVM native-image-inspect tool after a native-image build. Set `sourceType` to `objectStorageTuple` and use [UsageDataViaObjectStorageTupleDetails](https://docs.cloud.oracle.com/iaas/api/#/en/adm/latest/requests/UsageDataViaObjectStorageTupleDetails) when specifying the namespace, bucket name, and object name.
|
174
175
|
"""
|
175
176
|
return pulumi.get(self, "usage_data")
|
176
177
|
|
@@ -196,6 +197,8 @@ class _VulnerabilityAuditState:
|
|
196
197
|
max_observed_cvss_v2score_with_ignored: Optional[pulumi.Input[float]] = None,
|
197
198
|
max_observed_cvss_v3score: Optional[pulumi.Input[float]] = None,
|
198
199
|
max_observed_cvss_v3score_with_ignored: Optional[pulumi.Input[float]] = None,
|
200
|
+
max_observed_severity: Optional[pulumi.Input[str]] = None,
|
201
|
+
max_observed_severity_with_ignored: Optional[pulumi.Input[str]] = None,
|
199
202
|
source: Optional[pulumi.Input['VulnerabilityAuditSourceArgs']] = None,
|
200
203
|
state: Optional[pulumi.Input[str]] = None,
|
201
204
|
system_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
@@ -208,7 +211,7 @@ class _VulnerabilityAuditState:
|
|
208
211
|
"""
|
209
212
|
Input properties used for looking up and filtering VulnerabilityAudit resources.
|
210
213
|
:param pulumi.Input[Sequence[pulumi.Input['VulnerabilityAuditApplicationDependencyArgs']]] application_dependencies: List of application dependencies (without vulnerabilities).
|
211
|
-
:param pulumi.Input[str] build_type: The type of the build tool.
|
214
|
+
:param pulumi.Input[str] build_type: The type of the build tool is restricted to only two values MAVEN or UNSET. Use UNSET when the list of application dependencies is not Maven-related or is a mix of Maven and other ecosystems. This option is soon to be deprecated.
|
212
215
|
:param pulumi.Input[str] compartment_id: (Updatable) The compartment Oracle Cloud identifier ([OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm)) of the vulnerability audit. If compartment identifier is not provided the compartment of the associated knowledge base will be used instead.
|
213
216
|
:param pulumi.Input['VulnerabilityAuditConfigurationArgs'] configuration: Configuration for a vulnerability audit. A vulnerable application dependency is ignored if its name does match any of the items in `exclusions`, or all of the associated Vulnerabilies have a CVSS v2 score below `maxPermissibleCvssV2Score` and a CVSS v3 score below `maxPermissibleCvssV3Score`. type: object
|
214
217
|
: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"}`
|
@@ -221,13 +224,15 @@ class _VulnerabilityAuditState:
|
|
221
224
|
:param pulumi.Input[float] max_observed_cvss_v2score_with_ignored: Maximum Common Vulnerability Scoring System Version 2 score observed for vulnerable application dependencies including ignored ones.
|
222
225
|
:param pulumi.Input[float] max_observed_cvss_v3score: Maximum Common Vulnerability Scoring System Version 3 score observed for non-ignored vulnerable application dependencies.
|
223
226
|
:param pulumi.Input[float] max_observed_cvss_v3score_with_ignored: Maximum Common Vulnerability Scoring System Version 3 score observed for vulnerable application dependencies including ignored ones.
|
227
|
+
:param pulumi.Input[str] max_observed_severity: Maximum ADM Severity observed for non-ignored vulnerable application dependencies.
|
228
|
+
:param pulumi.Input[str] max_observed_severity_with_ignored: Maximum ADM Severity observed for vulnerable application dependencies including ignored ones.
|
224
229
|
:param pulumi.Input['VulnerabilityAuditSourceArgs'] source: vulnerability audit source.
|
225
230
|
:param pulumi.Input[str] state: The current lifecycle state of the vulnerability audit.
|
226
231
|
:param pulumi.Input[Mapping[str, Any]] system_tags: Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
227
232
|
:param pulumi.Input[str] time_created: The creation date and time of the vulnerability audit (formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339)).
|
228
233
|
:param pulumi.Input[str] time_updated: The update date and time of the vulnerability audit (formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339)).
|
229
|
-
:param pulumi.Input['VulnerabilityAuditUsageDataArgs'] usage_data: The source details of the usage data
|
230
|
-
:param pulumi.Input[Sequence[pulumi.Input['VulnerabilityAuditVulnerabilityArgs']]] vulnerabilities: List of vulnerabilities found in the vulnerability audit.
|
234
|
+
:param pulumi.Input['VulnerabilityAuditUsageDataArgs'] usage_data: The source details of the usage data in object storage. The usage data file uploaded to object storage must be a gzip archive of the JSON usage data returned from the GraalVM native-image-inspect tool after a native-image build. Set `sourceType` to `objectStorageTuple` and use [UsageDataViaObjectStorageTupleDetails](https://docs.cloud.oracle.com/iaas/api/#/en/adm/latest/requests/UsageDataViaObjectStorageTupleDetails) when specifying the namespace, bucket name, and object name.
|
235
|
+
:param pulumi.Input[Sequence[pulumi.Input['VulnerabilityAuditVulnerabilityArgs']]] vulnerabilities: List of vulnerabilities found in the vulnerability audit. If a vulnerability affects multiple dependencies, the metadata returned here consists of audit-wide aggregates.
|
231
236
|
:param pulumi.Input[int] vulnerable_artifacts_count: Count of non-ignored vulnerable application dependencies.
|
232
237
|
:param pulumi.Input[int] vulnerable_artifacts_count_with_ignored: Count of all vulnerable application dependencies.
|
233
238
|
"""
|
@@ -259,6 +264,10 @@ class _VulnerabilityAuditState:
|
|
259
264
|
pulumi.set(__self__, "max_observed_cvss_v3score", max_observed_cvss_v3score)
|
260
265
|
if max_observed_cvss_v3score_with_ignored is not None:
|
261
266
|
pulumi.set(__self__, "max_observed_cvss_v3score_with_ignored", max_observed_cvss_v3score_with_ignored)
|
267
|
+
if max_observed_severity is not None:
|
268
|
+
pulumi.set(__self__, "max_observed_severity", max_observed_severity)
|
269
|
+
if max_observed_severity_with_ignored is not None:
|
270
|
+
pulumi.set(__self__, "max_observed_severity_with_ignored", max_observed_severity_with_ignored)
|
262
271
|
if source is not None:
|
263
272
|
pulumi.set(__self__, "source", source)
|
264
273
|
if state is not None:
|
@@ -294,7 +303,7 @@ class _VulnerabilityAuditState:
|
|
294
303
|
@pulumi.getter(name="buildType")
|
295
304
|
def build_type(self) -> Optional[pulumi.Input[str]]:
|
296
305
|
"""
|
297
|
-
The type of the build tool.
|
306
|
+
The type of the build tool is restricted to only two values MAVEN or UNSET. Use UNSET when the list of application dependencies is not Maven-related or is a mix of Maven and other ecosystems. This option is soon to be deprecated.
|
298
307
|
"""
|
299
308
|
return pulumi.get(self, "build_type")
|
300
309
|
|
@@ -446,6 +455,30 @@ class _VulnerabilityAuditState:
|
|
446
455
|
def max_observed_cvss_v3score_with_ignored(self, value: Optional[pulumi.Input[float]]):
|
447
456
|
pulumi.set(self, "max_observed_cvss_v3score_with_ignored", value)
|
448
457
|
|
458
|
+
@property
|
459
|
+
@pulumi.getter(name="maxObservedSeverity")
|
460
|
+
def max_observed_severity(self) -> Optional[pulumi.Input[str]]:
|
461
|
+
"""
|
462
|
+
Maximum ADM Severity observed for non-ignored vulnerable application dependencies.
|
463
|
+
"""
|
464
|
+
return pulumi.get(self, "max_observed_severity")
|
465
|
+
|
466
|
+
@max_observed_severity.setter
|
467
|
+
def max_observed_severity(self, value: Optional[pulumi.Input[str]]):
|
468
|
+
pulumi.set(self, "max_observed_severity", value)
|
469
|
+
|
470
|
+
@property
|
471
|
+
@pulumi.getter(name="maxObservedSeverityWithIgnored")
|
472
|
+
def max_observed_severity_with_ignored(self) -> Optional[pulumi.Input[str]]:
|
473
|
+
"""
|
474
|
+
Maximum ADM Severity observed for vulnerable application dependencies including ignored ones.
|
475
|
+
"""
|
476
|
+
return pulumi.get(self, "max_observed_severity_with_ignored")
|
477
|
+
|
478
|
+
@max_observed_severity_with_ignored.setter
|
479
|
+
def max_observed_severity_with_ignored(self, value: Optional[pulumi.Input[str]]):
|
480
|
+
pulumi.set(self, "max_observed_severity_with_ignored", value)
|
481
|
+
|
449
482
|
@property
|
450
483
|
@pulumi.getter
|
451
484
|
def source(self) -> Optional[pulumi.Input['VulnerabilityAuditSourceArgs']]:
|
@@ -510,7 +543,7 @@ class _VulnerabilityAuditState:
|
|
510
543
|
@pulumi.getter(name="usageData")
|
511
544
|
def usage_data(self) -> Optional[pulumi.Input['VulnerabilityAuditUsageDataArgs']]:
|
512
545
|
"""
|
513
|
-
The source details of the usage data
|
546
|
+
The source details of the usage data in object storage. The usage data file uploaded to object storage must be a gzip archive of the JSON usage data returned from the GraalVM native-image-inspect tool after a native-image build. Set `sourceType` to `objectStorageTuple` and use [UsageDataViaObjectStorageTupleDetails](https://docs.cloud.oracle.com/iaas/api/#/en/adm/latest/requests/UsageDataViaObjectStorageTupleDetails) when specifying the namespace, bucket name, and object name.
|
514
547
|
"""
|
515
548
|
return pulumi.get(self, "usage_data")
|
516
549
|
|
@@ -522,7 +555,7 @@ class _VulnerabilityAuditState:
|
|
522
555
|
@pulumi.getter
|
523
556
|
def vulnerabilities(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['VulnerabilityAuditVulnerabilityArgs']]]]:
|
524
557
|
"""
|
525
|
-
List of vulnerabilities found in the vulnerability audit.
|
558
|
+
List of vulnerabilities found in the vulnerability audit. If a vulnerability affects multiple dependencies, the metadata returned here consists of audit-wide aggregates.
|
526
559
|
"""
|
527
560
|
return pulumi.get(self, "vulnerabilities")
|
528
561
|
|
@@ -583,18 +616,20 @@ class VulnerabilityAudit(pulumi.CustomResource):
|
|
583
616
|
import pulumi_oci as oci
|
584
617
|
|
585
618
|
test_vulnerability_audit = oci.adm.VulnerabilityAudit("testVulnerabilityAudit",
|
586
|
-
build_type=var["vulnerability_audit_build_type"],
|
587
619
|
knowledge_base_id=oci_adm_knowledge_base["test_knowledge_base"]["id"],
|
588
620
|
application_dependencies=[oci.adm.VulnerabilityAuditApplicationDependencyArgs(
|
589
|
-
gav=var["vulnerability_audit_application_dependencies_gav"],
|
590
621
|
node_id=oci_adm_node["test_node"]["id"],
|
591
622
|
application_dependency_node_ids=var["vulnerability_audit_application_dependencies_application_dependency_node_ids"],
|
623
|
+
gav=var["vulnerability_audit_application_dependencies_gav"],
|
624
|
+
purl=var["vulnerability_audit_application_dependencies_purl"],
|
592
625
|
)],
|
626
|
+
build_type=var["vulnerability_audit_build_type"],
|
593
627
|
compartment_id=var["compartment_id"],
|
594
628
|
configuration=oci.adm.VulnerabilityAuditConfigurationArgs(
|
595
629
|
exclusions=var["vulnerability_audit_configuration_exclusions"],
|
596
630
|
max_permissible_cvss_v2score=var["vulnerability_audit_configuration_max_permissible_cvss_v2score"],
|
597
631
|
max_permissible_cvss_v3score=var["vulnerability_audit_configuration_max_permissible_cvss_v3score"],
|
632
|
+
max_permissible_severity=var["vulnerability_audit_configuration_max_permissible_severity"],
|
598
633
|
),
|
599
634
|
defined_tags={
|
600
635
|
"foo-namespace.bar-key": "value",
|
@@ -627,7 +662,7 @@ class VulnerabilityAudit(pulumi.CustomResource):
|
|
627
662
|
:param str resource_name: The name of the resource.
|
628
663
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
629
664
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['VulnerabilityAuditApplicationDependencyArgs']]]] application_dependencies: List of application dependencies (without vulnerabilities).
|
630
|
-
:param pulumi.Input[str] build_type: The type of the build tool.
|
665
|
+
:param pulumi.Input[str] build_type: The type of the build tool is restricted to only two values MAVEN or UNSET. Use UNSET when the list of application dependencies is not Maven-related or is a mix of Maven and other ecosystems. This option is soon to be deprecated.
|
631
666
|
:param pulumi.Input[str] compartment_id: (Updatable) The compartment Oracle Cloud identifier ([OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm)) of the vulnerability audit. If compartment identifier is not provided the compartment of the associated knowledge base will be used instead.
|
632
667
|
:param pulumi.Input[pulumi.InputType['VulnerabilityAuditConfigurationArgs']] configuration: Configuration for a vulnerability audit. A vulnerable application dependency is ignored if its name does match any of the items in `exclusions`, or all of the associated Vulnerabilies have a CVSS v2 score below `maxPermissibleCvssV2Score` and a CVSS v3 score below `maxPermissibleCvssV3Score`. type: object
|
633
668
|
: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"}`
|
@@ -635,7 +670,7 @@ class VulnerabilityAudit(pulumi.CustomResource):
|
|
635
670
|
: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"}`
|
636
671
|
:param pulumi.Input[str] knowledge_base_id: The Oracle Cloud identifier ([OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm)) of the knowledge base.
|
637
672
|
:param pulumi.Input[pulumi.InputType['VulnerabilityAuditSourceArgs']] source: vulnerability audit source.
|
638
|
-
:param pulumi.Input[pulumi.InputType['VulnerabilityAuditUsageDataArgs']] usage_data: The source details of the usage data
|
673
|
+
:param pulumi.Input[pulumi.InputType['VulnerabilityAuditUsageDataArgs']] usage_data: The source details of the usage data in object storage. The usage data file uploaded to object storage must be a gzip archive of the JSON usage data returned from the GraalVM native-image-inspect tool after a native-image build. Set `sourceType` to `objectStorageTuple` and use [UsageDataViaObjectStorageTupleDetails](https://docs.cloud.oracle.com/iaas/api/#/en/adm/latest/requests/UsageDataViaObjectStorageTupleDetails) when specifying the namespace, bucket name, and object name.
|
639
674
|
"""
|
640
675
|
...
|
641
676
|
@overload
|
@@ -655,18 +690,20 @@ class VulnerabilityAudit(pulumi.CustomResource):
|
|
655
690
|
import pulumi_oci as oci
|
656
691
|
|
657
692
|
test_vulnerability_audit = oci.adm.VulnerabilityAudit("testVulnerabilityAudit",
|
658
|
-
build_type=var["vulnerability_audit_build_type"],
|
659
693
|
knowledge_base_id=oci_adm_knowledge_base["test_knowledge_base"]["id"],
|
660
694
|
application_dependencies=[oci.adm.VulnerabilityAuditApplicationDependencyArgs(
|
661
|
-
gav=var["vulnerability_audit_application_dependencies_gav"],
|
662
695
|
node_id=oci_adm_node["test_node"]["id"],
|
663
696
|
application_dependency_node_ids=var["vulnerability_audit_application_dependencies_application_dependency_node_ids"],
|
697
|
+
gav=var["vulnerability_audit_application_dependencies_gav"],
|
698
|
+
purl=var["vulnerability_audit_application_dependencies_purl"],
|
664
699
|
)],
|
700
|
+
build_type=var["vulnerability_audit_build_type"],
|
665
701
|
compartment_id=var["compartment_id"],
|
666
702
|
configuration=oci.adm.VulnerabilityAuditConfigurationArgs(
|
667
703
|
exclusions=var["vulnerability_audit_configuration_exclusions"],
|
668
704
|
max_permissible_cvss_v2score=var["vulnerability_audit_configuration_max_permissible_cvss_v2score"],
|
669
705
|
max_permissible_cvss_v3score=var["vulnerability_audit_configuration_max_permissible_cvss_v3score"],
|
706
|
+
max_permissible_severity=var["vulnerability_audit_configuration_max_permissible_severity"],
|
670
707
|
),
|
671
708
|
defined_tags={
|
672
709
|
"foo-namespace.bar-key": "value",
|
@@ -731,8 +768,6 @@ class VulnerabilityAudit(pulumi.CustomResource):
|
|
731
768
|
__props__ = VulnerabilityAuditArgs.__new__(VulnerabilityAuditArgs)
|
732
769
|
|
733
770
|
__props__.__dict__["application_dependencies"] = application_dependencies
|
734
|
-
if build_type is None and not opts.urn:
|
735
|
-
raise TypeError("Missing required property 'build_type'")
|
736
771
|
__props__.__dict__["build_type"] = build_type
|
737
772
|
__props__.__dict__["compartment_id"] = compartment_id
|
738
773
|
__props__.__dict__["configuration"] = configuration
|
@@ -750,6 +785,8 @@ class VulnerabilityAudit(pulumi.CustomResource):
|
|
750
785
|
__props__.__dict__["max_observed_cvss_v2score_with_ignored"] = None
|
751
786
|
__props__.__dict__["max_observed_cvss_v3score"] = None
|
752
787
|
__props__.__dict__["max_observed_cvss_v3score_with_ignored"] = None
|
788
|
+
__props__.__dict__["max_observed_severity"] = None
|
789
|
+
__props__.__dict__["max_observed_severity_with_ignored"] = None
|
753
790
|
__props__.__dict__["state"] = None
|
754
791
|
__props__.__dict__["system_tags"] = None
|
755
792
|
__props__.__dict__["time_created"] = None
|
@@ -781,6 +818,8 @@ class VulnerabilityAudit(pulumi.CustomResource):
|
|
781
818
|
max_observed_cvss_v2score_with_ignored: Optional[pulumi.Input[float]] = None,
|
782
819
|
max_observed_cvss_v3score: Optional[pulumi.Input[float]] = None,
|
783
820
|
max_observed_cvss_v3score_with_ignored: Optional[pulumi.Input[float]] = None,
|
821
|
+
max_observed_severity: Optional[pulumi.Input[str]] = None,
|
822
|
+
max_observed_severity_with_ignored: Optional[pulumi.Input[str]] = None,
|
784
823
|
source: Optional[pulumi.Input[pulumi.InputType['VulnerabilityAuditSourceArgs']]] = None,
|
785
824
|
state: Optional[pulumi.Input[str]] = None,
|
786
825
|
system_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
@@ -798,7 +837,7 @@ class VulnerabilityAudit(pulumi.CustomResource):
|
|
798
837
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
799
838
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
800
839
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['VulnerabilityAuditApplicationDependencyArgs']]]] application_dependencies: List of application dependencies (without vulnerabilities).
|
801
|
-
:param pulumi.Input[str] build_type: The type of the build tool.
|
840
|
+
:param pulumi.Input[str] build_type: The type of the build tool is restricted to only two values MAVEN or UNSET. Use UNSET when the list of application dependencies is not Maven-related or is a mix of Maven and other ecosystems. This option is soon to be deprecated.
|
802
841
|
:param pulumi.Input[str] compartment_id: (Updatable) The compartment Oracle Cloud identifier ([OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm)) of the vulnerability audit. If compartment identifier is not provided the compartment of the associated knowledge base will be used instead.
|
803
842
|
:param pulumi.Input[pulumi.InputType['VulnerabilityAuditConfigurationArgs']] configuration: Configuration for a vulnerability audit. A vulnerable application dependency is ignored if its name does match any of the items in `exclusions`, or all of the associated Vulnerabilies have a CVSS v2 score below `maxPermissibleCvssV2Score` and a CVSS v3 score below `maxPermissibleCvssV3Score`. type: object
|
804
843
|
: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"}`
|
@@ -811,13 +850,15 @@ class VulnerabilityAudit(pulumi.CustomResource):
|
|
811
850
|
:param pulumi.Input[float] max_observed_cvss_v2score_with_ignored: Maximum Common Vulnerability Scoring System Version 2 score observed for vulnerable application dependencies including ignored ones.
|
812
851
|
:param pulumi.Input[float] max_observed_cvss_v3score: Maximum Common Vulnerability Scoring System Version 3 score observed for non-ignored vulnerable application dependencies.
|
813
852
|
:param pulumi.Input[float] max_observed_cvss_v3score_with_ignored: Maximum Common Vulnerability Scoring System Version 3 score observed for vulnerable application dependencies including ignored ones.
|
853
|
+
:param pulumi.Input[str] max_observed_severity: Maximum ADM Severity observed for non-ignored vulnerable application dependencies.
|
854
|
+
:param pulumi.Input[str] max_observed_severity_with_ignored: Maximum ADM Severity observed for vulnerable application dependencies including ignored ones.
|
814
855
|
:param pulumi.Input[pulumi.InputType['VulnerabilityAuditSourceArgs']] source: vulnerability audit source.
|
815
856
|
:param pulumi.Input[str] state: The current lifecycle state of the vulnerability audit.
|
816
857
|
:param pulumi.Input[Mapping[str, Any]] system_tags: Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
817
858
|
:param pulumi.Input[str] time_created: The creation date and time of the vulnerability audit (formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339)).
|
818
859
|
:param pulumi.Input[str] time_updated: The update date and time of the vulnerability audit (formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339)).
|
819
|
-
:param pulumi.Input[pulumi.InputType['VulnerabilityAuditUsageDataArgs']] usage_data: The source details of the usage data
|
820
|
-
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['VulnerabilityAuditVulnerabilityArgs']]]] vulnerabilities: List of vulnerabilities found in the vulnerability audit.
|
860
|
+
:param pulumi.Input[pulumi.InputType['VulnerabilityAuditUsageDataArgs']] usage_data: The source details of the usage data in object storage. The usage data file uploaded to object storage must be a gzip archive of the JSON usage data returned from the GraalVM native-image-inspect tool after a native-image build. Set `sourceType` to `objectStorageTuple` and use [UsageDataViaObjectStorageTupleDetails](https://docs.cloud.oracle.com/iaas/api/#/en/adm/latest/requests/UsageDataViaObjectStorageTupleDetails) when specifying the namespace, bucket name, and object name.
|
861
|
+
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['VulnerabilityAuditVulnerabilityArgs']]]] vulnerabilities: List of vulnerabilities found in the vulnerability audit. If a vulnerability affects multiple dependencies, the metadata returned here consists of audit-wide aggregates.
|
821
862
|
:param pulumi.Input[int] vulnerable_artifacts_count: Count of non-ignored vulnerable application dependencies.
|
822
863
|
:param pulumi.Input[int] vulnerable_artifacts_count_with_ignored: Count of all vulnerable application dependencies.
|
823
864
|
"""
|
@@ -839,6 +880,8 @@ class VulnerabilityAudit(pulumi.CustomResource):
|
|
839
880
|
__props__.__dict__["max_observed_cvss_v2score_with_ignored"] = max_observed_cvss_v2score_with_ignored
|
840
881
|
__props__.__dict__["max_observed_cvss_v3score"] = max_observed_cvss_v3score
|
841
882
|
__props__.__dict__["max_observed_cvss_v3score_with_ignored"] = max_observed_cvss_v3score_with_ignored
|
883
|
+
__props__.__dict__["max_observed_severity"] = max_observed_severity
|
884
|
+
__props__.__dict__["max_observed_severity_with_ignored"] = max_observed_severity_with_ignored
|
842
885
|
__props__.__dict__["source"] = source
|
843
886
|
__props__.__dict__["state"] = state
|
844
887
|
__props__.__dict__["system_tags"] = system_tags
|
@@ -862,7 +905,7 @@ class VulnerabilityAudit(pulumi.CustomResource):
|
|
862
905
|
@pulumi.getter(name="buildType")
|
863
906
|
def build_type(self) -> pulumi.Output[str]:
|
864
907
|
"""
|
865
|
-
The type of the build tool.
|
908
|
+
The type of the build tool is restricted to only two values MAVEN or UNSET. Use UNSET when the list of application dependencies is not Maven-related or is a mix of Maven and other ecosystems. This option is soon to be deprecated.
|
866
909
|
"""
|
867
910
|
return pulumi.get(self, "build_type")
|
868
911
|
|
@@ -962,6 +1005,22 @@ class VulnerabilityAudit(pulumi.CustomResource):
|
|
962
1005
|
"""
|
963
1006
|
return pulumi.get(self, "max_observed_cvss_v3score_with_ignored")
|
964
1007
|
|
1008
|
+
@property
|
1009
|
+
@pulumi.getter(name="maxObservedSeverity")
|
1010
|
+
def max_observed_severity(self) -> pulumi.Output[str]:
|
1011
|
+
"""
|
1012
|
+
Maximum ADM Severity observed for non-ignored vulnerable application dependencies.
|
1013
|
+
"""
|
1014
|
+
return pulumi.get(self, "max_observed_severity")
|
1015
|
+
|
1016
|
+
@property
|
1017
|
+
@pulumi.getter(name="maxObservedSeverityWithIgnored")
|
1018
|
+
def max_observed_severity_with_ignored(self) -> pulumi.Output[str]:
|
1019
|
+
"""
|
1020
|
+
Maximum ADM Severity observed for vulnerable application dependencies including ignored ones.
|
1021
|
+
"""
|
1022
|
+
return pulumi.get(self, "max_observed_severity_with_ignored")
|
1023
|
+
|
965
1024
|
@property
|
966
1025
|
@pulumi.getter
|
967
1026
|
def source(self) -> pulumi.Output['outputs.VulnerabilityAuditSource']:
|
@@ -1006,7 +1065,7 @@ class VulnerabilityAudit(pulumi.CustomResource):
|
|
1006
1065
|
@pulumi.getter(name="usageData")
|
1007
1066
|
def usage_data(self) -> pulumi.Output['outputs.VulnerabilityAuditUsageData']:
|
1008
1067
|
"""
|
1009
|
-
The source details of the usage data
|
1068
|
+
The source details of the usage data in object storage. The usage data file uploaded to object storage must be a gzip archive of the JSON usage data returned from the GraalVM native-image-inspect tool after a native-image build. Set `sourceType` to `objectStorageTuple` and use [UsageDataViaObjectStorageTupleDetails](https://docs.cloud.oracle.com/iaas/api/#/en/adm/latest/requests/UsageDataViaObjectStorageTupleDetails) when specifying the namespace, bucket name, and object name.
|
1010
1069
|
"""
|
1011
1070
|
return pulumi.get(self, "usage_data")
|
1012
1071
|
|
@@ -1014,7 +1073,7 @@ class VulnerabilityAudit(pulumi.CustomResource):
|
|
1014
1073
|
@pulumi.getter
|
1015
1074
|
def vulnerabilities(self) -> pulumi.Output[Sequence['outputs.VulnerabilityAuditVulnerability']]:
|
1016
1075
|
"""
|
1017
|
-
List of vulnerabilities found in the vulnerability audit.
|
1076
|
+
List of vulnerabilities found in the vulnerability audit. If a vulnerability affects multiple dependencies, the metadata returned here consists of audit-wide aggregates.
|
1018
1077
|
"""
|
1019
1078
|
return pulumi.get(self, "vulnerabilities")
|
1020
1079
|
|
pulumi_oci/database/__init__.py
CHANGED
@@ -161,6 +161,7 @@ from .get_oneoff_patch import *
|
|
161
161
|
from .get_oneoff_patches import *
|
162
162
|
from .get_pluggable_database import *
|
163
163
|
from .get_pluggable_databases import *
|
164
|
+
from .get_system_versions import *
|
164
165
|
from .get_vm_cluster import *
|
165
166
|
from .get_vm_cluster_network import *
|
166
167
|
from .get_vm_cluster_network_download_config_file import *
|
pulumi_oci/database/_inputs.py
CHANGED
@@ -215,6 +215,7 @@ __all__ = [
|
|
215
215
|
'GetManagedPreferredCredentialsFilterArgs',
|
216
216
|
'GetOneoffPatchesFilterArgs',
|
217
217
|
'GetPluggableDatabasesFilterArgs',
|
218
|
+
'GetSystemVersionsFilterArgs',
|
218
219
|
'GetVmClusterNetworksFilterArgs',
|
219
220
|
'GetVmClusterPatchHistoryEntriesFilterArgs',
|
220
221
|
'GetVmClusterPatchesFilterArgs',
|
@@ -13035,6 +13036,45 @@ class GetPluggableDatabasesFilterArgs:
|
|
13035
13036
|
pulumi.set(self, "regex", value)
|
13036
13037
|
|
13037
13038
|
|
13039
|
+
@pulumi.input_type
|
13040
|
+
class GetSystemVersionsFilterArgs:
|
13041
|
+
def __init__(__self__, *,
|
13042
|
+
name: str,
|
13043
|
+
values: Sequence[str],
|
13044
|
+
regex: Optional[bool] = None):
|
13045
|
+
pulumi.set(__self__, "name", name)
|
13046
|
+
pulumi.set(__self__, "values", values)
|
13047
|
+
if regex is not None:
|
13048
|
+
pulumi.set(__self__, "regex", regex)
|
13049
|
+
|
13050
|
+
@property
|
13051
|
+
@pulumi.getter
|
13052
|
+
def name(self) -> str:
|
13053
|
+
return pulumi.get(self, "name")
|
13054
|
+
|
13055
|
+
@name.setter
|
13056
|
+
def name(self, value: str):
|
13057
|
+
pulumi.set(self, "name", value)
|
13058
|
+
|
13059
|
+
@property
|
13060
|
+
@pulumi.getter
|
13061
|
+
def values(self) -> Sequence[str]:
|
13062
|
+
return pulumi.get(self, "values")
|
13063
|
+
|
13064
|
+
@values.setter
|
13065
|
+
def values(self, value: Sequence[str]):
|
13066
|
+
pulumi.set(self, "values", value)
|
13067
|
+
|
13068
|
+
@property
|
13069
|
+
@pulumi.getter
|
13070
|
+
def regex(self) -> Optional[bool]:
|
13071
|
+
return pulumi.get(self, "regex")
|
13072
|
+
|
13073
|
+
@regex.setter
|
13074
|
+
def regex(self, value: Optional[bool]):
|
13075
|
+
pulumi.set(self, "regex", value)
|
13076
|
+
|
13077
|
+
|
13038
13078
|
@pulumi.input_type
|
13039
13079
|
class GetVmClusterNetworksFilterArgs:
|
13040
13080
|
def __init__(__self__, *,
|
@@ -45,6 +45,7 @@ class CloudVmClusterArgs:
|
|
45
45
|
private_zone_id: Optional[pulumi.Input[str]] = None,
|
46
46
|
scan_listener_port_tcp: Optional[pulumi.Input[int]] = None,
|
47
47
|
scan_listener_port_tcp_ssl: Optional[pulumi.Input[int]] = None,
|
48
|
+
system_version: Optional[pulumi.Input[str]] = None,
|
48
49
|
time_zone: Optional[pulumi.Input[str]] = None):
|
49
50
|
"""
|
50
51
|
The set of arguments for constructing a CloudVmCluster resource.
|
@@ -88,6 +89,7 @@ class CloudVmClusterArgs:
|
|
88
89
|
:param pulumi.Input[str] private_zone_id: The private zone id in which DNS records need to be created.
|
89
90
|
:param pulumi.Input[int] scan_listener_port_tcp: The TCP Single Client Access Name (SCAN) port. The default port is 1521.
|
90
91
|
:param pulumi.Input[int] scan_listener_port_tcp_ssl: The TCPS Single Client Access Name (SCAN) port. The default port is 2484.
|
92
|
+
:param pulumi.Input[str] system_version: Operating system version of the image.
|
91
93
|
:param pulumi.Input[str] time_zone: The time zone to use for the cloud VM cluster. For details, see [Time Zones](https://docs.cloud.oracle.com/iaas/Content/Database/References/timezones.htm).
|
92
94
|
|
93
95
|
|
@@ -143,6 +145,8 @@ class CloudVmClusterArgs:
|
|
143
145
|
pulumi.set(__self__, "scan_listener_port_tcp", scan_listener_port_tcp)
|
144
146
|
if scan_listener_port_tcp_ssl is not None:
|
145
147
|
pulumi.set(__self__, "scan_listener_port_tcp_ssl", scan_listener_port_tcp_ssl)
|
148
|
+
if system_version is not None:
|
149
|
+
pulumi.set(__self__, "system_version", system_version)
|
146
150
|
if time_zone is not None:
|
147
151
|
pulumi.set(__self__, "time_zone", time_zone)
|
148
152
|
|
@@ -503,6 +507,18 @@ class CloudVmClusterArgs:
|
|
503
507
|
def scan_listener_port_tcp_ssl(self, value: Optional[pulumi.Input[int]]):
|
504
508
|
pulumi.set(self, "scan_listener_port_tcp_ssl", value)
|
505
509
|
|
510
|
+
@property
|
511
|
+
@pulumi.getter(name="systemVersion")
|
512
|
+
def system_version(self) -> Optional[pulumi.Input[str]]:
|
513
|
+
"""
|
514
|
+
Operating system version of the image.
|
515
|
+
"""
|
516
|
+
return pulumi.get(self, "system_version")
|
517
|
+
|
518
|
+
@system_version.setter
|
519
|
+
def system_version(self, value: Optional[pulumi.Input[str]]):
|
520
|
+
pulumi.set(self, "system_version", value)
|
521
|
+
|
506
522
|
@property
|
507
523
|
@pulumi.getter(name="timeZone")
|
508
524
|
def time_zone(self) -> Optional[pulumi.Input[str]]:
|
@@ -1342,6 +1358,7 @@ class CloudVmCluster(pulumi.CustomResource):
|
|
1342
1358
|
scan_listener_port_tcp_ssl: Optional[pulumi.Input[int]] = None,
|
1343
1359
|
ssh_public_keys: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
1344
1360
|
subnet_id: Optional[pulumi.Input[str]] = None,
|
1361
|
+
system_version: Optional[pulumi.Input[str]] = None,
|
1345
1362
|
time_zone: Optional[pulumi.Input[str]] = None,
|
1346
1363
|
__props__=None):
|
1347
1364
|
"""
|
@@ -1390,6 +1407,7 @@ class CloudVmCluster(pulumi.CustomResource):
|
|
1390
1407
|
private_zone_id=oci_dns_zone["test_zone"]["id"],
|
1391
1408
|
scan_listener_port_tcp=var["cloud_vm_cluster_scan_listener_port_tcp"],
|
1392
1409
|
scan_listener_port_tcp_ssl=var["cloud_vm_cluster_scan_listener_port_tcp_ssl"],
|
1410
|
+
system_version=var["cloud_vm_cluster_system_version"],
|
1393
1411
|
time_zone=var["cloud_vm_cluster_time_zone"])
|
1394
1412
|
```
|
1395
1413
|
|
@@ -1443,6 +1461,7 @@ class CloudVmCluster(pulumi.CustomResource):
|
|
1443
1461
|
:param pulumi.Input[int] scan_listener_port_tcp_ssl: The TCPS Single Client Access Name (SCAN) port. The default port is 2484.
|
1444
1462
|
: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 cloud VM cluster.
|
1445
1463
|
:param pulumi.Input[str] subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet associated with the cloud VM cluster.
|
1464
|
+
:param pulumi.Input[str] system_version: Operating system version of the image.
|
1446
1465
|
:param pulumi.Input[str] time_zone: The time zone to use for the cloud VM cluster. For details, see [Time Zones](https://docs.cloud.oracle.com/iaas/Content/Database/References/timezones.htm).
|
1447
1466
|
|
1448
1467
|
|
@@ -1501,6 +1520,7 @@ class CloudVmCluster(pulumi.CustomResource):
|
|
1501
1520
|
private_zone_id=oci_dns_zone["test_zone"]["id"],
|
1502
1521
|
scan_listener_port_tcp=var["cloud_vm_cluster_scan_listener_port_tcp"],
|
1503
1522
|
scan_listener_port_tcp_ssl=var["cloud_vm_cluster_scan_listener_port_tcp_ssl"],
|
1523
|
+
system_version=var["cloud_vm_cluster_system_version"],
|
1504
1524
|
time_zone=var["cloud_vm_cluster_time_zone"])
|
1505
1525
|
```
|
1506
1526
|
|
@@ -1556,6 +1576,7 @@ class CloudVmCluster(pulumi.CustomResource):
|
|
1556
1576
|
scan_listener_port_tcp_ssl: Optional[pulumi.Input[int]] = None,
|
1557
1577
|
ssh_public_keys: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
1558
1578
|
subnet_id: Optional[pulumi.Input[str]] = None,
|
1579
|
+
system_version: Optional[pulumi.Input[str]] = None,
|
1559
1580
|
time_zone: Optional[pulumi.Input[str]] = None,
|
1560
1581
|
__props__=None):
|
1561
1582
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
@@ -1613,6 +1634,7 @@ class CloudVmCluster(pulumi.CustomResource):
|
|
1613
1634
|
if subnet_id is None and not opts.urn:
|
1614
1635
|
raise TypeError("Missing required property 'subnet_id'")
|
1615
1636
|
__props__.__dict__["subnet_id"] = subnet_id
|
1637
|
+
__props__.__dict__["system_version"] = system_version
|
1616
1638
|
__props__.__dict__["time_zone"] = time_zone
|
1617
1639
|
__props__.__dict__["availability_domain"] = None
|
1618
1640
|
__props__.__dict__["disk_redundancy"] = None
|
@@ -1627,7 +1649,6 @@ class CloudVmCluster(pulumi.CustomResource):
|
|
1627
1649
|
__props__.__dict__["shape"] = None
|
1628
1650
|
__props__.__dict__["state"] = None
|
1629
1651
|
__props__.__dict__["storage_size_in_gbs"] = None
|
1630
|
-
__props__.__dict__["system_version"] = None
|
1631
1652
|
__props__.__dict__["time_created"] = None
|
1632
1653
|
__props__.__dict__["vip_ids"] = None
|
1633
1654
|
__props__.__dict__["zone_id"] = None
|