Interface MergeCapacityCommitmentsRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
MergeCapacityCommitmentsRequest
,MergeCapacityCommitmentsRequest.Builder
public interface MergeCapacityCommitmentsRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getCapacityCommitmentIds(int index)
Ids of capacity commitments to merge.com.google.protobuf.ByteString
getCapacityCommitmentIdsBytes(int index)
Ids of capacity commitments to merge.int
getCapacityCommitmentIdsCount()
Ids of capacity commitments to merge.List<String>
getCapacityCommitmentIdsList()
Ids of capacity commitments to merge.String
getParent()
Parent resource that identifies admin project and location e.g., `projects/myproject/locations/us`com.google.protobuf.ByteString
getParentBytes()
Parent resource that identifies admin project and location e.g., `projects/myproject/locations/us`-
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()
Parent resource that identifies admin project and location e.g., `projects/myproject/locations/us`
string parent = 1 [(.google.api.resource_reference) = { ... }
- Returns:
- The parent.
-
getParentBytes
com.google.protobuf.ByteString getParentBytes()
Parent resource that identifies admin project and location e.g., `projects/myproject/locations/us`
string parent = 1 [(.google.api.resource_reference) = { ... }
- Returns:
- The bytes for parent.
-
getCapacityCommitmentIdsList
List<String> getCapacityCommitmentIdsList()
Ids of capacity commitments to merge. These capacity commitments must exist under admin project and location specified in the parent. ID is the last portion of capacity commitment name e.g., 'abc' for projects/myproject/locations/US/capacityCommitments/abc
repeated string capacity_commitment_ids = 2;
- Returns:
- A list containing the capacityCommitmentIds.
-
getCapacityCommitmentIdsCount
int getCapacityCommitmentIdsCount()
Ids of capacity commitments to merge. These capacity commitments must exist under admin project and location specified in the parent. ID is the last portion of capacity commitment name e.g., 'abc' for projects/myproject/locations/US/capacityCommitments/abc
repeated string capacity_commitment_ids = 2;
- Returns:
- The count of capacityCommitmentIds.
-
getCapacityCommitmentIds
String getCapacityCommitmentIds(int index)
Ids of capacity commitments to merge. These capacity commitments must exist under admin project and location specified in the parent. ID is the last portion of capacity commitment name e.g., 'abc' for projects/myproject/locations/US/capacityCommitments/abc
repeated string capacity_commitment_ids = 2;
- Parameters:
index
- The index of the element to return.- Returns:
- The capacityCommitmentIds at the given index.
-
getCapacityCommitmentIdsBytes
com.google.protobuf.ByteString getCapacityCommitmentIdsBytes(int index)
Ids of capacity commitments to merge. These capacity commitments must exist under admin project and location specified in the parent. ID is the last portion of capacity commitment name e.g., 'abc' for projects/myproject/locations/US/capacityCommitments/abc
repeated string capacity_commitment_ids = 2;
- Parameters:
index
- The index of the value to return.- Returns:
- The bytes of the capacityCommitmentIds at the given index.
-
-