diff --git a/.kokoro/common.sh b/.kokoro/common.sh index a3bbc5f6..8f09de5d 100644 --- a/.kokoro/common.sh +++ b/.kokoro/common.sh @@ -13,18 +13,28 @@ # See the License for the specific language governing permissions and # limitations under the License. -# set -eo pipefail - function retry_with_backoff { attempts_left=$1 sleep_seconds=$2 shift 2 command=$@ + + # store current flag state + flags=$- + + # allow a failures to continue + set +e echo "${command}" ${command} exit_code=$? + # restore "e" flag + if [[ ${flags} =~ e ]] + then set -e + else set +e + fi + if [[ $exit_code == 0 ]] then return 0 diff --git a/.kokoro/nightly/integration.cfg b/.kokoro/nightly/integration.cfg index 8bf59c02..ca027480 100644 --- a/.kokoro/nightly/integration.cfg +++ b/.kokoro/nightly/integration.cfg @@ -6,11 +6,26 @@ env_vars: { value: "gcr.io/cloud-devrel-kokoro-resources/java8" } +env_vars: { + key: "JOB_TYPE" + value: "integration" +} + +env_vars: { + key: "GCLOUD_PROJECT" + value: "gcloud-devel" +} + env_vars: { key: "ENABLE_BUILD_COP" value: "true" } +env_vars: { + key: "GOOGLE_APPLICATION_CREDENTIALS" + value: "keystore/73713_java_it_service_account" +} + before_action { fetch_keystore { keystore_resource { diff --git a/README.md b/README.md index d9790ee6..c745a9cb 100644 --- a/README.md +++ b/README.md @@ -32,19 +32,19 @@ If you are using Maven with [BOM][libraries-bom], add this to your pom.xml file ``` -[//]: # ({x-version-update-start:google-cloud-container:released}) - If you are using Maven without BOM, add this to your dependencies: ```xml com.google.cloud google-cloud-container - 1.0.1 + 1.0.0 ``` +[//]: # ({x-version-update-start:google-cloud-container:released}) + If you are using Gradle, add this to your dependencies ```Groovy compile 'com.google.cloud:google-cloud-container:1.0.1' diff --git a/google-cloud-container/src/main/java/com/google/cloud/container/v1/ClusterManagerClient.java b/google-cloud-container/src/main/java/com/google/cloud/container/v1/ClusterManagerClient.java index 3dc81b18..8e14b978 100644 --- a/google-cloud-container/src/main/java/com/google/cloud/container/v1/ClusterManagerClient.java +++ b/google-cloud-container/src/main/java/com/google/cloud/container/v1/ClusterManagerClient.java @@ -217,8 +217,8 @@ public ClusterManagerStub getStub() { * number](https://support.google.com/cloud/answer/6158840). This field has been deprecated * and replaced by the parent field. * @param zone Deprecated. The name of the Google Compute Engine - * [zone](/compute/docs/zones#available) in which the cluster resides, or "-" for all zones. - * This field has been deprecated and replaced by the parent field. + * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides, + * or "-" for all zones. This field has been deprecated and replaced by the parent field. * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ public final ListClustersResponse listClusters(String projectId, String zone) { @@ -308,8 +308,8 @@ public final UnaryCallable listCluste * number](https://support.google.com/cloud/answer/6158840). This field has been deprecated * and replaced by the name field. * @param zone Deprecated. The name of the Google Compute Engine - * [zone](/compute/docs/zones#available) in which the cluster resides. This field has been - * deprecated and replaced by the name field. + * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides. + * This field has been deprecated and replaced by the name field. * @param clusterId Deprecated. The name of the cluster to retrieve. This field has been * deprecated and replaced by the name field. * @throws com.google.api.gax.rpc.ApiException if the remote call fails @@ -391,7 +391,7 @@ public final UnaryCallable getClusterCallable() { * instances. * *

By default, the cluster is created in the project's [default - * network](/compute/docs/networks-and-firewalls#networks). + * network](https://cloud.google.com/compute/docs/networks-and-firewalls#networks). * *

