pulumi-oci 2.6.0__py3-none-any.whl → 2.6.0a1722924801__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 (62) hide show
  1. pulumi_oci/__init__.py +0 -32
  2. pulumi_oci/bigdataservice/_inputs.py +14 -157
  3. pulumi_oci/bigdataservice/bds_instance.py +0 -128
  4. pulumi_oci/bigdataservice/bds_instance_patch_action.py +3 -64
  5. pulumi_oci/bigdataservice/get_bds_instance.py +1 -31
  6. pulumi_oci/bigdataservice/outputs.py +30 -257
  7. pulumi_oci/devops/__init__.py +0 -6
  8. pulumi_oci/devops/_inputs.py +32 -531
  9. pulumi_oci/devops/get_build_runs.py +5 -0
  10. pulumi_oci/devops/get_repositories.py +1 -1
  11. pulumi_oci/devops/get_repository.py +4 -17
  12. pulumi_oci/devops/get_repository_diffs.py +3 -20
  13. pulumi_oci/devops/get_repository_ref.py +2 -2
  14. pulumi_oci/devops/get_triggers.py +5 -0
  15. pulumi_oci/devops/outputs.py +162 -1198
  16. pulumi_oci/devops/repository.py +75 -66
  17. pulumi_oci/devops/repository_ref.py +2 -2
  18. pulumi_oci/jms/__init__.py +0 -4
  19. pulumi_oci/jms/_inputs.py +0 -80
  20. pulumi_oci/jms/get_fleet_blocklists.py +2 -2
  21. pulumi_oci/jms/get_fleet_crypto_analysis_result.py +3 -29
  22. pulumi_oci/jms/get_fleet_crypto_analysis_results.py +3 -97
  23. pulumi_oci/jms/get_fleet_export_setting.py +3 -3
  24. pulumi_oci/jms/get_fleet_export_status.py +2 -2
  25. pulumi_oci/jms/get_fleet_java_migration_analysis_result.py +2 -2
  26. pulumi_oci/jms/get_fleet_java_migration_analysis_results.py +5 -45
  27. pulumi_oci/jms/get_fleet_performance_tuning_analysis_result.py +4 -4
  28. pulumi_oci/jms/get_fleet_performance_tuning_analysis_results.py +5 -25
  29. pulumi_oci/jms/get_fleets.py +2 -2
  30. pulumi_oci/jms/get_installation_site.py +4 -4
  31. pulumi_oci/jms/get_installation_sites.py +4 -4
  32. pulumi_oci/jms/get_java_downloads_java_download_tokens.py +2 -2
  33. pulumi_oci/jms/get_java_downloads_java_license_acceptance_records.py +2 -2
  34. pulumi_oci/jms/get_java_family.py +1 -14
  35. pulumi_oci/jms/outputs.py +32 -488
  36. pulumi_oci/osmanagementhub/get_software_source.py +1 -19
  37. pulumi_oci/osmanagementhub/software_source.py +0 -82
  38. pulumi_oci/psql/_inputs.py +4 -8
  39. pulumi_oci/psql/backup.py +4 -4
  40. pulumi_oci/psql/configuration.py +38 -141
  41. pulumi_oci/psql/db_system.py +55 -53
  42. pulumi_oci/psql/get_backup.py +1 -1
  43. pulumi_oci/psql/get_configuration.py +1 -27
  44. pulumi_oci/psql/get_configurations.py +2 -2
  45. pulumi_oci/psql/get_default_configuration.py +2 -15
  46. pulumi_oci/psql/get_default_configurations.py +2 -2
  47. pulumi_oci/psql/outputs.py +13 -176
  48. pulumi_oci/pulumi-plugin.json +1 -1
  49. {pulumi_oci-2.6.0.dist-info → pulumi_oci-2.6.0a1722924801.dist-info}/METADATA +1 -1
  50. {pulumi_oci-2.6.0.dist-info → pulumi_oci-2.6.0a1722924801.dist-info}/RECORD +52 -62
  51. pulumi_oci/devops/get_project_repository_setting.py +0 -129
  52. pulumi_oci/devops/get_repository_protected_branches.py +0 -150
  53. pulumi_oci/devops/get_repository_setting.py +0 -142
  54. pulumi_oci/devops/project_repository_setting.py +0 -338
  55. pulumi_oci/devops/repository_protected_branch_management.py +0 -333
  56. pulumi_oci/devops/repository_setting.py +0 -391
  57. pulumi_oci/jms/get_agent_installers.py +0 -190
  58. pulumi_oci/jms/get_jms_plugin.py +0 -313
  59. pulumi_oci/jms/get_jms_plugins.py +0 -291
  60. pulumi_oci/jms/jms_plugin.py +0 -731
  61. {pulumi_oci-2.6.0.dist-info → pulumi_oci-2.6.0a1722924801.dist-info}/WHEEL +0 -0
  62. {pulumi_oci-2.6.0.dist-info → pulumi_oci-2.6.0a1722924801.dist-info}/top_level.txt +0 -0
