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

com.google.api.services.batch.v1.model.AgentEnvironment 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.batch.v1.model;

/**
 * AgentEnvironment is the Environment representation between Agent and CLH communication. The
 * environment is used in both task level and agent level.
 *
 * 

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 Batch 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 AgentEnvironment extends com.google.api.client.json.GenericJson { /** * An encrypted JSON dictionary where the key/value pairs correspond to environment variable names * and their values. * The value may be {@code null}. */ @com.google.api.client.util.Key private AgentKMSEnvMap encryptedVariables; /** * A map of environment variable names to Secret Manager secret names. The VM will access the * named secrets to set the value of each environment variable. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.util.Map secretVariables; /** * A map of environment variable names to values. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.util.Map variables; /** * An encrypted JSON dictionary where the key/value pairs correspond to environment variable names * and their values. * @return value or {@code null} for none */ public AgentKMSEnvMap getEncryptedVariables() { return encryptedVariables; } /** * An encrypted JSON dictionary where the key/value pairs correspond to environment variable names * and their values. * @param encryptedVariables encryptedVariables or {@code null} for none */ public AgentEnvironment setEncryptedVariables(AgentKMSEnvMap encryptedVariables) { this.encryptedVariables = encryptedVariables; return this; } /** * A map of environment variable names to Secret Manager secret names. The VM will access the * named secrets to set the value of each environment variable. * @return value or {@code null} for none */ public java.util.Map getSecretVariables() { return secretVariables; } /** * A map of environment variable names to Secret Manager secret names. The VM will access the * named secrets to set the value of each environment variable. * @param secretVariables secretVariables or {@code null} for none */ public AgentEnvironment setSecretVariables(java.util.Map secretVariables) { this.secretVariables = secretVariables; return this; } /** * A map of environment variable names to values. * @return value or {@code null} for none */ public java.util.Map getVariables() { return variables; } /** * A map of environment variable names to values. * @param variables variables or {@code null} for none */ public AgentEnvironment setVariables(java.util.Map variables) { this.variables = variables; return this; } @Override public AgentEnvironment set(String fieldName, Object value) { return (AgentEnvironment) super.set(fieldName, value); } @Override public AgentEnvironment clone() { return (AgentEnvironment) super.clone(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy