You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: sdk/storage/storage-blob-changefeed/src/BlobChangeFeedClient.ts
+12-12Lines changed: 12 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -49,9 +49,9 @@ export class BlobChangeFeedEventPage {
49
49
* Creates a new Pipeline object with Credential provided.
50
50
*
51
51
* @export
52
-
* @param{StorageSharedKeyCredential | AnonymousCredential | TokenCredential} credential Such as AnonymousCredential, StorageSharedKeyCredential or any credential from the @azure/identity package to authenticate requests to the service. You can also provide an object that implements the TokenCredential interface. If not specified, AnonymousCredential is used.
* @param credential - Such as AnonymousCredential, StorageSharedKeyCredential or any credential from the @azure/identity package to authenticate requests to the service. You can also provide an object that implements the TokenCredential interface. If not specified, AnonymousCredential is used.
* @param{StoragePipelineOptions} [options] Optional. Options to configure the HTTP pipeline.
108
+
* @param options - Optional. Options to configure the HTTP pipeline.
109
109
* @memberof BlobChangeFeedClient
110
110
*/
111
111
publicstaticfromConnectionString(
@@ -123,11 +123,11 @@ export class BlobChangeFeedClient {
123
123
/**
124
124
* Creates an instance of BlobChangeFeedClient.
125
125
*
126
-
* @param{string} url A Client string pointing to Azure Storage blob service, such as
126
+
* @param url - A Client string pointing to Azure Storage blob service, such as
127
127
* "https://myaccount.blob.core.windows.net". You can append a SAS
128
128
* if using AnonymousCredential, such as "https://myaccount.blob.core.windows.net?sasString".
129
-
* @param{StorageSharedKeyCredential | AnonymousCredential | TokenCredential} credential Such as AnonymousCredential, StorageSharedKeyCredential or any credential from the @azure/identity package to authenticate requests to the service. You can also provide an object that implements the TokenCredential interface. If not specified, AnonymousCredential is used.
130
-
* @param{StoragePipelineOptions} [options] Optional. Options to configure the HTTP pipeline.
129
+
* @param credential - Such as AnonymousCredential, StorageSharedKeyCredential or any credential from the @azure/identity package to authenticate requests to the service. You can also provide an object that implements the TokenCredential interface. If not specified, AnonymousCredential is used.
130
+
* @param options - Optional. Options to configure the HTTP pipeline.
131
131
* @memberof BlobChangeFeedClient
132
132
*
133
133
* Example using DefaultAzureCredential from `@azure/identity`:
@@ -164,10 +164,10 @@ export class BlobChangeFeedClient {
164
164
/**
165
165
* Creates an instance of BlobChangeFeedClient.
166
166
*
167
-
* @param{string} url A Client string pointing to Azure Storage blob service, such as
167
+
* @param url - A Client string pointing to Azure Storage blob service, such as
168
168
* "https://myaccount.blob.core.windows.net". You can append a SAS
169
169
* if using AnonymousCredential, such as "https://myaccount.blob.core.windows.net?sasString".
170
-
* @param{Pipeline} pipeline Call newPipeline() to create a default
170
+
* @param pipeline - Call newPipeline() to create a default
171
171
* pipeline, or provide a customized pipeline.
172
172
* @memberof BlobChangeFeedClient
173
173
*/
@@ -322,8 +322,8 @@ export class BlobChangeFeedClient {
322
322
* }
323
323
* ```
324
324
*
325
-
* @param{BlobChangeFeedListChangesOptions} [options={}] Options to list change feed events.
326
-
* @returns{PagedAsyncIterableIterator<BlobChangeFeedEvent, BlobChangeFeedEventPage>} An asyncIterableIterator that supports paging.
325
+
* @param options - Options to list change feed events.
326
+
* @returns An asyncIterableIterator that supports paging.
Copy file name to clipboardExpand all lines: sdk/storage/storage-blob/src/BlobBatch.ts
+17-17Lines changed: 17 additions & 17 deletions
Original file line number
Diff line number
Diff line change
@@ -131,10 +131,10 @@ export class BlobBatch {
131
131
* The operation will be authenticated and authorized with specified credential.
132
132
* See [blob batch authorization details](https://docs.microsoft.com/en-us/rest/api/storageservices/blob-batch#authorization).
133
133
*
134
-
* @param{string} url The url of the blob resource to delete.
135
-
* @param{StorageSharedKeyCredential | AnonymousCredential | TokenCredential} credential Such as AnonymousCredential, StorageSharedKeyCredential or any credential from the @azure/identity package to authenticate requests to the service. You can also provide an object that implements the TokenCredential interface. If not specified, AnonymousCredential is used.
136
-
* @param{BlobDeleteOptions} [options]
137
-
*@returns {Promise<void>}
134
+
* @param url - The url of the blob resource to delete.
135
+
* @param credential - Such as AnonymousCredential, StorageSharedKeyCredential or any credential from the @azure/identity package to authenticate requests to the service. You can also provide an object that implements the TokenCredential interface. If not specified, AnonymousCredential is used.
136
+
* @param options -
137
+
*
138
138
* @memberof BlobBatch
139
139
*/
140
140
publicasyncdeleteBlob(
@@ -153,9 +153,9 @@ export class BlobBatch {
153
153
* The operation will be authenticated and authorized with specified credential.
154
154
* See [blob batch authorization details](https://docs.microsoft.com/en-us/rest/api/storageservices/blob-batch#authorization).
* The operation will be authenticated and authorized
240
240
* with specified credential. See [blob batch authorization details](https://docs.microsoft.com/en-us/rest/api/storageservices/blob-batch#authorization).
241
241
*
242
-
* @param{string} url The url of the blob resource to delete.
243
-
* @param{StorageSharedKeyCredential | AnonymousCredential | TokenCredential} credential Such as AnonymousCredential, StorageSharedKeyCredential or any credential from the @azure/identity package to authenticate requests to the service. You can also provide an object that implements the TokenCredential interface. If not specified, AnonymousCredential is used.
244
-
* @param{AccessTier} tier
245
-
* @param{BlobSetTierOptions} [options]
246
-
*@returns {Promise<void>}
242
+
* @param url - The url of the blob resource to delete.
243
+
* @param credential - Such as AnonymousCredential, StorageSharedKeyCredential or any credential from the @azure/identity package to authenticate requests to the service. You can also provide an object that implements the TokenCredential interface. If not specified, AnonymousCredential is used.
244
+
* @param tier -
245
+
* @param options -
246
+
*
247
247
* @memberof BlobBatch
248
248
*/
249
249
publicasyncsetBlobAccessTier(
@@ -265,10 +265,10 @@ export class BlobBatch {
265
265
* The operation will be authenticated and authorized
266
266
* with specified credential. See [blob batch authorization details](https://docs.microsoft.com/en-us/rest/api/storageservices/blob-batch#authorization).
267
267
*
268
-
* @param{BlobClient} blobClient The BlobClient.
269
-
* @param{AccessTier} tier
270
-
* @param{BlobSetTierOptions} [options]
271
-
*@returns {Promise<void>}
268
+
* @param blobClient - The BlobClient.
269
+
* @param tier -
270
+
* @param options -
271
+
*
272
272
* @memberof BlobBatch
273
273
*/
274
274
publicasyncsetBlobAccessTier(
@@ -392,7 +392,7 @@ class InnerBatchRequest {
392
392
* credential and serialization/deserialization components, with additional policies to
393
393
* filter unnecessary headers, assemble sub requests into request's body
394
394
* and intercept request from going to wire.
395
-
* @param{StorageSharedKeyCredential | AnonymousCredential | TokenCredential} credential Such as AnonymousCredential, StorageSharedKeyCredential or any credential from the @azure/identity package to authenticate requests to the service. You can also provide an object that implements the TokenCredential interface. If not specified, AnonymousCredential is used.
395
+
* @param credential - Such as AnonymousCredential, StorageSharedKeyCredential or any credential from the @azure/identity package to authenticate requests to the service. You can also provide an object that implements the TokenCredential interface. If not specified, AnonymousCredential is used.
Copy file name to clipboardExpand all lines: sdk/storage/storage-blob/src/BlobBatchClient.ts
+24-24Lines changed: 24 additions & 24 deletions
Original file line number
Diff line number
Diff line change
@@ -80,11 +80,11 @@ export class BlobBatchClient {
80
80
/**
81
81
* Creates an instance of BlobBatchClient.
82
82
*
83
-
* @param{string} url A url pointing to Azure Storage blob service, such as
83
+
* @param url - A url pointing to Azure Storage blob service, such as
84
84
* "https://myaccount.blob.core.windows.net". You can append a SAS
85
85
* if using AnonymousCredential, such as "https://myaccount.blob.core.windows.net?sasString".
86
-
* @param{StorageSharedKeyCredential | AnonymousCredential | TokenCredential} credential Such as AnonymousCredential, StorageSharedKeyCredential or any credential from the @azure/identity package to authenticate requests to the service. You can also provide an object that implements the TokenCredential interface. If not specified, AnonymousCredential is used.
87
-
* @param{StoragePipelineOptions} [options] Options to configure the HTTP pipeline.
86
+
* @param credential - Such as AnonymousCredential, StorageSharedKeyCredential or any credential from the @azure/identity package to authenticate requests to the service. You can also provide an object that implements the TokenCredential interface. If not specified, AnonymousCredential is used.
87
+
* @param options - Options to configure the HTTP pipeline.
88
88
* @memberof BlobBatchClient
89
89
*/
90
90
constructor(
@@ -95,10 +95,10 @@ export class BlobBatchClient {
95
95
/**
96
96
* Creates an instance of BlobBatchClient.
97
97
*
98
-
* @param{string} url A url pointing to Azure Storage blob service, such as
98
+
* @param url - A url pointing to Azure Storage blob service, such as
99
99
* "https://myaccount.blob.core.windows.net". You can append a SAS
100
100
* if using AnonymousCredential, such as "https://myaccount.blob.core.windows.net?sasString".
101
-
* @param{Pipeline} pipeline Call newPipeline() to create a default
101
+
* @param pipeline - Call newPipeline() to create a default
102
102
* pipeline, or provide a customized pipeline.
103
103
* @memberof BlobBatchClient
104
104
*/
@@ -148,10 +148,10 @@ export class BlobBatchClient {
148
148
* The operations will be authenticated and authorized with specified credential.
149
149
* See [blob batch authorization details](https://docs.microsoft.com/en-us/rest/api/storageservices/blob-batch#authorization).
150
150
*
151
-
* @param{string[]} urls The urls of the blob resources to delete.
152
-
* @param{StorageSharedKeyCredential | AnonymousCredential | TokenCredential} credential Such as AnonymousCredential, StorageSharedKeyCredential or any credential from the @azure/identity package to authenticate requests to the service. You can also provide an object that implements the TokenCredential interface. If not specified, AnonymousCredential is used.
153
-
* @param{BlobDeleteOptions} [options]
154
-
*@returns {Promise<BlobBatchDeleteBlobsResponse>}
151
+
* @param urls - The urls of the blob resources to delete.
152
+
* @param credential - Such as AnonymousCredential, StorageSharedKeyCredential or any credential from the @azure/identity package to authenticate requests to the service. You can also provide an object that implements the TokenCredential interface. If not specified, AnonymousCredential is used.
153
+
* @param options -
154
+
*
155
155
* @memberof BlobBatchClient
156
156
*/
157
157
publicasyncdeleteBlobs(
@@ -167,9 +167,9 @@ export class BlobBatchClient {
167
167
* The operation(subrequest) will be authenticated and authorized with specified credential.
168
168
* See [blob batch authorization details](https://docs.microsoft.com/en-us/rest/api/storageservices/blob-batch#authorization).
169
169
*
170
-
* @param{BlobClient[]} blobClients The BlobClients for the blobs to delete.
171
-
* @param{BlobDeleteOptions} [options]
172
-
*@returns {Promise<BlobBatchDeleteBlobsResponse>}
170
+
* @param blobClients - The BlobClients for the blobs to delete.
171
+
* @param options -
172
+
*
173
173
* @memberof BlobBatchClient
174
174
*/
175
175
publicasyncdeleteBlobs(
@@ -209,11 +209,11 @@ export class BlobBatchClient {
209
209
* The operation(subrequest) will be authenticated and authorized
210
210
* with specified credential.See [blob batch authorization details](https://docs.microsoft.com/en-us/rest/api/storageservices/blob-batch#authorization).
211
211
*
212
-
* @param{string[]} urls The urls of the blob resource to delete.
213
-
* @param{StorageSharedKeyCredential | AnonymousCredential | TokenCredential} credential Such as AnonymousCredential, StorageSharedKeyCredential or any credential from the @azure/identity package to authenticate requests to the service. You can also provide an object that implements the TokenCredential interface. If not specified, AnonymousCredential is used.
* @param urls - The urls of the blob resource to delete.
213
+
* @param credential - Such as AnonymousCredential, StorageSharedKeyCredential or any credential from the @azure/identity package to authenticate requests to the service. You can also provide an object that implements the TokenCredential interface. If not specified, AnonymousCredential is used.
214
+
* @param tier -
215
+
* @param options -
216
+
*
217
217
* @memberof BlobBatchClient
218
218
*/
219
219
publicasyncsetBlobsAccessTier(
@@ -234,10 +234,10 @@ export class BlobBatchClient {
234
234
* The operation(subrequest) will be authenticated and authorized
235
235
* with specified credential.See [blob batch authorization details](https://docs.microsoft.com/en-us/rest/api/storageservices/blob-batch#authorization).
236
236
*
237
-
* @param{BlobClient[]} blobClients The BlobClients for the blobs which should have a new tier set.
0 commit comments