-
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
8 changed files
with
4,222 additions
and
0 deletions.
There are no files selected for viewing
633 changes: 633 additions & 0 deletions
633
...nalysis-v1beta1/src/main/java/com/google/containeranalysis/v1beta1/ExportSBOMRequest.java
Large diffs are not rendered by default.
Oops, something went wrong.
53 changes: 53 additions & 0 deletions
53
...1beta1/src/main/java/com/google/containeranalysis/v1beta1/ExportSBOMRequestOrBuilder.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,53 @@ | ||
/* | ||
* Copyright 2024 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. | ||
*/ | ||
// Generated by the protocol buffer compiler. DO NOT EDIT! | ||
// source: google/devtools/containeranalysis/v1beta1/containeranalysis.proto | ||
|
||
// Protobuf Java Version: 3.25.4 | ||
package com.google.containeranalysis.v1beta1; | ||
|
||
public interface ExportSBOMRequestOrBuilder | ||
extends | ||
// @@protoc_insertion_point(interface_extends:google.devtools.containeranalysis.v1beta1.ExportSBOMRequest) | ||
com.google.protobuf.MessageOrBuilder { | ||
|
||
/** | ||
* | ||
* | ||
* <pre> | ||
* Required. The name of the resource in the form of | ||
* `projects/[PROJECT_ID]/resources/[RESOURCE_URL]`. | ||
* </pre> | ||
* | ||
* <code>string name = 1 [(.google.api.field_behavior) = REQUIRED];</code> | ||
* | ||
* @return The name. | ||
*/ | ||
java.lang.String getName(); | ||
/** | ||
* | ||
* | ||
* <pre> | ||
* Required. The name of the resource in the form of | ||
* `projects/[PROJECT_ID]/resources/[RESOURCE_URL]`. | ||
* </pre> | ||
* | ||
* <code>string name = 1 [(.google.api.field_behavior) = REQUIRED];</code> | ||
* | ||
* @return The bytes for name. | ||
*/ | ||
com.google.protobuf.ByteString getNameBytes(); | ||
} |
Oops, something went wrong.