Skip to content

Commit 3a6480a

Browse files
[Bot] push changes from Files.com
1 parent cf3707f commit 3a6480a

File tree

8 files changed

+767
-742
lines changed

8 files changed

+767
-742
lines changed

_VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.0.460
1+
1.0.461

docs/models/RemoteServer.md

+7
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@
3939
"azure_blob_storage_account": "storage-account-name",
4040
"azure_blob_storage_sas_token": "storage-sas-token",
4141
"azure_blob_storage_container": "container-name",
42+
"azure_blob_storage_hierarchical_namespace": true,
4243
"azure_files_storage_account": "storage-account-name",
4344
"azure_files_storage_sas_token": "storage-sas-token",
4445
"azure_files_storage_share_name": "share-name",
@@ -97,6 +98,7 @@
9798
* `azure_blob_storage_account` (string): Azure Blob Storage Account name
9899
* `azure_blob_storage_sas_token` (string): Shared Access Signature (SAS) token
99100
* `azure_blob_storage_container` (string): Azure Blob Storage Container name
101+
* `azure_blob_storage_hierarchical_namespace` (boolean): Enable when storage account has hierarchical namespace feature enabled
100102
* `azure_files_storage_account` (string): Azure File Storage Account name
101103
* `azure_files_storage_sas_token` (string): Shared Access Signature (SAS) token
102104
* `azure_files_storage_share_name` (string): Azure File Storage Share name
@@ -210,6 +212,7 @@ await RemoteServer.create({
210212
'one_drive_account_type': "personal",
211213
'azure_blob_storage_account': "storage-account-name",
212214
'azure_blob_storage_container': "container-name",
215+
'azure_blob_storage_hierarchical_namespace': true,
213216
'azure_blob_storage_sas_token': "storage-sas-token",
214217
'azure_files_storage_account': "storage-account-name",
215218
'azure_files_storage_share_name': "share-name",
@@ -275,6 +278,7 @@ await RemoteServer.create({
275278
* `one_drive_account_type` (string): Either personal or business_other account types
276279
* `azure_blob_storage_account` (string): Azure Blob Storage Account name
277280
* `azure_blob_storage_container` (string): Azure Blob Storage Container name
281+
* `azure_blob_storage_hierarchical_namespace` (boolean): Enable when storage account has hierarchical namespace feature enabled
278282
* `azure_blob_storage_sas_token` (string): Shared Access Signature (SAS) token
279283
* `azure_files_storage_account` (string): Azure File Storage Account name
280284
* `azure_files_storage_share_name` (string): Azure File Storage Share name
@@ -391,6 +395,7 @@ await remote_server.update({
391395
'one_drive_account_type': "personal",
392396
'azure_blob_storage_account': "storage-account-name",
393397
'azure_blob_storage_container': "container-name",
398+
'azure_blob_storage_hierarchical_namespace': true,
394399
'azure_blob_storage_sas_token': "storage-sas-token",
395400
'azure_files_storage_account': "storage-account-name",
396401
'azure_files_storage_share_name': "share-name",
@@ -456,6 +461,7 @@ await remote_server.update({
456461
* `one_drive_account_type` (string): Either personal or business_other account types
457462
* `azure_blob_storage_account` (string): Azure Blob Storage Account name
458463
* `azure_blob_storage_container` (string): Azure Blob Storage Container name
464+
* `azure_blob_storage_hierarchical_namespace` (boolean): Enable when storage account has hierarchical namespace feature enabled
459465
* `azure_blob_storage_sas_token` (string): Shared Access Signature (SAS) token
460466
* `azure_files_storage_account` (string): Azure File Storage Account name
461467
* `azure_files_storage_share_name` (string): Azure File Storage Share name
@@ -520,6 +526,7 @@ await remote_server.update({
520526
"azure_blob_storage_account": "storage-account-name",
521527
"azure_blob_storage_sas_token": "storage-sas-token",
522528
"azure_blob_storage_container": "container-name",
529+
"azure_blob_storage_hierarchical_namespace": true,
523530
"azure_files_storage_account": "storage-account-name",
524531
"azure_files_storage_sas_token": "storage-sas-token",
525532
"azure_files_storage_share_name": "share-name",

lib/Files.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ var endpointPrefix = '/api/rest/v1';
1111
var apiKey;
1212
var baseUrl = 'https://app.files.com';
1313
var sessionId = null;
14-
var version = '1.0.460';
14+
var version = '1.0.461';
1515
var userAgent = "Files.com JavaScript SDK v".concat(version);
1616
var logLevel = _Logger.LogLevel.INFO;
1717
var debugRequest = false;

lib/models/RemoteServer.js

+9
Original file line numberDiff line numberDiff line change
@@ -278,6 +278,13 @@ var RemoteServer = /*#__PURE__*/(0, _createClass2.default)(function RemoteServer
278278
(0, _defineProperty2.default)(this, "setAzureBlobStorageContainer", function (value) {
279279
_this.attributes.azure_blob_storage_container = value;
280280
});
281+
// boolean # Enable when storage account has hierarchical namespace feature enabled
282+
(0, _defineProperty2.default)(this, "getAzureBlobStorageHierarchicalNamespace", function () {
283+
return _this.attributes.azure_blob_storage_hierarchical_namespace;
284+
});
285+
(0, _defineProperty2.default)(this, "setAzureBlobStorageHierarchicalNamespace", function (value) {
286+
_this.attributes.azure_blob_storage_hierarchical_namespace = value;
287+
});
281288
// string # Azure File Storage Account name
282289
(0, _defineProperty2.default)(this, "getAzureFilesStorageAccount", function () {
283290
return _this.attributes.azure_files_storage_account;
@@ -711,6 +718,7 @@ var RemoteServer = /*#__PURE__*/(0, _createClass2.default)(function RemoteServer
711718
// one_drive_account_type - string - Either personal or business_other account types
712719
// azure_blob_storage_account - string - Azure Blob Storage Account name
713720
// azure_blob_storage_container - string - Azure Blob Storage Container name
721+
// azure_blob_storage_hierarchical_namespace - boolean - Enable when storage account has hierarchical namespace feature enabled
714722
// azure_blob_storage_sas_token - string - Shared Access Signature (SAS) token
715723
// azure_files_storage_account - string - Azure File Storage Account name
716724
// azure_files_storage_share_name - string - Azure File Storage Share name
@@ -1405,6 +1413,7 @@ _class = RemoteServer;
14051413
// one_drive_account_type - string - Either personal or business_other account types
14061414
// azure_blob_storage_account - string - Azure Blob Storage Account name
14071415
// azure_blob_storage_container - string - Azure Blob Storage Container name
1416+
// azure_blob_storage_hierarchical_namespace - boolean - Enable when storage account has hierarchical namespace feature enabled
14081417
// azure_blob_storage_sas_token - string - Shared Access Signature (SAS) token
14091418
// azure_files_storage_account - string - Azure File Storage Account name
14101419
// azure_files_storage_share_name - string - Azure File Storage Share name

0 commit comments

Comments
 (0)