Interface CreateCdnKeyRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
CreateCdnKeyRequest
,CreateCdnKeyRequest.Builder
public interface CreateCdnKeyRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CdnKey
getCdnKey()
Required.String
getCdnKeyId()
Required.com.google.protobuf.ByteString
getCdnKeyIdBytes()
Required.CdnKeyOrBuilder
getCdnKeyOrBuilder()
Required.String
getParent()
Required.com.google.protobuf.ByteString
getParentBytes()
Required.boolean
hasCdnKey()
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 project in which the CDN key should be created, in the form of `projects/{project_number}/locations/{location}`.
string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
- Returns:
- The parent.
-
getParentBytes
com.google.protobuf.ByteString getParentBytes()
Required. The project in which the CDN key should be created, in the form of `projects/{project_number}/locations/{location}`.
string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
- Returns:
- The bytes for parent.
-
hasCdnKey
boolean hasCdnKey()
Required. The CDN key resource to create.
.google.cloud.video.stitcher.v1.CdnKey cdn_key = 2 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- Whether the cdnKey field is set.
-
getCdnKey
CdnKey getCdnKey()
Required. The CDN key resource to create.
.google.cloud.video.stitcher.v1.CdnKey cdn_key = 2 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The cdnKey.
-
getCdnKeyOrBuilder
CdnKeyOrBuilder getCdnKeyOrBuilder()
Required. The CDN key resource to create.
.google.cloud.video.stitcher.v1.CdnKey cdn_key = 2 [(.google.api.field_behavior) = REQUIRED];
-
getCdnKeyId
String getCdnKeyId()
Required. The ID to use for the CDN key, which will become the final component of the CDN key's resource name. This value should conform to RFC-1034, which restricts to lower-case letters, numbers, and hyphen, with the first character a letter, the last a letter or a number, and a 63 character maximum.
string cdn_key_id = 3 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The cdnKeyId.
-
getCdnKeyIdBytes
com.google.protobuf.ByteString getCdnKeyIdBytes()
Required. The ID to use for the CDN key, which will become the final component of the CDN key's resource name. This value should conform to RFC-1034, which restricts to lower-case letters, numbers, and hyphen, with the first character a letter, the last a letter or a number, and a 63 character maximum.
string cdn_key_id = 3 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The bytes for cdnKeyId.
-
-