com.google.cloud.dialogflow.v2.EncryptionSpecOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proto-google-cloud-dialogflow-v2 Show documentation
Show all versions of proto-google-cloud-dialogflow-v2 Show documentation
PROTO library for proto-google-cloud-dialogflow-v2
/*
* Copyright 2024 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/cloud/dialogflow/v2/encryption_spec.proto
// Protobuf Java Version: 3.25.4
package com.google.cloud.dialogflow.v2;
public interface EncryptionSpecOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.cloud.dialogflow.v2.EncryptionSpec)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* Immutable. The resource name of the encryption key specification resource.
* Format:
* projects/{project}/locations/{location}/encryptionSpec
*
*
* string name = 1 [(.google.api.field_behavior) = IMMUTABLE];
*
* @return The name.
*/
java.lang.String getName();
/**
*
*
*
* Immutable. The resource name of the encryption key specification resource.
* Format:
* projects/{project}/locations/{location}/encryptionSpec
*
*
* string name = 1 [(.google.api.field_behavior) = IMMUTABLE];
*
* @return The bytes for name.
*/
com.google.protobuf.ByteString getNameBytes();
/**
*
*
*
* Required. The name of customer-managed encryption key that is used to
* secure a resource and its sub-resources. If empty, the resource is secured
* by the default Google encryption key. Only the key in the same location as
* this resource is allowed to be used for encryption. Format:
* `projects/{project}/locations/{location}/keyRings/{keyRing}/cryptoKeys/{key}`
*
*
* string kms_key = 2 [(.google.api.field_behavior) = REQUIRED];
*
* @return The kmsKey.
*/
java.lang.String getKmsKey();
/**
*
*
*
* Required. The name of customer-managed encryption key that is used to
* secure a resource and its sub-resources. If empty, the resource is secured
* by the default Google encryption key. Only the key in the same location as
* this resource is allowed to be used for encryption. Format:
* `projects/{project}/locations/{location}/keyRings/{keyRing}/cryptoKeys/{key}`
*
*
* string kms_key = 2 [(.google.api.field_behavior) = REQUIRED];
*
* @return The bytes for kmsKey.
*/
com.google.protobuf.ByteString getKmsKeyBytes();
}