Sha256: a67407381a83b4b0e2f498e2d8e1ee8ff079445b7afba953a6c4997dcdc9832c
Contents?: true
Size: 1.93 KB
Versions: 16
Compression:
Stored size: 1.93 KB
Contents
//go:build go1.18 // +build go1.18 // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for license information. package container import ( "github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/internal/generated" ) // CreateResponse contains the response from method Client.Create. type CreateResponse = generated.ContainerClientCreateResponse // DeleteResponse contains the response from method Client.Delete. type DeleteResponse = generated.ContainerClientDeleteResponse // RestoreResponse contains the response from method Client.Restore. type RestoreResponse = generated.ContainerClientRestoreResponse // GetPropertiesResponse contains the response from method Client.GetProperties. type GetPropertiesResponse = generated.ContainerClientGetPropertiesResponse // ListBlobsFlatResponse contains the response from method Client.ListBlobFlatSegment. type ListBlobsFlatResponse = generated.ContainerClientListBlobFlatSegmentResponse // ListBlobsFlatSegmentResponse - An enumeration of blobs type ListBlobsFlatSegmentResponse = generated.ListBlobsFlatSegmentResponse // ListBlobsHierarchyResponse contains the response from method Client.ListBlobHierarchySegment. type ListBlobsHierarchyResponse = generated.ContainerClientListBlobHierarchySegmentResponse // ListBlobsHierarchySegmentResponse - An enumeration of blobs type ListBlobsHierarchySegmentResponse = generated.ListBlobsHierarchySegmentResponse // SetMetadataResponse contains the response from method Client.SetMetadata. type SetMetadataResponse = generated.ContainerClientSetMetadataResponse // GetAccessPolicyResponse contains the response from method Client.GetAccessPolicy. type GetAccessPolicyResponse = generated.ContainerClientGetAccessPolicyResponse // SetAccessPolicyResponse contains the response from method Client.SetAccessPolicy. type SetAccessPolicyResponse = generated.ContainerClientSetAccessPolicyResponse
Version data entries
16 entries across 16 versions & 1 rubygems