private GlobalAddressesSettings(GlobalAddressesSettings existing) : base(existing) { gax::GaxPreconditions.CheckNotNull(existing, nameof(existing)); DeleteSettings = existing.DeleteSettings; GetSettings = existing.GetSettings; InsertSettings = existing.InsertSettings; ListSettings = existing.ListSettings; OnCopy(existing); }
/// <summary> /// Constructs a client wrapper for the GlobalAddresses service, with the specified gRPC client and settings. /// </summary> /// <param name="grpcClient">The underlying gRPC client.</param> /// <param name="settings">The base <see cref="GlobalAddressesSettings"/> used within this client.</param> public GlobalAddressesClientImpl(GlobalAddresses.GlobalAddressesClient grpcClient, GlobalAddressesSettings settings) { GrpcClient = grpcClient; GlobalAddressesSettings effectiveSettings = settings ?? GlobalAddressesSettings.GetDefault(); gaxgrpc::ClientHelper clientHelper = new gaxgrpc::ClientHelper(effectiveSettings); _callDelete = clientHelper.BuildApiCall <DeleteGlobalAddressRequest, Operation>(grpcClient.DeleteAsync, grpcClient.Delete, effectiveSettings.DeleteSettings).WithGoogleRequestParam("project", request => request.Project).WithGoogleRequestParam("address", request => request.Address); Modify_ApiCall(ref _callDelete); Modify_DeleteApiCall(ref _callDelete); _callGet = clientHelper.BuildApiCall <GetGlobalAddressRequest, Address>(grpcClient.GetAsync, grpcClient.Get, effectiveSettings.GetSettings).WithGoogleRequestParam("project", request => request.Project).WithGoogleRequestParam("address", request => request.Address); Modify_ApiCall(ref _callGet); Modify_GetApiCall(ref _callGet); _callInsert = clientHelper.BuildApiCall <InsertGlobalAddressRequest, Operation>(grpcClient.InsertAsync, grpcClient.Insert, effectiveSettings.InsertSettings).WithGoogleRequestParam("project", request => request.Project); Modify_ApiCall(ref _callInsert); Modify_InsertApiCall(ref _callInsert); _callList = clientHelper.BuildApiCall <ListGlobalAddressesRequest, AddressList>(grpcClient.ListAsync, grpcClient.List, effectiveSettings.ListSettings).WithGoogleRequestParam("project", request => request.Project); Modify_ApiCall(ref _callList); Modify_ListApiCall(ref _callList); OnConstruction(grpcClient, effectiveSettings, clientHelper); }
partial void OnConstruction(GlobalAddresses.GlobalAddressesClient grpcClient, GlobalAddressesSettings effectiveSettings, gaxgrpc::ClientHelper clientHelper);
partial void OnCopy(GlobalAddressesSettings existing);
/// <summary> /// Creates a <see cref="GlobalAddressesClient"/> which uses the specified call invoker for remote operations. /// </summary> /// <param name="callInvoker"> /// The <see cref="grpccore::CallInvoker"/> for remote operations. Must not be null. /// </param> /// <param name="settings">Optional <see cref="GlobalAddressesSettings"/>.</param> /// <returns>The created <see cref="GlobalAddressesClient"/>.</returns> internal static GlobalAddressesClient Create(grpccore::CallInvoker callInvoker, GlobalAddressesSettings settings = null) { gax::GaxPreconditions.CheckNotNull(callInvoker, nameof(callInvoker)); grpcinter::Interceptor interceptor = settings?.Interceptor; if (interceptor != null) { callInvoker = grpcinter::CallInvokerExtensions.Intercept(callInvoker, interceptor); } GlobalAddresses.GlobalAddressesClient grpcClient = new GlobalAddresses.GlobalAddressesClient(callInvoker); return(new GlobalAddressesClientImpl(grpcClient, settings)); }