com.google.api.services.run.v1.model.OwnerReference Maven / Gradle / Ivy
/*
* 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.run.v1.model;
/**
* This is not supported or used by Cloud Run.
*
* 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 Run Admin 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 OwnerReference extends com.google.api.client.json.GenericJson {
/**
* This is not supported or used by Cloud Run.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String apiVersion;
/**
* This is not supported or used by Cloud Run.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.Boolean blockOwnerDeletion;
/**
* This is not supported or used by Cloud Run.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.Boolean controller;
/**
* This is not supported or used by Cloud Run.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String kind;
/**
* This is not supported or used by Cloud Run.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String name;
/**
* This is not supported or used by Cloud Run.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String uid;
/**
* This is not supported or used by Cloud Run.
* @return value or {@code null} for none
*/
public java.lang.String getApiVersion() {
return apiVersion;
}
/**
* This is not supported or used by Cloud Run.
* @param apiVersion apiVersion or {@code null} for none
*/
public OwnerReference setApiVersion(java.lang.String apiVersion) {
this.apiVersion = apiVersion;
return this;
}
/**
* This is not supported or used by Cloud Run.
* @return value or {@code null} for none
*/
public java.lang.Boolean getBlockOwnerDeletion() {
return blockOwnerDeletion;
}
/**
* This is not supported or used by Cloud Run.
* @param blockOwnerDeletion blockOwnerDeletion or {@code null} for none
*/
public OwnerReference setBlockOwnerDeletion(java.lang.Boolean blockOwnerDeletion) {
this.blockOwnerDeletion = blockOwnerDeletion;
return this;
}
/**
* This is not supported or used by Cloud Run.
* @return value or {@code null} for none
*/
public java.lang.Boolean getController() {
return controller;
}
/**
* This is not supported or used by Cloud Run.
* @param controller controller or {@code null} for none
*/
public OwnerReference setController(java.lang.Boolean controller) {
this.controller = controller;
return this;
}
/**
* This is not supported or used by Cloud Run.
* @return value or {@code null} for none
*/
public java.lang.String getKind() {
return kind;
}
/**
* This is not supported or used by Cloud Run.
* @param kind kind or {@code null} for none
*/
public OwnerReference setKind(java.lang.String kind) {
this.kind = kind;
return this;
}
/**
* This is not supported or used by Cloud Run.
* @return value or {@code null} for none
*/
public java.lang.String getName() {
return name;
}
/**
* This is not supported or used by Cloud Run.
* @param name name or {@code null} for none
*/
public OwnerReference setName(java.lang.String name) {
this.name = name;
return this;
}
/**
* This is not supported or used by Cloud Run.
* @return value or {@code null} for none
*/
public java.lang.String getUid() {
return uid;
}
/**
* This is not supported or used by Cloud Run.
* @param uid uid or {@code null} for none
*/
public OwnerReference setUid(java.lang.String uid) {
this.uid = uid;
return this;
}
@Override
public OwnerReference set(String fieldName, Object value) {
return (OwnerReference) super.set(fieldName, value);
}
@Override
public OwnerReference clone() {
return (OwnerReference) super.clone();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy