From cb686d4707ec656725b18b3d46a10803fc973892 Mon Sep 17 00:00:00 2001 From: Yoshi Automation Bot Date: Wed, 15 Jan 2020 08:54:22 -0800 Subject: [PATCH] chore(regen): Re-generated to pick up changes in the API or client library generator. (#158) --- .../v2/BaseBigtableInstanceAdminClient.java | 29 +------------------ .../v2/BaseBigtableInstanceAdminSettings.java | 2 +- .../v2/BaseBigtableTableAdminClient.java | 25 +--------------- .../v2/BaseBigtableTableAdminSettings.java | 2 +- .../v2/stub/BigtableInstanceAdminStub.java | 2 +- .../BigtableInstanceAdminStubSettings.java | 2 +- .../admin/v2/stub/BigtableTableAdminStub.java | 2 +- .../stub/BigtableTableAdminStubSettings.java | 2 +- ...cBigtableInstanceAdminCallableFactory.java | 2 +- .../stub/GrpcBigtableInstanceAdminStub.java | 2 +- ...GrpcBigtableTableAdminCallableFactory.java | 2 +- .../v2/stub/GrpcBigtableTableAdminStub.java | 2 +- .../bigtable/data/v2/stub/BigtableStub.java | 2 +- .../data/v2/stub/BigtableStubSettings.java | 2 +- .../v2/stub/GrpcBigtableCallableFactory.java | 2 +- .../data/v2/stub/GrpcBigtableStub.java | 2 +- .../BaseBigtableInstanceAdminClientTest.java | 2 +- .../v2/BaseBigtableTableAdminClientTest.java | 2 +- .../admin/v2/MockBigtableInstanceAdmin.java | 2 +- .../v2/MockBigtableInstanceAdminImpl.java | 2 +- .../admin/v2/MockBigtableTableAdmin.java | 2 +- .../admin/v2/MockBigtableTableAdminImpl.java | 2 +- synth.metadata | 10 +++---- 23 files changed, 27 insertions(+), 77 deletions(-) diff --git a/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/admin/v2/BaseBigtableInstanceAdminClient.java b/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/admin/v2/BaseBigtableInstanceAdminClient.java index 6a7d783451..78cca86b50 100644 --- a/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/admin/v2/BaseBigtableInstanceAdminClient.java +++ b/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/admin/v2/BaseBigtableInstanceAdminClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2019 Google LLC + * Copyright 2020 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -177,7 +177,6 @@ public final OperationsClient getOperationsClient() { "The surface for long-running operations is not stable yet and may change in the future.") public final OperationFuture createInstanceAsync( ProjectName parent, String instanceId, Instance instance, Map clusters) { - CreateInstanceRequest request = CreateInstanceRequest.newBuilder() .setParent(parent == null ? null : parent.toString()) @@ -219,7 +218,6 @@ public final OperationFuture createInstanceAsy "The surface for long-running operations is not stable yet and may change in the future.") public final OperationFuture createInstanceAsync( String parent, String instanceId, Instance instance, Map clusters) { - CreateInstanceRequest request = CreateInstanceRequest.newBuilder() .setParent(parent) @@ -338,7 +336,6 @@ public final UnaryCallable createInstanceCalla * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ public final Instance getInstance(InstanceName name) { - GetInstanceRequest request = GetInstanceRequest.newBuilder().setName(name == null ? null : name.toString()).build(); return getInstance(request); @@ -362,7 +359,6 @@ public final Instance getInstance(InstanceName name) { * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ public final Instance getInstance(String name) { - GetInstanceRequest request = GetInstanceRequest.newBuilder().setName(name).build(); return getInstance(request); } @@ -430,7 +426,6 @@ public final UnaryCallable getInstanceCallable() { * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ public final ListInstancesResponse listInstances(ProjectName parent) { - ListInstancesRequest request = ListInstancesRequest.newBuilder() .setParent(parent == null ? null : parent.toString()) @@ -456,7 +451,6 @@ public final ListInstancesResponse listInstances(ProjectName parent) { * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ public final ListInstancesResponse listInstances(String parent) { - ListInstancesRequest request = ListInstancesRequest.newBuilder().setParent(parent).build(); return listInstances(request); } @@ -529,7 +523,6 @@ public final UnaryCallable listInst "The surface for long-running operations is not stable yet and may change in the future.") public final OperationFuture partialUpdateInstanceAsync( Instance instance, FieldMask updateMask) { - PartialUpdateInstanceRequest request = PartialUpdateInstanceRequest.newBuilder() .setInstance(instance) @@ -635,7 +628,6 @@ public final OperationFuture partialUpdateInst * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ public final void deleteInstance(InstanceName name) { - DeleteInstanceRequest request = DeleteInstanceRequest.newBuilder().setName(name == null ? null : name.toString()).build(); deleteInstance(request); @@ -659,7 +651,6 @@ public final void deleteInstance(InstanceName name) { * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ public final void deleteInstance(String name) { - DeleteInstanceRequest request = DeleteInstanceRequest.newBuilder().setName(name).build(); deleteInstance(request); } @@ -735,7 +726,6 @@ public final UnaryCallable deleteInstanceCallable( "The surface for long-running operations is not stable yet and may change in the future.") public final OperationFuture createClusterAsync( InstanceName parent, String clusterId, Cluster cluster) { - CreateClusterRequest request = CreateClusterRequest.newBuilder() .setParent(parent == null ? null : parent.toString()) @@ -771,7 +761,6 @@ public final OperationFuture createClusterAsync( "The surface for long-running operations is not stable yet and may change in the future.") public final OperationFuture createClusterAsync( String parent, String clusterId, Cluster cluster) { - CreateClusterRequest request = CreateClusterRequest.newBuilder() .setParent(parent) @@ -883,7 +872,6 @@ public final UnaryCallable createClusterCallabl * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ public final Cluster getCluster(ClusterName name) { - GetClusterRequest request = GetClusterRequest.newBuilder().setName(name == null ? null : name.toString()).build(); return getCluster(request); @@ -907,7 +895,6 @@ public final Cluster getCluster(ClusterName name) { * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ public final Cluster getCluster(String name) { - GetClusterRequest request = GetClusterRequest.newBuilder().setName(name).build(); return getCluster(request); } @@ -977,7 +964,6 @@ public final UnaryCallable getClusterCallable() { * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ public final ListClustersResponse listClusters(InstanceName parent) { - ListClustersRequest request = ListClustersRequest.newBuilder() .setParent(parent == null ? null : parent.toString()) @@ -1005,7 +991,6 @@ public final ListClustersResponse listClusters(InstanceName parent) { * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ public final ListClustersResponse listClusters(String parent) { - ListClustersRequest request = ListClustersRequest.newBuilder().setParent(parent).build(); return listClusters(request); } @@ -1150,7 +1135,6 @@ public final UnaryCallable updateClusterCallable() { * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ public final void deleteCluster(ClusterName name) { - DeleteClusterRequest request = DeleteClusterRequest.newBuilder().setName(name == null ? null : name.toString()).build(); deleteCluster(request); @@ -1174,7 +1158,6 @@ public final void deleteCluster(ClusterName name) { * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ public final void deleteCluster(String name) { - DeleteClusterRequest request = DeleteClusterRequest.newBuilder().setName(name).build(); deleteCluster(request); } @@ -1249,7 +1232,6 @@ public final UnaryCallable deleteClusterCallable() */ public final AppProfile createAppProfile( InstanceName parent, String appProfileId, AppProfile appProfile) { - CreateAppProfileRequest request = CreateAppProfileRequest.newBuilder() .setParent(parent == null ? null : parent.toString()) @@ -1284,7 +1266,6 @@ public final AppProfile createAppProfile( */ public final AppProfile createAppProfile( String parent, String appProfileId, AppProfile appProfile) { - CreateAppProfileRequest request = CreateAppProfileRequest.newBuilder() .setParent(parent) @@ -1365,7 +1346,6 @@ public final UnaryCallable createAppProfile * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ public final AppProfile getAppProfile(AppProfileName name) { - GetAppProfileRequest request = GetAppProfileRequest.newBuilder().setName(name == null ? null : name.toString()).build(); return getAppProfile(request); @@ -1389,7 +1369,6 @@ public final AppProfile getAppProfile(AppProfileName name) { * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ public final AppProfile getAppProfile(String name) { - GetAppProfileRequest request = GetAppProfileRequest.newBuilder().setName(name).build(); return getAppProfile(request); } @@ -1599,7 +1578,6 @@ public final ListAppProfilesPagedResponse listAppProfiles(ListAppProfilesRequest "The surface for long-running operations is not stable yet and may change in the future.") public final OperationFuture updateAppProfileAsync( AppProfile appProfile, FieldMask updateMask) { - UpdateAppProfileRequest request = UpdateAppProfileRequest.newBuilder() .setAppProfile(appProfile) @@ -1704,7 +1682,6 @@ public final UnaryCallable updateAppProfileC * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ public final void deleteAppProfile(AppProfileName name) { - DeleteAppProfileRequest request = DeleteAppProfileRequest.newBuilder().setName(name == null ? null : name.toString()).build(); deleteAppProfile(request); @@ -1728,7 +1705,6 @@ public final void deleteAppProfile(AppProfileName name) { * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ public final void deleteAppProfile(String name) { - DeleteAppProfileRequest request = DeleteAppProfileRequest.newBuilder().setName(name).build(); deleteAppProfile(request); } @@ -1801,7 +1777,6 @@ public final UnaryCallable deleteAppProfileCalla * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ public final Policy getIamPolicy(String resource) { - GetIamPolicyRequest request = GetIamPolicyRequest.newBuilder().setResource(resource).build(); return getIamPolicy(request); } @@ -1875,7 +1850,6 @@ public final UnaryCallable getIamPolicyCallable() { * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ public final Policy setIamPolicy(String resource, Policy policy) { - SetIamPolicyRequest request = SetIamPolicyRequest.newBuilder().setResource(resource).setPolicy(policy).build(); return setIamPolicy(request); @@ -1953,7 +1927,6 @@ public final UnaryCallable setIamPolicyCallable() { */ public final TestIamPermissionsResponse testIamPermissions( String resource, List permissions) { - TestIamPermissionsRequest request = TestIamPermissionsRequest.newBuilder() .setResource(resource) diff --git a/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/admin/v2/BaseBigtableInstanceAdminSettings.java b/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/admin/v2/BaseBigtableInstanceAdminSettings.java index 1a917e0989..e76bebbfd8 100644 --- a/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/admin/v2/BaseBigtableInstanceAdminSettings.java +++ b/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/admin/v2/BaseBigtableInstanceAdminSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2019 Google LLC + * Copyright 2020 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/admin/v2/BaseBigtableTableAdminClient.java b/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/admin/v2/BaseBigtableTableAdminClient.java index c07ed45ad9..b3c1380940 100644 --- a/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/admin/v2/BaseBigtableTableAdminClient.java +++ b/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/admin/v2/BaseBigtableTableAdminClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2019 Google LLC + * Copyright 2020 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -163,7 +163,6 @@ public final OperationsClient getOperationsClient() { * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ public final Table createTable(InstanceName parent, String tableId, Table table) { - CreateTableRequest request = CreateTableRequest.newBuilder() .setParent(parent == null ? null : parent.toString()) @@ -197,7 +196,6 @@ public final Table createTable(InstanceName parent, String tableId, Table table) * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ public final Table createTable(String parent, String tableId, Table table) { - CreateTableRequest request = CreateTableRequest.newBuilder() .setParent(parent) @@ -296,7 +294,6 @@ public final UnaryCallable createTableCallable() { "The surface for long-running operations is not stable yet and may change in the future.") public final OperationFuture createTableFromSnapshotAsync( InstanceName parent, String tableId, SnapshotName sourceSnapshot) { - CreateTableFromSnapshotRequest request = CreateTableFromSnapshotRequest.newBuilder() .setParent(parent == null ? null : parent.toString()) @@ -340,7 +337,6 @@ public final OperationFuture createTable "The surface for long-running operations is not stable yet and may change in the future.") public final OperationFuture createTableFromSnapshotAsync( String parent, String tableId, String sourceSnapshot) { - CreateTableFromSnapshotRequest request = CreateTableFromSnapshotRequest.newBuilder() .setParent(parent) @@ -601,7 +597,6 @@ public final UnaryCallable listTablesCall * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ public final Table getTable(TableName name) { - GetTableRequest request = GetTableRequest.newBuilder().setName(name == null ? null : name.toString()).build(); return getTable(request); @@ -625,7 +620,6 @@ public final Table getTable(TableName name) { * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ public final Table getTable(String name) { - GetTableRequest request = GetTableRequest.newBuilder().setName(name).build(); return getTable(request); } @@ -693,7 +687,6 @@ public final UnaryCallable getTableCallable() { * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ public final void deleteTable(TableName name) { - DeleteTableRequest request = DeleteTableRequest.newBuilder().setName(name == null ? null : name.toString()).build(); deleteTable(request); @@ -717,7 +710,6 @@ public final void deleteTable(TableName name) { * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ public final void deleteTable(String name) { - DeleteTableRequest request = DeleteTableRequest.newBuilder().setName(name).build(); deleteTable(request); } @@ -792,7 +784,6 @@ public final UnaryCallable deleteTableCallable() { */ public final Table modifyColumnFamilies( TableName name, List modifications) { - ModifyColumnFamiliesRequest request = ModifyColumnFamiliesRequest.newBuilder() .setName(name == null ? null : name.toString()) @@ -826,7 +817,6 @@ public final Table modifyColumnFamilies( */ public final Table modifyColumnFamilies( String name, List modifications) { - ModifyColumnFamiliesRequest request = ModifyColumnFamiliesRequest.newBuilder() .setName(name) @@ -955,7 +945,6 @@ public final UnaryCallable dropRowRangeCallable() { * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ public final GenerateConsistencyTokenResponse generateConsistencyToken(TableName name) { - GenerateConsistencyTokenRequest request = GenerateConsistencyTokenRequest.newBuilder() .setName(name == null ? null : name.toString()) @@ -983,7 +972,6 @@ public final GenerateConsistencyTokenResponse generateConsistencyToken(TableName * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ public final GenerateConsistencyTokenResponse generateConsistencyToken(String name) { - GenerateConsistencyTokenRequest request = GenerateConsistencyTokenRequest.newBuilder().setName(name).build(); return generateConsistencyToken(request); @@ -1061,7 +1049,6 @@ public final GenerateConsistencyTokenResponse generateConsistencyToken( * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ public final CheckConsistencyResponse checkConsistency(TableName name, String consistencyToken) { - CheckConsistencyRequest request = CheckConsistencyRequest.newBuilder() .setName(name == null ? null : name.toString()) @@ -1091,7 +1078,6 @@ public final CheckConsistencyResponse checkConsistency(TableName name, String co * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ public final CheckConsistencyResponse checkConsistency(String name, String consistencyToken) { - CheckConsistencyRequest request = CheckConsistencyRequest.newBuilder() .setName(name) @@ -1171,7 +1157,6 @@ public final CheckConsistencyResponse checkConsistency(CheckConsistencyRequest r * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ public final Policy getIamPolicy(String resource) { - GetIamPolicyRequest request = GetIamPolicyRequest.newBuilder().setResource(resource).build(); return getIamPolicy(request); } @@ -1245,7 +1230,6 @@ public final UnaryCallable getIamPolicyCallable() { * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ public final Policy setIamPolicy(String resource, Policy policy) { - SetIamPolicyRequest request = SetIamPolicyRequest.newBuilder().setResource(resource).setPolicy(policy).build(); return setIamPolicy(request); @@ -1323,7 +1307,6 @@ public final UnaryCallable setIamPolicyCallable() { */ public final TestIamPermissionsResponse testIamPermissions( String resource, List permissions) { - TestIamPermissionsRequest request = TestIamPermissionsRequest.newBuilder() .setResource(resource) @@ -1418,7 +1401,6 @@ public final TestIamPermissionsResponse testIamPermissions(TestIamPermissionsReq "The surface for long-running operations is not stable yet and may change in the future.") public final OperationFuture snapshotTableAsync( TableName name, ClusterName cluster, SnapshotName snapshotId, String description) { - SnapshotTableRequest request = SnapshotTableRequest.newBuilder() .setName(name == null ? null : name.toString()) @@ -1465,7 +1447,6 @@ public final OperationFuture snapshotTableAsync "The surface for long-running operations is not stable yet and may change in the future.") public final OperationFuture snapshotTableAsync( String name, String cluster, String snapshotId, String description) { - SnapshotTableRequest request = SnapshotTableRequest.newBuilder() .setName(name) @@ -1607,7 +1588,6 @@ public final UnaryCallable snapshotTableCallabl * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ public final Snapshot getSnapshot(SnapshotName name) { - GetSnapshotRequest request = GetSnapshotRequest.newBuilder().setName(name == null ? null : name.toString()).build(); return getSnapshot(request); @@ -1636,7 +1616,6 @@ public final Snapshot getSnapshot(SnapshotName name) { * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ public final Snapshot getSnapshot(String name) { - GetSnapshotRequest request = GetSnapshotRequest.newBuilder().setName(name).build(); return getSnapshot(request); } @@ -1880,7 +1859,6 @@ public final UnaryCallable listSnap * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ public final void deleteSnapshot(SnapshotName name) { - DeleteSnapshotRequest request = DeleteSnapshotRequest.newBuilder().setName(name == null ? null : name.toString()).build(); deleteSnapshot(request); @@ -1909,7 +1887,6 @@ public final void deleteSnapshot(SnapshotName name) { * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ public final void deleteSnapshot(String name) { - DeleteSnapshotRequest request = DeleteSnapshotRequest.newBuilder().setName(name).build(); deleteSnapshot(request); } diff --git a/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/admin/v2/BaseBigtableTableAdminSettings.java b/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/admin/v2/BaseBigtableTableAdminSettings.java index 0b978e4091..ab3be4e585 100644 --- a/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/admin/v2/BaseBigtableTableAdminSettings.java +++ b/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/admin/v2/BaseBigtableTableAdminSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2019 Google LLC + * Copyright 2020 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/admin/v2/stub/BigtableInstanceAdminStub.java b/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/admin/v2/stub/BigtableInstanceAdminStub.java index 264af82f3c..0b33e15500 100644 --- a/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/admin/v2/stub/BigtableInstanceAdminStub.java +++ b/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/admin/v2/stub/BigtableInstanceAdminStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2019 Google LLC + * Copyright 2020 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/admin/v2/stub/BigtableInstanceAdminStubSettings.java b/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/admin/v2/stub/BigtableInstanceAdminStubSettings.java index c4a3a678ac..b5da1849bc 100644 --- a/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/admin/v2/stub/BigtableInstanceAdminStubSettings.java +++ b/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/admin/v2/stub/BigtableInstanceAdminStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2019 Google LLC + * Copyright 2020 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/admin/v2/stub/BigtableTableAdminStub.java b/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/admin/v2/stub/BigtableTableAdminStub.java index 8273ee6e37..5ed533e8b5 100644 --- a/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/admin/v2/stub/BigtableTableAdminStub.java +++ b/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/admin/v2/stub/BigtableTableAdminStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2019 Google LLC + * Copyright 2020 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/admin/v2/stub/BigtableTableAdminStubSettings.java b/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/admin/v2/stub/BigtableTableAdminStubSettings.java index f19fb2e1a4..7025ba0046 100644 --- a/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/admin/v2/stub/BigtableTableAdminStubSettings.java +++ b/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/admin/v2/stub/BigtableTableAdminStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2019 Google LLC + * Copyright 2020 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/admin/v2/stub/GrpcBigtableInstanceAdminCallableFactory.java b/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/admin/v2/stub/GrpcBigtableInstanceAdminCallableFactory.java index 76ffdc7bde..25b6608e2c 100644 --- a/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/admin/v2/stub/GrpcBigtableInstanceAdminCallableFactory.java +++ b/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/admin/v2/stub/GrpcBigtableInstanceAdminCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2019 Google LLC + * Copyright 2020 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/admin/v2/stub/GrpcBigtableInstanceAdminStub.java b/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/admin/v2/stub/GrpcBigtableInstanceAdminStub.java index 2ce6633ec0..d4dea7195c 100644 --- a/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/admin/v2/stub/GrpcBigtableInstanceAdminStub.java +++ b/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/admin/v2/stub/GrpcBigtableInstanceAdminStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2019 Google LLC + * Copyright 2020 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/admin/v2/stub/GrpcBigtableTableAdminCallableFactory.java b/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/admin/v2/stub/GrpcBigtableTableAdminCallableFactory.java index a1ed5e5dc8..7e285ca662 100644 --- a/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/admin/v2/stub/GrpcBigtableTableAdminCallableFactory.java +++ b/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/admin/v2/stub/GrpcBigtableTableAdminCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2019 Google LLC + * Copyright 2020 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/admin/v2/stub/GrpcBigtableTableAdminStub.java b/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/admin/v2/stub/GrpcBigtableTableAdminStub.java index 8db6904640..0dea5a9f8a 100644 --- a/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/admin/v2/stub/GrpcBigtableTableAdminStub.java +++ b/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/admin/v2/stub/GrpcBigtableTableAdminStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2019 Google LLC + * Copyright 2020 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/data/v2/stub/BigtableStub.java b/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/data/v2/stub/BigtableStub.java index dbbb012306..08253c5775 100644 --- a/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/data/v2/stub/BigtableStub.java +++ b/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/data/v2/stub/BigtableStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2019 Google LLC + * Copyright 2020 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/data/v2/stub/BigtableStubSettings.java b/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/data/v2/stub/BigtableStubSettings.java index 79315fe8ca..a34bbd6734 100644 --- a/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/data/v2/stub/BigtableStubSettings.java +++ b/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/data/v2/stub/BigtableStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2019 Google LLC + * Copyright 2020 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/data/v2/stub/GrpcBigtableCallableFactory.java b/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/data/v2/stub/GrpcBigtableCallableFactory.java index b0230acd2d..34f06aed99 100644 --- a/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/data/v2/stub/GrpcBigtableCallableFactory.java +++ b/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/data/v2/stub/GrpcBigtableCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2019 Google LLC + * Copyright 2020 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/data/v2/stub/GrpcBigtableStub.java b/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/data/v2/stub/GrpcBigtableStub.java index a98cba8386..155be0595a 100644 --- a/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/data/v2/stub/GrpcBigtableStub.java +++ b/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/data/v2/stub/GrpcBigtableStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2019 Google LLC + * Copyright 2020 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-cloud-bigtable/src/test/java/com/google/cloud/bigtable/admin/v2/BaseBigtableInstanceAdminClientTest.java b/google-cloud-bigtable/src/test/java/com/google/cloud/bigtable/admin/v2/BaseBigtableInstanceAdminClientTest.java index 8a65995eea..4fef0996e4 100644 --- a/google-cloud-bigtable/src/test/java/com/google/cloud/bigtable/admin/v2/BaseBigtableInstanceAdminClientTest.java +++ b/google-cloud-bigtable/src/test/java/com/google/cloud/bigtable/admin/v2/BaseBigtableInstanceAdminClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2019 Google LLC + * Copyright 2020 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-cloud-bigtable/src/test/java/com/google/cloud/bigtable/admin/v2/BaseBigtableTableAdminClientTest.java b/google-cloud-bigtable/src/test/java/com/google/cloud/bigtable/admin/v2/BaseBigtableTableAdminClientTest.java index 3d554bbfb6..fed7b196cc 100644 --- a/google-cloud-bigtable/src/test/java/com/google/cloud/bigtable/admin/v2/BaseBigtableTableAdminClientTest.java +++ b/google-cloud-bigtable/src/test/java/com/google/cloud/bigtable/admin/v2/BaseBigtableTableAdminClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2019 Google LLC + * Copyright 2020 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-cloud-bigtable/src/test/java/com/google/cloud/bigtable/admin/v2/MockBigtableInstanceAdmin.java b/google-cloud-bigtable/src/test/java/com/google/cloud/bigtable/admin/v2/MockBigtableInstanceAdmin.java index 66f3c7f34b..360d6c0d56 100644 --- a/google-cloud-bigtable/src/test/java/com/google/cloud/bigtable/admin/v2/MockBigtableInstanceAdmin.java +++ b/google-cloud-bigtable/src/test/java/com/google/cloud/bigtable/admin/v2/MockBigtableInstanceAdmin.java @@ -1,5 +1,5 @@ /* - * Copyright 2019 Google LLC + * Copyright 2020 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-cloud-bigtable/src/test/java/com/google/cloud/bigtable/admin/v2/MockBigtableInstanceAdminImpl.java b/google-cloud-bigtable/src/test/java/com/google/cloud/bigtable/admin/v2/MockBigtableInstanceAdminImpl.java index e77d47e4d6..92f4b541e1 100644 --- a/google-cloud-bigtable/src/test/java/com/google/cloud/bigtable/admin/v2/MockBigtableInstanceAdminImpl.java +++ b/google-cloud-bigtable/src/test/java/com/google/cloud/bigtable/admin/v2/MockBigtableInstanceAdminImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2019 Google LLC + * Copyright 2020 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-cloud-bigtable/src/test/java/com/google/cloud/bigtable/admin/v2/MockBigtableTableAdmin.java b/google-cloud-bigtable/src/test/java/com/google/cloud/bigtable/admin/v2/MockBigtableTableAdmin.java index 28c79e21a7..a4c1c228f6 100644 --- a/google-cloud-bigtable/src/test/java/com/google/cloud/bigtable/admin/v2/MockBigtableTableAdmin.java +++ b/google-cloud-bigtable/src/test/java/com/google/cloud/bigtable/admin/v2/MockBigtableTableAdmin.java @@ -1,5 +1,5 @@ /* - * Copyright 2019 Google LLC + * Copyright 2020 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-cloud-bigtable/src/test/java/com/google/cloud/bigtable/admin/v2/MockBigtableTableAdminImpl.java b/google-cloud-bigtable/src/test/java/com/google/cloud/bigtable/admin/v2/MockBigtableTableAdminImpl.java index 8cb96a7b43..ac542e05c7 100644 --- a/google-cloud-bigtable/src/test/java/com/google/cloud/bigtable/admin/v2/MockBigtableTableAdminImpl.java +++ b/google-cloud-bigtable/src/test/java/com/google/cloud/bigtable/admin/v2/MockBigtableTableAdminImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2019 Google LLC + * Copyright 2020 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/synth.metadata b/synth.metadata index a9eda9efbb..dcf62065c7 100644 --- a/synth.metadata +++ b/synth.metadata @@ -1,19 +1,19 @@ { - "updateTime": "2020-01-11T08:40:05.723003Z", + "updateTime": "2020-01-14T21:12:07.483450Z", "sources": [ { "generator": { "name": "artman", - "version": "0.43.0", - "dockerImage": "googleapis/artman@sha256:264654a37596a44b0668b8ce6ac41082d713f6ee150b3fc6425fa78cc64e4f20" + "version": "0.44.0", + "dockerImage": "googleapis/artman@sha256:10a6d0342b8d62544810ac5ad86c3b21049ec0696608ac60175da8e513234344" } }, { "git": { "name": "googleapis", "remote": "https://github.com/googleapis/googleapis.git", - "sha": "b08714b378e8e5b0c4ecdde73f92c36d6303b4b6", - "internalRef": "289189004" + "sha": "d99df0d67057a233c711187e0689baa4f8e6333d", + "internalRef": "289709813" } }, {