Skip to content
This repository has been archived by the owner on May 5, 2023. It is now read-only.

Commit

Permalink
Generated from 71dbfe2c0b24d7b8295eaf5c6d2d8df6b08130ae
Browse files Browse the repository at this point in the history
Merge pull request #5 from AzureDataBox/gasdk

Azure rest api specs for GA of Databox
  • Loading branch information
AutorestCI committed Sep 12, 2018
1 parent f871fc7 commit ccb2745
Show file tree
Hide file tree
Showing 45 changed files with 3,130 additions and 2,310 deletions.
42 changes: 21 additions & 21 deletions lib/services/databox/LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
The MIT License (MIT)

Copyright (c) 2018 Microsoft

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
The MIT License (MIT)
Copyright (c) 2018 Microsoft
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
80 changes: 40 additions & 40 deletions lib/services/databox/README.md
Original file line number Diff line number Diff line change
@@ -1,40 +1,40 @@
---
uid: azure-arm-databox
summary: *content

---
# Microsoft Azure SDK for Node.js - DataBoxManagementClient
This project provides a Node.js package for accessing Azure. Right now it supports:
- **Node.js version 6.x.x or higher**

## Features


## How to Install

```bash
npm install azure-arm-databox
```

## How to use

### Authentication, client creation and list operations as an example.

```javascript
const msRestAzure = require("ms-rest-azure");
const DataBoxManagementClient = require("azure-arm-databox");
msRestAzure.interactiveLogin().then((creds) => {
const subscriptionId = "<Subscription_Id>";
const client = new DataBoxManagementClient(creds, subscriptionId);
return client.operations.list().then((result) => {
console.log("The result is:");
console.log(result);
});
}).catch((err) => {
console.log('An error occurred:');
console.dir(err, {depth: null, colors: true});
});

## Related projects

- [Microsoft Azure SDK for Node.js](https://github.com/Azure/azure-sdk-for-node)
---
uid: azure-arm-databox
summary: *content

---
# Microsoft Azure SDK for Node.js - DataBoxManagementClient
This project provides a Node.js package for accessing Azure. Right now it supports:
- **Node.js version 6.x.x or higher**

## Features


## How to Install

```bash
npm install azure-arm-databox
```

## How to use

### Authentication, client creation and list operations as an example.

```javascript
const msRestAzure = require("ms-rest-azure");
const DataBoxManagementClient = require("azure-arm-databox");
msRestAzure.interactiveLogin().then((creds) => {
const subscriptionId = "<Subscription_Id>";
const client = new DataBoxManagementClient(creds, subscriptionId);
return client.operations.list().then((result) => {
console.log("The result is:");
console.log(result);
});
}).catch((err) => {
console.log('An error occurred:');
console.dir(err, {depth: null, colors: true});
});

## Related projects

