This shows how to override the retry policies for ids_v1::IDSClient:
auto options =
google::cloud::Options{}
.set<google::cloud::ids_v1::IDSConnectionIdempotencyPolicyOption>(
CustomIdempotencyPolicy().clone())
.set<google::cloud::ids_v1::IDSRetryPolicyOption>(
google::cloud::ids_v1::IDSLimitedErrorCountRetryPolicy(3).clone())
.set<google::cloud::ids_v1::IDSBackoffPolicyOption>(
google::cloud::ExponentialBackoffPolicy(
/*initial_delay=*/std::chrono::milliseconds(200),
/*maximum_delay=*/std::chrono::seconds(45),
/*scaling=*/2.0)
.clone());
auto connection = google::cloud::ids_v1::MakeIDSConnection(options);
// c1 and c2 share the same retry policies
auto c1 = google::cloud::ids_v1::IDSClient(connection);
auto c2 = google::cloud::ids_v1::IDSClient(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::ids_v1::IDSClient(
connection,
google::cloud::Options{}.set<google::cloud::ids_v1::IDSRetryPolicyOption>(
google::cloud::ids_v1::IDSLimitedTimeRetryPolicy(
std::chrono::minutes(5))
.clone()));
// You can also override the policies in a single call:
// c3.SomeRpc(..., google::cloud::Options{}
// .set<google::cloud::ids_v1::IDSRetryPolicyOption>(
// google::cloud::ids_v1::IDSLimitedErrorCountRetryPolicy(10).clone()));
Assuming you have created a custom idempotency policy. Such as:
class CustomIdempotencyPolicy
: public google::cloud::ids_v1::IDSConnectionIdempotencyPolicy {
public:
~CustomIdempotencyPolicy() override = default;
std::unique_ptr<google::cloud::ids_v1::IDSConnectionIdempotencyPolicy> clone()
const override {
return std::make_unique<CustomIdempotencyPolicy>(*this);
}
// Override inherited functions to define as needed.
};
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-08-14 UTC."],[[["\u003cp\u003eThis document provides version-specific information and code examples related to overriding retry policies for \u003ccode\u003eids_v1::IDSClient\u003c/code\u003e, with the latest version being \u003ccode\u003e2.37.0-rc\u003c/code\u003e.\u003c/p\u003e\n"],["\u003cp\u003eYou can configure custom retry and backoff policies for \u003ccode\u003eids_v1::IDSClient\u003c/code\u003e using \u003ccode\u003egoogle::cloud::Options\u003c/code\u003e, including setting error count and time based retries.\u003c/p\u003e\n"],["\u003cp\u003eThe example demonstrates how to create multiple clients (\u003ccode\u003ec1\u003c/code\u003e, \u003ccode\u003ec2\u003c/code\u003e, \u003ccode\u003ec3\u003c/code\u003e) that share or have overridden retry policies, using the option to either share or change certain policies.\u003c/p\u003e\n"],["\u003cp\u003eA custom idempotency policy can be created by inheriting from \u003ccode\u003egoogle::cloud::ids_v1::IDSConnectionIdempotencyPolicy\u003c/code\u003e, as shown in the \u003ccode\u003eCustomIdempotencyPolicy\u003c/code\u003e class example.\u003c/p\u003e\n"],["\u003cp\u003eThe given code samples show how to set up custom policies both at client creation and on a per call basis, providing options for \u003ccode\u003eIDSLimitedErrorCountRetryPolicy\u003c/code\u003e, \u003ccode\u003eIDSLimitedTimeRetryPolicy\u003c/code\u003e, and \u003ccode\u003eExponentialBackoffPolicy\u003c/code\u003e.\u003c/p\u003e\n"]]],[],null,[]]