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

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

/**
 * A message to group the analysis information.
 *
 * 

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 Asset 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 MoveAnalysis extends com.google.api.client.json.GenericJson { /** * Analysis result of moving the target resource. * The value may be {@code null}. */ @com.google.api.client.util.Key private MoveAnalysisResult analysis; /** * The user friendly display name of the analysis. E.g. IAM, organization policy etc. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.String displayName; /** * Description of error encountered when performing the analysis. * The value may be {@code null}. */ @com.google.api.client.util.Key private Status error; /** * Analysis result of moving the target resource. * @return value or {@code null} for none */ public MoveAnalysisResult getAnalysis() { return analysis; } /** * Analysis result of moving the target resource. * @param analysis analysis or {@code null} for none */ public MoveAnalysis setAnalysis(MoveAnalysisResult analysis) { this.analysis = analysis; return this; } /** * The user friendly display name of the analysis. E.g. IAM, organization policy etc. * @return value or {@code null} for none */ public java.lang.String getDisplayName() { return displayName; } /** * The user friendly display name of the analysis. E.g. IAM, organization policy etc. * @param displayName displayName or {@code null} for none */ public MoveAnalysis setDisplayName(java.lang.String displayName) { this.displayName = displayName; return this; } /** * Description of error encountered when performing the analysis. * @return value or {@code null} for none */ public Status getError() { return error; } /** * Description of error encountered when performing the analysis. * @param error error or {@code null} for none */ public MoveAnalysis setError(Status error) { this.error = error; return this; } @Override public MoveAnalysis set(String fieldName, Object value) { return (MoveAnalysis) super.set(fieldName, value); } @Override public MoveAnalysis clone() { return (MoveAnalysis) super.clone(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy