-
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.
chore: generate libraries at Sat Nov 9 13:59:46 UTC 2024
- Loading branch information
1 parent
6983de3
commit 91b2406
Showing
26 changed files
with
19,807 additions
and
0 deletions.
There are no files selected for viewing
732 changes: 732 additions & 0 deletions
732
...beta/src/main/java/com/google/cloud/gkehub/policycontroller/v1beta/BundleInstallSpec.java
Large diffs are not rendered by default.
Oops, something went wrong.
77 changes: 77 additions & 0 deletions
77
...main/java/com/google/cloud/gkehub/policycontroller/v1beta/BundleInstallSpecOrBuilder.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,77 @@ | ||
/* | ||
* 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/cloud/gkehub/policycontroller/v1beta/policycontroller.proto | ||
|
||
// Protobuf Java Version: 3.25.5 | ||
package com.google.cloud.gkehub.policycontroller.v1beta; | ||
|
||
public interface BundleInstallSpecOrBuilder | ||
extends | ||
// @@protoc_insertion_point(interface_extends:google.cloud.gkehub.policycontroller.v1beta.BundleInstallSpec) | ||
com.google.protobuf.MessageOrBuilder { | ||
|
||
/** | ||
* | ||
* | ||
* <pre> | ||
* The set of namespaces to be exempted from the bundle. | ||
* </pre> | ||
* | ||
* <code>repeated string exempted_namespaces = 2;</code> | ||
* | ||
* @return A list containing the exemptedNamespaces. | ||
*/ | ||
java.util.List<java.lang.String> getExemptedNamespacesList(); | ||
/** | ||
* | ||
* | ||
* <pre> | ||
* The set of namespaces to be exempted from the bundle. | ||
* </pre> | ||
* | ||
* <code>repeated string exempted_namespaces = 2;</code> | ||
* | ||
* @return The count of exemptedNamespaces. | ||
*/ | ||
int getExemptedNamespacesCount(); | ||
/** | ||
* | ||
* | ||
* <pre> | ||
* The set of namespaces to be exempted from the bundle. | ||
* </pre> | ||
* | ||
* <code>repeated string exempted_namespaces = 2;</code> | ||
* | ||
* @param index The index of the element to return. | ||
* @return The exemptedNamespaces at the given index. | ||
*/ | ||
java.lang.String getExemptedNamespaces(int index); | ||
/** | ||
* | ||
* | ||
* <pre> | ||
* The set of namespaces to be exempted from the bundle. | ||
* </pre> | ||
* | ||
* <code>repeated string exempted_namespaces = 2;</code> | ||
* | ||
* @param index The index of the value to return. | ||
* @return The bytes of the exemptedNamespaces at the given index. | ||
*/ | ||
com.google.protobuf.ByteString getExemptedNamespacesBytes(int index); | ||
} |
Oops, something went wrong.