Interface CreateChallengeRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
CreateChallengeRequest
,CreateChallengeRequest.Builder
public interface CreateChallengeRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Challenge
getChallenge()
Required.ChallengeOrBuilder
getChallengeOrBuilder()
Required.String
getParent()
Required.com.google.protobuf.ByteString
getParentBytes()
Required.boolean
hasChallenge()
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 resource name of the location where the Challenge will be used, in the format `projects/*/locations/*`.
string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
- Returns:
- The parent.
-
getParentBytes
com.google.protobuf.ByteString getParentBytes()
Required. The resource name of the location where the Challenge will be used, in the format `projects/*/locations/*`.
string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
- Returns:
- The bytes for parent.
-
hasChallenge
boolean hasChallenge()
Required. The Challenge to be created. Currently this field can be empty as all the Challenge fields are set by the server.
.google.cloud.confidentialcomputing.v1alpha1.Challenge challenge = 2 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- Whether the challenge field is set.
-
getChallenge
Challenge getChallenge()
Required. The Challenge to be created. Currently this field can be empty as all the Challenge fields are set by the server.
.google.cloud.confidentialcomputing.v1alpha1.Challenge challenge = 2 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The challenge.
-
getChallengeOrBuilder
ChallengeOrBuilder getChallengeOrBuilder()
Required. The Challenge to be created. Currently this field can be empty as all the Challenge fields are set by the server.
.google.cloud.confidentialcomputing.v1alpha1.Challenge challenge = 2 [(.google.api.field_behavior) = REQUIRED];
-
-