Skip to content

Commit c085e0a

Browse files
---
yaml --- r: 11989 b: refs/heads/autosynth-bigtable-admin c: 6379a2b h: refs/heads/master i: 11987: 9f1404e
1 parent 44cdc1c commit c085e0a

156 files changed

Lines changed: 19577 additions & 14086 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ refs/heads/autosynth-automl: 8c05f2af9d8bcf10536f8255093c2484bfe9243c
127127
refs/heads/autosynth-bigquerydatatransfer: 2a9f3938237f85a8919602d74011326580ff387f
128128
refs/heads/autosynth-bigquerystorage: 99aee05df348f39d98b6fb23c292006f1d2a6c28
129129
refs/heads/autosynth-bigtable: cd831a28dff2ba4d733608b871a1523a463e7380
130-
refs/heads/autosynth-bigtable-admin: e53621bd2d9e1bfe1b24677c43c86f0e4cf0bce0
130+
refs/heads/autosynth-bigtable-admin: 6379a2bc712f2736c83de0e009b4d26da4fa82ca
131131
refs/heads/autosynth-containeranalysis: 963746c85ab8171d519059a6be1b74015e453bbf
132132
refs/heads/autosynth-datastore: 02c91de76764225070df7e64314c25b865cf7af8
133133
refs/heads/autosynth-dialogflow: c6bde02c8a8e063a32f9eaf63b2b9fe5e4895d8a

branches/autosynth-bigtable-admin/google-api-grpc/grpc-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/BigtableInstanceAdminGrpc.java

Lines changed: 1415 additions & 808 deletions
Large diffs are not rendered by default.

branches/autosynth-bigtable-admin/google-api-grpc/grpc-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/BigtableTableAdminGrpc.java

Lines changed: 1017 additions & 576 deletions
Large diffs are not rendered by default.

branches/autosynth-bigtable-admin/google-api-grpc/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/AppProfile.java

Lines changed: 846 additions & 582 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

branches/autosynth-bigtable-admin/google-api-grpc/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/AppProfileName.java

Lines changed: 16 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -14,20 +14,21 @@
1414

1515
package com.google.bigtable.admin.v2;
1616

17-
import com.google.common.base.Preconditions;
18-
import com.google.common.collect.ImmutableMap;
1917
import com.google.api.pathtemplate.PathTemplate;
2018
import com.google.api.resourcenames.ResourceName;
21-
import java.util.Map;
19+
import com.google.common.base.Preconditions;
20+
import com.google.common.collect.ImmutableMap;
2221
import java.util.ArrayList;
2322
import java.util.List;
23+
import java.util.Map;
2424

2525
// AUTO-GENERATED DOCUMENTATION AND CLASS
2626
@javax.annotation.Generated("by GAPIC protoc plugin")
2727
public class AppProfileName implements ResourceName {
2828

2929
private static final PathTemplate PATH_TEMPLATE =
30-
PathTemplate.createWithoutUrlEncoding("projects/{project}/instances/{instance}/appProfiles/{app_profile}");
30+
PathTemplate.createWithoutUrlEncoding(
31+
"projects/{project}/instances/{instance}/appProfiles/{app_profile}");
3132

3233
private volatile Map<String, String> fieldValuesMap;
3334

@@ -62,28 +63,25 @@ private AppProfileName(Builder builder) {
6263
}
6364

6465
public static AppProfileName of(String project, String instance, String appProfile) {
65-
return newBuilder()
66-
.setProject(project)
67-
.setInstance(instance)
68-
.setAppProfile(appProfile)
69-
.build();
66+
return newBuilder().setProject(project).setInstance(instance).setAppProfile(appProfile).build();
7067
}
7168

7269
public static String format(String project, String instance, String appProfile) {
7370
return newBuilder()
74-
.setProject(project)
75-
.setInstance(instance)
76-
.setAppProfile(appProfile)
77-
.build()
78-
.toString();
71+
.setProject(project)
72+
.setInstance(instance)
73+
.setAppProfile(appProfile)
74+
.build()
75+
.toString();
7976
}
8077

8178
public static AppProfileName parse(String formattedString) {
8279
if (formattedString.isEmpty()) {
8380
return null;
8481
}
8582
Map<String, String> matchMap =
86-
PATH_TEMPLATE.validatedMatch(formattedString, "AppProfileName.parse: formattedString not in valid format");
83+
PATH_TEMPLATE.validatedMatch(
84+
formattedString, "AppProfileName.parse: formattedString not in valid format");
8785
return of(matchMap.get("project"), matchMap.get("instance"), matchMap.get("app_profile"));
8886
}
8987

@@ -132,7 +130,8 @@ public String getFieldValue(String fieldName) {
132130

133131
@Override
134132
public String toString() {
135-
return PATH_TEMPLATE.instantiate("project", project, "instance", instance, "app_profile", appProfile);
133+
return PATH_TEMPLATE.instantiate(
134+
"project", project, "instance", instance, "app_profile", appProfile);
136135
}
137136

138137
/** Builder for AppProfileName. */
@@ -169,8 +168,7 @@ public Builder setAppProfile(String appProfile) {
169168
return this;
170169
}
171170

172-
private Builder() {
173-
}
171+
private Builder() {}
174172

175173
private Builder(AppProfileName appProfileName) {
176174
project = appProfileName.project;
@@ -209,4 +207,3 @@ public int hashCode() {
209207
return h;
210208
}
211209
}
212-

branches/autosynth-bigtable-admin/google-api-grpc/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/AppProfileOrBuilder.java

Lines changed: 48 additions & 15 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)