Skip to content
This repository has been archived by the owner on Sep 16, 2023. It is now read-only.

feat: add resource names - PosixAccountName, SshPublicKeyName #48

Merged
merged 1 commit into from Jan 21, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
@@ -0,0 +1,182 @@
/*
* Copyright 2019 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
*
* https://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.oslogin.common;

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 PosixAccountName implements ResourceName {

private static final PathTemplate PATH_TEMPLATE =
PathTemplate.createWithoutUrlEncoding("users/{user}/projects/{project}");

private volatile Map<String, String> fieldValuesMap;

private final String user;
private final String project;

public String getUser() {
return user;
}

public String getProject() {
return project;
}

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

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

private PosixAccountName(Builder builder) {
user = Preconditions.checkNotNull(builder.getUser());
project = Preconditions.checkNotNull(builder.getProject());
}

public static PosixAccountName of(String user, String project) {
return newBuilder().setUser(user).setProject(project).build();
}

public static String format(String user, String project) {
return newBuilder().setUser(user).setProject(project).build().toString();
}

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

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

public static List<String> toStringList(List<PosixAccountName> values) {
List<String> list = new ArrayList<String>(values.size());
for (PosixAccountName 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("user", user);
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("user", user, "project", project);
}

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

private String user;
private String project;

public String getUser() {
return user;
}

public String getProject() {
return project;
}

public Builder setUser(String user) {
this.user = user;
return this;
}

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

private Builder() {}

private Builder(PosixAccountName posixAccountName) {
user = posixAccountName.user;
project = posixAccountName.project;
}

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

@Override
public boolean equals(Object o) {
if (o == this) {
return true;
}
if (o instanceof PosixAccountName) {
PosixAccountName that = (PosixAccountName) o;
return (this.user.equals(that.user)) && (this.project.equals(that.project));
}
return false;
}

@Override
public int hashCode() {
int h = 1;
h *= 1000003;
h ^= user.hashCode();
h *= 1000003;
h ^= project.hashCode();
return h;
}
}
@@ -0,0 +1,182 @@
/*
* Copyright 2019 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
*
* https://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.oslogin.common;

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 SshPublicKeyName implements ResourceName {

private static final PathTemplate PATH_TEMPLATE =
PathTemplate.createWithoutUrlEncoding("users/{user}/sshPublicKeys/{fingerprint}");

private volatile Map<String, String> fieldValuesMap;

private final String user;
private final String fingerprint;

public String getUser() {
return user;
}

public String getFingerprint() {
return fingerprint;
}

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

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

private SshPublicKeyName(Builder builder) {
user = Preconditions.checkNotNull(builder.getUser());
fingerprint = Preconditions.checkNotNull(builder.getFingerprint());
}

public static SshPublicKeyName of(String user, String fingerprint) {
return newBuilder().setUser(user).setFingerprint(fingerprint).build();
}

public static String format(String user, String fingerprint) {
return newBuilder().setUser(user).setFingerprint(fingerprint).build().toString();
}

public static SshPublicKeyName parse(String formattedString) {
if (formattedString.isEmpty()) {
return null;
}
Map<String, String> matchMap =
PATH_TEMPLATE.validatedMatch(
formattedString, "SshPublicKeyName.parse: formattedString not in valid format");
return of(matchMap.get("user"), matchMap.get("fingerprint"));
}

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

public static List<String> toStringList(List<SshPublicKeyName> values) {
List<String> list = new ArrayList<String>(values.size());
for (SshPublicKeyName 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("user", user);
fieldMapBuilder.put("fingerprint", fingerprint);
fieldValuesMap = fieldMapBuilder.build();
}
}
}
return fieldValuesMap;
}

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

@Override
public String toString() {
return PATH_TEMPLATE.instantiate("user", user, "fingerprint", fingerprint);
}

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

private String user;
private String fingerprint;

public String getUser() {
return user;
}

public String getFingerprint() {
return fingerprint;
}

public Builder setUser(String user) {
this.user = user;
return this;
}

public Builder setFingerprint(String fingerprint) {
this.fingerprint = fingerprint;
return this;
}

private Builder() {}

private Builder(SshPublicKeyName sshPublicKeyName) {
user = sshPublicKeyName.user;
fingerprint = sshPublicKeyName.fingerprint;
}

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

@Override
public boolean equals(Object o) {
if (o == this) {
return true;
}
if (o instanceof SshPublicKeyName) {
SshPublicKeyName that = (SshPublicKeyName) o;
return (this.user.equals(that.user)) && (this.fingerprint.equals(that.fingerprint));
}
return false;
}

@Override
public int hashCode() {
int h = 1;
h *= 1000003;
h ^= user.hashCode();
h *= 1000003;
h ^= fingerprint.hashCode();
return h;
}
}
Expand Up @@ -24,7 +24,7 @@
import java.util.List;
import java.util.Map;

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

Expand Down