Interface BatchGetSettingsRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
BatchGetSettingsRequest,BatchGetSettingsRequest.Builder
public interface BatchGetSettingsRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetNames(int index)The names of the settings to retrieve.com.google.protobuf.ByteStringgetNamesBytes(int index)The names of the settings to retrieve.intgetNamesCount()The names of the settings to retrieve.List<String>getNamesList()The names of the settings to retrieve.StringgetParent()Required.com.google.protobuf.ByteStringgetParentBytes()Required.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getParent
String getParent()
Required. The relative resource name of the organization shared by all of the settings being retrieved. Format: * `organizations/{organization}`string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }- Returns:
- The parent.
-
getParentBytes
com.google.protobuf.ByteString getParentBytes()
Required. The relative resource name of the organization shared by all of the settings being retrieved. Format: * `organizations/{organization}`string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }- Returns:
- The bytes for parent.
-
getNamesList
List<String> getNamesList()
The names of the settings to retrieve. A maximum of 1000 settings can be retrieved in a batch. Formats: * `organizations/{organization}/settings` * `folders/{folder}/settings` * `projects/{project}/settings` * `projects/{project}/locations/{location}/clusters/{cluster}/settings` * `projects/{project}/regions/{region}/clusters/{cluster}/settings` * `projects/{project}/zones/{zone}/clusters/{cluster}/settings`repeated string names = 2;- Returns:
- A list containing the names.
-
getNamesCount
int getNamesCount()
The names of the settings to retrieve. A maximum of 1000 settings can be retrieved in a batch. Formats: * `organizations/{organization}/settings` * `folders/{folder}/settings` * `projects/{project}/settings` * `projects/{project}/locations/{location}/clusters/{cluster}/settings` * `projects/{project}/regions/{region}/clusters/{cluster}/settings` * `projects/{project}/zones/{zone}/clusters/{cluster}/settings`repeated string names = 2;- Returns:
- The count of names.
-
getNames
String getNames(int index)
The names of the settings to retrieve. A maximum of 1000 settings can be retrieved in a batch. Formats: * `organizations/{organization}/settings` * `folders/{folder}/settings` * `projects/{project}/settings` * `projects/{project}/locations/{location}/clusters/{cluster}/settings` * `projects/{project}/regions/{region}/clusters/{cluster}/settings` * `projects/{project}/zones/{zone}/clusters/{cluster}/settings`repeated string names = 2;- Parameters:
index- The index of the element to return.- Returns:
- The names at the given index.
-
getNamesBytes
com.google.protobuf.ByteString getNamesBytes(int index)
The names of the settings to retrieve. A maximum of 1000 settings can be retrieved in a batch. Formats: * `organizations/{organization}/settings` * `folders/{folder}/settings` * `projects/{project}/settings` * `projects/{project}/locations/{location}/clusters/{cluster}/settings` * `projects/{project}/regions/{region}/clusters/{cluster}/settings` * `projects/{project}/zones/{zone}/clusters/{cluster}/settings`repeated string names = 2;- Parameters:
index- The index of the value to return.- Returns:
- The bytes of the names at the given index.
-
-