io.envoyproxy.envoy.api.v3alpha.auth.SdsSecretConfigOrBuilder Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: envoy/api/v3alpha/auth/cert.proto
package io.envoyproxy.envoy.api.v3alpha.auth;
public interface SdsSecretConfigOrBuilder extends
// @@protoc_insertion_point(interface_extends:envoy.api.v3alpha.auth.SdsSecretConfig)
com.google.protobuf.MessageOrBuilder {
/**
*
* Name (FQDN, UUID, SPKI, SHA256, etc.) by which the secret can be uniquely referred to.
* When both name and config are specified, then secret can be fetched and/or reloaded via SDS.
* When only name is specified, then secret will be loaded from static resources [V2-API-DIFF].
*
*
* string name = 1;
*/
java.lang.String getName();
/**
*
* Name (FQDN, UUID, SPKI, SHA256, etc.) by which the secret can be uniquely referred to.
* When both name and config are specified, then secret can be fetched and/or reloaded via SDS.
* When only name is specified, then secret will be loaded from static resources [V2-API-DIFF].
*
*
* string name = 1;
*/
com.google.protobuf.ByteString
getNameBytes();
/**
* .envoy.api.v3alpha.core.ConfigSource sds_config = 2;
*/
boolean hasSdsConfig();
/**
* .envoy.api.v3alpha.core.ConfigSource sds_config = 2;
*/
io.envoyproxy.envoy.api.v3alpha.core.ConfigSource getSdsConfig();
/**
* .envoy.api.v3alpha.core.ConfigSource sds_config = 2;
*/
io.envoyproxy.envoy.api.v3alpha.core.ConfigSourceOrBuilder getSdsConfigOrBuilder();
}