/// <summary>
        /// Creates a <see cref="MachineTypesClient"/> 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="MachineTypesSettings"/>.</param>
        /// <returns>The created <see cref="MachineTypesClient"/>.</returns>
        internal static MachineTypesClient Create(grpccore::CallInvoker callInvoker, MachineTypesSettings settings = null)
        {
            gax::GaxPreconditions.CheckNotNull(callInvoker, nameof(callInvoker));
            grpcinter::Interceptor interceptor = settings?.Interceptor;

            if (interceptor != null)
            {
                callInvoker = grpcinter::CallInvokerExtensions.Intercept(callInvoker, interceptor);
            }
            MachineTypes.MachineTypesClient grpcClient = new MachineTypes.MachineTypesClient(callInvoker);
            return(new MachineTypesClientImpl(grpcClient, settings));
        }
        /// <summary>
        /// Constructs a client wrapper for the MachineTypes service, with the specified gRPC client and settings.
        /// </summary>
        /// <param name="grpcClient">The underlying gRPC client.</param>
        /// <param name="settings">The base <see cref="MachineTypesSettings"/> used within this client.</param>
        public MachineTypesClientImpl(MachineTypes.MachineTypesClient grpcClient, MachineTypesSettings settings)
        {
            GrpcClient = grpcClient;
            MachineTypesSettings  effectiveSettings = settings ?? MachineTypesSettings.GetDefault();
            gaxgrpc::ClientHelper clientHelper      = new gaxgrpc::ClientHelper(effectiveSettings);

            _callAggregatedList = clientHelper.BuildApiCall <AggregatedListMachineTypesRequest, MachineTypeAggregatedList>(grpcClient.AggregatedListAsync, grpcClient.AggregatedList, effectiveSettings.AggregatedListSettings).WithGoogleRequestParam("project", request => request.Project);
            Modify_ApiCall(ref _callAggregatedList);
            Modify_AggregatedListApiCall(ref _callAggregatedList);
            _callGet = clientHelper.BuildApiCall <GetMachineTypeRequest, MachineType>(grpcClient.GetAsync, grpcClient.Get, effectiveSettings.GetSettings).WithGoogleRequestParam("project", request => request.Project).WithGoogleRequestParam("zone", request => request.Zone).WithGoogleRequestParam("machine_type", request => request.MachineType);
            Modify_ApiCall(ref _callGet);
            Modify_GetApiCall(ref _callGet);
            _callList = clientHelper.BuildApiCall <ListMachineTypesRequest, MachineTypeList>(grpcClient.ListAsync, grpcClient.List, effectiveSettings.ListSettings).WithGoogleRequestParam("project", request => request.Project).WithGoogleRequestParam("zone", request => request.Zone);
            Modify_ApiCall(ref _callList);
            Modify_ListApiCall(ref _callList);
            OnConstruction(grpcClient, effectiveSettings, clientHelper);
        }
 partial void OnConstruction(MachineTypes.MachineTypesClient grpcClient, MachineTypesSettings effectiveSettings, gaxgrpc::ClientHelper clientHelper);