# This is an automatically generated code sample.
# To make this code sample work in your Oracle Cloud tenancy,
# please replace the values for any parameters whose current values do not fit
# your use case (such as resource IDs, strings containing ‘EXAMPLE’ or ‘unique_id’, and
# boolean, number, and enum parameters with values not fitting your use case).

from datetime import datetime
import oci

# Create a default config using DEFAULT profile in default location
# Refer to
# https://docs.cloud.oracle.com/en-us/iaas/Content/API/Concepts/sdkconfig.htm#SDK_and_CLI_Configuration_File
# for more info
config = oci.config.from_file()


# Initialize service client with default config file
fleet_apps_management_client = oci.fleet_apps_management.FleetAppsManagementOperationsClient(
    config)


# Send the request to service, some parameters are not required, see API
# doc for more info
list_patches_response = fleet_apps_management_client.list_patches(
    compartment_id="ocid1.test.oc1..<unique_ID>EXAMPLE-compartmentId-Value",
    product_id="ocid1.test.oc1..<unique_ID>EXAMPLE-productId-Value",
    version="EXAMPLE-version-Value",
    type="USER_DEFINED",
    patch_type_id="ocid1.test.oc1..<unique_ID>EXAMPLE-patchTypeId-Value",
    name="EXAMPLE-name-Value",
    id="ocid1.test.oc1..<unique_ID>EXAMPLE-id-Value",
    time_released_greater_than_or_equal_to=datetime.strptime(
        "2046-11-09T21:30:39.375Z",
        "%Y-%m-%dT%H:%M:%S.%fZ"),
    time_released_less_than=datetime.strptime(
        "2000-08-11T05:00:39.302Z",
        "%Y-%m-%dT%H:%M:%S.%fZ"),
    should_compliance_policy_rules_be_applied=True,
    limit=406,
    page="EXAMPLE-page-Value",
    lifecycle_state="DELETING",
    sort_by="timeCreated",
    sort_order="DESC",
    opc_request_id="ACMIM7KKVKISG8FN476F<unique_ID>")

# Get the data from response
print(list_patches_response.data)

Was this article helpful?