From 72bc030140377141047fbe4a2239929cd5002c10 Mon Sep 17 00:00:00 2001 From: Michael Darakananda Date: Mon, 14 May 2018 12:19:33 -0700 Subject: [PATCH] remove resource name types; to be moved to api-client-staging (#3264) --- .../google-cloud-resource-name-common/pom.xml | 20 --- .../java/com/google/cloud/BillingName.java | 162 ------------------ .../java/com/google/cloud/FolderName.java | 162 ------------------ .../com/google/cloud/OrganizationName.java | 162 ------------------ .../java/com/google/cloud/ParentName.java | 26 --- .../java/com/google/cloud/ParentNames.java | 41 ----- .../java/com/google/cloud/ProjectName.java | 162 ------------------ .../com/google/cloud/UntypedParentName.java | 102 ----------- google-api-grpc/pom.xml | 6 - versions.txt | 1 - 10 files changed, 844 deletions(-) delete mode 100644 google-api-grpc/google-cloud-resource-name-common/pom.xml delete mode 100644 google-api-grpc/google-cloud-resource-name-common/src/main/java/com/google/cloud/BillingName.java delete mode 100644 google-api-grpc/google-cloud-resource-name-common/src/main/java/com/google/cloud/FolderName.java delete mode 100644 google-api-grpc/google-cloud-resource-name-common/src/main/java/com/google/cloud/OrganizationName.java delete mode 100644 google-api-grpc/google-cloud-resource-name-common/src/main/java/com/google/cloud/ParentName.java delete mode 100644 google-api-grpc/google-cloud-resource-name-common/src/main/java/com/google/cloud/ParentNames.java delete mode 100644 google-api-grpc/google-cloud-resource-name-common/src/main/java/com/google/cloud/ProjectName.java delete mode 100644 google-api-grpc/google-cloud-resource-name-common/src/main/java/com/google/cloud/UntypedParentName.java diff --git a/google-api-grpc/google-cloud-resource-name-common/pom.xml b/google-api-grpc/google-cloud-resource-name-common/pom.xml deleted file mode 100644 index d40ef408bb09..000000000000 --- a/google-api-grpc/google-cloud-resource-name-common/pom.xml +++ /dev/null @@ -1,20 +0,0 @@ - - 4.0.0 - google-cloud-resource-name-common - 0.12.1-SNAPSHOT - Google Cloud Common Resource Name - Common resource names used by Google Cloud libraries - - com.google.api.grpc - google-api-grpc - 0.12.1-SNAPSHOT - - - - com.google.api - api-common - - - diff --git a/google-api-grpc/google-cloud-resource-name-common/src/main/java/com/google/cloud/BillingName.java b/google-api-grpc/google-cloud-resource-name-common/src/main/java/com/google/cloud/BillingName.java deleted file mode 100644 index c0f29bff26b8..000000000000 --- a/google-api-grpc/google-cloud-resource-name-common/src/main/java/com/google/cloud/BillingName.java +++ /dev/null @@ -1,162 +0,0 @@ -/* - * Copyright 2018 Google LLC - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package com.google.cloud; - -import com.google.api.core.BetaApi; -import com.google.api.pathtemplate.PathTemplate; -import com.google.common.base.Preconditions; -import com.google.common.collect.ImmutableMap; -import java.util.ArrayList; -import java.util.List; -import java.util.Map; - -// Formerly generated by GAPIC protoc plugin. -@BetaApi -public class BillingName extends ParentName { - - private static final PathTemplate PATH_TEMPLATE = - PathTemplate.createWithoutUrlEncoding("billingAccounts/{billing_account}"); - - private volatile Map fieldValuesMap; - - private final String billingAccount; - - public String getBillingAccount() { - return billingAccount; - } - - public static Builder newBuilder() { - return new Builder(); - } - - public Builder toBuilder() { - return new Builder(this); - } - - private BillingName(Builder builder) { - billingAccount = Preconditions.checkNotNull(builder.getBillingAccount()); - } - - public static BillingName of(String billingAccount) { - return newBuilder().setBillingAccount(billingAccount).build(); - } - - public static String format(String billingAccount) { - return newBuilder().setBillingAccount(billingAccount).build().toString(); - } - - public static BillingName parse(String formattedString) { - if (formattedString.isEmpty()) { - return null; - } - Map matchMap = - PATH_TEMPLATE.validatedMatch( - formattedString, "BillingName.parse: formattedString not in valid format"); - return of(matchMap.get("billing_account")); - } - - public static List parseList(List formattedStrings) { - List list = new ArrayList<>(formattedStrings.size()); - for (String formattedString : formattedStrings) { - list.add(parse(formattedString)); - } - return list; - } - - public static List toStringList(List values) { - List list = new ArrayList(values.size()); - for (BillingName value : values) { - if (value == null) { - list.add(""); - } else { - list.add(value.toString()); - } - } - return list; - } - - public static boolean isParsableFrom(String formattedString) { - return PATH_TEMPLATE.matches(formattedString); - } - - public Map getFieldValuesMap() { - if (fieldValuesMap == null) { - synchronized (this) { - if (fieldValuesMap == null) { - ImmutableMap.Builder fieldMapBuilder = ImmutableMap.builder(); - fieldMapBuilder.put("billingAccount", billingAccount); - fieldValuesMap = fieldMapBuilder.build(); - } - } - } - return fieldValuesMap; - } - - public String getFieldValue(String fieldName) { - return getFieldValuesMap().get(fieldName); - } - - @Override - public String toString() { - return PATH_TEMPLATE.instantiate("billing_account", billingAccount); - } - - /** Builder for BillingName. */ - public static class Builder { - - private String billingAccount; - - public String getBillingAccount() { - return billingAccount; - } - - public Builder setBillingAccount(String billingAccount) { - this.billingAccount = billingAccount; - return this; - } - - private Builder() {} - - private Builder(BillingName billingName) { - billingAccount = billingName.billingAccount; - } - - public BillingName build() { - return new BillingName(this); - } - } - - @Override - public boolean equals(Object o) { - if (o == this) { - return true; - } - if (o instanceof BillingName) { - BillingName that = (BillingName) o; - return this.billingAccount.equals(that.billingAccount); - } - return false; - } - - @Override - public int hashCode() { - int h = 1; - h *= 1000003; - h ^= billingAccount.hashCode(); - return h; - } -} diff --git a/google-api-grpc/google-cloud-resource-name-common/src/main/java/com/google/cloud/FolderName.java b/google-api-grpc/google-cloud-resource-name-common/src/main/java/com/google/cloud/FolderName.java deleted file mode 100644 index 9863a3a61e57..000000000000 --- a/google-api-grpc/google-cloud-resource-name-common/src/main/java/com/google/cloud/FolderName.java +++ /dev/null @@ -1,162 +0,0 @@ -/* - * Copyright 2018 Google LLC - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package com.google.cloud; - -import com.google.api.core.BetaApi; -import com.google.api.pathtemplate.PathTemplate; -import com.google.common.base.Preconditions; -import com.google.common.collect.ImmutableMap; -import java.util.ArrayList; -import java.util.List; -import java.util.Map; - -// Formerly generated by GAPIC protoc plugin. -@BetaApi -public class FolderName extends ParentName { - - private static final PathTemplate PATH_TEMPLATE = - PathTemplate.createWithoutUrlEncoding("folders/{folder}"); - - private volatile Map fieldValuesMap; - - private final String folder; - - public String getFolder() { - return folder; - } - - public static Builder newBuilder() { - return new Builder(); - } - - public Builder toBuilder() { - return new Builder(this); - } - - private FolderName(Builder builder) { - folder = Preconditions.checkNotNull(builder.getFolder()); - } - - public static FolderName of(String folder) { - return newBuilder().setFolder(folder).build(); - } - - public static String format(String folder) { - return newBuilder().setFolder(folder).build().toString(); - } - - public static FolderName parse(String formattedString) { - if (formattedString.isEmpty()) { - return null; - } - Map matchMap = - PATH_TEMPLATE.validatedMatch( - formattedString, "FolderName.parse: formattedString not in valid format"); - return of(matchMap.get("folder")); - } - - public static List parseList(List formattedStrings) { - List list = new ArrayList<>(formattedStrings.size()); - for (String formattedString : formattedStrings) { - list.add(parse(formattedString)); - } - return list; - } - - public static List toStringList(List values) { - List list = new ArrayList(values.size()); - for (FolderName value : values) { - if (value == null) { - list.add(""); - } else { - list.add(value.toString()); - } - } - return list; - } - - public static boolean isParsableFrom(String formattedString) { - return PATH_TEMPLATE.matches(formattedString); - } - - public Map getFieldValuesMap() { - if (fieldValuesMap == null) { - synchronized (this) { - if (fieldValuesMap == null) { - ImmutableMap.Builder fieldMapBuilder = ImmutableMap.builder(); - fieldMapBuilder.put("folder", folder); - fieldValuesMap = fieldMapBuilder.build(); - } - } - } - return fieldValuesMap; - } - - public String getFieldValue(String fieldName) { - return getFieldValuesMap().get(fieldName); - } - - @Override - public String toString() { - return PATH_TEMPLATE.instantiate("folder", folder); - } - - /** Builder for FolderName. */ - public static class Builder { - - private String folder; - - public String getFolder() { - return folder; - } - - public Builder setFolder(String folder) { - this.folder = folder; - return this; - } - - private Builder() {} - - private Builder(FolderName folderName) { - folder = folderName.folder; - } - - public FolderName build() { - return new FolderName(this); - } - } - - @Override - public boolean equals(Object o) { - if (o == this) { - return true; - } - if (o instanceof FolderName) { - FolderName that = (FolderName) o; - return this.folder.equals(that.folder); - } - return false; - } - - @Override - public int hashCode() { - int h = 1; - h *= 1000003; - h ^= folder.hashCode(); - return h; - } -} diff --git a/google-api-grpc/google-cloud-resource-name-common/src/main/java/com/google/cloud/OrganizationName.java b/google-api-grpc/google-cloud-resource-name-common/src/main/java/com/google/cloud/OrganizationName.java deleted file mode 100644 index ff06d65eca9f..000000000000 --- a/google-api-grpc/google-cloud-resource-name-common/src/main/java/com/google/cloud/OrganizationName.java +++ /dev/null @@ -1,162 +0,0 @@ -/* - * Copyright 2018 Google LLC - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package com.google.cloud; - -import com.google.api.core.BetaApi; -import com.google.api.pathtemplate.PathTemplate; -import com.google.common.base.Preconditions; -import com.google.common.collect.ImmutableMap; -import java.util.ArrayList; -import java.util.List; -import java.util.Map; - -// Formerly generated by GAPIC protoc plugin. -@BetaApi -public class OrganizationName extends ParentName { - - private static final PathTemplate PATH_TEMPLATE = - PathTemplate.createWithoutUrlEncoding("organizations/{organization}"); - - private volatile Map fieldValuesMap; - - private final String organization; - - public String getOrganization() { - return organization; - } - - public static Builder newBuilder() { - return new Builder(); - } - - public Builder toBuilder() { - return new Builder(this); - } - - private OrganizationName(Builder builder) { - organization = Preconditions.checkNotNull(builder.getOrganization()); - } - - public static OrganizationName of(String organization) { - return newBuilder().setOrganization(organization).build(); - } - - public static String format(String organization) { - return newBuilder().setOrganization(organization).build().toString(); - } - - public static OrganizationName parse(String formattedString) { - if (formattedString.isEmpty()) { - return null; - } - Map matchMap = - PATH_TEMPLATE.validatedMatch( - formattedString, "OrganizationName.parse: formattedString not in valid format"); - return of(matchMap.get("organization")); - } - - public static List parseList(List formattedStrings) { - List list = new ArrayList<>(formattedStrings.size()); - for (String formattedString : formattedStrings) { - list.add(parse(formattedString)); - } - return list; - } - - public static List toStringList(List values) { - List list = new ArrayList(values.size()); - for (OrganizationName value : values) { - if (value == null) { - list.add(""); - } else { - list.add(value.toString()); - } - } - return list; - } - - public static boolean isParsableFrom(String formattedString) { - return PATH_TEMPLATE.matches(formattedString); - } - - public Map getFieldValuesMap() { - if (fieldValuesMap == null) { - synchronized (this) { - if (fieldValuesMap == null) { - ImmutableMap.Builder fieldMapBuilder = ImmutableMap.builder(); - fieldMapBuilder.put("organization", organization); - fieldValuesMap = fieldMapBuilder.build(); - } - } - } - return fieldValuesMap; - } - - public String getFieldValue(String fieldName) { - return getFieldValuesMap().get(fieldName); - } - - @Override - public String toString() { - return PATH_TEMPLATE.instantiate("organization", organization); - } - - /** Builder for OrganizationName. */ - public static class Builder { - - private String organization; - - public String getOrganization() { - return organization; - } - - public Builder setOrganization(String organization) { - this.organization = organization; - return this; - } - - private Builder() {} - - private Builder(OrganizationName organizationName) { - organization = organizationName.organization; - } - - public OrganizationName build() { - return new OrganizationName(this); - } - } - - @Override - public boolean equals(Object o) { - if (o == this) { - return true; - } - if (o instanceof OrganizationName) { - OrganizationName that = (OrganizationName) o; - return this.organization.equals(that.organization); - } - return false; - } - - @Override - public int hashCode() { - int h = 1; - h *= 1000003; - h ^= organization.hashCode(); - return h; - } -} diff --git a/google-api-grpc/google-cloud-resource-name-common/src/main/java/com/google/cloud/ParentName.java b/google-api-grpc/google-cloud-resource-name-common/src/main/java/com/google/cloud/ParentName.java deleted file mode 100644 index bd40991a56c0..000000000000 --- a/google-api-grpc/google-cloud-resource-name-common/src/main/java/com/google/cloud/ParentName.java +++ /dev/null @@ -1,26 +0,0 @@ -/* - * Copyright 2018 Google LLC - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package com.google.cloud; - -import com.google.api.core.BetaApi; -import com.google.api.resourcenames.ResourceName; - -// Formerly generated by GAPIC protoc plugin. -@BetaApi -public abstract class ParentName implements ResourceName { - protected ParentName() {} -} diff --git a/google-api-grpc/google-cloud-resource-name-common/src/main/java/com/google/cloud/ParentNames.java b/google-api-grpc/google-cloud-resource-name-common/src/main/java/com/google/cloud/ParentNames.java deleted file mode 100644 index ef048fedb091..000000000000 --- a/google-api-grpc/google-cloud-resource-name-common/src/main/java/com/google/cloud/ParentNames.java +++ /dev/null @@ -1,41 +0,0 @@ -/* - * Copyright 2018 Google LLC - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package com.google.cloud; - -import com.google.api.core.BetaApi; - -// Formerly generated by GAPIC protoc plugin. -@BetaApi -public class ParentNames { - private ParentNames() {} - - public static ParentName parse(String resourceNameString) { - if (ProjectName.isParsableFrom(resourceNameString)) { - return ProjectName.parse(resourceNameString); - } - if (OrganizationName.isParsableFrom(resourceNameString)) { - return OrganizationName.parse(resourceNameString); - } - if (FolderName.isParsableFrom(resourceNameString)) { - return FolderName.parse(resourceNameString); - } - if (BillingName.isParsableFrom(resourceNameString)) { - return BillingName.parse(resourceNameString); - } - return UntypedParentName.parse(resourceNameString); - } -} diff --git a/google-api-grpc/google-cloud-resource-name-common/src/main/java/com/google/cloud/ProjectName.java b/google-api-grpc/google-cloud-resource-name-common/src/main/java/com/google/cloud/ProjectName.java deleted file mode 100644 index 81df8326623b..000000000000 --- a/google-api-grpc/google-cloud-resource-name-common/src/main/java/com/google/cloud/ProjectName.java +++ /dev/null @@ -1,162 +0,0 @@ -/* - * Copyright 2018 Google LLC - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package com.google.cloud; - -import com.google.api.core.BetaApi; -import com.google.api.pathtemplate.PathTemplate; -import com.google.common.base.Preconditions; -import com.google.common.collect.ImmutableMap; -import java.util.ArrayList; -import java.util.List; -import java.util.Map; - -// Formerly generated by GAPIC protoc plugin. -@BetaApi -public class ProjectName extends ParentName { - - private static final PathTemplate PATH_TEMPLATE = - PathTemplate.createWithoutUrlEncoding("projects/{project}"); - - private volatile Map fieldValuesMap; - - private final String project; - - public String getProject() { - return project; - } - - public static Builder newBuilder() { - return new Builder(); - } - - public Builder toBuilder() { - return new Builder(this); - } - - private ProjectName(Builder builder) { - project = Preconditions.checkNotNull(builder.getProject()); - } - - public static ProjectName of(String project) { - return newBuilder().setProject(project).build(); - } - - public static String format(String project) { - return newBuilder().setProject(project).build().toString(); - } - - public static ProjectName parse(String formattedString) { - if (formattedString.isEmpty()) { - return null; - } - Map matchMap = - PATH_TEMPLATE.validatedMatch( - formattedString, "ProjectName.parse: formattedString not in valid format"); - return of(matchMap.get("project")); - } - - public static List parseList(List formattedStrings) { - List list = new ArrayList<>(formattedStrings.size()); - for (String formattedString : formattedStrings) { - list.add(parse(formattedString)); - } - return list; - } - - public static List toStringList(List values) { - List list = new ArrayList(values.size()); - for (ProjectName value : values) { - if (value == null) { - list.add(""); - } else { - list.add(value.toString()); - } - } - return list; - } - - public static boolean isParsableFrom(String formattedString) { - return PATH_TEMPLATE.matches(formattedString); - } - - public Map getFieldValuesMap() { - if (fieldValuesMap == null) { - synchronized (this) { - if (fieldValuesMap == null) { - ImmutableMap.Builder fieldMapBuilder = ImmutableMap.builder(); - fieldMapBuilder.put("project", project); - fieldValuesMap = fieldMapBuilder.build(); - } - } - } - return fieldValuesMap; - } - - public String getFieldValue(String fieldName) { - return getFieldValuesMap().get(fieldName); - } - - @Override - public String toString() { - return PATH_TEMPLATE.instantiate("project", project); - } - - /** Builder for ProjectName. */ - public static class Builder { - - private String project; - - public String getProject() { - return project; - } - - public Builder setProject(String project) { - this.project = project; - return this; - } - - private Builder() {} - - private Builder(ProjectName projectName) { - project = projectName.project; - } - - public ProjectName build() { - return new ProjectName(this); - } - } - - @Override - public boolean equals(Object o) { - if (o == this) { - return true; - } - if (o instanceof ProjectName) { - ProjectName that = (ProjectName) o; - return this.project.equals(that.project); - } - return false; - } - - @Override - public int hashCode() { - int h = 1; - h *= 1000003; - h ^= project.hashCode(); - return h; - } -} diff --git a/google-api-grpc/google-cloud-resource-name-common/src/main/java/com/google/cloud/UntypedParentName.java b/google-api-grpc/google-cloud-resource-name-common/src/main/java/com/google/cloud/UntypedParentName.java deleted file mode 100644 index faaca106cbe9..000000000000 --- a/google-api-grpc/google-cloud-resource-name-common/src/main/java/com/google/cloud/UntypedParentName.java +++ /dev/null @@ -1,102 +0,0 @@ -/* - * Copyright 2018 Google LLC - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package com.google.cloud; - -import com.google.api.core.BetaApi; -import com.google.api.resourcenames.ResourceName; -import com.google.common.base.Preconditions; -import com.google.common.collect.ImmutableMap; -import java.util.ArrayList; -import java.util.List; -import java.util.Map; - -// Formerly generated by GAPIC protoc plugin. -@BetaApi -public class UntypedParentName extends ParentName { - - private final String rawValue; - private Map valueMap; - - private UntypedParentName(String rawValue) { - this.rawValue = Preconditions.checkNotNull(rawValue); - this.valueMap = ImmutableMap.of("", rawValue); - } - - public static UntypedParentName from(ResourceName resourceName) { - return new UntypedParentName(resourceName.toString()); - } - - public static UntypedParentName parse(String formattedString) { - return new UntypedParentName(formattedString); - } - - public static List parseList(List formattedStrings) { - List list = new ArrayList<>(formattedStrings.size()); - for (String formattedString : formattedStrings) { - list.add(parse(formattedString)); - } - return list; - } - - public static List toStringList(List values) { - List list = new ArrayList(values.size()); - for (UntypedParentName value : values) { - if (value == null) { - list.add(""); - } else { - list.add(value.toString()); - } - } - return list; - } - - public static boolean isParsableFrom(String formattedString) { - return true; - } - - /** Return a map with a single value rawValue keyed on an empty String "". */ - public Map getFieldValuesMap() { - return valueMap; - } - - /** Return the initial rawValue if @param fieldName is an empty String, else return null. */ - public String getFieldValue(String fieldName) { - return valueMap.get(fieldName); - } - - @Override - public String toString() { - return rawValue; - } - - @Override - public boolean equals(Object o) { - if (o == this) { - return true; - } - if (o instanceof UntypedParentName) { - UntypedParentName that = (UntypedParentName) o; - return this.rawValue.equals(that.rawValue); - } - return false; - } - - @Override - public int hashCode() { - return rawValue.hashCode(); - } -} diff --git a/google-api-grpc/pom.xml b/google-api-grpc/pom.xml index ea837b37140f..3b398f94ab71 100644 --- a/google-api-grpc/pom.xml +++ b/google-api-grpc/pom.xml @@ -496,11 +496,6 @@ grpc-google-cloud-websecurityscanner-v1alpha 0.12.1-SNAPSHOT - - com.google.api.grpc - google-cloud-resource-name-common - 0.12.1-SNAPSHOT - @@ -578,7 +573,6 @@ proto-google-cloud-cloudiot-v1 proto-google-cloud-redis-v1beta1 proto-google-cloud-websecurityscanner-v1alpha - google-cloud-resource-name-common diff --git a/versions.txt b/versions.txt index 099df392c39f..18d5f232c70c 100644 --- a/versions.txt +++ b/versions.txt @@ -81,7 +81,6 @@ proto-google-cloud-vision-v1p2beta1:1.11.0:1.11.1-SNAPSHOT proto-google-cloud-cloudiot-v1:0.12.0:0.12.1-SNAPSHOT proto-google-cloud-redis-v1beta1:0.12.0:0.12.1-SNAPSHOT proto-google-cloud-websecurityscanner-v1alpha:0.12.0:0.12.1-SNAPSHOT -google-cloud-resource-name-common:0.12.0:0.12.1-SNAPSHOT # # google-cloud-clients versions