pulumi-oci 2.5.0a1722606028__py3-none-any.whl → 2.6.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 +32 -0
- pulumi_oci/bigdataservice/_inputs.py +157 -14
- pulumi_oci/bigdataservice/bds_instance.py +128 -0
- pulumi_oci/bigdataservice/bds_instance_patch_action.py +64 -3
- pulumi_oci/bigdataservice/get_bds_instance.py +31 -1
- pulumi_oci/bigdataservice/outputs.py +257 -30
- pulumi_oci/devops/__init__.py +6 -0
- pulumi_oci/devops/_inputs.py +531 -32
- pulumi_oci/devops/get_build_runs.py +0 -5
- pulumi_oci/devops/get_project_repository_setting.py +129 -0
- pulumi_oci/devops/get_repositories.py +1 -1
- pulumi_oci/devops/get_repository.py +17 -4
- pulumi_oci/devops/get_repository_diffs.py +20 -3
- pulumi_oci/devops/get_repository_protected_branches.py +150 -0
- pulumi_oci/devops/get_repository_ref.py +2 -2
- pulumi_oci/devops/get_repository_setting.py +142 -0
- pulumi_oci/devops/get_triggers.py +0 -5
- pulumi_oci/devops/outputs.py +1216 -180
- pulumi_oci/devops/project_repository_setting.py +338 -0
- pulumi_oci/devops/repository.py +66 -75
- pulumi_oci/devops/repository_protected_branch_management.py +333 -0
- pulumi_oci/devops/repository_ref.py +2 -2
- pulumi_oci/devops/repository_setting.py +391 -0
- pulumi_oci/jms/__init__.py +4 -0
- pulumi_oci/jms/_inputs.py +80 -0
- pulumi_oci/jms/get_agent_installers.py +190 -0
- pulumi_oci/jms/get_fleet_blocklists.py +2 -2
- pulumi_oci/jms/get_fleet_crypto_analysis_result.py +29 -3
- pulumi_oci/jms/get_fleet_crypto_analysis_results.py +97 -3
- pulumi_oci/jms/get_fleet_export_setting.py +3 -3
- pulumi_oci/jms/get_fleet_export_status.py +2 -2
- pulumi_oci/jms/get_fleet_java_migration_analysis_result.py +2 -2
- pulumi_oci/jms/get_fleet_java_migration_analysis_results.py +45 -5
- pulumi_oci/jms/get_fleet_performance_tuning_analysis_result.py +4 -4
- pulumi_oci/jms/get_fleet_performance_tuning_analysis_results.py +25 -5
- pulumi_oci/jms/get_fleets.py +2 -2
- pulumi_oci/jms/get_installation_site.py +4 -4
- pulumi_oci/jms/get_installation_sites.py +4 -4
- pulumi_oci/jms/get_java_downloads_java_download_tokens.py +2 -2
- pulumi_oci/jms/get_java_downloads_java_license_acceptance_records.py +2 -2
- pulumi_oci/jms/get_java_family.py +14 -1
- pulumi_oci/jms/get_jms_plugin.py +313 -0
- pulumi_oci/jms/get_jms_plugins.py +291 -0
- pulumi_oci/jms/jms_plugin.py +731 -0
- pulumi_oci/jms/outputs.py +488 -32
- pulumi_oci/osmanagementhub/get_software_source.py +19 -1
- pulumi_oci/osmanagementhub/software_source.py +82 -0
- pulumi_oci/psql/_inputs.py +8 -4
- pulumi_oci/psql/backup.py +4 -4
- pulumi_oci/psql/configuration.py +141 -38
- pulumi_oci/psql/db_system.py +53 -55
- pulumi_oci/psql/get_backup.py +1 -1
- pulumi_oci/psql/get_configuration.py +27 -1
- pulumi_oci/psql/get_configurations.py +2 -2
- pulumi_oci/psql/get_default_configuration.py +15 -2
- pulumi_oci/psql/get_default_configurations.py +2 -2
- pulumi_oci/psql/outputs.py +176 -13
- pulumi_oci/pulumi-plugin.json +1 -1
- {pulumi_oci-2.5.0a1722606028.dist-info → pulumi_oci-2.6.0.dist-info}/METADATA +1 -1
- {pulumi_oci-2.5.0a1722606028.dist-info → pulumi_oci-2.6.0.dist-info}/RECORD +62 -52
- {pulumi_oci-2.5.0a1722606028.dist-info → pulumi_oci-2.6.0.dist-info}/WHEEL +0 -0
- {pulumi_oci-2.5.0a1722606028.dist-info → pulumi_oci-2.6.0.dist-info}/top_level.txt +0 -0
@@ -65,9 +65,6 @@ class GetTriggersResult:
|
|
65
65
|
@property
|
66
66
|
@pulumi.getter
|
67
67
|
def filters(self) -> Optional[Sequence['outputs.GetTriggersFilterResult']]:
|
68
|
-
"""
|
69
|
-
The filters for the trigger.
|
70
|
-
"""
|
71
68
|
return pulumi.get(self, "filters")
|
72
69
|
|
73
70
|
@property
|
@@ -146,7 +143,6 @@ def get_triggers(compartment_id: Optional[str] = None,
|
|
146
143
|
|
147
144
|
:param str compartment_id: The OCID of the compartment in which to list resources.
|
148
145
|
:param str display_name: A filter to return only resources that match the entire display name given.
|
149
|
-
:param Sequence[pulumi.InputType['GetTriggersFilterArgs']] filters: The filters for the trigger.
|
150
146
|
:param str id: Unique trigger identifier.
|
151
147
|
:param str project_id: unique project identifier
|
152
148
|
:param str state: A filter to return only triggers that matches the given lifecycle state.
|
@@ -200,7 +196,6 @@ def get_triggers_output(compartment_id: Optional[pulumi.Input[Optional[str]]] =
|
|
200
196
|
|
201
197
|
:param str compartment_id: The OCID of the compartment in which to list resources.
|
202
198
|
:param str display_name: A filter to return only resources that match the entire display name given.
|
203
|
-
:param Sequence[pulumi.InputType['GetTriggersFilterArgs']] filters: The filters for the trigger.
|
204
199
|
:param str id: Unique trigger identifier.
|
205
200
|
:param str project_id: unique project identifier
|
206
201
|
:param str state: A filter to return only triggers that matches the given lifecycle state.
|