Package com.google.api
Interface AuthenticationOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Authentication
,Authentication.Builder
public interface AuthenticationOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AuthProvider
getProviders(int index)
Defines a set of authentication providers that a service supports.int
getProvidersCount()
Defines a set of authentication providers that a service supports.java.util.List<AuthProvider>
getProvidersList()
Defines a set of authentication providers that a service supports.AuthProviderOrBuilder
getProvidersOrBuilder(int index)
Defines a set of authentication providers that a service supports.java.util.List<? extends AuthProviderOrBuilder>
getProvidersOrBuilderList()
Defines a set of authentication providers that a service supports.AuthenticationRule
getRules(int index)
A list of authentication rules that apply to individual API methods.int
getRulesCount()
A list of authentication rules that apply to individual API methods.java.util.List<AuthenticationRule>
getRulesList()
A list of authentication rules that apply to individual API methods.AuthenticationRuleOrBuilder
getRulesOrBuilder(int index)
A list of authentication rules that apply to individual API methods.java.util.List<? extends AuthenticationRuleOrBuilder>
getRulesOrBuilderList()
A list of authentication rules that apply to individual API methods.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getRulesList
java.util.List<AuthenticationRule> getRulesList()
A list of authentication rules that apply to individual API methods. **NOTE:** All service configuration rules follow "last one wins" order.
repeated .google.api.AuthenticationRule rules = 3;
-
getRules
AuthenticationRule getRules(int index)
A list of authentication rules that apply to individual API methods. **NOTE:** All service configuration rules follow "last one wins" order.
repeated .google.api.AuthenticationRule rules = 3;
-
getRulesCount
int getRulesCount()
A list of authentication rules that apply to individual API methods. **NOTE:** All service configuration rules follow "last one wins" order.
repeated .google.api.AuthenticationRule rules = 3;
-
getRulesOrBuilderList
java.util.List<? extends AuthenticationRuleOrBuilder> getRulesOrBuilderList()
A list of authentication rules that apply to individual API methods. **NOTE:** All service configuration rules follow "last one wins" order.
repeated .google.api.AuthenticationRule rules = 3;
-
getRulesOrBuilder
AuthenticationRuleOrBuilder getRulesOrBuilder(int index)
A list of authentication rules that apply to individual API methods. **NOTE:** All service configuration rules follow "last one wins" order.
repeated .google.api.AuthenticationRule rules = 3;
-
getProvidersList
java.util.List<AuthProvider> getProvidersList()
Defines a set of authentication providers that a service supports.
repeated .google.api.AuthProvider providers = 4;
-
getProviders
AuthProvider getProviders(int index)
Defines a set of authentication providers that a service supports.
repeated .google.api.AuthProvider providers = 4;
-
getProvidersCount
int getProvidersCount()
Defines a set of authentication providers that a service supports.
repeated .google.api.AuthProvider providers = 4;
-
getProvidersOrBuilderList
java.util.List<? extends AuthProviderOrBuilder> getProvidersOrBuilderList()
Defines a set of authentication providers that a service supports.
repeated .google.api.AuthProvider providers = 4;
-
getProvidersOrBuilder
AuthProviderOrBuilder getProvidersOrBuilder(int index)
Defines a set of authentication providers that a service supports.
repeated .google.api.AuthProvider providers = 4;
-
-