@@ -204,13 +204,13 @@ def get_installation_sites(application_id: Optional[str] = None,
204
204
  import pulumi_oci as oci
205
205
 
206
206
  test_fleet_installation_sites = oci.Jms.get_installation_sites(fleet_id=test_fleet["id"],
207
- application_id=fleet_installation_site_application_id,
207
+ application_id=test_application["id"],
208
208
  installation_path=fleet_installation_site_installation_path,
209
209
  jre_distribution=fleet_installation_site_jre_distribution,
210
210
  jre_security_status=fleet_installation_site_jre_security_status,
211
211
  jre_vendor=fleet_installation_site_jre_vendor,
212
212
  jre_version=fleet_installation_site_jre_version,
213
- managed_instance_id=fleet_installation_site_managed_instance_id,
213
+ managed_instance_id=test_managed_instance["id"],
214
214
  os_families=fleet_installation_site_os_family,
215
215
  path_contains=fleet_installation_site_path_contains,
216
216
  time_end=fleet_installation_site_time_end,
@@ -293,13 +293,13 @@ def get_installation_sites_output(application_id: Optional[pulumi.Input[Optional
293
293
  import pulumi_oci as oci
294
294
 
295
295
  test_fleet_installation_sites = oci.Jms.get_installation_sites(fleet_id=test_fleet["id"],
296
- application_id=fleet_installation_site_application_id,
296
+ application_id=test_application["id"],
297
297
  installation_path=fleet_installation_site_installation_path,
298
298
  jre_distribution=fleet_installation_site_jre_distribution,
299
299
  jre_security_status=fleet_installation_site_jre_security_status,
300
300
  jre_vendor=fleet_installation_site_jre_vendor,
301
301
  jre_version=fleet_installation_site_jre_version,
302
- managed_instance_id=fleet_installation_site_managed_instance_id,
302
+ managed_instance_id=test_managed_instance["id"],
303
303
  os_families=fleet_installation_site_os_family,
304
304
  path_contains=fleet_installation_site_path_contains,
305
305
  time_end=fleet_installation_site_time_end,
@@ -167,7 +167,7 @@ def get_java_downloads_java_download_tokens(compartment_id: Optional[str] = None
167
167
  :param str display_name: A filter to return only resources that match the entire display name given.
168
168
  :param str family_version: Unique Java family version identifier.
169
169
  :param str id: Unique JavaDownloadToken identifier.
170
- :param str search_by_user: A filter to return only resources that match the user principal detail. The search string can be any of the property values from the [Principal](https://docs.cloud.oracle.com/iaas/api/#/en/jms/latest/datatypes/Principal) object. This object is used as a response datatype for the `createdBy` and `lastUpdatedBy` fields in applicable resource.
170
+ :param str search_by_user: A filter to return only resources that match the user principal detail. The search string can be any of the property values from the [Principal](https://docs.cloud.oracle.com/iaas/api/#/en/jms/latest/datatypes/Principal) object. This object is used as response datatype for the `createdBy` and `lastUpdatedBy` fields in applicable resource.
171
171
  :param str state: A filter to return only resources their lifecycleState matches the given lifecycleState.
172
172
  :param str value: Unique JavaDownloadToken value.
173
173
  """
@@ -230,7 +230,7 @@ def get_java_downloads_java_download_tokens_output(compartment_id: Optional[pulu
230
230
  :param str display_name: A filter to return only resources that match the entire display name given.
231
231
  :param str family_version: Unique Java family version identifier.
232
232
  :param str id: Unique JavaDownloadToken identifier.
233
- :param str search_by_user: A filter to return only resources that match the user principal detail. The search string can be any of the property values from the [Principal](https://docs.cloud.oracle.com/iaas/api/#/en/jms/latest/datatypes/Principal) object. This object is used as a response datatype for the `createdBy` and `lastUpdatedBy` fields in applicable resource.
233
+ :param str search_by_user: A filter to return only resources that match the user principal detail. The search string can be any of the property values from the [Principal](https://docs.cloud.oracle.com/iaas/api/#/en/jms/latest/datatypes/Principal) object. This object is used as response datatype for the `createdBy` and `lastUpdatedBy` fields in applicable resource.
234
234
  :param str state: A filter to return only resources their lifecycleState matches the given lifecycleState.
235
235
  :param str value: Unique JavaDownloadToken value.
236
236
  """
@@ -138,7 +138,7 @@ def get_java_downloads_java_license_acceptance_records(compartment_id: Optional[
138
138
  :param str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the tenancy.
139
139
  :param str id: Unique Java license acceptance record identifier.
140
140
  :param str license_type: Unique Java license type.
141
- :param str search_by_user: A filter to return only resources that match the user principal detail. The search string can be any of the property values from the [Principal](https://docs.cloud.oracle.com/iaas/api/#/en/jms/latest/datatypes/Principal) object. This object is used as a response datatype for the `createdBy` and `lastUpdatedBy` fields in applicable resource.
141
+ :param str search_by_user: A filter to return only resources that match the user principal detail. The search string can be any of the property values from the [Principal](https://docs.cloud.oracle.com/iaas/api/#/en/jms/latest/datatypes/Principal) object. This object is used as response datatype for the `createdBy` and `lastUpdatedBy` fields in applicable resource.
142
142
  :param str status: The status of license acceptance.
143
143
  """
144
144
  __args__ = dict()
@@ -191,7 +191,7 @@ def get_java_downloads_java_license_acceptance_records_output(compartment_id: Op
191
191
  :param str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the tenancy.
192
192
  :param str id: Unique Java license acceptance record identifier.
193
193
  :param str license_type: Unique Java license type.
194
- :param str search_by_user: A filter to return only resources that match the user principal detail. The search string can be any of the property values from the [Principal](https://docs.cloud.oracle.com/iaas/api/#/en/jms/latest/datatypes/Principal) object. This object is used as a response datatype for the `createdBy` and `lastUpdatedBy` fields in applicable resource.
194
+ :param str search_by_user: A filter to return only resources that match the user principal detail. The search string can be any of the property values from the [Principal](https://docs.cloud.oracle.com/iaas/api/#/en/jms/latest/datatypes/Principal) object. This object is used as response datatype for the `createdBy` and `lastUpdatedBy` fields in applicable resource.
195
195
  :param str status: The status of license acceptance.
196
196
  """
197
197
  ...
@@ -22,7 +22,7 @@ class GetJavaFamilyResult:
22
22
  """
23
23
  A collection of values returned by getJavaFamily.
24
24
  """
25
- def __init__(__self__, display_name=None, doc_url=None, end_of_support_life_date=None, family_version=None, id=None, is_supported_version=None, latest_release_artifacts=None, latest_release_version=None, release_date=None, support_type=None):
25
+ def __init__(__self__, display_name=None, doc_url=None, end_of_support_life_date=None, family_version=None, id=None, is_supported_version=None, latest_release_artifacts=None, latest_release_version=None, support_type=None):
26
26
  if display_name and not isinstance(display_name, str):
27
27
  raise TypeError("Expected argument 'display_name' to be a str")
28
28
  pulumi.set(__self__, "display_name", display_name)
@@ -47,9 +47,6 @@ class GetJavaFamilyResult:
47
47
  if latest_release_version and not isinstance(latest_release_version, str):
48
48
  raise TypeError("Expected argument 'latest_release_version' to be a str")
49
49
  pulumi.set(__self__, "latest_release_version", latest_release_version)
50
- if release_date and not isinstance(release_date, str):
51
- raise TypeError("Expected argument 'release_date' to be a str")
52
- pulumi.set(__self__, "release_date", release_date)
53
50
  if support_type and not isinstance(support_type, str):
54
51
  raise TypeError("Expected argument 'support_type' to be a str")
55
52
  pulumi.set(__self__, "support_type", support_type)
@@ -118,14 +115,6 @@ class GetJavaFamilyResult:
118
115
  """
119
116
  return pulumi.get(self, "latest_release_version")
120
117
 
121
- @property
122
- @pulumi.getter(name="releaseDate")
123
- def release_date(self) -> str:
124
- """
125
- The date on which the Java release family was first made available (formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339)).
126
- """
127
- return pulumi.get(self, "release_date")
128
-
129
118
  @property
130
119
  @pulumi.getter(name="supportType")
131
120
  def support_type(self) -> str:
@@ -149,7 +138,6 @@ class AwaitableGetJavaFamilyResult(GetJavaFamilyResult):
149
138
  is_supported_version=self.is_supported_version,
150
139
  latest_release_artifacts=self.latest_release_artifacts,
151
140
  latest_release_version=self.latest_release_version,
152
- release_date=self.release_date,
153
141
  support_type=self.support_type)
154
142
 
155
143
 
@@ -186,7 +174,6 @@ def get_java_family(family_version: Optional[str] = None,
186
174
  is_supported_version=pulumi.get(__ret__, 'is_supported_version'),
187
175
  latest_release_artifacts=pulumi.get(__ret__, 'latest_release_artifacts'),
188
176
  latest_release_version=pulumi.get(__ret__, 'latest_release_version'),
189
- release_date=pulumi.get(__ret__, 'release_date'),
190
177
  support_type=pulumi.get(__ret__, 'support_type'))
191
178
 
192
179