We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d8e4add commit 48a782dCopy full SHA for 48a782d
google/cloud/bigtable/instance_config.h
@@ -77,6 +77,12 @@ class InstanceConfig {
77
return *this;
78
}
79
80
+ InstanceConfig& emplace_tag(std::string&& key, std::string value) {
81
+ (*proto_.mutable_instance()->mutable_tags())[std::move(key)] =
82
+ std::move(value);
83
+ return *this;
84
+ }
85
+
86
// NOLINT: accessors can (and should) be snake_case.
87
google::bigtable::admin::v2::CreateInstanceRequest const& as_proto() const& {
88
return proto_;
0 commit comments