# 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 '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
data_flow_client = OCI::DataFlow::DataFlowClient.new(config: config)

# Send the request to service, some parameters are not required, see API doc for more info
create_application_response =
  data_flow_client.create_application(
    OCI::DataFlow::Models::CreateApplicationDetails.new(
      compartment_id: 'ocid1.test.oc1..<unique_ID>EXAMPLE-compartmentId-Value',
      display_name: 'EXAMPLE-displayName-Value',
      driver_shape: 'EXAMPLE-driverShape-Value',
      executor_shape: 'EXAMPLE-executorShape-Value',
      language: 'JAVA',
      num_executors: 631,
      spark_version: 'EXAMPLE-sparkVersion-Value',
      archive_uri: 'EXAMPLE-archiveUri-Value',
      arguments: %w[EXAMPLE--Value],
      application_log_config:
        OCI::DataFlow::Models::ApplicationLogConfig.new(
          log_group_id: 'ocid1.test.oc1..<unique_ID>EXAMPLE-logGroupId-Value',
          log_id: 'ocid1.test.oc1..<unique_ID>EXAMPLE-logId-Value'
        ),
      class_name: 'EXAMPLE-className-Value',
      configuration: {
        'EXAMPLE_KEY_DRHSR' => 'EXAMPLE_VALUE_UwLLDRbbhWbXOSza1CrV'
      },
      defined_tags: {
        'EXAMPLE_KEY_LgZUK' => { 'EXAMPLE_KEY_pMzDq' => 'EXAMPLE--Value' }
      },
      description: 'EXAMPLE-description-Value',
      driver_shape_config:
        OCI::DataFlow::Models::ShapeConfig.new(
          ocpus: 3020.308, memory_in_gbs: 6324.874
        ),
      execute: 'EXAMPLE-execute-Value',
      executor_shape_config:
        OCI::DataFlow::Models::ShapeConfig.new(
          ocpus: 5909.743, memory_in_gbs: 2216.1162
        ),
      file_uri: 'EXAMPLE-fileUri-Value',
      freeform_tags: {
        'EXAMPLE_KEY_U2XOt' => 'EXAMPLE_VALUE_0KlKwURXV73Uto9F5MEY'
      },
      logs_bucket_uri: 'EXAMPLE-logsBucketUri-Value',
      metastore_id: 'ocid1.test.oc1..<unique_ID>EXAMPLE-metastoreId-Value',
      parameters: [
        OCI::DataFlow::Models::ApplicationParameter.new(
          name: 'EXAMPLE-name-Value', value: 'EXAMPLE-value-Value'
        )
      ],
      pool_id: 'ocid1.test.oc1..<unique_ID>EXAMPLE-poolId-Value',
      private_endpoint_id:
        'ocid1.test.oc1..<unique_ID>EXAMPLE-privateEndpointId-Value',
      type: 'SESSION',
      warehouse_bucket_uri: 'EXAMPLE-warehouseBucketUri-Value',
      max_duration_in_minutes: 280,
      idle_timeout_in_minutes: 309
    )
  )

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