Skip to content

Commit 1f305b3

Browse files
chore: release gapic-generator-java v1.0.13 (#561)
This PR was generated using Autosynth. 🌈 Synth log will be available here: https://source.cloud.google.com/results/invocations/3f0b5f6b-24bc-418f-97b9-36bddbf8f180/targets - [ ] To automatically regenerate this PR, check this box. (May take up to 24 hours.) PiperOrigin-RevId: 379784268 Source-Link: googleapis/googleapis@551681f
1 parent 5877a06 commit 1f305b3

16 files changed

Lines changed: 31 additions & 31 deletions

proto-google-cloud-logging-v2/src/main/java/com/google/logging/v2/BillingAccountLocationName.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -184,8 +184,8 @@ public Builder setLocation(String location) {
184184
}
185185

186186
private Builder(BillingAccountLocationName billingAccountLocationName) {
187-
billingAccount = billingAccountLocationName.billingAccount;
188-
location = billingAccountLocationName.location;
187+
this.billingAccount = billingAccountLocationName.billingAccount;
188+
this.location = billingAccountLocationName.location;
189189
}
190190

191191
public BillingAccountLocationName build() {

proto-google-cloud-logging-v2/src/main/java/com/google/logging/v2/BillingAccountName.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ public Builder setBillingAccount(String billingAccount) {
158158
}
159159

160160
private Builder(BillingAccountName billingAccountName) {
161-
billingAccount = billingAccountName.billingAccount;
161+
this.billingAccount = billingAccountName.billingAccount;
162162
}
163163

164164
public BillingAccountName build() {

proto-google-cloud-logging-v2/src/main/java/com/google/logging/v2/CmekSettingsName.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -313,7 +313,7 @@ private Builder(CmekSettingsName cmekSettingsName) {
313313
Preconditions.checkArgument(
314314
Objects.equals(cmekSettingsName.pathTemplate, PROJECT),
315315
"toBuilder is only supported when CmekSettingsName has the pattern of projects/{project}/cmekSettings");
316-
project = cmekSettingsName.project;
316+
this.project = cmekSettingsName.project;
317317
}
318318

319319
public CmekSettingsName build() {

proto-google-cloud-logging-v2/src/main/java/com/google/logging/v2/FolderLocationName.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -181,8 +181,8 @@ public Builder setLocation(String location) {
181181
}
182182

183183
private Builder(FolderLocationName folderLocationName) {
184-
folder = folderLocationName.folder;
185-
location = folderLocationName.location;
184+
this.folder = folderLocationName.folder;
185+
this.location = folderLocationName.location;
186186
}
187187

188188
public FolderLocationName build() {

proto-google-cloud-logging-v2/src/main/java/com/google/logging/v2/FolderName.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ public Builder setFolder(String folder) {
158158
}
159159

160160
private Builder(FolderName folderName) {
161-
folder = folderName.folder;
161+
this.folder = folderName.folder;
162162
}
163163

164164
public FolderName build() {

proto-google-cloud-logging-v2/src/main/java/com/google/logging/v2/LocationName.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -181,8 +181,8 @@ public Builder setLocation(String location) {
181181
}
182182

183183
private Builder(LocationName locationName) {
184-
project = locationName.project;
185-
location = locationName.location;
184+
this.project = locationName.project;
185+
this.location = locationName.location;
186186
}
187187

188188
public LocationName build() {

proto-google-cloud-logging-v2/src/main/java/com/google/logging/v2/LogBucketName.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -415,9 +415,9 @@ private Builder(LogBucketName logBucketName) {
415415
Preconditions.checkArgument(
416416
Objects.equals(logBucketName.pathTemplate, PROJECT_LOCATION_BUCKET),
417417
"toBuilder is only supported when LogBucketName has the pattern of projects/{project}/locations/{location}/buckets/{bucket}");
418-
project = logBucketName.project;
419-
location = logBucketName.location;
420-
bucket = logBucketName.bucket;
418+
this.project = logBucketName.project;
419+
this.location = logBucketName.location;
420+
this.bucket = logBucketName.bucket;
421421
}
422422

423423
public LogBucketName build() {

proto-google-cloud-logging-v2/src/main/java/com/google/logging/v2/LogExclusionName.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -354,8 +354,8 @@ private Builder(LogExclusionName logExclusionName) {
354354
Preconditions.checkArgument(
355355
Objects.equals(logExclusionName.pathTemplate, PROJECT_EXCLUSION),
356356
"toBuilder is only supported when LogExclusionName has the pattern of projects/{project}/exclusions/{exclusion}");
357-
project = logExclusionName.project;
358-
exclusion = logExclusionName.exclusion;
357+
this.project = logExclusionName.project;
358+
this.exclusion = logExclusionName.exclusion;
359359
}
360360

361361
public LogExclusionName build() {

proto-google-cloud-logging-v2/src/main/java/com/google/logging/v2/LogMetricName.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -180,8 +180,8 @@ public Builder setMetric(String metric) {
180180
}
181181

182182
private Builder(LogMetricName logMetricName) {
183-
project = logMetricName.project;
184-
metric = logMetricName.metric;
183+
this.project = logMetricName.project;
184+
this.metric = logMetricName.metric;
185185
}
186186

187187
public LogMetricName build() {

proto-google-cloud-logging-v2/src/main/java/com/google/logging/v2/LogName.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -340,8 +340,8 @@ private Builder(LogName logName) {
340340
Preconditions.checkArgument(
341341
Objects.equals(logName.pathTemplate, PROJECT_LOG),
342342
"toBuilder is only supported when LogName has the pattern of projects/{project}/logs/{log}");
343-
project = logName.project;
344-
log = logName.log;
343+
this.project = logName.project;
344+
this.log = logName.log;
345345
}
346346

347347
public LogName build() {

0 commit comments

Comments
 (0)