-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
65 changed files
with
2,807 additions
and
431 deletions.
There are no files selected for viewing
23 changes: 23 additions & 0 deletions
23
...ranalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/IamResourceName.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
/* | ||
* 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.containeranalysis.v1beta1; | ||
|
||
import com.google.api.resourcenames.ResourceName; | ||
|
||
// AUTO-GENERATED DOCUMENTATION AND CLASS | ||
@javax.annotation.Generated("by GAPIC protoc plugin") | ||
public abstract class IamResourceName implements ResourceName { | ||
protected IamResourceName() {} | ||
} |
33 changes: 33 additions & 0 deletions
33
...analysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/IamResourceNames.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
/* | ||
* 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.containeranalysis.v1beta1; | ||
|
||
import com.google.api.resourcenames.ResourceName; | ||
|
||
// AUTO-GENERATED DOCUMENTATION AND CLASS | ||
@javax.annotation.Generated("by GAPIC protoc plugin") | ||
public class IamResourceNames { | ||
private IamResourceNames() {} | ||
|
||
public static IamResourceName parse(String resourceNameString) { | ||
if (NoteName.isParsableFrom(resourceNameString)) { | ||
return NoteName.parse(resourceNameString); | ||
} | ||
if (OccurrenceName.isParsableFrom(resourceNameString)) { | ||
return OccurrenceName.parse(resourceNameString); | ||
} | ||
return UntypedIamResourceName.parse(resourceNameString); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
103 changes: 103 additions & 0 deletions
103
...is-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/UntypedIamResourceName.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,103 @@ | ||
/* | ||
* 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.containeranalysis.v1beta1; | ||
|
||
import com.google.common.base.Preconditions; | ||
import com.google.api.resourcenames.ResourceName; | ||
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 UntypedIamResourceName extends IamResourceName { | ||
|
||
private final String rawValue; | ||
private Map<String, String> valueMap; | ||
|
||
private UntypedIamResourceName(String rawValue) { | ||
this.rawValue = Preconditions.checkNotNull(rawValue); | ||
this.valueMap = ImmutableMap.of("", rawValue); | ||
} | ||
|
||
public static UntypedIamResourceName from(ResourceName resourceName) { | ||
return new UntypedIamResourceName(resourceName.toString()); | ||
} | ||
|
||
public static UntypedIamResourceName parse(String formattedString) { | ||
return new UntypedIamResourceName(formattedString); | ||
} | ||
|
||
public static List<UntypedIamResourceName> parseList(List<String> formattedStrings) { | ||
List<UntypedIamResourceName> list = new ArrayList<>(formattedStrings.size()); | ||
for (String formattedString : formattedStrings) { | ||
list.add(parse(formattedString)); | ||
} | ||
return list; | ||
} | ||
|
||
public static List<String> toStringList(List<UntypedIamResourceName> values) { | ||
List<String> list = new ArrayList<String>(values.size()); | ||
for (UntypedIamResourceName 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<String, String> 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 UntypedIamResourceName) { | ||
UntypedIamResourceName that = (UntypedIamResourceName) o; | ||
return this.rawValue.equals(that.rawValue); | ||
} | ||
return false; | ||
} | ||
|
||
@Override | ||
public int hashCode() { | ||
return rawValue.hashCode(); | ||
} | ||
} |
23 changes: 23 additions & 0 deletions
23
...gle-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/IamResourceName.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
/* | ||
* 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 io.grafeas.v1beta1; | ||
|
||
import com.google.api.resourcenames.ResourceName; | ||
|
||
// AUTO-GENERATED DOCUMENTATION AND CLASS | ||
@javax.annotation.Generated("by GAPIC protoc plugin") | ||
public abstract class IamResourceName implements ResourceName { | ||
protected IamResourceName() {} | ||
} |
33 changes: 33 additions & 0 deletions
33
...le-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/IamResourceNames.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
/* | ||
* 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 io.grafeas.v1beta1; | ||
|
||
import com.google.api.resourcenames.ResourceName; | ||
|
||
// AUTO-GENERATED DOCUMENTATION AND CLASS | ||
@javax.annotation.Generated("by GAPIC protoc plugin") | ||
public class IamResourceNames { | ||
private IamResourceNames() {} | ||
|
||
public static IamResourceName parse(String resourceNameString) { | ||
if (NoteName.isParsableFrom(resourceNameString)) { | ||
return NoteName.parse(resourceNameString); | ||
} | ||
if (OccurrenceName.isParsableFrom(resourceNameString)) { | ||
return OccurrenceName.parse(resourceNameString); | ||
} | ||
return UntypedIamResourceName.parse(resourceNameString); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
103 changes: 103 additions & 0 deletions
103
...ud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/UntypedIamResourceName.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,103 @@ | ||
/* | ||
* 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 io.grafeas.v1beta1; | ||
|
||
import com.google.common.base.Preconditions; | ||
import com.google.api.resourcenames.ResourceName; | ||
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 UntypedIamResourceName extends IamResourceName { | ||
|
||
private final String rawValue; | ||
private Map<String, String> valueMap; | ||
|
||
private UntypedIamResourceName(String rawValue) { | ||
this.rawValue = Preconditions.checkNotNull(rawValue); | ||
this.valueMap = ImmutableMap.of("", rawValue); | ||
} | ||
|
||
public static UntypedIamResourceName from(ResourceName resourceName) { | ||
return new UntypedIamResourceName(resourceName.toString()); | ||
} | ||
|
||
public static UntypedIamResourceName parse(String formattedString) { | ||
return new UntypedIamResourceName(formattedString); | ||
} | ||
|
||
public static List<UntypedIamResourceName> parseList(List<String> formattedStrings) { | ||
List<UntypedIamResourceName> list = new ArrayList<>(formattedStrings.size()); | ||
for (String formattedString : formattedStrings) { | ||
list.add(parse(formattedString)); | ||
} | ||
return list; | ||
} | ||
|
||
public static List<String> toStringList(List<UntypedIamResourceName> values) { | ||
List<String> list = new ArrayList<String>(values.size()); | ||
for (UntypedIamResourceName 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<String, String> 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 UntypedIamResourceName) { | ||
UntypedIamResourceName that = (UntypedIamResourceName) o; | ||
return this.rawValue.equals(that.rawValue); | ||
} | ||
return false; | ||
} | ||
|
||
@Override | ||
public int hashCode() { | ||
return rawValue.hashCode(); | ||
} | ||
} |
23 changes: 23 additions & 0 deletions
23
...ntaineranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/attestation/IamResourceName.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
/* | ||
* 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 io.grafeas.v1beta1.attestation; | ||
|
||
import com.google.api.resourcenames.ResourceName; | ||
|
||
// AUTO-GENERATED DOCUMENTATION AND CLASS | ||
@javax.annotation.Generated("by GAPIC protoc plugin") | ||
public abstract class IamResourceName implements ResourceName { | ||
protected IamResourceName() {} | ||
} |
Oops, something went wrong.