|
| 1 | +/* |
| 2 | + * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except |
| 3 | + * in compliance with the License. You may obtain a copy of the License at |
| 4 | + * |
| 5 | + * http://www.apache.org/licenses/LICENSE-2.0 |
| 6 | + * |
| 7 | + * Unless required by applicable law or agreed to in writing, software distributed under the License |
| 8 | + * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express |
| 9 | + * or implied. See the License for the specific language governing permissions and limitations under |
| 10 | + * the License. |
| 11 | + */ |
| 12 | +/* |
| 13 | + * This code was generated by https://github.com/googleapis/google-api-java-client-services/ |
| 14 | + * Modify at your own risk. |
| 15 | + */ |
| 16 | + |
| 17 | +package com.google.api.services.beyondcorp.v1alpha.model; |
| 18 | + |
| 19 | +/** |
| 20 | + * A Beyondcorp Application resource information. |
| 21 | + * |
| 22 | + * <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is |
| 23 | + * transmitted over HTTP when working with the BeyondCorp API. For a detailed explanation see: |
| 24 | + * <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a> |
| 25 | + * </p> |
| 26 | + * |
| 27 | + * @author Google, Inc. |
| 28 | + */ |
| 29 | +@SuppressWarnings("javadoc") |
| 30 | +public final class GoogleCloudBeyondcorpSecuritygatewaysV1alphaApplication extends com.google.api.client.json.GenericJson { |
| 31 | + |
| 32 | + /** |
| 33 | + * Required. Application filter conditions associated with an application. |
| 34 | + * The value may be {@code null}. |
| 35 | + */ |
| 36 | + @com.google.api.client.util.Key |
| 37 | + private GoogleCloudBeyondcorpSecuritygatewaysV1alphaApplicationMatchFilter applicationMatchFilter; |
| 38 | + |
| 39 | + /** |
| 40 | + * Output only. Timestamp when the resource was created. |
| 41 | + * The value may be {@code null}. |
| 42 | + */ |
| 43 | + @com.google.api.client.util.Key |
| 44 | + private String createTime; |
| 45 | + |
| 46 | + /** |
| 47 | + * Optional. An arbitrary user-provided name for the Route resource. Cannot exceed 64 characters. |
| 48 | + * The value may be {@code null}. |
| 49 | + */ |
| 50 | + @com.google.api.client.util.Key |
| 51 | + private java.lang.String displayName; |
| 52 | + |
| 53 | + /** |
| 54 | + * Identifier. Name of the resource. |
| 55 | + * The value may be {@code null}. |
| 56 | + */ |
| 57 | + @com.google.api.client.util.Key |
| 58 | + private java.lang.String name; |
| 59 | + |
| 60 | + /** |
| 61 | + * Output only. Timestamp when the resource was last modified. |
| 62 | + * The value may be {@code null}. |
| 63 | + */ |
| 64 | + @com.google.api.client.util.Key |
| 65 | + private String updateTime; |
| 66 | + |
| 67 | + /** |
| 68 | + * Required. Application filter conditions associated with an application. |
| 69 | + * @return value or {@code null} for none |
| 70 | + */ |
| 71 | + public GoogleCloudBeyondcorpSecuritygatewaysV1alphaApplicationMatchFilter getApplicationMatchFilter() { |
| 72 | + return applicationMatchFilter; |
| 73 | + } |
| 74 | + |
| 75 | + /** |
| 76 | + * Required. Application filter conditions associated with an application. |
| 77 | + * @param applicationMatchFilter applicationMatchFilter or {@code null} for none |
| 78 | + */ |
| 79 | + public GoogleCloudBeyondcorpSecuritygatewaysV1alphaApplication setApplicationMatchFilter(GoogleCloudBeyondcorpSecuritygatewaysV1alphaApplicationMatchFilter applicationMatchFilter) { |
| 80 | + this.applicationMatchFilter = applicationMatchFilter; |
| 81 | + return this; |
| 82 | + } |
| 83 | + |
| 84 | + /** |
| 85 | + * Output only. Timestamp when the resource was created. |
| 86 | + * @return value or {@code null} for none |
| 87 | + */ |
| 88 | + public String getCreateTime() { |
| 89 | + return createTime; |
| 90 | + } |
| 91 | + |
| 92 | + /** |
| 93 | + * Output only. Timestamp when the resource was created. |
| 94 | + * @param createTime createTime or {@code null} for none |
| 95 | + */ |
| 96 | + public GoogleCloudBeyondcorpSecuritygatewaysV1alphaApplication setCreateTime(String createTime) { |
| 97 | + this.createTime = createTime; |
| 98 | + return this; |
| 99 | + } |
| 100 | + |
| 101 | + /** |
| 102 | + * Optional. An arbitrary user-provided name for the Route resource. Cannot exceed 64 characters. |
| 103 | + * @return value or {@code null} for none |
| 104 | + */ |
| 105 | + public java.lang.String getDisplayName() { |
| 106 | + return displayName; |
| 107 | + } |
| 108 | + |
| 109 | + /** |
| 110 | + * Optional. An arbitrary user-provided name for the Route resource. Cannot exceed 64 characters. |
| 111 | + * @param displayName displayName or {@code null} for none |
| 112 | + */ |
| 113 | + public GoogleCloudBeyondcorpSecuritygatewaysV1alphaApplication setDisplayName(java.lang.String displayName) { |
| 114 | + this.displayName = displayName; |
| 115 | + return this; |
| 116 | + } |
| 117 | + |
| 118 | + /** |
| 119 | + * Identifier. Name of the resource. |
| 120 | + * @return value or {@code null} for none |
| 121 | + */ |
| 122 | + public java.lang.String getName() { |
| 123 | + return name; |
| 124 | + } |
| 125 | + |
| 126 | + /** |
| 127 | + * Identifier. Name of the resource. |
| 128 | + * @param name name or {@code null} for none |
| 129 | + */ |
| 130 | + public GoogleCloudBeyondcorpSecuritygatewaysV1alphaApplication setName(java.lang.String name) { |
| 131 | + this.name = name; |
| 132 | + return this; |
| 133 | + } |
| 134 | + |
| 135 | + /** |
| 136 | + * Output only. Timestamp when the resource was last modified. |
| 137 | + * @return value or {@code null} for none |
| 138 | + */ |
| 139 | + public String getUpdateTime() { |
| 140 | + return updateTime; |
| 141 | + } |
| 142 | + |
| 143 | + /** |
| 144 | + * Output only. Timestamp when the resource was last modified. |
| 145 | + * @param updateTime updateTime or {@code null} for none |
| 146 | + */ |
| 147 | + public GoogleCloudBeyondcorpSecuritygatewaysV1alphaApplication setUpdateTime(String updateTime) { |
| 148 | + this.updateTime = updateTime; |
| 149 | + return this; |
| 150 | + } |
| 151 | + |
| 152 | + @Override |
| 153 | + public GoogleCloudBeyondcorpSecuritygatewaysV1alphaApplication set(String fieldName, Object value) { |
| 154 | + return (GoogleCloudBeyondcorpSecuritygatewaysV1alphaApplication) super.set(fieldName, value); |
| 155 | + } |
| 156 | + |
| 157 | + @Override |
| 158 | + public GoogleCloudBeyondcorpSecuritygatewaysV1alphaApplication clone() { |
| 159 | + return (GoogleCloudBeyondcorpSecuritygatewaysV1alphaApplication) super.clone(); |
| 160 | + } |
| 161 | + |
| 162 | +} |
0 commit comments