/* * 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.datasync.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.protocol.StructuredPojo; import com.amazonaws.protocol.ProtocolMarshaller; /** *

* The shared access signature (SAS) configuration that allows DataSync to access your Microsoft Azure Blob Storage. *

*

* For more information, see SAS * tokens for accessing your Azure Blob Storage. *

* * @see AWS * API Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class AzureBlobSasConfiguration implements Serializable, Cloneable, StructuredPojo { /** *

* Specifies a SAS token that provides permissions at the Azure storage account, container, or folder level. *

*

* The token is part of the SAS URI string that comes after the storage resource URI and a question mark. A token * looks something like this: *

*

* sp=r&st=2023-12-20T14:54:52Z&se=2023-12-20T22:54:52Z&spr=https&sv=2021-06-08&sr=c&sig=aBBKDWQvyuVcTPH9EBp%2FXTI9E%2F%2Fmq171%2BZU178wcwqU%3D *

*/ private String token; /** *

* Specifies a SAS token that provides permissions at the Azure storage account, container, or folder level. *

*

* The token is part of the SAS URI string that comes after the storage resource URI and a question mark. A token * looks something like this: *

*

* sp=r&st=2023-12-20T14:54:52Z&se=2023-12-20T22:54:52Z&spr=https&sv=2021-06-08&sr=c&sig=aBBKDWQvyuVcTPH9EBp%2FXTI9E%2F%2Fmq171%2BZU178wcwqU%3D *

* * @param token * Specifies a SAS token that provides permissions at the Azure storage account, container, or folder * level.

*

* The token is part of the SAS URI string that comes after the storage resource URI and a question mark. A * token looks something like this: *

*

* sp=r&st=2023-12-20T14:54:52Z&se=2023-12-20T22:54:52Z&spr=https&sv=2021-06-08&sr=c&sig=aBBKDWQvyuVcTPH9EBp%2FXTI9E%2F%2Fmq171%2BZU178wcwqU%3D */ public void setToken(String token) { this.token = token; } /** *

* Specifies a SAS token that provides permissions at the Azure storage account, container, or folder level. *

*

* The token is part of the SAS URI string that comes after the storage resource URI and a question mark. A token * looks something like this: *

*

* sp=r&st=2023-12-20T14:54:52Z&se=2023-12-20T22:54:52Z&spr=https&sv=2021-06-08&sr=c&sig=aBBKDWQvyuVcTPH9EBp%2FXTI9E%2F%2Fmq171%2BZU178wcwqU%3D *

* * @return Specifies a SAS token that provides permissions at the Azure storage account, container, or folder * level.

*

* The token is part of the SAS URI string that comes after the storage resource URI and a question mark. A * token looks something like this: *

*

* sp=r&st=2023-12-20T14:54:52Z&se=2023-12-20T22:54:52Z&spr=https&sv=2021-06-08&sr=c&sig=aBBKDWQvyuVcTPH9EBp%2FXTI9E%2F%2Fmq171%2BZU178wcwqU%3D */ public String getToken() { return this.token; } /** *

* Specifies a SAS token that provides permissions at the Azure storage account, container, or folder level. *

*

* The token is part of the SAS URI string that comes after the storage resource URI and a question mark. A token * looks something like this: *

*

* sp=r&st=2023-12-20T14:54:52Z&se=2023-12-20T22:54:52Z&spr=https&sv=2021-06-08&sr=c&sig=aBBKDWQvyuVcTPH9EBp%2FXTI9E%2F%2Fmq171%2BZU178wcwqU%3D *

* * @param token * Specifies a SAS token that provides permissions at the Azure storage account, container, or folder * level.

*

* The token is part of the SAS URI string that comes after the storage resource URI and a question mark. A * token looks something like this: *

*

* sp=r&st=2023-12-20T14:54:52Z&se=2023-12-20T22:54:52Z&spr=https&sv=2021-06-08&sr=c&sig=aBBKDWQvyuVcTPH9EBp%2FXTI9E%2F%2Fmq171%2BZU178wcwqU%3D * @return Returns a reference to this object so that method calls can be chained together. */ public AzureBlobSasConfiguration withToken(String token) { setToken(token); 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 (getToken() != null) sb.append("Token: ").append("***Sensitive Data Redacted***"); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof AzureBlobSasConfiguration == false) return false; AzureBlobSasConfiguration other = (AzureBlobSasConfiguration) obj; if (other.getToken() == null ^ this.getToken() == null) return false; if (other.getToken() != null && other.getToken().equals(this.getToken()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getToken() == null) ? 0 : getToken().hashCode()); return hashCode; } @Override public AzureBlobSasConfiguration clone() { try { return (AzureBlobSasConfiguration) 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.datasync.model.transform.AzureBlobSasConfigurationMarshaller.getInstance().marshall(this, protocolMarshaller); } }