# 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).

require 'date'
require '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::ConfigFileLoader.load_config

# Initialize service client with default config file
fleet_apps_management_client =
  OCI::FleetAppsManagement::FleetAppsManagementOperationsClient.new(
    config: config
  )

# Send the request to service, some parameters are not required, see API doc for more info
update_patch_response =
  fleet_apps_management_client.update_patch(
    'ocid1.test.oc1..<unique_ID>EXAMPLE-patchId-Value',
    OCI::FleetAppsManagement::Models::UpdatePatchDetails.new(
      description: 'EXAMPLE-description-Value',
      patch_type:
        OCI::FleetAppsManagement::Models::PatchType.new(
          platform_configuration_id:
            'ocid1.test.oc1..<unique_ID>EXAMPLE-platformConfigurationId-Value'
        ),
      severity: 'MEDIUM',
      time_released: DateTime.parse('2005-03-15T03:30:10.962Z'),
      artifact_details:
        OCI::FleetAppsManagement::Models::GenericArtifactDetails.new(
          category: 'GENERIC',
          artifact:
            OCI::FleetAppsManagement::Models::GenericArtifact.new(
              content:
                OCI::FleetAppsManagement::Models::PatchFileObjectStorageBucketContentDetails
                  .new(
                  source_type: 'OBJECT_STORAGE_BUCKET',
                  namespace_name: 'EXAMPLE-namespaceName-Value',
                  bucket_name: 'EXAMPLE-bucketName-Value',
                  object_name: 'EXAMPLE-objectName-Value',
                  checksum: 'EXAMPLE-checksum-Value'
                )
            )
        ),
      product:
        OCI::FleetAppsManagement::Models::PatchProduct.new(
          platform_configuration_id:
            'ocid1.test.oc1..<unique_ID>EXAMPLE-platformConfigurationId-Value',
          version: 'EXAMPLE-version-Value'
        ),
      dependent_patches: [
        OCI::FleetAppsManagement::Models::DependentPatchDetails.new(
          id: 'ocid1.test.oc1..<unique_ID>EXAMPLE-id-Value'
        )
      ],
      freeform_tags: {
        'EXAMPLE_KEY_OXA8t' => 'EXAMPLE_VALUE_y2opobba2tdhyP2w0YL6'
      },
      defined_tags: {
        'EXAMPLE_KEY_tgzqQ' => { 'EXAMPLE_KEY_41i2c' => 'EXAMPLE--Value' }
      }
    )
  )

# Get the data from response
puts "#{update_patch_response.headers}"

Was this article helpful?