Override compute_target_grpc_proxies_v1::TargetGrpcProxiesClient Retry Policies

This shows how to override the retry policies for compute_target_grpc_proxies_v1::TargetGrpcProxiesClient:

  auto options =
      google::cloud::Options{}
          .set<google::cloud::compute_target_grpc_proxies_v1::
                   TargetGrpcProxiesConnectionIdempotencyPolicyOption>(
              CustomIdempotencyPolicy().clone())
          .set<google::cloud::compute_target_grpc_proxies_v1::
                   TargetGrpcProxiesRetryPolicyOption>(
              google::cloud::compute_target_grpc_proxies_v1::
                  TargetGrpcProxiesLimitedErrorCountRetryPolicy(3)
                      .clone())
          .set<google::cloud::compute_target_grpc_proxies_v1::
                   TargetGrpcProxiesBackoffPolicyOption>(
              google::cloud::ExponentialBackoffPolicy(
                  /*initial_delay=*/std::chrono::milliseconds(200),
                  /*maximum_delay=*/std::chrono::seconds(45),
                  /*scaling=*/2.0)
                  .clone());
  auto connection = google::cloud::compute_target_grpc_proxies_v1::
      MakeTargetGrpcProxiesConnectionRest(options);

  // c1 and c2 share the same retry policies
  auto c1 =
      google::cloud::compute_target_grpc_proxies_v1::TargetGrpcProxiesClient(
          connection);
  auto c2 =
      google::cloud::compute_target_grpc_proxies_v1::TargetGrpcProxiesClient(
          connection);

  // You can override any of the policies in a new client. This new client
  // will share the policies from c1 (or c2) *except* for the retry policy.
  auto c3 =
      google::cloud::compute_target_grpc_proxies_v1::TargetGrpcProxiesClient(
          connection, google::cloud::Options{}
                          .set<google::cloud::compute_target_grpc_proxies_v1::
                                   TargetGrpcProxiesRetryPolicyOption>(
                              google::cloud::compute_target_grpc_proxies_v1::
                                  TargetGrpcProxiesLimitedTimeRetryPolicy(
                                      std::chrono::minutes(5))
                                      .clone()));

  // You can also override the policies in a single call:
  // c3.SomeRpc(..., google::cloud::Options{}
  //     .set<google::cloud::compute_target_grpc_proxies_v1::TargetGrpcProxiesRetryPolicyOption>(
  //       google::cloud::compute_target_grpc_proxies_v1::TargetGrpcProxiesLimitedErrorCountRetryPolicy(10).clone()));

Assuming you have created a custom idempotency policy. Such as:

class CustomIdempotencyPolicy
    : public google::cloud::compute_target_grpc_proxies_v1::
          TargetGrpcProxiesConnectionIdempotencyPolicy {
 public:
  ~CustomIdempotencyPolicy() override = default;
  std::unique_ptr<google::cloud::compute_target_grpc_proxies_v1::
                      TargetGrpcProxiesConnectionIdempotencyPolicy>
  clone() const override {
    return std::make_unique<CustomIdempotencyPolicy>(*this);
  }
  // Override inherited functions to define as needed.
};