private FeedItemServiceSettings(FeedItemServiceSettings existing) : base(existing)
 {
     gax::GaxPreconditions.CheckNotNull(existing, nameof(existing));
     GetFeedItemSettings     = existing.GetFeedItemSettings;
     MutateFeedItemsSettings = existing.MutateFeedItemsSettings;
     OnCopy(existing);
 }
Exemple #2
0
        /// <summary>
        /// Constructs a client wrapper for the FeedItemService service, with the specified gRPC client and settings.
        /// </summary>
        /// <param name="grpcClient">The underlying gRPC client.</param>
        /// <param name="settings">The base <see cref="FeedItemServiceSettings"/> used within this client.</param>
        public FeedItemServiceClientImpl(FeedItemService.FeedItemServiceClient grpcClient, FeedItemServiceSettings settings)
        {
            GrpcClient = grpcClient;
            FeedItemServiceSettings effectiveSettings = settings ?? FeedItemServiceSettings.GetDefault();
            gaxgrpc::ClientHelper   clientHelper      = new gaxgrpc::ClientHelper(effectiveSettings);

            _callGetFeedItem = clientHelper.BuildApiCall <GetFeedItemRequest, gagvr::FeedItem>(grpcClient.GetFeedItemAsync, grpcClient.GetFeedItem, effectiveSettings.GetFeedItemSettings).WithGoogleRequestParam("resource_name", request => request.ResourceName);
            Modify_ApiCall(ref _callGetFeedItem);
            Modify_GetFeedItemApiCall(ref _callGetFeedItem);
            _callMutateFeedItems = clientHelper.BuildApiCall <MutateFeedItemsRequest, MutateFeedItemsResponse>(grpcClient.MutateFeedItemsAsync, grpcClient.MutateFeedItems, effectiveSettings.MutateFeedItemsSettings).WithGoogleRequestParam("customer_id", request => request.CustomerId);
            Modify_ApiCall(ref _callMutateFeedItems);
            Modify_MutateFeedItemsApiCall(ref _callMutateFeedItems);
            OnConstruction(grpcClient, effectiveSettings, clientHelper);
        }
        /// <summary>
        /// Constructs a client wrapper for the FeedItemService service, with the specified gRPC client and settings.
        /// </summary>
        /// <param name="grpcClient">The underlying gRPC client.</param>
        /// <param name="settings">The base <see cref="FeedItemServiceSettings"/> used within this client </param>
        public FeedItemServiceClientImpl(FeedItemService.FeedItemServiceClient grpcClient, FeedItemServiceSettings settings)
        {
            GrpcClient = grpcClient;
            FeedItemServiceSettings effectiveSettings = settings ?? FeedItemServiceSettings.GetDefault();
            gaxgrpc::ClientHelper   clientHelper      = new gaxgrpc::ClientHelper(effectiveSettings);

            _callGetFeedItem = clientHelper.BuildApiCall <GetFeedItemRequest, gagvr::FeedItem>(
                GrpcClient.GetFeedItemAsync, GrpcClient.GetFeedItem, effectiveSettings.GetFeedItemSettings)
                               .WithCallSettingsOverlay(request => gaxgrpc::CallSettings.FromHeader("x-goog-request-params", $"resource_name={request.ResourceName}"));
            _callMutateFeedItems = clientHelper.BuildApiCall <MutateFeedItemsRequest, MutateFeedItemsResponse>(
                GrpcClient.MutateFeedItemsAsync, GrpcClient.MutateFeedItems, effectiveSettings.MutateFeedItemsSettings)
                                   .WithCallSettingsOverlay(request => gaxgrpc::CallSettings.FromHeader("x-goog-request-params", $"customer_id={request.CustomerId}"));
            Modify_ApiCall(ref _callGetFeedItem);
            Modify_GetFeedItemApiCall(ref _callGetFeedItem);
            Modify_ApiCall(ref _callMutateFeedItems);
            Modify_MutateFeedItemsApiCall(ref _callMutateFeedItems);
            OnConstruction(grpcClient, effectiveSettings, clientHelper);
        }
 partial void OnConstruction(FeedItemService.FeedItemServiceClient grpcClient, FeedItemServiceSettings effectiveSettings, gaxgrpc::ClientHelper clientHelper);
 partial void OnCopy(FeedItemServiceSettings existing);
 /// <summary>
 /// Creates a <see cref="FeedItemServiceClient"/> 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="FeedItemServiceSettings"/>.</param>
 /// <returns>The created <see cref="FeedItemServiceClient"/>.</returns>
 public static FeedItemServiceClient Create(grpccore::CallInvoker callInvoker, FeedItemServiceSettings settings = null)
 {
     gax::GaxPreconditions.CheckNotNull(callInvoker, nameof(callInvoker));
     grpccore::Interceptors.Interceptor interceptor = settings?.Interceptor;
     if (interceptor != null)
     {
         callInvoker = grpccore::Interceptors.CallInvokerExtensions.Intercept(callInvoker, interceptor);
     }
     FeedItemService.FeedItemServiceClient grpcClient = new FeedItemService.FeedItemServiceClient(callInvoker);
     return(new FeedItemServiceClientImpl(grpcClient, settings));
 }
 /// <summary>
 /// Creates a <see cref="FeedItemServiceClient"/> which uses the specified channel for remote operations.
 /// </summary>
 /// <param name="channel">The <see cref="grpccore::Channel"/> for remote operations. Must not be null.</param>
 /// <param name="settings">Optional <see cref="FeedItemServiceSettings"/>.</param>
 /// <returns>The created <see cref="FeedItemServiceClient"/>.</returns>
 public static FeedItemServiceClient Create(grpccore::Channel channel, FeedItemServiceSettings settings = null)
 {
     gax::GaxPreconditions.CheckNotNull(channel, nameof(channel));
     return(Create(new grpccore::DefaultCallInvoker(channel), settings));
 }
        /// <summary>
        /// Synchronously creates a <see cref="FeedItemServiceClient"/>, applying defaults for all unspecified settings,
        /// and creating a channel connecting to the given endpoint with application default credentials where
        /// necessary. See the example for how to use custom credentials.
        /// </summary>
        /// <example>
        /// This sample shows how to create a client using default credentials:
        /// <code>
        /// using Google.Ads.GoogleAds.V3.Services;
        /// ...
        /// // When running on Google Cloud Platform this will use the project Compute Credential.
        /// // Or set the GOOGLE_APPLICATION_CREDENTIALS environment variable to the path of a JSON
        /// // credential file to use that credential.
        /// FeedItemServiceClient client = FeedItemServiceClient.Create();
        /// </code>
        /// This sample shows how to create a client using credentials loaded from a JSON file:
        /// <code>
        /// using Google.Ads.GoogleAds.V3.Services;
        /// using Google.Apis.Auth.OAuth2;
        /// using Grpc.Auth;
        /// using Grpc.Core;
        /// ...
        /// GoogleCredential cred = GoogleCredential.FromFile("/path/to/credentials.json");
        /// Channel channel = new Channel(
        ///     FeedItemServiceClient.DefaultEndpoint.Host, FeedItemServiceClient.DefaultEndpoint.Port, cred.ToChannelCredentials());
        /// FeedItemServiceClient client = FeedItemServiceClient.Create(channel);
        /// ...
        /// // Shutdown the channel when it is no longer required.
        /// channel.ShutdownAsync().Wait();
        /// </code>
        /// </example>
        /// <param name="endpoint">Optional <see cref="gaxgrpc::ServiceEndpoint"/>.</param>
        /// <param name="settings">Optional <see cref="FeedItemServiceSettings"/>.</param>
        /// <returns>The created <see cref="FeedItemServiceClient"/>.</returns>
        public static FeedItemServiceClient Create(gaxgrpc::ServiceEndpoint endpoint = null, FeedItemServiceSettings settings = null)
        {
            grpccore::Channel channel = s_channelPool.GetChannel(endpoint ?? DefaultEndpoint);

            return(Create(channel, settings));
        }
        /// <summary>
        /// Asynchronously creates a <see cref="FeedItemServiceClient"/>, applying defaults for all unspecified settings,
        /// and creating a channel connecting to the given endpoint with application default credentials where
        /// necessary. See the example for how to use custom credentials.
        /// </summary>
        /// <example>
        /// This sample shows how to create a client using default credentials:
        /// <code>
        /// using Google.Ads.GoogleAds.V3.Services;
        /// ...
        /// // When running on Google Cloud Platform this will use the project Compute Credential.
        /// // Or set the GOOGLE_APPLICATION_CREDENTIALS environment variable to the path of a JSON
        /// // credential file to use that credential.
        /// FeedItemServiceClient client = await FeedItemServiceClient.CreateAsync();
        /// </code>
        /// This sample shows how to create a client using credentials loaded from a JSON file:
        /// <code>
        /// using Google.Ads.GoogleAds.V3.Services;
        /// using Google.Apis.Auth.OAuth2;
        /// using Grpc.Auth;
        /// using Grpc.Core;
        /// ...
        /// GoogleCredential cred = GoogleCredential.FromFile("/path/to/credentials.json");
        /// Channel channel = new Channel(
        ///     FeedItemServiceClient.DefaultEndpoint.Host, FeedItemServiceClient.DefaultEndpoint.Port, cred.ToChannelCredentials());
        /// FeedItemServiceClient client = FeedItemServiceClient.Create(channel);
        /// ...
        /// // Shutdown the channel when it is no longer required.
        /// await channel.ShutdownAsync();
        /// </code>
        /// </example>
        /// <param name="endpoint">Optional <see cref="gaxgrpc::ServiceEndpoint"/>.</param>
        /// <param name="settings">Optional <see cref="FeedItemServiceSettings"/>.</param>
        /// <returns>The task representing the created <see cref="FeedItemServiceClient"/>.</returns>
        public static async stt::Task <FeedItemServiceClient> CreateAsync(gaxgrpc::ServiceEndpoint endpoint = null, FeedItemServiceSettings settings = null)
        {
            grpccore::Channel channel = await s_channelPool.GetChannelAsync(endpoint ?? DefaultEndpoint).ConfigureAwait(false);

            return(Create(channel, settings));
        }