Package com.google.api.apikeys.v2
Interface IosKeyRestrictionsOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
IosKeyRestrictions
,IosKeyRestrictions.Builder
public interface IosKeyRestrictionsOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getAllowedBundleIds(int index)
A list of bundle IDs that are allowed when making API calls with this key.com.google.protobuf.ByteString
getAllowedBundleIdsBytes(int index)
A list of bundle IDs that are allowed when making API calls with this key.int
getAllowedBundleIdsCount()
A list of bundle IDs that are allowed when making API calls with this key.List<String>
getAllowedBundleIdsList()
A list of bundle IDs that are allowed when making API calls with this key.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getAllowedBundleIdsList
List<String> getAllowedBundleIdsList()
A list of bundle IDs that are allowed when making API calls with this key.
repeated string allowed_bundle_ids = 1;
- Returns:
- A list containing the allowedBundleIds.
-
getAllowedBundleIdsCount
int getAllowedBundleIdsCount()
A list of bundle IDs that are allowed when making API calls with this key.
repeated string allowed_bundle_ids = 1;
- Returns:
- The count of allowedBundleIds.
-
getAllowedBundleIds
String getAllowedBundleIds(int index)
A list of bundle IDs that are allowed when making API calls with this key.
repeated string allowed_bundle_ids = 1;
- Parameters:
index
- The index of the element to return.- Returns:
- The allowedBundleIds at the given index.
-
getAllowedBundleIdsBytes
com.google.protobuf.ByteString getAllowedBundleIdsBytes(int index)
A list of bundle IDs that are allowed when making API calls with this key.
repeated string allowed_bundle_ids = 1;
- Parameters:
index
- The index of the value to return.- Returns:
- The bytes of the allowedBundleIds at the given index.
-
-