All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.api.services.dns.model.ManagedZonePeeringConfigTargetNetwork Maven / Gradle / Ivy

There is a newer version: v2-rev20220505-1.32.1
Show newest version
/*
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
 * in compliance with the License. You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software distributed under the License
 * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
 * or implied. See the License for the specific language governing permissions and limitations under
 * the License.
 */
/*
 * This code was generated by https://github.com/googleapis/google-api-java-client-services/
 * Modify at your own risk.
 */

package com.google.api.services.dns.model;

/**
 * Model definition for ManagedZonePeeringConfigTargetNetwork.
 *
 * 

This is the Java data model class that specifies how to parse/serialize into the JSON that is * transmitted over HTTP when working with the Cloud DNS API. For a detailed explanation see: * https://developers.google.com/api-client-library/java/google-http-java-client/json *

* * @author Google, Inc. */ @SuppressWarnings("javadoc") public final class ManagedZonePeeringConfigTargetNetwork extends com.google.api.client.json.GenericJson { /** * The time at which the zone was deactivated, in RFC 3339 date-time format. An empty string * indicates that the peering connection is active. The producer network can deactivate a zone. * The zone is automatically deactivated if the producer network that the zone targeted is * deleted. Output only. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.String deactivateTime; /** * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.String kind; /** * The fully qualified URL of the VPC network to forward queries to. This should be formatted like * https://www.googleapis.com/compute/v1/projects/{project}/global/networks/{network} * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.String networkUrl; /** * The time at which the zone was deactivated, in RFC 3339 date-time format. An empty string * indicates that the peering connection is active. The producer network can deactivate a zone. * The zone is automatically deactivated if the producer network that the zone targeted is * deleted. Output only. * @return value or {@code null} for none */ public java.lang.String getDeactivateTime() { return deactivateTime; } /** * The time at which the zone was deactivated, in RFC 3339 date-time format. An empty string * indicates that the peering connection is active. The producer network can deactivate a zone. * The zone is automatically deactivated if the producer network that the zone targeted is * deleted. Output only. * @param deactivateTime deactivateTime or {@code null} for none */ public ManagedZonePeeringConfigTargetNetwork setDeactivateTime(java.lang.String deactivateTime) { this.deactivateTime = deactivateTime; return this; } /** * @return value or {@code null} for none */ public java.lang.String getKind() { return kind; } /** * @param kind kind or {@code null} for none */ public ManagedZonePeeringConfigTargetNetwork setKind(java.lang.String kind) { this.kind = kind; return this; } /** * The fully qualified URL of the VPC network to forward queries to. This should be formatted like * https://www.googleapis.com/compute/v1/projects/{project}/global/networks/{network} * @return value or {@code null} for none */ public java.lang.String getNetworkUrl() { return networkUrl; } /** * The fully qualified URL of the VPC network to forward queries to. This should be formatted like * https://www.googleapis.com/compute/v1/projects/{project}/global/networks/{network} * @param networkUrl networkUrl or {@code null} for none */ public ManagedZonePeeringConfigTargetNetwork setNetworkUrl(java.lang.String networkUrl) { this.networkUrl = networkUrl; return this; } @Override public ManagedZonePeeringConfigTargetNetwork set(String fieldName, Object value) { return (ManagedZonePeeringConfigTargetNetwork) super.set(fieldName, value); } @Override public ManagedZonePeeringConfigTargetNetwork clone() { return (ManagedZonePeeringConfigTargetNetwork) super.clone(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy