1 /* 2 * Copyright 2020 Google LLC 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * https://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 // Generated by the protocol buffer compiler. DO NOT EDIT! 17 // source: google/privacy/dlp/v2/storage.proto 18 19 package com.google.privacy.dlp.v2; 20 21 public interface StoredTypeOrBuilder 22 extends 23 // @@protoc_insertion_point(interface_extends:google.privacy.dlp.v2.StoredType) 24 com.google.protobuf.MessageOrBuilder { 25 26 /** 27 * 28 * 29 * <pre> 30 * Resource name of the requested `StoredInfoType`, for example 31 * `organizations/433245324/storedInfoTypes/432452342` or 32 * `projects/project-id/storedInfoTypes/432452342`. 33 * </pre> 34 * 35 * <code>string name = 1;</code> 36 * 37 * @return The name. 38 */ getName()39 java.lang.String getName(); 40 /** 41 * 42 * 43 * <pre> 44 * Resource name of the requested `StoredInfoType`, for example 45 * `organizations/433245324/storedInfoTypes/432452342` or 46 * `projects/project-id/storedInfoTypes/432452342`. 47 * </pre> 48 * 49 * <code>string name = 1;</code> 50 * 51 * @return The bytes for name. 52 */ getNameBytes()53 com.google.protobuf.ByteString getNameBytes(); 54 55 /** 56 * 57 * 58 * <pre> 59 * Timestamp indicating when the version of the `StoredInfoType` used for 60 * inspection was created. Output-only field, populated by the system. 61 * </pre> 62 * 63 * <code>.google.protobuf.Timestamp create_time = 2;</code> 64 * 65 * @return Whether the createTime field is set. 66 */ hasCreateTime()67 boolean hasCreateTime(); 68 /** 69 * 70 * 71 * <pre> 72 * Timestamp indicating when the version of the `StoredInfoType` used for 73 * inspection was created. Output-only field, populated by the system. 74 * </pre> 75 * 76 * <code>.google.protobuf.Timestamp create_time = 2;</code> 77 * 78 * @return The createTime. 79 */ getCreateTime()80 com.google.protobuf.Timestamp getCreateTime(); 81 /** 82 * 83 * 84 * <pre> 85 * Timestamp indicating when the version of the `StoredInfoType` used for 86 * inspection was created. Output-only field, populated by the system. 87 * </pre> 88 * 89 * <code>.google.protobuf.Timestamp create_time = 2;</code> 90 */ getCreateTimeOrBuilder()91 com.google.protobuf.TimestampOrBuilder getCreateTimeOrBuilder(); 92 } 93