Copyright (c) Microsoft Corporation. All rights reserved.
Licensed under the MIT License. See License.txt in the project root for
license information.
Code generated by Microsoft (R) AutoRest Code Generator.
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
*/
package com.microsoft.azure.management.storage;
import com.fasterxml.jackson.annotation.JsonProperty;
The URIs that are used to perform a retrieval of a public blob, queue,
table, web or dfs object via a microsoft routing endpoint.
/**
* The URIs that are used to perform a retrieval of a public blob, queue,
* table, web or dfs object via a microsoft routing endpoint.
*/
public class StorageAccountMicrosoftEndpoints {
Gets the blob endpoint.
/**
* Gets the blob endpoint.
*/
@JsonProperty(value = "blob", access = JsonProperty.Access.WRITE_ONLY)
private String blob;
Gets the queue endpoint.
/**
* Gets the queue endpoint.
*/
@JsonProperty(value = "queue", access = JsonProperty.Access.WRITE_ONLY)
private String queue;
Gets the table endpoint.
/**
* Gets the table endpoint.
*/
@JsonProperty(value = "table", access = JsonProperty.Access.WRITE_ONLY)
private String table;
Gets the file endpoint.
/**
* Gets the file endpoint.
*/
@JsonProperty(value = "file", access = JsonProperty.Access.WRITE_ONLY)
private String file;
Gets the web endpoint.
/**
* Gets the web endpoint.
*/
@JsonProperty(value = "web", access = JsonProperty.Access.WRITE_ONLY)
private String web;
Gets the dfs endpoint.
/**
* Gets the dfs endpoint.
*/
@JsonProperty(value = "dfs", access = JsonProperty.Access.WRITE_ONLY)
private String dfs;
Get gets the blob endpoint.
Returns: the blob value
/**
* Get gets the blob endpoint.
*
* @return the blob value
*/
public String blob() {
return this.blob;
}
Get gets the queue endpoint.
Returns: the queue value
/**
* Get gets the queue endpoint.
*
* @return the queue value
*/
public String queue() {
return this.queue;
}
Get gets the table endpoint.
Returns: the table value
/**
* Get gets the table endpoint.
*
* @return the table value
*/
public String table() {
return this.table;
}
Get gets the file endpoint.
Returns: the file value
/**
* Get gets the file endpoint.
*
* @return the file value
*/
public String file() {
return this.file;
}
Get gets the web endpoint.
Returns: the web value
/**
* Get gets the web endpoint.
*
* @return the web value
*/
public String web() {
return this.web;
}
Get gets the dfs endpoint.
Returns: the dfs value
/**
* Get gets the dfs endpoint.
*
* @return the dfs value
*/
public String dfs() {
return this.dfs;
}
}