One firewall is added for the cluster. After cluster creation, the Kubelet creates routes * for each node to allow the containers on that node to communicate with all other instances in @@ -415,10 +415,10 @@ public final UnaryCallable getClusterCallable() { * number](https://support.google.com/cloud/answer/6158840). This field has been deprecated * and replaced by the parent field. * @param zone Deprecated. The name of the Google Compute Engine - * [zone](/compute/docs/zones#available) in which the cluster resides. This field has been - * deprecated and replaced by the parent field. + * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides. + * This field has been deprecated and replaced by the parent field. * @param cluster Required. A [cluster - * resource](/container-engine/reference/rest/v1/projects.zones.clusters) + * resource](https://cloud.google.com/container-engine/reference/rest/v1/projects.zones.clusters) * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ public final Operation createCluster(String projectId, String zone, Cluster cluster) { @@ -437,7 +437,7 @@ public final Operation createCluster(String projectId, String zone, Cluster clus * instances. * *

By default, the cluster is created in the project's [default - * network](/compute/docs/networks-and-firewalls#networks). + * network](https://cloud.google.com/compute/docs/networks-and-firewalls#networks). * *

One firewall is added for the cluster. After cluster creation, the Kubelet creates routes * for each node to allow the containers on that node to communicate with all other instances in @@ -459,7 +459,7 @@ public final Operation createCluster(String projectId, String zone, Cluster clus * @param parent The parent (project and location) where the cluster will be created. Specified in * the format 'projects/*/locations/*'. * @param cluster Required. A [cluster - * resource](/container-engine/reference/rest/v1/projects.zones.clusters) + * resource](https://cloud.google.com/container-engine/reference/rest/v1/projects.zones.clusters) * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ public final Operation createCluster(String parent, Cluster cluster) { @@ -474,7 +474,7 @@ public final Operation createCluster(String parent, Cluster cluster) { * instances. * *

By default, the cluster is created in the project's [default - * network](/compute/docs/networks-and-firewalls#networks). + * network](https://cloud.google.com/compute/docs/networks-and-firewalls#networks). * *

One firewall is added for the cluster. After cluster creation, the Kubelet creates routes * for each node to allow the containers on that node to communicate with all other instances in @@ -508,7 +508,7 @@ public final Operation createCluster(CreateClusterRequest request) { * instances. * *

By default, the cluster is created in the project's [default - * network](/compute/docs/networks-and-firewalls#networks). + * network](https://cloud.google.com/compute/docs/networks-and-firewalls#networks). * *

One firewall is added for the cluster. After cluster creation, the Kubelet creates routes * for each node to allow the containers on that node to communicate with all other instances in @@ -555,8 +555,8 @@ public final UnaryCallable createClusterCallabl * number](https://support.google.com/cloud/answer/6158840). This field has been deprecated * and replaced by the name field. * @param zone Deprecated. The name of the Google Compute Engine - * [zone](/compute/docs/zones#available) in which the cluster resides. This field has been - * deprecated and replaced by the name field. + * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides. + * This field has been deprecated and replaced by the name field. * @param clusterId Deprecated. The name of the cluster to upgrade. This field has been deprecated * and replaced by the name field. * @param update Required. A description of the update. @@ -759,8 +759,8 @@ public final Operation setNodePoolAutoscaling(SetNodePoolAutoscalingRequest requ * number](https://support.google.com/cloud/answer/6158840). This field has been deprecated * and replaced by the name field. * @param zone Deprecated. The name of the Google Compute Engine - * [zone](/compute/docs/zones#available) in which the cluster resides. This field has been - * deprecated and replaced by the name field. + * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides. + * This field has been deprecated and replaced by the name field. * @param clusterId Deprecated. The name of the cluster to upgrade. This field has been deprecated * and replaced by the name field. * @param loggingService Required. The logging service the cluster should use to write metrics. @@ -877,8 +877,8 @@ public final UnaryCallable setLoggingServic * number](https://support.google.com/cloud/answer/6158840). This field has been deprecated * and replaced by the name field. * @param zone Deprecated. The name of the Google Compute Engine - * [zone](/compute/docs/zones#available) in which the cluster resides. This field has been - * deprecated and replaced by the name field. + * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides. + * This field has been deprecated and replaced by the name field. * @param clusterId Deprecated. The name of the cluster to upgrade. This field has been deprecated * and replaced by the name field. * @param monitoringService Required. The monitoring service the cluster should use to write @@ -998,8 +998,8 @@ public final Operation setMonitoringService(SetMonitoringServiceRequest request) * number](https://support.google.com/cloud/answer/6158840). This field has been deprecated * and replaced by the name field. * @param zone Deprecated. The name of the Google Compute Engine - * [zone](/compute/docs/zones#available) in which the cluster resides. This field has been - * deprecated and replaced by the name field. + * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides. + * This field has been deprecated and replaced by the name field. * @param clusterId Deprecated. The name of the cluster to upgrade. This field has been deprecated * and replaced by the name field. * @param addonsConfig Required. The desired configurations for the various addons available to @@ -1109,14 +1109,15 @@ public final UnaryCallable setAddonsConfigCal * number](https://support.google.com/cloud/answer/6158840). This field has been deprecated * and replaced by the name field. * @param zone Deprecated. The name of the Google Compute Engine - * [zone](/compute/docs/zones#available) in which the cluster resides. This field has been - * deprecated and replaced by the name field. + * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides. + * This field has been deprecated and replaced by the name field. * @param clusterId Deprecated. The name of the cluster to upgrade. This field has been deprecated * and replaced by the name field. * @param locations Required. The desired list of Google Compute Engine - * [zones](/compute/docs/zones#available) in which the cluster's nodes should be located. - * Changing the locations a cluster is in will result in nodes being either created or removed - * from the cluster, depending on whether locations are being added or removed. + * [zones](https://cloud.google.com/compute/docs/zones#available) in which the cluster's nodes + * should be located. Changing the locations a cluster is in will result in nodes being either + * created or removed from the cluster, depending on whether locations are being added or + * removed. *

This list must always include the cluster's primary zone. * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ @@ -1149,9 +1150,10 @@ public final Operation setLocations( * @param name The name (project, location, cluster) of the cluster to set locations. Specified in * the format 'projects/*/locations/*/clusters/*'. * @param locations Required. The desired list of Google Compute Engine - * [zones](/compute/docs/zones#available) in which the cluster's nodes should be located. - * Changing the locations a cluster is in will result in nodes being either created or removed - * from the cluster, depending on whether locations are being added or removed. + * [zones](https://cloud.google.com/compute/docs/zones#available) in which the cluster's nodes + * should be located. Changing the locations a cluster is in will result in nodes being either + * created or removed from the cluster, depending on whether locations are being added or + * removed. *

This list must always include the cluster's primary zone. * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ @@ -1226,8 +1228,8 @@ public final UnaryCallable setLocationsCallable( * number](https://support.google.com/cloud/answer/6158840). This field has been deprecated * and replaced by the name field. * @param zone Deprecated. The name of the Google Compute Engine - * [zone](/compute/docs/zones#available) in which the cluster resides. This field has been - * deprecated and replaced by the name field. + * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides. + * This field has been deprecated and replaced by the name field. * @param clusterId Deprecated. The name of the cluster to upgrade. This field has been deprecated * and replaced by the name field. * @param masterVersion Required. The Kubernetes version to change the master to. @@ -1403,8 +1405,8 @@ public final UnaryCallable setMasterAuthCallabl * number](https://support.google.com/cloud/answer/6158840). This field has been deprecated * and replaced by the name field. * @param zone Deprecated. The name of the Google Compute Engine - * [zone](/compute/docs/zones#available) in which the cluster resides. This field has been - * deprecated and replaced by the name field. + * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides. + * This field has been deprecated and replaced by the name field. * @param clusterId Deprecated. The name of the cluster to delete. This field has been deprecated * and replaced by the name field. * @throws com.google.api.gax.rpc.ApiException if the remote call fails @@ -1516,8 +1518,8 @@ public final UnaryCallable deleteClusterCallabl * number](https://support.google.com/cloud/answer/6158840). This field has been deprecated * and replaced by the parent field. * @param zone Deprecated. The name of the Google Compute Engine - * [zone](/compute/docs/zones#available) to return operations for, or `-` for all zones. This - * field has been deprecated and replaced by the parent field. + * [zone](https://cloud.google.com/compute/docs/zones#available) to return operations for, or + * `-` for all zones. This field has been deprecated and replaced by the parent field. * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ public final ListOperationsResponse listOperations(String projectId, String zone) { @@ -1585,8 +1587,8 @@ public final ListOperationsResponse listOperations(ListOperationsRequest request * number](https://support.google.com/cloud/answer/6158840). This field has been deprecated * and replaced by the name field. * @param zone Deprecated. The name of the Google Compute Engine - * [zone](/compute/docs/zones#available) in which the cluster resides. This field has been - * deprecated and replaced by the name field. + * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides. + * This field has been deprecated and replaced by the name field. * @param operationId Deprecated. The server-assigned `name` of the operation. This field has been * deprecated and replaced by the name field. * @throws com.google.api.gax.rpc.ApiException if the remote call fails @@ -1659,8 +1661,8 @@ public final UnaryCallable getOperationCallable( * number](https://support.google.com/cloud/answer/6158840). This field has been deprecated * and replaced by the name field. * @param zone Deprecated. The name of the Google Compute Engine - * [zone](/compute/docs/zones#available) in which the operation resides. This field has been - * deprecated and replaced by the name field. + * [zone](https://cloud.google.com/compute/docs/zones#available) in which the operation + * resides. This field has been deprecated and replaced by the name field. * @param operationId Deprecated. The server-assigned `name` of the operation. This field has been * deprecated and replaced by the name field. * @throws com.google.api.gax.rpc.ApiException if the remote call fails @@ -1754,8 +1756,8 @@ public final UnaryCallable cancelOperationCallabl * number](https://support.google.com/cloud/answer/6158840). This field has been deprecated * and replaced by the name field. * @param zone Deprecated. The name of the Google Compute Engine - * [zone](/compute/docs/zones#available) to return operations for. This field has been - * deprecated and replaced by the name field. + * [zone](https://cloud.google.com/compute/docs/zones#available) to return operations for. + * This field has been deprecated and replaced by the name field. * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ public final ServerConfig getServerConfig(String projectId, String zone) { @@ -1844,8 +1846,8 @@ public final UnaryCallable getServerConfig * number](https://developers.google.com/console/help/new/#projectnumber). This field has been * deprecated and replaced by the parent field. * @param zone Deprecated. The name of the Google Compute Engine - * [zone](/compute/docs/zones#available) in which the cluster resides. This field has been - * deprecated and replaced by the parent field. + * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides. + * This field has been deprecated and replaced by the parent field. * @param clusterId Deprecated. The name of the cluster. This field has been deprecated and * replaced by the parent field. * @throws com.google.api.gax.rpc.ApiException if the remote call fails @@ -1942,8 +1944,8 @@ public final UnaryCallable listNode * number](https://developers.google.com/console/help/new/#projectnumber). This field has been * deprecated and replaced by the name field. * @param zone Deprecated. The name of the Google Compute Engine - * [zone](/compute/docs/zones#available) in which the cluster resides. This field has been - * deprecated and replaced by the name field. + * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides. + * This field has been deprecated and replaced by the name field. * @param clusterId Deprecated. The name of the cluster. This field has been deprecated and * replaced by the name field. * @param nodePoolId Deprecated. The name of the node pool. This field has been deprecated and @@ -2043,8 +2045,8 @@ public final UnaryCallable getNodePoolCallable() { * number](https://developers.google.com/console/help/new/#projectnumber). This field has been * deprecated and replaced by the parent field. * @param zone Deprecated. The name of the Google Compute Engine - * [zone](/compute/docs/zones#available) in which the cluster resides. This field has been - * deprecated and replaced by the parent field. + * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides. + * This field has been deprecated and replaced by the parent field. * @param clusterId Deprecated. The name of the cluster. This field has been deprecated and * replaced by the parent field. * @param nodePool Required. The node pool to create. @@ -2152,8 +2154,8 @@ public final UnaryCallable createNodePoolCalla * number](https://developers.google.com/console/help/new/#projectnumber). This field has been * deprecated and replaced by the name field. * @param zone Deprecated. The name of the Google Compute Engine - * [zone](/compute/docs/zones#available) in which the cluster resides. This field has been - * deprecated and replaced by the name field. + * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides. + * This field has been deprecated and replaced by the name field. * @param clusterId Deprecated. The name of the cluster. This field has been deprecated and * replaced by the name field. * @param nodePoolId Deprecated. The name of the node pool to delete. This field has been @@ -2254,8 +2256,8 @@ public final UnaryCallable deleteNodePoolCalla * number](https://support.google.com/cloud/answer/6158840). This field has been deprecated * and replaced by the name field. * @param zone Deprecated. The name of the Google Compute Engine - * [zone](/compute/docs/zones#available) in which the cluster resides. This field has been - * deprecated and replaced by the name field. + * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides. + * This field has been deprecated and replaced by the name field. * @param clusterId Deprecated. The name of the cluster to rollback. This field has been * deprecated and replaced by the name field. * @param nodePoolId Deprecated. The name of the node pool to rollback. This field has been @@ -2456,8 +2458,8 @@ public final UnaryCallable setLabelsCallable() { * number](https://support.google.com/cloud/answer/6158840). This field has been deprecated * and replaced by the name field. * @param zone Deprecated. The name of the Google Compute Engine - * [zone](/compute/docs/zones#available) in which the cluster resides. This field has been - * deprecated and replaced by the name field. + * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides. + * This field has been deprecated and replaced by the name field. * @param clusterId Deprecated. The name of the cluster to update. This field has been deprecated * and replaced by the name field. * @param enabled Required. Whether ABAC authorization will be enabled in the cluster. @@ -2564,8 +2566,8 @@ public final UnaryCallable setLegacyAbacCallabl * number](https://developers.google.com/console/help/new/#projectnumber). This field has been * deprecated and replaced by the name field. * @param zone Deprecated. The name of the Google Compute Engine - * [zone](/compute/docs/zones#available) in which the cluster resides. This field has been - * deprecated and replaced by the name field. + * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides. + * This field has been deprecated and replaced by the name field. * @param clusterId Deprecated. The name of the cluster. This field has been deprecated and * replaced by the name field. * @throws com.google.api.gax.rpc.ApiException if the remote call fails @@ -2660,8 +2662,8 @@ public final UnaryCallable startIPRotationCal * number](https://developers.google.com/console/help/new/#projectnumber). This field has been * deprecated and replaced by the name field. * @param zone Deprecated. The name of the Google Compute Engine - * [zone](/compute/docs/zones#available) in which the cluster resides. This field has been - * deprecated and replaced by the name field. + * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides. + * This field has been deprecated and replaced by the name field. * @param clusterId Deprecated. The name of the cluster. This field has been deprecated and * replaced by the name field. * @throws com.google.api.gax.rpc.ApiException if the remote call fails @@ -2803,8 +2805,8 @@ public final UnaryCallable setNodePoolSizeCal * number](https://developers.google.com/console/help/new/#projectnumber). This field has been * deprecated and replaced by the name field. * @param zone Deprecated. The name of the Google Compute Engine - * [zone](/compute/docs/zones#available) in which the cluster resides. This field has been - * deprecated and replaced by the name field. + * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides. + * This field has been deprecated and replaced by the name field. * @param clusterId Deprecated. The name of the cluster. This field has been deprecated and * replaced by the name field. * @param networkPolicy Required. Configuration options for the NetworkPolicy feature. @@ -2911,7 +2913,7 @@ public final UnaryCallable setNetworkPolicyC * @param projectId Required. The Google Developers Console [project ID or project * number](https://support.google.com/cloud/answer/6158840). * @param zone Required. The name of the Google Compute Engine - * [zone](/compute/docs/zones#available) in which the cluster resides. + * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides. * @param clusterId Required. The name of the cluster to update. * @param maintenancePolicy Required. The maintenance policy to be set for the cluster. An empty * field clears the existing maintenance policy. diff --git a/grpc-google-cloud-container-v1/src/main/java/com/google/container/v1/ClusterManagerGrpc.java b/grpc-google-cloud-container-v1/src/main/java/com/google/container/v1/ClusterManagerGrpc.java index e2aa659b..d363e1db 100644 --- a/grpc-google-cloud-container-v1/src/main/java/com/google/container/v1/ClusterManagerGrpc.java +++ b/grpc-google-cloud-container-v1/src/main/java/com/google/container/v1/ClusterManagerGrpc.java @@ -1461,7 +1461,7 @@ public void getCluster( * Creates a cluster, consisting of the specified number and type of Google * Compute Engine instances. * By default, the cluster is created in the project's - * [default network](/compute/docs/networks-and-firewalls#networks). + * [default network](https://cloud.google.com/compute/docs/networks-and-firewalls#networks). * One firewall is added for the cluster. After cluster creation, * the Kubelet creates routes for each node to allow the containers * on that node to communicate with all other instances in the @@ -2106,7 +2106,7 @@ public void getCluster( * Creates a cluster, consisting of the specified number and type of Google * Compute Engine instances. * By default, the cluster is created in the project's - * [default network](/compute/docs/networks-and-firewalls#networks). + * [default network](https://cloud.google.com/compute/docs/networks-and-firewalls#networks). * One firewall is added for the cluster. After cluster creation, * the Kubelet creates routes for each node to allow the containers * on that node to communicate with all other instances in the @@ -2634,7 +2634,7 @@ public com.google.container.v1.Cluster getCluster( * Creates a cluster, consisting of the specified number and type of Google * Compute Engine instances. * By default, the cluster is created in the project's - * [default network](/compute/docs/networks-and-firewalls#networks). + * [default network](https://cloud.google.com/compute/docs/networks-and-firewalls#networks). * One firewall is added for the cluster. After cluster creation, * the Kubelet creates routes for each node to allow the containers * on that node to communicate with all other instances in the @@ -3057,7 +3057,7 @@ protected ClusterManagerFutureStub build( * Creates a cluster, consisting of the specified number and type of Google * Compute Engine instances. * By default, the cluster is created in the project's - * [default network](/compute/docs/networks-and-firewalls#networks). + * [default network](https://cloud.google.com/compute/docs/networks-and-firewalls#networks). * One firewall is added for the cluster. After cluster creation, * the Kubelet creates routes for each node to allow the containers * on that node to communicate with all other instances in the diff --git a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/AcceleratorConfig.java b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/AcceleratorConfig.java index 15ebd900..5a04cc80 100644 --- a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/AcceleratorConfig.java +++ b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/AcceleratorConfig.java @@ -140,7 +140,7 @@ public long getAcceleratorCount() { * *

    * The accelerator type resource name. List of supported accelerators
-   * [here](/compute/docs/gpus)
+   * [here](https://cloud.google.com/compute/docs/gpus)
    * 
* * string accelerator_type = 2; @@ -163,7 +163,7 @@ public java.lang.String getAcceleratorType() { * *
    * The accelerator type resource name. List of supported accelerators
-   * [here](/compute/docs/gpus)
+   * [here](https://cloud.google.com/compute/docs/gpus)
    * 
* * string accelerator_type = 2; @@ -570,7 +570,7 @@ public Builder clearAcceleratorCount() { * *
      * The accelerator type resource name. List of supported accelerators
-     * [here](/compute/docs/gpus)
+     * [here](https://cloud.google.com/compute/docs/gpus)
      * 
* * string accelerator_type = 2; @@ -593,7 +593,7 @@ public java.lang.String getAcceleratorType() { * *
      * The accelerator type resource name. List of supported accelerators
-     * [here](/compute/docs/gpus)
+     * [here](https://cloud.google.com/compute/docs/gpus)
      * 
* * string accelerator_type = 2; @@ -616,7 +616,7 @@ public com.google.protobuf.ByteString getAcceleratorTypeBytes() { * *
      * The accelerator type resource name. List of supported accelerators
-     * [here](/compute/docs/gpus)
+     * [here](https://cloud.google.com/compute/docs/gpus)
      * 
* * string accelerator_type = 2; @@ -638,7 +638,7 @@ public Builder setAcceleratorType(java.lang.String value) { * *
      * The accelerator type resource name. List of supported accelerators
-     * [here](/compute/docs/gpus)
+     * [here](https://cloud.google.com/compute/docs/gpus)
      * 
* * string accelerator_type = 2; @@ -656,7 +656,7 @@ public Builder clearAcceleratorType() { * *
      * The accelerator type resource name. List of supported accelerators
-     * [here](/compute/docs/gpus)
+     * [here](https://cloud.google.com/compute/docs/gpus)
      * 
* * string accelerator_type = 2; diff --git a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/AcceleratorConfigOrBuilder.java b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/AcceleratorConfigOrBuilder.java index ae6aab93..7ab425bd 100644 --- a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/AcceleratorConfigOrBuilder.java +++ b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/AcceleratorConfigOrBuilder.java @@ -41,7 +41,7 @@ public interface AcceleratorConfigOrBuilder * *
    * The accelerator type resource name. List of supported accelerators
-   * [here](/compute/docs/gpus)
+   * [here](https://cloud.google.com/compute/docs/gpus)
    * 
* * string accelerator_type = 2; @@ -54,7 +54,7 @@ public interface AcceleratorConfigOrBuilder * *
    * The accelerator type resource name. List of supported accelerators
-   * [here](/compute/docs/gpus)
+   * [here](https://cloud.google.com/compute/docs/gpus)
    * 
* * string accelerator_type = 2; diff --git a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/CancelOperationRequest.java b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/CancelOperationRequest.java index db8500c3..83eae1d8 100644 --- a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/CancelOperationRequest.java +++ b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/CancelOperationRequest.java @@ -195,7 +195,7 @@ public com.google.protobuf.ByteString getProjectIdBytes() { * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the operation resides.
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the operation resides.
    * This field has been deprecated and replaced by the name field.
    * 
* @@ -220,7 +220,7 @@ public java.lang.String getZone() { * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the operation resides.
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the operation resides.
    * This field has been deprecated and replaced by the name field.
    * 
* @@ -832,7 +832,7 @@ public Builder setProjectIdBytes(com.google.protobuf.ByteString value) { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the operation resides.
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the operation resides.
      * This field has been deprecated and replaced by the name field.
      * 
* @@ -857,7 +857,7 @@ public java.lang.String getZone() { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the operation resides.
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the operation resides.
      * This field has been deprecated and replaced by the name field.
      * 
* @@ -882,7 +882,7 @@ public com.google.protobuf.ByteString getZoneBytes() { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the operation resides.
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the operation resides.
      * This field has been deprecated and replaced by the name field.
      * 
* @@ -906,7 +906,7 @@ public Builder setZone(java.lang.String value) { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the operation resides.
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the operation resides.
      * This field has been deprecated and replaced by the name field.
      * 
* @@ -926,7 +926,7 @@ public Builder clearZone() { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the operation resides.
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the operation resides.
      * This field has been deprecated and replaced by the name field.
      * 
* diff --git a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/CancelOperationRequestOrBuilder.java b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/CancelOperationRequestOrBuilder.java index a1f5fcf7..c819b444 100644 --- a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/CancelOperationRequestOrBuilder.java +++ b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/CancelOperationRequestOrBuilder.java @@ -59,7 +59,7 @@ public interface CancelOperationRequestOrBuilder * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the operation resides.
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the operation resides.
    * This field has been deprecated and replaced by the name field.
    * 
* @@ -74,7 +74,7 @@ public interface CancelOperationRequestOrBuilder * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the operation resides.
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the operation resides.
    * This field has been deprecated and replaced by the name field.
    * 
* diff --git a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/Cluster.java b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/Cluster.java index 6eba0f68..ccc1dbb7 100644 --- a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/Cluster.java +++ b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/Cluster.java @@ -1287,7 +1287,7 @@ public com.google.protobuf.ByteString getMonitoringServiceBytes() { * *
    * The name of the Google Compute Engine
-   * [network](/compute/docs/networks-and-firewalls#networks) to which the
+   * [network](https://cloud.google.com/compute/docs/networks-and-firewalls#networks) to which the
    * cluster is connected. If left unspecified, the `default` network
    * will be used.
    * 
@@ -1312,7 +1312,7 @@ public java.lang.String getNetwork() { * *
    * The name of the Google Compute Engine
-   * [network](/compute/docs/networks-and-firewalls#networks) to which the
+   * [network](https://cloud.google.com/compute/docs/networks-and-firewalls#networks) to which the
    * cluster is connected. If left unspecified, the `default` network
    * will be used.
    * 
@@ -1438,7 +1438,7 @@ public com.google.container.v1.AddonsConfigOrBuilder getAddonsConfigOrBuilder() * *
    * The name of the Google Compute Engine
-   * [subnetwork](/compute/docs/subnetworks) to which the
+   * [subnetwork](https://cloud.google.com/compute/docs/subnetworks) to which the
    * cluster is connected.
    * 
* @@ -1462,7 +1462,7 @@ public java.lang.String getSubnetwork() { * *
    * The name of the Google Compute Engine
-   * [subnetwork](/compute/docs/subnetworks) to which the
+   * [subnetwork](https://cloud.google.com/compute/docs/subnetworks) to which the
    * cluster is connected.
    * 
* @@ -1563,7 +1563,7 @@ public com.google.container.v1.NodePoolOrBuilder getNodePoolsOrBuilder(int index * *
    * The list of Google Compute Engine
-   * [zones](/compute/docs/zones#available) in which the cluster's nodes
+   * [zones](https://cloud.google.com/compute/docs/zones#available) in which the cluster's nodes
    * should be located.
    * 
* @@ -1579,7 +1579,7 @@ public com.google.protobuf.ProtocolStringList getLocationsList() { * *
    * The list of Google Compute Engine
-   * [zones](/compute/docs/zones#available) in which the cluster's nodes
+   * [zones](https://cloud.google.com/compute/docs/zones#available) in which the cluster's nodes
    * should be located.
    * 
* @@ -1595,7 +1595,7 @@ public int getLocationsCount() { * *
    * The list of Google Compute Engine
-   * [zones](/compute/docs/zones#available) in which the cluster's nodes
+   * [zones](https://cloud.google.com/compute/docs/zones#available) in which the cluster's nodes
    * should be located.
    * 
* @@ -1612,7 +1612,7 @@ public java.lang.String getLocations(int index) { * *
    * The list of Google Compute Engine
-   * [zones](/compute/docs/zones#available) in which the cluster's nodes
+   * [zones](https://cloud.google.com/compute/docs/zones#available) in which the cluster's nodes
    * should be located.
    * 
* @@ -2498,7 +2498,7 @@ public com.google.protobuf.ByteString getSelfLinkBytes() { * *
    * [Output only] The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * This field is deprecated, use location instead.
    * 
@@ -2524,7 +2524,7 @@ public java.lang.String getZone() { * *
    * [Output only] The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * This field is deprecated, use location instead.
    * 
@@ -2722,7 +2722,7 @@ public com.google.protobuf.ByteString getCurrentMasterVersionBytes() { * *
    * [Output only] Deprecated, use
-   * [NodePools.version](/kubernetes-engine/docs/reference/rest/v1/projects.zones.clusters.nodePools)
+   * [NodePools.version](https://cloud.google.com/kubernetes-engine/docs/reference/rest/v1/projects.zones.clusters.nodePools)
    * instead. The current version of the node software components. If they are
    * currently at multiple versions because they're in the process of being
    * upgraded, this reflects the minimum version of all nodes.
@@ -2749,7 +2749,7 @@ public java.lang.String getCurrentNodeVersion() {
    *
    * 
    * [Output only] Deprecated, use
-   * [NodePools.version](/kubernetes-engine/docs/reference/rest/v1/projects.zones.clusters.nodePools)
+   * [NodePools.version](https://cloud.google.com/kubernetes-engine/docs/reference/rest/v1/projects.zones.clusters.nodePools)
    * instead. The current version of the node software components. If they are
    * currently at multiple versions because they're in the process of being
    * upgraded, this reflects the minimum version of all nodes.
@@ -3119,8 +3119,8 @@ public com.google.protobuf.ByteString getExpireTimeBytes() {
    *
    * 
    * [Output only] The name of the Google Compute Engine
-   * [zone](/compute/docs/regions-zones/regions-zones#available) or
-   * [region](/compute/docs/regions-zones/regions-zones#available) in which
+   * [zone](https://cloud.google.com/compute/docs/regions-zones/regions-zones#available) or
+   * [region](https://cloud.google.com/compute/docs/regions-zones/regions-zones#available) in which
    * the cluster resides.
    * 
* @@ -3144,8 +3144,8 @@ public java.lang.String getLocation() { * *
    * [Output only] The name of the Google Compute Engine
-   * [zone](/compute/docs/regions-zones/regions-zones#available) or
-   * [region](/compute/docs/regions-zones/regions-zones#available) in which
+   * [zone](https://cloud.google.com/compute/docs/regions-zones/regions-zones#available) or
+   * [region](https://cloud.google.com/compute/docs/regions-zones/regions-zones#available) in which
    * the cluster resides.
    * 
* @@ -5791,7 +5791,7 @@ public Builder setMonitoringServiceBytes(com.google.protobuf.ByteString value) { * *
      * The name of the Google Compute Engine
-     * [network](/compute/docs/networks-and-firewalls#networks) to which the
+     * [network](https://cloud.google.com/compute/docs/networks-and-firewalls#networks) to which the
      * cluster is connected. If left unspecified, the `default` network
      * will be used.
      * 
@@ -5816,7 +5816,7 @@ public java.lang.String getNetwork() { * *
      * The name of the Google Compute Engine
-     * [network](/compute/docs/networks-and-firewalls#networks) to which the
+     * [network](https://cloud.google.com/compute/docs/networks-and-firewalls#networks) to which the
      * cluster is connected. If left unspecified, the `default` network
      * will be used.
      * 
@@ -5841,7 +5841,7 @@ public com.google.protobuf.ByteString getNetworkBytes() { * *
      * The name of the Google Compute Engine
-     * [network](/compute/docs/networks-and-firewalls#networks) to which the
+     * [network](https://cloud.google.com/compute/docs/networks-and-firewalls#networks) to which the
      * cluster is connected. If left unspecified, the `default` network
      * will be used.
      * 
@@ -5865,7 +5865,7 @@ public Builder setNetwork(java.lang.String value) { * *
      * The name of the Google Compute Engine
-     * [network](/compute/docs/networks-and-firewalls#networks) to which the
+     * [network](https://cloud.google.com/compute/docs/networks-and-firewalls#networks) to which the
      * cluster is connected. If left unspecified, the `default` network
      * will be used.
      * 
@@ -5885,7 +5885,7 @@ public Builder clearNetwork() { * *
      * The name of the Google Compute Engine
-     * [network](/compute/docs/networks-and-firewalls#networks) to which the
+     * [network](https://cloud.google.com/compute/docs/networks-and-firewalls#networks) to which the
      * cluster is connected. If left unspecified, the `default` network
      * will be used.
      * 
@@ -6218,7 +6218,7 @@ public com.google.container.v1.AddonsConfigOrBuilder getAddonsConfigOrBuilder() * *
      * The name of the Google Compute Engine
-     * [subnetwork](/compute/docs/subnetworks) to which the
+     * [subnetwork](https://cloud.google.com/compute/docs/subnetworks) to which the
      * cluster is connected.
      * 
* @@ -6242,7 +6242,7 @@ public java.lang.String getSubnetwork() { * *
      * The name of the Google Compute Engine
-     * [subnetwork](/compute/docs/subnetworks) to which the
+     * [subnetwork](https://cloud.google.com/compute/docs/subnetworks) to which the
      * cluster is connected.
      * 
* @@ -6266,7 +6266,7 @@ public com.google.protobuf.ByteString getSubnetworkBytes() { * *
      * The name of the Google Compute Engine
-     * [subnetwork](/compute/docs/subnetworks) to which the
+     * [subnetwork](https://cloud.google.com/compute/docs/subnetworks) to which the
      * cluster is connected.
      * 
* @@ -6289,7 +6289,7 @@ public Builder setSubnetwork(java.lang.String value) { * *
      * The name of the Google Compute Engine
-     * [subnetwork](/compute/docs/subnetworks) to which the
+     * [subnetwork](https://cloud.google.com/compute/docs/subnetworks) to which the
      * cluster is connected.
      * 
* @@ -6308,7 +6308,7 @@ public Builder clearSubnetwork() { * *
      * The name of the Google Compute Engine
-     * [subnetwork](/compute/docs/subnetworks) to which the
+     * [subnetwork](https://cloud.google.com/compute/docs/subnetworks) to which the
      * cluster is connected.
      * 
* @@ -6726,7 +6726,7 @@ private void ensureLocationsIsMutable() { * *
      * The list of Google Compute Engine
-     * [zones](/compute/docs/zones#available) in which the cluster's nodes
+     * [zones](https://cloud.google.com/compute/docs/zones#available) in which the cluster's nodes
      * should be located.
      * 
* @@ -6742,7 +6742,7 @@ public com.google.protobuf.ProtocolStringList getLocationsList() { * *
      * The list of Google Compute Engine
-     * [zones](/compute/docs/zones#available) in which the cluster's nodes
+     * [zones](https://cloud.google.com/compute/docs/zones#available) in which the cluster's nodes
      * should be located.
      * 
* @@ -6758,7 +6758,7 @@ public int getLocationsCount() { * *
      * The list of Google Compute Engine
-     * [zones](/compute/docs/zones#available) in which the cluster's nodes
+     * [zones](https://cloud.google.com/compute/docs/zones#available) in which the cluster's nodes
      * should be located.
      * 
* @@ -6775,7 +6775,7 @@ public java.lang.String getLocations(int index) { * *
      * The list of Google Compute Engine
-     * [zones](/compute/docs/zones#available) in which the cluster's nodes
+     * [zones](https://cloud.google.com/compute/docs/zones#available) in which the cluster's nodes
      * should be located.
      * 
* @@ -6792,7 +6792,7 @@ public com.google.protobuf.ByteString getLocationsBytes(int index) { * *
      * The list of Google Compute Engine
-     * [zones](/compute/docs/zones#available) in which the cluster's nodes
+     * [zones](https://cloud.google.com/compute/docs/zones#available) in which the cluster's nodes
      * should be located.
      * 
* @@ -6816,7 +6816,7 @@ public Builder setLocations(int index, java.lang.String value) { * *
      * The list of Google Compute Engine
-     * [zones](/compute/docs/zones#available) in which the cluster's nodes
+     * [zones](https://cloud.google.com/compute/docs/zones#available) in which the cluster's nodes
      * should be located.
      * 
* @@ -6839,7 +6839,7 @@ public Builder addLocations(java.lang.String value) { * *
      * The list of Google Compute Engine
-     * [zones](/compute/docs/zones#available) in which the cluster's nodes
+     * [zones](https://cloud.google.com/compute/docs/zones#available) in which the cluster's nodes
      * should be located.
      * 
* @@ -6859,7 +6859,7 @@ public Builder addAllLocations(java.lang.Iterable values) { * *
      * The list of Google Compute Engine
-     * [zones](/compute/docs/zones#available) in which the cluster's nodes
+     * [zones](https://cloud.google.com/compute/docs/zones#available) in which the cluster's nodes
      * should be located.
      * 
* @@ -6878,7 +6878,7 @@ public Builder clearLocations() { * *
      * The list of Google Compute Engine
-     * [zones](/compute/docs/zones#available) in which the cluster's nodes
+     * [zones](https://cloud.google.com/compute/docs/zones#available) in which the cluster's nodes
      * should be located.
      * 
* @@ -10021,7 +10021,7 @@ public Builder setSelfLinkBytes(com.google.protobuf.ByteString value) { * *
      * [Output only] The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field is deprecated, use location instead.
      * 
@@ -10047,7 +10047,7 @@ public java.lang.String getZone() { * *
      * [Output only] The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field is deprecated, use location instead.
      * 
@@ -10073,7 +10073,7 @@ public com.google.protobuf.ByteString getZoneBytes() { * *
      * [Output only] The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field is deprecated, use location instead.
      * 
@@ -10098,7 +10098,7 @@ public Builder setZone(java.lang.String value) { * *
      * [Output only] The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field is deprecated, use location instead.
      * 
@@ -10119,7 +10119,7 @@ public Builder clearZone() { * *
      * [Output only] The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field is deprecated, use location instead.
      * 
@@ -10535,7 +10535,7 @@ public Builder setCurrentMasterVersionBytes(com.google.protobuf.ByteString value * *
      * [Output only] Deprecated, use
-     * [NodePools.version](/kubernetes-engine/docs/reference/rest/v1/projects.zones.clusters.nodePools)
+     * [NodePools.version](https://cloud.google.com/kubernetes-engine/docs/reference/rest/v1/projects.zones.clusters.nodePools)
      * instead. The current version of the node software components. If they are
      * currently at multiple versions because they're in the process of being
      * upgraded, this reflects the minimum version of all nodes.
@@ -10562,7 +10562,7 @@ public java.lang.String getCurrentNodeVersion() {
      *
      * 
      * [Output only] Deprecated, use
-     * [NodePools.version](/kubernetes-engine/docs/reference/rest/v1/projects.zones.clusters.nodePools)
+     * [NodePools.version](https://cloud.google.com/kubernetes-engine/docs/reference/rest/v1/projects.zones.clusters.nodePools)
      * instead. The current version of the node software components. If they are
      * currently at multiple versions because they're in the process of being
      * upgraded, this reflects the minimum version of all nodes.
@@ -10589,7 +10589,7 @@ public com.google.protobuf.ByteString getCurrentNodeVersionBytes() {
      *
      * 
      * [Output only] Deprecated, use
-     * [NodePools.version](/kubernetes-engine/docs/reference/rest/v1/projects.zones.clusters.nodePools)
+     * [NodePools.version](https://cloud.google.com/kubernetes-engine/docs/reference/rest/v1/projects.zones.clusters.nodePools)
      * instead. The current version of the node software components. If they are
      * currently at multiple versions because they're in the process of being
      * upgraded, this reflects the minimum version of all nodes.
@@ -10615,7 +10615,7 @@ public Builder setCurrentNodeVersion(java.lang.String value) {
      *
      * 
      * [Output only] Deprecated, use
-     * [NodePools.version](/kubernetes-engine/docs/reference/rest/v1/projects.zones.clusters.nodePools)
+     * [NodePools.version](https://cloud.google.com/kubernetes-engine/docs/reference/rest/v1/projects.zones.clusters.nodePools)
      * instead. The current version of the node software components. If they are
      * currently at multiple versions because they're in the process of being
      * upgraded, this reflects the minimum version of all nodes.
@@ -10637,7 +10637,7 @@ public Builder clearCurrentNodeVersion() {
      *
      * 
      * [Output only] Deprecated, use
-     * [NodePools.version](/kubernetes-engine/docs/reference/rest/v1/projects.zones.clusters.nodePools)
+     * [NodePools.version](https://cloud.google.com/kubernetes-engine/docs/reference/rest/v1/projects.zones.clusters.nodePools)
      * instead. The current version of the node software components. If they are
      * currently at multiple versions because they're in the process of being
      * upgraded, this reflects the minimum version of all nodes.
@@ -11507,8 +11507,8 @@ public Builder setExpireTimeBytes(com.google.protobuf.ByteString value) {
      *
      * 
      * [Output only] The name of the Google Compute Engine
-     * [zone](/compute/docs/regions-zones/regions-zones#available) or
-     * [region](/compute/docs/regions-zones/regions-zones#available) in which
+     * [zone](https://cloud.google.com/compute/docs/regions-zones/regions-zones#available) or
+     * [region](https://cloud.google.com/compute/docs/regions-zones/regions-zones#available) in which
      * the cluster resides.
      * 
* @@ -11532,8 +11532,8 @@ public java.lang.String getLocation() { * *
      * [Output only] The name of the Google Compute Engine
-     * [zone](/compute/docs/regions-zones/regions-zones#available) or
-     * [region](/compute/docs/regions-zones/regions-zones#available) in which
+     * [zone](https://cloud.google.com/compute/docs/regions-zones/regions-zones#available) or
+     * [region](https://cloud.google.com/compute/docs/regions-zones/regions-zones#available) in which
      * the cluster resides.
      * 
* @@ -11557,8 +11557,8 @@ public com.google.protobuf.ByteString getLocationBytes() { * *
      * [Output only] The name of the Google Compute Engine
-     * [zone](/compute/docs/regions-zones/regions-zones#available) or
-     * [region](/compute/docs/regions-zones/regions-zones#available) in which
+     * [zone](https://cloud.google.com/compute/docs/regions-zones/regions-zones#available) or
+     * [region](https://cloud.google.com/compute/docs/regions-zones/regions-zones#available) in which
      * the cluster resides.
      * 
* @@ -11581,8 +11581,8 @@ public Builder setLocation(java.lang.String value) { * *
      * [Output only] The name of the Google Compute Engine
-     * [zone](/compute/docs/regions-zones/regions-zones#available) or
-     * [region](/compute/docs/regions-zones/regions-zones#available) in which
+     * [zone](https://cloud.google.com/compute/docs/regions-zones/regions-zones#available) or
+     * [region](https://cloud.google.com/compute/docs/regions-zones/regions-zones#available) in which
      * the cluster resides.
      * 
* @@ -11601,8 +11601,8 @@ public Builder clearLocation() { * *
      * [Output only] The name of the Google Compute Engine
-     * [zone](/compute/docs/regions-zones/regions-zones#available) or
-     * [region](/compute/docs/regions-zones/regions-zones#available) in which
+     * [zone](https://cloud.google.com/compute/docs/regions-zones/regions-zones#available) or
+     * [region](https://cloud.google.com/compute/docs/regions-zones/regions-zones#available) in which
      * the cluster resides.
      * 
* diff --git a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/ClusterAutoscaling.java b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/ClusterAutoscaling.java index dd83edd0..3b880f3f 100644 --- a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/ClusterAutoscaling.java +++ b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/ClusterAutoscaling.java @@ -307,7 +307,7 @@ public boolean hasAutoprovisioningNodePoolDefaults() { * * *
-   * The list of Google Compute Engine [zones](/compute/docs/zones#available)
+   * The list of Google Compute Engine [zones](https://cloud.google.com/compute/docs/zones#available)
    * in which the NodePool's nodes can be created by NAP.
    * 
* @@ -322,7 +322,7 @@ public com.google.protobuf.ProtocolStringList getAutoprovisioningLocationsList() * * *
-   * The list of Google Compute Engine [zones](/compute/docs/zones#available)
+   * The list of Google Compute Engine [zones](https://cloud.google.com/compute/docs/zones#available)
    * in which the NodePool's nodes can be created by NAP.
    * 
* @@ -337,7 +337,7 @@ public int getAutoprovisioningLocationsCount() { * * *
-   * The list of Google Compute Engine [zones](/compute/docs/zones#available)
+   * The list of Google Compute Engine [zones](https://cloud.google.com/compute/docs/zones#available)
    * in which the NodePool's nodes can be created by NAP.
    * 
* @@ -353,7 +353,7 @@ public java.lang.String getAutoprovisioningLocations(int index) { * * *
-   * The list of Google Compute Engine [zones](/compute/docs/zones#available)
+   * The list of Google Compute Engine [zones](https://cloud.google.com/compute/docs/zones#available)
    * in which the NodePool's nodes can be created by NAP.
    * 
* @@ -1467,7 +1467,7 @@ private void ensureAutoprovisioningLocationsIsMutable() { * * *
-     * The list of Google Compute Engine [zones](/compute/docs/zones#available)
+     * The list of Google Compute Engine [zones](https://cloud.google.com/compute/docs/zones#available)
      * in which the NodePool's nodes can be created by NAP.
      * 
* @@ -1482,7 +1482,7 @@ public com.google.protobuf.ProtocolStringList getAutoprovisioningLocationsList() * * *
-     * The list of Google Compute Engine [zones](/compute/docs/zones#available)
+     * The list of Google Compute Engine [zones](https://cloud.google.com/compute/docs/zones#available)
      * in which the NodePool's nodes can be created by NAP.
      * 
* @@ -1497,7 +1497,7 @@ public int getAutoprovisioningLocationsCount() { * * *
-     * The list of Google Compute Engine [zones](/compute/docs/zones#available)
+     * The list of Google Compute Engine [zones](https://cloud.google.com/compute/docs/zones#available)
      * in which the NodePool's nodes can be created by NAP.
      * 
* @@ -1513,7 +1513,7 @@ public java.lang.String getAutoprovisioningLocations(int index) { * * *
-     * The list of Google Compute Engine [zones](/compute/docs/zones#available)
+     * The list of Google Compute Engine [zones](https://cloud.google.com/compute/docs/zones#available)
      * in which the NodePool's nodes can be created by NAP.
      * 
* @@ -1529,7 +1529,7 @@ public com.google.protobuf.ByteString getAutoprovisioningLocationsBytes(int inde * * *
-     * The list of Google Compute Engine [zones](/compute/docs/zones#available)
+     * The list of Google Compute Engine [zones](https://cloud.google.com/compute/docs/zones#available)
      * in which the NodePool's nodes can be created by NAP.
      * 
* @@ -1552,7 +1552,7 @@ public Builder setAutoprovisioningLocations(int index, java.lang.String value) { * * *
-     * The list of Google Compute Engine [zones](/compute/docs/zones#available)
+     * The list of Google Compute Engine [zones](https://cloud.google.com/compute/docs/zones#available)
      * in which the NodePool's nodes can be created by NAP.
      * 
* @@ -1574,7 +1574,7 @@ public Builder addAutoprovisioningLocations(java.lang.String value) { * * *
-     * The list of Google Compute Engine [zones](/compute/docs/zones#available)
+     * The list of Google Compute Engine [zones](https://cloud.google.com/compute/docs/zones#available)
      * in which the NodePool's nodes can be created by NAP.
      * 
* @@ -1593,7 +1593,7 @@ public Builder addAllAutoprovisioningLocations(java.lang.Iterable - * The list of Google Compute Engine [zones](/compute/docs/zones#available) + * The list of Google Compute Engine [zones](https://cloud.google.com/compute/docs/zones#available) * in which the NodePool's nodes can be created by NAP. *
* @@ -1611,7 +1611,7 @@ public Builder clearAutoprovisioningLocations() { * * *
-     * The list of Google Compute Engine [zones](/compute/docs/zones#available)
+     * The list of Google Compute Engine [zones](https://cloud.google.com/compute/docs/zones#available)
      * in which the NodePool's nodes can be created by NAP.
      * 
* diff --git a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/ClusterAutoscalingOrBuilder.java b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/ClusterAutoscalingOrBuilder.java index 313b1228..22146c53 100644 --- a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/ClusterAutoscalingOrBuilder.java +++ b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/ClusterAutoscalingOrBuilder.java @@ -142,7 +142,7 @@ public interface ClusterAutoscalingOrBuilder * * *
-   * The list of Google Compute Engine [zones](/compute/docs/zones#available)
+   * The list of Google Compute Engine [zones](https://cloud.google.com/compute/docs/zones#available)
    * in which the NodePool's nodes can be created by NAP.
    * 
* @@ -155,7 +155,7 @@ public interface ClusterAutoscalingOrBuilder * * *
-   * The list of Google Compute Engine [zones](/compute/docs/zones#available)
+   * The list of Google Compute Engine [zones](https://cloud.google.com/compute/docs/zones#available)
    * in which the NodePool's nodes can be created by NAP.
    * 
* @@ -168,7 +168,7 @@ public interface ClusterAutoscalingOrBuilder * * *
-   * The list of Google Compute Engine [zones](/compute/docs/zones#available)
+   * The list of Google Compute Engine [zones](https://cloud.google.com/compute/docs/zones#available)
    * in which the NodePool's nodes can be created by NAP.
    * 
* @@ -182,7 +182,7 @@ public interface ClusterAutoscalingOrBuilder * * *
-   * The list of Google Compute Engine [zones](/compute/docs/zones#available)
+   * The list of Google Compute Engine [zones](https://cloud.google.com/compute/docs/zones#available)
    * in which the NodePool's nodes can be created by NAP.
    * 
* diff --git a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/ClusterOrBuilder.java b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/ClusterOrBuilder.java index 189dbbdd..9a429f24 100644 --- a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/ClusterOrBuilder.java +++ b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/ClusterOrBuilder.java @@ -292,7 +292,7 @@ public interface ClusterOrBuilder * *
    * The name of the Google Compute Engine
-   * [network](/compute/docs/networks-and-firewalls#networks) to which the
+   * [network](https://cloud.google.com/compute/docs/networks-and-firewalls#networks) to which the
    * cluster is connected. If left unspecified, the `default` network
    * will be used.
    * 
@@ -307,7 +307,7 @@ public interface ClusterOrBuilder * *
    * The name of the Google Compute Engine
-   * [network](/compute/docs/networks-and-firewalls#networks) to which the
+   * [network](https://cloud.google.com/compute/docs/networks-and-firewalls#networks) to which the
    * cluster is connected. If left unspecified, the `default` network
    * will be used.
    * 
@@ -389,7 +389,7 @@ public interface ClusterOrBuilder * *
    * The name of the Google Compute Engine
-   * [subnetwork](/compute/docs/subnetworks) to which the
+   * [subnetwork](https://cloud.google.com/compute/docs/subnetworks) to which the
    * cluster is connected.
    * 
* @@ -403,7 +403,7 @@ public interface ClusterOrBuilder * *
    * The name of the Google Compute Engine
-   * [subnetwork](/compute/docs/subnetworks) to which the
+   * [subnetwork](https://cloud.google.com/compute/docs/subnetworks) to which the
    * cluster is connected.
    * 
* @@ -479,7 +479,7 @@ public interface ClusterOrBuilder * *
    * The list of Google Compute Engine
-   * [zones](/compute/docs/zones#available) in which the cluster's nodes
+   * [zones](https://cloud.google.com/compute/docs/zones#available) in which the cluster's nodes
    * should be located.
    * 
* @@ -493,7 +493,7 @@ public interface ClusterOrBuilder * *
    * The list of Google Compute Engine
-   * [zones](/compute/docs/zones#available) in which the cluster's nodes
+   * [zones](https://cloud.google.com/compute/docs/zones#available) in which the cluster's nodes
    * should be located.
    * 
* @@ -507,7 +507,7 @@ public interface ClusterOrBuilder * *
    * The list of Google Compute Engine
-   * [zones](/compute/docs/zones#available) in which the cluster's nodes
+   * [zones](https://cloud.google.com/compute/docs/zones#available) in which the cluster's nodes
    * should be located.
    * 
* @@ -522,7 +522,7 @@ public interface ClusterOrBuilder * *
    * The list of Google Compute Engine
-   * [zones](/compute/docs/zones#available) in which the cluster's nodes
+   * [zones](https://cloud.google.com/compute/docs/zones#available) in which the cluster's nodes
    * should be located.
    * 
* @@ -1173,7 +1173,7 @@ public interface ClusterOrBuilder * *
    * [Output only] The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * This field is deprecated, use location instead.
    * 
@@ -1189,7 +1189,7 @@ public interface ClusterOrBuilder * *
    * [Output only] The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * This field is deprecated, use location instead.
    * 
@@ -1309,7 +1309,7 @@ public interface ClusterOrBuilder * *
    * [Output only] Deprecated, use
-   * [NodePools.version](/kubernetes-engine/docs/reference/rest/v1/projects.zones.clusters.nodePools)
+   * [NodePools.version](https://cloud.google.com/kubernetes-engine/docs/reference/rest/v1/projects.zones.clusters.nodePools)
    * instead. The current version of the node software components. If they are
    * currently at multiple versions because they're in the process of being
    * upgraded, this reflects the minimum version of all nodes.
@@ -1326,7 +1326,7 @@ public interface ClusterOrBuilder
    *
    * 
    * [Output only] Deprecated, use
-   * [NodePools.version](/kubernetes-engine/docs/reference/rest/v1/projects.zones.clusters.nodePools)
+   * [NodePools.version](https://cloud.google.com/kubernetes-engine/docs/reference/rest/v1/projects.zones.clusters.nodePools)
    * instead. The current version of the node software components. If they are
    * currently at multiple versions because they're in the process of being
    * upgraded, this reflects the minimum version of all nodes.
@@ -1569,8 +1569,8 @@ public interface ClusterOrBuilder
    *
    * 
    * [Output only] The name of the Google Compute Engine
-   * [zone](/compute/docs/regions-zones/regions-zones#available) or
-   * [region](/compute/docs/regions-zones/regions-zones#available) in which
+   * [zone](https://cloud.google.com/compute/docs/regions-zones/regions-zones#available) or
+   * [region](https://cloud.google.com/compute/docs/regions-zones/regions-zones#available) in which
    * the cluster resides.
    * 
* @@ -1584,8 +1584,8 @@ public interface ClusterOrBuilder * *
    * [Output only] The name of the Google Compute Engine
-   * [zone](/compute/docs/regions-zones/regions-zones#available) or
-   * [region](/compute/docs/regions-zones/regions-zones#available) in which
+   * [zone](https://cloud.google.com/compute/docs/regions-zones/regions-zones#available) or
+   * [region](https://cloud.google.com/compute/docs/regions-zones/regions-zones#available) in which
    * the cluster resides.
    * 
* diff --git a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/ClusterServiceProto.java b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/ClusterServiceProto.java index 373eb8e4..c96207ad 100644 --- a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/ClusterServiceProto.java +++ b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/ClusterServiceProto.java @@ -1001,12 +1001,13 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "tworksResponse\"<\202\323\344\223\0026\0224/v1/{parent=proj" + "ects/*}/aggregated/usableSubnetworks\032L\312A" + "\030container.googleapis.com\322A.https://www." - + "googleapis.com/auth/cloud-platformB\246\001\n\027c" + + "googleapis.com/auth/cloud-platformB\305\001\n\027c" + "om.google.container.v1B\023ClusterServicePr" + "otoP\001Z * The desired list of Google Compute Engine - * [zones](/compute/docs/zones#available) in which the cluster's nodes + * [zones](https://cloud.google.com/compute/docs/zones#available) in which the cluster's nodes * should be located. Changing the locations a cluster is in will result * in nodes being either created or removed from the cluster, depending on * whether locations are being added or removed. @@ -709,7 +709,7 @@ public com.google.protobuf.ProtocolStringList getDesiredLocationsList() { * *
    * The desired list of Google Compute Engine
-   * [zones](/compute/docs/zones#available) in which the cluster's nodes
+   * [zones](https://cloud.google.com/compute/docs/zones#available) in which the cluster's nodes
    * should be located. Changing the locations a cluster is in will result
    * in nodes being either created or removed from the cluster, depending on
    * whether locations are being added or removed.
@@ -728,7 +728,7 @@ public int getDesiredLocationsCount() {
    *
    * 
    * The desired list of Google Compute Engine
-   * [zones](/compute/docs/zones#available) in which the cluster's nodes
+   * [zones](https://cloud.google.com/compute/docs/zones#available) in which the cluster's nodes
    * should be located. Changing the locations a cluster is in will result
    * in nodes being either created or removed from the cluster, depending on
    * whether locations are being added or removed.
@@ -748,7 +748,7 @@ public java.lang.String getDesiredLocations(int index) {
    *
    * 
    * The desired list of Google Compute Engine
-   * [zones](/compute/docs/zones#available) in which the cluster's nodes
+   * [zones](https://cloud.google.com/compute/docs/zones#available) in which the cluster's nodes
    * should be located. Changing the locations a cluster is in will result
    * in nodes being either created or removed from the cluster, depending on
    * whether locations are being added or removed.
@@ -3002,7 +3002,7 @@ private void ensureDesiredLocationsIsMutable() {
      *
      * 
      * The desired list of Google Compute Engine
-     * [zones](/compute/docs/zones#available) in which the cluster's nodes
+     * [zones](https://cloud.google.com/compute/docs/zones#available) in which the cluster's nodes
      * should be located. Changing the locations a cluster is in will result
      * in nodes being either created or removed from the cluster, depending on
      * whether locations are being added or removed.
@@ -3021,7 +3021,7 @@ public com.google.protobuf.ProtocolStringList getDesiredLocationsList() {
      *
      * 
      * The desired list of Google Compute Engine
-     * [zones](/compute/docs/zones#available) in which the cluster's nodes
+     * [zones](https://cloud.google.com/compute/docs/zones#available) in which the cluster's nodes
      * should be located. Changing the locations a cluster is in will result
      * in nodes being either created or removed from the cluster, depending on
      * whether locations are being added or removed.
@@ -3040,7 +3040,7 @@ public int getDesiredLocationsCount() {
      *
      * 
      * The desired list of Google Compute Engine
-     * [zones](/compute/docs/zones#available) in which the cluster's nodes
+     * [zones](https://cloud.google.com/compute/docs/zones#available) in which the cluster's nodes
      * should be located. Changing the locations a cluster is in will result
      * in nodes being either created or removed from the cluster, depending on
      * whether locations are being added or removed.
@@ -3060,7 +3060,7 @@ public java.lang.String getDesiredLocations(int index) {
      *
      * 
      * The desired list of Google Compute Engine
-     * [zones](/compute/docs/zones#available) in which the cluster's nodes
+     * [zones](https://cloud.google.com/compute/docs/zones#available) in which the cluster's nodes
      * should be located. Changing the locations a cluster is in will result
      * in nodes being either created or removed from the cluster, depending on
      * whether locations are being added or removed.
@@ -3080,7 +3080,7 @@ public com.google.protobuf.ByteString getDesiredLocationsBytes(int index) {
      *
      * 
      * The desired list of Google Compute Engine
-     * [zones](/compute/docs/zones#available) in which the cluster's nodes
+     * [zones](https://cloud.google.com/compute/docs/zones#available) in which the cluster's nodes
      * should be located. Changing the locations a cluster is in will result
      * in nodes being either created or removed from the cluster, depending on
      * whether locations are being added or removed.
@@ -3107,7 +3107,7 @@ public Builder setDesiredLocations(int index, java.lang.String value) {
      *
      * 
      * The desired list of Google Compute Engine
-     * [zones](/compute/docs/zones#available) in which the cluster's nodes
+     * [zones](https://cloud.google.com/compute/docs/zones#available) in which the cluster's nodes
      * should be located. Changing the locations a cluster is in will result
      * in nodes being either created or removed from the cluster, depending on
      * whether locations are being added or removed.
@@ -3133,7 +3133,7 @@ public Builder addDesiredLocations(java.lang.String value) {
      *
      * 
      * The desired list of Google Compute Engine
-     * [zones](/compute/docs/zones#available) in which the cluster's nodes
+     * [zones](https://cloud.google.com/compute/docs/zones#available) in which the cluster's nodes
      * should be located. Changing the locations a cluster is in will result
      * in nodes being either created or removed from the cluster, depending on
      * whether locations are being added or removed.
@@ -3156,7 +3156,7 @@ public Builder addAllDesiredLocations(java.lang.Iterable value
      *
      * 
      * The desired list of Google Compute Engine
-     * [zones](/compute/docs/zones#available) in which the cluster's nodes
+     * [zones](https://cloud.google.com/compute/docs/zones#available) in which the cluster's nodes
      * should be located. Changing the locations a cluster is in will result
      * in nodes being either created or removed from the cluster, depending on
      * whether locations are being added or removed.
@@ -3178,7 +3178,7 @@ public Builder clearDesiredLocations() {
      *
      * 
      * The desired list of Google Compute Engine
-     * [zones](/compute/docs/zones#available) in which the cluster's nodes
+     * [zones](https://cloud.google.com/compute/docs/zones#available) in which the cluster's nodes
      * should be located. Changing the locations a cluster is in will result
      * in nodes being either created or removed from the cluster, depending on
      * whether locations are being added or removed.
diff --git a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/ClusterUpdateOrBuilder.java b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/ClusterUpdateOrBuilder.java
index e9873c13..b989d362 100644
--- a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/ClusterUpdateOrBuilder.java
+++ b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/ClusterUpdateOrBuilder.java
@@ -276,7 +276,7 @@ public interface ClusterUpdateOrBuilder
    *
    * 
    * The desired list of Google Compute Engine
-   * [zones](/compute/docs/zones#available) in which the cluster's nodes
+   * [zones](https://cloud.google.com/compute/docs/zones#available) in which the cluster's nodes
    * should be located. Changing the locations a cluster is in will result
    * in nodes being either created or removed from the cluster, depending on
    * whether locations are being added or removed.
@@ -293,7 +293,7 @@ public interface ClusterUpdateOrBuilder
    *
    * 
    * The desired list of Google Compute Engine
-   * [zones](/compute/docs/zones#available) in which the cluster's nodes
+   * [zones](https://cloud.google.com/compute/docs/zones#available) in which the cluster's nodes
    * should be located. Changing the locations a cluster is in will result
    * in nodes being either created or removed from the cluster, depending on
    * whether locations are being added or removed.
@@ -310,7 +310,7 @@ public interface ClusterUpdateOrBuilder
    *
    * 
    * The desired list of Google Compute Engine
-   * [zones](/compute/docs/zones#available) in which the cluster's nodes
+   * [zones](https://cloud.google.com/compute/docs/zones#available) in which the cluster's nodes
    * should be located. Changing the locations a cluster is in will result
    * in nodes being either created or removed from the cluster, depending on
    * whether locations are being added or removed.
@@ -328,7 +328,7 @@ public interface ClusterUpdateOrBuilder
    *
    * 
    * The desired list of Google Compute Engine
-   * [zones](/compute/docs/zones#available) in which the cluster's nodes
+   * [zones](https://cloud.google.com/compute/docs/zones#available) in which the cluster's nodes
    * should be located. Changing the locations a cluster is in will result
    * in nodes being either created or removed from the cluster, depending on
    * whether locations are being added or removed.
diff --git a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/CompleteIPRotationRequest.java b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/CompleteIPRotationRequest.java
index f3e1033b..77c6802b 100644
--- a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/CompleteIPRotationRequest.java
+++ b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/CompleteIPRotationRequest.java
@@ -195,7 +195,7 @@ public com.google.protobuf.ByteString getProjectIdBytes() {
    *
    * 
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * This field has been deprecated and replaced by the name field.
    * 
@@ -221,7 +221,7 @@ public java.lang.String getZone() { * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * This field has been deprecated and replaced by the name field.
    * 
@@ -836,7 +836,7 @@ public Builder setProjectIdBytes(com.google.protobuf.ByteString value) { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
@@ -862,7 +862,7 @@ public java.lang.String getZone() { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
@@ -888,7 +888,7 @@ public com.google.protobuf.ByteString getZoneBytes() { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
@@ -913,7 +913,7 @@ public Builder setZone(java.lang.String value) { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
@@ -934,7 +934,7 @@ public Builder clearZone() { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
diff --git a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/CompleteIPRotationRequestOrBuilder.java b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/CompleteIPRotationRequestOrBuilder.java index 304aa3d5..2e9f0daa 100644 --- a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/CompleteIPRotationRequestOrBuilder.java +++ b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/CompleteIPRotationRequestOrBuilder.java @@ -59,7 +59,7 @@ public interface CompleteIPRotationRequestOrBuilder * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * This field has been deprecated and replaced by the name field.
    * 
@@ -75,7 +75,7 @@ public interface CompleteIPRotationRequestOrBuilder * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * This field has been deprecated and replaced by the name field.
    * 
diff --git a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/CreateClusterRequest.java b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/CreateClusterRequest.java index b52611c0..847ff420 100644 --- a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/CreateClusterRequest.java +++ b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/CreateClusterRequest.java @@ -202,7 +202,7 @@ public com.google.protobuf.ByteString getProjectIdBytes() { * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * This field has been deprecated and replaced by the parent field.
    * 
@@ -228,7 +228,7 @@ public java.lang.String getZone() { * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * This field has been deprecated and replaced by the parent field.
    * 
@@ -257,7 +257,7 @@ public com.google.protobuf.ByteString getZoneBytes() { * *
    * Required. A [cluster
-   * resource](/container-engine/reference/rest/v1/projects.zones.clusters)
+   * resource](https://cloud.google.com/container-engine/reference/rest/v1/projects.zones.clusters)
    * 
* * .google.container.v1.Cluster cluster = 3 [(.google.api.field_behavior) = REQUIRED]; @@ -273,7 +273,7 @@ public boolean hasCluster() { * *
    * Required. A [cluster
-   * resource](/container-engine/reference/rest/v1/projects.zones.clusters)
+   * resource](https://cloud.google.com/container-engine/reference/rest/v1/projects.zones.clusters)
    * 
* * .google.container.v1.Cluster cluster = 3 [(.google.api.field_behavior) = REQUIRED]; @@ -289,7 +289,7 @@ public com.google.container.v1.Cluster getCluster() { * *
    * Required. A [cluster
-   * resource](/container-engine/reference/rest/v1/projects.zones.clusters)
+   * resource](https://cloud.google.com/container-engine/reference/rest/v1/projects.zones.clusters)
    * 
* * .google.container.v1.Cluster cluster = 3 [(.google.api.field_behavior) = REQUIRED]; @@ -851,7 +851,7 @@ public Builder setProjectIdBytes(com.google.protobuf.ByteString value) { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the parent field.
      * 
@@ -877,7 +877,7 @@ public java.lang.String getZone() { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the parent field.
      * 
@@ -903,7 +903,7 @@ public com.google.protobuf.ByteString getZoneBytes() { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the parent field.
      * 
@@ -928,7 +928,7 @@ public Builder setZone(java.lang.String value) { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the parent field.
      * 
@@ -949,7 +949,7 @@ public Builder clearZone() { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the parent field.
      * 
@@ -982,7 +982,7 @@ public Builder setZoneBytes(com.google.protobuf.ByteString value) { * *
      * Required. A [cluster
-     * resource](/container-engine/reference/rest/v1/projects.zones.clusters)
+     * resource](https://cloud.google.com/container-engine/reference/rest/v1/projects.zones.clusters)
      * 
* * .google.container.v1.Cluster cluster = 3 [(.google.api.field_behavior) = REQUIRED]; @@ -998,7 +998,7 @@ public boolean hasCluster() { * *
      * Required. A [cluster
-     * resource](/container-engine/reference/rest/v1/projects.zones.clusters)
+     * resource](https://cloud.google.com/container-engine/reference/rest/v1/projects.zones.clusters)
      * 
* * .google.container.v1.Cluster cluster = 3 [(.google.api.field_behavior) = REQUIRED]; @@ -1018,7 +1018,7 @@ public com.google.container.v1.Cluster getCluster() { * *
      * Required. A [cluster
-     * resource](/container-engine/reference/rest/v1/projects.zones.clusters)
+     * resource](https://cloud.google.com/container-engine/reference/rest/v1/projects.zones.clusters)
      * 
* * .google.container.v1.Cluster cluster = 3 [(.google.api.field_behavior) = REQUIRED]; @@ -1042,7 +1042,7 @@ public Builder setCluster(com.google.container.v1.Cluster value) { * *
      * Required. A [cluster
-     * resource](/container-engine/reference/rest/v1/projects.zones.clusters)
+     * resource](https://cloud.google.com/container-engine/reference/rest/v1/projects.zones.clusters)
      * 
* * .google.container.v1.Cluster cluster = 3 [(.google.api.field_behavior) = REQUIRED]; @@ -1063,7 +1063,7 @@ public Builder setCluster(com.google.container.v1.Cluster.Builder builderForValu * *
      * Required. A [cluster
-     * resource](/container-engine/reference/rest/v1/projects.zones.clusters)
+     * resource](https://cloud.google.com/container-engine/reference/rest/v1/projects.zones.clusters)
      * 
* * .google.container.v1.Cluster cluster = 3 [(.google.api.field_behavior) = REQUIRED]; @@ -1089,7 +1089,7 @@ public Builder mergeCluster(com.google.container.v1.Cluster value) { * *
      * Required. A [cluster
-     * resource](/container-engine/reference/rest/v1/projects.zones.clusters)
+     * resource](https://cloud.google.com/container-engine/reference/rest/v1/projects.zones.clusters)
      * 
* * .google.container.v1.Cluster cluster = 3 [(.google.api.field_behavior) = REQUIRED]; @@ -1111,7 +1111,7 @@ public Builder clearCluster() { * *
      * Required. A [cluster
-     * resource](/container-engine/reference/rest/v1/projects.zones.clusters)
+     * resource](https://cloud.google.com/container-engine/reference/rest/v1/projects.zones.clusters)
      * 
* * .google.container.v1.Cluster cluster = 3 [(.google.api.field_behavior) = REQUIRED]; @@ -1127,7 +1127,7 @@ public com.google.container.v1.Cluster.Builder getClusterBuilder() { * *
      * Required. A [cluster
-     * resource](/container-engine/reference/rest/v1/projects.zones.clusters)
+     * resource](https://cloud.google.com/container-engine/reference/rest/v1/projects.zones.clusters)
      * 
* * .google.container.v1.Cluster cluster = 3 [(.google.api.field_behavior) = REQUIRED]; @@ -1145,7 +1145,7 @@ public com.google.container.v1.ClusterOrBuilder getClusterOrBuilder() { * *
      * Required. A [cluster
-     * resource](/container-engine/reference/rest/v1/projects.zones.clusters)
+     * resource](https://cloud.google.com/container-engine/reference/rest/v1/projects.zones.clusters)
      * 
* * .google.container.v1.Cluster cluster = 3 [(.google.api.field_behavior) = REQUIRED]; diff --git a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/CreateClusterRequestOrBuilder.java b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/CreateClusterRequestOrBuilder.java index fa8d2231..f3e5a982 100644 --- a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/CreateClusterRequestOrBuilder.java +++ b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/CreateClusterRequestOrBuilder.java @@ -59,7 +59,7 @@ public interface CreateClusterRequestOrBuilder * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * This field has been deprecated and replaced by the parent field.
    * 
@@ -75,7 +75,7 @@ public interface CreateClusterRequestOrBuilder * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * This field has been deprecated and replaced by the parent field.
    * 
@@ -92,7 +92,7 @@ public interface CreateClusterRequestOrBuilder * *
    * Required. A [cluster
-   * resource](/container-engine/reference/rest/v1/projects.zones.clusters)
+   * resource](https://cloud.google.com/container-engine/reference/rest/v1/projects.zones.clusters)
    * 
* * .google.container.v1.Cluster cluster = 3 [(.google.api.field_behavior) = REQUIRED]; @@ -106,7 +106,7 @@ public interface CreateClusterRequestOrBuilder * *
    * Required. A [cluster
-   * resource](/container-engine/reference/rest/v1/projects.zones.clusters)
+   * resource](https://cloud.google.com/container-engine/reference/rest/v1/projects.zones.clusters)
    * 
* * .google.container.v1.Cluster cluster = 3 [(.google.api.field_behavior) = REQUIRED]; @@ -120,7 +120,7 @@ public interface CreateClusterRequestOrBuilder * *
    * Required. A [cluster
-   * resource](/container-engine/reference/rest/v1/projects.zones.clusters)
+   * resource](https://cloud.google.com/container-engine/reference/rest/v1/projects.zones.clusters)
    * 
* * .google.container.v1.Cluster cluster = 3 [(.google.api.field_behavior) = REQUIRED]; diff --git a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/CreateNodePoolRequest.java b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/CreateNodePoolRequest.java index 8d567ede..2eef427f 100644 --- a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/CreateNodePoolRequest.java +++ b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/CreateNodePoolRequest.java @@ -210,7 +210,7 @@ public com.google.protobuf.ByteString getProjectIdBytes() { * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * This field has been deprecated and replaced by the parent field.
    * 
@@ -236,7 +236,7 @@ public java.lang.String getZone() { * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * This field has been deprecated and replaced by the parent field.
    * 
@@ -925,7 +925,7 @@ public Builder setProjectIdBytes(com.google.protobuf.ByteString value) { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the parent field.
      * 
@@ -951,7 +951,7 @@ public java.lang.String getZone() { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the parent field.
      * 
@@ -977,7 +977,7 @@ public com.google.protobuf.ByteString getZoneBytes() { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the parent field.
      * 
@@ -1002,7 +1002,7 @@ public Builder setZone(java.lang.String value) { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the parent field.
      * 
@@ -1023,7 +1023,7 @@ public Builder clearZone() { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the parent field.
      * 
diff --git a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/CreateNodePoolRequestOrBuilder.java b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/CreateNodePoolRequestOrBuilder.java index 1d3e0e22..6fe5e05d 100644 --- a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/CreateNodePoolRequestOrBuilder.java +++ b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/CreateNodePoolRequestOrBuilder.java @@ -59,7 +59,7 @@ public interface CreateNodePoolRequestOrBuilder * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * This field has been deprecated and replaced by the parent field.
    * 
@@ -75,7 +75,7 @@ public interface CreateNodePoolRequestOrBuilder * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * This field has been deprecated and replaced by the parent field.
    * 
diff --git a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/DeleteClusterRequest.java b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/DeleteClusterRequest.java index 8585e83a..54676a5d 100644 --- a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/DeleteClusterRequest.java +++ b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/DeleteClusterRequest.java @@ -195,7 +195,7 @@ public com.google.protobuf.ByteString getProjectIdBytes() { * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * This field has been deprecated and replaced by the name field.
    * 
@@ -221,7 +221,7 @@ public java.lang.String getZone() { * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * This field has been deprecated and replaced by the name field.
    * 
@@ -834,7 +834,7 @@ public Builder setProjectIdBytes(com.google.protobuf.ByteString value) { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
@@ -860,7 +860,7 @@ public java.lang.String getZone() { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
@@ -886,7 +886,7 @@ public com.google.protobuf.ByteString getZoneBytes() { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
@@ -911,7 +911,7 @@ public Builder setZone(java.lang.String value) { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
@@ -932,7 +932,7 @@ public Builder clearZone() { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
diff --git a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/DeleteClusterRequestOrBuilder.java b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/DeleteClusterRequestOrBuilder.java index e8696073..0bb96e7b 100644 --- a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/DeleteClusterRequestOrBuilder.java +++ b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/DeleteClusterRequestOrBuilder.java @@ -59,7 +59,7 @@ public interface DeleteClusterRequestOrBuilder * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * This field has been deprecated and replaced by the name field.
    * 
@@ -75,7 +75,7 @@ public interface DeleteClusterRequestOrBuilder * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * This field has been deprecated and replaced by the name field.
    * 
diff --git a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/DeleteNodePoolRequest.java b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/DeleteNodePoolRequest.java index 22695b45..76749266 100644 --- a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/DeleteNodePoolRequest.java +++ b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/DeleteNodePoolRequest.java @@ -203,7 +203,7 @@ public com.google.protobuf.ByteString getProjectIdBytes() { * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * This field has been deprecated and replaced by the name field.
    * 
@@ -229,7 +229,7 @@ public java.lang.String getZone() { * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * This field has been deprecated and replaced by the name field.
    * 
@@ -911,7 +911,7 @@ public Builder setProjectIdBytes(com.google.protobuf.ByteString value) { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
@@ -937,7 +937,7 @@ public java.lang.String getZone() { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
@@ -963,7 +963,7 @@ public com.google.protobuf.ByteString getZoneBytes() { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
@@ -988,7 +988,7 @@ public Builder setZone(java.lang.String value) { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
@@ -1009,7 +1009,7 @@ public Builder clearZone() { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
diff --git a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/DeleteNodePoolRequestOrBuilder.java b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/DeleteNodePoolRequestOrBuilder.java index 91672131..302adab2 100644 --- a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/DeleteNodePoolRequestOrBuilder.java +++ b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/DeleteNodePoolRequestOrBuilder.java @@ -59,7 +59,7 @@ public interface DeleteNodePoolRequestOrBuilder * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * This field has been deprecated and replaced by the name field.
    * 
@@ -75,7 +75,7 @@ public interface DeleteNodePoolRequestOrBuilder * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * This field has been deprecated and replaced by the name field.
    * 
diff --git a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/GetClusterRequest.java b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/GetClusterRequest.java index 63523904..c51b375c 100644 --- a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/GetClusterRequest.java +++ b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/GetClusterRequest.java @@ -195,7 +195,7 @@ public com.google.protobuf.ByteString getProjectIdBytes() { * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * This field has been deprecated and replaced by the name field.
    * 
@@ -221,7 +221,7 @@ public java.lang.String getZone() { * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * This field has been deprecated and replaced by the name field.
    * 
@@ -834,7 +834,7 @@ public Builder setProjectIdBytes(com.google.protobuf.ByteString value) { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
@@ -860,7 +860,7 @@ public java.lang.String getZone() { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
@@ -886,7 +886,7 @@ public com.google.protobuf.ByteString getZoneBytes() { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
@@ -911,7 +911,7 @@ public Builder setZone(java.lang.String value) { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
@@ -932,7 +932,7 @@ public Builder clearZone() { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
diff --git a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/GetClusterRequestOrBuilder.java b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/GetClusterRequestOrBuilder.java index 1089289e..b335fdca 100644 --- a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/GetClusterRequestOrBuilder.java +++ b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/GetClusterRequestOrBuilder.java @@ -59,7 +59,7 @@ public interface GetClusterRequestOrBuilder * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * This field has been deprecated and replaced by the name field.
    * 
@@ -75,7 +75,7 @@ public interface GetClusterRequestOrBuilder * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * This field has been deprecated and replaced by the name field.
    * 
diff --git a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/GetNodePoolRequest.java b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/GetNodePoolRequest.java index 308c015b..932b1ada 100644 --- a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/GetNodePoolRequest.java +++ b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/GetNodePoolRequest.java @@ -203,7 +203,7 @@ public com.google.protobuf.ByteString getProjectIdBytes() { * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * This field has been deprecated and replaced by the name field.
    * 
@@ -229,7 +229,7 @@ public java.lang.String getZone() { * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * This field has been deprecated and replaced by the name field.
    * 
@@ -911,7 +911,7 @@ public Builder setProjectIdBytes(com.google.protobuf.ByteString value) { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
@@ -937,7 +937,7 @@ public java.lang.String getZone() { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
@@ -963,7 +963,7 @@ public com.google.protobuf.ByteString getZoneBytes() { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
@@ -988,7 +988,7 @@ public Builder setZone(java.lang.String value) { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
@@ -1009,7 +1009,7 @@ public Builder clearZone() { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
diff --git a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/GetNodePoolRequestOrBuilder.java b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/GetNodePoolRequestOrBuilder.java index ba062e4e..7ba7d378 100644 --- a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/GetNodePoolRequestOrBuilder.java +++ b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/GetNodePoolRequestOrBuilder.java @@ -59,7 +59,7 @@ public interface GetNodePoolRequestOrBuilder * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * This field has been deprecated and replaced by the name field.
    * 
@@ -75,7 +75,7 @@ public interface GetNodePoolRequestOrBuilder * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * This field has been deprecated and replaced by the name field.
    * 
diff --git a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/GetOperationRequest.java b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/GetOperationRequest.java index 63b7dbc0..f91aa1c5 100644 --- a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/GetOperationRequest.java +++ b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/GetOperationRequest.java @@ -195,7 +195,7 @@ public com.google.protobuf.ByteString getProjectIdBytes() { * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * This field has been deprecated and replaced by the name field.
    * 
@@ -221,7 +221,7 @@ public java.lang.String getZone() { * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * This field has been deprecated and replaced by the name field.
    * 
@@ -834,7 +834,7 @@ public Builder setProjectIdBytes(com.google.protobuf.ByteString value) { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
@@ -860,7 +860,7 @@ public java.lang.String getZone() { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
@@ -886,7 +886,7 @@ public com.google.protobuf.ByteString getZoneBytes() { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
@@ -911,7 +911,7 @@ public Builder setZone(java.lang.String value) { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
@@ -932,7 +932,7 @@ public Builder clearZone() { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
diff --git a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/GetOperationRequestOrBuilder.java b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/GetOperationRequestOrBuilder.java index 2d9a01dc..f53a8643 100644 --- a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/GetOperationRequestOrBuilder.java +++ b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/GetOperationRequestOrBuilder.java @@ -59,7 +59,7 @@ public interface GetOperationRequestOrBuilder * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * This field has been deprecated and replaced by the name field.
    * 
@@ -75,7 +75,7 @@ public interface GetOperationRequestOrBuilder * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * This field has been deprecated and replaced by the name field.
    * 
diff --git a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/GetServerConfigRequest.java b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/GetServerConfigRequest.java index 3200ac17..e97ac3be 100644 --- a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/GetServerConfigRequest.java +++ b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/GetServerConfigRequest.java @@ -187,7 +187,7 @@ public com.google.protobuf.ByteString getProjectIdBytes() { * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) to return operations for.
+   * [zone](https://cloud.google.com/compute/docs/zones#available) to return operations for.
    * This field has been deprecated and replaced by the name field.
    * 
* @@ -212,7 +212,7 @@ public java.lang.String getZone() { * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) to return operations for.
+   * [zone](https://cloud.google.com/compute/docs/zones#available) to return operations for.
    * This field has been deprecated and replaced by the name field.
    * 
* @@ -757,7 +757,7 @@ public Builder setProjectIdBytes(com.google.protobuf.ByteString value) { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) to return operations for.
+     * [zone](https://cloud.google.com/compute/docs/zones#available) to return operations for.
      * This field has been deprecated and replaced by the name field.
      * 
* @@ -782,7 +782,7 @@ public java.lang.String getZone() { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) to return operations for.
+     * [zone](https://cloud.google.com/compute/docs/zones#available) to return operations for.
      * This field has been deprecated and replaced by the name field.
      * 
* @@ -807,7 +807,7 @@ public com.google.protobuf.ByteString getZoneBytes() { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) to return operations for.
+     * [zone](https://cloud.google.com/compute/docs/zones#available) to return operations for.
      * This field has been deprecated and replaced by the name field.
      * 
* @@ -831,7 +831,7 @@ public Builder setZone(java.lang.String value) { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) to return operations for.
+     * [zone](https://cloud.google.com/compute/docs/zones#available) to return operations for.
      * This field has been deprecated and replaced by the name field.
      * 
* @@ -851,7 +851,7 @@ public Builder clearZone() { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) to return operations for.
+     * [zone](https://cloud.google.com/compute/docs/zones#available) to return operations for.
      * This field has been deprecated and replaced by the name field.
      * 
* diff --git a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/GetServerConfigRequestOrBuilder.java b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/GetServerConfigRequestOrBuilder.java index 381107e7..b977ef5d 100644 --- a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/GetServerConfigRequestOrBuilder.java +++ b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/GetServerConfigRequestOrBuilder.java @@ -59,7 +59,7 @@ public interface GetServerConfigRequestOrBuilder * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) to return operations for.
+   * [zone](https://cloud.google.com/compute/docs/zones#available) to return operations for.
    * This field has been deprecated and replaced by the name field.
    * 
* @@ -74,7 +74,7 @@ public interface GetServerConfigRequestOrBuilder * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) to return operations for.
+   * [zone](https://cloud.google.com/compute/docs/zones#available) to return operations for.
    * This field has been deprecated and replaced by the name field.
    * 
* diff --git a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/ListClustersRequest.java b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/ListClustersRequest.java index 5820d2f4..f7d0a1ec 100644 --- a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/ListClustersRequest.java +++ b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/ListClustersRequest.java @@ -187,7 +187,7 @@ public com.google.protobuf.ByteString getProjectIdBytes() { * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides, or "-" for all zones.
    * This field has been deprecated and replaced by the parent field.
    * 
@@ -213,7 +213,7 @@ public java.lang.String getZone() { * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides, or "-" for all zones.
    * This field has been deprecated and replaced by the parent field.
    * 
@@ -761,7 +761,7 @@ public Builder setProjectIdBytes(com.google.protobuf.ByteString value) { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides, or "-" for all zones.
      * This field has been deprecated and replaced by the parent field.
      * 
@@ -787,7 +787,7 @@ public java.lang.String getZone() { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides, or "-" for all zones.
      * This field has been deprecated and replaced by the parent field.
      * 
@@ -813,7 +813,7 @@ public com.google.protobuf.ByteString getZoneBytes() { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides, or "-" for all zones.
      * This field has been deprecated and replaced by the parent field.
      * 
@@ -838,7 +838,7 @@ public Builder setZone(java.lang.String value) { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides, or "-" for all zones.
      * This field has been deprecated and replaced by the parent field.
      * 
@@ -859,7 +859,7 @@ public Builder clearZone() { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides, or "-" for all zones.
      * This field has been deprecated and replaced by the parent field.
      * 
diff --git a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/ListClustersRequestOrBuilder.java b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/ListClustersRequestOrBuilder.java index fc62ede1..54d5de0c 100644 --- a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/ListClustersRequestOrBuilder.java +++ b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/ListClustersRequestOrBuilder.java @@ -59,7 +59,7 @@ public interface ListClustersRequestOrBuilder * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides, or "-" for all zones.
    * This field has been deprecated and replaced by the parent field.
    * 
@@ -75,7 +75,7 @@ public interface ListClustersRequestOrBuilder * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides, or "-" for all zones.
    * This field has been deprecated and replaced by the parent field.
    * 
diff --git a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/ListNodePoolsRequest.java b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/ListNodePoolsRequest.java index cb5b8229..34d63f6d 100644 --- a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/ListNodePoolsRequest.java +++ b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/ListNodePoolsRequest.java @@ -195,7 +195,7 @@ public com.google.protobuf.ByteString getProjectIdBytes() { * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * This field has been deprecated and replaced by the parent field.
    * 
@@ -221,7 +221,7 @@ public java.lang.String getZone() { * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * This field has been deprecated and replaced by the parent field.
    * 
@@ -834,7 +834,7 @@ public Builder setProjectIdBytes(com.google.protobuf.ByteString value) { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the parent field.
      * 
@@ -860,7 +860,7 @@ public java.lang.String getZone() { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the parent field.
      * 
@@ -886,7 +886,7 @@ public com.google.protobuf.ByteString getZoneBytes() { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the parent field.
      * 
@@ -911,7 +911,7 @@ public Builder setZone(java.lang.String value) { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the parent field.
      * 
@@ -932,7 +932,7 @@ public Builder clearZone() { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the parent field.
      * 
diff --git a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/ListNodePoolsRequestOrBuilder.java b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/ListNodePoolsRequestOrBuilder.java index 08997245..bd9beca4 100644 --- a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/ListNodePoolsRequestOrBuilder.java +++ b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/ListNodePoolsRequestOrBuilder.java @@ -59,7 +59,7 @@ public interface ListNodePoolsRequestOrBuilder * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * This field has been deprecated and replaced by the parent field.
    * 
@@ -75,7 +75,7 @@ public interface ListNodePoolsRequestOrBuilder * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * This field has been deprecated and replaced by the parent field.
    * 
diff --git a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/ListOperationsRequest.java b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/ListOperationsRequest.java index 79d4644d..4930ebb3 100644 --- a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/ListOperationsRequest.java +++ b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/ListOperationsRequest.java @@ -187,7 +187,7 @@ public com.google.protobuf.ByteString getProjectIdBytes() { * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) to return operations for, or `-` for
+   * [zone](https://cloud.google.com/compute/docs/zones#available) to return operations for, or `-` for
    * all zones. This field has been deprecated and replaced by the parent field.
    * 
* @@ -212,7 +212,7 @@ public java.lang.String getZone() { * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) to return operations for, or `-` for
+   * [zone](https://cloud.google.com/compute/docs/zones#available) to return operations for, or `-` for
    * all zones. This field has been deprecated and replaced by the parent field.
    * 
* @@ -759,7 +759,7 @@ public Builder setProjectIdBytes(com.google.protobuf.ByteString value) { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) to return operations for, or `-` for
+     * [zone](https://cloud.google.com/compute/docs/zones#available) to return operations for, or `-` for
      * all zones. This field has been deprecated and replaced by the parent field.
      * 
* @@ -784,7 +784,7 @@ public java.lang.String getZone() { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) to return operations for, or `-` for
+     * [zone](https://cloud.google.com/compute/docs/zones#available) to return operations for, or `-` for
      * all zones. This field has been deprecated and replaced by the parent field.
      * 
* @@ -809,7 +809,7 @@ public com.google.protobuf.ByteString getZoneBytes() { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) to return operations for, or `-` for
+     * [zone](https://cloud.google.com/compute/docs/zones#available) to return operations for, or `-` for
      * all zones. This field has been deprecated and replaced by the parent field.
      * 
* @@ -833,7 +833,7 @@ public Builder setZone(java.lang.String value) { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) to return operations for, or `-` for
+     * [zone](https://cloud.google.com/compute/docs/zones#available) to return operations for, or `-` for
      * all zones. This field has been deprecated and replaced by the parent field.
      * 
* @@ -853,7 +853,7 @@ public Builder clearZone() { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) to return operations for, or `-` for
+     * [zone](https://cloud.google.com/compute/docs/zones#available) to return operations for, or `-` for
      * all zones. This field has been deprecated and replaced by the parent field.
      * 
* diff --git a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/ListOperationsRequestOrBuilder.java b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/ListOperationsRequestOrBuilder.java index a0c01970..0da4346f 100644 --- a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/ListOperationsRequestOrBuilder.java +++ b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/ListOperationsRequestOrBuilder.java @@ -59,7 +59,7 @@ public interface ListOperationsRequestOrBuilder * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) to return operations for, or `-` for
+   * [zone](https://cloud.google.com/compute/docs/zones#available) to return operations for, or `-` for
    * all zones. This field has been deprecated and replaced by the parent field.
    * 
* @@ -74,7 +74,7 @@ public interface ListOperationsRequestOrBuilder * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) to return operations for, or `-` for
+   * [zone](https://cloud.google.com/compute/docs/zones#available) to return operations for, or `-` for
    * all zones. This field has been deprecated and replaced by the parent field.
    * 
* diff --git a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/NetworkConfig.java b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/NetworkConfig.java index 9ca1bf20..0193f6c9 100644 --- a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/NetworkConfig.java +++ b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/NetworkConfig.java @@ -131,7 +131,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { * *
    * Output only. The relative name of the Google Compute Engine
-   * [network][google.container.v1.NetworkConfig.network](/compute/docs/networks-and-firewalls#networks) to which
+   * [network][google.container.v1.NetworkConfig.network](https://cloud.google.com/compute/docs/networks-and-firewalls#networks) to which
    * the cluster is connected.
    * Example: projects/my-project/global/networks/my-network
    * 
@@ -156,7 +156,7 @@ public java.lang.String getNetwork() { * *
    * Output only. The relative name of the Google Compute Engine
-   * [network][google.container.v1.NetworkConfig.network](/compute/docs/networks-and-firewalls#networks) to which
+   * [network][google.container.v1.NetworkConfig.network](https://cloud.google.com/compute/docs/networks-and-firewalls#networks) to which
    * the cluster is connected.
    * Example: projects/my-project/global/networks/my-network
    * 
@@ -184,7 +184,7 @@ public com.google.protobuf.ByteString getNetworkBytes() { * *
    * Output only. The relative name of the Google Compute Engine
-   * [subnetwork](/compute/docs/vpc) to which the cluster is connected.
+   * [subnetwork](https://cloud.google.com/compute/docs/vpc) to which the cluster is connected.
    * Example: projects/my-project/regions/us-central1/subnetworks/my-subnet
    * 
* @@ -208,7 +208,7 @@ public java.lang.String getSubnetwork() { * *
    * Output only. The relative name of the Google Compute Engine
-   * [subnetwork](/compute/docs/vpc) to which the cluster is connected.
+   * [subnetwork](https://cloud.google.com/compute/docs/vpc) to which the cluster is connected.
    * Example: projects/my-project/regions/us-central1/subnetworks/my-subnet
    * 
* @@ -597,7 +597,7 @@ public Builder mergeFrom( * *
      * Output only. The relative name of the Google Compute Engine
-     * [network][google.container.v1.NetworkConfig.network](/compute/docs/networks-and-firewalls#networks) to which
+     * [network][google.container.v1.NetworkConfig.network](https://cloud.google.com/compute/docs/networks-and-firewalls#networks) to which
      * the cluster is connected.
      * Example: projects/my-project/global/networks/my-network
      * 
@@ -622,7 +622,7 @@ public java.lang.String getNetwork() { * *
      * Output only. The relative name of the Google Compute Engine
-     * [network][google.container.v1.NetworkConfig.network](/compute/docs/networks-and-firewalls#networks) to which
+     * [network][google.container.v1.NetworkConfig.network](https://cloud.google.com/compute/docs/networks-and-firewalls#networks) to which
      * the cluster is connected.
      * Example: projects/my-project/global/networks/my-network
      * 
@@ -647,7 +647,7 @@ public com.google.protobuf.ByteString getNetworkBytes() { * *
      * Output only. The relative name of the Google Compute Engine
-     * [network][google.container.v1.NetworkConfig.network](/compute/docs/networks-and-firewalls#networks) to which
+     * [network][google.container.v1.NetworkConfig.network](https://cloud.google.com/compute/docs/networks-and-firewalls#networks) to which
      * the cluster is connected.
      * Example: projects/my-project/global/networks/my-network
      * 
@@ -671,7 +671,7 @@ public Builder setNetwork(java.lang.String value) { * *
      * Output only. The relative name of the Google Compute Engine
-     * [network][google.container.v1.NetworkConfig.network](/compute/docs/networks-and-firewalls#networks) to which
+     * [network][google.container.v1.NetworkConfig.network](https://cloud.google.com/compute/docs/networks-and-firewalls#networks) to which
      * the cluster is connected.
      * Example: projects/my-project/global/networks/my-network
      * 
@@ -691,7 +691,7 @@ public Builder clearNetwork() { * *
      * Output only. The relative name of the Google Compute Engine
-     * [network][google.container.v1.NetworkConfig.network](/compute/docs/networks-and-firewalls#networks) to which
+     * [network][google.container.v1.NetworkConfig.network](https://cloud.google.com/compute/docs/networks-and-firewalls#networks) to which
      * the cluster is connected.
      * Example: projects/my-project/global/networks/my-network
      * 
@@ -718,7 +718,7 @@ public Builder setNetworkBytes(com.google.protobuf.ByteString value) { * *
      * Output only. The relative name of the Google Compute Engine
-     * [subnetwork](/compute/docs/vpc) to which the cluster is connected.
+     * [subnetwork](https://cloud.google.com/compute/docs/vpc) to which the cluster is connected.
      * Example: projects/my-project/regions/us-central1/subnetworks/my-subnet
      * 
* @@ -742,7 +742,7 @@ public java.lang.String getSubnetwork() { * *
      * Output only. The relative name of the Google Compute Engine
-     * [subnetwork](/compute/docs/vpc) to which the cluster is connected.
+     * [subnetwork](https://cloud.google.com/compute/docs/vpc) to which the cluster is connected.
      * Example: projects/my-project/regions/us-central1/subnetworks/my-subnet
      * 
* @@ -766,7 +766,7 @@ public com.google.protobuf.ByteString getSubnetworkBytes() { * *
      * Output only. The relative name of the Google Compute Engine
-     * [subnetwork](/compute/docs/vpc) to which the cluster is connected.
+     * [subnetwork](https://cloud.google.com/compute/docs/vpc) to which the cluster is connected.
      * Example: projects/my-project/regions/us-central1/subnetworks/my-subnet
      * 
* @@ -789,7 +789,7 @@ public Builder setSubnetwork(java.lang.String value) { * *
      * Output only. The relative name of the Google Compute Engine
-     * [subnetwork](/compute/docs/vpc) to which the cluster is connected.
+     * [subnetwork](https://cloud.google.com/compute/docs/vpc) to which the cluster is connected.
      * Example: projects/my-project/regions/us-central1/subnetworks/my-subnet
      * 
* @@ -808,7 +808,7 @@ public Builder clearSubnetwork() { * *
      * Output only. The relative name of the Google Compute Engine
-     * [subnetwork](/compute/docs/vpc) to which the cluster is connected.
+     * [subnetwork](https://cloud.google.com/compute/docs/vpc) to which the cluster is connected.
      * Example: projects/my-project/regions/us-central1/subnetworks/my-subnet
      * 
* diff --git a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/NetworkConfigOrBuilder.java b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/NetworkConfigOrBuilder.java index 0ab2692c..b8b06744 100644 --- a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/NetworkConfigOrBuilder.java +++ b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/NetworkConfigOrBuilder.java @@ -28,7 +28,7 @@ public interface NetworkConfigOrBuilder * *
    * Output only. The relative name of the Google Compute Engine
-   * [network][google.container.v1.NetworkConfig.network](/compute/docs/networks-and-firewalls#networks) to which
+   * [network][google.container.v1.NetworkConfig.network](https://cloud.google.com/compute/docs/networks-and-firewalls#networks) to which
    * the cluster is connected.
    * Example: projects/my-project/global/networks/my-network
    * 
@@ -43,7 +43,7 @@ public interface NetworkConfigOrBuilder * *
    * Output only. The relative name of the Google Compute Engine
-   * [network][google.container.v1.NetworkConfig.network](/compute/docs/networks-and-firewalls#networks) to which
+   * [network][google.container.v1.NetworkConfig.network](https://cloud.google.com/compute/docs/networks-and-firewalls#networks) to which
    * the cluster is connected.
    * Example: projects/my-project/global/networks/my-network
    * 
@@ -59,7 +59,7 @@ public interface NetworkConfigOrBuilder * *
    * Output only. The relative name of the Google Compute Engine
-   * [subnetwork](/compute/docs/vpc) to which the cluster is connected.
+   * [subnetwork](https://cloud.google.com/compute/docs/vpc) to which the cluster is connected.
    * Example: projects/my-project/regions/us-central1/subnetworks/my-subnet
    * 
* @@ -73,7 +73,7 @@ public interface NetworkConfigOrBuilder * *
    * Output only. The relative name of the Google Compute Engine
-   * [subnetwork](/compute/docs/vpc) to which the cluster is connected.
+   * [subnetwork](https://cloud.google.com/compute/docs/vpc) to which the cluster is connected.
    * Example: projects/my-project/regions/us-central1/subnetworks/my-subnet
    * 
* diff --git a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/NodeConfig.java b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/NodeConfig.java index fbf3eff1..77f6d874 100644 --- a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/NodeConfig.java +++ b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/NodeConfig.java @@ -281,7 +281,7 @@ protected com.google.protobuf.MapField internalGetMapField(int number) { * *
    * The name of a Google Compute Engine [machine
-   * type](/compute/docs/machine-types) (e.g.
+   * type](https://cloud.google.com/compute/docs/machine-types) (e.g.
    * `n1-standard-1`).
    * If unspecified, the default machine type is
    * `n1-standard-1`.
@@ -307,7 +307,7 @@ public java.lang.String getMachineType() {
    *
    * 
    * The name of a Google Compute Engine [machine
-   * type](/compute/docs/machine-types) (e.g.
+   * type](https://cloud.google.com/compute/docs/machine-types) (e.g.
    * `n1-standard-1`).
    * If unspecified, the default machine type is
    * `n1-standard-1`.
@@ -362,7 +362,7 @@ public int getDiskSizeGb() {
    * persistent storage on your nodes.
    * * `https://www.googleapis.com/auth/devstorage.read_only` is required for
    * communicating with **gcr.io**
-   * (the [Google Container Registry](/container-registry/)).
+   * (the [Google Container Registry](https://cloud.google.com/container-registry/)).
    * If unspecified, no scopes are added, unless Cloud Logging or Cloud
    * Monitoring are enabled, in which case their required scopes will be added.
    * 
@@ -386,7 +386,7 @@ public com.google.protobuf.ProtocolStringList getOauthScopesList() { * persistent storage on your nodes. * * `https://www.googleapis.com/auth/devstorage.read_only` is required for * communicating with **gcr.io** - * (the [Google Container Registry](/container-registry/)). + * (the [Google Container Registry](https://cloud.google.com/container-registry/)). * If unspecified, no scopes are added, unless Cloud Logging or Cloud * Monitoring are enabled, in which case their required scopes will be added. *
@@ -410,7 +410,7 @@ public int getOauthScopesCount() { * persistent storage on your nodes. * * `https://www.googleapis.com/auth/devstorage.read_only` is required for * communicating with **gcr.io** - * (the [Google Container Registry](/container-registry/)). + * (the [Google Container Registry](https://cloud.google.com/container-registry/)). * If unspecified, no scopes are added, unless Cloud Logging or Cloud * Monitoring are enabled, in which case their required scopes will be added. *
@@ -435,7 +435,7 @@ public java.lang.String getOauthScopes(int index) { * persistent storage on your nodes. * * `https://www.googleapis.com/auth/devstorage.read_only` is required for * communicating with **gcr.io** - * (the [Google Container Registry](/container-registry/)). + * (the [Google Container Registry](https://cloud.google.com/container-registry/)). * If unspecified, no scopes are added, unless Cloud Logging or Cloud * Monitoring are enabled, in which case their required scopes will be added. *
@@ -1986,7 +1986,7 @@ public Builder mergeFrom( * *
      * The name of a Google Compute Engine [machine
-     * type](/compute/docs/machine-types) (e.g.
+     * type](https://cloud.google.com/compute/docs/machine-types) (e.g.
      * `n1-standard-1`).
      * If unspecified, the default machine type is
      * `n1-standard-1`.
@@ -2012,7 +2012,7 @@ public java.lang.String getMachineType() {
      *
      * 
      * The name of a Google Compute Engine [machine
-     * type](/compute/docs/machine-types) (e.g.
+     * type](https://cloud.google.com/compute/docs/machine-types) (e.g.
      * `n1-standard-1`).
      * If unspecified, the default machine type is
      * `n1-standard-1`.
@@ -2038,7 +2038,7 @@ public com.google.protobuf.ByteString getMachineTypeBytes() {
      *
      * 
      * The name of a Google Compute Engine [machine
-     * type](/compute/docs/machine-types) (e.g.
+     * type](https://cloud.google.com/compute/docs/machine-types) (e.g.
      * `n1-standard-1`).
      * If unspecified, the default machine type is
      * `n1-standard-1`.
@@ -2063,7 +2063,7 @@ public Builder setMachineType(java.lang.String value) {
      *
      * 
      * The name of a Google Compute Engine [machine
-     * type](/compute/docs/machine-types) (e.g.
+     * type](https://cloud.google.com/compute/docs/machine-types) (e.g.
      * `n1-standard-1`).
      * If unspecified, the default machine type is
      * `n1-standard-1`.
@@ -2084,7 +2084,7 @@ public Builder clearMachineType() {
      *
      * 
      * The name of a Google Compute Engine [machine
-     * type](/compute/docs/machine-types) (e.g.
+     * type](https://cloud.google.com/compute/docs/machine-types) (e.g.
      * `n1-standard-1`).
      * If unspecified, the default machine type is
      * `n1-standard-1`.
@@ -2184,7 +2184,7 @@ private void ensureOauthScopesIsMutable() {
      * persistent storage on your nodes.
      * * `https://www.googleapis.com/auth/devstorage.read_only` is required for
      * communicating with **gcr.io**
-     * (the [Google Container Registry](/container-registry/)).
+     * (the [Google Container Registry](https://cloud.google.com/container-registry/)).
      * If unspecified, no scopes are added, unless Cloud Logging or Cloud
      * Monitoring are enabled, in which case their required scopes will be added.
      * 
@@ -2208,7 +2208,7 @@ public com.google.protobuf.ProtocolStringList getOauthScopesList() { * persistent storage on your nodes. * * `https://www.googleapis.com/auth/devstorage.read_only` is required for * communicating with **gcr.io** - * (the [Google Container Registry](/container-registry/)). + * (the [Google Container Registry](https://cloud.google.com/container-registry/)). * If unspecified, no scopes are added, unless Cloud Logging or Cloud * Monitoring are enabled, in which case their required scopes will be added. *
@@ -2232,7 +2232,7 @@ public int getOauthScopesCount() { * persistent storage on your nodes. * * `https://www.googleapis.com/auth/devstorage.read_only` is required for * communicating with **gcr.io** - * (the [Google Container Registry](/container-registry/)). + * (the [Google Container Registry](https://cloud.google.com/container-registry/)). * If unspecified, no scopes are added, unless Cloud Logging or Cloud * Monitoring are enabled, in which case their required scopes will be added. *
@@ -2257,7 +2257,7 @@ public java.lang.String getOauthScopes(int index) { * persistent storage on your nodes. * * `https://www.googleapis.com/auth/devstorage.read_only` is required for * communicating with **gcr.io** - * (the [Google Container Registry](/container-registry/)). + * (the [Google Container Registry](https://cloud.google.com/container-registry/)). * If unspecified, no scopes are added, unless Cloud Logging or Cloud * Monitoring are enabled, in which case their required scopes will be added. *
@@ -2282,7 +2282,7 @@ public com.google.protobuf.ByteString getOauthScopesBytes(int index) { * persistent storage on your nodes. * * `https://www.googleapis.com/auth/devstorage.read_only` is required for * communicating with **gcr.io** - * (the [Google Container Registry](/container-registry/)). + * (the [Google Container Registry](https://cloud.google.com/container-registry/)). * If unspecified, no scopes are added, unless Cloud Logging or Cloud * Monitoring are enabled, in which case their required scopes will be added. *
@@ -2314,7 +2314,7 @@ public Builder setOauthScopes(int index, java.lang.String value) { * persistent storage on your nodes. * * `https://www.googleapis.com/auth/devstorage.read_only` is required for * communicating with **gcr.io** - * (the [Google Container Registry](/container-registry/)). + * (the [Google Container Registry](https://cloud.google.com/container-registry/)). * If unspecified, no scopes are added, unless Cloud Logging or Cloud * Monitoring are enabled, in which case their required scopes will be added. *
@@ -2345,7 +2345,7 @@ public Builder addOauthScopes(java.lang.String value) { * persistent storage on your nodes. * * `https://www.googleapis.com/auth/devstorage.read_only` is required for * communicating with **gcr.io** - * (the [Google Container Registry](/container-registry/)). + * (the [Google Container Registry](https://cloud.google.com/container-registry/)). * If unspecified, no scopes are added, unless Cloud Logging or Cloud * Monitoring are enabled, in which case their required scopes will be added. *
@@ -2373,7 +2373,7 @@ public Builder addAllOauthScopes(java.lang.Iterable values) { * persistent storage on your nodes. * * `https://www.googleapis.com/auth/devstorage.read_only` is required for * communicating with **gcr.io** - * (the [Google Container Registry](/container-registry/)). + * (the [Google Container Registry](https://cloud.google.com/container-registry/)). * If unspecified, no scopes are added, unless Cloud Logging or Cloud * Monitoring are enabled, in which case their required scopes will be added. *
@@ -2400,7 +2400,7 @@ public Builder clearOauthScopes() { * persistent storage on your nodes. * * `https://www.googleapis.com/auth/devstorage.read_only` is required for * communicating with **gcr.io** - * (the [Google Container Registry](/container-registry/)). + * (the [Google Container Registry](https://cloud.google.com/container-registry/)). * If unspecified, no scopes are added, unless Cloud Logging or Cloud * Monitoring are enabled, in which case their required scopes will be added. *
diff --git a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/NodeConfigOrBuilder.java b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/NodeConfigOrBuilder.java index 0c8a8151..8bea69e6 100644 --- a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/NodeConfigOrBuilder.java +++ b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/NodeConfigOrBuilder.java @@ -28,7 +28,7 @@ public interface NodeConfigOrBuilder * *
    * The name of a Google Compute Engine [machine
-   * type](/compute/docs/machine-types) (e.g.
+   * type](https://cloud.google.com/compute/docs/machine-types) (e.g.
    * `n1-standard-1`).
    * If unspecified, the default machine type is
    * `n1-standard-1`.
@@ -44,7 +44,7 @@ public interface NodeConfigOrBuilder
    *
    * 
    * The name of a Google Compute Engine [machine
-   * type](/compute/docs/machine-types) (e.g.
+   * type](https://cloud.google.com/compute/docs/machine-types) (e.g.
    * `n1-standard-1`).
    * If unspecified, the default machine type is
    * `n1-standard-1`.
@@ -83,7 +83,7 @@ public interface NodeConfigOrBuilder
    * persistent storage on your nodes.
    * * `https://www.googleapis.com/auth/devstorage.read_only` is required for
    * communicating with **gcr.io**
-   * (the [Google Container Registry](/container-registry/)).
+   * (the [Google Container Registry](https://cloud.google.com/container-registry/)).
    * If unspecified, no scopes are added, unless Cloud Logging or Cloud
    * Monitoring are enabled, in which case their required scopes will be added.
    * 
@@ -105,7 +105,7 @@ public interface NodeConfigOrBuilder * persistent storage on your nodes. * * `https://www.googleapis.com/auth/devstorage.read_only` is required for * communicating with **gcr.io** - * (the [Google Container Registry](/container-registry/)). + * (the [Google Container Registry](https://cloud.google.com/container-registry/)). * If unspecified, no scopes are added, unless Cloud Logging or Cloud * Monitoring are enabled, in which case their required scopes will be added. *
@@ -127,7 +127,7 @@ public interface NodeConfigOrBuilder * persistent storage on your nodes. * * `https://www.googleapis.com/auth/devstorage.read_only` is required for * communicating with **gcr.io** - * (the [Google Container Registry](/container-registry/)). + * (the [Google Container Registry](https://cloud.google.com/container-registry/)). * If unspecified, no scopes are added, unless Cloud Logging or Cloud * Monitoring are enabled, in which case their required scopes will be added. *
@@ -150,7 +150,7 @@ public interface NodeConfigOrBuilder * persistent storage on your nodes. * * `https://www.googleapis.com/auth/devstorage.read_only` is required for * communicating with **gcr.io** - * (the [Google Container Registry](/container-registry/)). + * (the [Google Container Registry](https://cloud.google.com/container-registry/)). * If unspecified, no scopes are added, unless Cloud Logging or Cloud * Monitoring are enabled, in which case their required scopes will be added. *
diff --git a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/NodePool.java b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/NodePool.java index 40022086..60975e74 100644 --- a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/NodePool.java +++ b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/NodePool.java @@ -716,7 +716,7 @@ public com.google.protobuf.ByteString getVersionBytes() { * *
    * [Output only] The resource URLs of the [managed instance
-   * groups](/compute/docs/instance-groups/creating-groups-of-managed-instances)
+   * groups](https://cloud.google.com/compute/docs/instance-groups/creating-groups-of-managed-instances)
    * associated with this node pool.
    * 
* @@ -732,7 +732,7 @@ public com.google.protobuf.ProtocolStringList getInstanceGroupUrlsList() { * *
    * [Output only] The resource URLs of the [managed instance
-   * groups](/compute/docs/instance-groups/creating-groups-of-managed-instances)
+   * groups](https://cloud.google.com/compute/docs/instance-groups/creating-groups-of-managed-instances)
    * associated with this node pool.
    * 
* @@ -748,7 +748,7 @@ public int getInstanceGroupUrlsCount() { * *
    * [Output only] The resource URLs of the [managed instance
-   * groups](/compute/docs/instance-groups/creating-groups-of-managed-instances)
+   * groups](https://cloud.google.com/compute/docs/instance-groups/creating-groups-of-managed-instances)
    * associated with this node pool.
    * 
* @@ -765,7 +765,7 @@ public java.lang.String getInstanceGroupUrls(int index) { * *
    * [Output only] The resource URLs of the [managed instance
-   * groups](/compute/docs/instance-groups/creating-groups-of-managed-instances)
+   * groups](https://cloud.google.com/compute/docs/instance-groups/creating-groups-of-managed-instances)
    * associated with this node pool.
    * 
* @@ -2270,7 +2270,7 @@ private void ensureInstanceGroupUrlsIsMutable() { * *
      * [Output only] The resource URLs of the [managed instance
-     * groups](/compute/docs/instance-groups/creating-groups-of-managed-instances)
+     * groups](https://cloud.google.com/compute/docs/instance-groups/creating-groups-of-managed-instances)
      * associated with this node pool.
      * 
* @@ -2286,7 +2286,7 @@ public com.google.protobuf.ProtocolStringList getInstanceGroupUrlsList() { * *
      * [Output only] The resource URLs of the [managed instance
-     * groups](/compute/docs/instance-groups/creating-groups-of-managed-instances)
+     * groups](https://cloud.google.com/compute/docs/instance-groups/creating-groups-of-managed-instances)
      * associated with this node pool.
      * 
* @@ -2302,7 +2302,7 @@ public int getInstanceGroupUrlsCount() { * *
      * [Output only] The resource URLs of the [managed instance
-     * groups](/compute/docs/instance-groups/creating-groups-of-managed-instances)
+     * groups](https://cloud.google.com/compute/docs/instance-groups/creating-groups-of-managed-instances)
      * associated with this node pool.
      * 
* @@ -2319,7 +2319,7 @@ public java.lang.String getInstanceGroupUrls(int index) { * *
      * [Output only] The resource URLs of the [managed instance
-     * groups](/compute/docs/instance-groups/creating-groups-of-managed-instances)
+     * groups](https://cloud.google.com/compute/docs/instance-groups/creating-groups-of-managed-instances)
      * associated with this node pool.
      * 
* @@ -2336,7 +2336,7 @@ public com.google.protobuf.ByteString getInstanceGroupUrlsBytes(int index) { * *
      * [Output only] The resource URLs of the [managed instance
-     * groups](/compute/docs/instance-groups/creating-groups-of-managed-instances)
+     * groups](https://cloud.google.com/compute/docs/instance-groups/creating-groups-of-managed-instances)
      * associated with this node pool.
      * 
* @@ -2360,7 +2360,7 @@ public Builder setInstanceGroupUrls(int index, java.lang.String value) { * *
      * [Output only] The resource URLs of the [managed instance
-     * groups](/compute/docs/instance-groups/creating-groups-of-managed-instances)
+     * groups](https://cloud.google.com/compute/docs/instance-groups/creating-groups-of-managed-instances)
      * associated with this node pool.
      * 
* @@ -2383,7 +2383,7 @@ public Builder addInstanceGroupUrls(java.lang.String value) { * *
      * [Output only] The resource URLs of the [managed instance
-     * groups](/compute/docs/instance-groups/creating-groups-of-managed-instances)
+     * groups](https://cloud.google.com/compute/docs/instance-groups/creating-groups-of-managed-instances)
      * associated with this node pool.
      * 
* @@ -2403,7 +2403,7 @@ public Builder addAllInstanceGroupUrls(java.lang.Iterable valu * *
      * [Output only] The resource URLs of the [managed instance
-     * groups](/compute/docs/instance-groups/creating-groups-of-managed-instances)
+     * groups](https://cloud.google.com/compute/docs/instance-groups/creating-groups-of-managed-instances)
      * associated with this node pool.
      * 
* @@ -2422,7 +2422,7 @@ public Builder clearInstanceGroupUrls() { * *
      * [Output only] The resource URLs of the [managed instance
-     * groups](/compute/docs/instance-groups/creating-groups-of-managed-instances)
+     * groups](https://cloud.google.com/compute/docs/instance-groups/creating-groups-of-managed-instances)
      * associated with this node pool.
      * 
* diff --git a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/NodePoolOrBuilder.java b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/NodePoolOrBuilder.java index 6596c00a..bd68445b 100644 --- a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/NodePoolOrBuilder.java +++ b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/NodePoolOrBuilder.java @@ -154,7 +154,7 @@ public interface NodePoolOrBuilder * *
    * [Output only] The resource URLs of the [managed instance
-   * groups](/compute/docs/instance-groups/creating-groups-of-managed-instances)
+   * groups](https://cloud.google.com/compute/docs/instance-groups/creating-groups-of-managed-instances)
    * associated with this node pool.
    * 
* @@ -168,7 +168,7 @@ public interface NodePoolOrBuilder * *
    * [Output only] The resource URLs of the [managed instance
-   * groups](/compute/docs/instance-groups/creating-groups-of-managed-instances)
+   * groups](https://cloud.google.com/compute/docs/instance-groups/creating-groups-of-managed-instances)
    * associated with this node pool.
    * 
* @@ -182,7 +182,7 @@ public interface NodePoolOrBuilder * *
    * [Output only] The resource URLs of the [managed instance
-   * groups](/compute/docs/instance-groups/creating-groups-of-managed-instances)
+   * groups](https://cloud.google.com/compute/docs/instance-groups/creating-groups-of-managed-instances)
    * associated with this node pool.
    * 
* @@ -197,7 +197,7 @@ public interface NodePoolOrBuilder * *
    * [Output only] The resource URLs of the [managed instance
-   * groups](/compute/docs/instance-groups/creating-groups-of-managed-instances)
+   * groups](https://cloud.google.com/compute/docs/instance-groups/creating-groups-of-managed-instances)
    * associated with this node pool.
    * 
* diff --git a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/Operation.java b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/Operation.java index 8d80800c..0b210350 100644 --- a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/Operation.java +++ b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/Operation.java @@ -937,7 +937,7 @@ public com.google.protobuf.ByteString getNameBytes() { * *
    * The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the operation
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the operation
    * is taking place.
    * This field is deprecated, use location instead.
    * 
@@ -963,7 +963,7 @@ public java.lang.String getZone() { * *
    * The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the operation
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the operation
    * is taking place.
    * This field is deprecated, use location instead.
    * 
@@ -1248,8 +1248,8 @@ public com.google.protobuf.ByteString getTargetLinkBytes() { * *
    * [Output only] The name of the Google Compute Engine
-   * [zone](/compute/docs/regions-zones/regions-zones#available) or
-   * [region](/compute/docs/regions-zones/regions-zones#available) in which
+   * [zone](https://cloud.google.com/compute/docs/regions-zones/regions-zones#available) or
+   * [region](https://cloud.google.com/compute/docs/regions-zones/regions-zones#available) in which
    * the cluster resides.
    * 
* @@ -1273,8 +1273,8 @@ public java.lang.String getLocation() { * *
    * [Output only] The name of the Google Compute Engine
-   * [zone](/compute/docs/regions-zones/regions-zones#available) or
-   * [region](/compute/docs/regions-zones/regions-zones#available) in which
+   * [zone](https://cloud.google.com/compute/docs/regions-zones/regions-zones#available) or
+   * [region](https://cloud.google.com/compute/docs/regions-zones/regions-zones#available) in which
    * the cluster resides.
    * 
* @@ -2219,7 +2219,7 @@ public Builder setNameBytes(com.google.protobuf.ByteString value) { * *
      * The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the operation
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the operation
      * is taking place.
      * This field is deprecated, use location instead.
      * 
@@ -2245,7 +2245,7 @@ public java.lang.String getZone() { * *
      * The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the operation
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the operation
      * is taking place.
      * This field is deprecated, use location instead.
      * 
@@ -2271,7 +2271,7 @@ public com.google.protobuf.ByteString getZoneBytes() { * *
      * The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the operation
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the operation
      * is taking place.
      * This field is deprecated, use location instead.
      * 
@@ -2296,7 +2296,7 @@ public Builder setZone(java.lang.String value) { * *
      * The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the operation
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the operation
      * is taking place.
      * This field is deprecated, use location instead.
      * 
@@ -2317,7 +2317,7 @@ public Builder clearZone() { * *
      * The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the operation
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the operation
      * is taking place.
      * This field is deprecated, use location instead.
      * 
@@ -2945,8 +2945,8 @@ public Builder setTargetLinkBytes(com.google.protobuf.ByteString value) { * *
      * [Output only] The name of the Google Compute Engine
-     * [zone](/compute/docs/regions-zones/regions-zones#available) or
-     * [region](/compute/docs/regions-zones/regions-zones#available) in which
+     * [zone](https://cloud.google.com/compute/docs/regions-zones/regions-zones#available) or
+     * [region](https://cloud.google.com/compute/docs/regions-zones/regions-zones#available) in which
      * the cluster resides.
      * 
* @@ -2970,8 +2970,8 @@ public java.lang.String getLocation() { * *
      * [Output only] The name of the Google Compute Engine
-     * [zone](/compute/docs/regions-zones/regions-zones#available) or
-     * [region](/compute/docs/regions-zones/regions-zones#available) in which
+     * [zone](https://cloud.google.com/compute/docs/regions-zones/regions-zones#available) or
+     * [region](https://cloud.google.com/compute/docs/regions-zones/regions-zones#available) in which
      * the cluster resides.
      * 
* @@ -2995,8 +2995,8 @@ public com.google.protobuf.ByteString getLocationBytes() { * *
      * [Output only] The name of the Google Compute Engine
-     * [zone](/compute/docs/regions-zones/regions-zones#available) or
-     * [region](/compute/docs/regions-zones/regions-zones#available) in which
+     * [zone](https://cloud.google.com/compute/docs/regions-zones/regions-zones#available) or
+     * [region](https://cloud.google.com/compute/docs/regions-zones/regions-zones#available) in which
      * the cluster resides.
      * 
* @@ -3019,8 +3019,8 @@ public Builder setLocation(java.lang.String value) { * *
      * [Output only] The name of the Google Compute Engine
-     * [zone](/compute/docs/regions-zones/regions-zones#available) or
-     * [region](/compute/docs/regions-zones/regions-zones#available) in which
+     * [zone](https://cloud.google.com/compute/docs/regions-zones/regions-zones#available) or
+     * [region](https://cloud.google.com/compute/docs/regions-zones/regions-zones#available) in which
      * the cluster resides.
      * 
* @@ -3039,8 +3039,8 @@ public Builder clearLocation() { * *
      * [Output only] The name of the Google Compute Engine
-     * [zone](/compute/docs/regions-zones/regions-zones#available) or
-     * [region](/compute/docs/regions-zones/regions-zones#available) in which
+     * [zone](https://cloud.google.com/compute/docs/regions-zones/regions-zones#available) or
+     * [region](https://cloud.google.com/compute/docs/regions-zones/regions-zones#available) in which
      * the cluster resides.
      * 
* diff --git a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/OperationOrBuilder.java b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/OperationOrBuilder.java index 9cded9f8..efdaafb3 100644 --- a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/OperationOrBuilder.java +++ b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/OperationOrBuilder.java @@ -53,7 +53,7 @@ public interface OperationOrBuilder * *
    * The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the operation
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the operation
    * is taking place.
    * This field is deprecated, use location instead.
    * 
@@ -69,7 +69,7 @@ public interface OperationOrBuilder * *
    * The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the operation
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the operation
    * is taking place.
    * This field is deprecated, use location instead.
    * 
@@ -236,8 +236,8 @@ public interface OperationOrBuilder * *
    * [Output only] The name of the Google Compute Engine
-   * [zone](/compute/docs/regions-zones/regions-zones#available) or
-   * [region](/compute/docs/regions-zones/regions-zones#available) in which
+   * [zone](https://cloud.google.com/compute/docs/regions-zones/regions-zones#available) or
+   * [region](https://cloud.google.com/compute/docs/regions-zones/regions-zones#available) in which
    * the cluster resides.
    * 
* @@ -251,8 +251,8 @@ public interface OperationOrBuilder * *
    * [Output only] The name of the Google Compute Engine
-   * [zone](/compute/docs/regions-zones/regions-zones#available) or
-   * [region](/compute/docs/regions-zones/regions-zones#available) in which
+   * [zone](https://cloud.google.com/compute/docs/regions-zones/regions-zones#available) or
+   * [region](https://cloud.google.com/compute/docs/regions-zones/regions-zones#available) in which
    * the cluster resides.
    * 
* diff --git a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/RollbackNodePoolUpgradeRequest.java b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/RollbackNodePoolUpgradeRequest.java index fc4076d2..63a2f2aa 100644 --- a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/RollbackNodePoolUpgradeRequest.java +++ b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/RollbackNodePoolUpgradeRequest.java @@ -206,7 +206,7 @@ public com.google.protobuf.ByteString getProjectIdBytes() { * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * This field has been deprecated and replaced by the name field.
    * 
@@ -232,7 +232,7 @@ public java.lang.String getZone() { * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * This field has been deprecated and replaced by the name field.
    * 
@@ -919,7 +919,7 @@ public Builder setProjectIdBytes(com.google.protobuf.ByteString value) { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
@@ -945,7 +945,7 @@ public java.lang.String getZone() { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
@@ -971,7 +971,7 @@ public com.google.protobuf.ByteString getZoneBytes() { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
@@ -996,7 +996,7 @@ public Builder setZone(java.lang.String value) { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
@@ -1017,7 +1017,7 @@ public Builder clearZone() { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
diff --git a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/RollbackNodePoolUpgradeRequestOrBuilder.java b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/RollbackNodePoolUpgradeRequestOrBuilder.java index 3e34e50c..d87b202e 100644 --- a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/RollbackNodePoolUpgradeRequestOrBuilder.java +++ b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/RollbackNodePoolUpgradeRequestOrBuilder.java @@ -59,7 +59,7 @@ public interface RollbackNodePoolUpgradeRequestOrBuilder * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * This field has been deprecated and replaced by the name field.
    * 
@@ -75,7 +75,7 @@ public interface RollbackNodePoolUpgradeRequestOrBuilder * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * This field has been deprecated and replaced by the name field.
    * 
diff --git a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetAddonsConfigRequest.java b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetAddonsConfigRequest.java index 664ab4cd..a83a7b1a 100644 --- a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetAddonsConfigRequest.java +++ b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetAddonsConfigRequest.java @@ -211,7 +211,7 @@ public com.google.protobuf.ByteString getProjectIdBytes() { * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * This field has been deprecated and replaced by the name field.
    * 
@@ -237,7 +237,7 @@ public java.lang.String getZone() { * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * This field has been deprecated and replaced by the name field.
    * 
@@ -932,7 +932,7 @@ public Builder setProjectIdBytes(com.google.protobuf.ByteString value) { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
@@ -958,7 +958,7 @@ public java.lang.String getZone() { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
@@ -984,7 +984,7 @@ public com.google.protobuf.ByteString getZoneBytes() { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
@@ -1009,7 +1009,7 @@ public Builder setZone(java.lang.String value) { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
@@ -1030,7 +1030,7 @@ public Builder clearZone() { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
diff --git a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetAddonsConfigRequestOrBuilder.java b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetAddonsConfigRequestOrBuilder.java index 47308d33..c489fd03 100644 --- a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetAddonsConfigRequestOrBuilder.java +++ b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetAddonsConfigRequestOrBuilder.java @@ -59,7 +59,7 @@ public interface SetAddonsConfigRequestOrBuilder * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * This field has been deprecated and replaced by the name field.
    * 
@@ -75,7 +75,7 @@ public interface SetAddonsConfigRequestOrBuilder * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * This field has been deprecated and replaced by the name field.
    * 
diff --git a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetLabelsRequest.java b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetLabelsRequest.java index 98fe25b7..215c947b 100644 --- a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetLabelsRequest.java +++ b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetLabelsRequest.java @@ -234,7 +234,7 @@ public com.google.protobuf.ByteString getProjectIdBytes() { * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * This field has been deprecated and replaced by the name field.
    * 
@@ -260,7 +260,7 @@ public java.lang.String getZone() { * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * This field has been deprecated and replaced by the name field.
    * 
@@ -1091,7 +1091,7 @@ public Builder setProjectIdBytes(com.google.protobuf.ByteString value) { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
@@ -1117,7 +1117,7 @@ public java.lang.String getZone() { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
@@ -1143,7 +1143,7 @@ public com.google.protobuf.ByteString getZoneBytes() { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
@@ -1168,7 +1168,7 @@ public Builder setZone(java.lang.String value) { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
@@ -1189,7 +1189,7 @@ public Builder clearZone() { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
diff --git a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetLabelsRequestOrBuilder.java b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetLabelsRequestOrBuilder.java index 1eb151ab..2ac078e6 100644 --- a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetLabelsRequestOrBuilder.java +++ b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetLabelsRequestOrBuilder.java @@ -59,7 +59,7 @@ public interface SetLabelsRequestOrBuilder * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * This field has been deprecated and replaced by the name field.
    * 
@@ -75,7 +75,7 @@ public interface SetLabelsRequestOrBuilder * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * This field has been deprecated and replaced by the name field.
    * 
diff --git a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetLegacyAbacRequest.java b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetLegacyAbacRequest.java index 0393e2a5..b968b3e5 100644 --- a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetLegacyAbacRequest.java +++ b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetLegacyAbacRequest.java @@ -201,7 +201,7 @@ public com.google.protobuf.ByteString getProjectIdBytes() { * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * This field has been deprecated and replaced by the name field.
    * 
@@ -227,7 +227,7 @@ public java.lang.String getZone() { * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * This field has been deprecated and replaced by the name field.
    * 
@@ -873,7 +873,7 @@ public Builder setProjectIdBytes(com.google.protobuf.ByteString value) { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
@@ -899,7 +899,7 @@ public java.lang.String getZone() { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
@@ -925,7 +925,7 @@ public com.google.protobuf.ByteString getZoneBytes() { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
@@ -950,7 +950,7 @@ public Builder setZone(java.lang.String value) { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
@@ -971,7 +971,7 @@ public Builder clearZone() { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
diff --git a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetLegacyAbacRequestOrBuilder.java b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetLegacyAbacRequestOrBuilder.java index 9fe1a181..fe29b6ec 100644 --- a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetLegacyAbacRequestOrBuilder.java +++ b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetLegacyAbacRequestOrBuilder.java @@ -59,7 +59,7 @@ public interface SetLegacyAbacRequestOrBuilder * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * This field has been deprecated and replaced by the name field.
    * 
@@ -75,7 +75,7 @@ public interface SetLegacyAbacRequestOrBuilder * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * This field has been deprecated and replaced by the name field.
    * 
diff --git a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetLocationsRequest.java b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetLocationsRequest.java index c107bc1d..1d16a017 100644 --- a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetLocationsRequest.java +++ b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetLocationsRequest.java @@ -210,7 +210,7 @@ public com.google.protobuf.ByteString getProjectIdBytes() { * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * This field has been deprecated and replaced by the name field.
    * 
@@ -236,7 +236,7 @@ public java.lang.String getZone() { * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * This field has been deprecated and replaced by the name field.
    * 
@@ -316,7 +316,7 @@ public com.google.protobuf.ByteString getClusterIdBytes() { * *
    * Required. The desired list of Google Compute Engine
-   * [zones](/compute/docs/zones#available) in which the cluster's nodes
+   * [zones](https://cloud.google.com/compute/docs/zones#available) in which the cluster's nodes
    * should be located. Changing the locations a cluster is in will result
    * in nodes being either created or removed from the cluster, depending on
    * whether locations are being added or removed.
@@ -335,7 +335,7 @@ public com.google.protobuf.ProtocolStringList getLocationsList() {
    *
    * 
    * Required. The desired list of Google Compute Engine
-   * [zones](/compute/docs/zones#available) in which the cluster's nodes
+   * [zones](https://cloud.google.com/compute/docs/zones#available) in which the cluster's nodes
    * should be located. Changing the locations a cluster is in will result
    * in nodes being either created or removed from the cluster, depending on
    * whether locations are being added or removed.
@@ -354,7 +354,7 @@ public int getLocationsCount() {
    *
    * 
    * Required. The desired list of Google Compute Engine
-   * [zones](/compute/docs/zones#available) in which the cluster's nodes
+   * [zones](https://cloud.google.com/compute/docs/zones#available) in which the cluster's nodes
    * should be located. Changing the locations a cluster is in will result
    * in nodes being either created or removed from the cluster, depending on
    * whether locations are being added or removed.
@@ -374,7 +374,7 @@ public java.lang.String getLocations(int index) {
    *
    * 
    * Required. The desired list of Google Compute Engine
-   * [zones](/compute/docs/zones#available) in which the cluster's nodes
+   * [zones](https://cloud.google.com/compute/docs/zones#available) in which the cluster's nodes
    * should be located. Changing the locations a cluster is in will result
    * in nodes being either created or removed from the cluster, depending on
    * whether locations are being added or removed.
@@ -966,7 +966,7 @@ public Builder setProjectIdBytes(com.google.protobuf.ByteString value) {
      *
      * 
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
@@ -992,7 +992,7 @@ public java.lang.String getZone() { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
@@ -1018,7 +1018,7 @@ public com.google.protobuf.ByteString getZoneBytes() { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
@@ -1043,7 +1043,7 @@ public Builder setZone(java.lang.String value) { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
@@ -1064,7 +1064,7 @@ public Builder clearZone() { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
@@ -1216,7 +1216,7 @@ private void ensureLocationsIsMutable() { * *
      * Required. The desired list of Google Compute Engine
-     * [zones](/compute/docs/zones#available) in which the cluster's nodes
+     * [zones](https://cloud.google.com/compute/docs/zones#available) in which the cluster's nodes
      * should be located. Changing the locations a cluster is in will result
      * in nodes being either created or removed from the cluster, depending on
      * whether locations are being added or removed.
@@ -1235,7 +1235,7 @@ public com.google.protobuf.ProtocolStringList getLocationsList() {
      *
      * 
      * Required. The desired list of Google Compute Engine
-     * [zones](/compute/docs/zones#available) in which the cluster's nodes
+     * [zones](https://cloud.google.com/compute/docs/zones#available) in which the cluster's nodes
      * should be located. Changing the locations a cluster is in will result
      * in nodes being either created or removed from the cluster, depending on
      * whether locations are being added or removed.
@@ -1254,7 +1254,7 @@ public int getLocationsCount() {
      *
      * 
      * Required. The desired list of Google Compute Engine
-     * [zones](/compute/docs/zones#available) in which the cluster's nodes
+     * [zones](https://cloud.google.com/compute/docs/zones#available) in which the cluster's nodes
      * should be located. Changing the locations a cluster is in will result
      * in nodes being either created or removed from the cluster, depending on
      * whether locations are being added or removed.
@@ -1274,7 +1274,7 @@ public java.lang.String getLocations(int index) {
      *
      * 
      * Required. The desired list of Google Compute Engine
-     * [zones](/compute/docs/zones#available) in which the cluster's nodes
+     * [zones](https://cloud.google.com/compute/docs/zones#available) in which the cluster's nodes
      * should be located. Changing the locations a cluster is in will result
      * in nodes being either created or removed from the cluster, depending on
      * whether locations are being added or removed.
@@ -1294,7 +1294,7 @@ public com.google.protobuf.ByteString getLocationsBytes(int index) {
      *
      * 
      * Required. The desired list of Google Compute Engine
-     * [zones](/compute/docs/zones#available) in which the cluster's nodes
+     * [zones](https://cloud.google.com/compute/docs/zones#available) in which the cluster's nodes
      * should be located. Changing the locations a cluster is in will result
      * in nodes being either created or removed from the cluster, depending on
      * whether locations are being added or removed.
@@ -1321,7 +1321,7 @@ public Builder setLocations(int index, java.lang.String value) {
      *
      * 
      * Required. The desired list of Google Compute Engine
-     * [zones](/compute/docs/zones#available) in which the cluster's nodes
+     * [zones](https://cloud.google.com/compute/docs/zones#available) in which the cluster's nodes
      * should be located. Changing the locations a cluster is in will result
      * in nodes being either created or removed from the cluster, depending on
      * whether locations are being added or removed.
@@ -1347,7 +1347,7 @@ public Builder addLocations(java.lang.String value) {
      *
      * 
      * Required. The desired list of Google Compute Engine
-     * [zones](/compute/docs/zones#available) in which the cluster's nodes
+     * [zones](https://cloud.google.com/compute/docs/zones#available) in which the cluster's nodes
      * should be located. Changing the locations a cluster is in will result
      * in nodes being either created or removed from the cluster, depending on
      * whether locations are being added or removed.
@@ -1370,7 +1370,7 @@ public Builder addAllLocations(java.lang.Iterable values) {
      *
      * 
      * Required. The desired list of Google Compute Engine
-     * [zones](/compute/docs/zones#available) in which the cluster's nodes
+     * [zones](https://cloud.google.com/compute/docs/zones#available) in which the cluster's nodes
      * should be located. Changing the locations a cluster is in will result
      * in nodes being either created or removed from the cluster, depending on
      * whether locations are being added or removed.
@@ -1392,7 +1392,7 @@ public Builder clearLocations() {
      *
      * 
      * Required. The desired list of Google Compute Engine
-     * [zones](/compute/docs/zones#available) in which the cluster's nodes
+     * [zones](https://cloud.google.com/compute/docs/zones#available) in which the cluster's nodes
      * should be located. Changing the locations a cluster is in will result
      * in nodes being either created or removed from the cluster, depending on
      * whether locations are being added or removed.
diff --git a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetLocationsRequestOrBuilder.java b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetLocationsRequestOrBuilder.java
index 64cd8d5a..1285a765 100644
--- a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetLocationsRequestOrBuilder.java
+++ b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetLocationsRequestOrBuilder.java
@@ -59,7 +59,7 @@ public interface SetLocationsRequestOrBuilder
    *
    * 
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * This field has been deprecated and replaced by the name field.
    * 
@@ -75,7 +75,7 @@ public interface SetLocationsRequestOrBuilder * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * This field has been deprecated and replaced by the name field.
    * 
@@ -121,7 +121,7 @@ public interface SetLocationsRequestOrBuilder * *
    * Required. The desired list of Google Compute Engine
-   * [zones](/compute/docs/zones#available) in which the cluster's nodes
+   * [zones](https://cloud.google.com/compute/docs/zones#available) in which the cluster's nodes
    * should be located. Changing the locations a cluster is in will result
    * in nodes being either created or removed from the cluster, depending on
    * whether locations are being added or removed.
@@ -138,7 +138,7 @@ public interface SetLocationsRequestOrBuilder
    *
    * 
    * Required. The desired list of Google Compute Engine
-   * [zones](/compute/docs/zones#available) in which the cluster's nodes
+   * [zones](https://cloud.google.com/compute/docs/zones#available) in which the cluster's nodes
    * should be located. Changing the locations a cluster is in will result
    * in nodes being either created or removed from the cluster, depending on
    * whether locations are being added or removed.
@@ -155,7 +155,7 @@ public interface SetLocationsRequestOrBuilder
    *
    * 
    * Required. The desired list of Google Compute Engine
-   * [zones](/compute/docs/zones#available) in which the cluster's nodes
+   * [zones](https://cloud.google.com/compute/docs/zones#available) in which the cluster's nodes
    * should be located. Changing the locations a cluster is in will result
    * in nodes being either created or removed from the cluster, depending on
    * whether locations are being added or removed.
@@ -173,7 +173,7 @@ public interface SetLocationsRequestOrBuilder
    *
    * 
    * Required. The desired list of Google Compute Engine
-   * [zones](/compute/docs/zones#available) in which the cluster's nodes
+   * [zones](https://cloud.google.com/compute/docs/zones#available) in which the cluster's nodes
    * should be located. Changing the locations a cluster is in will result
    * in nodes being either created or removed from the cluster, depending on
    * whether locations are being added or removed.
diff --git a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetLoggingServiceRequest.java b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetLoggingServiceRequest.java
index 54ac55c9..cfc0a40b 100644
--- a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetLoggingServiceRequest.java
+++ b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetLoggingServiceRequest.java
@@ -203,7 +203,7 @@ public com.google.protobuf.ByteString getProjectIdBytes() {
    *
    * 
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * This field has been deprecated and replaced by the name field.
    * 
@@ -229,7 +229,7 @@ public java.lang.String getZone() { * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * This field has been deprecated and replaced by the name field.
    * 
@@ -912,7 +912,7 @@ public Builder setProjectIdBytes(com.google.protobuf.ByteString value) { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
@@ -938,7 +938,7 @@ public java.lang.String getZone() { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
@@ -964,7 +964,7 @@ public com.google.protobuf.ByteString getZoneBytes() { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
@@ -989,7 +989,7 @@ public Builder setZone(java.lang.String value) { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
@@ -1010,7 +1010,7 @@ public Builder clearZone() { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
diff --git a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetLoggingServiceRequestOrBuilder.java b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetLoggingServiceRequestOrBuilder.java index 929929dd..b342d3b6 100644 --- a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetLoggingServiceRequestOrBuilder.java +++ b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetLoggingServiceRequestOrBuilder.java @@ -59,7 +59,7 @@ public interface SetLoggingServiceRequestOrBuilder * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * This field has been deprecated and replaced by the name field.
    * 
@@ -75,7 +75,7 @@ public interface SetLoggingServiceRequestOrBuilder * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * This field has been deprecated and replaced by the name field.
    * 
diff --git a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetMaintenancePolicyRequest.java b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetMaintenancePolicyRequest.java index ee01932b..55150821 100644 --- a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetMaintenancePolicyRequest.java +++ b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetMaintenancePolicyRequest.java @@ -207,7 +207,7 @@ public com.google.protobuf.ByteString getProjectIdBytes() { * *
    * Required. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * 
* @@ -231,7 +231,7 @@ public java.lang.String getZone() { * *
    * Required. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * 
* @@ -914,7 +914,7 @@ public Builder setProjectIdBytes(com.google.protobuf.ByteString value) { * *
      * Required. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * 
* @@ -938,7 +938,7 @@ public java.lang.String getZone() { * *
      * Required. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * 
* @@ -962,7 +962,7 @@ public com.google.protobuf.ByteString getZoneBytes() { * *
      * Required. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * 
* @@ -985,7 +985,7 @@ public Builder setZone(java.lang.String value) { * *
      * Required. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * 
* @@ -1004,7 +1004,7 @@ public Builder clearZone() { * *
      * Required. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * 
* diff --git a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetMaintenancePolicyRequestOrBuilder.java b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetMaintenancePolicyRequestOrBuilder.java index 353bb8a6..30410ed9 100644 --- a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetMaintenancePolicyRequestOrBuilder.java +++ b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetMaintenancePolicyRequestOrBuilder.java @@ -55,7 +55,7 @@ public interface SetMaintenancePolicyRequestOrBuilder * *
    * Required. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * 
* @@ -69,7 +69,7 @@ public interface SetMaintenancePolicyRequestOrBuilder * *
    * Required. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * 
* diff --git a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetMasterAuthRequest.java b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetMasterAuthRequest.java index 13b2ad5f..1159e271 100644 --- a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetMasterAuthRequest.java +++ b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetMasterAuthRequest.java @@ -399,7 +399,7 @@ public com.google.protobuf.ByteString getProjectIdBytes() { * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * This field has been deprecated and replaced by the name field.
    * 
@@ -425,7 +425,7 @@ public java.lang.String getZone() { * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * This field has been deprecated and replaced by the name field.
    * 
@@ -1167,7 +1167,7 @@ public Builder setProjectIdBytes(com.google.protobuf.ByteString value) { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
@@ -1193,7 +1193,7 @@ public java.lang.String getZone() { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
@@ -1219,7 +1219,7 @@ public com.google.protobuf.ByteString getZoneBytes() { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
@@ -1244,7 +1244,7 @@ public Builder setZone(java.lang.String value) { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
@@ -1265,7 +1265,7 @@ public Builder clearZone() { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
diff --git a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetMasterAuthRequestOrBuilder.java b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetMasterAuthRequestOrBuilder.java index 58473858..74e9ba29 100644 --- a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetMasterAuthRequestOrBuilder.java +++ b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetMasterAuthRequestOrBuilder.java @@ -59,7 +59,7 @@ public interface SetMasterAuthRequestOrBuilder * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * This field has been deprecated and replaced by the name field.
    * 
@@ -75,7 +75,7 @@ public interface SetMasterAuthRequestOrBuilder * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * This field has been deprecated and replaced by the name field.
    * 
diff --git a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetMonitoringServiceRequest.java b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetMonitoringServiceRequest.java index ad9fadc1..503d38ff 100644 --- a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetMonitoringServiceRequest.java +++ b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetMonitoringServiceRequest.java @@ -203,7 +203,7 @@ public com.google.protobuf.ByteString getProjectIdBytes() { * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * This field has been deprecated and replaced by the name field.
    * 
@@ -229,7 +229,7 @@ public java.lang.String getZone() { * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * This field has been deprecated and replaced by the name field.
    * 
@@ -917,7 +917,7 @@ public Builder setProjectIdBytes(com.google.protobuf.ByteString value) { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
@@ -943,7 +943,7 @@ public java.lang.String getZone() { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
@@ -969,7 +969,7 @@ public com.google.protobuf.ByteString getZoneBytes() { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
@@ -994,7 +994,7 @@ public Builder setZone(java.lang.String value) { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
@@ -1015,7 +1015,7 @@ public Builder clearZone() { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
diff --git a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetMonitoringServiceRequestOrBuilder.java b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetMonitoringServiceRequestOrBuilder.java index 47db6046..57dbb676 100644 --- a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetMonitoringServiceRequestOrBuilder.java +++ b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetMonitoringServiceRequestOrBuilder.java @@ -59,7 +59,7 @@ public interface SetMonitoringServiceRequestOrBuilder * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * This field has been deprecated and replaced by the name field.
    * 
@@ -75,7 +75,7 @@ public interface SetMonitoringServiceRequestOrBuilder * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * This field has been deprecated and replaced by the name field.
    * 
diff --git a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetNetworkPolicyRequest.java b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetNetworkPolicyRequest.java index 22e46b99..c5a35f56 100644 --- a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetNetworkPolicyRequest.java +++ b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetNetworkPolicyRequest.java @@ -211,7 +211,7 @@ public com.google.protobuf.ByteString getProjectIdBytes() { * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * This field has been deprecated and replaced by the name field.
    * 
@@ -237,7 +237,7 @@ public java.lang.String getZone() { * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * This field has been deprecated and replaced by the name field.
    * 
@@ -930,7 +930,7 @@ public Builder setProjectIdBytes(com.google.protobuf.ByteString value) { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
@@ -956,7 +956,7 @@ public java.lang.String getZone() { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
@@ -982,7 +982,7 @@ public com.google.protobuf.ByteString getZoneBytes() { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
@@ -1007,7 +1007,7 @@ public Builder setZone(java.lang.String value) { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
@@ -1028,7 +1028,7 @@ public Builder clearZone() { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
diff --git a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetNetworkPolicyRequestOrBuilder.java b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetNetworkPolicyRequestOrBuilder.java index f59ca027..274ac62b 100644 --- a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetNetworkPolicyRequestOrBuilder.java +++ b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetNetworkPolicyRequestOrBuilder.java @@ -59,7 +59,7 @@ public interface SetNetworkPolicyRequestOrBuilder * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * This field has been deprecated and replaced by the name field.
    * 
@@ -75,7 +75,7 @@ public interface SetNetworkPolicyRequestOrBuilder * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * This field has been deprecated and replaced by the name field.
    * 
diff --git a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetNodePoolAutoscalingRequest.java b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetNodePoolAutoscalingRequest.java index 5d55a104..030fb397 100644 --- a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetNodePoolAutoscalingRequest.java +++ b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetNodePoolAutoscalingRequest.java @@ -219,7 +219,7 @@ public com.google.protobuf.ByteString getProjectIdBytes() { * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * This field has been deprecated and replaced by the name field.
    * 
@@ -245,7 +245,7 @@ public java.lang.String getZone() { * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * This field has been deprecated and replaced by the name field.
    * 
@@ -1009,7 +1009,7 @@ public Builder setProjectIdBytes(com.google.protobuf.ByteString value) { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
@@ -1035,7 +1035,7 @@ public java.lang.String getZone() { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
@@ -1061,7 +1061,7 @@ public com.google.protobuf.ByteString getZoneBytes() { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
@@ -1086,7 +1086,7 @@ public Builder setZone(java.lang.String value) { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
@@ -1107,7 +1107,7 @@ public Builder clearZone() { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
diff --git a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetNodePoolAutoscalingRequestOrBuilder.java b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetNodePoolAutoscalingRequestOrBuilder.java index 61b491d8..c19f2ea7 100644 --- a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetNodePoolAutoscalingRequestOrBuilder.java +++ b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetNodePoolAutoscalingRequestOrBuilder.java @@ -59,7 +59,7 @@ public interface SetNodePoolAutoscalingRequestOrBuilder * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * This field has been deprecated and replaced by the name field.
    * 
@@ -75,7 +75,7 @@ public interface SetNodePoolAutoscalingRequestOrBuilder * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * This field has been deprecated and replaced by the name field.
    * 
diff --git a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetNodePoolManagementRequest.java b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetNodePoolManagementRequest.java index 4472fb82..06c8810f 100644 --- a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetNodePoolManagementRequest.java +++ b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetNodePoolManagementRequest.java @@ -220,7 +220,7 @@ public com.google.protobuf.ByteString getProjectIdBytes() { * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * This field has been deprecated and replaced by the name field.
    * 
@@ -246,7 +246,7 @@ public java.lang.String getZone() { * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * This field has been deprecated and replaced by the name field.
    * 
@@ -1010,7 +1010,7 @@ public Builder setProjectIdBytes(com.google.protobuf.ByteString value) { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
@@ -1036,7 +1036,7 @@ public java.lang.String getZone() { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
@@ -1062,7 +1062,7 @@ public com.google.protobuf.ByteString getZoneBytes() { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
@@ -1087,7 +1087,7 @@ public Builder setZone(java.lang.String value) { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
@@ -1108,7 +1108,7 @@ public Builder clearZone() { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
diff --git a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetNodePoolManagementRequestOrBuilder.java b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetNodePoolManagementRequestOrBuilder.java index 5ac37027..1fb0cede 100644 --- a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetNodePoolManagementRequestOrBuilder.java +++ b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetNodePoolManagementRequestOrBuilder.java @@ -59,7 +59,7 @@ public interface SetNodePoolManagementRequestOrBuilder * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * This field has been deprecated and replaced by the name field.
    * 
@@ -75,7 +75,7 @@ public interface SetNodePoolManagementRequestOrBuilder * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * This field has been deprecated and replaced by the name field.
    * 
diff --git a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetNodePoolSizeRequest.java b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetNodePoolSizeRequest.java index 8bc7eeda..c9393903 100644 --- a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetNodePoolSizeRequest.java +++ b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetNodePoolSizeRequest.java @@ -209,7 +209,7 @@ public com.google.protobuf.ByteString getProjectIdBytes() { * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * This field has been deprecated and replaced by the name field.
    * 
@@ -235,7 +235,7 @@ public java.lang.String getZone() { * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * This field has been deprecated and replaced by the name field.
    * 
@@ -950,7 +950,7 @@ public Builder setProjectIdBytes(com.google.protobuf.ByteString value) { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
@@ -976,7 +976,7 @@ public java.lang.String getZone() { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
@@ -1002,7 +1002,7 @@ public com.google.protobuf.ByteString getZoneBytes() { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
@@ -1027,7 +1027,7 @@ public Builder setZone(java.lang.String value) { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
@@ -1048,7 +1048,7 @@ public Builder clearZone() { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
diff --git a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetNodePoolSizeRequestOrBuilder.java b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetNodePoolSizeRequestOrBuilder.java index 3af6bbe9..6742fe1d 100644 --- a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetNodePoolSizeRequestOrBuilder.java +++ b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetNodePoolSizeRequestOrBuilder.java @@ -59,7 +59,7 @@ public interface SetNodePoolSizeRequestOrBuilder * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * This field has been deprecated and replaced by the name field.
    * 
@@ -75,7 +75,7 @@ public interface SetNodePoolSizeRequestOrBuilder * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * This field has been deprecated and replaced by the name field.
    * 
diff --git a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/StartIPRotationRequest.java b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/StartIPRotationRequest.java index 6222d018..df630d7a 100644 --- a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/StartIPRotationRequest.java +++ b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/StartIPRotationRequest.java @@ -201,7 +201,7 @@ public com.google.protobuf.ByteString getProjectIdBytes() { * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * This field has been deprecated and replaced by the name field.
    * 
@@ -227,7 +227,7 @@ public java.lang.String getZone() { * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * This field has been deprecated and replaced by the name field.
    * 
@@ -873,7 +873,7 @@ public Builder setProjectIdBytes(com.google.protobuf.ByteString value) { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
@@ -899,7 +899,7 @@ public java.lang.String getZone() { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
@@ -925,7 +925,7 @@ public com.google.protobuf.ByteString getZoneBytes() { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
@@ -950,7 +950,7 @@ public Builder setZone(java.lang.String value) { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
@@ -971,7 +971,7 @@ public Builder clearZone() { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
diff --git a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/StartIPRotationRequestOrBuilder.java b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/StartIPRotationRequestOrBuilder.java index 2463cfbd..3a903d2d 100644 --- a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/StartIPRotationRequestOrBuilder.java +++ b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/StartIPRotationRequestOrBuilder.java @@ -59,7 +59,7 @@ public interface StartIPRotationRequestOrBuilder * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * This field has been deprecated and replaced by the name field.
    * 
@@ -75,7 +75,7 @@ public interface StartIPRotationRequestOrBuilder * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * This field has been deprecated and replaced by the name field.
    * 
diff --git a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/UpdateClusterRequest.java b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/UpdateClusterRequest.java index 17fd3fa9..02258fc4 100644 --- a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/UpdateClusterRequest.java +++ b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/UpdateClusterRequest.java @@ -211,7 +211,7 @@ public com.google.protobuf.ByteString getProjectIdBytes() { * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * This field has been deprecated and replaced by the name field.
    * 
@@ -237,7 +237,7 @@ public java.lang.String getZone() { * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * This field has been deprecated and replaced by the name field.
    * 
@@ -924,7 +924,7 @@ public Builder setProjectIdBytes(com.google.protobuf.ByteString value) { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
@@ -950,7 +950,7 @@ public java.lang.String getZone() { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
@@ -976,7 +976,7 @@ public com.google.protobuf.ByteString getZoneBytes() { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
@@ -1001,7 +1001,7 @@ public Builder setZone(java.lang.String value) { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
@@ -1022,7 +1022,7 @@ public Builder clearZone() { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
diff --git a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/UpdateClusterRequestOrBuilder.java b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/UpdateClusterRequestOrBuilder.java index c5bb9ac6..41dcbd59 100644 --- a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/UpdateClusterRequestOrBuilder.java +++ b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/UpdateClusterRequestOrBuilder.java @@ -59,7 +59,7 @@ public interface UpdateClusterRequestOrBuilder * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * This field has been deprecated and replaced by the name field.
    * 
@@ -75,7 +75,7 @@ public interface UpdateClusterRequestOrBuilder * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * This field has been deprecated and replaced by the name field.
    * 
diff --git a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/UpdateMasterRequest.java b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/UpdateMasterRequest.java index eb5bba3a..8934248c 100644 --- a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/UpdateMasterRequest.java +++ b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/UpdateMasterRequest.java @@ -203,7 +203,7 @@ public com.google.protobuf.ByteString getProjectIdBytes() { * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * This field has been deprecated and replaced by the name field.
    * 
@@ -229,7 +229,7 @@ public java.lang.String getZone() { * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * This field has been deprecated and replaced by the name field.
    * 
@@ -919,7 +919,7 @@ public Builder setProjectIdBytes(com.google.protobuf.ByteString value) { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
@@ -945,7 +945,7 @@ public java.lang.String getZone() { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
@@ -971,7 +971,7 @@ public com.google.protobuf.ByteString getZoneBytes() { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
@@ -996,7 +996,7 @@ public Builder setZone(java.lang.String value) { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
@@ -1017,7 +1017,7 @@ public Builder clearZone() { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
diff --git a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/UpdateMasterRequestOrBuilder.java b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/UpdateMasterRequestOrBuilder.java index 88bd97de..2651382f 100644 --- a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/UpdateMasterRequestOrBuilder.java +++ b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/UpdateMasterRequestOrBuilder.java @@ -59,7 +59,7 @@ public interface UpdateMasterRequestOrBuilder * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * This field has been deprecated and replaced by the name field.
    * 
@@ -75,7 +75,7 @@ public interface UpdateMasterRequestOrBuilder * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * This field has been deprecated and replaced by the name field.
    * 
diff --git a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/UpdateNodePoolRequest.java b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/UpdateNodePoolRequest.java index 3bad127a..0900a1b4 100644 --- a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/UpdateNodePoolRequest.java +++ b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/UpdateNodePoolRequest.java @@ -219,7 +219,7 @@ public com.google.protobuf.ByteString getProjectIdBytes() { * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * This field has been deprecated and replaced by the name field.
    * 
@@ -245,7 +245,7 @@ public java.lang.String getZone() { * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * This field has been deprecated and replaced by the name field.
    * 
@@ -1069,7 +1069,7 @@ public Builder setProjectIdBytes(com.google.protobuf.ByteString value) { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
@@ -1095,7 +1095,7 @@ public java.lang.String getZone() { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
@@ -1121,7 +1121,7 @@ public com.google.protobuf.ByteString getZoneBytes() { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
@@ -1146,7 +1146,7 @@ public Builder setZone(java.lang.String value) { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
@@ -1167,7 +1167,7 @@ public Builder clearZone() { * *
      * Deprecated. The name of the Google Compute Engine
-     * [zone](/compute/docs/zones#available) in which the cluster
+     * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
      * resides.
      * This field has been deprecated and replaced by the name field.
      * 
diff --git a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/UpdateNodePoolRequestOrBuilder.java b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/UpdateNodePoolRequestOrBuilder.java index ad4e1bc8..f944010d 100644 --- a/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/UpdateNodePoolRequestOrBuilder.java +++ b/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/UpdateNodePoolRequestOrBuilder.java @@ -59,7 +59,7 @@ public interface UpdateNodePoolRequestOrBuilder * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * This field has been deprecated and replaced by the name field.
    * 
@@ -75,7 +75,7 @@ public interface UpdateNodePoolRequestOrBuilder * *
    * Deprecated. The name of the Google Compute Engine
-   * [zone](/compute/docs/zones#available) in which the cluster
+   * [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster
    * resides.
    * This field has been deprecated and replaced by the name field.
    * 
diff --git a/proto-google-cloud-container-v1/src/main/proto/google/container/v1/cluster_service.proto b/proto-google-cloud-container-v1/src/main/proto/google/container/v1/cluster_service.proto index 6330645a..2fa38277 100644 --- a/proto-google-cloud-container-v1/src/main/proto/google/container/v1/cluster_service.proto +++ b/proto-google-cloud-container-v1/src/main/proto/google/container/v1/cluster_service.proto @@ -29,6 +29,7 @@ option java_multiple_files = true; option java_outer_classname = "ClusterServiceProto"; option java_package = "com.google.container.v1"; option php_namespace = "Google\\Cloud\\Container\\V1"; +option ruby_package = "Google::Cloud::Container::V1"; // Google Kubernetes Engine Cluster Manager v1 service ClusterManager { @@ -64,7 +65,7 @@ service ClusterManager { // Compute Engine instances. // // By default, the cluster is created in the project's - // [default network](/compute/docs/networks-and-firewalls#networks). + // [default network](https://cloud.google.com/compute/docs/networks-and-firewalls#networks). // // One firewall is added for the cluster. After cluster creation, // the Kubelet creates routes for each node to allow the containers @@ -458,7 +459,7 @@ service ClusterManager { // Parameters that describe the nodes in a cluster. message NodeConfig { // The name of a Google Compute Engine [machine - // type](/compute/docs/machine-types) (e.g. + // type](https://cloud.google.com/compute/docs/machine-types) (e.g. // `n1-standard-1`). // // If unspecified, the default machine type is @@ -481,7 +482,7 @@ message NodeConfig { // persistent storage on your nodes. // * `https://www.googleapis.com/auth/devstorage.read_only` is required for // communicating with **gcr.io** - // (the [Google Container Registry](/container-registry/)). + // (the [Google Container Registry](https://cloud.google.com/container-registry/)). // // If unspecified, no scopes are added, unless Cloud Logging or Cloud // Monitoring are enabled, in which case their required scopes will be added. @@ -1038,7 +1039,7 @@ message Cluster { string monitoring_service = 7; // The name of the Google Compute Engine - // [network](/compute/docs/networks-and-firewalls#networks) to which the + // [network](https://cloud.google.com/compute/docs/networks-and-firewalls#networks) to which the // cluster is connected. If left unspecified, the `default` network // will be used. string network = 8; @@ -1053,7 +1054,7 @@ message Cluster { AddonsConfig addons_config = 10; // The name of the Google Compute Engine - // [subnetwork](/compute/docs/subnetworks) to which the + // [subnetwork](https://cloud.google.com/compute/docs/subnetworks) to which the // cluster is connected. string subnetwork = 11; @@ -1063,7 +1064,7 @@ message Cluster { repeated NodePool node_pools = 12; // The list of Google Compute Engine - // [zones](/compute/docs/zones#available) in which the cluster's nodes + // [zones](https://cloud.google.com/compute/docs/zones#available) in which the cluster's nodes // should be located. repeated string locations = 13; @@ -1131,7 +1132,7 @@ message Cluster { string self_link = 100; // [Output only] The name of the Google Compute Engine - // [zone](/compute/docs/zones#available) in which the cluster + // [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster // resides. // This field is deprecated, use location instead. string zone = 101 [deprecated = true]; @@ -1163,7 +1164,7 @@ message Cluster { string current_master_version = 104; // [Output only] Deprecated, use - // [NodePools.version](/kubernetes-engine/docs/reference/rest/v1/projects.zones.clusters.nodePools) + // [NodePools.version](https://cloud.google.com/kubernetes-engine/docs/reference/rest/v1/projects.zones.clusters.nodePools) // instead. The current version of the node software components. If they are // currently at multiple versions because they're in the process of being // upgraded, this reflects the minimum version of all nodes. @@ -1205,8 +1206,8 @@ message Cluster { string expire_time = 113; // [Output only] The name of the Google Compute Engine - // [zone](/compute/docs/regions-zones/regions-zones#available) or - // [region](/compute/docs/regions-zones/regions-zones#available) in which + // [zone](https://cloud.google.com/compute/docs/regions-zones/regions-zones#available) or + // [region](https://cloud.google.com/compute/docs/regions-zones/regions-zones#available) in which // the cluster resides. string location = 114; @@ -1271,7 +1272,7 @@ message ClusterUpdate { NodePoolAutoscaling desired_node_pool_autoscaling = 9; // The desired list of Google Compute Engine - // [zones](/compute/docs/zones#available) in which the cluster's nodes + // [zones](https://cloud.google.com/compute/docs/zones#available) in which the cluster's nodes // should be located. Changing the locations a cluster is in will result // in nodes being either created or removed from the cluster, depending on // whether locations are being added or removed. @@ -1398,7 +1399,7 @@ message Operation { string name = 1; // The name of the Google Compute Engine - // [zone](/compute/docs/zones#available) in which the operation + // [zone](https://cloud.google.com/compute/docs/zones#available) in which the operation // is taking place. // This field is deprecated, use location instead. string zone = 2 [deprecated = true]; @@ -1422,8 +1423,8 @@ message Operation { string target_link = 7; // [Output only] The name of the Google Compute Engine - // [zone](/compute/docs/regions-zones/regions-zones#available) or - // [region](/compute/docs/regions-zones/regions-zones#available) in which + // [zone](https://cloud.google.com/compute/docs/regions-zones/regions-zones#available) or + // [region](https://cloud.google.com/compute/docs/regions-zones/regions-zones#available) in which // the cluster resides. string location = 9; @@ -1450,13 +1451,13 @@ message CreateClusterRequest { string project_id = 1 [deprecated = true]; // Deprecated. The name of the Google Compute Engine - // [zone](/compute/docs/zones#available) in which the cluster + // [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster // resides. // This field has been deprecated and replaced by the parent field. string zone = 2 [deprecated = true]; // Required. A [cluster - // resource](/container-engine/reference/rest/v1/projects.zones.clusters) + // resource](https://cloud.google.com/container-engine/reference/rest/v1/projects.zones.clusters) Cluster cluster = 3 [(google.api.field_behavior) = REQUIRED]; // The parent (project and location) where the cluster will be created. @@ -1472,7 +1473,7 @@ message GetClusterRequest { string project_id = 1 [deprecated = true]; // Deprecated. The name of the Google Compute Engine - // [zone](/compute/docs/zones#available) in which the cluster + // [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster // resides. // This field has been deprecated and replaced by the name field. string zone = 2 [deprecated = true]; @@ -1494,7 +1495,7 @@ message UpdateClusterRequest { string project_id = 1 [deprecated = true]; // Deprecated. The name of the Google Compute Engine - // [zone](/compute/docs/zones#available) in which the cluster + // [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster // resides. // This field has been deprecated and replaced by the name field. string zone = 2 [deprecated = true]; @@ -1519,7 +1520,7 @@ message UpdateNodePoolRequest { string project_id = 1 [deprecated = true]; // Deprecated. The name of the Google Compute Engine - // [zone](/compute/docs/zones#available) in which the cluster + // [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster // resides. // This field has been deprecated and replaced by the name field. string zone = 2 [deprecated = true]; @@ -1562,7 +1563,7 @@ message SetNodePoolAutoscalingRequest { string project_id = 1 [deprecated = true]; // Deprecated. The name of the Google Compute Engine - // [zone](/compute/docs/zones#available) in which the cluster + // [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster // resides. // This field has been deprecated and replaced by the name field. string zone = 2 [deprecated = true]; @@ -1592,7 +1593,7 @@ message SetLoggingServiceRequest { string project_id = 1 [deprecated = true]; // Deprecated. The name of the Google Compute Engine - // [zone](/compute/docs/zones#available) in which the cluster + // [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster // resides. // This field has been deprecated and replaced by the name field. string zone = 2 [deprecated = true]; @@ -1621,7 +1622,7 @@ message SetMonitoringServiceRequest { string project_id = 1 [deprecated = true]; // Deprecated. The name of the Google Compute Engine - // [zone](/compute/docs/zones#available) in which the cluster + // [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster // resides. // This field has been deprecated and replaced by the name field. string zone = 2 [deprecated = true]; @@ -1652,7 +1653,7 @@ message SetAddonsConfigRequest { string project_id = 1 [deprecated = true]; // Deprecated. The name of the Google Compute Engine - // [zone](/compute/docs/zones#available) in which the cluster + // [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster // resides. // This field has been deprecated and replaced by the name field. string zone = 2 [deprecated = true]; @@ -1678,7 +1679,7 @@ message SetLocationsRequest { string project_id = 1 [deprecated = true]; // Deprecated. The name of the Google Compute Engine - // [zone](/compute/docs/zones#available) in which the cluster + // [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster // resides. // This field has been deprecated and replaced by the name field. string zone = 2 [deprecated = true]; @@ -1688,7 +1689,7 @@ message SetLocationsRequest { string cluster_id = 3 [deprecated = true]; // Required. The desired list of Google Compute Engine - // [zones](/compute/docs/zones#available) in which the cluster's nodes + // [zones](https://cloud.google.com/compute/docs/zones#available) in which the cluster's nodes // should be located. Changing the locations a cluster is in will result // in nodes being either created or removed from the cluster, depending on // whether locations are being added or removed. @@ -1709,7 +1710,7 @@ message UpdateMasterRequest { string project_id = 1 [deprecated = true]; // Deprecated. The name of the Google Compute Engine - // [zone](/compute/docs/zones#available) in which the cluster + // [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster // resides. // This field has been deprecated and replaced by the name field. string zone = 2 [deprecated = true]; @@ -1761,7 +1762,7 @@ message SetMasterAuthRequest { string project_id = 1 [deprecated = true]; // Deprecated. The name of the Google Compute Engine - // [zone](/compute/docs/zones#available) in which the cluster + // [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster // resides. // This field has been deprecated and replaced by the name field. string zone = 2 [deprecated = true]; @@ -1789,7 +1790,7 @@ message DeleteClusterRequest { string project_id = 1 [deprecated = true]; // Deprecated. The name of the Google Compute Engine - // [zone](/compute/docs/zones#available) in which the cluster + // [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster // resides. // This field has been deprecated and replaced by the name field. string zone = 2 [deprecated = true]; @@ -1811,7 +1812,7 @@ message ListClustersRequest { string project_id = 1 [deprecated = true]; // Deprecated. The name of the Google Compute Engine - // [zone](/compute/docs/zones#available) in which the cluster + // [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster // resides, or "-" for all zones. // This field has been deprecated and replaced by the parent field. string zone = 2 [deprecated = true]; @@ -1841,7 +1842,7 @@ message GetOperationRequest { string project_id = 1 [deprecated = true]; // Deprecated. The name of the Google Compute Engine - // [zone](/compute/docs/zones#available) in which the cluster + // [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster // resides. // This field has been deprecated and replaced by the name field. string zone = 2 [deprecated = true]; @@ -1863,7 +1864,7 @@ message ListOperationsRequest { string project_id = 1 [deprecated = true]; // Deprecated. The name of the Google Compute Engine - // [zone](/compute/docs/zones#available) to return operations for, or `-` for + // [zone](https://cloud.google.com/compute/docs/zones#available) to return operations for, or `-` for // all zones. This field has been deprecated and replaced by the parent field. string zone = 2 [deprecated = true]; @@ -1881,7 +1882,7 @@ message CancelOperationRequest { string project_id = 1 [deprecated = true]; // Deprecated. The name of the Google Compute Engine - // [zone](/compute/docs/zones#available) in which the operation resides. + // [zone](https://cloud.google.com/compute/docs/zones#available) in which the operation resides. // This field has been deprecated and replaced by the name field. string zone = 2 [deprecated = true]; @@ -1912,7 +1913,7 @@ message GetServerConfigRequest { string project_id = 1 [deprecated = true]; // Deprecated. The name of the Google Compute Engine - // [zone](/compute/docs/zones#available) to return operations for. + // [zone](https://cloud.google.com/compute/docs/zones#available) to return operations for. // This field has been deprecated and replaced by the name field. string zone = 2 [deprecated = true]; @@ -1947,7 +1948,7 @@ message CreateNodePoolRequest { string project_id = 1 [deprecated = true]; // Deprecated. The name of the Google Compute Engine - // [zone](/compute/docs/zones#available) in which the cluster + // [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster // resides. // This field has been deprecated and replaced by the parent field. string zone = 2 [deprecated = true]; @@ -1973,7 +1974,7 @@ message DeleteNodePoolRequest { string project_id = 1 [deprecated = true]; // Deprecated. The name of the Google Compute Engine - // [zone](/compute/docs/zones#available) in which the cluster + // [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster // resides. // This field has been deprecated and replaced by the name field. string zone = 2 [deprecated = true]; @@ -2000,7 +2001,7 @@ message ListNodePoolsRequest { string project_id = 1 [deprecated = true]; // Deprecated. The name of the Google Compute Engine - // [zone](/compute/docs/zones#available) in which the cluster + // [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster // resides. // This field has been deprecated and replaced by the parent field. string zone = 2 [deprecated = true]; @@ -2022,7 +2023,7 @@ message GetNodePoolRequest { string project_id = 1 [deprecated = true]; // Deprecated. The name of the Google Compute Engine - // [zone](/compute/docs/zones#available) in which the cluster + // [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster // resides. // This field has been deprecated and replaced by the name field. string zone = 2 [deprecated = true]; @@ -2098,7 +2099,7 @@ message NodePool { string version = 101; // [Output only] The resource URLs of the [managed instance - // groups](/compute/docs/instance-groups/creating-groups-of-managed-instances) + // groups](https://cloud.google.com/compute/docs/instance-groups/creating-groups-of-managed-instances) // associated with this node pool. repeated string instance_group_urls = 102; @@ -2256,7 +2257,7 @@ message SetNodePoolManagementRequest { string project_id = 1 [deprecated = true]; // Deprecated. The name of the Google Compute Engine - // [zone](/compute/docs/zones#available) in which the cluster + // [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster // resides. // This field has been deprecated and replaced by the name field. string zone = 2 [deprecated = true]; @@ -2287,7 +2288,7 @@ message SetNodePoolSizeRequest { string project_id = 1 [deprecated = true]; // Deprecated. The name of the Google Compute Engine - // [zone](/compute/docs/zones#available) in which the cluster + // [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster // resides. // This field has been deprecated and replaced by the name field. string zone = 2 [deprecated = true]; @@ -2319,7 +2320,7 @@ message RollbackNodePoolUpgradeRequest { string project_id = 1 [deprecated = true]; // Deprecated. The name of the Google Compute Engine - // [zone](/compute/docs/zones#available) in which the cluster + // [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster // resides. // This field has been deprecated and replaced by the name field. string zone = 2 [deprecated = true]; @@ -2360,7 +2361,7 @@ message ClusterAutoscaling { // created by NAP. AutoprovisioningNodePoolDefaults autoprovisioning_node_pool_defaults = 4; - // The list of Google Compute Engine [zones](/compute/docs/zones#available) + // The list of Google Compute Engine [zones](https://cloud.google.com/compute/docs/zones#available) // in which the NodePool's nodes can be created by NAP. repeated string autoprovisioning_locations = 5; } @@ -2418,7 +2419,7 @@ message SetLabelsRequest { string project_id = 1 [deprecated = true]; // Deprecated. The name of the Google Compute Engine - // [zone](/compute/docs/zones#available) in which the cluster + // [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster // resides. // This field has been deprecated and replaced by the name field. string zone = 2 [deprecated = true]; @@ -2452,7 +2453,7 @@ message SetLegacyAbacRequest { string project_id = 1 [deprecated = true]; // Deprecated. The name of the Google Compute Engine - // [zone](/compute/docs/zones#available) in which the cluster + // [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster // resides. // This field has been deprecated and replaced by the name field. string zone = 2 [deprecated = true]; @@ -2478,7 +2479,7 @@ message StartIPRotationRequest { string project_id = 1 [deprecated = true]; // Deprecated. The name of the Google Compute Engine - // [zone](/compute/docs/zones#available) in which the cluster + // [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster // resides. // This field has been deprecated and replaced by the name field. string zone = 2 [deprecated = true]; @@ -2503,7 +2504,7 @@ message CompleteIPRotationRequest { string project_id = 1 [deprecated = true]; // Deprecated. The name of the Google Compute Engine - // [zone](/compute/docs/zones#available) in which the cluster + // [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster // resides. // This field has been deprecated and replaced by the name field. string zone = 2 [deprecated = true]; @@ -2523,7 +2524,7 @@ message AcceleratorConfig { int64 accelerator_count = 1; // The accelerator type resource name. List of supported accelerators - // [here](/compute/docs/gpus) + // [here](https://cloud.google.com/compute/docs/gpus) string accelerator_type = 2; } @@ -2535,7 +2536,7 @@ message SetNetworkPolicyRequest { string project_id = 1 [deprecated = true]; // Deprecated. The name of the Google Compute Engine - // [zone](/compute/docs/zones#available) in which the cluster + // [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster // resides. // This field has been deprecated and replaced by the name field. string zone = 2 [deprecated = true]; @@ -2559,7 +2560,7 @@ message SetMaintenancePolicyRequest { string project_id = 1 [(google.api.field_behavior) = REQUIRED]; // Required. The name of the Google Compute Engine - // [zone](/compute/docs/zones#available) in which the cluster + // [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster // resides. string zone = 2 [(google.api.field_behavior) = REQUIRED]; @@ -2613,13 +2614,13 @@ message StatusCondition { // NetworkConfig reports the relative names of network & subnetwork. message NetworkConfig { // Output only. The relative name of the Google Compute Engine - // [network][google.container.v1.NetworkConfig.network](/compute/docs/networks-and-firewalls#networks) to which + // [network][google.container.v1.NetworkConfig.network](https://cloud.google.com/compute/docs/networks-and-firewalls#networks) to which // the cluster is connected. // Example: projects/my-project/global/networks/my-network string network = 1; // Output only. The relative name of the Google Compute Engine - // [subnetwork](/compute/docs/vpc) to which the cluster is connected. + // [subnetwork](https://cloud.google.com/compute/docs/vpc) to which the cluster is connected. // Example: projects/my-project/regions/us-central1/subnetworks/my-subnet string subnetwork = 2; diff --git a/synth.metadata b/synth.metadata index 26997576..0e078fd8 100644 --- a/synth.metadata +++ b/synth.metadata @@ -1,19 +1,28 @@ { - "updateTime": "2020-04-06T23:01:47.093110Z", + "updateTime": "2020-04-08T22:59:38.552250Z", "sources": [ + { + "git": { + "name": ".", + "remote": "https://github.com/googleapis/java-container.git", + "sha": "bfed70dccc0527caa812ea43f1ac44955f53d92e" + } + }, { "git": { "name": "googleapis", "remote": "https://github.com/googleapis/googleapis.git", - "sha": "0e07113e776bdd8fcc0783372e08bb6e76cb1b5b", - "internalRef": "302892245" + "sha": "d741cd976975c745d0199987aff0e908b8352992", + "internalRef": "305561906", + "log": "d741cd976975c745d0199987aff0e908b8352992\nchore: enable gapicv2 for firestore/v1 API\n\nNote that this contains breaking Java changes:\n com.google.cloud.firestore.v1.FirestoreClient: Method 'public void deleteDocument(com.google.firestore.v1.AnyPathName)' has been removed\n\nCommitter: @miraleung\nPiperOrigin-RevId: 305561906\n\n0d69cddaa23b556e7299f84ad55a02ec1cad55a9\nchore: enable gapicv2 for firestore/admin/v1 API\n\nCommitter: @miraleung\n\nThere are the following breaking changes due to the collection_id discrepancy between [1] and [2]\n\n1. https://github.com/googleapis/googleapis/blob/6f8350c0df231d7e742fa10dbf929f33047715c9/google/firestore/admin/v1/firestore_gapic.yaml#L24-L29\n2. https://github.com/googleapis/googleapis/blob/6f8350c0df231d7e742fa10dbf929f33047715c9/google/firestore/admin/v1/field.proto#L39\n```\ncom.google.firestore.admin.v1.FieldName: Method 'public java.lang.String getCollectionId()' has been removed\ncom.google.firestore.admin.v1.FieldName: Method 'public java.lang.String getFieldId()' has been removed\ncom.google.firestore.admin.v1.FieldName$Builder: Method 'public java.lang.String getCollectionId()' has been removed\ncom.google.firestore.admin.v1.FieldName$Builder: Method 'public java.lang.String getFieldId()' has been removed\ncom.google.firestore.admin.v1.FieldName$Builder: Method 'public com.google.firestore.admin.v1.FieldName$Builder setCollectionId(java.lang.String)' has been removed\ncom.google.firestore.admin.v1.FieldName$Builder: Method 'public com.google.firestore.admin.v1.FieldName$Builder setFieldId(java.lang.String)' has been removed\ncom.google.firestore.admin.v1.IndexName: Method 'public java.lang.String getCollectionId()' has been removed\ncom.google.firestore.admin.v1.IndexName: Method 'public java.lang.String getIndexId()' has been removed\ncom.google.firestore.admin.v1.IndexName$Builder: Method 'public java.lang.String getCollectionId()' has been removed\ncom.google.firestore.admin.v1.IndexName$Builder: Method 'public java.lang.String getIndexId()' has been removed\ncom.google.firestore.admin.v1.IndexName$Builder: Method 'public com.google.firestore.admin.v1.IndexName$Builder setCollectionId(java.lang.String)' has been removed\ncom.google.firestore.admin.v1.IndexName$Builder: Method 'public com.google.firestore.admin.v1.IndexName$Builder setIndexId(java.lang.String)' has been removed\n```\n\nPiperOrigin-RevId: 305561114\n\n6f8350c0df231d7e742fa10dbf929f33047715c9\nchore: enable gapicv2 for firestore/v1beta1 API\n\nCommitter: @miraleung\nPiperOrigin-RevId: 305537104\n\nd398d687aad9eab4c6ceee9cd5e012fa61f7e28c\ndocs: change relative URLs to absolute URLs to fix broken links.\n\nPiperOrigin-RevId: 305496764\n\n5520cb891a72ab0b0cbe3facaca7b012785f5b49\nchore: update gapic-generator to cd3c9ee7\n\nChanges include:\n* update generated nox file\n* fix generated license text alignment\n\nPiperOrigin-RevId: 305484038\n\nb20965f260d70e57b7dcd312cd356d6a81f31f8e\nUpdating retry configuration settings.\n\nPiperOrigin-RevId: 305431885\n\n83d7f20c06182cb6ada9a3b47daf17b2fd22b020\nMigrate dialogflow from gapic v1 to gapic v2.\nIncluding breaking changes (resource pattern change) introduced in cl/304043500.\n\ncommitter: @hzyi-google\nPiperOrigin-RevId: 305358314\n\nf8a97692250a6c781d87528995a5c72d41ca7762\nchore: enable gapic v2 and proto annotation for Grafeas API.\n\ncommitter: @noahdietz\nPiperOrigin-RevId: 305354660\n\nb1a5ca68468eb1587168972c9d15928e98ba92b0\nEnable gapicv2 for v1/osconfig\n\nCommitter: @miraleung\nPiperOrigin-RevId: 305351235\n\nc803327f9b1dd2583b070645b5b86e5e7ead3161\nEnable gapicv2 for osconfig/agentendpoint/v1beta\n\nCommitter: @miraleung\nPiperOrigin-RevId: 305350472\n\n99dddf1de598f95a71d3536f5c170d84f0c0ef87\nchore: enable gapicv2 for build/v1 API\n\nCommitter: @miraleung\nPiperOrigin-RevId: 305349884\n\nbf85ee3ed64951c14b19ef8577689f43ee6f0f41\nchore: enable gapicv2 for cloudbuild/v1 API\n\nCommitter: @miraleung\nPiperOrigin-RevId: 305349873\n\nf497c7aa912df121e11772767e667fdbc10a63d9\nchore: enable gapic v2 and proto annotation for Web Security Scanner v1alpha API.\n\ncommitter: @noahdietz\nPiperOrigin-RevId: 305349342\n\n0669a37c66d76bd413343da69420bb75c49062e7\nchore: rename unused GAPIC v1 configs for IAM to legacy\n\ncommitter: @noahdietz\nPiperOrigin-RevId: 305340308\n\naf7da29c24814a1c873c22f477e9dd8dd5a17b0b\nchore: set Ruby namespace in proto options\n\nPiperOrigin-RevId: 305330079\n\n3f767aa32b4b3313027d05b503aaba63e0c432a3\ndocs: Update an out-of-date external link.\n\nPiperOrigin-RevId: 305329485\n\n9ede34d093b9d786a974448fc7a3a17948c203e2\nchore: set Ruby namespace in proto options\n\nPiperOrigin-RevId: 305327985\n\n27daba50281357b676e1ba882422ebeab4ce4f92\nchore: set Ruby namespace in proto options\n\nPiperOrigin-RevId: 305327500\n\n82de0f6f04649651958b96fbc5b0b39dd4dbbd01\nFix: Add missing resource name definition (from the Compute API).\n\nPiperOrigin-RevId: 305324763\n\n744591190e828440f72745aef217f883afd1fd71\ndocs: change relative URLs to absolute URLs to fix broken links.\n\nPiperOrigin-RevId: 305323909\n\n1247c135ceaedfe04261d27a64aaecf78ffbae74\nchore: enable gapicv2 for videointelligence/v1beta2 API\n\nCommitter: @miraleung\nPiperOrigin-RevId: 305321976\n\n633c8b13227b9e3810749964d580e5be504db488\nchore: enable gapicv2 for videointelligence/v1p1beta1 API\n\nCommitter: @miraleung\nPiperOrigin-RevId: 305320877\n\n29aac60f121dc43382b37ff92f2dbb692d94143a\ndocs: fix broken link to policy reference documentation.\n\nPiperOrigin-RevId: 305319540\n\n54ddbbf14c489b8a2f0731aa39408c016f5a8387\nbazel: update gapic-generator-go to v0.13.0\n\nChanges include:\n* add clientHook feature\n\nPiperOrigin-RevId: 305289945\n\n823facb4ca6a4b36b817ce955a790dcb40cf808f\nchore: enable gapicv2 for videointelligence/v1p3beta1\n\nCommitter: @miraleung\nPiperOrigin-RevId: 305155214\n\n6b9c969d42bcb0f8206675bd868ed7d1ddcdaef9\nAdd API for bigqueryreservation v1.\n\nPiperOrigin-RevId: 305151484\n\n514f7d27811832a9f58b83d6f6305d894b097cf6\nchore: enable gapicv2 for phishingprotection/v1beta1 API\n\nCommitter: @miraleung\nPiperOrigin-RevId: 305126983\n\nff74d47d47280e6bbcbad1a7c82b1e0959c472ec\nfix: PHP-related fixes in BUILD.bazel and service.yamls\n\nThis PR also adds the rules for all 7 langauges in OsLogin and Kms BUILD.bazel files. Those build files were missing rules for 5 langagues, including PHP.\n\nThis PR is the prerequisite for migrating PHP synth.py scripts from artman to bazel.\n\nThe fixes in service.yaml fix regression made during proto annotation migration. This became visible only during PHP generation, because only PHP depends on the affected sections of the service.yaml config.\n\nPiperOrigin-RevId: 305108224\n\nfdbc7b1f63969307c71143a0c24fdfd02e739df6\nEnable gapicv2 for osconfig/agentendpoint/v1\n\nCommitter: @miraleung\nPiperOrigin-RevId: 305086443\n\n1490d30e1ae339570dd7826ba625a603ede91a08\nEnable gapicv2 for osconfig/v1beta\n\nCommitter: @miraleung\nPiperOrigin-RevId: 305069755\n\n7bf824e82e5c3549642b150dc4a9579602000f34\nEnable gapicv2 for iam/credentials/v1\n\nCommitter: @miraleung\nPiperOrigin-RevId: 305065283\n\n9ff6fd3b22f99167827e89aae7778408b5e82425\nUpdates Dataproc v1 API:\n- Adds Dataproc Jobs.SubmitJobAsOperation RPC\n- Adds SparkR and Presto job types to WorkflowTemplates\n- Adds new Optional Components\n- Clarifies usage of some APIs\n\nPiperOrigin-RevId: 305053617\n\ncad0f5137a70d0d14a8d9acbfcee98e4cd3e9662\nUpdates to Dataproc v1beta2 API:\n- Adds SparkR and Presto job types to WorkflowTemplates\n- Adds new Optional Components\n- Clarifies usage of some APIs\n\nPiperOrigin-RevId: 305053062\n\na005f045a301535eeb4c4b3fa7bb94eec9d22a8b\nAdd support for Cloud EKM to the Cloud KMS service and resource protos.\n\nPiperOrigin-RevId: 305026790\n\n5077b1e4674afdbbf11dac3f5f43d36285ba53ff\nchore: set Ruby namespace in proto options\n\nPiperOrigin-RevId: 304836531\n\nd6cb4997910eda04c0c66c0f2fd043eeaa0f660d\nchore: enable gapic v2 and proto annotation for documentai API.\n\ncommitter @summer-ji-eng\n\nPiperOrigin-RevId: 304724866\n\n490bc556608bfa5b1548c9374b06152fa33d657e\nEnable gapicv2 for devtools/remoteworkers/v1test2\n\nCommitter: @miraleung\nPiperOrigin-RevId: 304718691\n\n9f78ce31a5bd7f4a63e3cf0ddf28221557adb7ed\nEnable gapicv2 for managedidentities/v1beta1\n\nCommitter: @miraleung\nPiperOrigin-RevId: 304718676\n\n6e17d259b8e320bc51aa240cefef05ec753e2b83\ndocs: treat a dummy example URL as a string literal instead of a link\n\nPiperOrigin-RevId: 304716376\n\na8d76f99d3073aaccabdcc122c798a63e812c4fe\ndocs: change relative URLs to absolute URLs to fix broken links.\n\nPiperOrigin-RevId: 304702368\n\n65c749bc6a1d240416a0e6979381b67f97aff907\ndocs: fix formatting of some regexes and string literals.\n\nPiperOrigin-RevId: 304701150\n\n9119eefcd2b5ce845a680fa4ec4093ed733498f0\nchore: set Ruby namespace in proto options\n\nPiperOrigin-RevId: 304698702\n\n62a2a7cc33d3535638d220df238823eefcca930d\nchore: set Ruby namespace in proto options\n\nPiperOrigin-RevId: 304696461\n\n23848c8f64a5e81a239d6133378468185f1756dc\nchore: set Ruby namespace in proto options\n\nPiperOrigin-RevId: 304696192\n\n9514fa9e390a4c0715972c5b510cf4c10ad049a1\ndocs: change relative URLs to absolute URLs to fix broken links.\n\nPiperOrigin-RevId: 304695334\n\n0f7b1509a9a452808c3d07fe90fedfcea763d7d5\nfix: change config_schema_version to 2.0.0 for containeranalysis v1 gapic config.\n\ncommitter: @hzyi-google\nPiperOrigin-RevId: 304672648\n\n3d52f3c126fbfc31f067a7f54737b7f0dfbce163\nDialogflow weekly v2 library update:\n- Change `parent` field's resource_reference to specify child_type instead of type per client library generation requirement;\n- Change Session with its child resource pattern to support both projects/{project}/agent/sessions/{session} and projects/{project}/agent/environments/{environment}/users/{user}/sessions/{session};\n- Fix `method_signature`\n- Regular documentation update\n\nImportant updates are also posted at:\nhttps://cloud.google.com/dialogflow/docs/release-notes\n\nPiperOrigin-RevId: 304635286\n\n4a6a01ce0ead505c245d11a2ce156de34800c58f\ndocs: change a relative URL to an absolute URL to fix broken links.\n\nPiperOrigin-RevId: 304633630\n\n1b969c28a6579265e89cd35e6c2ecacc89970e2d\nchore: set Ruby namespace in proto options\n\nPiperOrigin-RevId: 304620317\n\n5378173a889f9c7d83e36e52d38a6267190de692\nAdd v1beta2 SubmitJobAsOperation RPC to Dataproc.\n\nPiperOrigin-RevId: 304594381\n\n3d5d228a58bdf875e6147b228db3159010c735ee\nEnable visibility on the GetSnapshot and GetTopicSnapshots methods\n\nPiperOrigin-RevId: 304500143\n\n1346f5c11a0376bc82c5c03259b304de52671518\nRefresh public client library for Cloud Monitoring.\nIncrease default ListTimeSeries deadline to 90s.\n\nPiperOrigin-RevId: 304467075\n\n4a6cfccb4a32cb28db7366295d90078c6af3112f\ndocs: Fix link in monitoring summary description.\n\nPiperOrigin-RevId: 304438717\n\n6e2ea9a4b63a264090f1bd4b5b25766a3f634f3a\nfix: add interface name overrides back to logging gapic config.\n\ncommitter: @hzyi-google\nPiperOrigin-RevId: 304438432\n\n01f3ccbaa66cf3ae4e3b9fd140b1ecfbe54a3ed0\nFix: Add package/namespace options for C#, Ruby and PHP in remaining protos.\n\nPiperOrigin-RevId: 304416658\n\nb89abbf12cd3c086abddcd79adb0a653349f960a\nchore(google/maps): Rename nox.py to noxfile.py\n\nupstream wip fix here: https://github.com/googleapis/gapic-generator/pull/3156\n\nPiperOrigin-RevId: 304411146\n\nbbf26d7f11fae7789b13959bf100983c496c9807\nSynchronize new proto/yaml changes.\n\nPiperOrigin-RevId: 304409906\n\n75047719f704d61f405cac6d7439637ab36c1232\nfix Dataproc: add missing `REQUIRED` annotation.\n\nPiperOrigin-RevId: 304305096\n\n7e1b880fd5d477176cf9b0bb9b137b9bea56e787\nAdd Ruby/PHP namespace options\n\nPiperOrigin-RevId: 304288402\n\naba342359b6743353195ca53f944fe71e6fb6cd4\nchore: add java assembly target for accesscontextmanager BUILD.bazel\n\nPiperOrigin-RevId: 304207684\n\ndc65f39f33cb139b3a2244199a3e722a4d94b679\nFor Secret Manager v1 and v1beta1, noted Secret ID character limitations.\n\nPiperOrigin-RevId: 304035052\n\n2ee8c4d06db823c29a127709e66c35e38b6e98ab\nchore(deps): Update gax-java dependency\nThis is to integrate java11 incompatibility fix\n\nPiperOrigin-RevId: 304032057\n\nb5c94cec71ea9b840dc0110a0275323313ecc85a\nchore: add java assembly target for orgpolicy BUILD.bazel\n\nPiperOrigin-RevId: 304021854\n\n690f4d6344197fde775230cec165a9db3b3929c7\nchore: use the latest protoc-java-resource-name-plugin in third_party/googleapis WORKSPACE.\n- trace up only one level when calculating parent types with singleton resource names\n\nPiperOrigin-RevId: 304007414\n\n87144228bd9920b824996355f27891310fad5a32\nEnable gapic v2 for DLP.\n\nCommitter: @hzyi-google\nPiperOrigin-RevId: 303999064\n\n17cfae00f2bb51cb1683f017da7e295a1b0f01a8\nAdd a new AuthorizationType for Data Source Definition.\n\nPiperOrigin-RevId: 303992863\n\n6da3d64919c006ef40cad2026f1e39084253afe2\nfix(google/maps): Change importpath to developers.google.com/maps/go.\n\nPiperOrigin-RevId: 303976942\n\n2983dccde54f0ce31793e1e628379616c468aea0\nbuild(google/maps): only modify root build.gradle with ext plugin\n\nPiperOrigin-RevId: 303975876\n\n00f0a285f2716ce57e98afe500e450b17b556ff8\nfix: Integerate gapic-generator java_gapic rules Java11 fix\n\nPiperOrigin-RevId: 303899179\n\na62857d26bd2ae15aec13a9244989e4104195b63\nfix: add proto_package to the artman config of dataproc v1beta2 to make artman smoketest pass.\n\nPiperOrigin-RevId: 303853989\n\nf260ba248df934fd4ddc22950fb529a59d79e0b5\nchore: use the latest gapic-generator in googleapis WORKSPACE.\n- PHP multi-pattern resource name support.\n- Trace up only one level when calculating parent types with singleton resource names\n\nPiperOrigin-RevId: 303836059\n\n89c7d455fffa5d8a7e73c2f4da43a74605ed72a6\nfeat: Add client library options to OsConfigService v1 patch APIs.\n\nPiperOrigin-RevId: 303831150\n\na45b0a2a8f6f497547ab531a4da978c76441d076\ndataproc: add back non-default retry parameters.\ncommitter: @hzyi-google\n\nPiperOrigin-RevId: 303830177\n\nad895ce95f1f6d2261fbbc3e8897958294e4f017\nenable gapic v2 for containeranalysis.\ncommitter: @hzyi-google\n\nPiperOrigin-RevId: 303821111\n\nbaf83e521834b67397839bcbe2d7864b49e38787\nAdding \"resource_reference\" annotations to services.\n\nPiperOrigin-RevId: 303791704\n\n7be2811ad17013a5ea24cd75dfd9e399dd6e18fe\nfix: Update gapic-generator version to pickup discogapic fixes\n\nPiperOrigin-RevId: 303545940\n\nb655808b3481a92f478ae2f828a6ce8220e40f32\ncloudasset: add org policy and access context manager protos to client libraries.\n\nPiperOrigin-RevId: 303527638\n\nd8c5da9a9471659b51d5862dd2ea7ad3c4bc49ef\nPopulate BAZEL.build files for AccessContextManager.\n\nPiperOrigin-RevId: 303526825\n\ncf9db7161cb9d4dbef06cd8bf5354ec485e51e2d\nPopulate BAZEL.build files for OrgPolicy.\n\nPiperOrigin-RevId: 303526702\n\n558b800ed594acc02555cc560fbb39c0e42bc438\nchore: turn on gapic v2 for Dataproc API.\nfix:\n- add missing method signatures\n- remove resource_reference not on a string field\n- adjust resource name pattern orders\n\nPiperOrigin-RevId: 303431167\n\n8eb444cf5ff63f68d826acbb37b2ac3da58655fb\nAdd logging protos for Recommender v1beta1.\n\nPiperOrigin-RevId: 303426030\n\n48a166ce9f6e2a88b10947341b37336fe9dd3478\nPush of PHP, C# and Ruby namespaces\n\nPiperOrigin-RevId: 303302813\n\n42f77489b300df2e27c84a7b65c4e8f04da20981\nThis is first release of the API protos and Bazel BUILD files for the Analytics Management API V1alpha.\n\nPiperOrigin-RevId: 303241805\n\n8bea81bfa461698981b3d3a488a95633d2f6e9ff\nchore: use latest protoc-java-resource-name-plugin in bazel WORKSPACE.\nnew commits:\n- fix: stop generating `parseList` and `toStringList` if a multi-pattern resource name has subclasses (#79)\n\ncommitter: @hzyi-google\nPiperOrigin-RevId: 303197602\n\nb14af92e565264675d6b12cd2c0ded6c94ddd7f8\nfix talent API incorrect placeholders in two resource name patterns.\ncommitter: @hzyi-google\n\nPiperOrigin-RevId: 303189497\n\n8e22db908ae09e1f7e2802c03b4563fd6b524e0e\nchore(google/maps): Update postprocessing script for Java.\n\n- Update root build.gradle to load local plugin\n- Change com.google.api.grpc group to com.google.maps\n\nPiperOrigin-RevId: 303176850\n\n65816afa71e588252b7119dc723592abe51ea106\nbazel: update gapic-generator-go to v0.12.5 and gapic-generator hash\n\nChanges to gapic-generator-go include:\n* feat: strip invalid link references in comments\n* chore: updating Go deps in bazel repositories\n\nChanges to gapic-generator include:\n* fix: bazel go build gen check for cloud in proto pkg name\n* Revert \"feat: allow static substitution for group name\"\n\nPiperOrigin-RevId: 303150338\n\nd4aa417ed2bba89c2d216900282bddfdafef6128\nFix incorrect retry config in gapic v2 for kms.\n\nPiperOrigin-RevId: 303010132\n\nfd08334533204fdd1b33f79fcb263dbb5bf13de0\nfix: osconfig/v1 update go_gapic_library target to microgen interface\n\nPiperOrigin-RevId: 303007866\n\ne2c0f2a0e06d86b50aba98f67f9f291587d986b3\nUpdate comments for google/rpc/error_details.proto.\n\nPiperOrigin-RevId: 303002528\n\nf786c7586748e78a286b1620ff3ddbf7b4dcab92\nfeat: Add OsConfigService v1 patch APIs.\n\nPiperOrigin-RevId: 302999346\n\n0341fa3fc2f4073a1b1f260d37b2ce620799f545\nTurn on gapic config v2 for kms.\n\nCommitter: @hzyi-google\nPiperOrigin-RevId: 302980301\n\n32dc6e832039b61ac3fb82c72eb0a27570aebcd6\nredis: v1beta1 enables REDIS_5_0 as an option for redis_version field and adds two new redis configs --stream-node-max-entries --stream-node-max-bytes\n\nPiperOrigin-RevId: 302958009\n\n685f16483cc4d87c35051f21f8f13ef4fdc919b4\nredis: v1 enables REDIS_5_0 as an option for redis_version field and adds two new redis configs --stream-node-max-entries --stream-node-max-bytes\n\nPiperOrigin-RevId: 302957729\n\n733cb282ae5e64673ef86c9a5dff647df803d8b7\nAdd GAPIC cofiguration for v1 client library genetration.\n\nPiperOrigin-RevId: 302928200\n\n1b0fff5f2ec6dc4a9443d9b50e70e9c94c30c45b\ndocs: remove an internal lint declaration\n\nPiperOrigin-RevId: 302928106\n\n2be23f3f3036a6f7ce0844def3d2d3da74e5d415\nfix(google/maps): Add post-processing rules for Google Maps APIs\n\nPiperOrigin-RevId: 302925222\n\nfd83ab212176a1042e8d45ea90766b3bf59ac679\nfix: migrate osconfig/agentendpoint/v1 go_gapic_library target to microgen impl\n\nPiperOrigin-RevId: 302913609\n\n" } }, { "git": { "name": "synthtool", "remote": "https://github.com/googleapis/synthtool.git", - "sha": "e36822bfa0acb355502dab391b8ef9c4f30208d8" + "sha": "7f8e62aa3edd225f76347a16f92e400661fdfb52", + "log": "7f8e62aa3edd225f76347a16f92e400661fdfb52\nchore(java): release-please only updates non maven versions in README (#476)\n\nPrevent release-please and synthtool from fighting over the released library version. Synthtool updates the install snippets from the samples pom.xml files so the bots fight if they are temporarily out of sync after a release.\nc7e0e517d7f46f77bebd27da2e5afcaa6eee7e25\nbuild(java): fix nightly integration test config to run integrations (#465)\n\nThis was only running the units.\nbd69a2aa7b70875f3c988e269706b22fefbef40e\nbuild(java): fix retry_with_backoff when -e option set (#475)\n\n\nd9b173c427bfa0c6cca818233562e7e8841a357c\nfix: record version of working repo in synth.metadata (#473)\n\nPartial revert of b37cf74d12e9a42b9de9e61a4f26133d7cd9c168.\nf73a541770d95a609e5be6bf6b3b220d17cefcbe\nfeat(discogapic): allow local discovery-artifact-manager (#474)\n\n\n8cf0f5d93a70c3dcb0b4999d3152c46d4d9264bf\ndoc: describe the Autosynth & Synthtool protocol (#472)\n\n* doc: describe the Autosynth & Synthtool protocol\n\n* Accommodate review comments.\n980baaa738a1ad8fa02b4fdbd56be075ee77ece5\nfix: pin sphinx to <3.0.0 as new version causes new error (#471)\n\nThe error `toctree contains reference to document changlelog that doesn't have a title: no link will be generated` occurs as of 3.0.0. Pinning to 2.x until we address the docs build issue.\n\nTowards #470\n\nI did this manually for python-datastore https://github.com/googleapis/python-datastore/pull/22\n928b2998ac5023e7c7e254ab935f9ef022455aad\nchore(deps): update dependency com.google.cloud.samples:shared-configuration to v1.0.15 (#466)\n\nCo-authored-by: Jeffrey Rennie \n188f1b1d53181f739b98f8aa5d40cfe99eb90c47\nfix: allow local and external deps to be specified (#469)\n\nModify noxfile.py to allow local and external dependencies for\nsystem tests to be specified.\n1df68ed6735ddce6797d0f83641a731c3c3f75b4\nfix: apache license URL (#468)\n\n\nf4a59efa54808c4b958263de87bc666ce41e415f\nfeat: Add discogapic support for GAPICBazel generation (#459)\n\n* feat: Add discogapic support for GAPICBazel generation\n\n* reformat with black\n\n* Rename source repository variable\n\nCo-authored-by: Jeffrey Rennie \n99820243d348191bc9c634f2b48ddf65096285ed\nfix: update template files for Node.js libraries (#463)\n\n\n3cbe6bcd5623139ac9834c43818424ddca5430cb\nfix(ruby): remove dead troubleshooting link from generated auth guide (#462)\n\n\na003d8655d3ebec2bbbd5fc3898e91e152265c67\ndocs: remove \"install stable\" instructions (#461)\n\nThe package hasn't been released to PyPI in some time\nf5e8c88d9870d8aa4eb43fa0b39f07e02bfbe4df\nchore(python): add license headers to config files; make small tweaks to templates (#458)\n\n\n" } } ],