- [Microsoft Azure SDK for Node.js](https://github.com/Azure/azure-sdk-for-node)
12 changes: 12 additions & 0 deletions lib/services/databox/lib/models/accountCredentialDetails.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ class AccountCredentialDetails {
/**
* Create a AccountCredentialDetails.
* @member {string} [accountName] Name of the account.
* @member {string} [accountConnectionString] Connection string of the
* account endpoint to use the account as a storage endpoint on the device.
* @member {array} shareCredentialDetails Per share level unencrypted access
* credentials.
*/
Expand All @@ -42,13 +44,23 @@ class AccountCredentialDetails {
modelProperties: {
accountName: {
required: false,
readOnly: true,
serializedName: 'accountName',
type: {
name: 'String'
}
},
accountConnectionString: {
required: false,
readOnly: true,
serializedName: 'accountConnectionString',
type: {
name: 'String'
}
},
shareCredentialDetails: {
required: true,
readOnly: true,
serializedName: 'shareCredentialDetails',
type: {
name: 'Sequence',
Expand Down
60 changes: 60 additions & 0 deletions lib/services/databox/lib/models/applianceNetworkConfiguration.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
/*
* 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.
* Changes may cause incorrect behavior and will be lost if the code is
* regenerated.
*/

'use strict';

/**
* The Network Adapter configuration of a DataBox.
*
*/
class ApplianceNetworkConfiguration {
/**
* Create a ApplianceNetworkConfiguration.
* @member {string} [name] Name of the network
* @member {string} [macAddress] Mac Address
*/
constructor() {
}

/**
* Defines the metadata of ApplianceNetworkConfiguration
*
* @returns {object} metadata of ApplianceNetworkConfiguration
*
*/
mapper() {
return {
required: false,
serializedName: 'ApplianceNetworkConfiguration',
type: {
name: 'Composite',
className: 'ApplianceNetworkConfiguration',
modelProperties: {
name: {
required: false,
serializedName: 'name',
type: {
name: 'String'
}
},
macAddress: {
required: false,
serializedName: 'macAddress',
type: {
name: 'String'
}
}
}
}
};
}
}

module.exports = ApplianceNetworkConfiguration;
3 changes: 2 additions & 1 deletion lib/services/databox/lib/models/availableSkusResult.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ class AvailableSkusResult extends Array {
className: 'AvailableSkusResult',
modelProperties: {
value: {
required: true,
required: false,
readOnly: true,
serializedName: '',
type: {
name: 'Sequence',
Expand Down
4 changes: 2 additions & 2 deletions lib/services/databox/lib/models/contactDetails.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const models = require('./index');
class ContactDetails {
/**
* Create a ContactDetails.
* @member {string} [contactName] Contact name of the person.
* @member {string} contactName Contact name of the person.
* @member {string} phone Phone number of the contact person.
* @member {string} [phoneExtension] Phone extension number of the contact
* person.
Expand Down Expand Up @@ -47,7 +47,7 @@ class ContactDetails {
className: 'ContactDetails',
modelProperties: {
contactName: {
required: false,
required: true,
serializedName: 'contactName',
type: {
name: 'String'
Expand Down
9 changes: 9 additions & 0 deletions lib/services/databox/lib/models/copyProgress.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ class CopyProgress {
* Create a CopyProgress.
* @member {string} [storageAccountName] Name of the storage account where
* the data needs to be uploaded.
* @member {string} [accountId] Id of the account where the data needs to be
* uploaded.
* @member {number} [bytesSentToCloud] Amount of data uploaded by the job as
* of now.
* @member {number} [totalBytesToProcess] Total amount of data to be
Expand Down Expand Up @@ -48,6 +50,13 @@ class CopyProgress {
name: 'String'
}
},
accountId: {
required: false,
serializedName: 'accountId',
type: {
name: 'String'
}
},
bytesSentToCloud: {
required: false,
serializedName: 'bytesSentToCloud',
Expand Down
79 changes: 79 additions & 0 deletions lib/services/databox/lib/models/dataBoxAccountCopyLogDetails.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
/*
* 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.
* Changes may cause incorrect behavior and will be lost if the code is
* regenerated.
*/

'use strict';

const models = require('./index');

/**
* Copy log details for a storage account of a DataBox job
*
* @extends models['CopyLogDetails']
*/
class DataBoxAccountCopyLogDetails extends models['CopyLogDetails'] {
/**
* Create a DataBoxAccountCopyLogDetails.
* @member {string} [accountName] Destination account name.
* @member {string} [copyLogLink] Link for copy logs.
*/
constructor() {
super();
}

/**
* Defines the metadata of DataBoxAccountCopyLogDetails
*
* @returns {object} metadata of DataBoxAccountCopyLogDetails
*
*/
mapper() {
return {
required: false,
serializedName: 'DataBox',
type: {
name: 'Composite',
polymorphicDiscriminator: {
serializedName: 'copyLogDetailsType',
clientName: 'copyLogDetailsType'
},
uberParent: 'CopyLogDetails',
className: 'DataBoxAccountCopyLogDetails',
modelProperties: {
copyLogDetailsType: {
required: true,
serializedName: 'copyLogDetailsType',
isPolymorphicDiscriminator: true,
type: {
name: 'String'
}
},
accountName: {
required: false,
readOnly: true,
serializedName: 'accountName',
type: {
name: 'String'
}
},
copyLogLink: {
required: false,
readOnly: true,
serializedName: 'copyLogLink',
type: {
name: 'String'
}
}
}
}
};
}
}

module.exports = DataBoxAccountCopyLogDetails;
Loading

0 comments on commit ccb2745

Please sign in to comment.