// 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.Collections.Generic;
using System.Threading.Tasks;
using Oci.FilestorageService;
using Oci.Common;
using Oci.Common.Auth;

namespace Oci.Sdk.DotNet.Example.Filestorage
{
    public class UpdateExportExample
    {
        public static async Task Main()
        {
            // Create a request and dependent object(s).
			var updateExportDetails = new Oci.FilestorageService.Models.UpdateExportDetails
			{
				IsIdmapGroupsForSysAuth = false,
				ExportOptions = new List<Oci.FilestorageService.Models.ClientOptions>
				{
					new Oci.FilestorageService.Models.ClientOptions
					{
						Source = "EXAMPLE-source-Value",
						RequirePrivilegedSourcePort = true,
						Access = Oci.FilestorageService.Models.ClientOptions.AccessEnum.ReadOnly,
						IdentitySquash = Oci.FilestorageService.Models.ClientOptions.IdentitySquashEnum.None,
						AnonymousUid = 389,
						AnonymousGid = 429,
						IsAnonymousAccessAllowed = true,
						AllowedAuth = new List<Oci.FilestorageService.Models.ClientOptions.AllowedAuthEnum>
						{
							Oci.FilestorageService.Models.ClientOptions.AllowedAuthEnum.Krb5I
						}
					}
				}
			};
			var updateExportRequest = new Oci.FilestorageService.Requests.UpdateExportRequest
			{
				ExportId = "ocid1.test.oc1..<unique_ID>EXAMPLE-exportId-Value",
				UpdateExportDetails = updateExportDetails,
				IfMatch = "EXAMPLE-ifMatch-Value",
				OpcRequestId = "LSDXPD6BZBJJ2CIQ6Q8O<unique_ID>"
			};

            // 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 FileStorageClient(provider, new ClientConfiguration()))
				{
					var response = await client.UpdateExport(updateExportRequest);
					// Retrieve value from the response.
					var id = response.Export.Id;
				}
            }
            catch (Exception e)
            {
                Console.WriteLine($"UpdateExport Failed with {e.Message}");
                throw e;
            }
        }

    }
}