Date: Mon, 15 Mar 2021 08:30:15 -0700
Subject: [PATCH 11/47] chore: update java microgenerator to 1.0.2 Adds request
initialization to sample code (#149)
This PR was generated using Autosynth. :rainbow:
Synth log will be available here:
https://source.cloud.google.com/results/invocations/e9380520-5063-47f8-a9b3-819d17432880/targets
- [ ] To automatically regenerate this PR, check this box.
PiperOrigin-RevId: 362856902
Source-Link: https://github.com/googleapis/googleapis/commit/1305ca41d554eb0725237561e34129373bb8cbc1
---
.../v1beta1/NotebookServiceClient.java | 12 +++
.../v1beta1/MockNotebookServiceImpl.java | 76 +++++++++----------
synth.metadata | 6 +-
3 files changed, 53 insertions(+), 41 deletions(-)
diff --git a/google-cloud-notebooks/src/main/java/com/google/cloud/notebooks/v1beta1/NotebookServiceClient.java b/google-cloud-notebooks/src/main/java/com/google/cloud/notebooks/v1beta1/NotebookServiceClient.java
index 81c12780..5b25080e 100644
--- a/google-cloud-notebooks/src/main/java/com/google/cloud/notebooks/v1beta1/NotebookServiceClient.java
+++ b/google-cloud-notebooks/src/main/java/com/google/cloud/notebooks/v1beta1/NotebookServiceClient.java
@@ -230,6 +230,12 @@ public final ListInstancesPagedResponse listInstances(ListInstancesRequest reque
*
* {@code
* try (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
+ * ListInstancesRequest request =
+ * ListInstancesRequest.newBuilder()
+ * .setParent("parent-995424086")
+ * .setPageSize(883849137)
+ * .setPageToken("pageToken873572522")
+ * .build();
* while (true) {
* ListInstancesResponse response =
* notebookServiceClient.listInstancesCallable().call(request);
@@ -1264,6 +1270,12 @@ public final ListEnvironmentsPagedResponse listEnvironments(ListEnvironmentsRequ
*
* {@code
* try (NotebookServiceClient notebookServiceClient = NotebookServiceClient.create()) {
+ * ListEnvironmentsRequest request =
+ * ListEnvironmentsRequest.newBuilder()
+ * .setParent("parent-995424086")
+ * .setPageSize(883849137)
+ * .setPageToken("pageToken873572522")
+ * .build();
* while (true) {
* ListEnvironmentsResponse response =
* notebookServiceClient.listEnvironmentsCallable().call(request);
diff --git a/google-cloud-notebooks/src/test/java/com/google/cloud/notebooks/v1beta1/MockNotebookServiceImpl.java b/google-cloud-notebooks/src/test/java/com/google/cloud/notebooks/v1beta1/MockNotebookServiceImpl.java
index 4e32ce08..6a3c94fe 100644
--- a/google-cloud-notebooks/src/test/java/com/google/cloud/notebooks/v1beta1/MockNotebookServiceImpl.java
+++ b/google-cloud-notebooks/src/test/java/com/google/cloud/notebooks/v1beta1/MockNotebookServiceImpl.java
@@ -62,7 +62,7 @@ public void reset() {
@Override
public void listInstances(
ListInstancesRequest request, StreamObserver responseObserver) {
- Object response = responses.remove();
+ Object response = responses.poll();
if (response instanceof ListInstancesResponse) {
requests.add(request);
responseObserver.onNext(((ListInstancesResponse) response));
@@ -74,7 +74,7 @@ public void listInstances(
new IllegalArgumentException(
String.format(
"Unrecognized response type %s for method ListInstances, expected %s or %s",
- response.getClass().getName(),
+ response == null ? "null" : response.getClass().getName(),
ListInstancesResponse.class.getName(),
Exception.class.getName())));
}
@@ -82,7 +82,7 @@ public void listInstances(
@Override
public void getInstance(GetInstanceRequest request, StreamObserver responseObserver) {
- Object response = responses.remove();
+ Object response = responses.poll();
if (response instanceof Instance) {
requests.add(request);
responseObserver.onNext(((Instance) response));
@@ -94,7 +94,7 @@ public void getInstance(GetInstanceRequest request, StreamObserver res
new IllegalArgumentException(
String.format(
"Unrecognized response type %s for method GetInstance, expected %s or %s",
- response.getClass().getName(),
+ response == null ? "null" : response.getClass().getName(),
Instance.class.getName(),
Exception.class.getName())));
}
@@ -103,7 +103,7 @@ public void getInstance(GetInstanceRequest request, StreamObserver res
@Override
public void createInstance(
CreateInstanceRequest request, StreamObserver responseObserver) {
- Object response = responses.remove();
+ Object response = responses.poll();
if (response instanceof Operation) {
requests.add(request);
responseObserver.onNext(((Operation) response));
@@ -115,7 +115,7 @@ public void createInstance(
new IllegalArgumentException(
String.format(
"Unrecognized response type %s for method CreateInstance, expected %s or %s",
- response.getClass().getName(),
+ response == null ? "null" : response.getClass().getName(),
Operation.class.getName(),
Exception.class.getName())));
}
@@ -124,7 +124,7 @@ public void createInstance(
@Override
public void registerInstance(
RegisterInstanceRequest request, StreamObserver responseObserver) {
- Object response = responses.remove();
+ Object response = responses.poll();
if (response instanceof Operation) {
requests.add(request);
responseObserver.onNext(((Operation) response));
@@ -136,7 +136,7 @@ public void registerInstance(
new IllegalArgumentException(
String.format(
"Unrecognized response type %s for method RegisterInstance, expected %s or %s",
- response.getClass().getName(),
+ response == null ? "null" : response.getClass().getName(),
Operation.class.getName(),
Exception.class.getName())));
}
@@ -145,7 +145,7 @@ public void registerInstance(
@Override
public void setInstanceAccelerator(
SetInstanceAcceleratorRequest request, StreamObserver responseObserver) {
- Object response = responses.remove();
+ Object response = responses.poll();
if (response instanceof Operation) {
requests.add(request);
responseObserver.onNext(((Operation) response));
@@ -157,7 +157,7 @@ public void setInstanceAccelerator(
new IllegalArgumentException(
String.format(
"Unrecognized response type %s for method SetInstanceAccelerator, expected %s or %s",
- response.getClass().getName(),
+ response == null ? "null" : response.getClass().getName(),
Operation.class.getName(),
Exception.class.getName())));
}
@@ -166,7 +166,7 @@ public void setInstanceAccelerator(
@Override
public void setInstanceMachineType(
SetInstanceMachineTypeRequest request, StreamObserver responseObserver) {
- Object response = responses.remove();
+ Object response = responses.poll();
if (response instanceof Operation) {
requests.add(request);
responseObserver.onNext(((Operation) response));
@@ -178,7 +178,7 @@ public void setInstanceMachineType(
new IllegalArgumentException(
String.format(
"Unrecognized response type %s for method SetInstanceMachineType, expected %s or %s",
- response.getClass().getName(),
+ response == null ? "null" : response.getClass().getName(),
Operation.class.getName(),
Exception.class.getName())));
}
@@ -187,7 +187,7 @@ public void setInstanceMachineType(
@Override
public void setInstanceLabels(
SetInstanceLabelsRequest request, StreamObserver responseObserver) {
- Object response = responses.remove();
+ Object response = responses.poll();
if (response instanceof Operation) {
requests.add(request);
responseObserver.onNext(((Operation) response));
@@ -199,7 +199,7 @@ public void setInstanceLabels(
new IllegalArgumentException(
String.format(
"Unrecognized response type %s for method SetInstanceLabels, expected %s or %s",
- response.getClass().getName(),
+ response == null ? "null" : response.getClass().getName(),
Operation.class.getName(),
Exception.class.getName())));
}
@@ -208,7 +208,7 @@ public void setInstanceLabels(
@Override
public void deleteInstance(
DeleteInstanceRequest request, StreamObserver responseObserver) {
- Object response = responses.remove();
+ Object response = responses.poll();
if (response instanceof Operation) {
requests.add(request);
responseObserver.onNext(((Operation) response));
@@ -220,7 +220,7 @@ public void deleteInstance(
new IllegalArgumentException(
String.format(
"Unrecognized response type %s for method DeleteInstance, expected %s or %s",
- response.getClass().getName(),
+ response == null ? "null" : response.getClass().getName(),
Operation.class.getName(),
Exception.class.getName())));
}
@@ -229,7 +229,7 @@ public void deleteInstance(
@Override
public void startInstance(
StartInstanceRequest request, StreamObserver responseObserver) {
- Object response = responses.remove();
+ Object response = responses.poll();
if (response instanceof Operation) {
requests.add(request);
responseObserver.onNext(((Operation) response));
@@ -241,7 +241,7 @@ public void startInstance(
new IllegalArgumentException(
String.format(
"Unrecognized response type %s for method StartInstance, expected %s or %s",
- response.getClass().getName(),
+ response == null ? "null" : response.getClass().getName(),
Operation.class.getName(),
Exception.class.getName())));
}
@@ -250,7 +250,7 @@ public void startInstance(
@Override
public void stopInstance(
StopInstanceRequest request, StreamObserver responseObserver) {
- Object response = responses.remove();
+ Object response = responses.poll();
if (response instanceof Operation) {
requests.add(request);
responseObserver.onNext(((Operation) response));
@@ -262,7 +262,7 @@ public void stopInstance(
new IllegalArgumentException(
String.format(
"Unrecognized response type %s for method StopInstance, expected %s or %s",
- response.getClass().getName(),
+ response == null ? "null" : response.getClass().getName(),
Operation.class.getName(),
Exception.class.getName())));
}
@@ -271,7 +271,7 @@ public void stopInstance(
@Override
public void resetInstance(
ResetInstanceRequest request, StreamObserver responseObserver) {
- Object response = responses.remove();
+ Object response = responses.poll();
if (response instanceof Operation) {
requests.add(request);
responseObserver.onNext(((Operation) response));
@@ -283,7 +283,7 @@ public void resetInstance(
new IllegalArgumentException(
String.format(
"Unrecognized response type %s for method ResetInstance, expected %s or %s",
- response.getClass().getName(),
+ response == null ? "null" : response.getClass().getName(),
Operation.class.getName(),
Exception.class.getName())));
}
@@ -292,7 +292,7 @@ public void resetInstance(
@Override
public void reportInstanceInfo(
ReportInstanceInfoRequest request, StreamObserver responseObserver) {
- Object response = responses.remove();
+ Object response = responses.poll();
if (response instanceof Operation) {
requests.add(request);
responseObserver.onNext(((Operation) response));
@@ -304,7 +304,7 @@ public void reportInstanceInfo(
new IllegalArgumentException(
String.format(
"Unrecognized response type %s for method ReportInstanceInfo, expected %s or %s",
- response.getClass().getName(),
+ response == null ? "null" : response.getClass().getName(),
Operation.class.getName(),
Exception.class.getName())));
}
@@ -314,7 +314,7 @@ public void reportInstanceInfo(
public void isInstanceUpgradeable(
IsInstanceUpgradeableRequest request,
StreamObserver responseObserver) {
- Object response = responses.remove();
+ Object response = responses.poll();
if (response instanceof IsInstanceUpgradeableResponse) {
requests.add(request);
responseObserver.onNext(((IsInstanceUpgradeableResponse) response));
@@ -326,7 +326,7 @@ public void isInstanceUpgradeable(
new IllegalArgumentException(
String.format(
"Unrecognized response type %s for method IsInstanceUpgradeable, expected %s or %s",
- response.getClass().getName(),
+ response == null ? "null" : response.getClass().getName(),
IsInstanceUpgradeableResponse.class.getName(),
Exception.class.getName())));
}
@@ -335,7 +335,7 @@ public void isInstanceUpgradeable(
@Override
public void upgradeInstance(
UpgradeInstanceRequest request, StreamObserver responseObserver) {
- Object response = responses.remove();
+ Object response = responses.poll();
if (response instanceof Operation) {
requests.add(request);
responseObserver.onNext(((Operation) response));
@@ -347,7 +347,7 @@ public void upgradeInstance(
new IllegalArgumentException(
String.format(
"Unrecognized response type %s for method UpgradeInstance, expected %s or %s",
- response.getClass().getName(),
+ response == null ? "null" : response.getClass().getName(),
Operation.class.getName(),
Exception.class.getName())));
}
@@ -356,7 +356,7 @@ public void upgradeInstance(
@Override
public void upgradeInstanceInternal(
UpgradeInstanceInternalRequest request, StreamObserver responseObserver) {
- Object response = responses.remove();
+ Object response = responses.poll();
if (response instanceof Operation) {
requests.add(request);
responseObserver.onNext(((Operation) response));
@@ -368,7 +368,7 @@ public void upgradeInstanceInternal(
new IllegalArgumentException(
String.format(
"Unrecognized response type %s for method UpgradeInstanceInternal, expected %s or %s",
- response.getClass().getName(),
+ response == null ? "null" : response.getClass().getName(),
Operation.class.getName(),
Exception.class.getName())));
}
@@ -377,7 +377,7 @@ public void upgradeInstanceInternal(
@Override
public void listEnvironments(
ListEnvironmentsRequest request, StreamObserver responseObserver) {
- Object response = responses.remove();
+ Object response = responses.poll();
if (response instanceof ListEnvironmentsResponse) {
requests.add(request);
responseObserver.onNext(((ListEnvironmentsResponse) response));
@@ -389,7 +389,7 @@ public void listEnvironments(
new IllegalArgumentException(
String.format(
"Unrecognized response type %s for method ListEnvironments, expected %s or %s",
- response.getClass().getName(),
+ response == null ? "null" : response.getClass().getName(),
ListEnvironmentsResponse.class.getName(),
Exception.class.getName())));
}
@@ -398,7 +398,7 @@ public void listEnvironments(
@Override
public void getEnvironment(
GetEnvironmentRequest request, StreamObserver responseObserver) {
- Object response = responses.remove();
+ Object response = responses.poll();
if (response instanceof Environment) {
requests.add(request);
responseObserver.onNext(((Environment) response));
@@ -410,7 +410,7 @@ public void getEnvironment(
new IllegalArgumentException(
String.format(
"Unrecognized response type %s for method GetEnvironment, expected %s or %s",
- response.getClass().getName(),
+ response == null ? "null" : response.getClass().getName(),
Environment.class.getName(),
Exception.class.getName())));
}
@@ -419,7 +419,7 @@ public void getEnvironment(
@Override
public void createEnvironment(
CreateEnvironmentRequest request, StreamObserver responseObserver) {
- Object response = responses.remove();
+ Object response = responses.poll();
if (response instanceof Operation) {
requests.add(request);
responseObserver.onNext(((Operation) response));
@@ -431,7 +431,7 @@ public void createEnvironment(
new IllegalArgumentException(
String.format(
"Unrecognized response type %s for method CreateEnvironment, expected %s or %s",
- response.getClass().getName(),
+ response == null ? "null" : response.getClass().getName(),
Operation.class.getName(),
Exception.class.getName())));
}
@@ -440,7 +440,7 @@ public void createEnvironment(
@Override
public void deleteEnvironment(
DeleteEnvironmentRequest request, StreamObserver responseObserver) {
- Object response = responses.remove();
+ Object response = responses.poll();
if (response instanceof Operation) {
requests.add(request);
responseObserver.onNext(((Operation) response));
@@ -452,7 +452,7 @@ public void deleteEnvironment(
new IllegalArgumentException(
String.format(
"Unrecognized response type %s for method DeleteEnvironment, expected %s or %s",
- response.getClass().getName(),
+ response == null ? "null" : response.getClass().getName(),
Operation.class.getName(),
Exception.class.getName())));
}
diff --git a/synth.metadata b/synth.metadata
index ed8b53c7..d1f14848 100644
--- a/synth.metadata
+++ b/synth.metadata
@@ -4,15 +4,15 @@
"git": {
"name": ".",
"remote": "https://github.com/googleapis/java-notebooks.git",
- "sha": "2019dba8875d50d462f996ed0060ea132fd74d23"
+ "sha": "4d9ef8df704a10b092ab2aea29cfb17e2aa44f8f"
}
},
{
"git": {
"name": "googleapis",
"remote": "https://github.com/googleapis/googleapis.git",
- "sha": "0e915217fb5261c1e57bfaf0e16ee5c7feaaba89",
- "internalRef": "361377784"
+ "sha": "1305ca41d554eb0725237561e34129373bb8cbc1",
+ "internalRef": "362856902"
}
},
{
From b519a1ffca7b1917820f6169aa10869d0bbf0157 Mon Sep 17 00:00:00 2001
From: Yoshi Automation Bot
Date: Wed, 24 Mar 2021 16:10:34 -0700
Subject: [PATCH 12/47] chore(java): detect sample-secrets in build.sh (#150)
This PR was generated using Autosynth. :rainbow:
Synth log will be available here:
https://source.cloud.google.com/results/invocations/536f217f-b7dc-42f1-aab8-6857916f6f41/targets
- [ ] To automatically regenerate this PR, check this box. (May take up to 24 hours.)
Source-Link: https://github.com/googleapis/synthtool/commit/bb854b6c048619e3be4e8b8ce8ed10aa74ea78ef
---
.kokoro/build.sh | 5 +++++
synth.metadata | 4 ++--
2 files changed, 7 insertions(+), 2 deletions(-)
diff --git a/.kokoro/build.sh b/.kokoro/build.sh
index a3026dd5..20ec13a9 100755
--- a/.kokoro/build.sh
+++ b/.kokoro/build.sh
@@ -79,6 +79,11 @@ samples)
if [[ -f ${SAMPLES_DIR}/pom.xml ]]
then
+ for FILE in ${KOKORO_GFILE_DIR}/secret_manager/*-samples-secrets; do
+ [[ -f "$FILE" ]] || continue
+ source "$FILE"
+ done
+
pushd ${SAMPLES_DIR}
mvn -B \
-Penable-samples \
diff --git a/synth.metadata b/synth.metadata
index d1f14848..8a691085 100644
--- a/synth.metadata
+++ b/synth.metadata
@@ -4,7 +4,7 @@
"git": {
"name": ".",
"remote": "https://github.com/googleapis/java-notebooks.git",
- "sha": "4d9ef8df704a10b092ab2aea29cfb17e2aa44f8f"
+ "sha": "5b5155ccd0ec9653910018da83182c63b536a4c9"
}
},
{
@@ -19,7 +19,7 @@
"git": {
"name": "synthtool",
"remote": "https://github.com/googleapis/synthtool.git",
- "sha": "0b064d767537e0675fc053e53fca473c5c701fb8"
+ "sha": "bb854b6c048619e3be4e8b8ce8ed10aa74ea78ef"
}
}
],
From 7ba61476bdcb06bc9caf17ca32853791f0d8c1a4 Mon Sep 17 00:00:00 2001
From: Yoshi Automation Bot
Date: Mon, 29 Mar 2021 11:36:04 -0700
Subject: [PATCH 13/47] chore: migrate notebooks to the PHP microgenerator
(#151)
This PR was generated using Autosynth. :rainbow:
Synth log will be available here:
https://source.cloud.google.com/results/invocations/9510f645-d967-47fd-9eaf-4ab05c156597/targets
- [ ] To automatically regenerate this PR, check this box. (May take up to 24 hours.)
PiperOrigin-RevId: 365159240
Source-Link: https://github.com/googleapis/googleapis/commit/cbf8e95fbd0cba135d997762044f6ed5725045c0
---
.../v1beta1/CreateEnvironmentRequest.java | 56 ++--
.../CreateEnvironmentRequestOrBuilder.java | 16 +-
.../notebooks/v1beta1/EnvironmentProto.java | 2 +-
.../cloud/notebooks/v1beta1/Instance.java | 282 ++++++++++--------
.../notebooks/v1beta1/InstanceOrBuilder.java | 79 ++---
.../notebooks/v1beta1/OperationMetadata.java | 12 +-
.../v1beta1/OperationMetadataOrBuilder.java | 3 +-
.../SetInstanceAcceleratorRequest.java | 32 +-
...etInstanceAcceleratorRequestOrBuilder.java | 8 +-
.../cloud/notebooks/v1beta1/environment.proto | 2 +-
.../cloud/notebooks/v1beta1/instance.proto | 57 ++--
.../cloud/notebooks/v1beta1/service.proto | 67 +++--
synth.metadata | 6 +-
13 files changed, 351 insertions(+), 271 deletions(-)
diff --git a/proto-google-cloud-notebooks-v1beta1/src/main/java/com/google/cloud/notebooks/v1beta1/CreateEnvironmentRequest.java b/proto-google-cloud-notebooks-v1beta1/src/main/java/com/google/cloud/notebooks/v1beta1/CreateEnvironmentRequest.java
index e01429ce..bf0aee55 100644
--- a/proto-google-cloud-notebooks-v1beta1/src/main/java/com/google/cloud/notebooks/v1beta1/CreateEnvironmentRequest.java
+++ b/proto-google-cloud-notebooks-v1beta1/src/main/java/com/google/cloud/notebooks/v1beta1/CreateEnvironmentRequest.java
@@ -190,10 +190,10 @@ public com.google.protobuf.ByteString getParentBytes() {
*
*
*
- * Required. User-defined unique ID of this environment. The `environment_id` must
- * be 1 to 63 characters long and contain only lowercase letters,
- * numeric characters, and dashes. The first character must be a lowercase
- * letter and the last character cannot be a dash.
+ * Required. User-defined unique ID of this environment. The `environment_id`
+ * must be 1 to 63 characters long and contain only lowercase letters, numeric
+ * characters, and dashes. The first character must be a lowercase letter and
+ * the last character cannot be a dash.
*
*
* string environment_id = 2 [(.google.api.field_behavior) = REQUIRED];
@@ -216,10 +216,10 @@ public java.lang.String getEnvironmentId() {
*
*
*
- * Required. User-defined unique ID of this environment. The `environment_id` must
- * be 1 to 63 characters long and contain only lowercase letters,
- * numeric characters, and dashes. The first character must be a lowercase
- * letter and the last character cannot be a dash.
+ * Required. User-defined unique ID of this environment. The `environment_id`
+ * must be 1 to 63 characters long and contain only lowercase letters, numeric
+ * characters, and dashes. The first character must be a lowercase letter and
+ * the last character cannot be a dash.
*
*
* string environment_id = 2 [(.google.api.field_behavior) = REQUIRED];
@@ -767,10 +767,10 @@ public Builder setParentBytes(com.google.protobuf.ByteString value) {
*
*
*
- * Required. User-defined unique ID of this environment. The `environment_id` must
- * be 1 to 63 characters long and contain only lowercase letters,
- * numeric characters, and dashes. The first character must be a lowercase
- * letter and the last character cannot be a dash.
+ * Required. User-defined unique ID of this environment. The `environment_id`
+ * must be 1 to 63 characters long and contain only lowercase letters, numeric
+ * characters, and dashes. The first character must be a lowercase letter and
+ * the last character cannot be a dash.
*
*
* string environment_id = 2 [(.google.api.field_behavior) = REQUIRED];
@@ -792,10 +792,10 @@ public java.lang.String getEnvironmentId() {
*
*
*
- * Required. User-defined unique ID of this environment. The `environment_id` must
- * be 1 to 63 characters long and contain only lowercase letters,
- * numeric characters, and dashes. The first character must be a lowercase
- * letter and the last character cannot be a dash.
+ * Required. User-defined unique ID of this environment. The `environment_id`
+ * must be 1 to 63 characters long and contain only lowercase letters, numeric
+ * characters, and dashes. The first character must be a lowercase letter and
+ * the last character cannot be a dash.
*
*
* string environment_id = 2 [(.google.api.field_behavior) = REQUIRED];
@@ -817,10 +817,10 @@ public com.google.protobuf.ByteString getEnvironmentIdBytes() {
*
*
*
- * Required. User-defined unique ID of this environment. The `environment_id` must
- * be 1 to 63 characters long and contain only lowercase letters,
- * numeric characters, and dashes. The first character must be a lowercase
- * letter and the last character cannot be a dash.
+ * Required. User-defined unique ID of this environment. The `environment_id`
+ * must be 1 to 63 characters long and contain only lowercase letters, numeric
+ * characters, and dashes. The first character must be a lowercase letter and
+ * the last character cannot be a dash.
*
*
* string environment_id = 2 [(.google.api.field_behavior) = REQUIRED];
@@ -841,10 +841,10 @@ public Builder setEnvironmentId(java.lang.String value) {
*
*
*
- * Required. User-defined unique ID of this environment. The `environment_id` must
- * be 1 to 63 characters long and contain only lowercase letters,
- * numeric characters, and dashes. The first character must be a lowercase
- * letter and the last character cannot be a dash.
+ * Required. User-defined unique ID of this environment. The `environment_id`
+ * must be 1 to 63 characters long and contain only lowercase letters, numeric
+ * characters, and dashes. The first character must be a lowercase letter and
+ * the last character cannot be a dash.
*
*
* string environment_id = 2 [(.google.api.field_behavior) = REQUIRED];
@@ -861,10 +861,10 @@ public Builder clearEnvironmentId() {
*
*
*
- * Required. User-defined unique ID of this environment. The `environment_id` must
- * be 1 to 63 characters long and contain only lowercase letters,
- * numeric characters, and dashes. The first character must be a lowercase
- * letter and the last character cannot be a dash.
+ * Required. User-defined unique ID of this environment. The `environment_id`
+ * must be 1 to 63 characters long and contain only lowercase letters, numeric
+ * characters, and dashes. The first character must be a lowercase letter and
+ * the last character cannot be a dash.
*
*
* string environment_id = 2 [(.google.api.field_behavior) = REQUIRED];
diff --git a/proto-google-cloud-notebooks-v1beta1/src/main/java/com/google/cloud/notebooks/v1beta1/CreateEnvironmentRequestOrBuilder.java b/proto-google-cloud-notebooks-v1beta1/src/main/java/com/google/cloud/notebooks/v1beta1/CreateEnvironmentRequestOrBuilder.java
index 4b476a19..0c6825bb 100644
--- a/proto-google-cloud-notebooks-v1beta1/src/main/java/com/google/cloud/notebooks/v1beta1/CreateEnvironmentRequestOrBuilder.java
+++ b/proto-google-cloud-notebooks-v1beta1/src/main/java/com/google/cloud/notebooks/v1beta1/CreateEnvironmentRequestOrBuilder.java
@@ -52,10 +52,10 @@ public interface CreateEnvironmentRequestOrBuilder
*
*
*
- * Required. User-defined unique ID of this environment. The `environment_id` must
- * be 1 to 63 characters long and contain only lowercase letters,
- * numeric characters, and dashes. The first character must be a lowercase
- * letter and the last character cannot be a dash.
+ * Required. User-defined unique ID of this environment. The `environment_id`
+ * must be 1 to 63 characters long and contain only lowercase letters, numeric
+ * characters, and dashes. The first character must be a lowercase letter and
+ * the last character cannot be a dash.
*
*
* string environment_id = 2 [(.google.api.field_behavior) = REQUIRED];
@@ -67,10 +67,10 @@ public interface CreateEnvironmentRequestOrBuilder
*
*
*
- * Required. User-defined unique ID of this environment. The `environment_id` must
- * be 1 to 63 characters long and contain only lowercase letters,
- * numeric characters, and dashes. The first character must be a lowercase
- * letter and the last character cannot be a dash.
+ * Required. User-defined unique ID of this environment. The `environment_id`
+ * must be 1 to 63 characters long and contain only lowercase letters, numeric
+ * characters, and dashes. The first character must be a lowercase letter and
+ * the last character cannot be a dash.
*
*
* string environment_id = 2 [(.google.api.field_behavior) = REQUIRED];
diff --git a/proto-google-cloud-notebooks-v1beta1/src/main/java/com/google/cloud/notebooks/v1beta1/EnvironmentProto.java b/proto-google-cloud-notebooks-v1beta1/src/main/java/com/google/cloud/notebooks/v1beta1/EnvironmentProto.java
index 8066c753..6d9030bf 100644
--- a/proto-google-cloud-notebooks-v1beta1/src/main/java/com/google/cloud/notebooks/v1beta1/EnvironmentProto.java
+++ b/proto-google-cloud-notebooks-v1beta1/src/main/java/com/google/cloud/notebooks/v1beta1/EnvironmentProto.java
@@ -71,7 +71,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() {
+ "ntProtoP\001ZGgoogle.golang.org/genproto/go"
+ "ogleapis/cloud/notebooks/v1beta1;noteboo"
+ "ks\252\002\036Google.Cloud.Notebooks.V1Beta1\312\002\036Go"
- + "ogle\\Cloud\\Notebooks\\V1Beta1\352\002!Google::C"
+ + "ogle\\Cloud\\Notebooks\\V1beta1\352\002!Google::C"
+ "loud::Notebooks::V1beta1b\006proto3"
};
descriptor =
diff --git a/proto-google-cloud-notebooks-v1beta1/src/main/java/com/google/cloud/notebooks/v1beta1/Instance.java b/proto-google-cloud-notebooks-v1beta1/src/main/java/com/google/cloud/notebooks/v1beta1/Instance.java
index 4f768219..84ad0f7e 100644
--- a/proto-google-cloud-notebooks-v1beta1/src/main/java/com/google/cloud/notebooks/v1beta1/Instance.java
+++ b/proto-google-cloud-notebooks-v1beta1/src/main/java/com/google/cloud/notebooks/v1beta1/Instance.java
@@ -2371,7 +2371,8 @@ public com.google.protobuf.ByteString getPostStartupScriptBytes() {
*
*
*
- * Output only. The proxy endpoint that is used to access the Jupyter notebook.
+ * Output only. The proxy endpoint that is used to access the Jupyter
+ * notebook.
*
*
* string proxy_uri = 5 [(.google.api.field_behavior) = OUTPUT_ONLY];
@@ -2394,7 +2395,8 @@ public java.lang.String getProxyUri() {
*
*
*
- * Output only. The proxy endpoint that is used to access the Jupyter notebook.
+ * Output only. The proxy endpoint that is used to access the Jupyter
+ * notebook.
*
*
* string proxy_uri = 5 [(.google.api.field_behavior) = OUTPUT_ONLY];
@@ -2420,7 +2422,8 @@ public com.google.protobuf.ByteString getProxyUriBytes() {
*
*
*
- * Input only. The owner of this instance after creation. Format: `alias@example.com`
+ * Input only. The owner of this instance after creation. Format:
+ * `alias@example.com`
* Currently supports one owner only. If not specified, all of the service
* account users of your VM instance's service account can use
* the instance.
@@ -2437,7 +2440,8 @@ public com.google.protobuf.ProtocolStringList getInstanceOwnersList() {
*
*
*
- * Input only. The owner of this instance after creation. Format: `alias@example.com`
+ * Input only. The owner of this instance after creation. Format:
+ * `alias@example.com`
* Currently supports one owner only. If not specified, all of the service
* account users of your VM instance's service account can use
* the instance.
@@ -2454,7 +2458,8 @@ public int getInstanceOwnersCount() {
*
*
*
- * Input only. The owner of this instance after creation. Format: `alias@example.com`
+ * Input only. The owner of this instance after creation. Format:
+ * `alias@example.com`
* Currently supports one owner only. If not specified, all of the service
* account users of your VM instance's service account can use
* the instance.
@@ -2472,7 +2477,8 @@ public java.lang.String getInstanceOwners(int index) {
*
*
*
- * Input only. The owner of this instance after creation. Format: `alias@example.com`
+ * Input only. The owner of this instance after creation. Format:
+ * `alias@example.com`
* Currently supports one owner only. If not specified, all of the service
* account users of your VM instance's service account can use
* the instance.
@@ -2554,7 +2560,8 @@ public com.google.protobuf.ByteString getServiceAccountBytes() {
*
*
*
- * Required. The [Compute Engine machine type](https://cloud.google.com/compute/docs/machine-types) of this
+ * Required. The [Compute Engine machine
+ * type](https://cloud.google.com/compute/docs/machine-types) of this
* instance.
*
*
@@ -2578,7 +2585,8 @@ public java.lang.String getMachineType() {
*
*
*
- * Required. The [Compute Engine machine type](https://cloud.google.com/compute/docs/machine-types) of this
+ * Required. The [Compute Engine machine
+ * type](https://cloud.google.com/compute/docs/machine-types) of this
* instance.
*
*
@@ -2775,8 +2783,8 @@ public com.google.protobuf.ByteString getCustomGpuDriverPathBytes() {
*
*
*
- * Input only. The type of the boot disk attached to this instance, defaults to
- * standard persistent disk (`PD_STANDARD`).
+ * Input only. The type of the boot disk attached to this instance, defaults
+ * to standard persistent disk (`PD_STANDARD`).
*
*
*
@@ -2793,8 +2801,8 @@ public int getBootDiskTypeValue() {
*
*
*
- * Input only. The type of the boot disk attached to this instance, defaults to
- * standard persistent disk (`PD_STANDARD`).
+ * Input only. The type of the boot disk attached to this instance, defaults
+ * to standard persistent disk (`PD_STANDARD`).
*
*
*
@@ -2819,9 +2827,9 @@ public com.google.cloud.notebooks.v1beta1.Instance.DiskType getBootDiskType() {
*
*
*
- * Input only. The size of the boot disk in GB attached to this instance, up to a maximum
- * of 64000 GB (64 TB). The minimum recommended value is
- * 100 GB. If not specified, this defaults to 100.
+ * Input only. The size of the boot disk in GB attached to this instance, up
+ * to a maximum of 64000 GB (64 TB). The minimum recommended value
+ * is 100 GB. If not specified, this defaults to 100.
*
*
* int64 boot_disk_size_gb = 14 [(.google.api.field_behavior) = INPUT_ONLY];
@@ -2839,8 +2847,8 @@ public long getBootDiskSizeGb() {
*
*
*
- * Input only. The type of the data disk attached to this instance, defaults to
- * standard persistent disk (`PD_STANDARD`).
+ * Input only. The type of the data disk attached to this instance, defaults
+ * to standard persistent disk (`PD_STANDARD`).
*
*
*
@@ -2857,8 +2865,8 @@ public int getDataDiskTypeValue() {
*
*
*
- * Input only. The type of the data disk attached to this instance, defaults to
- * standard persistent disk (`PD_STANDARD`).
+ * Input only. The type of the data disk attached to this instance, defaults
+ * to standard persistent disk (`PD_STANDARD`).
*
*
*
@@ -2883,10 +2891,10 @@ public com.google.cloud.notebooks.v1beta1.Instance.DiskType getDataDiskType() {
*
*
*
- * Input only. The size of the data disk in GB attached to this instance, up to a maximum
- * of 64000 GB (64 TB). You can choose the size of the data disk
- * based on how big your notebooks and data are. If not specified, this
- * defaults to 100.
+ * Input only. The size of the data disk in GB attached to this instance, up
+ * to a maximum of 64000 GB (64 TB). You can choose the size of the
+ * data disk based on how big your notebooks and data are. If not specified,
+ * this defaults to 100.
*
*
* int64 data_disk_size_gb = 26 [(.google.api.field_behavior) = INPUT_ONLY];
@@ -2904,7 +2912,8 @@ public long getDataDiskSizeGb() {
*
*
*
- * Input only. If true, the data disk will not be auto deleted when deleting the instance.
+ * Input only. If true, the data disk will not be auto deleted when deleting
+ * the instance.
*
*
* bool no_remove_data_disk = 27 [(.google.api.field_behavior) = INPUT_ONLY];
@@ -2922,7 +2931,8 @@ public boolean getNoRemoveDataDisk() {
*
*
*
- * Input only. Disk encryption method used on the boot and data disks, defaults to GMEK.
+ * Input only. Disk encryption method used on the boot and data disks,
+ * defaults to GMEK.
*
*
*
@@ -2939,7 +2949,8 @@ public int getDiskEncryptionValue() {
*
*
*
- * Input only. Disk encryption method used on the boot and data disks, defaults to GMEK.
+ * Input only. Disk encryption method used on the boot and data disks,
+ * defaults to GMEK.
*
*
*
@@ -2964,11 +2975,11 @@ public com.google.cloud.notebooks.v1beta1.Instance.DiskEncryption getDiskEncrypt
*
*
*
- * Input only. The KMS key used to encrypt the disks, only applicable if disk_encryption
- * is CMEK.
- * Format:
+ * Input only. The KMS key used to encrypt the disks, only applicable if
+ * disk_encryption is CMEK. Format:
* `projects/{project_id}/locations/{location}/keyRings/{key_ring_id}/cryptoKeys/{key_id}`
- * Learn more about [using your own encryption keys]( https://cloud.google.com/kms/docs/quickstart).
+ * Learn more about [using your own encryption keys](
+ * https://cloud.google.com/kms/docs/quickstart).
*
*
* string kms_key = 16 [(.google.api.field_behavior) = INPUT_ONLY];
@@ -2991,11 +3002,11 @@ public java.lang.String getKmsKey() {
*
*
*
- * Input only. The KMS key used to encrypt the disks, only applicable if disk_encryption
- * is CMEK.
- * Format:
+ * Input only. The KMS key used to encrypt the disks, only applicable if
+ * disk_encryption is CMEK. Format:
* `projects/{project_id}/locations/{location}/keyRings/{key_ring_id}/cryptoKeys/{key_id}`
- * Learn more about [using your own encryption keys]( https://cloud.google.com/kms/docs/quickstart).
+ * Learn more about [using your own encryption keys](
+ * https://cloud.google.com/kms/docs/quickstart).
*
*
* string kms_key = 16 [(.google.api.field_behavior) = INPUT_ONLY];
@@ -4980,7 +4991,8 @@ public Builder setPostStartupScriptBytes(com.google.protobuf.ByteString value) {
*
*
*
- * Output only. The proxy endpoint that is used to access the Jupyter notebook.
+ * Output only. The proxy endpoint that is used to access the Jupyter
+ * notebook.
*
*
* string proxy_uri = 5 [(.google.api.field_behavior) = OUTPUT_ONLY];
@@ -5002,7 +5014,8 @@ public java.lang.String getProxyUri() {
*
*
*
- * Output only. The proxy endpoint that is used to access the Jupyter notebook.
+ * Output only. The proxy endpoint that is used to access the Jupyter
+ * notebook.
*
*
* string proxy_uri = 5 [(.google.api.field_behavior) = OUTPUT_ONLY];
@@ -5024,7 +5037,8 @@ public com.google.protobuf.ByteString getProxyUriBytes() {
*
*
*
- * Output only. The proxy endpoint that is used to access the Jupyter notebook.
+ * Output only. The proxy endpoint that is used to access the Jupyter
+ * notebook.
*
*
* string proxy_uri = 5 [(.google.api.field_behavior) = OUTPUT_ONLY];
@@ -5045,7 +5059,8 @@ public Builder setProxyUri(java.lang.String value) {
*
*
*
- * Output only. The proxy endpoint that is used to access the Jupyter notebook.
+ * Output only. The proxy endpoint that is used to access the Jupyter
+ * notebook.
*
*
* string proxy_uri = 5 [(.google.api.field_behavior) = OUTPUT_ONLY];
@@ -5062,7 +5077,8 @@ public Builder clearProxyUri() {
*
*
*
- * Output only. The proxy endpoint that is used to access the Jupyter notebook.
+ * Output only. The proxy endpoint that is used to access the Jupyter
+ * notebook.
*
*
* string proxy_uri = 5 [(.google.api.field_behavior) = OUTPUT_ONLY];
@@ -5094,7 +5110,8 @@ private void ensureInstanceOwnersIsMutable() {
*
*
*
- * Input only. The owner of this instance after creation. Format: `alias@example.com`
+ * Input only. The owner of this instance after creation. Format:
+ * `alias@example.com`
* Currently supports one owner only. If not specified, all of the service
* account users of your VM instance's service account can use
* the instance.
@@ -5111,7 +5128,8 @@ public com.google.protobuf.ProtocolStringList getInstanceOwnersList() {
*
*
*
- * Input only. The owner of this instance after creation. Format: `alias@example.com`
+ * Input only. The owner of this instance after creation. Format:
+ * `alias@example.com`
* Currently supports one owner only. If not specified, all of the service
* account users of your VM instance's service account can use
* the instance.
@@ -5128,7 +5146,8 @@ public int getInstanceOwnersCount() {
*
*
*
- * Input only. The owner of this instance after creation. Format: `alias@example.com`
+ * Input only. The owner of this instance after creation. Format:
+ * `alias@example.com`
* Currently supports one owner only. If not specified, all of the service
* account users of your VM instance's service account can use
* the instance.
@@ -5146,7 +5165,8 @@ public java.lang.String getInstanceOwners(int index) {
*
*
*
- * Input only. The owner of this instance after creation. Format: `alias@example.com`
+ * Input only. The owner of this instance after creation. Format:
+ * `alias@example.com`
* Currently supports one owner only. If not specified, all of the service
* account users of your VM instance's service account can use
* the instance.
@@ -5164,7 +5184,8 @@ public com.google.protobuf.ByteString getInstanceOwnersBytes(int index) {
*
*
*
- * Input only. The owner of this instance after creation. Format: `alias@example.com`
+ * Input only. The owner of this instance after creation. Format:
+ * `alias@example.com`
* Currently supports one owner only. If not specified, all of the service
* account users of your VM instance's service account can use
* the instance.
@@ -5189,7 +5210,8 @@ public Builder setInstanceOwners(int index, java.lang.String value) {
*
*
*
- * Input only. The owner of this instance after creation. Format: `alias@example.com`
+ * Input only. The owner of this instance after creation. Format:
+ * `alias@example.com`
* Currently supports one owner only. If not specified, all of the service
* account users of your VM instance's service account can use
* the instance.
@@ -5213,7 +5235,8 @@ public Builder addInstanceOwners(java.lang.String value) {
*
*
*
- * Input only. The owner of this instance after creation. Format: `alias@example.com`
+ * Input only. The owner of this instance after creation. Format:
+ * `alias@example.com`
* Currently supports one owner only. If not specified, all of the service
* account users of your VM instance's service account can use
* the instance.
@@ -5234,7 +5257,8 @@ public Builder addAllInstanceOwners(java.lang.Iterable values)
*
*
*
- * Input only. The owner of this instance after creation. Format: `alias@example.com`
+ * Input only. The owner of this instance after creation. Format:
+ * `alias@example.com`
* Currently supports one owner only. If not specified, all of the service
* account users of your VM instance's service account can use
* the instance.
@@ -5254,7 +5278,8 @@ public Builder clearInstanceOwners() {
*
*
*
- * Input only. The owner of this instance after creation. Format: `alias@example.com`
+ * Input only. The owner of this instance after creation. Format:
+ * `alias@example.com`
* Currently supports one owner only. If not specified, all of the service
* account users of your VM instance's service account can use
* the instance.
@@ -5417,7 +5442,8 @@ public Builder setServiceAccountBytes(com.google.protobuf.ByteString value) {
*
*
*
- * Required. The [Compute Engine machine type](https://cloud.google.com/compute/docs/machine-types) of this
+ * Required. The [Compute Engine machine
+ * type](https://cloud.google.com/compute/docs/machine-types) of this
* instance.
*
*
@@ -5440,7 +5466,8 @@ public java.lang.String getMachineType() {
*
*
*
- * Required. The [Compute Engine machine type](https://cloud.google.com/compute/docs/machine-types) of this
+ * Required. The [Compute Engine machine
+ * type](https://cloud.google.com/compute/docs/machine-types) of this
* instance.
*
*
@@ -5463,7 +5490,8 @@ public com.google.protobuf.ByteString getMachineTypeBytes() {
*
*
*
- * Required. The [Compute Engine machine type](https://cloud.google.com/compute/docs/machine-types) of this
+ * Required. The [Compute Engine machine
+ * type](https://cloud.google.com/compute/docs/machine-types) of this
* instance.
*
*
@@ -5485,7 +5513,8 @@ public Builder setMachineType(java.lang.String value) {
*
*
*
- * Required. The [Compute Engine machine type](https://cloud.google.com/compute/docs/machine-types) of this
+ * Required. The [Compute Engine machine
+ * type](https://cloud.google.com/compute/docs/machine-types) of this
* instance.
*
*
@@ -5503,7 +5532,8 @@ public Builder clearMachineType() {
*
*
*
- * Required. The [Compute Engine machine type](https://cloud.google.com/compute/docs/machine-types) of this
+ * Required. The [Compute Engine machine
+ * type](https://cloud.google.com/compute/docs/machine-types) of this
* instance.
*
*
@@ -6030,8 +6060,8 @@ public Builder setCustomGpuDriverPathBytes(com.google.protobuf.ByteString value)
*
*
*
- * Input only. The type of the boot disk attached to this instance, defaults to
- * standard persistent disk (`PD_STANDARD`).
+ * Input only. The type of the boot disk attached to this instance, defaults
+ * to standard persistent disk (`PD_STANDARD`).
*
*
*
@@ -6048,8 +6078,8 @@ public int getBootDiskTypeValue() {
*
*
*
- * Input only. The type of the boot disk attached to this instance, defaults to
- * standard persistent disk (`PD_STANDARD`).
+ * Input only. The type of the boot disk attached to this instance, defaults
+ * to standard persistent disk (`PD_STANDARD`).
*
*
*
@@ -6069,8 +6099,8 @@ public Builder setBootDiskTypeValue(int value) {
*
*
*
- * Input only. The type of the boot disk attached to this instance, defaults to
- * standard persistent disk (`PD_STANDARD`).
+ * Input only. The type of the boot disk attached to this instance, defaults
+ * to standard persistent disk (`PD_STANDARD`).
*
*
*
@@ -6092,8 +6122,8 @@ public com.google.cloud.notebooks.v1beta1.Instance.DiskType getBootDiskType() {
*
*
*
- * Input only. The type of the boot disk attached to this instance, defaults to
- * standard persistent disk (`PD_STANDARD`).
+ * Input only. The type of the boot disk attached to this instance, defaults
+ * to standard persistent disk (`PD_STANDARD`).
*
*
*
@@ -6116,8 +6146,8 @@ public Builder setBootDiskType(com.google.cloud.notebooks.v1beta1.Instance.DiskT
*
*
*
- * Input only. The type of the boot disk attached to this instance, defaults to
- * standard persistent disk (`PD_STANDARD`).
+ * Input only. The type of the boot disk attached to this instance, defaults
+ * to standard persistent disk (`PD_STANDARD`).
*
*
*
@@ -6138,9 +6168,9 @@ public Builder clearBootDiskType() {
*
*
*
- * Input only. The size of the boot disk in GB attached to this instance, up to a maximum
- * of 64000 GB (64 TB). The minimum recommended value is
- * 100 GB. If not specified, this defaults to 100.
+ * Input only. The size of the boot disk in GB attached to this instance, up
+ * to a maximum of 64000 GB (64 TB). The minimum recommended value
+ * is 100 GB. If not specified, this defaults to 100.
*
*
* int64 boot_disk_size_gb = 14 [(.google.api.field_behavior) = INPUT_ONLY];
@@ -6155,9 +6185,9 @@ public long getBootDiskSizeGb() {
*
*
*
- * Input only. The size of the boot disk in GB attached to this instance, up to a maximum
- * of 64000 GB (64 TB). The minimum recommended value is
- * 100 GB. If not specified, this defaults to 100.
+ * Input only. The size of the boot disk in GB attached to this instance, up
+ * to a maximum of 64000 GB (64 TB). The minimum recommended value
+ * is 100 GB. If not specified, this defaults to 100.
*
*
* int64 boot_disk_size_gb = 14 [(.google.api.field_behavior) = INPUT_ONLY];
@@ -6175,9 +6205,9 @@ public Builder setBootDiskSizeGb(long value) {
*
*
*
- * Input only. The size of the boot disk in GB attached to this instance, up to a maximum
- * of 64000 GB (64 TB). The minimum recommended value is
- * 100 GB. If not specified, this defaults to 100.
+ * Input only. The size of the boot disk in GB attached to this instance, up
+ * to a maximum of 64000 GB (64 TB). The minimum recommended value
+ * is 100 GB. If not specified, this defaults to 100.
*
*
* int64 boot_disk_size_gb = 14 [(.google.api.field_behavior) = INPUT_ONLY];
@@ -6196,8 +6226,8 @@ public Builder clearBootDiskSizeGb() {
*
*
*
- * Input only. The type of the data disk attached to this instance, defaults to
- * standard persistent disk (`PD_STANDARD`).
+ * Input only. The type of the data disk attached to this instance, defaults
+ * to standard persistent disk (`PD_STANDARD`).
*
*
*
@@ -6214,8 +6244,8 @@ public int getDataDiskTypeValue() {
*
*
*
- * Input only. The type of the data disk attached to this instance, defaults to
- * standard persistent disk (`PD_STANDARD`).
+ * Input only. The type of the data disk attached to this instance, defaults
+ * to standard persistent disk (`PD_STANDARD`).
*
*
*
@@ -6235,8 +6265,8 @@ public Builder setDataDiskTypeValue(int value) {
*
*
*
- * Input only. The type of the data disk attached to this instance, defaults to
- * standard persistent disk (`PD_STANDARD`).
+ * Input only. The type of the data disk attached to this instance, defaults
+ * to standard persistent disk (`PD_STANDARD`).
*
*
*
@@ -6258,8 +6288,8 @@ public com.google.cloud.notebooks.v1beta1.Instance.DiskType getDataDiskType() {
*
*
*
- * Input only. The type of the data disk attached to this instance, defaults to
- * standard persistent disk (`PD_STANDARD`).
+ * Input only. The type of the data disk attached to this instance, defaults
+ * to standard persistent disk (`PD_STANDARD`).
*
*
*
@@ -6282,8 +6312,8 @@ public Builder setDataDiskType(com.google.cloud.notebooks.v1beta1.Instance.DiskT
*
*
*
- * Input only. The type of the data disk attached to this instance, defaults to
- * standard persistent disk (`PD_STANDARD`).
+ * Input only. The type of the data disk attached to this instance, defaults
+ * to standard persistent disk (`PD_STANDARD`).
*
*
*
@@ -6304,10 +6334,10 @@ public Builder clearDataDiskType() {
*
*
*
- * Input only. The size of the data disk in GB attached to this instance, up to a maximum
- * of 64000 GB (64 TB). You can choose the size of the data disk
- * based on how big your notebooks and data are. If not specified, this
- * defaults to 100.
+ * Input only. The size of the data disk in GB attached to this instance, up
+ * to a maximum of 64000 GB (64 TB). You can choose the size of the
+ * data disk based on how big your notebooks and data are. If not specified,
+ * this defaults to 100.
*
*
* int64 data_disk_size_gb = 26 [(.google.api.field_behavior) = INPUT_ONLY];
@@ -6322,10 +6352,10 @@ public long getDataDiskSizeGb() {
*
*
*
- * Input only. The size of the data disk in GB attached to this instance, up to a maximum
- * of 64000 GB (64 TB). You can choose the size of the data disk
- * based on how big your notebooks and data are. If not specified, this
- * defaults to 100.
+ * Input only. The size of the data disk in GB attached to this instance, up
+ * to a maximum of 64000 GB (64 TB). You can choose the size of the
+ * data disk based on how big your notebooks and data are. If not specified,
+ * this defaults to 100.
*
*
* int64 data_disk_size_gb = 26 [(.google.api.field_behavior) = INPUT_ONLY];
@@ -6343,10 +6373,10 @@ public Builder setDataDiskSizeGb(long value) {
*
*
*
- * Input only. The size of the data disk in GB attached to this instance, up to a maximum
- * of 64000 GB (64 TB). You can choose the size of the data disk
- * based on how big your notebooks and data are. If not specified, this
- * defaults to 100.
+ * Input only. The size of the data disk in GB attached to this instance, up
+ * to a maximum of 64000 GB (64 TB). You can choose the size of the
+ * data disk based on how big your notebooks and data are. If not specified,
+ * this defaults to 100.
*
*
* int64 data_disk_size_gb = 26 [(.google.api.field_behavior) = INPUT_ONLY];
@@ -6365,7 +6395,8 @@ public Builder clearDataDiskSizeGb() {
*
*
*
- * Input only. If true, the data disk will not be auto deleted when deleting the instance.
+ * Input only. If true, the data disk will not be auto deleted when deleting
+ * the instance.
*
*
* bool no_remove_data_disk = 27 [(.google.api.field_behavior) = INPUT_ONLY];
@@ -6380,7 +6411,8 @@ public boolean getNoRemoveDataDisk() {
*
*
*
- * Input only. If true, the data disk will not be auto deleted when deleting the instance.
+ * Input only. If true, the data disk will not be auto deleted when deleting
+ * the instance.
*
*
* bool no_remove_data_disk = 27 [(.google.api.field_behavior) = INPUT_ONLY];
@@ -6398,7 +6430,8 @@ public Builder setNoRemoveDataDisk(boolean value) {
*
*
*
- * Input only. If true, the data disk will not be auto deleted when deleting the instance.
+ * Input only. If true, the data disk will not be auto deleted when deleting
+ * the instance.
*
*
* bool no_remove_data_disk = 27 [(.google.api.field_behavior) = INPUT_ONLY];
@@ -6417,7 +6450,8 @@ public Builder clearNoRemoveDataDisk() {
*
*
*
- * Input only. Disk encryption method used on the boot and data disks, defaults to GMEK.
+ * Input only. Disk encryption method used on the boot and data disks,
+ * defaults to GMEK.
*
*
*
@@ -6434,7 +6468,8 @@ public int getDiskEncryptionValue() {
*
*
*
- * Input only. Disk encryption method used on the boot and data disks, defaults to GMEK.
+ * Input only. Disk encryption method used on the boot and data disks,
+ * defaults to GMEK.
*
*
*
@@ -6454,7 +6489,8 @@ public Builder setDiskEncryptionValue(int value) {
*
*
*
- * Input only. Disk encryption method used on the boot and data disks, defaults to GMEK.
+ * Input only. Disk encryption method used on the boot and data disks,
+ * defaults to GMEK.
*
*
*
@@ -6476,7 +6512,8 @@ public com.google.cloud.notebooks.v1beta1.Instance.DiskEncryption getDiskEncrypt
*
*
*
- * Input only. Disk encryption method used on the boot and data disks, defaults to GMEK.
+ * Input only. Disk encryption method used on the boot and data disks,
+ * defaults to GMEK.
*
*
*
@@ -6500,7 +6537,8 @@ public Builder setDiskEncryption(
*
*
*
- * Input only. Disk encryption method used on the boot and data disks, defaults to GMEK.
+ * Input only. Disk encryption method used on the boot and data disks,
+ * defaults to GMEK.
*
*
*
@@ -6521,11 +6559,11 @@ public Builder clearDiskEncryption() {
*
*
*
- * Input only. The KMS key used to encrypt the disks, only applicable if disk_encryption
- * is CMEK.
- * Format:
+ * Input only. The KMS key used to encrypt the disks, only applicable if
+ * disk_encryption is CMEK. Format:
* `projects/{project_id}/locations/{location}/keyRings/{key_ring_id}/cryptoKeys/{key_id}`
- * Learn more about [using your own encryption keys]( https://cloud.google.com/kms/docs/quickstart).
+ * Learn more about [using your own encryption keys](
+ * https://cloud.google.com/kms/docs/quickstart).
*
*
* string kms_key = 16 [(.google.api.field_behavior) = INPUT_ONLY];
@@ -6547,11 +6585,11 @@ public java.lang.String getKmsKey() {
*
*
*
- * Input only. The KMS key used to encrypt the disks, only applicable if disk_encryption
- * is CMEK.
- * Format:
+ * Input only. The KMS key used to encrypt the disks, only applicable if
+ * disk_encryption is CMEK. Format:
* `projects/{project_id}/locations/{location}/keyRings/{key_ring_id}/cryptoKeys/{key_id}`
- * Learn more about [using your own encryption keys]( https://cloud.google.com/kms/docs/quickstart).
+ * Learn more about [using your own encryption keys](
+ * https://cloud.google.com/kms/docs/quickstart).
*
*
* string kms_key = 16 [(.google.api.field_behavior) = INPUT_ONLY];
@@ -6573,11 +6611,11 @@ public com.google.protobuf.ByteString getKmsKeyBytes() {
*
*
*
- * Input only. The KMS key used to encrypt the disks, only applicable if disk_encryption
- * is CMEK.
- * Format:
+ * Input only. The KMS key used to encrypt the disks, only applicable if
+ * disk_encryption is CMEK. Format:
* `projects/{project_id}/locations/{location}/keyRings/{key_ring_id}/cryptoKeys/{key_id}`
- * Learn more about [using your own encryption keys]( https://cloud.google.com/kms/docs/quickstart).
+ * Learn more about [using your own encryption keys](
+ * https://cloud.google.com/kms/docs/quickstart).
*
*
* string kms_key = 16 [(.google.api.field_behavior) = INPUT_ONLY];
@@ -6598,11 +6636,11 @@ public Builder setKmsKey(java.lang.String value) {
*
*
*
- * Input only. The KMS key used to encrypt the disks, only applicable if disk_encryption
- * is CMEK.
- * Format:
+ * Input only. The KMS key used to encrypt the disks, only applicable if
+ * disk_encryption is CMEK. Format:
* `projects/{project_id}/locations/{location}/keyRings/{key_ring_id}/cryptoKeys/{key_id}`
- * Learn more about [using your own encryption keys]( https://cloud.google.com/kms/docs/quickstart).
+ * Learn more about [using your own encryption keys](
+ * https://cloud.google.com/kms/docs/quickstart).
*
*
* string kms_key = 16 [(.google.api.field_behavior) = INPUT_ONLY];
@@ -6619,11 +6657,11 @@ public Builder clearKmsKey() {
*
*
*
- * Input only. The KMS key used to encrypt the disks, only applicable if disk_encryption
- * is CMEK.
- * Format:
+ * Input only. The KMS key used to encrypt the disks, only applicable if
+ * disk_encryption is CMEK. Format:
* `projects/{project_id}/locations/{location}/keyRings/{key_ring_id}/cryptoKeys/{key_id}`
- * Learn more about [using your own encryption keys]( https://cloud.google.com/kms/docs/quickstart).
+ * Learn more about [using your own encryption keys](
+ * https://cloud.google.com/kms/docs/quickstart).
*
*
* string kms_key = 16 [(.google.api.field_behavior) = INPUT_ONLY];
diff --git a/proto-google-cloud-notebooks-v1beta1/src/main/java/com/google/cloud/notebooks/v1beta1/InstanceOrBuilder.java b/proto-google-cloud-notebooks-v1beta1/src/main/java/com/google/cloud/notebooks/v1beta1/InstanceOrBuilder.java
index 950fec31..8db122e7 100644
--- a/proto-google-cloud-notebooks-v1beta1/src/main/java/com/google/cloud/notebooks/v1beta1/InstanceOrBuilder.java
+++ b/proto-google-cloud-notebooks-v1beta1/src/main/java/com/google/cloud/notebooks/v1beta1/InstanceOrBuilder.java
@@ -153,7 +153,8 @@ public interface InstanceOrBuilder
*
*
*
- * Output only. The proxy endpoint that is used to access the Jupyter notebook.
+ * Output only. The proxy endpoint that is used to access the Jupyter
+ * notebook.
*
*
* string proxy_uri = 5 [(.google.api.field_behavior) = OUTPUT_ONLY];
@@ -165,7 +166,8 @@ public interface InstanceOrBuilder
*
*
*
- * Output only. The proxy endpoint that is used to access the Jupyter notebook.
+ * Output only. The proxy endpoint that is used to access the Jupyter
+ * notebook.
*
*
* string proxy_uri = 5 [(.google.api.field_behavior) = OUTPUT_ONLY];
@@ -178,7 +180,8 @@ public interface InstanceOrBuilder
*
*
*
- * Input only. The owner of this instance after creation. Format: `alias@example.com`
+ * Input only. The owner of this instance after creation. Format:
+ * `alias@example.com`
* Currently supports one owner only. If not specified, all of the service
* account users of your VM instance's service account can use
* the instance.
@@ -193,7 +196,8 @@ public interface InstanceOrBuilder
*
*
*
- * Input only. The owner of this instance after creation. Format: `alias@example.com`
+ * Input only. The owner of this instance after creation. Format:
+ * `alias@example.com`
* Currently supports one owner only. If not specified, all of the service
* account users of your VM instance's service account can use
* the instance.
@@ -208,7 +212,8 @@ public interface InstanceOrBuilder
*
*
*
- * Input only. The owner of this instance after creation. Format: `alias@example.com`
+ * Input only. The owner of this instance after creation. Format:
+ * `alias@example.com`
* Currently supports one owner only. If not specified, all of the service
* account users of your VM instance's service account can use
* the instance.
@@ -224,7 +229,8 @@ public interface InstanceOrBuilder
*
*
*
- * Input only. The owner of this instance after creation. Format: `alias@example.com`
+ * Input only. The owner of this instance after creation. Format:
+ * `alias@example.com`
* Currently supports one owner only. If not specified, all of the service
* account users of your VM instance's service account can use
* the instance.
@@ -278,7 +284,8 @@ public interface InstanceOrBuilder
*
*
*
- * Required. The [Compute Engine machine type](https://cloud.google.com/compute/docs/machine-types) of this
+ * Required. The [Compute Engine machine
+ * type](https://cloud.google.com/compute/docs/machine-types) of this
* instance.
*
*
@@ -291,7 +298,8 @@ public interface InstanceOrBuilder
*
*
*
- * Required. The [Compute Engine machine type](https://cloud.google.com/compute/docs/machine-types) of this
+ * Required. The [Compute Engine machine
+ * type](https://cloud.google.com/compute/docs/machine-types) of this
* instance.
*
*
@@ -422,8 +430,8 @@ public interface InstanceOrBuilder
*
*
*
- * Input only. The type of the boot disk attached to this instance, defaults to
- * standard persistent disk (`PD_STANDARD`).
+ * Input only. The type of the boot disk attached to this instance, defaults
+ * to standard persistent disk (`PD_STANDARD`).
*
*
*
@@ -437,8 +445,8 @@ public interface InstanceOrBuilder
*
*
*
- * Input only. The type of the boot disk attached to this instance, defaults to
- * standard persistent disk (`PD_STANDARD`).
+ * Input only. The type of the boot disk attached to this instance, defaults
+ * to standard persistent disk (`PD_STANDARD`).
*
*
*
@@ -453,9 +461,9 @@ public interface InstanceOrBuilder
*
*
*
- * Input only. The size of the boot disk in GB attached to this instance, up to a maximum
- * of 64000 GB (64 TB). The minimum recommended value is
- * 100 GB. If not specified, this defaults to 100.
+ * Input only. The size of the boot disk in GB attached to this instance, up
+ * to a maximum of 64000 GB (64 TB). The minimum recommended value
+ * is 100 GB. If not specified, this defaults to 100.
*
*
* int64 boot_disk_size_gb = 14 [(.google.api.field_behavior) = INPUT_ONLY];
@@ -468,8 +476,8 @@ public interface InstanceOrBuilder
*
*
*
- * Input only. The type of the data disk attached to this instance, defaults to
- * standard persistent disk (`PD_STANDARD`).
+ * Input only. The type of the data disk attached to this instance, defaults
+ * to standard persistent disk (`PD_STANDARD`).
*
*
*
@@ -483,8 +491,8 @@ public interface InstanceOrBuilder
*
*
*
- * Input only. The type of the data disk attached to this instance, defaults to
- * standard persistent disk (`PD_STANDARD`).
+ * Input only. The type of the data disk attached to this instance, defaults
+ * to standard persistent disk (`PD_STANDARD`).
*
*
*
@@ -499,10 +507,10 @@ public interface InstanceOrBuilder
*
*
*
- * Input only. The size of the data disk in GB attached to this instance, up to a maximum
- * of 64000 GB (64 TB). You can choose the size of the data disk
- * based on how big your notebooks and data are. If not specified, this
- * defaults to 100.
+ * Input only. The size of the data disk in GB attached to this instance, up
+ * to a maximum of 64000 GB (64 TB). You can choose the size of the
+ * data disk based on how big your notebooks and data are. If not specified,
+ * this defaults to 100.
*
*
* int64 data_disk_size_gb = 26 [(.google.api.field_behavior) = INPUT_ONLY];
@@ -515,7 +523,8 @@ public interface InstanceOrBuilder
*
*
*
- * Input only. If true, the data disk will not be auto deleted when deleting the instance.
+ * Input only. If true, the data disk will not be auto deleted when deleting
+ * the instance.
*
*
* bool no_remove_data_disk = 27 [(.google.api.field_behavior) = INPUT_ONLY];
@@ -528,7 +537,8 @@ public interface InstanceOrBuilder
*
*
*
- * Input only. Disk encryption method used on the boot and data disks, defaults to GMEK.
+ * Input only. Disk encryption method used on the boot and data disks,
+ * defaults to GMEK.
*
*
*
@@ -542,7 +552,8 @@ public interface InstanceOrBuilder
*
*
*
- * Input only. Disk encryption method used on the boot and data disks, defaults to GMEK.
+ * Input only. Disk encryption method used on the boot and data disks,
+ * defaults to GMEK.
*
*
*
@@ -557,11 +568,11 @@ public interface InstanceOrBuilder
*
*
*
- * Input only. The KMS key used to encrypt the disks, only applicable if disk_encryption
- * is CMEK.
- * Format:
+ * Input only. The KMS key used to encrypt the disks, only applicable if
+ * disk_encryption is CMEK. Format:
* `projects/{project_id}/locations/{location}/keyRings/{key_ring_id}/cryptoKeys/{key_id}`
- * Learn more about [using your own encryption keys]( https://cloud.google.com/kms/docs/quickstart).
+ * Learn more about [using your own encryption keys](
+ * https://cloud.google.com/kms/docs/quickstart).
*
*
* string kms_key = 16 [(.google.api.field_behavior) = INPUT_ONLY];
@@ -573,11 +584,11 @@ public interface InstanceOrBuilder
*
*
*
- * Input only. The KMS key used to encrypt the disks, only applicable if disk_encryption
- * is CMEK.
- * Format:
+ * Input only. The KMS key used to encrypt the disks, only applicable if
+ * disk_encryption is CMEK. Format:
* `projects/{project_id}/locations/{location}/keyRings/{key_ring_id}/cryptoKeys/{key_id}`
- * Learn more about [using your own encryption keys]( https://cloud.google.com/kms/docs/quickstart).
+ * Learn more about [using your own encryption keys](
+ * https://cloud.google.com/kms/docs/quickstart).
*
*
* string kms_key = 16 [(.google.api.field_behavior) = INPUT_ONLY];
diff --git a/proto-google-cloud-notebooks-v1beta1/src/main/java/com/google/cloud/notebooks/v1beta1/OperationMetadata.java b/proto-google-cloud-notebooks-v1beta1/src/main/java/com/google/cloud/notebooks/v1beta1/OperationMetadata.java
index 8a1435fd..8ec25147 100644
--- a/proto-google-cloud-notebooks-v1beta1/src/main/java/com/google/cloud/notebooks/v1beta1/OperationMetadata.java
+++ b/proto-google-cloud-notebooks-v1beta1/src/main/java/com/google/cloud/notebooks/v1beta1/OperationMetadata.java
@@ -426,7 +426,8 @@ public com.google.protobuf.ByteString getStatusMessageBytes() {
* Identifies whether the user has requested cancellation
* of the operation. Operations that have successfully been cancelled
* have [Operation.error][] value with a
- * [google.rpc.Status.code][google.rpc.Status.code] of 1, corresponding to `Code.CANCELLED`.
+ * [google.rpc.Status.code][google.rpc.Status.code] of 1, corresponding to
+ * `Code.CANCELLED`.
*
*
* bool requested_cancellation = 6;
@@ -1677,7 +1678,8 @@ public Builder setStatusMessageBytes(com.google.protobuf.ByteString value) {
* Identifies whether the user has requested cancellation
* of the operation. Operations that have successfully been cancelled
* have [Operation.error][] value with a
- * [google.rpc.Status.code][google.rpc.Status.code] of 1, corresponding to `Code.CANCELLED`.
+ * [google.rpc.Status.code][google.rpc.Status.code] of 1, corresponding to
+ * `Code.CANCELLED`.
*
*
* bool requested_cancellation = 6;
@@ -1695,7 +1697,8 @@ public boolean getRequestedCancellation() {
* Identifies whether the user has requested cancellation
* of the operation. Operations that have successfully been cancelled
* have [Operation.error][] value with a
- * [google.rpc.Status.code][google.rpc.Status.code] of 1, corresponding to `Code.CANCELLED`.
+ * [google.rpc.Status.code][google.rpc.Status.code] of 1, corresponding to
+ * `Code.CANCELLED`.
*
*
* bool requested_cancellation = 6;
@@ -1716,7 +1719,8 @@ public Builder setRequestedCancellation(boolean value) {
* Identifies whether the user has requested cancellation
* of the operation. Operations that have successfully been cancelled
* have [Operation.error][] value with a
- * [google.rpc.Status.code][google.rpc.Status.code] of 1, corresponding to `Code.CANCELLED`.
+ * [google.rpc.Status.code][google.rpc.Status.code] of 1, corresponding to
+ * `Code.CANCELLED`.
*
*
* bool requested_cancellation = 6;
diff --git a/proto-google-cloud-notebooks-v1beta1/src/main/java/com/google/cloud/notebooks/v1beta1/OperationMetadataOrBuilder.java b/proto-google-cloud-notebooks-v1beta1/src/main/java/com/google/cloud/notebooks/v1beta1/OperationMetadataOrBuilder.java
index a7607817..e7447fa7 100644
--- a/proto-google-cloud-notebooks-v1beta1/src/main/java/com/google/cloud/notebooks/v1beta1/OperationMetadataOrBuilder.java
+++ b/proto-google-cloud-notebooks-v1beta1/src/main/java/com/google/cloud/notebooks/v1beta1/OperationMetadataOrBuilder.java
@@ -175,7 +175,8 @@ public interface OperationMetadataOrBuilder
* Identifies whether the user has requested cancellation
* of the operation. Operations that have successfully been cancelled
* have [Operation.error][] value with a
- * [google.rpc.Status.code][google.rpc.Status.code] of 1, corresponding to `Code.CANCELLED`.
+ * [google.rpc.Status.code][google.rpc.Status.code] of 1, corresponding to
+ * `Code.CANCELLED`.
*
*
* bool requested_cancellation = 6;
diff --git a/proto-google-cloud-notebooks-v1beta1/src/main/java/com/google/cloud/notebooks/v1beta1/SetInstanceAcceleratorRequest.java b/proto-google-cloud-notebooks-v1beta1/src/main/java/com/google/cloud/notebooks/v1beta1/SetInstanceAcceleratorRequest.java
index a1041ef6..12adbabc 100644
--- a/proto-google-cloud-notebooks-v1beta1/src/main/java/com/google/cloud/notebooks/v1beta1/SetInstanceAcceleratorRequest.java
+++ b/proto-google-cloud-notebooks-v1beta1/src/main/java/com/google/cloud/notebooks/v1beta1/SetInstanceAcceleratorRequest.java
@@ -223,10 +223,10 @@ public com.google.cloud.notebooks.v1beta1.Instance.AcceleratorType getType() {
*
*
*
- * Required. Count of cores of this accelerator. Note that not all combinations
- * of `type` and `core_count` are valid. Check [GPUs on
- * Compute Engine](https://cloud.google.com/compute/docs/gpus/#gpus-list) to
- * find a valid combination. TPUs are not supported.
+ * Required. Count of cores of this accelerator. Note that not all
+ * combinations of `type` and `core_count` are valid. Check [GPUs on Compute
+ * Engine](https://cloud.google.com/compute/docs/gpus/#gpus-list) to find a
+ * valid combination. TPUs are not supported.
*
*
* int64 core_count = 3 [(.google.api.field_behavior) = REQUIRED];
@@ -814,10 +814,10 @@ public Builder clearType() {
*
*
*
- * Required. Count of cores of this accelerator. Note that not all combinations
- * of `type` and `core_count` are valid. Check [GPUs on
- * Compute Engine](https://cloud.google.com/compute/docs/gpus/#gpus-list) to
- * find a valid combination. TPUs are not supported.
+ * Required. Count of cores of this accelerator. Note that not all
+ * combinations of `type` and `core_count` are valid. Check [GPUs on Compute
+ * Engine](https://cloud.google.com/compute/docs/gpus/#gpus-list) to find a
+ * valid combination. TPUs are not supported.
*
*
* int64 core_count = 3 [(.google.api.field_behavior) = REQUIRED];
@@ -832,10 +832,10 @@ public long getCoreCount() {
*
*
*
- * Required. Count of cores of this accelerator. Note that not all combinations
- * of `type` and `core_count` are valid. Check [GPUs on
- * Compute Engine](https://cloud.google.com/compute/docs/gpus/#gpus-list) to
- * find a valid combination. TPUs are not supported.
+ * Required. Count of cores of this accelerator. Note that not all
+ * combinations of `type` and `core_count` are valid. Check [GPUs on Compute
+ * Engine](https://cloud.google.com/compute/docs/gpus/#gpus-list) to find a
+ * valid combination. TPUs are not supported.
*
*
* int64 core_count = 3 [(.google.api.field_behavior) = REQUIRED];
@@ -853,10 +853,10 @@ public Builder setCoreCount(long value) {
*
*
*
- * Required. Count of cores of this accelerator. Note that not all combinations
- * of `type` and `core_count` are valid. Check [GPUs on
- * Compute Engine](https://cloud.google.com/compute/docs/gpus/#gpus-list) to
- * find a valid combination. TPUs are not supported.
+ * Required. Count of cores of this accelerator. Note that not all
+ * combinations of `type` and `core_count` are valid. Check [GPUs on Compute
+ * Engine](https://cloud.google.com/compute/docs/gpus/#gpus-list) to find a
+ * valid combination. TPUs are not supported.
*
*
* int64 core_count = 3 [(.google.api.field_behavior) = REQUIRED];
diff --git a/proto-google-cloud-notebooks-v1beta1/src/main/java/com/google/cloud/notebooks/v1beta1/SetInstanceAcceleratorRequestOrBuilder.java b/proto-google-cloud-notebooks-v1beta1/src/main/java/com/google/cloud/notebooks/v1beta1/SetInstanceAcceleratorRequestOrBuilder.java
index 5083c6e7..faf2ee82 100644
--- a/proto-google-cloud-notebooks-v1beta1/src/main/java/com/google/cloud/notebooks/v1beta1/SetInstanceAcceleratorRequestOrBuilder.java
+++ b/proto-google-cloud-notebooks-v1beta1/src/main/java/com/google/cloud/notebooks/v1beta1/SetInstanceAcceleratorRequestOrBuilder.java
@@ -83,10 +83,10 @@ public interface SetInstanceAcceleratorRequestOrBuilder
*
*
*
- * Required. Count of cores of this accelerator. Note that not all combinations
- * of `type` and `core_count` are valid. Check [GPUs on
- * Compute Engine](https://cloud.google.com/compute/docs/gpus/#gpus-list) to
- * find a valid combination. TPUs are not supported.
+ * Required. Count of cores of this accelerator. Note that not all
+ * combinations of `type` and `core_count` are valid. Check [GPUs on Compute
+ * Engine](https://cloud.google.com/compute/docs/gpus/#gpus-list) to find a
+ * valid combination. TPUs are not supported.
*
*
* int64 core_count = 3 [(.google.api.field_behavior) = REQUIRED];
diff --git a/proto-google-cloud-notebooks-v1beta1/src/main/proto/google/cloud/notebooks/v1beta1/environment.proto b/proto-google-cloud-notebooks-v1beta1/src/main/proto/google/cloud/notebooks/v1beta1/environment.proto
index 1f5ee996..ceee46cd 100644
--- a/proto-google-cloud-notebooks-v1beta1/src/main/proto/google/cloud/notebooks/v1beta1/environment.proto
+++ b/proto-google-cloud-notebooks-v1beta1/src/main/proto/google/cloud/notebooks/v1beta1/environment.proto
@@ -23,7 +23,7 @@ import "google/api/annotations.proto";
option go_package = "google.golang.org/genproto/googleapis/cloud/notebooks/v1beta1;notebooks";
option csharp_namespace = "Google.Cloud.Notebooks.V1Beta1";
-option php_namespace = "Google\\Cloud\\Notebooks\\V1Beta1";
+option php_namespace = "Google\\Cloud\\Notebooks\\V1beta1";
option ruby_package = "Google::Cloud::Notebooks::V1beta1";
option java_multiple_files = true;
option java_outer_classname = "EnvironmentProto";
diff --git a/proto-google-cloud-notebooks-v1beta1/src/main/proto/google/cloud/notebooks/v1beta1/instance.proto b/proto-google-cloud-notebooks-v1beta1/src/main/proto/google/cloud/notebooks/v1beta1/instance.proto
index e1cf91f9..c35d8e51 100644
--- a/proto-google-cloud-notebooks-v1beta1/src/main/proto/google/cloud/notebooks/v1beta1/instance.proto
+++ b/proto-google-cloud-notebooks-v1beta1/src/main/proto/google/cloud/notebooks/v1beta1/instance.proto
@@ -165,15 +165,18 @@ message Instance {
// Cloud Storage path (`gs://path-to-file/file-name`).
string post_startup_script = 4;
- // Output only. The proxy endpoint that is used to access the Jupyter notebook.
+ // Output only. The proxy endpoint that is used to access the Jupyter
+ // notebook.
string proxy_uri = 5 [(google.api.field_behavior) = OUTPUT_ONLY];
- // Input only. The owner of this instance after creation. Format: `alias@example.com`
+ // Input only. The owner of this instance after creation. Format:
+ // `alias@example.com`
//
// Currently supports one owner only. If not specified, all of the service
// account users of your VM instance's service account can use
// the instance.
- repeated string instance_owners = 6 [(google.api.field_behavior) = INPUT_ONLY];
+ repeated string instance_owners = 6
+ [(google.api.field_behavior) = INPUT_ONLY];
// The service account on this instance, giving access to other Google
// Cloud services.
@@ -185,7 +188,8 @@ message Instance {
// is used.
string service_account = 7;
- // Required. The [Compute Engine machine type](https://cloud.google.com/compute/docs/machine-types) of this
+ // Required. The [Compute Engine machine
+ // type](https://cloud.google.com/compute/docs/machine-types) of this
// instance.
string machine_type = 8 [(google.api.field_behavior) = REQUIRED];
@@ -208,37 +212,40 @@ message Instance {
// If not specified, we'll automatically choose from official GPU drivers.
string custom_gpu_driver_path = 12;
- // Input only. The type of the boot disk attached to this instance, defaults to
- // standard persistent disk (`PD_STANDARD`).
+ // Input only. The type of the boot disk attached to this instance, defaults
+ // to standard persistent disk (`PD_STANDARD`).
DiskType boot_disk_type = 13 [(google.api.field_behavior) = INPUT_ONLY];
- // Input only. The size of the boot disk in GB attached to this instance, up to a maximum
- // of 64000 GB (64 TB). The minimum recommended value is
- // 100 GB. If not specified, this defaults to 100.
+ // Input only. The size of the boot disk in GB attached to this instance, up
+ // to a maximum of 64000 GB (64 TB). The minimum recommended value
+ // is 100 GB. If not specified, this defaults to 100.
int64 boot_disk_size_gb = 14 [(google.api.field_behavior) = INPUT_ONLY];
- // Input only. The type of the data disk attached to this instance, defaults to
- // standard persistent disk (`PD_STANDARD`).
+ // Input only. The type of the data disk attached to this instance, defaults
+ // to standard persistent disk (`PD_STANDARD`).
DiskType data_disk_type = 25 [(google.api.field_behavior) = INPUT_ONLY];
- // Input only. The size of the data disk in GB attached to this instance, up to a maximum
- // of 64000 GB (64 TB). You can choose the size of the data disk
- // based on how big your notebooks and data are. If not specified, this
- // defaults to 100.
+ // Input only. The size of the data disk in GB attached to this instance, up
+ // to a maximum of 64000 GB (64 TB). You can choose the size of the
+ // data disk based on how big your notebooks and data are. If not specified,
+ // this defaults to 100.
int64 data_disk_size_gb = 26 [(google.api.field_behavior) = INPUT_ONLY];
- // Input only. If true, the data disk will not be auto deleted when deleting the instance.
+ // Input only. If true, the data disk will not be auto deleted when deleting
+ // the instance.
bool no_remove_data_disk = 27 [(google.api.field_behavior) = INPUT_ONLY];
- // Input only. Disk encryption method used on the boot and data disks, defaults to GMEK.
- DiskEncryption disk_encryption = 15 [(google.api.field_behavior) = INPUT_ONLY];
+ // Input only. Disk encryption method used on the boot and data disks,
+ // defaults to GMEK.
+ DiskEncryption disk_encryption = 15
+ [(google.api.field_behavior) = INPUT_ONLY];
- // Input only. The KMS key used to encrypt the disks, only applicable if disk_encryption
- // is CMEK.
- // Format:
+ // Input only. The KMS key used to encrypt the disks, only applicable if
+ // disk_encryption is CMEK. Format:
// `projects/{project_id}/locations/{location}/keyRings/{key_ring_id}/cryptoKeys/{key_id}`
//
- // Learn more about [using your own encryption keys]( https://cloud.google.com/kms/docs/quickstart).
+ // Learn more about [using your own encryption keys](
+ // https://cloud.google.com/kms/docs/quickstart).
string kms_key = 16 [(google.api.field_behavior) = INPUT_ONLY];
// If true, no public IP will be assigned to this instance.
@@ -265,8 +272,10 @@ message Instance {
map metadata = 22;
// Output only. Instance creation time.
- google.protobuf.Timestamp create_time = 23 [(google.api.field_behavior) = OUTPUT_ONLY];
+ google.protobuf.Timestamp create_time = 23
+ [(google.api.field_behavior) = OUTPUT_ONLY];
// Output only. Instance update time.
- google.protobuf.Timestamp update_time = 24 [(google.api.field_behavior) = OUTPUT_ONLY];
+ google.protobuf.Timestamp update_time = 24
+ [(google.api.field_behavior) = OUTPUT_ONLY];
}
diff --git a/proto-google-cloud-notebooks-v1beta1/src/main/proto/google/cloud/notebooks/v1beta1/service.proto b/proto-google-cloud-notebooks-v1beta1/src/main/proto/google/cloud/notebooks/v1beta1/service.proto
index 8c1b58c8..06064336 100644
--- a/proto-google-cloud-notebooks-v1beta1/src/main/proto/google/cloud/notebooks/v1beta1/service.proto
+++ b/proto-google-cloud-notebooks-v1beta1/src/main/proto/google/cloud/notebooks/v1beta1/service.proto
@@ -35,7 +35,8 @@ option java_package = "com.google.cloud.notebooks.v1beta1";
// API v1beta1 service for Cloud AI Platform Notebooks.
service NotebookService {
option (google.api.default_host) = "notebooks.googleapis.com";
- option (google.api.oauth_scopes) = "https://www.googleapis.com/auth/cloud-platform";
+ option (google.api.oauth_scopes) =
+ "https://www.googleapis.com/auth/cloud-platform";
// Lists instances in a given project and location.
rpc ListInstances(ListInstancesRequest) returns (ListInstancesResponse) {
@@ -52,7 +53,8 @@ service NotebookService {
}
// Creates a new Instance in a given project and location.
- rpc CreateInstance(CreateInstanceRequest) returns (google.longrunning.Operation) {
+ rpc CreateInstance(CreateInstanceRequest)
+ returns (google.longrunning.Operation) {
option (google.api.http) = {
post: "/v1beta1/{parent=projects/*/locations/*}/instances"
body: "instance"
@@ -67,7 +69,8 @@ service NotebookService {
// Legacy instances are instances created with the legacy Compute Engine
// calls. They are not manageable by the Notebooks API out of the box. This
// call makes these instances manageable by the Notebooks API.
- rpc RegisterInstance(RegisterInstanceRequest) returns (google.longrunning.Operation) {
+ rpc RegisterInstance(RegisterInstanceRequest)
+ returns (google.longrunning.Operation) {
option (google.api.http) = {
post: "/v1beta1/{parent=projects/*/locations/*}/instances:register"
body: "*"
@@ -79,7 +82,8 @@ service NotebookService {
}
// Updates the guest accelerators of a single Instance.
- rpc SetInstanceAccelerator(SetInstanceAcceleratorRequest) returns (google.longrunning.Operation) {
+ rpc SetInstanceAccelerator(SetInstanceAcceleratorRequest)
+ returns (google.longrunning.Operation) {
option (google.api.http) = {
patch: "/v1beta1/{name=projects/*/locations/*/instances/*}:setAccelerator"
body: "*"
@@ -91,7 +95,8 @@ service NotebookService {
}
// Updates the machine type of a single Instance.
- rpc SetInstanceMachineType(SetInstanceMachineTypeRequest) returns (google.longrunning.Operation) {
+ rpc SetInstanceMachineType(SetInstanceMachineTypeRequest)
+ returns (google.longrunning.Operation) {
option (google.api.http) = {
patch: "/v1beta1/{name=projects/*/locations/*/instances/*}:setMachineType"
body: "*"
@@ -103,7 +108,8 @@ service NotebookService {
}
// Updates the labels of an Instance.
- rpc SetInstanceLabels(SetInstanceLabelsRequest) returns (google.longrunning.Operation) {
+ rpc SetInstanceLabels(SetInstanceLabelsRequest)
+ returns (google.longrunning.Operation) {
option (google.api.http) = {
patch: "/v1beta1/{name=projects/*/locations/*/instances/*}:setLabels"
body: "*"
@@ -115,7 +121,8 @@ service NotebookService {
}
// Deletes a single Instance.
- rpc DeleteInstance(DeleteInstanceRequest) returns (google.longrunning.Operation) {
+ rpc DeleteInstance(DeleteInstanceRequest)
+ returns (google.longrunning.Operation) {
option (google.api.http) = {
delete: "/v1beta1/{name=projects/*/locations/*/instances/*}"
};
@@ -126,7 +133,8 @@ service NotebookService {
}
// Starts a notebook instance.
- rpc StartInstance(StartInstanceRequest) returns (google.longrunning.Operation) {
+ rpc StartInstance(StartInstanceRequest)
+ returns (google.longrunning.Operation) {
option (google.api.http) = {
post: "/v1beta1/{name=projects/*/locations/*/instances/*}:start"
body: "*"
@@ -150,7 +158,8 @@ service NotebookService {
}
// Resets a notebook instance.
- rpc ResetInstance(ResetInstanceRequest) returns (google.longrunning.Operation) {
+ rpc ResetInstance(ResetInstanceRequest)
+ returns (google.longrunning.Operation) {
option (google.api.http) = {
post: "/v1beta1/{name=projects/*/locations/*/instances/*}:reset"
body: "*"
@@ -165,7 +174,8 @@ service NotebookService {
// report their latest instance information to the Notebooks
// API server. The server will merge the reported information to
// the instance metadata store. Do not use this method directly.
- rpc ReportInstanceInfo(ReportInstanceInfoRequest) returns (google.longrunning.Operation) {
+ rpc ReportInstanceInfo(ReportInstanceInfoRequest)
+ returns (google.longrunning.Operation) {
option (google.api.http) = {
post: "/v1beta1/{name=projects/*/locations/*/instances/*}:report"
body: "*"
@@ -177,14 +187,16 @@ service NotebookService {
}
// Check if a notebook instance is upgradable.
- rpc IsInstanceUpgradeable(IsInstanceUpgradeableRequest) returns (IsInstanceUpgradeableResponse) {
+ rpc IsInstanceUpgradeable(IsInstanceUpgradeableRequest)
+ returns (IsInstanceUpgradeableResponse) {
option (google.api.http) = {
get: "/v1beta1/{notebook_instance=projects/*/locations/*/instances/*}:isUpgradeable"
};
}
// Upgrades a notebook instance to the latest version.
- rpc UpgradeInstance(UpgradeInstanceRequest) returns (google.longrunning.Operation) {
+ rpc UpgradeInstance(UpgradeInstanceRequest)
+ returns (google.longrunning.Operation) {
option (google.api.http) = {
post: "/v1beta1/{name=projects/*/locations/*/instances/*}:upgrade"
body: "*"
@@ -197,7 +209,8 @@ service NotebookService {
// Allows notebook instances to
// call this endpoint to upgrade themselves. Do not use this method directly.
- rpc UpgradeInstanceInternal(UpgradeInstanceInternalRequest) returns (google.longrunning.Operation) {
+ rpc UpgradeInstanceInternal(UpgradeInstanceInternalRequest)
+ returns (google.longrunning.Operation) {
option (google.api.http) = {
post: "/v1beta1/{name=projects/*/locations/*/instances/*}:upgradeInternal"
body: "*"
@@ -209,7 +222,8 @@ service NotebookService {
}
// Lists environments in a project.
- rpc ListEnvironments(ListEnvironmentsRequest) returns (ListEnvironmentsResponse) {
+ rpc ListEnvironments(ListEnvironmentsRequest)
+ returns (ListEnvironmentsResponse) {
option (google.api.http) = {
get: "/v1beta1/{parent=projects/*/locations/*}/environments"
};
@@ -223,7 +237,8 @@ service NotebookService {
}
// Creates a new Environment.
- rpc CreateEnvironment(CreateEnvironmentRequest) returns (google.longrunning.Operation) {
+ rpc CreateEnvironment(CreateEnvironmentRequest)
+ returns (google.longrunning.Operation) {
option (google.api.http) = {
post: "/v1beta1/{parent=projects/*/locations/*}/environments"
body: "environment"
@@ -235,7 +250,8 @@ service NotebookService {
}
// Deletes a single Environment.
- rpc DeleteEnvironment(DeleteEnvironmentRequest) returns (google.longrunning.Operation) {
+ rpc DeleteEnvironment(DeleteEnvironmentRequest)
+ returns (google.longrunning.Operation) {
option (google.api.http) = {
delete: "/v1beta1/{name=projects/*/locations/*/environments/*}"
};
@@ -266,7 +282,8 @@ message OperationMetadata {
// Identifies whether the user has requested cancellation
// of the operation. Operations that have successfully been cancelled
// have [Operation.error][] value with a
- // [google.rpc.Status.code][google.rpc.Status.code] of 1, corresponding to `Code.CANCELLED`.
+ // [google.rpc.Status.code][google.rpc.Status.code] of 1, corresponding to
+ // `Code.CANCELLED`.
bool requested_cancellation = 6;
// API version used to start the operation.
@@ -347,10 +364,10 @@ message SetInstanceAcceleratorRequest {
// Required. Type of this accelerator.
Instance.AcceleratorType type = 2 [(google.api.field_behavior) = REQUIRED];
- // Required. Count of cores of this accelerator. Note that not all combinations
- // of `type` and `core_count` are valid. Check [GPUs on
- // Compute Engine](https://cloud.google.com/compute/docs/gpus/#gpus-list) to
- // find a valid combination. TPUs are not supported.
+ // Required. Count of cores of this accelerator. Note that not all
+ // combinations of `type` and `core_count` are valid. Check [GPUs on Compute
+ // Engine](https://cloud.google.com/compute/docs/gpus/#gpus-list) to find a
+ // valid combination. TPUs are not supported.
int64 core_count = 3 [(google.api.field_behavior) = REQUIRED];
}
@@ -495,10 +512,10 @@ message CreateEnvironmentRequest {
// Required. Format: `projects/{project_id}/locations/{location}`
string parent = 1 [(google.api.field_behavior) = REQUIRED];
- // Required. User-defined unique ID of this environment. The `environment_id` must
- // be 1 to 63 characters long and contain only lowercase letters,
- // numeric characters, and dashes. The first character must be a lowercase
- // letter and the last character cannot be a dash.
+ // Required. User-defined unique ID of this environment. The `environment_id`
+ // must be 1 to 63 characters long and contain only lowercase letters, numeric
+ // characters, and dashes. The first character must be a lowercase letter and
+ // the last character cannot be a dash.
string environment_id = 2 [(google.api.field_behavior) = REQUIRED];
// Required. The environment to be created.
diff --git a/synth.metadata b/synth.metadata
index 8a691085..f028e519 100644
--- a/synth.metadata
+++ b/synth.metadata
@@ -4,15 +4,15 @@
"git": {
"name": ".",
"remote": "https://github.com/googleapis/java-notebooks.git",
- "sha": "5b5155ccd0ec9653910018da83182c63b536a4c9"
+ "sha": "b519a1ffca7b1917820f6169aa10869d0bbf0157"
}
},
{
"git": {
"name": "googleapis",
"remote": "https://github.com/googleapis/googleapis.git",
- "sha": "1305ca41d554eb0725237561e34129373bb8cbc1",
- "internalRef": "362856902"
+ "sha": "cbf8e95fbd0cba135d997762044f6ed5725045c0",
+ "internalRef": "365159240"
}
},
{
From 217c531ee0c6d46f53abdd89d8a605838b8b31de Mon Sep 17 00:00:00 2001
From: Yoshi Automation Bot
Date: Mon, 29 Mar 2021 16:16:04 -0700
Subject: [PATCH 14/47] chore: remove staging bucket v2 (#152)
This PR was generated using Autosynth. :rainbow:
Synth log will be available here:
https://source.cloud.google.com/results/invocations/7b181ea6-cd1c-49bd-bb79-2996c12fa815/targets
- [ ] To automatically regenerate this PR, check this box. (May take up to 24 hours.)
Source-Link: https://github.com/googleapis/synthtool/commit/572ef8f70edd9041f5bcfa71511aed6aecfc2098
---
.kokoro/release/publish_javadoc.sh | 5 -----
synth.metadata | 4 ++--
2 files changed, 2 insertions(+), 7 deletions(-)
diff --git a/.kokoro/release/publish_javadoc.sh b/.kokoro/release/publish_javadoc.sh
index caa0f43b..2beb8dba 100755
--- a/.kokoro/release/publish_javadoc.sh
+++ b/.kokoro/release/publish_javadoc.sh
@@ -24,11 +24,6 @@ if [[ -z "${STAGING_BUCKET}" ]]; then
exit 1
fi
-if [[ -z "${STAGING_BUCKET_V2}" ]]; then
- echo "Need to set STAGING_BUCKET_V2 environment variable"
- exit 1
-fi
-
# work from the git root directory
pushd $(dirname "$0")/../../
diff --git a/synth.metadata b/synth.metadata
index f028e519..6d6f120d 100644
--- a/synth.metadata
+++ b/synth.metadata
@@ -4,7 +4,7 @@
"git": {
"name": ".",
"remote": "https://github.com/googleapis/java-notebooks.git",
- "sha": "b519a1ffca7b1917820f6169aa10869d0bbf0157"
+ "sha": "7ba61476bdcb06bc9caf17ca32853791f0d8c1a4"
}
},
{
@@ -19,7 +19,7 @@
"git": {
"name": "synthtool",
"remote": "https://github.com/googleapis/synthtool.git",
- "sha": "bb854b6c048619e3be4e8b8ce8ed10aa74ea78ef"
+ "sha": "572ef8f70edd9041f5bcfa71511aed6aecfc2098"
}
}
],
From 54345faf0cbd6a419f4fd60ccaef70676db32e10 Mon Sep 17 00:00:00 2001
From: WhiteSource Renovate
Date: Fri, 9 Apr 2021 19:52:43 +0200
Subject: [PATCH 15/47] chore(deps): update dependency
com.google.cloud.samples:shared-configuration to v1.0.22 (#154)
[](https://renovatebot.com)
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| com.google.cloud.samples:shared-configuration | `1.0.21` -> `1.0.22` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) |
---
### Configuration
:date: **Schedule**: At any time (no schedule defined).
:vertical_traffic_light: **Automerge**: Disabled by config. Please merge this manually once you are satisfied.
:recycle: **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
:no_bell: **Ignore**: Close this PR and you won't be reminded about this update again.
---
- [ ] If you want to rebase/retry this PR, check this box.
---
This PR has been generated by [WhiteSource Renovate](https://renovate.whitesourcesoftware.com). View repository job log [here](https://app.renovatebot.com/dashboard#github/googleapis/java-notebooks).
---
samples/install-without-bom/pom.xml | 2 +-
samples/pom.xml | 2 +-
samples/snapshot/pom.xml | 2 +-
samples/snippets/pom.xml | 2 +-
4 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/samples/install-without-bom/pom.xml b/samples/install-without-bom/pom.xml
index ce0106c1..758c7cbe 100644
--- a/samples/install-without-bom/pom.xml
+++ b/samples/install-without-bom/pom.xml
@@ -14,7 +14,7 @@
com.google.cloud.samples
shared-configuration
- 1.0.21
+ 1.0.22
diff --git a/samples/pom.xml b/samples/pom.xml
index cec92551..503e6ed2 100644
--- a/samples/pom.xml
+++ b/samples/pom.xml
@@ -18,7 +18,7 @@
com.google.cloud.samples
shared-configuration
- 1.0.21
+ 1.0.22
diff --git a/samples/snapshot/pom.xml b/samples/snapshot/pom.xml
index e975adae..54448403 100644
--- a/samples/snapshot/pom.xml
+++ b/samples/snapshot/pom.xml
@@ -14,7 +14,7 @@
com.google.cloud.samples
shared-configuration
- 1.0.21
+ 1.0.22
diff --git a/samples/snippets/pom.xml b/samples/snippets/pom.xml
index 0faf1b95..281da12e 100644
--- a/samples/snippets/pom.xml
+++ b/samples/snippets/pom.xml
@@ -14,7 +14,7 @@
com.google.cloud.samples
shared-configuration
- 1.0.21
+ 1.0.22
From 733a3d7931c16ee4d9ec4b2d3387718cb2c04254 Mon Sep 17 00:00:00 2001
From: WhiteSource Renovate
Date: Fri, 9 Apr 2021 22:38:27 +0200
Subject: [PATCH 16/47] deps: update dependency
com.google.cloud:google-cloud-shared-dependencies to v0.21.0 (#156)
[](https://renovatebot.com)
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [com.google.cloud:google-cloud-shared-dependencies](https://togithub.com/googleapis/java-shared-dependencies) | `0.20.1` -> `0.21.0` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) |
---
### Release Notes
googleapis/java-shared-dependencies
### [`v0.21.0`](https://togithub.com/googleapis/java-shared-dependencies/blob/master/CHANGELOG.md#0210-httpswwwgithubcomgoogleapisjava-shared-dependenciescompare0201v0210-2021-04-09)
[Compare Source](https://togithub.com/googleapis/java-shared-dependencies/compare/v0.20.1...v0.21.0)
##### Dependencies
- update dependency com.google.auth:google-auth-library-bom to v0.25.0 ([#310](https://www.github.com/googleapis/java-shared-dependencies/issues/310)) ([8f3a0f0](https://www.github.com/googleapis/java-shared-dependencies/commit/8f3a0f002b787f7b27cfe031654fa20bf342f839))
- update dependency com.google.auth:google-auth-library-bom to v0.25.2 ([#311](https://www.github.com/googleapis/java-shared-dependencies/issues/311)) ([6c47a3e](https://www.github.com/googleapis/java-shared-dependencies/commit/6c47a3edbd9da04ba255487a66c0f3a41393217d))
- update dependency com.google.errorprone:error_prone_annotations to v2.6.0 ([#315](https://www.github.com/googleapis/java-shared-dependencies/issues/315)) ([dc254ca](https://www.github.com/googleapis/java-shared-dependencies/commit/dc254ca7359b68fe9411f7b96130ffb416b45c6f))
- update dependency com.google.http-client:google-http-client-bom to v1.39.1 ([#309](https://www.github.com/googleapis/java-shared-dependencies/issues/309)) ([37225e2](https://www.github.com/googleapis/java-shared-dependencies/commit/37225e2d1b32a618765391720b57ff29e7b8f7f9))
- update dependency com.google.http-client:google-http-client-bom to v1.39.2 ([#321](https://www.github.com/googleapis/java-shared-dependencies/issues/321)) ([273c66d](https://www.github.com/googleapis/java-shared-dependencies/commit/273c66d374f7cd6040aac2f302fd1c1dc0f4a1c0))
- update dependency com.google.protobuf:protobuf-bom to v3.15.6 ([#308](https://www.github.com/googleapis/java-shared-dependencies/issues/308)) ([b29dd05](https://www.github.com/googleapis/java-shared-dependencies/commit/b29dd0535f02b56607f64ba69e85d4d468902789))
- update dependency com.google.protobuf:protobuf-bom to v3.15.7 ([#316](https://www.github.com/googleapis/java-shared-dependencies/issues/316)) ([9c00d77](https://www.github.com/googleapis/java-shared-dependencies/commit/9c00d7753c1f7b963deb9ad69dcfe24ba28da5a2))
- update dependency com.google.protobuf:protobuf-bom to v3.15.8 ([#319](https://www.github.com/googleapis/java-shared-dependencies/issues/319)) ([15e5ae2](https://www.github.com/googleapis/java-shared-dependencies/commit/15e5ae2ef46eedcd790ffd8644677d36db5c63f9))
- update dependency io.grpc:grpc-bom to v1.37.0 ([#313](https://www.github.com/googleapis/java-shared-dependencies/issues/313)) ([c599351](https://www.github.com/googleapis/java-shared-dependencies/commit/c5993511c7305e1ced42d73552a93a25dc5e1ac1))
- update gax.version to v1.63.0 ([#318](https://www.github.com/googleapis/java-shared-dependencies/issues/318)) ([ba709da](https://www.github.com/googleapis/java-shared-dependencies/commit/ba709da6fb0e9bcfc83e663588336598737b46e4))
- update google.core.version to v1.94.4 ([#305](https://www.github.com/googleapis/java-shared-dependencies/issues/305)) ([0d38f4c](https://www.github.com/googleapis/java-shared-dependencies/commit/0d38f4c9ffadcfd9446712b8bf0729399b0c9e91))
- update google.core.version to v1.94.5 ([#320](https://www.github.com/googleapis/java-shared-dependencies/issues/320)) ([3439721](https://www.github.com/googleapis/java-shared-dependencies/commit/3439721da83a8b92d9c4b6ecfd158cfb1e1a0503))
- update guava to 30.1.1-android ([#322](https://www.github.com/googleapis/java-shared-dependencies/issues/322)) ([a6b5d3b](https://www.github.com/googleapis/java-shared-dependencies/commit/a6b5d3b8ccfc352bf0d1678952ce3cd8b7a8361e))
- update iam.version to v1.0.11 ([#304](https://www.github.com/googleapis/java-shared-dependencies/issues/304)) ([95a5264](https://www.github.com/googleapis/java-shared-dependencies/commit/95a526442b3d24c83782523d38dd3931e828d757))
##### [0.20.1](https://www.github.com/googleapis/java-shared-dependencies/compare/0.20.0...v0.20.1) (2021-03-09)
##### Dependencies
- update dependency com.fasterxml.jackson:jackson-bom to v2.12.2 ([#301](https://www.github.com/googleapis/java-shared-dependencies/issues/301)) ([7c01eba](https://www.github.com/googleapis/java-shared-dependencies/commit/7c01ebabb6fd65b7404e56651b0ba27f505bb033))
- update dependency com.google.api-client:google-api-client-bom to v1.31.3 ([#295](https://www.github.com/googleapis/java-shared-dependencies/issues/295)) ([a0774e9](https://www.github.com/googleapis/java-shared-dependencies/commit/a0774e9d62d00614142bc4c14214a83dda66d4ad))
- update dependency com.google.api.grpc:grpc-google-iam-v1 to v1.0.10 ([#292](https://www.github.com/googleapis/java-shared-dependencies/issues/292)) ([b629789](https://www.github.com/googleapis/java-shared-dependencies/commit/b629789e3a1cc9a7308b829c034b09b06e24fc07))
- update dependency com.google.auth:google-auth-library-bom to v0.24.1 ([#293](https://www.github.com/googleapis/java-shared-dependencies/issues/293)) ([d85ec34](https://www.github.com/googleapis/java-shared-dependencies/commit/d85ec347ccdd14dfdab10d365d2c2f8df3035e4d))
- update dependency com.google.protobuf:protobuf-bom to v3.15.3 ([#294](https://www.github.com/googleapis/java-shared-dependencies/issues/294)) ([58c01aa](https://www.github.com/googleapis/java-shared-dependencies/commit/58c01aa076e2c4954986185f913bac2c51a1e6fb))
- update dependency com.google.protobuf:protobuf-bom to v3.15.5 ([#302](https://www.github.com/googleapis/java-shared-dependencies/issues/302)) ([e9d5e6e](https://www.github.com/googleapis/java-shared-dependencies/commit/e9d5e6ee6039915da186315ceada673ac37b88d3))
- update google.core.version to v1.94.2 ([#296](https://www.github.com/googleapis/java-shared-dependencies/issues/296)) ([af83b90](https://www.github.com/googleapis/java-shared-dependencies/commit/af83b901be0c03d507189999215d35345602fad7))
- update google.core.version to v1.94.3 ([#300](https://www.github.com/googleapis/java-shared-dependencies/issues/300)) ([3e73176](https://www.github.com/googleapis/java-shared-dependencies/commit/3e73176af0b07dfe621163b301174b5b5820dfa2))
---
### Configuration
:date: **Schedule**: At any time (no schedule defined).
:vertical_traffic_light: **Automerge**: Disabled by config. Please merge this manually once you are satisfied.
:recycle: **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
:no_bell: **Ignore**: Close this PR and you won't be reminded about this update again.
---
- [ ] If you want to rebase/retry this PR, check this box.
---
This PR has been generated by [WhiteSource Renovate](https://renovate.whitesourcesoftware.com). View repository job log [here](https://app.renovatebot.com/dashboard#github/googleapis/java-notebooks).
---
pom.xml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/pom.xml b/pom.xml
index e6b939c7..a3659230 100644
--- a/pom.xml
+++ b/pom.xml
@@ -86,7 +86,7 @@
com.google.cloud
google-cloud-shared-dependencies
- 0.20.1
+ 0.21.0
pom
import
From cdf7dfcff6af0e402646fd7ffcc647cb567c44a6 Mon Sep 17 00:00:00 2001
From: Yoshi Automation Bot
Date: Fri, 9 Apr 2021 14:46:13 -0700
Subject: [PATCH 17/47] chore: regenerate README (#157)
This PR was generated using Autosynth. :rainbow:
Log from Synthtool
```
2021-04-09 20:42:16,931 synthtool [DEBUG] > Executing /root/.cache/synthtool/java-notebooks/.github/readme/synth.py.
On branch autosynth-readme
nothing to commit, working tree clean
2021-04-09 20:42:18,191 synthtool [DEBUG] > Wrote metadata to .github/readme/synth.metadata/synth.metadata.
```
Full log will be available here:
https://source.cloud.google.com/results/invocations/8f3929fa-a5e4-4dd2-958d-799e83702c44/targets
- [ ] To automatically regenerate this PR, check this box. (May take up to 24 hours.)
---
.github/readme/synth.metadata/synth.metadata | 4 ++--
README.md | 3 +++
2 files changed, 5 insertions(+), 2 deletions(-)
diff --git a/.github/readme/synth.metadata/synth.metadata b/.github/readme/synth.metadata/synth.metadata
index 0a923ea4..53fcf766 100644
--- a/.github/readme/synth.metadata/synth.metadata
+++ b/.github/readme/synth.metadata/synth.metadata
@@ -4,14 +4,14 @@
"git": {
"name": ".",
"remote": "https://github.com/googleapis/java-notebooks.git",
- "sha": "8aa05d3cea6bf38344ddd06ac1a58f267c1d5eef"
+ "sha": "733a3d7931c16ee4d9ec4b2d3387718cb2c04254"
}
},
{
"git": {
"name": "synthtool",
"remote": "https://github.com/googleapis/synthtool.git",
- "sha": "8c5628b86cfa8386de7b8fc1675e6b528b552d57"
+ "sha": "1f5e6bc8dc8e3661ee550905fc070e55e1b6cea1"
}
}
]
diff --git a/README.md b/README.md
index 32e2ef15..d07728fc 100644
--- a/README.md
+++ b/README.md
@@ -8,9 +8,12 @@ Java idiomatic client for [AI Platform Notebooks][product-docs].
- [Product Documentation][product-docs]
- [Client Library Documentation][javadocs]
+
> Note: This client is a work-in-progress, and may occasionally
> make backwards-incompatible changes.
+
+
## Quickstart
From f9d3af7003042d426d2f81a938829eae89840a17 Mon Sep 17 00:00:00 2001
From: Yoshi Automation Bot
Date: Mon, 12 Apr 2021 07:22:14 -0700
Subject: [PATCH 18/47] build(java): skip javadoc tests during dependencies
test (#158)
This PR was generated using Autosynth. :rainbow:
Synth log will be available here:
https://source.cloud.google.com/results/invocations/c591f580-c8f1-4028-b2d9-d7e22867b894/targets
- [ ] To automatically regenerate this PR, check this box. (May take up to 24 hours.)
Source-Link: https://github.com/googleapis/synthtool/commit/5b0e1592dd7d70b485e157ea4b3eb1704ecbd015
---
.kokoro/dependencies.sh | 1 +
synth.metadata | 4 ++--
2 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/.kokoro/dependencies.sh b/.kokoro/dependencies.sh
index 0fb8c843..59d2aafc 100755
--- a/.kokoro/dependencies.sh
+++ b/.kokoro/dependencies.sh
@@ -33,6 +33,7 @@ export MAVEN_OPTS="-Xmx1024m -XX:MaxPermSize=128m"
retry_with_backoff 3 10 \
mvn install -B -V -ntp \
-DskipTests=true \
+ -Dmaven.javadoc.skip=true \
-Dclirr.skip=true
mvn -B dependency:analyze -DfailOnWarning=true
diff --git a/synth.metadata b/synth.metadata
index 6d6f120d..9f109179 100644
--- a/synth.metadata
+++ b/synth.metadata
@@ -4,7 +4,7 @@
"git": {
"name": ".",
"remote": "https://github.com/googleapis/java-notebooks.git",
- "sha": "7ba61476bdcb06bc9caf17ca32853791f0d8c1a4"
+ "sha": "cdf7dfcff6af0e402646fd7ffcc647cb567c44a6"
}
},
{
@@ -19,7 +19,7 @@
"git": {
"name": "synthtool",
"remote": "https://github.com/googleapis/synthtool.git",
- "sha": "572ef8f70edd9041f5bcfa71511aed6aecfc2098"
+ "sha": "5b0e1592dd7d70b485e157ea4b3eb1704ecbd015"
}
}
],
From b988980cd2865e1369c2e206b9626805ee0a7d63 Mon Sep 17 00:00:00 2001
From: Yoshi Automation Bot
Date: Mon, 12 Apr 2021 08:10:13 -0700
Subject: [PATCH 19/47] chore: regenerate README (#159)
This PR was generated using Autosynth. :rainbow:
Log from Synthtool
```
2021-04-12 14:25:33,345 synthtool [DEBUG] > Executing /root/.cache/synthtool/java-notebooks/.github/readme/synth.py.
On branch autosynth-readme
nothing to commit, working tree clean
2021-04-12 14:25:34,543 synthtool [DEBUG] > Wrote metadata to .github/readme/synth.metadata/synth.metadata.
```
Full log will be available here:
https://source.cloud.google.com/results/invocations/08f14f27-405a-4f76-a096-a7a68a8bb450/targets
- [ ] To automatically regenerate this PR, check this box. (May take up to 24 hours.)
---
.github/readme/synth.metadata/synth.metadata | 4 ++--
README.md | 3 ---
2 files changed, 2 insertions(+), 5 deletions(-)
diff --git a/.github/readme/synth.metadata/synth.metadata b/.github/readme/synth.metadata/synth.metadata
index 53fcf766..99ad075e 100644
--- a/.github/readme/synth.metadata/synth.metadata
+++ b/.github/readme/synth.metadata/synth.metadata
@@ -4,14 +4,14 @@
"git": {
"name": ".",
"remote": "https://github.com/googleapis/java-notebooks.git",
- "sha": "733a3d7931c16ee4d9ec4b2d3387718cb2c04254"
+ "sha": "f9d3af7003042d426d2f81a938829eae89840a17"
}
},
{
"git": {
"name": "synthtool",
"remote": "https://github.com/googleapis/synthtool.git",
- "sha": "1f5e6bc8dc8e3661ee550905fc070e55e1b6cea1"
+ "sha": "0a071b3460344886297a304253bf924aa68ddb7e"
}
}
]
diff --git a/README.md b/README.md
index d07728fc..32e2ef15 100644
--- a/README.md
+++ b/README.md
@@ -8,12 +8,9 @@ Java idiomatic client for [AI Platform Notebooks][product-docs].
- [Product Documentation][product-docs]
- [Client Library Documentation][javadocs]
-
> Note: This client is a work-in-progress, and may occasionally
> make backwards-incompatible changes.
-
-
## Quickstart
From 4b54f4278c7eb30116f19f795e4105262449a3d5 Mon Sep 17 00:00:00 2001
From: Yoshi Automation Bot
Date: Tue, 13 Apr 2021 08:40:27 -0700
Subject: [PATCH 20/47] fix: typo (#160)
This PR was generated using Autosynth. :rainbow:
Synth log will be available here:
https://source.cloud.google.com/results/invocations/66858d90-5054-4335-bff1-f1d5a9229540/targets
- [ ] To automatically regenerate this PR, check this box. (May take up to 24 hours.)
Source-Link: https://github.com/googleapis/synthtool/commit/082e1ca0863b13ada8594fe91845380765da5b70
---
.kokoro/build.sh | 2 +-
synth.metadata | 5 +++--
2 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/.kokoro/build.sh b/.kokoro/build.sh
index 20ec13a9..f0f63420 100755
--- a/.kokoro/build.sh
+++ b/.kokoro/build.sh
@@ -37,7 +37,7 @@ retry_with_backoff 3 10 \
-Dgcloud.download.skip=true \
-T 1C
-# if GOOGLE_APPLICATION_CREDIENTIALS is specified as a relative path prepend Kokoro root directory onto it
+# if GOOGLE_APPLICATION_CREDENTIALS is specified as a relative path, prepend Kokoro root directory onto it
if [[ ! -z "${GOOGLE_APPLICATION_CREDENTIALS}" && "${GOOGLE_APPLICATION_CREDENTIALS}" != /* ]]; then
export GOOGLE_APPLICATION_CREDENTIALS=$(realpath ${KOKORO_GFILE_DIR}/${GOOGLE_APPLICATION_CREDENTIALS})
fi
diff --git a/synth.metadata b/synth.metadata
index 9f109179..4e83f3d3 100644
--- a/synth.metadata
+++ b/synth.metadata
@@ -4,7 +4,7 @@
"git": {
"name": ".",
"remote": "https://github.com/googleapis/java-notebooks.git",
- "sha": "cdf7dfcff6af0e402646fd7ffcc647cb567c44a6"
+ "sha": "b988980cd2865e1369c2e206b9626805ee0a7d63"
}
},
{
@@ -19,7 +19,7 @@
"git": {
"name": "synthtool",
"remote": "https://github.com/googleapis/synthtool.git",
- "sha": "5b0e1592dd7d70b485e157ea4b3eb1704ecbd015"
+ "sha": "082e1ca0863b13ada8594fe91845380765da5b70"
}
}
],
@@ -45,6 +45,7 @@
".github/readme/synth.py",
".github/release-please.yml",
".github/snippet-bot.yml",
+ ".github/sync-repo-settings.yaml",
".github/trusted-contribution.yml",
".github/workflows/approve-readme.yaml",
".github/workflows/auto-release.yaml",
From 589cbed849206db932b879a8d326a1568b7ea8ed Mon Sep 17 00:00:00 2001
From: WhiteSource Renovate
Date: Wed, 14 Apr 2021 23:14:19 +0200
Subject: [PATCH 21/47] build(deps): update dependency
com.google.cloud:google-cloud-shared-config to v0.11.1 (#161)
[](https://renovatebot.com)
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [com.google.cloud:google-cloud-shared-config](https://togithub.com/googleapis/java-shared-config) | `0.11.0` -> `0.11.1` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) |
---
### Release Notes
googleapis/java-shared-config
### [`v0.11.1`](https://togithub.com/googleapis/java-shared-config/blob/master/CHANGELOG.md#0111-httpswwwgithubcomgoogleapisjava-shared-configcomparev0110v0111-2021-04-14)
[Compare Source](https://togithub.com/googleapis/java-shared-config/compare/v0.11.0...v0.11.1)
---
### Configuration
:date: **Schedule**: At any time (no schedule defined).
:vertical_traffic_light: **Automerge**: Disabled by config. Please merge this manually once you are satisfied.
:recycle: **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
:no_bell: **Ignore**: Close this PR and you won't be reminded about this update again.
---
- [ ] If you want to rebase/retry this PR, check this box.
---
This PR has been generated by [WhiteSource Renovate](https://renovate.whitesourcesoftware.com). View repository job log [here](https://app.renovatebot.com/dashboard#github/googleapis/java-notebooks).
---
google-cloud-notebooks-bom/pom.xml | 2 +-
pom.xml | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/google-cloud-notebooks-bom/pom.xml b/google-cloud-notebooks-bom/pom.xml
index 905450c0..eb84a751 100644
--- a/google-cloud-notebooks-bom/pom.xml
+++ b/google-cloud-notebooks-bom/pom.xml
@@ -8,7 +8,7 @@
com.google.cloud
google-cloud-shared-config
- 0.11.0
+ 0.11.1
Google AI Platform Notebooks BOM
diff --git a/pom.xml b/pom.xml
index a3659230..ad6749ab 100644
--- a/pom.xml
+++ b/pom.xml
@@ -14,7 +14,7 @@
com.google.cloud
google-cloud-shared-config
- 0.11.0
+ 0.11.1
From 6af24c188ccbb01770266a097608a36936639564 Mon Sep 17 00:00:00 2001
From: Yoshi Automation Bot
Date: Thu, 15 Apr 2021 08:34:33 -0700
Subject: [PATCH 22/47] fix: release scripts from issuing overlapping phases
(#162)
This PR was generated using Autosynth. :rainbow:
Synth log will be available here:
https://source.cloud.google.com/results/invocations/757ae8b9-aff7-4749-9e58-9de4e00b59db/targets
- [ ] To automatically regenerate this PR, check this box. (May take up to 24 hours.)
Source-Link: https://github.com/googleapis/synthtool/commit/8285c2b4cdbc3771d031ad91e1c4ec9e55fff45d
---
.kokoro/release/snapshot.sh | 2 +-
.kokoro/release/stage.sh | 2 +-
synth.metadata | 4 ++--
3 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/.kokoro/release/snapshot.sh b/.kokoro/release/snapshot.sh
index 098168a7..1f55b770 100755
--- a/.kokoro/release/snapshot.sh
+++ b/.kokoro/release/snapshot.sh
@@ -25,7 +25,7 @@ grep SNAPSHOT versions.txt
setup_environment_secrets
create_settings_xml_file "settings.xml"
-mvn clean install deploy -B \
+mvn clean deploy -B \
--settings ${MAVEN_SETTINGS_FILE} \
-DperformRelease=true \
-Dgpg.executable=gpg \
diff --git a/.kokoro/release/stage.sh b/.kokoro/release/stage.sh
index 16126d2e..8a103384 100755
--- a/.kokoro/release/stage.sh
+++ b/.kokoro/release/stage.sh
@@ -29,7 +29,7 @@ create_settings_xml_file "settings.xml"
# attempt to stage 3 times with exponential backoff (starting with 10 seconds)
retry_with_backoff 3 10 \
- mvn clean install deploy -B \
+ mvn clean deploy -B \
--settings ${MAVEN_SETTINGS_FILE} \
-DskipTests=true \
-DperformRelease=true \
diff --git a/synth.metadata b/synth.metadata
index 4e83f3d3..1584a5e8 100644
--- a/synth.metadata
+++ b/synth.metadata
@@ -4,7 +4,7 @@
"git": {
"name": ".",
"remote": "https://github.com/googleapis/java-notebooks.git",
- "sha": "b988980cd2865e1369c2e206b9626805ee0a7d63"
+ "sha": "589cbed849206db932b879a8d326a1568b7ea8ed"
}
},
{
@@ -19,7 +19,7 @@
"git": {
"name": "synthtool",
"remote": "https://github.com/googleapis/synthtool.git",
- "sha": "082e1ca0863b13ada8594fe91845380765da5b70"
+ "sha": "8285c2b4cdbc3771d031ad91e1c4ec9e55fff45d"
}
}
],
From f612c0232b83829e4fa049c773c55684b696431e Mon Sep 17 00:00:00 2001
From: WhiteSource Renovate
Date: Tue, 20 Apr 2021 17:32:16 +0200
Subject: [PATCH 23/47] deps: update dependency
com.google.cloud:google-cloud-shared-dependencies to v0.21.1 (#163)
[](https://renovatebot.com)
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [com.google.cloud:google-cloud-shared-dependencies](https://togithub.com/googleapis/java-shared-dependencies) | `0.21.0` -> `0.21.1` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) |
---
### Release Notes
googleapis/java-shared-dependencies
### [`v0.21.1`](https://togithub.com/googleapis/java-shared-dependencies/blob/master/CHANGELOG.md#0211-httpswwwgithubcomgoogleapisjava-shared-dependenciescompare0210v0211-2021-04-19)
[Compare Source](https://togithub.com/googleapis/java-shared-dependencies/compare/v0.21.0...v0.21.1)
---
### Configuration
:date: **Schedule**: At any time (no schedule defined).
:vertical_traffic_light: **Automerge**: Disabled by config. Please merge this manually once you are satisfied.
:recycle: **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
:no_bell: **Ignore**: Close this PR and you won't be reminded about this update again.
---
- [ ] If you want to rebase/retry this PR, check this box.
---
This PR has been generated by [WhiteSource Renovate](https://renovate.whitesourcesoftware.com). View repository job log [here](https://app.renovatebot.com/dashboard#github/googleapis/java-notebooks).
---
pom.xml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/pom.xml b/pom.xml
index ad6749ab..40e477da 100644
--- a/pom.xml
+++ b/pom.xml
@@ -86,7 +86,7 @@
com.google.cloud
google-cloud-shared-dependencies
- 0.21.0
+ 0.21.1
pom
import
From f6a0ba79283a41b277ec06c2ba1927deb9d45d4e Mon Sep 17 00:00:00 2001
From: WhiteSource Renovate
Date: Fri, 23 Apr 2021 02:18:20 +0200
Subject: [PATCH 24/47] build(deps): update dependency
com.google.cloud:google-cloud-shared-config to v0.11.2 (#165)
[](https://renovatebot.com)
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [com.google.cloud:google-cloud-shared-config](https://togithub.com/googleapis/java-shared-config) | `0.11.1` -> `0.11.2` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) |
---
### Release Notes
googleapis/java-shared-config
### [`v0.11.2`](https://togithub.com/googleapis/java-shared-config/blob/master/CHANGELOG.md#0112-httpswwwgithubcomgoogleapisjava-shared-configcomparev0111v0112-2021-04-22)
[Compare Source](https://togithub.com/googleapis/java-shared-config/compare/v0.11.1...v0.11.2)
---
### Configuration
:date: **Schedule**: At any time (no schedule defined).
:vertical_traffic_light: **Automerge**: Disabled by config. Please merge this manually once you are satisfied.
:recycle: **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
:no_bell: **Ignore**: Close this PR and you won't be reminded about this update again.
---
- [ ] If you want to rebase/retry this PR, check this box.
---
This PR has been generated by [WhiteSource Renovate](https://renovate.whitesourcesoftware.com). View repository job log [here](https://app.renovatebot.com/dashboard#github/googleapis/java-notebooks).
---
google-cloud-notebooks-bom/pom.xml | 2 +-
pom.xml | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/google-cloud-notebooks-bom/pom.xml b/google-cloud-notebooks-bom/pom.xml
index eb84a751..4b3845e0 100644
--- a/google-cloud-notebooks-bom/pom.xml
+++ b/google-cloud-notebooks-bom/pom.xml
@@ -8,7 +8,7 @@
com.google.cloud
google-cloud-shared-config
- 0.11.1
+ 0.11.2
Google AI Platform Notebooks BOM
diff --git a/pom.xml b/pom.xml
index 40e477da..ca29a558 100644
--- a/pom.xml
+++ b/pom.xml
@@ -14,7 +14,7 @@
com.google.cloud
google-cloud-shared-config
- 0.11.1
+ 0.11.2
From fce329ec34a16e18fb74483bf1653628959d8b54 Mon Sep 17 00:00:00 2001
From: WhiteSource Renovate
Date: Fri, 23 Apr 2021 23:10:40 +0200
Subject: [PATCH 25/47] deps: update dependency
com.google.cloud:google-cloud-shared-dependencies to v1 (#166)
[](https://renovatebot.com)
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [com.google.cloud:google-cloud-shared-dependencies](https://togithub.com/googleapis/java-shared-dependencies) | `0.21.1` -> `1.0.0` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) |
---
### Release Notes
googleapis/java-shared-dependencies
### [`v1.0.0`](https://togithub.com/googleapis/java-shared-dependencies/blob/master/CHANGELOG.md#100-httpswwwgithubcomgoogleapisjava-shared-dependenciescompare0211v100-2021-04-23)
[Compare Source](https://togithub.com/googleapis/java-shared-dependencies/compare/v0.21.1...v1.0.0)
##### Features
- promote to 1.0.0 ([#341](https://www.github.com/googleapis/java-shared-dependencies/issues/341)) ([eddce7b](https://www.github.com/googleapis/java-shared-dependencies/commit/eddce7bda196d757c0bb93a05574cc742e3d7ff6))
##### Dependencies
- update dependency com.google.api:api-common to v1.10.3 ([#340](https://www.github.com/googleapis/java-shared-dependencies/issues/340)) ([6a7fc33](https://www.github.com/googleapis/java-shared-dependencies/commit/6a7fc33548c199d5f310b3ee5024907882d22726))
- update dependency com.google.auth:google-auth-library-bom to v0.25.4 ([#334](https://www.github.com/googleapis/java-shared-dependencies/issues/334)) ([e5c747d](https://www.github.com/googleapis/java-shared-dependencies/commit/e5c747d245194effc258ae706e7764153010cd53))
- update dependency com.google.auth:google-auth-library-bom to v0.25.5 ([#338](https://www.github.com/googleapis/java-shared-dependencies/issues/338)) ([ffa1df5](https://www.github.com/googleapis/java-shared-dependencies/commit/ffa1df5497b5365f520b665a202b8caf6521fc9d))
- update dependency org.threeten:threetenbp to v1.5.1 ([#335](https://www.github.com/googleapis/java-shared-dependencies/issues/335)) ([c8c6df4](https://www.github.com/googleapis/java-shared-dependencies/commit/c8c6df48e7f80944544939e502f4f08543af2631))
- update google.core.version to v1.94.8 ([#342](https://www.github.com/googleapis/java-shared-dependencies/issues/342)) ([d946dd2](https://www.github.com/googleapis/java-shared-dependencies/commit/d946dd2299aac32f969a2226a1391e1e73f00e62))
##### [0.21.1](https://www.github.com/googleapis/java-shared-dependencies/compare/0.21.0...v0.21.1) (2021-04-19)
##### Bug Fixes
- release scripts from issuing overlapping phases ([#332](https://www.github.com/googleapis/java-shared-dependencies/issues/332)) ([e289825](https://www.github.com/googleapis/java-shared-dependencies/commit/e289825a3bc45b4796db7ce4347f8d9d9251a410))
##### Dependencies
- update dependency com.fasterxml.jackson:jackson-bom to v2.12.3 ([#329](https://www.github.com/googleapis/java-shared-dependencies/issues/329)) ([a77b4fc](https://www.github.com/googleapis/java-shared-dependencies/commit/a77b4fcc2ea5caf366c76a4698bac6d4c9abc92e))
- update dependency com.google.api-client:google-api-client-bom to v1.31.4 ([#326](https://www.github.com/googleapis/java-shared-dependencies/issues/326)) ([409d24f](https://www.github.com/googleapis/java-shared-dependencies/commit/409d24f8a0cac30e41ca45eb2711aecb335d70dd))
- update dependency com.google.auth:google-auth-library-bom to v0.25.3 ([#328](https://www.github.com/googleapis/java-shared-dependencies/issues/328)) ([88cfc08](https://www.github.com/googleapis/java-shared-dependencies/commit/88cfc08952881200e23ed95cfa2eebad85ec7ab3))
- update google.core.version to v1.94.7 ([#324](https://www.github.com/googleapis/java-shared-dependencies/issues/324)) ([0412c88](https://www.github.com/googleapis/java-shared-dependencies/commit/0412c88468940c1182bc0761bfe269a6688fe7b7))
- update iam.version to v1.0.12 ([#327](https://www.github.com/googleapis/java-shared-dependencies/issues/327)) ([548d5f5](https://www.github.com/googleapis/java-shared-dependencies/commit/548d5f53c4f264f1cbb9ca72fdfe4608ab16b480))
---
### Configuration
:date: **Schedule**: At any time (no schedule defined).
:vertical_traffic_light: **Automerge**: Disabled by config. Please merge this manually once you are satisfied.
:recycle: **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
:no_bell: **Ignore**: Close this PR and you won't be reminded about this update again.
---
- [ ] If you want to rebase/retry this PR, check this box.
---
This PR has been generated by [WhiteSource Renovate](https://renovate.whitesourcesoftware.com). View repository job log [here](https://app.renovatebot.com/dashboard#github/googleapis/java-notebooks).
---
pom.xml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/pom.xml b/pom.xml
index ca29a558..c19a8acf 100644
--- a/pom.xml
+++ b/pom.xml
@@ -86,7 +86,7 @@
com.google.cloud
google-cloud-shared-dependencies
- 0.21.1
+ 1.0.0
pom
import
From 7d3fd319ee583ddacabe5af1ecdab8946a3a1903 Mon Sep 17 00:00:00 2001
From: "google-cloud-policy-bot[bot]"
<80869356+google-cloud-policy-bot[bot]@users.noreply.github.com>
Date: Tue, 27 Apr 2021 18:34:08 +0000
Subject: [PATCH 26/47] chore: add SECURITY.md (#173)
add a security policy
---
SECURITY.md | 7 +++++++
1 file changed, 7 insertions(+)
create mode 100644 SECURITY.md
diff --git a/SECURITY.md b/SECURITY.md
new file mode 100644
index 00000000..8b58ae9c
--- /dev/null
+++ b/SECURITY.md
@@ -0,0 +1,7 @@
+# Security Policy
+
+To report a security issue, please use [g.co/vulnz](https://g.co/vulnz).
+
+The Google Security Team will respond within 5 working days of your report on g.co/vulnz.
+
+We use g.co/vulnz for our intake, and do coordination and disclosure here using GitHub Security Advisory to privately discuss and fix the issue.
From 3a2a024728598babfad573d48fa9e0593d4c201c Mon Sep 17 00:00:00 2001
From: Yoshi Automation Bot
Date: Tue, 4 May 2021 09:08:34 -0700
Subject: [PATCH 27/47] build(java): switch to release-please for release
tagging (#175)
This PR was generated using Autosynth. :rainbow:
Synth log will be available here:
https://source.cloud.google.com/results/invocations/2dc692a0-231e-44aa-87cd-aa74afa9dcd7/targets
- [ ] To automatically regenerate this PR, check this box. (May take up to 24 hours.)
---
.github/release-please.yml | 3 ++-
synth.metadata | 2 +-
2 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/.github/release-please.yml b/.github/release-please.yml
index dce2c845..8ca7f9ca 100644
--- a/.github/release-please.yml
+++ b/.github/release-please.yml
@@ -1,2 +1,3 @@
+bumpMinorPreMajor: true
+handleGHRelease: true
releaseType: java-yoshi
-bumpMinorPreMajor: true
\ No newline at end of file
diff --git a/synth.metadata b/synth.metadata
index 1584a5e8..87e476ee 100644
--- a/synth.metadata
+++ b/synth.metadata
@@ -4,7 +4,7 @@
"git": {
"name": ".",
"remote": "https://github.com/googleapis/java-notebooks.git",
- "sha": "589cbed849206db932b879a8d326a1568b7ea8ed"
+ "sha": "7d3fd319ee583ddacabe5af1ecdab8946a3a1903"
}
},
{
From 954c3d4cfe37a26f504a02c87ae120f341a6d38d Mon Sep 17 00:00:00 2001
From: Neenu Shaji
Date: Tue, 4 May 2021 12:46:09 -0400
Subject: [PATCH 28/47] chore: add enumeration data type to .repo-metadata.json
(#176)
Adds a standard enumeration of library types in .repo-metadata.json
---
.repo-metadata.json | 29 +++++++++++++++--------------
1 file changed, 15 insertions(+), 14 deletions(-)
diff --git a/.repo-metadata.json b/.repo-metadata.json
index 5b5adb1d..f27de364 100644
--- a/.repo-metadata.json
+++ b/.repo-metadata.json
@@ -1,15 +1,16 @@
{
- "name": "notebooks",
- "name_pretty": "AI Platform Notebooks",
- "product_documentation": "https://cloud.google.com/ai-platform-notebooks",
- "api_description": "is a managed service that offers an integrated and secure JupyterLab environment for data scientists and machine learning developers to experiment, develop, and deploy models into production. Users can create instances running JupyterLab that come pre-installed with the latest data science and machine learning frameworks in a single click.",
- "client_documentation": "https://googleapis.dev/java/google-cloud-notebooks/latest/index.html",
- "release_level": "beta",
- "transport": "grpc",
- "language": "java",
- "repo": "googleapis/java-notebooks",
- "repo_short": "java-notebooks",
- "distribution_name": "com.google.cloud:google-cloud-notebooks",
- "api_id": "notebooks.googleapis.com",
- "requires_billing": true
-}
\ No newline at end of file
+ "name": "notebooks",
+ "name_pretty": "AI Platform Notebooks",
+ "product_documentation": "https://cloud.google.com/ai-platform-notebooks",
+ "api_description": "is a managed service that offers an integrated and secure JupyterLab environment for data scientists and machine learning developers to experiment, develop, and deploy models into production. Users can create instances running JupyterLab that come pre-installed with the latest data science and machine learning frameworks in a single click.",
+ "client_documentation": "https://googleapis.dev/java/google-cloud-notebooks/latest/index.html",
+ "release_level": "beta",
+ "transport": "grpc",
+ "language": "java",
+ "repo": "googleapis/java-notebooks",
+ "repo_short": "java-notebooks",
+ "distribution_name": "com.google.cloud:google-cloud-notebooks",
+ "api_id": "notebooks.googleapis.com",
+ "requires_billing": true,
+ "library_type": "GAPIC_AUTO"
+}
From 5f045e155f0561f24147226030310b5c0a484308 Mon Sep 17 00:00:00 2001
From: Yoshi Automation Bot
Date: Thu, 6 May 2021 16:08:22 -0700
Subject: [PATCH 29/47] chore: adding cloud-rad java xrefs (#177)
This PR was generated using Autosynth. :rainbow:
Synth log will be available here:
https://source.cloud.google.com/results/invocations/93493e19-de2a-4bf9-a962-c55bb3067614/targets
- [ ] To automatically regenerate this PR, check this box. (May take up to 24 hours.)
Source-Link: https://github.com/googleapis/synthtool/commit/046994f491c02806aea60118e214a9edd67f5ab7
---
.kokoro/release/publish_javadoc11.sh | 7 +++++++
synth.metadata | 4 ++--
2 files changed, 9 insertions(+), 2 deletions(-)
diff --git a/.kokoro/release/publish_javadoc11.sh b/.kokoro/release/publish_javadoc11.sh
index 6955b1fa..84c8e7d9 100755
--- a/.kokoro/release/publish_javadoc11.sh
+++ b/.kokoro/release/publish_javadoc11.sh
@@ -49,6 +49,13 @@ pushd target/docfx-yml
python3 -m docuploader create-metadata \
--name ${NAME} \
--version ${VERSION} \
+ --xrefs devsite://java/gax \
+ --xrefs devsite://java/google-cloud-core \
+ --xrefs devsite://java/api-common \
+ --xrefs devsite://java/proto-google-common-protos \
+ --xrefs devsite://java/google-api-client \
+ --xrefs devsite://java/google-http-client \
+ --xrefs devsite://java/protobuf \
--language java
# upload yml to production bucket
diff --git a/synth.metadata b/synth.metadata
index 87e476ee..f245b2da 100644
--- a/synth.metadata
+++ b/synth.metadata
@@ -4,7 +4,7 @@
"git": {
"name": ".",
"remote": "https://github.com/googleapis/java-notebooks.git",
- "sha": "7d3fd319ee583ddacabe5af1ecdab8946a3a1903"
+ "sha": "954c3d4cfe37a26f504a02c87ae120f341a6d38d"
}
},
{
@@ -19,7 +19,7 @@
"git": {
"name": "synthtool",
"remote": "https://github.com/googleapis/synthtool.git",
- "sha": "8285c2b4cdbc3771d031ad91e1c4ec9e55fff45d"
+ "sha": "046994f491c02806aea60118e214a9edd67f5ab7"
}
}
],
From 9b9e71e35a23b1cd4c38591f29c46ad882ac4266 Mon Sep 17 00:00:00 2001
From: WhiteSource Renovate
Date: Tue, 11 May 2021 03:24:36 +0200
Subject: [PATCH 30/47] deps: update dependency
com.google.cloud:google-cloud-shared-dependencies to v1.1.0 (#178)
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
[](https://renovatebot.com)
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [com.google.cloud:google-cloud-shared-dependencies](https://togithub.com/googleapis/java-shared-dependencies) | `1.0.0` -> `1.1.0` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) |
---
### Release Notes
googleapis/java-shared-dependencies
### [`v1.1.0`](https://togithub.com/googleapis/java-shared-dependencies/blob/master/CHANGELOG.md#110-httpswwwgithubcomgoogleapisjava-shared-dependenciescompare100v110-2021-05-10)
[Compare Source](https://togithub.com/googleapis/java-shared-dependencies/compare/v1.0.0...v1.1.0)
##### Dependencies
- update dependency com.google.protobuf:protobuf-bom to v3.16.0 ([#348](https://www.github.com/googleapis/java-shared-dependencies/issues/348)) ([0aacfde](https://www.github.com/googleapis/java-shared-dependencies/commit/0aacfdeec70e30803734db8287c47e4fad5481ef))
- update gax.version to v1.64.0 ([#345](https://www.github.com/googleapis/java-shared-dependencies/issues/345)) ([478bd35](https://www.github.com/googleapis/java-shared-dependencies/commit/478bd35296293e81c7e70157f50bfbebdc1bb54d))
- update iam.version to v1.0.13 ([#343](https://www.github.com/googleapis/java-shared-dependencies/issues/343)) ([3637923](https://www.github.com/googleapis/java-shared-dependencies/commit/363792392b71deff5cc5731104b631122fba5e61))
---
### Configuration
📅 **Schedule**: At any time (no schedule defined).
🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.
♻️ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update again.
---
- [ ] If you want to rebase/retry this PR, check this box.
---
This PR has been generated by [WhiteSource Renovate](https://renovate.whitesourcesoftware.com). View repository job log [here](https://app.renovatebot.com/dashboard#github/googleapis/java-notebooks).
---
pom.xml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/pom.xml b/pom.xml
index c19a8acf..4909730f 100644
--- a/pom.xml
+++ b/pom.xml
@@ -86,7 +86,7 @@
com.google.cloud
google-cloud-shared-dependencies
- 1.0.0
+ 1.1.0
pom
import
From e83ffb34ea6001d82acafd50f2214a1281ebce0a Mon Sep 17 00:00:00 2001
From: Yoshi Automation Bot
Date: Thu, 13 May 2021 16:40:27 -0700
Subject: [PATCH 31/47] build(java): remove codecov action (#179)
This PR was generated using Autosynth. :rainbow:
Synth log will be available here:
https://source.cloud.google.com/results/invocations/292bbf70-204a-453f-a078-82c4067cc679/targets
- [ ] To automatically regenerate this PR, check this box. (May take up to 24 hours.)
Source-Link: https://github.com/googleapis/synthtool/commit/4f4b1b9b8d8b52f1e9e4a76165896debce5ab7f1
---
.github/workflows/ci.yaml | 6 +-----
synth.metadata | 4 ++--
2 files changed, 3 insertions(+), 7 deletions(-)
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml
index def8b3a2..0195b32f 100644
--- a/.github/workflows/ci.yaml
+++ b/.github/workflows/ci.yaml
@@ -19,10 +19,6 @@ jobs:
- run: .kokoro/build.sh
env:
JOB_TYPE: test
- - name: coverage
- uses: codecov/codecov-action@v1
- with:
- name: actions ${{matrix.java}}
windows:
runs-on: windows-latest
steps:
@@ -80,4 +76,4 @@ jobs:
- run: java -version
- run: .kokoro/build.sh
env:
- JOB_TYPE: clirr
\ No newline at end of file
+ JOB_TYPE: clirr
diff --git a/synth.metadata b/synth.metadata
index f245b2da..c404dd96 100644
--- a/synth.metadata
+++ b/synth.metadata
@@ -4,7 +4,7 @@
"git": {
"name": ".",
"remote": "https://github.com/googleapis/java-notebooks.git",
- "sha": "954c3d4cfe37a26f504a02c87ae120f341a6d38d"
+ "sha": "9b9e71e35a23b1cd4c38591f29c46ad882ac4266"
}
},
{
@@ -19,7 +19,7 @@
"git": {
"name": "synthtool",
"remote": "https://github.com/googleapis/synthtool.git",
- "sha": "046994f491c02806aea60118e214a9edd67f5ab7"
+ "sha": "4f4b1b9b8d8b52f1e9e4a76165896debce5ab7f1"
}
}
],
From a97714964e15f659a2c809e4d10c955e02604a45 Mon Sep 17 00:00:00 2001
From: Yoshi Automation Bot
Date: Mon, 17 May 2021 16:18:30 -0700
Subject: [PATCH 32/47] chore: add changelog to cloud-rad (#180)
This PR was generated using Autosynth. :rainbow:
Synth log will be available here:
https://source.cloud.google.com/results/invocations/dacaacc3-5cd2-4bd4-a958-514b959f3d53/targets
- [ ] To automatically regenerate this PR, check this box. (May take up to 24 hours.)
Source-Link: https://github.com/googleapis/synthtool/commit/c86c7a60985644eab557949363a38301d40d78d2
---
.kokoro/release/publish_javadoc11.sh | 2 ++
synth.metadata | 4 ++--
2 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/.kokoro/release/publish_javadoc11.sh b/.kokoro/release/publish_javadoc11.sh
index 84c8e7d9..021728b6 100755
--- a/.kokoro/release/publish_javadoc11.sh
+++ b/.kokoro/release/publish_javadoc11.sh
@@ -42,6 +42,8 @@ mvn clean site -B -q -P docFX
# copy README to docfx-yml dir and rename index.md
cp README.md target/docfx-yml/index.md
+# copy CHANGELOG to docfx-yml dir and rename history.md
+cp CHANGELOG.md target/docfx-yml/history.md
pushd target/docfx-yml
diff --git a/synth.metadata b/synth.metadata
index c404dd96..518282e6 100644
--- a/synth.metadata
+++ b/synth.metadata
@@ -4,7 +4,7 @@
"git": {
"name": ".",
"remote": "https://github.com/googleapis/java-notebooks.git",
- "sha": "9b9e71e35a23b1cd4c38591f29c46ad882ac4266"
+ "sha": "e83ffb34ea6001d82acafd50f2214a1281ebce0a"
}
},
{
@@ -19,7 +19,7 @@
"git": {
"name": "synthtool",
"remote": "https://github.com/googleapis/synthtool.git",
- "sha": "4f4b1b9b8d8b52f1e9e4a76165896debce5ab7f1"
+ "sha": "c86c7a60985644eab557949363a38301d40d78d2"
}
}
],
From 131e3d48ba6018050476d17ddd7b7e4cff96f9ac Mon Sep 17 00:00:00 2001
From: Yoshi Automation Bot
Date: Wed, 19 May 2021 07:22:12 -0700
Subject: [PATCH 33/47] feat: add `gcf-owl-bot[bot]` to `ignoreAuthors` (#182)
This PR was generated using Autosynth. :rainbow:
Synth log will be available here:
https://source.cloud.google.com/results/invocations/6a2cfa55-9529-4c73-b58a-8e192dfb8d32/targets
- [ ] To automatically regenerate this PR, check this box. (May take up to 24 hours.)
Source-Link: https://github.com/googleapis/synthtool/commit/7332178a11ddddc91188dc0f25bca1ccadcaa6c6
---
.github/generated-files-bot.yml | 1 +
synth.metadata | 4 ++--
2 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/.github/generated-files-bot.yml b/.github/generated-files-bot.yml
index 47c2ba13..c644a24e 100644
--- a/.github/generated-files-bot.yml
+++ b/.github/generated-files-bot.yml
@@ -9,3 +9,4 @@ ignoreAuthors:
- 'renovate-bot'
- 'yoshi-automation'
- 'release-please[bot]'
+- 'gcf-owl-bot[bot]'
diff --git a/synth.metadata b/synth.metadata
index 518282e6..80fe97f3 100644
--- a/synth.metadata
+++ b/synth.metadata
@@ -4,7 +4,7 @@
"git": {
"name": ".",
"remote": "https://github.com/googleapis/java-notebooks.git",
- "sha": "e83ffb34ea6001d82acafd50f2214a1281ebce0a"
+ "sha": "a97714964e15f659a2c809e4d10c955e02604a45"
}
},
{
@@ -19,7 +19,7 @@
"git": {
"name": "synthtool",
"remote": "https://github.com/googleapis/synthtool.git",
- "sha": "c86c7a60985644eab557949363a38301d40d78d2"
+ "sha": "7332178a11ddddc91188dc0f25bca1ccadcaa6c6"
}
}
],
From 51836261f904a3f450a8a1cc64960542563db592 Mon Sep 17 00:00:00 2001
From: WhiteSource Renovate
Date: Wed, 19 May 2021 17:18:06 +0200
Subject: [PATCH 34/47] deps: update dependency
com.google.cloud:google-cloud-shared-dependencies to v1.2.0 (#181)
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
[](https://renovatebot.com)
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [com.google.cloud:google-cloud-shared-dependencies](https://togithub.com/googleapis/java-shared-dependencies) | `1.1.0` -> `1.2.0` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) |
---
### Release Notes
googleapis/java-shared-dependencies
### [`v1.2.0`](https://togithub.com/googleapis/java-shared-dependencies/blob/master/CHANGELOG.md#120-httpswwwgithubcomgoogleapisjava-shared-dependenciescompare110v120-2021-05-18)
[Compare Source](https://togithub.com/googleapis/java-shared-dependencies/compare/v1.1.0...v1.2.0)
##### Dependencies
- update dependency com.google.api-client:google-api-client-bom to v1.31.5 ([#353](https://www.github.com/googleapis/java-shared-dependencies/issues/353)) ([8d72ab0](https://www.github.com/googleapis/java-shared-dependencies/commit/8d72ab003e08c864aedc17fc190ba26f393bf0c7))
- update dependency com.google.errorprone:error_prone_annotations to v2.7.1 ([#360](https://www.github.com/googleapis/java-shared-dependencies/issues/360)) ([8f952d0](https://www.github.com/googleapis/java-shared-dependencies/commit/8f952d05745358fc426a1a2dcb688da5d5010239))
- update dependency com.google.protobuf:protobuf-bom to v3.17.0 ([#355](https://www.github.com/googleapis/java-shared-dependencies/issues/355)) ([09858fb](https://www.github.com/googleapis/java-shared-dependencies/commit/09858fb4f1b78a77e828501597d20df4db0ebfcf))
- update dependency io.grpc:grpc-bom to v1.37.1 ([#359](https://www.github.com/googleapis/java-shared-dependencies/issues/359)) ([bc9869e](https://www.github.com/googleapis/java-shared-dependencies/commit/bc9869e914314f951afd69f2acae95c414398f43))
- update google.common-protos.version to v2.2.1 ([#358](https://www.github.com/googleapis/java-shared-dependencies/issues/358)) ([a3ed764](https://www.github.com/googleapis/java-shared-dependencies/commit/a3ed764a0e5143ee323d4b69c9747b8265d349e2))
- update iam.version to v1.0.14 ([#352](https://www.github.com/googleapis/java-shared-dependencies/issues/352)) ([bea9a01](https://www.github.com/googleapis/java-shared-dependencies/commit/bea9a01788ac1332a4bc7e06574ef5701700fe90))
---
### Configuration
📅 **Schedule**: At any time (no schedule defined).
🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.
♻️ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update again.
---
- [ ] If you want to rebase/retry this PR, check this box.
---
This PR has been generated by [WhiteSource Renovate](https://renovate.whitesourcesoftware.com). View repository job log [here](https://app.renovatebot.com/dashboard#github/googleapis/java-notebooks).
---
pom.xml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/pom.xml b/pom.xml
index 4909730f..e78c761c 100644
--- a/pom.xml
+++ b/pom.xml
@@ -86,7 +86,7 @@
com.google.cloud
google-cloud-shared-dependencies
- 1.1.0
+ 1.2.0
pom
import
From 8fc862caf287cfccd223e20a06945e135676ea04 Mon Sep 17 00:00:00 2001
From: WhiteSource Renovate
Date: Wed, 19 May 2021 23:06:04 +0200
Subject: [PATCH 35/47] build(deps): update dependency
com.google.cloud:google-cloud-shared-config to v0.12.0 (#183)
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
[](https://renovatebot.com)
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [com.google.cloud:google-cloud-shared-config](https://togithub.com/googleapis/java-shared-config) | `0.11.2` -> `0.12.0` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) |
---
### Configuration
📅 **Schedule**: At any time (no schedule defined).
🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.
♻️ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update again.
---
- [ ] If you want to rebase/retry this PR, check this box.
---
This PR has been generated by [WhiteSource Renovate](https://renovate.whitesourcesoftware.com). View repository job log [here](https://app.renovatebot.com/dashboard#github/googleapis/java-notebooks).
---
google-cloud-notebooks-bom/pom.xml | 2 +-
pom.xml | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/google-cloud-notebooks-bom/pom.xml b/google-cloud-notebooks-bom/pom.xml
index 4b3845e0..427a2de0 100644
--- a/google-cloud-notebooks-bom/pom.xml
+++ b/google-cloud-notebooks-bom/pom.xml
@@ -8,7 +8,7 @@
com.google.cloud
google-cloud-shared-config
- 0.11.2
+ 0.12.0
Google AI Platform Notebooks BOM
diff --git a/pom.xml b/pom.xml
index e78c761c..a646b1e7 100644
--- a/pom.xml
+++ b/pom.xml
@@ -14,7 +14,7 @@
com.google.cloud
google-cloud-shared-config
- 0.11.2
+ 0.12.0
From 6ee3bceb9686b2c9a4dacaf583509403db319173 Mon Sep 17 00:00:00 2001
From: Yoshi Automation Bot
Date: Thu, 20 May 2021 17:38:20 -0700
Subject: [PATCH 36/47] chore: dump maven version along with java (#184)
This PR was generated using Autosynth. :rainbow:
Synth log will be available here:
https://source.cloud.google.com/results/invocations/cb89a836-3f42-49ed-9376-387993634b80/targets
- [ ] To automatically regenerate this PR, check this box. (May take up to 24 hours.)
Source-Link: https://github.com/googleapis/synthtool/commit/8eae0234a16b26c2ff616d305dbd9786c8b10a47
---
.kokoro/build.sh | 4 ++--
synth.metadata | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/.kokoro/build.sh b/.kokoro/build.sh
index f0f63420..91a797ed 100755
--- a/.kokoro/build.sh
+++ b/.kokoro/build.sh
@@ -23,8 +23,8 @@ cd ${scriptDir}/..
# include common functions
source ${scriptDir}/common.sh
-# Print out Java version
-java -version
+# Print out Maven & Java version
+mvn -version
echo ${JOB_TYPE}
# attempt to install 3 times with exponential backoff (starting with 10 seconds)
diff --git a/synth.metadata b/synth.metadata
index 80fe97f3..a3a70d0c 100644
--- a/synth.metadata
+++ b/synth.metadata
@@ -4,7 +4,7 @@
"git": {
"name": ".",
"remote": "https://github.com/googleapis/java-notebooks.git",
- "sha": "a97714964e15f659a2c809e4d10c955e02604a45"
+ "sha": "8fc862caf287cfccd223e20a06945e135676ea04"
}
},
{
@@ -19,7 +19,7 @@
"git": {
"name": "synthtool",
"remote": "https://github.com/googleapis/synthtool.git",
- "sha": "7332178a11ddddc91188dc0f25bca1ccadcaa6c6"
+ "sha": "8eae0234a16b26c2ff616d305dbd9786c8b10a47"
}
}
],
From 255d6e91ec21c2ae86dea1cc5c498872fa1751be Mon Sep 17 00:00:00 2001
From: WhiteSource Renovate
Date: Wed, 26 May 2021 22:58:30 +0200
Subject: [PATCH 37/47] test(deps): update dependency com.google.truth:truth to
v1.1.3 (#186)
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
[](https://renovatebot.com)
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| com.google.truth:truth | `1.1.2` -> `1.1.3` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) |
---
### Configuration
📅 **Schedule**: At any time (no schedule defined).
🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.
♻️ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update again.
---
- [ ] If you want to rebase/retry this PR, check this box.
---
This PR has been generated by [WhiteSource Renovate](https://renovate.whitesourcesoftware.com). View repository job log [here](https://app.renovatebot.com/dashboard#github/googleapis/java-notebooks).
---
samples/install-without-bom/pom.xml | 2 +-
samples/snapshot/pom.xml | 2 +-
samples/snippets/pom.xml | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/samples/install-without-bom/pom.xml b/samples/install-without-bom/pom.xml
index 758c7cbe..86eabb7e 100644
--- a/samples/install-without-bom/pom.xml
+++ b/samples/install-without-bom/pom.xml
@@ -42,7 +42,7 @@
com.google.truth
truth
- 1.1.2
+ 1.1.3
test