Interface CreateProfileRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
CreateProfileRequest
,CreateProfileRequest.Builder
public interface CreateProfileRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Deployment
getDeployment()
Deployment details.DeploymentOrBuilder
getDeploymentOrBuilder()
Deployment details.String
getParent()
Parent project to create the profile in.com.google.protobuf.ByteString
getParentBytes()
Parent project to create the profile in.ProfileType
getProfileType(int index)
One or more profile types that the agent is capable of providing.int
getProfileTypeCount()
One or more profile types that the agent is capable of providing.List<ProfileType>
getProfileTypeList()
One or more profile types that the agent is capable of providing.int
getProfileTypeValue(int index)
One or more profile types that the agent is capable of providing.List<Integer>
getProfileTypeValueList()
One or more profile types that the agent is capable of providing.boolean
hasDeployment()
Deployment details.-
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 project to create the profile in.
string parent = 4 [(.google.api.resource_reference) = { ... }
- Returns:
- The parent.
-
getParentBytes
com.google.protobuf.ByteString getParentBytes()
Parent project to create the profile in.
string parent = 4 [(.google.api.resource_reference) = { ... }
- Returns:
- The bytes for parent.
-
hasDeployment
boolean hasDeployment()
Deployment details.
.google.devtools.cloudprofiler.v2.Deployment deployment = 1;
- Returns:
- Whether the deployment field is set.
-
getDeployment
Deployment getDeployment()
Deployment details.
.google.devtools.cloudprofiler.v2.Deployment deployment = 1;
- Returns:
- The deployment.
-
getDeploymentOrBuilder
DeploymentOrBuilder getDeploymentOrBuilder()
Deployment details.
.google.devtools.cloudprofiler.v2.Deployment deployment = 1;
-
getProfileTypeList
List<ProfileType> getProfileTypeList()
One or more profile types that the agent is capable of providing.
repeated .google.devtools.cloudprofiler.v2.ProfileType profile_type = 2;
- Returns:
- A list containing the profileType.
-
getProfileTypeCount
int getProfileTypeCount()
One or more profile types that the agent is capable of providing.
repeated .google.devtools.cloudprofiler.v2.ProfileType profile_type = 2;
- Returns:
- The count of profileType.
-
getProfileType
ProfileType getProfileType(int index)
One or more profile types that the agent is capable of providing.
repeated .google.devtools.cloudprofiler.v2.ProfileType profile_type = 2;
- Parameters:
index
- The index of the element to return.- Returns:
- The profileType at the given index.
-
getProfileTypeValueList
List<Integer> getProfileTypeValueList()
One or more profile types that the agent is capable of providing.
repeated .google.devtools.cloudprofiler.v2.ProfileType profile_type = 2;
- Returns:
- A list containing the enum numeric values on the wire for profileType.
-
getProfileTypeValue
int getProfileTypeValue(int index)
One or more profile types that the agent is capable of providing.
repeated .google.devtools.cloudprofiler.v2.ProfileType profile_type = 2;
- Parameters:
index
- The index of the value to return.- Returns:
- The enum numeric value on the wire of profileType at the given index.
-
-