private SharedSetServiceSettings(SharedSetServiceSettings existing) : base(existing)
 {
     gax::GaxPreconditions.CheckNotNull(existing, nameof(existing));
     GetSharedSetSettings     = existing.GetSharedSetSettings;
     MutateSharedSetsSettings = existing.MutateSharedSetsSettings;
     OnCopy(existing);
 }
        /// <summary>
        /// Constructs a client wrapper for the SharedSetService service, with the specified gRPC client and settings.
        /// </summary>
        /// <param name="grpcClient">The underlying gRPC client.</param>
        /// <param name="settings">The base <see cref="SharedSetServiceSettings"/> used within this client.</param>
        public SharedSetServiceClientImpl(SharedSetService.SharedSetServiceClient grpcClient, SharedSetServiceSettings settings)
        {
            GrpcClient = grpcClient;
            SharedSetServiceSettings effectiveSettings = settings ?? SharedSetServiceSettings.GetDefault();
            gaxgrpc::ClientHelper    clientHelper      = new gaxgrpc::ClientHelper(effectiveSettings);

            _callGetSharedSet = clientHelper.BuildApiCall <GetSharedSetRequest, gagvr::SharedSet>(grpcClient.GetSharedSetAsync, grpcClient.GetSharedSet, effectiveSettings.GetSharedSetSettings).WithGoogleRequestParam("resource_name", request => request.ResourceName);
            Modify_ApiCall(ref _callGetSharedSet);
            Modify_GetSharedSetApiCall(ref _callGetSharedSet);
            _callMutateSharedSets = clientHelper.BuildApiCall <MutateSharedSetsRequest, MutateSharedSetsResponse>(grpcClient.MutateSharedSetsAsync, grpcClient.MutateSharedSets, effectiveSettings.MutateSharedSetsSettings).WithGoogleRequestParam("customer_id", request => request.CustomerId);
            Modify_ApiCall(ref _callMutateSharedSets);
            Modify_MutateSharedSetsApiCall(ref _callMutateSharedSets);
            OnConstruction(grpcClient, effectiveSettings, clientHelper);
        }
 partial void OnCopy(SharedSetServiceSettings existing);
 partial void OnConstruction(SharedSetService.SharedSetServiceClient grpcClient, SharedSetServiceSettings effectiveSettings, gaxgrpc::ClientHelper clientHelper);
        /// <summary>
        /// Creates a <see cref="SharedSetServiceClient"/> 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="SharedSetServiceSettings"/>.</param>
        /// <returns>The created <see cref="SharedSetServiceClient"/>.</returns>
        internal static SharedSetServiceClient Create(grpccore::CallInvoker callInvoker, SharedSetServiceSettings settings = null)
        {
            gax::GaxPreconditions.CheckNotNull(callInvoker, nameof(callInvoker));
            grpcinter::Interceptor interceptor = settings?.Interceptor;

            if (interceptor != null)
            {
                callInvoker = grpcinter::CallInvokerExtensions.Intercept(callInvoker, interceptor);
            }
            SharedSetService.SharedSetServiceClient grpcClient = new SharedSetService.SharedSetServiceClient(callInvoker);
            return(new SharedSetServiceClientImpl(grpcClient, settings));
        }