private InterconnectLocationsSettings(InterconnectLocationsSettings existing) : base(existing) { gax::GaxPreconditions.CheckNotNull(existing, nameof(existing)); GetSettings = existing.GetSettings; ListSettings = existing.ListSettings; OnCopy(existing); }
/// <summary> /// Constructs a client wrapper for the InterconnectLocations service, with the specified gRPC client and /// settings. /// </summary> /// <param name="grpcClient">The underlying gRPC client.</param> /// <param name="settings">The base <see cref="InterconnectLocationsSettings"/> used within this client.</param> public InterconnectLocationsClientImpl(InterconnectLocations.InterconnectLocationsClient grpcClient, InterconnectLocationsSettings settings) { GrpcClient = grpcClient; InterconnectLocationsSettings effectiveSettings = settings ?? InterconnectLocationsSettings.GetDefault(); gaxgrpc::ClientHelper clientHelper = new gaxgrpc::ClientHelper(effectiveSettings); _callGet = clientHelper.BuildApiCall <GetInterconnectLocationRequest, InterconnectLocation>(grpcClient.GetAsync, grpcClient.Get, effectiveSettings.GetSettings).WithGoogleRequestParam("project", request => request.Project).WithGoogleRequestParam("interconnect_location", request => request.InterconnectLocation); Modify_ApiCall(ref _callGet); Modify_GetApiCall(ref _callGet); _callList = clientHelper.BuildApiCall <ListInterconnectLocationsRequest, InterconnectLocationList>(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 OnCopy(InterconnectLocationsSettings existing);
partial void OnConstruction(InterconnectLocations.InterconnectLocationsClient grpcClient, InterconnectLocationsSettings effectiveSettings, gaxgrpc::ClientHelper clientHelper);
/// <summary> /// Creates a <see cref="InterconnectLocationsClient"/> 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="InterconnectLocationsSettings"/>.</param> /// <returns>The created <see cref="InterconnectLocationsClient"/>.</returns> internal static InterconnectLocationsClient Create(grpccore::CallInvoker callInvoker, InterconnectLocationsSettings settings = null) { gax::GaxPreconditions.CheckNotNull(callInvoker, nameof(callInvoker)); grpcinter::Interceptor interceptor = settings?.Interceptor; if (interceptor != null) { callInvoker = grpcinter::CallInvokerExtensions.Intercept(callInvoker, interceptor); } InterconnectLocations.InterconnectLocationsClient grpcClient = new InterconnectLocations.InterconnectLocationsClient(callInvoker); return(new InterconnectLocationsClientImpl(grpcClient, settings)); }