azure-docs-sdk-java/docs-ref-autogen/com.microsoft.azure.batch.p...

132 строки
12 KiB
YAML

### YamlMime:JavaType
uid: "com.microsoft.azure.batch.protocol.models.OutputFileBlobContainerDestination"
fullName: "com.microsoft.azure.batch.protocol.models.OutputFileBlobContainerDestination"
name: "OutputFileBlobContainerDestination"
nameWithType: "OutputFileBlobContainerDestination"
summary: "Specifies a file upload destination within an Azure blob storage container."
inheritances:
- "<xref href=\"java.lang.Object?displayProperty=fullName\" data-throw-if-not-resolved=\"False\" />"
inheritedClassMethods:
- classRef: "java.lang.<a href=\"https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html\">Object</a>"
methodsRef:
- "<a href=\"https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html#clone--\">clone</a>"
- "<a href=\"https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html#equals-java.lang.Object-\">equals</a>"
- "<a href=\"https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html#finalize--\">finalize</a>"
- "<a href=\"https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html#getClass--\">getClass</a>"
- "<a href=\"https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html#hashCode--\">hashCode</a>"
- "<a href=\"https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html#notify--\">notify</a>"
- "<a href=\"https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html#notifyAll--\">notifyAll</a>"
- "<a href=\"https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html#toString--\">toString</a>"
- "<a href=\"https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html#wait--\">wait</a>"
- "<a href=\"https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html#wait-long-\">wait</a>"
- "<a href=\"https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html#wait-long-int-\">wait</a>"
syntax: "public class **OutputFileBlobContainerDestination**"
constructors:
- uid: "com.microsoft.azure.batch.protocol.models.OutputFileBlobContainerDestination.OutputFileBlobContainerDestination()"
fullName: "com.microsoft.azure.batch.protocol.models.OutputFileBlobContainerDestination.OutputFileBlobContainerDestination()"
name: "OutputFileBlobContainerDestination()"
nameWithType: "OutputFileBlobContainerDestination.OutputFileBlobContainerDestination()"
syntax: "public OutputFileBlobContainerDestination()"
methods:
- uid: "com.microsoft.azure.batch.protocol.models.OutputFileBlobContainerDestination.containerUrl()"
fullName: "com.microsoft.azure.batch.protocol.models.OutputFileBlobContainerDestination.containerUrl()"
name: "containerUrl()"
nameWithType: "OutputFileBlobContainerDestination.containerUrl()"
summary: "Get if not using a managed identity, the URL must include a Shared Access Signature (SAS) granting write permissions to the container."
syntax: "public String containerUrl()"
desc: "Get if not using a managed identity, the URL must include a Shared Access Signature (SAS) granting write permissions to the container."
returns:
description: "the containerUrl value"
type: "<a href=\"https://docs.oracle.com/javase/8/docs/api/java/lang/String.html\">String</a>"
- uid: "com.microsoft.azure.batch.protocol.models.OutputFileBlobContainerDestination.identityReference()"
fullName: "com.microsoft.azure.batch.protocol.models.OutputFileBlobContainerDestination.identityReference()"
name: "identityReference()"
nameWithType: "OutputFileBlobContainerDestination.identityReference()"
summary: "Get the identity must have write access to the Azure Blob Storage container."
syntax: "public ComputeNodeIdentityReference identityReference()"
desc: "Get the identity must have write access to the Azure Blob Storage container."
returns:
description: "the identityReference value"
type: "<xref href=\"com.microsoft.azure.batch.protocol.models.ComputeNodeIdentityReference?alt=com.microsoft.azure.batch.protocol.models.ComputeNodeIdentityReference&text=ComputeNodeIdentityReference\" data-throw-if-not-resolved=\"False\" />"
- uid: "com.microsoft.azure.batch.protocol.models.OutputFileBlobContainerDestination.path()"
fullName: "com.microsoft.azure.batch.protocol.models.OutputFileBlobContainerDestination.path()"
name: "path()"
nameWithType: "OutputFileBlobContainerDestination.path()"
summary: "Get if file<wbr>Pattern refers to a specific file (i.<wbr>e."
syntax: "public String path()"
desc: "Get if filePattern refers to a specific file (i.e. contains no wildcards), then path is the name of the blob to which to upload that file. If filePattern contains one or more wildcards (and therefore may match multiple files), then path is the name of the blob virtual directory (which is prepended to each blob name) to which to upload the file(s). If omitted, file(s) are uploaded to the root of the container with a blob name matching their file name."
returns:
description: "the path value"
type: "<a href=\"https://docs.oracle.com/javase/8/docs/api/java/lang/String.html\">String</a>"
- uid: "com.microsoft.azure.batch.protocol.models.OutputFileBlobContainerDestination.uploadHeaders()"
fullName: "com.microsoft.azure.batch.protocol.models.OutputFileBlobContainerDestination.uploadHeaders()"
name: "uploadHeaders()"
nameWithType: "OutputFileBlobContainerDestination.uploadHeaders()"
summary: "Get these headers will be specified when uploading files to Azure Storage."
syntax: "public List<HttpHeader> uploadHeaders()"
desc: "Get these headers will be specified when uploading files to Azure Storage. Official document on allowed headers when uploading blobs: https://docs.microsoft.com/rest/api/storageservices/put-blob\\#request-headers-all-blob-types."
returns:
description: "the uploadHeaders value"
type: "<a href=\"https://docs.oracle.com/javase/8/docs/api/java/util/List.html\">List</a>&lt;<xref href=\"com.microsoft.azure.batch.protocol.models.HttpHeader?alt=com.microsoft.azure.batch.protocol.models.HttpHeader&text=HttpHeader\" data-throw-if-not-resolved=\"False\" />&gt;"
- uid: "com.microsoft.azure.batch.protocol.models.OutputFileBlobContainerDestination.withContainerUrl(java.lang.String)"
fullName: "com.microsoft.azure.batch.protocol.models.OutputFileBlobContainerDestination.withContainerUrl(String containerUrl)"
name: "withContainerUrl(String containerUrl)"
nameWithType: "OutputFileBlobContainerDestination.withContainerUrl(String containerUrl)"
summary: "Set if not using a managed identity, the URL must include a Shared Access Signature (SAS) granting write permissions to the container."
parameters:
- description: "the containerUrl value to set"
name: "containerUrl"
type: "<a href=\"https://docs.oracle.com/javase/8/docs/api/java/lang/String.html\">String</a>"
syntax: "public OutputFileBlobContainerDestination withContainerUrl(String containerUrl)"
desc: "Set if not using a managed identity, the URL must include a Shared Access Signature (SAS) granting write permissions to the container."
returns:
description: "the OutputFileBlobContainerDestination object itself."
type: "<xref href=\"com.microsoft.azure.batch.protocol.models.OutputFileBlobContainerDestination?alt=com.microsoft.azure.batch.protocol.models.OutputFileBlobContainerDestination&text=OutputFileBlobContainerDestination\" data-throw-if-not-resolved=\"False\" />"
- uid: "com.microsoft.azure.batch.protocol.models.OutputFileBlobContainerDestination.withIdentityReference(com.microsoft.azure.batch.protocol.models.ComputeNodeIdentityReference)"
fullName: "com.microsoft.azure.batch.protocol.models.OutputFileBlobContainerDestination.withIdentityReference(ComputeNodeIdentityReference identityReference)"
name: "withIdentityReference(ComputeNodeIdentityReference identityReference)"
nameWithType: "OutputFileBlobContainerDestination.withIdentityReference(ComputeNodeIdentityReference identityReference)"
summary: "Set the identity must have write access to the Azure Blob Storage container."
parameters:
- description: "the identityReference value to set"
name: "identityReference"
type: "<xref href=\"com.microsoft.azure.batch.protocol.models.ComputeNodeIdentityReference?alt=com.microsoft.azure.batch.protocol.models.ComputeNodeIdentityReference&text=ComputeNodeIdentityReference\" data-throw-if-not-resolved=\"False\" />"
syntax: "public OutputFileBlobContainerDestination withIdentityReference(ComputeNodeIdentityReference identityReference)"
desc: "Set the identity must have write access to the Azure Blob Storage container."
returns:
description: "the OutputFileBlobContainerDestination object itself."
type: "<xref href=\"com.microsoft.azure.batch.protocol.models.OutputFileBlobContainerDestination?alt=com.microsoft.azure.batch.protocol.models.OutputFileBlobContainerDestination&text=OutputFileBlobContainerDestination\" data-throw-if-not-resolved=\"False\" />"
- uid: "com.microsoft.azure.batch.protocol.models.OutputFileBlobContainerDestination.withPath(java.lang.String)"
fullName: "com.microsoft.azure.batch.protocol.models.OutputFileBlobContainerDestination.withPath(String path)"
name: "withPath(String path)"
nameWithType: "OutputFileBlobContainerDestination.withPath(String path)"
summary: "Set if file<wbr>Pattern refers to a specific file (i.<wbr>e."
parameters:
- description: "the path value to set"
name: "path"
type: "<a href=\"https://docs.oracle.com/javase/8/docs/api/java/lang/String.html\">String</a>"
syntax: "public OutputFileBlobContainerDestination withPath(String path)"
desc: "Set if filePattern refers to a specific file (i.e. contains no wildcards), then path is the name of the blob to which to upload that file. If filePattern contains one or more wildcards (and therefore may match multiple files), then path is the name of the blob virtual directory (which is prepended to each blob name) to which to upload the file(s). If omitted, file(s) are uploaded to the root of the container with a blob name matching their file name."
returns:
description: "the OutputFileBlobContainerDestination object itself."
type: "<xref href=\"com.microsoft.azure.batch.protocol.models.OutputFileBlobContainerDestination?alt=com.microsoft.azure.batch.protocol.models.OutputFileBlobContainerDestination&text=OutputFileBlobContainerDestination\" data-throw-if-not-resolved=\"False\" />"
- uid: "com.microsoft.azure.batch.protocol.models.OutputFileBlobContainerDestination.withUploadHeaders(java.util.List<com.microsoft.azure.batch.protocol.models.HttpHeader>)"
fullName: "com.microsoft.azure.batch.protocol.models.OutputFileBlobContainerDestination.withUploadHeaders(List<HttpHeader> uploadHeaders)"
name: "withUploadHeaders(List<HttpHeader> uploadHeaders)"
nameWithType: "OutputFileBlobContainerDestination.withUploadHeaders(List<HttpHeader> uploadHeaders)"
summary: "Set these headers will be specified when uploading files to Azure Storage."
parameters:
- description: "the uploadHeaders value to set"
name: "uploadHeaders"
type: "<a href=\"https://docs.oracle.com/javase/8/docs/api/java/util/List.html\">List</a>&lt;<xref href=\"com.microsoft.azure.batch.protocol.models.HttpHeader?alt=com.microsoft.azure.batch.protocol.models.HttpHeader&text=HttpHeader\" data-throw-if-not-resolved=\"False\" />&gt;"
syntax: "public OutputFileBlobContainerDestination withUploadHeaders(List<HttpHeader> uploadHeaders)"
desc: "Set these headers will be specified when uploading files to Azure Storage. Official document on allowed headers when uploading blobs: https://docs.microsoft.com/rest/api/storageservices/put-blob\\#request-headers-all-blob-types."
returns:
description: "the OutputFileBlobContainerDestination object itself."
type: "<xref href=\"com.microsoft.azure.batch.protocol.models.OutputFileBlobContainerDestination?alt=com.microsoft.azure.batch.protocol.models.OutputFileBlobContainerDestination&text=OutputFileBlobContainerDestination\" data-throw-if-not-resolved=\"False\" />"
type: "class"
desc: "Specifies a file upload destination within an Azure blob storage container."
metadata: {}
package: "com.microsoft.azure.batch.protocol.models"
artifact: com.microsoft.azure:azure-batch:11.2.0