/* * Copyright 2018-2023 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with * the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file 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. */ package com.amazonaws.services.managedgrafana.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.AmazonWebServiceRequest; /** * * @see <a href="http://docs.aws.amazon.com/goto/WebAPI/grafana-2020-08-18/UpdateWorkspaceConfiguration" * target="_top">AWS API Documentation</a> */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class UpdateWorkspaceConfigurationRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable { /** * <p> * The new configuration string for the workspace. For more information about the format and configuration options * available, see <a * href="https://docs.aws.amazon.com/grafana/latest/userguide/AMG-configure-workspace.html">Working in your Grafana * workspace</a>. * </p> */ private String configuration; /** * <p> * Specifies the version of Grafana to support in the new workspace. * </p> * <p> * Can only be used to upgrade (for example, from 8.4 to 9.4), not downgrade (for example, from 9.4 to 8.4). * </p> * <p> * To know what versions are available to upgrade to for a specific workspace, see the <code>ListVersions</code> * operation. * </p> */ private String grafanaVersion; /** * <p> * The ID of the workspace to update. * </p> */ private String workspaceId; /** * <p> * The new configuration string for the workspace. For more information about the format and configuration options * available, see <a * href="https://docs.aws.amazon.com/grafana/latest/userguide/AMG-configure-workspace.html">Working in your Grafana * workspace</a>. * </p> * <p> * This field's value must be valid JSON according to RFC 7159, including the opening and closing braces. For * example: '{"key": "value"}'. * </p> * <p> * The AWS SDK for Java performs a Base64 encoding on this field before sending this request to the AWS service. * Users of the SDK should not perform Base64 encoding on this field. * </p> * * @param configuration * The new configuration string for the workspace. For more information about the format and configuration * options available, see <a * href="https://docs.aws.amazon.com/grafana/latest/userguide/AMG-configure-workspace.html">Working in your * Grafana workspace</a>. */ public void setConfiguration(String configuration) { this.configuration = configuration; } /** * <p> * The new configuration string for the workspace. For more information about the format and configuration options * available, see <a * href="https://docs.aws.amazon.com/grafana/latest/userguide/AMG-configure-workspace.html">Working in your Grafana * workspace</a>. * </p> * <p> * This field's value will be valid JSON according to RFC 7159, including the opening and closing braces. For * example: '{"key": "value"}'. * </p> * * @return The new configuration string for the workspace. For more information about the format and configuration * options available, see <a * href="https://docs.aws.amazon.com/grafana/latest/userguide/AMG-configure-workspace.html">Working in your * Grafana workspace</a>. */ public String getConfiguration() { return this.configuration; } /** * <p> * The new configuration string for the workspace. For more information about the format and configuration options * available, see <a * href="https://docs.aws.amazon.com/grafana/latest/userguide/AMG-configure-workspace.html">Working in your Grafana * workspace</a>. * </p> * <p> * This field's value must be valid JSON according to RFC 7159, including the opening and closing braces. For * example: '{"key": "value"}'. * </p> * <p> * The AWS SDK for Java performs a Base64 encoding on this field before sending this request to the AWS service. * Users of the SDK should not perform Base64 encoding on this field. * </p> * * @param configuration * The new configuration string for the workspace. For more information about the format and configuration * options available, see <a * href="https://docs.aws.amazon.com/grafana/latest/userguide/AMG-configure-workspace.html">Working in your * Grafana workspace</a>. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateWorkspaceConfigurationRequest withConfiguration(String configuration) { setConfiguration(configuration); return this; } /** * <p> * Specifies the version of Grafana to support in the new workspace. * </p> * <p> * Can only be used to upgrade (for example, from 8.4 to 9.4), not downgrade (for example, from 9.4 to 8.4). * </p> * <p> * To know what versions are available to upgrade to for a specific workspace, see the <code>ListVersions</code> * operation. * </p> * * @param grafanaVersion * Specifies the version of Grafana to support in the new workspace.</p> * <p> * Can only be used to upgrade (for example, from 8.4 to 9.4), not downgrade (for example, from 9.4 to 8.4). * </p> * <p> * To know what versions are available to upgrade to for a specific workspace, see the * <code>ListVersions</code> operation. */ public void setGrafanaVersion(String grafanaVersion) { this.grafanaVersion = grafanaVersion; } /** * <p> * Specifies the version of Grafana to support in the new workspace. * </p> * <p> * Can only be used to upgrade (for example, from 8.4 to 9.4), not downgrade (for example, from 9.4 to 8.4). * </p> * <p> * To know what versions are available to upgrade to for a specific workspace, see the <code>ListVersions</code> * operation. * </p> * * @return Specifies the version of Grafana to support in the new workspace.</p> * <p> * Can only be used to upgrade (for example, from 8.4 to 9.4), not downgrade (for example, from 9.4 to 8.4). * </p> * <p> * To know what versions are available to upgrade to for a specific workspace, see the * <code>ListVersions</code> operation. */ public String getGrafanaVersion() { return this.grafanaVersion; } /** * <p> * Specifies the version of Grafana to support in the new workspace. * </p> * <p> * Can only be used to upgrade (for example, from 8.4 to 9.4), not downgrade (for example, from 9.4 to 8.4). * </p> * <p> * To know what versions are available to upgrade to for a specific workspace, see the <code>ListVersions</code> * operation. * </p> * * @param grafanaVersion * Specifies the version of Grafana to support in the new workspace.</p> * <p> * Can only be used to upgrade (for example, from 8.4 to 9.4), not downgrade (for example, from 9.4 to 8.4). * </p> * <p> * To know what versions are available to upgrade to for a specific workspace, see the * <code>ListVersions</code> operation. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateWorkspaceConfigurationRequest withGrafanaVersion(String grafanaVersion) { setGrafanaVersion(grafanaVersion); return this; } /** * <p> * The ID of the workspace to update. * </p> * * @param workspaceId * The ID of the workspace to update. */ public void setWorkspaceId(String workspaceId) { this.workspaceId = workspaceId; } /** * <p> * The ID of the workspace to update. * </p> * * @return The ID of the workspace to update. */ public String getWorkspaceId() { return this.workspaceId; } /** * <p> * The ID of the workspace to update. * </p> * * @param workspaceId * The ID of the workspace to update. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateWorkspaceConfigurationRequest withWorkspaceId(String workspaceId) { setWorkspaceId(workspaceId); return this; } /** * Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be * redacted from this string using a placeholder value. * * @return A string representation of this object. * * @see java.lang.Object#toString() */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("{"); if (getConfiguration() != null) sb.append("Configuration: ").append(getConfiguration()).append(","); if (getGrafanaVersion() != null) sb.append("GrafanaVersion: ").append(getGrafanaVersion()).append(","); if (getWorkspaceId() != null) sb.append("WorkspaceId: ").append(getWorkspaceId()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof UpdateWorkspaceConfigurationRequest == false) return false; UpdateWorkspaceConfigurationRequest other = (UpdateWorkspaceConfigurationRequest) obj; if (other.getConfiguration() == null ^ this.getConfiguration() == null) return false; if (other.getConfiguration() != null && other.getConfiguration().equals(this.getConfiguration()) == false) return false; if (other.getGrafanaVersion() == null ^ this.getGrafanaVersion() == null) return false; if (other.getGrafanaVersion() != null && other.getGrafanaVersion().equals(this.getGrafanaVersion()) == false) return false; if (other.getWorkspaceId() == null ^ this.getWorkspaceId() == null) return false; if (other.getWorkspaceId() != null && other.getWorkspaceId().equals(this.getWorkspaceId()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getConfiguration() == null) ? 0 : getConfiguration().hashCode()); hashCode = prime * hashCode + ((getGrafanaVersion() == null) ? 0 : getGrafanaVersion().hashCode()); hashCode = prime * hashCode + ((getWorkspaceId() == null) ? 0 : getWorkspaceId().hashCode()); return hashCode; } @Override public UpdateWorkspaceConfigurationRequest clone() { return (UpdateWorkspaceConfigurationRequest) super.clone(); } }