Skip to content

Commit

Permalink
Regenerate automl client
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshi-automation committed Apr 3, 2019
1 parent 21dbff1 commit 7fcabb1
Show file tree
Hide file tree
Showing 19 changed files with 2,853 additions and 510 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,249 @@
/*
* 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.automl.v1beta1;

import com.google.api.pathtemplate.PathTemplate;
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;

// AUTO-GENERATED DOCUMENTATION AND CLASS
@javax.annotation.Generated("by GAPIC protoc plugin")
public class AnnotationSpecName implements ResourceName {

private static final PathTemplate PATH_TEMPLATE =
PathTemplate.createWithoutUrlEncoding(
"projects/{project}/locations/{location}/datasets/{dataset}/annotationSpecs/{annotation_spec}");

private volatile Map<String, String> fieldValuesMap;

private final String project;
private final String location;
private final String dataset;
private final String annotationSpec;

public String getProject() {
return project;
}

public String getLocation() {
return location;
}

public String getDataset() {
return dataset;
}

public String getAnnotationSpec() {
return annotationSpec;
}

public static Builder newBuilder() {
return new Builder();
}

public Builder toBuilder() {
return new Builder(this);
}

private AnnotationSpecName(Builder builder) {
project = Preconditions.checkNotNull(builder.getProject());
location = Preconditions.checkNotNull(builder.getLocation());
dataset = Preconditions.checkNotNull(builder.getDataset());
annotationSpec = Preconditions.checkNotNull(builder.getAnnotationSpec());
}

public static AnnotationSpecName of(
String project, String location, String dataset, String annotationSpec) {
return newBuilder()
.setProject(project)
.setLocation(location)
.setDataset(dataset)
.setAnnotationSpec(annotationSpec)
.build();
}

public static String format(
String project, String location, String dataset, String annotationSpec) {
return newBuilder()
.setProject(project)
.setLocation(location)
.setDataset(dataset)
.setAnnotationSpec(annotationSpec)
.build()
.toString();
}

public static AnnotationSpecName parse(String formattedString) {
if (formattedString.isEmpty()) {
return null;
}
Map<String, String> matchMap =
PATH_TEMPLATE.validatedMatch(
formattedString, "AnnotationSpecName.parse: formattedString not in valid format");
return of(
matchMap.get("project"),
matchMap.get("location"),
matchMap.get("dataset"),
matchMap.get("annotation_spec"));
}

public static List<AnnotationSpecName> parseList(List<String> formattedStrings) {
List<AnnotationSpecName> list = new ArrayList<>(formattedStrings.size());
for (String formattedString : formattedStrings) {
list.add(parse(formattedString));
}
return list;
}

public static List<String> toStringList(List<AnnotationSpecName> values) {
List<String> list = new ArrayList<String>(values.size());
for (AnnotationSpecName 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<String, String> getFieldValuesMap() {
if (fieldValuesMap == null) {
synchronized (this) {
if (fieldValuesMap == null) {
ImmutableMap.Builder<String, String> fieldMapBuilder = ImmutableMap.builder();
fieldMapBuilder.put("project", project);
fieldMapBuilder.put("location", location);
fieldMapBuilder.put("dataset", dataset);
fieldMapBuilder.put("annotationSpec", annotationSpec);
fieldValuesMap = fieldMapBuilder.build();
}
}
}
return fieldValuesMap;
}

public String getFieldValue(String fieldName) {
return getFieldValuesMap().get(fieldName);
}

@Override
public String toString() {
return PATH_TEMPLATE.instantiate(
"project",
project,
"location",
location,
"dataset",
dataset,
"annotation_spec",
annotationSpec);
}

/** Builder for AnnotationSpecName. */
public static class Builder {

private String project;
private String location;
private String dataset;
private String annotationSpec;

public String getProject() {
return project;
}

public String getLocation() {
return location;
}

public String getDataset() {
return dataset;
}

public String getAnnotationSpec() {
return annotationSpec;
}

public Builder setProject(String project) {
this.project = project;
return this;
}

public Builder setLocation(String location) {
this.location = location;
return this;
}

public Builder setDataset(String dataset) {
this.dataset = dataset;
return this;
}

public Builder setAnnotationSpec(String annotationSpec) {
this.annotationSpec = annotationSpec;
return this;
}

private Builder() {}

private Builder(AnnotationSpecName annotationSpecName) {
project = annotationSpecName.project;
location = annotationSpecName.location;
dataset = annotationSpecName.dataset;
annotationSpec = annotationSpecName.annotationSpec;
}

public AnnotationSpecName build() {
return new AnnotationSpecName(this);
}
}

@Override
public boolean equals(Object o) {
if (o == this) {
return true;
}
if (o instanceof AnnotationSpecName) {
AnnotationSpecName that = (AnnotationSpecName) o;
return (this.project.equals(that.project))
&& (this.location.equals(that.location))
&& (this.dataset.equals(that.dataset))
&& (this.annotationSpec.equals(that.annotationSpec));
}
return false;
}

@Override
public int hashCode() {
int h = 1;
h *= 1000003;
h ^= project.hashCode();
h *= 1000003;
h ^= location.hashCode();
h *= 1000003;
h ^= dataset.hashCode();
h *= 1000003;
h ^= annotationSpec.hashCode();
return h;
}
}
Loading

0 comments on commit 7fcabb1

Please sign in to comment.