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/securitycenter/v1/securitycenter_service.proto 18 19 package com.google.cloud.securitycenter.v1; 20 21 public interface ListEffectiveSecurityHealthAnalyticsCustomModulesResponseOrBuilder 22 extends 23 // @@protoc_insertion_point(interface_extends:google.cloud.securitycenter.v1.ListEffectiveSecurityHealthAnalyticsCustomModulesResponse) 24 com.google.protobuf.MessageOrBuilder { 25 26 /** 27 * 28 * 29 * <pre> 30 * Effective custom modules belonging to the requested parent. 31 * </pre> 32 * 33 * <code> 34 * repeated .google.cloud.securitycenter.v1.EffectiveSecurityHealthAnalyticsCustomModule effective_security_health_analytics_custom_modules = 1; 35 * </code> 36 */ 37 java.util.List<com.google.cloud.securitycenter.v1.EffectiveSecurityHealthAnalyticsCustomModule> getEffectiveSecurityHealthAnalyticsCustomModulesList()38 getEffectiveSecurityHealthAnalyticsCustomModulesList(); 39 /** 40 * 41 * 42 * <pre> 43 * Effective custom modules belonging to the requested parent. 44 * </pre> 45 * 46 * <code> 47 * repeated .google.cloud.securitycenter.v1.EffectiveSecurityHealthAnalyticsCustomModule effective_security_health_analytics_custom_modules = 1; 48 * </code> 49 */ 50 com.google.cloud.securitycenter.v1.EffectiveSecurityHealthAnalyticsCustomModule getEffectiveSecurityHealthAnalyticsCustomModules(int index)51 getEffectiveSecurityHealthAnalyticsCustomModules(int index); 52 /** 53 * 54 * 55 * <pre> 56 * Effective custom modules belonging to the requested parent. 57 * </pre> 58 * 59 * <code> 60 * repeated .google.cloud.securitycenter.v1.EffectiveSecurityHealthAnalyticsCustomModule effective_security_health_analytics_custom_modules = 1; 61 * </code> 62 */ getEffectiveSecurityHealthAnalyticsCustomModulesCount()63 int getEffectiveSecurityHealthAnalyticsCustomModulesCount(); 64 /** 65 * 66 * 67 * <pre> 68 * Effective custom modules belonging to the requested parent. 69 * </pre> 70 * 71 * <code> 72 * repeated .google.cloud.securitycenter.v1.EffectiveSecurityHealthAnalyticsCustomModule effective_security_health_analytics_custom_modules = 1; 73 * </code> 74 */ 75 java.util.List< 76 ? extends 77 com.google.cloud.securitycenter.v1 78 .EffectiveSecurityHealthAnalyticsCustomModuleOrBuilder> getEffectiveSecurityHealthAnalyticsCustomModulesOrBuilderList()79 getEffectiveSecurityHealthAnalyticsCustomModulesOrBuilderList(); 80 /** 81 * 82 * 83 * <pre> 84 * Effective custom modules belonging to the requested parent. 85 * </pre> 86 * 87 * <code> 88 * repeated .google.cloud.securitycenter.v1.EffectiveSecurityHealthAnalyticsCustomModule effective_security_health_analytics_custom_modules = 1; 89 * </code> 90 */ 91 com.google.cloud.securitycenter.v1.EffectiveSecurityHealthAnalyticsCustomModuleOrBuilder getEffectiveSecurityHealthAnalyticsCustomModulesOrBuilder(int index)92 getEffectiveSecurityHealthAnalyticsCustomModulesOrBuilder(int index); 93 94 /** 95 * 96 * 97 * <pre> 98 * If not empty, indicates that there may be more effective custom modules to 99 * be returned. 100 * </pre> 101 * 102 * <code>string next_page_token = 2;</code> 103 * 104 * @return The nextPageToken. 105 */ getNextPageToken()106 java.lang.String getNextPageToken(); 107 /** 108 * 109 * 110 * <pre> 111 * If not empty, indicates that there may be more effective custom modules to 112 * be returned. 113 * </pre> 114 * 115 * <code>string next_page_token = 2;</code> 116 * 117 * @return The bytes for nextPageToken. 118 */ getNextPageTokenBytes()119 com.google.protobuf.ByteString getNextPageTokenBytes(); 120 } 121