pulumi-oci 2.19.0a1733984857__py3-none-any.whl → 2.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.
Files changed (128) hide show
  1. pulumi_oci/__init__.py +56 -0
  2. pulumi_oci/bigdataservice/__init__.py +4 -0
  3. pulumi_oci/bigdataservice/_inputs.py +672 -6
  4. pulumi_oci/bigdataservice/bds_instance.py +169 -7
  5. pulumi_oci/bigdataservice/bds_instance_api_key.py +66 -3
  6. pulumi_oci/bigdataservice/bds_instance_identity_configuration.py +859 -0
  7. pulumi_oci/bigdataservice/bds_instance_patch_action.py +4 -0
  8. pulumi_oci/bigdataservice/get_bds_cluster_versions.py +123 -0
  9. pulumi_oci/bigdataservice/get_bds_instance.py +48 -1
  10. pulumi_oci/bigdataservice/get_bds_instance_api_key.py +17 -1
  11. pulumi_oci/bigdataservice/get_bds_instance_api_keys.py +3 -0
  12. pulumi_oci/bigdataservice/get_bds_instance_identity_configuration.py +322 -0
  13. pulumi_oci/bigdataservice/get_bds_instance_identity_configurations.py +207 -0
  14. pulumi_oci/bigdataservice/outputs.py +1466 -98
  15. pulumi_oci/blockchain/get_blockchain_platform.py +1 -1
  16. pulumi_oci/blockchain/outputs.py +2 -2
  17. pulumi_oci/core/outputs.py +4 -0
  18. pulumi_oci/database/autonomous_container_database.py +47 -0
  19. pulumi_oci/database/autonomous_database.py +94 -0
  20. pulumi_oci/database/exadb_vm_cluster.py +104 -0
  21. pulumi_oci/database/get_autonomous_container_database.py +15 -1
  22. pulumi_oci/database/get_autonomous_database.py +29 -1
  23. pulumi_oci/database/outputs.py +36 -0
  24. pulumi_oci/dataflow/application.py +75 -33
  25. pulumi_oci/dataflow/get_application.py +15 -1
  26. pulumi_oci/dataflow/outputs.py +7 -0
  27. pulumi_oci/datascience/_inputs.py +32 -12
  28. pulumi_oci/datascience/get_job_run.py +3 -3
  29. pulumi_oci/datascience/get_job_runs.py +2 -2
  30. pulumi_oci/datascience/job_run.py +7 -7
  31. pulumi_oci/datascience/model_deployment.py +2 -0
  32. pulumi_oci/datascience/outputs.py +62 -26
  33. pulumi_oci/desktops/_inputs.py +9 -9
  34. pulumi_oci/desktops/desktop_pool.py +84 -35
  35. pulumi_oci/desktops/get_desktop_pool.py +12 -1
  36. pulumi_oci/desktops/outputs.py +13 -6
  37. pulumi_oci/disasterrecovery/_inputs.py +46 -30
  38. pulumi_oci/disasterrecovery/dr_plan.py +194 -23
  39. pulumi_oci/disasterrecovery/get_dr_plan.py +54 -4
  40. pulumi_oci/disasterrecovery/get_dr_plans.py +23 -1
  41. pulumi_oci/disasterrecovery/outputs.py +113 -21
  42. pulumi_oci/fleetappsmanagement/__init__.py +19 -0
  43. pulumi_oci/fleetappsmanagement/_inputs.py +5334 -378
  44. pulumi_oci/fleetappsmanagement/compliance_policy_rule.py +830 -0
  45. pulumi_oci/fleetappsmanagement/fleet.py +112 -67
  46. pulumi_oci/fleetappsmanagement/fleet_credential.py +44 -36
  47. pulumi_oci/fleetappsmanagement/fleet_property.py +35 -35
  48. pulumi_oci/fleetappsmanagement/fleet_resource.py +37 -37
  49. pulumi_oci/fleetappsmanagement/get_announcements.py +4 -4
  50. pulumi_oci/fleetappsmanagement/get_compliance_policies.py +199 -0
  51. pulumi_oci/fleetappsmanagement/get_compliance_policy.py +253 -0
  52. pulumi_oci/fleetappsmanagement/get_compliance_policy_rule.py +324 -0
  53. pulumi_oci/fleetappsmanagement/get_compliance_policy_rules.py +243 -0
  54. pulumi_oci/fleetappsmanagement/get_compliance_record_counts.py +144 -0
  55. pulumi_oci/fleetappsmanagement/get_compliance_records.py +279 -0
  56. pulumi_oci/fleetappsmanagement/get_fleet.py +29 -15
  57. pulumi_oci/fleetappsmanagement/get_fleet_compliance_report.py +8 -8
  58. pulumi_oci/fleetappsmanagement/get_fleet_credential.py +7 -7
  59. pulumi_oci/fleetappsmanagement/get_fleet_credentials.py +61 -17
  60. pulumi_oci/fleetappsmanagement/get_fleet_products.py +6 -6
  61. pulumi_oci/fleetappsmanagement/get_fleet_properties.py +8 -8
  62. pulumi_oci/fleetappsmanagement/get_fleet_property.py +11 -11
  63. pulumi_oci/fleetappsmanagement/get_fleet_resource.py +11 -11
  64. pulumi_oci/fleetappsmanagement/get_fleet_resources.py +10 -10
  65. pulumi_oci/fleetappsmanagement/get_fleet_targets.py +8 -8
  66. pulumi_oci/fleetappsmanagement/get_fleets.py +16 -16
  67. pulumi_oci/fleetappsmanagement/get_inventory_resources.py +12 -12
  68. pulumi_oci/fleetappsmanagement/get_maintenance_window.py +8 -8
  69. pulumi_oci/fleetappsmanagement/get_maintenance_windows.py +31 -12
  70. pulumi_oci/fleetappsmanagement/get_managed_entity_counts.py +144 -0
  71. pulumi_oci/fleetappsmanagement/get_onboarding_policies.py +2 -2
  72. pulumi_oci/fleetappsmanagement/get_onboardings.py +2 -2
  73. pulumi_oci/fleetappsmanagement/get_patch.py +363 -0
  74. pulumi_oci/fleetappsmanagement/get_patches.py +335 -0
  75. pulumi_oci/fleetappsmanagement/get_platform_configuration.py +296 -0
  76. pulumi_oci/fleetappsmanagement/get_platform_configurations.py +221 -0
  77. pulumi_oci/fleetappsmanagement/get_properties.py +9 -9
  78. pulumi_oci/fleetappsmanagement/get_property.py +4 -4
  79. pulumi_oci/fleetappsmanagement/get_runbook.py +8 -8
  80. pulumi_oci/fleetappsmanagement/get_runbooks.py +16 -16
  81. pulumi_oci/fleetappsmanagement/get_scheduler_definition.py +10 -10
  82. pulumi_oci/fleetappsmanagement/get_scheduler_definition_scheduled_fleets.py +2 -2
  83. pulumi_oci/fleetappsmanagement/get_scheduler_definitions.py +33 -11
  84. pulumi_oci/fleetappsmanagement/get_scheduler_job_counts.py +144 -0
  85. pulumi_oci/fleetappsmanagement/get_scheduler_job_job_activity_resources.py +245 -0
  86. pulumi_oci/fleetappsmanagement/get_scheduler_job_job_activity_steps.py +245 -0
  87. pulumi_oci/fleetappsmanagement/get_task_record.py +3 -3
  88. pulumi_oci/fleetappsmanagement/maintenance_window.py +44 -44
  89. pulumi_oci/fleetappsmanagement/onboarding.py +108 -20
  90. pulumi_oci/fleetappsmanagement/outputs.py +11222 -2736
  91. pulumi_oci/fleetappsmanagement/patch.py +978 -0
  92. pulumi_oci/fleetappsmanagement/platform_configuration.py +687 -0
  93. pulumi_oci/fleetappsmanagement/property.py +27 -27
  94. pulumi_oci/fleetappsmanagement/runbook.py +1173 -0
  95. pulumi_oci/fleetappsmanagement/scheduler_definition.py +30 -30
  96. pulumi_oci/fleetappsmanagement/task_record.py +754 -0
  97. pulumi_oci/fleetsoftwareupdate/fsu_collection.py +28 -0
  98. pulumi_oci/fleetsoftwareupdate/fsu_cycle.py +56 -0
  99. pulumi_oci/fleetsoftwareupdate/get_fsu_collection.py +15 -1
  100. pulumi_oci/fleetsoftwareupdate/get_fsu_cycle.py +29 -1
  101. pulumi_oci/fleetsoftwareupdate/outputs.py +33 -0
  102. pulumi_oci/generativeai/dedicated_ai_cluster.py +21 -0
  103. pulumi_oci/goldengate/__init__.py +7 -0
  104. pulumi_oci/goldengate/_inputs.py +665 -0
  105. pulumi_oci/goldengate/connection.py +7 -7
  106. pulumi_oci/goldengate/get_pipeline.py +408 -0
  107. pulumi_oci/goldengate/get_pipeline_running_processes.py +144 -0
  108. pulumi_oci/goldengate/get_pipeline_schema_tables.py +207 -0
  109. pulumi_oci/goldengate/get_pipeline_schemas.py +163 -0
  110. pulumi_oci/goldengate/get_pipelines.py +213 -0
  111. pulumi_oci/goldengate/get_recipes.py +188 -0
  112. pulumi_oci/goldengate/get_trail_files.py +4 -2
  113. pulumi_oci/goldengate/get_trail_sequences.py +4 -2
  114. pulumi_oci/goldengate/outputs.py +1500 -0
  115. pulumi_oci/goldengate/pipeline.py +928 -0
  116. pulumi_oci/pulumi-plugin.json +1 -1
  117. pulumi_oci/stackmonitoring/_inputs.py +94 -14
  118. pulumi_oci/stackmonitoring/get_metric_extensions.py +22 -3
  119. pulumi_oci/stackmonitoring/metric_extension.py +8 -0
  120. pulumi_oci/stackmonitoring/outputs.py +166 -24
  121. pulumi_oci/visualbuilder/_inputs.py +57 -202
  122. pulumi_oci/visualbuilder/get_vb_instance.py +15 -29
  123. pulumi_oci/visualbuilder/outputs.py +114 -400
  124. pulumi_oci/visualbuilder/vb_instance.py +62 -59
  125. {pulumi_oci-2.19.0a1733984857.dist-info → pulumi_oci-2.20.0.dist-info}/METADATA +3 -3
  126. {pulumi_oci-2.19.0a1733984857.dist-info → pulumi_oci-2.20.0.dist-info}/RECORD +128 -98
  127. {pulumi_oci-2.19.0a1733984857.dist-info → pulumi_oci-2.20.0.dist-info}/WHEEL +0 -0
  128. {pulumi_oci-2.19.0a1733984857.dist-info → pulumi_oci-2.20.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,188 @@
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 sys
8
+ import pulumi
9
+ import pulumi.runtime
10
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
11
+ if sys.version_info >= (3, 11):
12
+ from typing import NotRequired, TypedDict, TypeAlias
13
+ else:
14
+ from typing_extensions import NotRequired, TypedDict, TypeAlias
15
+ from .. import _utilities
16
+ from . import outputs
17
+ from ._inputs import *
18
+
19
+ __all__ = [
20
+ 'GetRecipesResult',
21
+ 'AwaitableGetRecipesResult',
22
+ 'get_recipes',
23
+ 'get_recipes_output',
24
+ ]
25
+
26
+ @pulumi.output_type
27
+ class GetRecipesResult:
28
+ """
29
+ A collection of values returned by getRecipes.
30
+ """
31
+ def __init__(__self__, compartment_id=None, display_name=None, filters=None, id=None, recipe_summary_collections=None, recipe_type=None):
32
+ if compartment_id and not isinstance(compartment_id, str):
33
+ raise TypeError("Expected argument 'compartment_id' to be a str")
34
+ pulumi.set(__self__, "compartment_id", compartment_id)
35
+ if display_name and not isinstance(display_name, str):
36
+ raise TypeError("Expected argument 'display_name' to be a str")
37
+ pulumi.set(__self__, "display_name", display_name)
38
+ if filters and not isinstance(filters, list):
39
+ raise TypeError("Expected argument 'filters' to be a list")
40
+ pulumi.set(__self__, "filters", filters)
41
+ if id and not isinstance(id, str):
42
+ raise TypeError("Expected argument 'id' to be a str")
43
+ pulumi.set(__self__, "id", id)
44
+ if recipe_summary_collections and not isinstance(recipe_summary_collections, list):
45
+ raise TypeError("Expected argument 'recipe_summary_collections' to be a list")
46
+ pulumi.set(__self__, "recipe_summary_collections", recipe_summary_collections)
47
+ if recipe_type and not isinstance(recipe_type, str):
48
+ raise TypeError("Expected argument 'recipe_type' to be a str")
49
+ pulumi.set(__self__, "recipe_type", recipe_type)
50
+
51
+ @property
52
+ @pulumi.getter(name="compartmentId")
53
+ def compartment_id(self) -> str:
54
+ return pulumi.get(self, "compartment_id")
55
+
56
+ @property
57
+ @pulumi.getter(name="displayName")
58
+ def display_name(self) -> Optional[str]:
59
+ """
60
+ An object's Display Name.
61
+ """
62
+ return pulumi.get(self, "display_name")
63
+
64
+ @property
65
+ @pulumi.getter
66
+ def filters(self) -> Optional[Sequence['outputs.GetRecipesFilterResult']]:
67
+ return pulumi.get(self, "filters")
68
+
69
+ @property
70
+ @pulumi.getter
71
+ def id(self) -> str:
72
+ """
73
+ The provider-assigned unique ID for this managed resource.
74
+ """
75
+ return pulumi.get(self, "id")
76
+
77
+ @property
78
+ @pulumi.getter(name="recipeSummaryCollections")
79
+ def recipe_summary_collections(self) -> Sequence['outputs.GetRecipesRecipeSummaryCollectionResult']:
80
+ """
81
+ The list of recipe_summary_collection.
82
+ """
83
+ return pulumi.get(self, "recipe_summary_collections")
84
+
85
+ @property
86
+ @pulumi.getter(name="recipeType")
87
+ def recipe_type(self) -> Optional[str]:
88
+ """
89
+ The type of the recipe
90
+ """
91
+ return pulumi.get(self, "recipe_type")
92
+
93
+
94
+ class AwaitableGetRecipesResult(GetRecipesResult):
95
+ # pylint: disable=using-constant-test
96
+ def __await__(self):
97
+ if False:
98
+ yield self
99
+ return GetRecipesResult(
100
+ compartment_id=self.compartment_id,
101
+ display_name=self.display_name,
102
+ filters=self.filters,
103
+ id=self.id,
104
+ recipe_summary_collections=self.recipe_summary_collections,
105
+ recipe_type=self.recipe_type)
106
+
107
+
108
+ def get_recipes(compartment_id: Optional[str] = None,
109
+ display_name: Optional[str] = None,
110
+ filters: Optional[Sequence[Union['GetRecipesFilterArgs', 'GetRecipesFilterArgsDict']]] = None,
111
+ recipe_type: Optional[str] = None,
112
+ opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetRecipesResult:
113
+ """
114
+ This data source provides the list of Recipes in Oracle Cloud Infrastructure Golden Gate service.
115
+
116
+ Returns an array of Recipe Summary.
117
+
118
+ ## Example Usage
119
+
120
+ ```python
121
+ import pulumi
122
+ import pulumi_oci as oci
123
+
124
+ test_recipes = oci.GoldenGate.get_recipes(compartment_id=compartment_id,
125
+ display_name=recipe_display_name,
126
+ recipe_type=recipe_recipe_type)
127
+ ```
128
+
129
+
130
+ :param str compartment_id: The OCID of the compartment that contains the work request. Work requests should be scoped to the same compartment as the resource the work request affects. If the work request concerns multiple resources, and those resources are not in the same compartment, it is up to the service team to pick the primary resource whose compartment should be used.
131
+ :param str display_name: A filter to return only the resources that match the entire 'displayName' given.
132
+ :param str recipe_type: The pipeline's recipe type. The default value is ZERO_ETL.
133
+ """
134
+ __args__ = dict()
135
+ __args__['compartmentId'] = compartment_id
136
+ __args__['displayName'] = display_name
137
+ __args__['filters'] = filters
138
+ __args__['recipeType'] = recipe_type
139
+ opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
140
+ __ret__ = pulumi.runtime.invoke('oci:GoldenGate/getRecipes:getRecipes', __args__, opts=opts, typ=GetRecipesResult).value
141
+
142
+ return AwaitableGetRecipesResult(
143
+ compartment_id=pulumi.get(__ret__, 'compartment_id'),
144
+ display_name=pulumi.get(__ret__, 'display_name'),
145
+ filters=pulumi.get(__ret__, 'filters'),
146
+ id=pulumi.get(__ret__, 'id'),
147
+ recipe_summary_collections=pulumi.get(__ret__, 'recipe_summary_collections'),
148
+ recipe_type=pulumi.get(__ret__, 'recipe_type'))
149
+ def get_recipes_output(compartment_id: Optional[pulumi.Input[str]] = None,
150
+ display_name: Optional[pulumi.Input[Optional[str]]] = None,
151
+ filters: Optional[pulumi.Input[Optional[Sequence[Union['GetRecipesFilterArgs', 'GetRecipesFilterArgsDict']]]]] = None,
152
+ recipe_type: Optional[pulumi.Input[Optional[str]]] = None,
153
+ opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetRecipesResult]:
154
+ """
155
+ This data source provides the list of Recipes in Oracle Cloud Infrastructure Golden Gate service.
156
+
157
+ Returns an array of Recipe Summary.
158
+
159
+ ## Example Usage
160
+
161
+ ```python
162
+ import pulumi
163
+ import pulumi_oci as oci
164
+
165
+ test_recipes = oci.GoldenGate.get_recipes(compartment_id=compartment_id,
166
+ display_name=recipe_display_name,
167
+ recipe_type=recipe_recipe_type)
168
+ ```
169
+
170
+
171
+ :param str compartment_id: The OCID of the compartment that contains the work request. Work requests should be scoped to the same compartment as the resource the work request affects. If the work request concerns multiple resources, and those resources are not in the same compartment, it is up to the service team to pick the primary resource whose compartment should be used.
172
+ :param str display_name: A filter to return only the resources that match the entire 'displayName' given.
173
+ :param str recipe_type: The pipeline's recipe type. The default value is ZERO_ETL.
174
+ """
175
+ __args__ = dict()
176
+ __args__['compartmentId'] = compartment_id
177
+ __args__['displayName'] = display_name
178
+ __args__['filters'] = filters
179
+ __args__['recipeType'] = recipe_type
180
+ opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
181
+ __ret__ = pulumi.runtime.invoke_output('oci:GoldenGate/getRecipes:getRecipes', __args__, opts=opts, typ=GetRecipesResult)
182
+ return __ret__.apply(lambda __response__: GetRecipesResult(
183
+ compartment_id=pulumi.get(__response__, 'compartment_id'),
184
+ display_name=pulumi.get(__response__, 'display_name'),
185
+ filters=pulumi.get(__response__, 'filters'),
186
+ id=pulumi.get(__response__, 'id'),
187
+ recipe_summary_collections=pulumi.get(__response__, 'recipe_summary_collections'),
188
+ recipe_type=pulumi.get(__response__, 'recipe_type')))
@@ -113,7 +113,8 @@ def get_trail_files(deployment_id: Optional[str] = None,
113
113
  """
114
114
  This data source provides the list of Trail Files in Oracle Cloud Infrastructure Golden Gate service.
115
115
 
116
- Lists the TrailFiles for a deployment. Deprecated: Please access trail file management functions directly on OGG console which are available since version Oracle GoldenGate 23c.
116
+ Lists the TrailFiles for a deployment.
117
+ Deprecated: Please access trail file management functions directly on OGG console which are available since version Oracle GoldenGate 23c.
117
118
 
118
119
  ## Example Usage
119
120
 
@@ -154,7 +155,8 @@ def get_trail_files_output(deployment_id: Optional[pulumi.Input[str]] = None,
154
155
  """
155
156
  This data source provides the list of Trail Files in Oracle Cloud Infrastructure Golden Gate service.
156
157
 
157
- Lists the TrailFiles for a deployment. Deprecated: Please access trail file management functions directly on OGG console which are available since version Oracle GoldenGate 23c.
158
+ Lists the TrailFiles for a deployment.
159
+ Deprecated: Please access trail file management functions directly on OGG console which are available since version Oracle GoldenGate 23c.
158
160
 
159
161
  ## Example Usage
160
162
 
@@ -120,7 +120,8 @@ def get_trail_sequences(deployment_id: Optional[str] = None,
120
120
  """
121
121
  This data source provides the list of Trail Sequences in Oracle Cloud Infrastructure Golden Gate service.
122
122
 
123
- Lists the Trail Sequences for a TrailFile in a given deployment. Deprecated: Please access trail file management functions directly on OGG console which are available since version Oracle GoldenGate 23c.
123
+ Lists the Trail Sequences for a TrailFile in a given deployment.
124
+ Deprecated: Please access trail file management functions directly on OGG console which are available since version Oracle GoldenGate 23c.
124
125
 
125
126
  ## Example Usage
126
127
 
@@ -166,7 +167,8 @@ def get_trail_sequences_output(deployment_id: Optional[pulumi.Input[str]] = None
166
167
  """
167
168
  This data source provides the list of Trail Sequences in Oracle Cloud Infrastructure Golden Gate service.
168
169
 
169
- Lists the Trail Sequences for a TrailFile in a given deployment. Deprecated: Please access trail file management functions directly on OGG console which are available since version Oracle GoldenGate 23c.
170
+ Lists the Trail Sequences for a TrailFile in a given deployment.
171
+ Deprecated: Please access trail file management functions directly on OGG console which are available since version Oracle GoldenGate 23c.
170
172
 
171
173
  ## Example Usage
172
174