|
| 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.workloadmanager.v1.model; |
| 18 | + |
| 19 | +/** |
| 20 | + * A replication site used in Disaster Recovery (DR) configurations. |
| 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 Workload Manager 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 SapDiscoveryComponentReplicationSite extends com.google.api.client.json.GenericJson { |
| 31 | + |
| 32 | + /** |
| 33 | + * Optional. The system component for the site. |
| 34 | + * The value may be {@code null}. |
| 35 | + */ |
| 36 | + @com.google.api.client.util.Key |
| 37 | + private SapDiscoveryComponent component; |
| 38 | + |
| 39 | + /** |
| 40 | + * Optional. The name of the source site from which this one replicates. |
| 41 | + * The value may be {@code null}. |
| 42 | + */ |
| 43 | + @com.google.api.client.util.Key |
| 44 | + private java.lang.String sourceSite; |
| 45 | + |
| 46 | + /** |
| 47 | + * Optional. The system component for the site. |
| 48 | + * @return value or {@code null} for none |
| 49 | + */ |
| 50 | + public SapDiscoveryComponent getComponent() { |
| 51 | + return component; |
| 52 | + } |
| 53 | + |
| 54 | + /** |
| 55 | + * Optional. The system component for the site. |
| 56 | + * @param component component or {@code null} for none |
| 57 | + */ |
| 58 | + public SapDiscoveryComponentReplicationSite setComponent(SapDiscoveryComponent component) { |
| 59 | + this.component = component; |
| 60 | + return this; |
| 61 | + } |
| 62 | + |
| 63 | + /** |
| 64 | + * Optional. The name of the source site from which this one replicates. |
| 65 | + * @return value or {@code null} for none |
| 66 | + */ |
| 67 | + public java.lang.String getSourceSite() { |
| 68 | + return sourceSite; |
| 69 | + } |
| 70 | + |
| 71 | + /** |
| 72 | + * Optional. The name of the source site from which this one replicates. |
| 73 | + * @param sourceSite sourceSite or {@code null} for none |
| 74 | + */ |
| 75 | + public SapDiscoveryComponentReplicationSite setSourceSite(java.lang.String sourceSite) { |
| 76 | + this.sourceSite = sourceSite; |
| 77 | + return this; |
| 78 | + } |
| 79 | + |
| 80 | + @Override |
| 81 | + public SapDiscoveryComponentReplicationSite set(String fieldName, Object value) { |
| 82 | + return (SapDiscoveryComponentReplicationSite) super.set(fieldName, value); |
| 83 | + } |
| 84 | + |
| 85 | + @Override |
| 86 | + public SapDiscoveryComponentReplicationSite clone() { |
| 87 | + return (SapDiscoveryComponentReplicationSite) super.clone(); |
| 88 | + } |
| 89 | + |
| 90 | +} |
0 commit comments