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

com.google.api.services.migrationcenter.v1.model.ReportConfig Maven / Gradle / Ivy

There is a newer version: v1-rev20241014-2.0.0
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.migrationcenter.v1.model;

/**
 * The groups and associated preference sets on which we can generate reports.
 *
 * 

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 Migration Center 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 ReportConfig extends com.google.api.client.json.GenericJson { /** * Output only. The timestamp when the resource was created. * The value may be {@code null}. */ @com.google.api.client.util.Key private String createTime; /** * Free-text description. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.String description; /** * User-friendly display name. Maximum length is 63 characters. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.String displayName; /** * Required. Collection of combinations of groups and preference sets. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.util.List groupPreferencesetAssignments; /** * Output only. Name of resource. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.String name; /** * Output only. The timestamp when the resource was last updated. * The value may be {@code null}. */ @com.google.api.client.util.Key private String updateTime; /** * Output only. The timestamp when the resource was created. * @return value or {@code null} for none */ public String getCreateTime() { return createTime; } /** * Output only. The timestamp when the resource was created. * @param createTime createTime or {@code null} for none */ public ReportConfig setCreateTime(String createTime) { this.createTime = createTime; return this; } /** * Free-text description. * @return value or {@code null} for none */ public java.lang.String getDescription() { return description; } /** * Free-text description. * @param description description or {@code null} for none */ public ReportConfig setDescription(java.lang.String description) { this.description = description; return this; } /** * User-friendly display name. Maximum length is 63 characters. * @return value or {@code null} for none */ public java.lang.String getDisplayName() { return displayName; } /** * User-friendly display name. Maximum length is 63 characters. * @param displayName displayName or {@code null} for none */ public ReportConfig setDisplayName(java.lang.String displayName) { this.displayName = displayName; return this; } /** * Required. Collection of combinations of groups and preference sets. * @return value or {@code null} for none */ public java.util.List getGroupPreferencesetAssignments() { return groupPreferencesetAssignments; } /** * Required. Collection of combinations of groups and preference sets. * @param groupPreferencesetAssignments groupPreferencesetAssignments or {@code null} for none */ public ReportConfig setGroupPreferencesetAssignments(java.util.List groupPreferencesetAssignments) { this.groupPreferencesetAssignments = groupPreferencesetAssignments; return this; } /** * Output only. Name of resource. * @return value or {@code null} for none */ public java.lang.String getName() { return name; } /** * Output only. Name of resource. * @param name name or {@code null} for none */ public ReportConfig setName(java.lang.String name) { this.name = name; return this; } /** * Output only. The timestamp when the resource was last updated. * @return value or {@code null} for none */ public String getUpdateTime() { return updateTime; } /** * Output only. The timestamp when the resource was last updated. * @param updateTime updateTime or {@code null} for none */ public ReportConfig setUpdateTime(String updateTime) { this.updateTime = updateTime; return this; } @Override public ReportConfig set(String fieldName, Object value) { return (ReportConfig) super.set(fieldName, value); } @Override public ReportConfig clone() { return (ReportConfig) super.clone(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy