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/cloud/datacatalog/v1/datacatalog.proto 18 19 package com.google.cloud.datacatalog.v1; 20 21 public interface SqlDatabaseSystemSpecOrBuilder 22 extends 23 // @@protoc_insertion_point(interface_extends:google.cloud.datacatalog.v1.SqlDatabaseSystemSpec) 24 com.google.protobuf.MessageOrBuilder { 25 26 /** 27 * 28 * 29 * <pre> 30 * SQL Database Engine. 31 * enum SqlEngine { 32 * UNDEFINED = 0; 33 * MY_SQL = 1; 34 * POSTGRE_SQL = 2; 35 * SQL_SERVER = 3; 36 * } 37 * Engine of the enclosing database instance. 38 * </pre> 39 * 40 * <code>string sql_engine = 1;</code> 41 * 42 * @return The sqlEngine. 43 */ getSqlEngine()44 java.lang.String getSqlEngine(); 45 /** 46 * 47 * 48 * <pre> 49 * SQL Database Engine. 50 * enum SqlEngine { 51 * UNDEFINED = 0; 52 * MY_SQL = 1; 53 * POSTGRE_SQL = 2; 54 * SQL_SERVER = 3; 55 * } 56 * Engine of the enclosing database instance. 57 * </pre> 58 * 59 * <code>string sql_engine = 1;</code> 60 * 61 * @return The bytes for sqlEngine. 62 */ getSqlEngineBytes()63 com.google.protobuf.ByteString getSqlEngineBytes(); 64 65 /** 66 * 67 * 68 * <pre> 69 * Version of the database engine. 70 * </pre> 71 * 72 * <code>string database_version = 2;</code> 73 * 74 * @return The databaseVersion. 75 */ getDatabaseVersion()76 java.lang.String getDatabaseVersion(); 77 /** 78 * 79 * 80 * <pre> 81 * Version of the database engine. 82 * </pre> 83 * 84 * <code>string database_version = 2;</code> 85 * 86 * @return The bytes for databaseVersion. 87 */ getDatabaseVersionBytes()88 com.google.protobuf.ByteString getDatabaseVersionBytes(); 89 90 /** 91 * 92 * 93 * <pre> 94 * Host of the SQL database 95 * enum InstanceHost { 96 * UNDEFINED = 0; 97 * SELF_HOSTED = 1; 98 * CLOUD_SQL = 2; 99 * AMAZON_RDS = 3; 100 * AZURE_SQL = 4; 101 * } 102 * Host of the enclousing database instance. 103 * </pre> 104 * 105 * <code>string instance_host = 3;</code> 106 * 107 * @return The instanceHost. 108 */ getInstanceHost()109 java.lang.String getInstanceHost(); 110 /** 111 * 112 * 113 * <pre> 114 * Host of the SQL database 115 * enum InstanceHost { 116 * UNDEFINED = 0; 117 * SELF_HOSTED = 1; 118 * CLOUD_SQL = 2; 119 * AMAZON_RDS = 3; 120 * AZURE_SQL = 4; 121 * } 122 * Host of the enclousing database instance. 123 * </pre> 124 * 125 * <code>string instance_host = 3;</code> 126 * 127 * @return The bytes for instanceHost. 128 */ getInstanceHostBytes()129 com.google.protobuf.ByteString getInstanceHostBytes(); 130 } 131