# 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
create_patch_response =
  fleet_apps_management_client.create_patch(
    OCI::FleetAppsManagement::Models::CreatePatchDetails.new(
      name: 'EXAMPLE-name-Value',
      patch_type:
        OCI::FleetAppsManagement::Models::PatchType.new(
          platform_configuration_id:
            'ocid1.test.oc1..<unique_ID>EXAMPLE-platformConfigurationId-Value'
        ),
      severity: 'LOW',
      time_released: DateTime.parse('2026-09-30T18:55:04.867Z'),
      artifact_details:
        OCI::FleetAppsManagement::Models::PlatformSpecificArtifactDetails.new(
          category: 'PLATFORM_SPECIFIC',
          artifacts: [
            OCI::FleetAppsManagement::Models::PlatformSpecificArtifact.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'
                ),
              os_type: 'LINUX',
              architecture: 'X64'
            )
          ]
        ),
      product:
        OCI::FleetAppsManagement::Models::PatchProduct.new(
          platform_configuration_id:
            'ocid1.test.oc1..<unique_ID>EXAMPLE-platformConfigurationId-Value',
          version: 'EXAMPLE-version-Value'
        ),
      compartment_id: 'ocid1.test.oc1..<unique_ID>EXAMPLE-compartmentId-Value',
      description: 'EXAMPLE-description-Value',
      dependent_patches: [
        OCI::FleetAppsManagement::Models::DependentPatchDetails.new(
          id: 'ocid1.test.oc1..<unique_ID>EXAMPLE-id-Value'
        )
      ],
      freeform_tags: {
        'EXAMPLE_KEY_zxPl3' => 'EXAMPLE_VALUE_HaeQKKgCXe7XGG2jodGj'
      },
      defined_tags: {
        'EXAMPLE_KEY_G9vhM' => { 'EXAMPLE_KEY_pKbPl' => 'EXAMPLE--Value' }
      }
    )
  )

# Get the data from response
puts "#{create_patch_response.data}"

Was this article helpful?