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

using System;
using System.IO;
using System.Threading.Tasks;
using Oci.ObjectstorageService;
using Oci.Common;
using Oci.Common.Auth;

namespace Oci.Sdk.DotNet.Example.Objectstorage
{
    public class PutObjectExample
    {
        public static async Task Main()
        {
            // Create a request and dependent object(s).
			var putObjectRequest = new Oci.ObjectstorageService.Requests.PutObjectRequest
			{
				NamespaceName = "EXAMPLE-namespaceName-Value",
				BucketName = "EXAMPLE-bucketName-Value",
				ObjectName = "EXAMPLE-objectName-Value",
				ContentLength = 30,
				// Create a Stream, for example, by calling a helper function like below.
				PutObjectBody = GenerateStreamFromString("0T8JAsWg979roT0UvCSp"),
				IfMatch = "EXAMPLE-ifMatch-Value",
				IfNoneMatch = "O",
				OpcClientRequestId = "ocid1.test.oc1..<unique_ID>EXAMPLE-opcClientRequestId-Value",
				Expect = "EXAMPLE-expect-Value",
				ContentMD5 = "900150983cd24fb0d6963f7d28e17f72",
				ContentType = "EXAMPLE-contentType-Value",
				ContentLanguage = "EXAMPLE-contentLanguage-Value",
				ContentEncoding = "EXAMPLE-contentEncoding-Value",
				ContentDisposition = "EXAMPLE-contentDisposition-Value",
				CacheControl = "EXAMPLE-cacheControl-Value",
				OpcSseCustomerAlgorithm = "EXAMPLE-opcSseCustomerAlgorithm-Value",
				OpcSseCustomerKey = "EXAMPLE-opcSseCustomerKey-Value",
				OpcSseCustomerKeySha256 = "EXAMPLE-opcSseCustomerKeySha256-Value",
				OpcSseKmsKeyId = "ocid1.test.oc1..<unique_ID>EXAMPLE-opcSseKmsKeyId-Value",
				StorageTier = Oci.ObjectstorageService.Models.StorageTier.Archive,
			};

            // Create a default authentication provider that uses the DEFAULT
            // profile in the configuration file.
            // Refer to <see href="https://docs.cloud.oracle.com/en-us/iaas/Content/API/Concepts/sdkconfig.htm#SDK_and_CLI_Configuration_File>the public documentation</see> on how to prepare a configuration file. 
            var provider = new ConfigFileAuthenticationDetailsProvider("DEFAULT");
            try
            {
                // Create a service client and send the request.
				using (var client = new ObjectStorageClient(provider, new ClientConfiguration()))
				{
					var response = await client.PutObject(putObjectRequest);
					// Retrieve value from the response.
					var hasValueValue = response.LastModified.HasValue;
				}
            }
            catch (Exception e)
            {
                Console.WriteLine($"PutObject Failed with {e.Message}");
                throw e;
            }
        }
        public static Stream GenerateStreamFromString(string s)
        {
            var stream = new MemoryStream();
            var writer = new StreamWriter(stream);
            writer.Write(s);
            writer.Flush();
            stream.Position = 0;
            return stream;
        }
    }
}