/* * 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.sagemaker.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.protocol.StructuredPojo; import com.amazonaws.protocol.ProtocolMarshaller; /** *
* A collection of settings that update the current configuration for the RStudioServerPro
Domain-level
* app.
*
* The execution role for the RStudioServerPro
Domain-level app.
*
* A URL pointing to an RStudio Connect server. *
*/ private String rStudioConnectUrl; /** ** A URL pointing to an RStudio Package Manager server. *
*/ private String rStudioPackageManagerUrl; /** *
* The execution role for the RStudioServerPro
Domain-level app.
*
RStudioServerPro
Domain-level app.
*/
public void setDomainExecutionRoleArn(String domainExecutionRoleArn) {
this.domainExecutionRoleArn = domainExecutionRoleArn;
}
/**
*
* The execution role for the RStudioServerPro
Domain-level app.
*
RStudioServerPro
Domain-level app.
*/
public String getDomainExecutionRoleArn() {
return this.domainExecutionRoleArn;
}
/**
*
* The execution role for the RStudioServerPro
Domain-level app.
*
RStudioServerPro
Domain-level app.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public RStudioServerProDomainSettingsForUpdate withDomainExecutionRoleArn(String domainExecutionRoleArn) {
setDomainExecutionRoleArn(domainExecutionRoleArn);
return this;
}
/**
* @param defaultResourceSpec
*/
public void setDefaultResourceSpec(ResourceSpec defaultResourceSpec) {
this.defaultResourceSpec = defaultResourceSpec;
}
/**
* @return
*/
public ResourceSpec getDefaultResourceSpec() {
return this.defaultResourceSpec;
}
/**
* @param defaultResourceSpec
* @return Returns a reference to this object so that method calls can be chained together.
*/
public RStudioServerProDomainSettingsForUpdate withDefaultResourceSpec(ResourceSpec defaultResourceSpec) {
setDefaultResourceSpec(defaultResourceSpec);
return this;
}
/**
* * A URL pointing to an RStudio Connect server. *
* * @param rStudioConnectUrl * A URL pointing to an RStudio Connect server. */ public void setRStudioConnectUrl(String rStudioConnectUrl) { this.rStudioConnectUrl = rStudioConnectUrl; } /** ** A URL pointing to an RStudio Connect server. *
* * @return A URL pointing to an RStudio Connect server. */ public String getRStudioConnectUrl() { return this.rStudioConnectUrl; } /** ** A URL pointing to an RStudio Connect server. *
* * @param rStudioConnectUrl * A URL pointing to an RStudio Connect server. * @return Returns a reference to this object so that method calls can be chained together. */ public RStudioServerProDomainSettingsForUpdate withRStudioConnectUrl(String rStudioConnectUrl) { setRStudioConnectUrl(rStudioConnectUrl); return this; } /** ** A URL pointing to an RStudio Package Manager server. *
* * @param rStudioPackageManagerUrl * A URL pointing to an RStudio Package Manager server. */ public void setRStudioPackageManagerUrl(String rStudioPackageManagerUrl) { this.rStudioPackageManagerUrl = rStudioPackageManagerUrl; } /** ** A URL pointing to an RStudio Package Manager server. *
* * @return A URL pointing to an RStudio Package Manager server. */ public String getRStudioPackageManagerUrl() { return this.rStudioPackageManagerUrl; } /** ** A URL pointing to an RStudio Package Manager server. *
* * @param rStudioPackageManagerUrl * A URL pointing to an RStudio Package Manager server. * @return Returns a reference to this object so that method calls can be chained together. */ public RStudioServerProDomainSettingsForUpdate withRStudioPackageManagerUrl(String rStudioPackageManagerUrl) { setRStudioPackageManagerUrl(rStudioPackageManagerUrl); 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 (getDomainExecutionRoleArn() != null) sb.append("DomainExecutionRoleArn: ").append(getDomainExecutionRoleArn()).append(","); if (getDefaultResourceSpec() != null) sb.append("DefaultResourceSpec: ").append(getDefaultResourceSpec()).append(","); if (getRStudioConnectUrl() != null) sb.append("RStudioConnectUrl: ").append(getRStudioConnectUrl()).append(","); if (getRStudioPackageManagerUrl() != null) sb.append("RStudioPackageManagerUrl: ").append(getRStudioPackageManagerUrl()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof RStudioServerProDomainSettingsForUpdate == false) return false; RStudioServerProDomainSettingsForUpdate other = (RStudioServerProDomainSettingsForUpdate) obj; if (other.getDomainExecutionRoleArn() == null ^ this.getDomainExecutionRoleArn() == null) return false; if (other.getDomainExecutionRoleArn() != null && other.getDomainExecutionRoleArn().equals(this.getDomainExecutionRoleArn()) == false) return false; if (other.getDefaultResourceSpec() == null ^ this.getDefaultResourceSpec() == null) return false; if (other.getDefaultResourceSpec() != null && other.getDefaultResourceSpec().equals(this.getDefaultResourceSpec()) == false) return false; if (other.getRStudioConnectUrl() == null ^ this.getRStudioConnectUrl() == null) return false; if (other.getRStudioConnectUrl() != null && other.getRStudioConnectUrl().equals(this.getRStudioConnectUrl()) == false) return false; if (other.getRStudioPackageManagerUrl() == null ^ this.getRStudioPackageManagerUrl() == null) return false; if (other.getRStudioPackageManagerUrl() != null && other.getRStudioPackageManagerUrl().equals(this.getRStudioPackageManagerUrl()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getDomainExecutionRoleArn() == null) ? 0 : getDomainExecutionRoleArn().hashCode()); hashCode = prime * hashCode + ((getDefaultResourceSpec() == null) ? 0 : getDefaultResourceSpec().hashCode()); hashCode = prime * hashCode + ((getRStudioConnectUrl() == null) ? 0 : getRStudioConnectUrl().hashCode()); hashCode = prime * hashCode + ((getRStudioPackageManagerUrl() == null) ? 0 : getRStudioPackageManagerUrl().hashCode()); return hashCode; } @Override public RStudioServerProDomainSettingsForUpdate clone() { try { return (RStudioServerProDomainSettingsForUpdate) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } @com.amazonaws.annotation.SdkInternalApi @Override public void marshall(ProtocolMarshaller protocolMarshaller) { com.amazonaws.services.sagemaker.model.transform.RStudioServerProDomainSettingsForUpdateMarshaller.getInstance().marshall(this, protocolMarshaller); } }