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/effective_security_health_analytics_custom_module.proto 18 19 package com.google.cloud.securitycenter.v1; 20 21 public interface EffectiveSecurityHealthAnalyticsCustomModuleOrBuilder 22 extends 23 // @@protoc_insertion_point(interface_extends:google.cloud.securitycenter.v1.EffectiveSecurityHealthAnalyticsCustomModule) 24 com.google.protobuf.MessageOrBuilder { 25 26 /** 27 * 28 * 29 * <pre> 30 * Output only. The resource name of the custom module. 31 * Its format is 32 * "organizations/{organization}/securityHealthAnalyticsSettings/effectiveCustomModules/{customModule}", 33 * or 34 * "folders/{folder}/securityHealthAnalyticsSettings/effectiveCustomModules/{customModule}", 35 * or 36 * "projects/{project}/securityHealthAnalyticsSettings/effectiveCustomModules/{customModule}" 37 * </pre> 38 * 39 * <code>string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];</code> 40 * 41 * @return The name. 42 */ getName()43 java.lang.String getName(); 44 /** 45 * 46 * 47 * <pre> 48 * Output only. The resource name of the custom module. 49 * Its format is 50 * "organizations/{organization}/securityHealthAnalyticsSettings/effectiveCustomModules/{customModule}", 51 * or 52 * "folders/{folder}/securityHealthAnalyticsSettings/effectiveCustomModules/{customModule}", 53 * or 54 * "projects/{project}/securityHealthAnalyticsSettings/effectiveCustomModules/{customModule}" 55 * </pre> 56 * 57 * <code>string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];</code> 58 * 59 * @return The bytes for name. 60 */ getNameBytes()61 com.google.protobuf.ByteString getNameBytes(); 62 63 /** 64 * 65 * 66 * <pre> 67 * Output only. The user-specified configuration for the module. 68 * </pre> 69 * 70 * <code> 71 * .google.cloud.securitycenter.v1.CustomConfig custom_config = 2 [(.google.api.field_behavior) = OUTPUT_ONLY]; 72 * </code> 73 * 74 * @return Whether the customConfig field is set. 75 */ hasCustomConfig()76 boolean hasCustomConfig(); 77 /** 78 * 79 * 80 * <pre> 81 * Output only. The user-specified configuration for the module. 82 * </pre> 83 * 84 * <code> 85 * .google.cloud.securitycenter.v1.CustomConfig custom_config = 2 [(.google.api.field_behavior) = OUTPUT_ONLY]; 86 * </code> 87 * 88 * @return The customConfig. 89 */ getCustomConfig()90 com.google.cloud.securitycenter.v1.CustomConfig getCustomConfig(); 91 /** 92 * 93 * 94 * <pre> 95 * Output only. The user-specified configuration for the module. 96 * </pre> 97 * 98 * <code> 99 * .google.cloud.securitycenter.v1.CustomConfig custom_config = 2 [(.google.api.field_behavior) = OUTPUT_ONLY]; 100 * </code> 101 */ getCustomConfigOrBuilder()102 com.google.cloud.securitycenter.v1.CustomConfigOrBuilder getCustomConfigOrBuilder(); 103 104 /** 105 * 106 * 107 * <pre> 108 * Output only. The effective state of enablement for the module at the given 109 * level of the hierarchy. 110 * </pre> 111 * 112 * <code> 113 * .google.cloud.securitycenter.v1.EffectiveSecurityHealthAnalyticsCustomModule.EnablementState enablement_state = 3 [(.google.api.field_behavior) = OUTPUT_ONLY]; 114 * </code> 115 * 116 * @return The enum numeric value on the wire for enablementState. 117 */ getEnablementStateValue()118 int getEnablementStateValue(); 119 /** 120 * 121 * 122 * <pre> 123 * Output only. The effective state of enablement for the module at the given 124 * level of the hierarchy. 125 * </pre> 126 * 127 * <code> 128 * .google.cloud.securitycenter.v1.EffectiveSecurityHealthAnalyticsCustomModule.EnablementState enablement_state = 3 [(.google.api.field_behavior) = OUTPUT_ONLY]; 129 * </code> 130 * 131 * @return The enablementState. 132 */ 133 com.google.cloud.securitycenter.v1.EffectiveSecurityHealthAnalyticsCustomModule.EnablementState getEnablementState()134 getEnablementState(); 135 136 /** 137 * 138 * 139 * <pre> 140 * Output only. The display name for the custom module. The name must be 141 * between 1 and 128 characters, start with a lowercase letter, and contain 142 * alphanumeric characters or underscores only. 143 * </pre> 144 * 145 * <code>string display_name = 4 [(.google.api.field_behavior) = OUTPUT_ONLY];</code> 146 * 147 * @return The displayName. 148 */ getDisplayName()149 java.lang.String getDisplayName(); 150 /** 151 * 152 * 153 * <pre> 154 * Output only. The display name for the custom module. The name must be 155 * between 1 and 128 characters, start with a lowercase letter, and contain 156 * alphanumeric characters or underscores only. 157 * </pre> 158 * 159 * <code>string display_name = 4 [(.google.api.field_behavior) = OUTPUT_ONLY];</code> 160 * 161 * @return The bytes for displayName. 162 */ getDisplayNameBytes()163 com.google.protobuf.ByteString getDisplayNameBytes(); 164 } 165