Merge pull request #1709 from ankurchoubeymsft/master
Update NetworkManagement AzureSDK for NodeJS
This commit is contained in:
Коммит
87399f10d7
|
@ -19,8 +19,8 @@ var util = require('util');
|
|||
* Initializes a new instance of the ApplicationGatewayBackendAddressPool class.
|
||||
* @constructor
|
||||
* Backend Address Pool of application gateway
|
||||
* @member {array} [backendIPConfigurations] Gets or sets
|
||||
* backendIPConfiguration of application gateway
|
||||
* @member {array} [backendIPConfigurations] Gets collection of references to
|
||||
* IPs defined in NICs
|
||||
*
|
||||
* @member {array} [backendAddresses] Gets or sets the backend addresses
|
||||
*
|
||||
|
@ -68,10 +68,10 @@ ApplicationGatewayBackendAddressPool.prototype.mapper = function () {
|
|||
name: 'Sequence',
|
||||
element: {
|
||||
required: false,
|
||||
serializedName: 'SubResourceElementType',
|
||||
serializedName: 'NetworkInterfaceIPConfigurationElementType',
|
||||
type: {
|
||||
name: 'Composite',
|
||||
className: 'SubResource'
|
||||
className: 'NetworkInterfaceIPConfiguration'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -101,6 +101,10 @@ var util = require('util');
|
|||
* PublicIP allocation method (Static/Dynamic). Possible values include:
|
||||
* 'Static', 'Dynamic'
|
||||
*
|
||||
* @member {string} [publicIPAddress.publicIPAddressVersion] Gets or sets
|
||||
* PublicIP address version (IPv4/IPv6). Possible values include: 'IPv4',
|
||||
* 'IPv6'
|
||||
*
|
||||
* @member {object} [publicIPAddress.ipConfiguration]
|
||||
*
|
||||
* @member {string} [publicIPAddress.ipConfiguration.privateIPAddress] Gets or
|
||||
|
|
|
@ -89,6 +89,10 @@ var util = require('util');
|
|||
* PublicIP allocation method (Static/Dynamic). Possible values include:
|
||||
* 'Static', 'Dynamic'
|
||||
*
|
||||
* @member {string} [publicIPAddress.publicIPAddressVersion] Gets or sets
|
||||
* PublicIP address version (IPv4/IPv6). Possible values include: 'IPv4',
|
||||
* 'IPv6'
|
||||
*
|
||||
* @member {object} [publicIPAddress.ipConfiguration]
|
||||
*
|
||||
* @member {object} [publicIPAddress.dnsSettings] Gets or sets FQDN of the DNS
|
||||
|
|
|
@ -29,6 +29,10 @@ var util = require('util');
|
|||
* frontendPort of each of the frontendIPConfigurations is forwarded to the
|
||||
* backed IP
|
||||
*
|
||||
* @member {array}
|
||||
* [backendIPConfiguration.applicationGatewayBackendAddressPools] Gets or
|
||||
* sets the reference of ApplicationGatewayBackendAddressPool resource
|
||||
*
|
||||
* @member {array} [backendIPConfiguration.loadBalancerBackendAddressPools]
|
||||
* Gets or sets the reference of LoadBalancerBackendAddressPool resource
|
||||
*
|
||||
|
@ -41,6 +45,10 @@ var util = require('util');
|
|||
* sets PrivateIP allocation method (Static/Dynamic). Possible values
|
||||
* include: 'Static', 'Dynamic'
|
||||
*
|
||||
* @member {string} [backendIPConfiguration.privateIPAddressVersion] Gets or
|
||||
* sets PrivateIP address version (IPv4/IPv6). Possible values include:
|
||||
* 'IPv4', 'IPv6'
|
||||
*
|
||||
* @member {object} [backendIPConfiguration.subnet]
|
||||
*
|
||||
* @member {string} [backendIPConfiguration.subnet.addressPrefix] Gets or sets
|
||||
|
@ -114,6 +122,11 @@ var util = require('util');
|
|||
* sets PublicIP allocation method (Static/Dynamic). Possible values include:
|
||||
* 'Static', 'Dynamic'
|
||||
*
|
||||
* @member {string}
|
||||
* [backendIPConfiguration.publicIPAddress.publicIPAddressVersion] Gets or
|
||||
* sets PublicIP address version (IPv4/IPv6). Possible values include:
|
||||
* 'IPv4', 'IPv6'
|
||||
*
|
||||
* @member {object} [backendIPConfiguration.publicIPAddress.ipConfiguration]
|
||||
*
|
||||
* @member {string}
|
||||
|
|
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
|
@ -25,14 +25,27 @@ exports.ApplicationGatewaySslCertificate = require('./applicationGatewaySslCerti
|
|||
exports.ApplicationGatewayFrontendIPConfiguration = require('./applicationGatewayFrontendIPConfiguration');
|
||||
exports.ApplicationGatewayFrontendPort = require('./applicationGatewayFrontendPort');
|
||||
exports.ApplicationGatewayBackendAddress = require('./applicationGatewayBackendAddress');
|
||||
exports.NetworkInterfaceIPConfiguration = require('./networkInterfaceIPConfiguration');
|
||||
exports.ApplicationGatewayBackendAddressPool = require('./applicationGatewayBackendAddressPool');
|
||||
exports.BackendAddressPool = require('./backendAddressPool');
|
||||
exports.InboundNatRule = require('./inboundNatRule');
|
||||
exports.Subnet = require('./subnet');
|
||||
exports.Resource = require('./resource');
|
||||
exports.NetworkSecurityGroup = require('./networkSecurityGroup');
|
||||
exports.SecurityRule = require('./securityRule');
|
||||
exports.NetworkInterface = require('./networkInterface');
|
||||
exports.NetworkInterfaceDnsSettings = require('./networkInterfaceDnsSettings');
|
||||
exports.RouteTable = require('./routeTable');
|
||||
exports.Route = require('./route');
|
||||
exports.IPConfiguration = require('./iPConfiguration');
|
||||
exports.PublicIPAddress = require('./publicIPAddress');
|
||||
exports.PublicIPAddressDnsSettings = require('./publicIPAddressDnsSettings');
|
||||
exports.ApplicationGatewayBackendHttpSettings = require('./applicationGatewayBackendHttpSettings');
|
||||
exports.ApplicationGatewayHttpListener = require('./applicationGatewayHttpListener');
|
||||
exports.ApplicationGatewayPathRule = require('./applicationGatewayPathRule');
|
||||
exports.ApplicationGatewayProbe = require('./applicationGatewayProbe');
|
||||
exports.ApplicationGatewayRequestRoutingRule = require('./applicationGatewayRequestRoutingRule');
|
||||
exports.ApplicationGatewayUrlPathMap = require('./applicationGatewayUrlPathMap');
|
||||
exports.Resource = require('./resource');
|
||||
exports.ApplicationGateway = require('./applicationGateway');
|
||||
exports.ExpressRouteCircuitAuthorization = require('./expressRouteCircuitAuthorization');
|
||||
exports.ExpressRouteCircuitPeeringConfig = require('./expressRouteCircuitPeeringConfig');
|
||||
|
@ -49,19 +62,6 @@ exports.ExpressRouteCircuitRoutesTableSummary = require('./expressRouteCircuitRo
|
|||
exports.ExpressRouteCircuitsRoutesTableSummaryListResult = require('./expressRouteCircuitsRoutesTableSummaryListResult');
|
||||
exports.ExpressRouteServiceProviderBandwidthsOffered = require('./expressRouteServiceProviderBandwidthsOffered');
|
||||
exports.ExpressRouteServiceProvider = require('./expressRouteServiceProvider');
|
||||
exports.Subnet = require('./subnet');
|
||||
exports.NetworkSecurityGroup = require('./networkSecurityGroup');
|
||||
exports.SecurityRule = require('./securityRule');
|
||||
exports.NetworkInterface = require('./networkInterface');
|
||||
exports.NetworkInterfaceIPConfiguration = require('./networkInterfaceIPConfiguration');
|
||||
exports.BackendAddressPool = require('./backendAddressPool');
|
||||
exports.InboundNatRule = require('./inboundNatRule');
|
||||
exports.PublicIPAddress = require('./publicIPAddress');
|
||||
exports.IPConfiguration = require('./iPConfiguration');
|
||||
exports.PublicIPAddressDnsSettings = require('./publicIPAddressDnsSettings');
|
||||
exports.NetworkInterfaceDnsSettings = require('./networkInterfaceDnsSettings');
|
||||
exports.RouteTable = require('./routeTable');
|
||||
exports.Route = require('./route');
|
||||
exports.FrontendIPConfiguration = require('./frontendIPConfiguration');
|
||||
exports.LoadBalancingRule = require('./loadBalancingRule');
|
||||
exports.Probe = require('./probe');
|
||||
|
|
|
@ -63,9 +63,10 @@ var util = require('util');
|
|||
* @member {string} [dnsSettings.internalDnsNameLabel] Gets or sets the
|
||||
* Internal DNS name
|
||||
*
|
||||
* @member {string} [dnsSettings.internalFqdn] Gets or sets full IDNS name in
|
||||
* the form, DnsName.VnetId.ZoneId.TopleveSuffix. This is set when the NIC is
|
||||
* associated to a VM
|
||||
* @member {string} [dnsSettings.internalFqdn] Gets or sets the internal fqdn.
|
||||
*
|
||||
* @member {string} [dnsSettings.internalDomainNameSuffix] Gets or sets
|
||||
* internal domain name suffix of the NIC.
|
||||
*
|
||||
* @member {string} [macAddress] Gets the MAC Address of the network interface
|
||||
*
|
||||
|
|
|
@ -24,9 +24,10 @@ var util = require('util');
|
|||
*
|
||||
* @member {string} [internalDnsNameLabel] Gets or sets the Internal DNS name
|
||||
*
|
||||
* @member {string} [internalFqdn] Gets or sets full IDNS name in the form,
|
||||
* DnsName.VnetId.ZoneId.TopleveSuffix. This is set when the NIC is
|
||||
* associated to a VM
|
||||
* @member {string} [internalFqdn] Gets or sets the internal fqdn.
|
||||
*
|
||||
* @member {string} [internalDomainNameSuffix] Gets or sets internal domain
|
||||
* name suffix of the NIC.
|
||||
*
|
||||
*/
|
||||
function NetworkInterfaceDnsSettings() {
|
||||
|
@ -87,6 +88,13 @@ NetworkInterfaceDnsSettings.prototype.mapper = function () {
|
|||
type: {
|
||||
name: 'String'
|
||||
}
|
||||
},
|
||||
internalDomainNameSuffix: {
|
||||
required: false,
|
||||
serializedName: 'internalDomainNameSuffix',
|
||||
type: {
|
||||
name: 'String'
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -19,6 +19,9 @@ var util = require('util');
|
|||
* Initializes a new instance of the NetworkInterfaceIPConfiguration class.
|
||||
* @constructor
|
||||
* IPConfiguration in a NetworkInterface
|
||||
* @member {array} [applicationGatewayBackendAddressPools] Gets or sets the
|
||||
* reference of ApplicationGatewayBackendAddressPool resource
|
||||
*
|
||||
* @member {array} [loadBalancerBackendAddressPools] Gets or sets the
|
||||
* reference of LoadBalancerBackendAddressPool resource
|
||||
*
|
||||
|
@ -31,6 +34,9 @@ var util = require('util');
|
|||
* allocation method (Static/Dynamic). Possible values include: 'Static',
|
||||
* 'Dynamic'
|
||||
*
|
||||
* @member {string} [privateIPAddressVersion] Gets or sets PrivateIP address
|
||||
* version (IPv4/IPv6). Possible values include: 'IPv4', 'IPv6'
|
||||
*
|
||||
* @member {object} [subnet]
|
||||
*
|
||||
* @member {string} [subnet.addressPrefix] Gets or sets Address prefix for the
|
||||
|
@ -93,6 +99,10 @@ var util = require('util');
|
|||
* PublicIP allocation method (Static/Dynamic). Possible values include:
|
||||
* 'Static', 'Dynamic'
|
||||
*
|
||||
* @member {string} [publicIPAddress.publicIPAddressVersion] Gets or sets
|
||||
* PublicIP address version (IPv4/IPv6). Possible values include: 'IPv4',
|
||||
* 'IPv6'
|
||||
*
|
||||
* @member {object} [publicIPAddress.ipConfiguration]
|
||||
*
|
||||
* @member {string} [publicIPAddress.ipConfiguration.privateIPAddress] Gets or
|
||||
|
@ -258,6 +268,21 @@ NetworkInterfaceIPConfiguration.prototype.mapper = function () {
|
|||
name: 'String'
|
||||
}
|
||||
},
|
||||
applicationGatewayBackendAddressPools: {
|
||||
required: false,
|
||||
serializedName: 'properties.applicationGatewayBackendAddressPools',
|
||||
type: {
|
||||
name: 'Sequence',
|
||||
element: {
|
||||
required: false,
|
||||
serializedName: 'ApplicationGatewayBackendAddressPoolElementType',
|
||||
type: {
|
||||
name: 'Composite',
|
||||
className: 'ApplicationGatewayBackendAddressPool'
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
loadBalancerBackendAddressPools: {
|
||||
required: false,
|
||||
serializedName: 'properties.loadBalancerBackendAddressPools',
|
||||
|
@ -302,6 +327,13 @@ NetworkInterfaceIPConfiguration.prototype.mapper = function () {
|
|||
name: 'String'
|
||||
}
|
||||
},
|
||||
privateIPAddressVersion: {
|
||||
required: false,
|
||||
serializedName: 'properties.privateIPAddressVersion',
|
||||
type: {
|
||||
name: 'String'
|
||||
}
|
||||
},
|
||||
subnet: {
|
||||
required: false,
|
||||
serializedName: 'properties.subnet',
|
||||
|
|
|
@ -23,6 +23,9 @@ var util = require('util');
|
|||
* allocation method (Static/Dynamic). Possible values include: 'Static',
|
||||
* 'Dynamic'
|
||||
*
|
||||
* @member {string} [publicIPAddressVersion] Gets or sets PublicIP address
|
||||
* version (IPv4/IPv6). Possible values include: 'IPv4', 'IPv6'
|
||||
*
|
||||
* @member {object} [ipConfiguration]
|
||||
*
|
||||
* @member {string} [ipConfiguration.privateIPAddress] Gets or sets the
|
||||
|
@ -211,6 +214,13 @@ PublicIPAddress.prototype.mapper = function () {
|
|||
name: 'String'
|
||||
}
|
||||
},
|
||||
publicIPAddressVersion: {
|
||||
required: false,
|
||||
serializedName: 'properties.publicIPAddressVersion',
|
||||
type: {
|
||||
name: 'String'
|
||||
}
|
||||
},
|
||||
ipConfiguration: {
|
||||
required: false,
|
||||
serializedName: 'properties.ipConfiguration',
|
||||
|
|
|
@ -1977,9 +1977,11 @@ export interface NetworkInterfaces {
|
|||
* @param {string} [parameters.dnsSettings.internalDnsNameLabel] Gets or sets
|
||||
* the Internal DNS name
|
||||
*
|
||||
* @param {string} [parameters.dnsSettings.internalFqdn] Gets or sets full
|
||||
* IDNS name in the form, DnsName.VnetId.ZoneId.TopleveSuffix. This is set
|
||||
* when the NIC is associated to a VM
|
||||
* @param {string} [parameters.dnsSettings.internalFqdn] Gets or sets the
|
||||
* internal fqdn.
|
||||
*
|
||||
* @param {string} [parameters.dnsSettings.internalDomainNameSuffix] Gets or
|
||||
* sets internal domain name suffix of the NIC.
|
||||
*
|
||||
* @param {string} [parameters.macAddress] Gets the MAC Address of the network
|
||||
* interface
|
||||
|
@ -2076,9 +2078,11 @@ export interface NetworkInterfaces {
|
|||
* @param {string} [parameters.dnsSettings.internalDnsNameLabel] Gets or sets
|
||||
* the Internal DNS name
|
||||
*
|
||||
* @param {string} [parameters.dnsSettings.internalFqdn] Gets or sets full
|
||||
* IDNS name in the form, DnsName.VnetId.ZoneId.TopleveSuffix. This is set
|
||||
* when the NIC is associated to a VM
|
||||
* @param {string} [parameters.dnsSettings.internalFqdn] Gets or sets the
|
||||
* internal fqdn.
|
||||
*
|
||||
* @param {string} [parameters.dnsSettings.internalDomainNameSuffix] Gets or
|
||||
* sets internal domain name suffix of the NIC.
|
||||
*
|
||||
* @param {string} [parameters.macAddress] Gets the MAC Address of the network
|
||||
* interface
|
||||
|
@ -2605,6 +2609,9 @@ export interface PublicIPAddresses {
|
|||
* allocation method (Static/Dynamic). Possible values include: 'Static',
|
||||
* 'Dynamic'
|
||||
*
|
||||
* @param {string} [parameters.publicIPAddressVersion] Gets or sets PublicIP
|
||||
* address version (IPv4/IPv6). Possible values include: 'IPv4', 'IPv6'
|
||||
*
|
||||
* @param {object} [parameters.ipConfiguration]
|
||||
*
|
||||
* @param {string} [parameters.ipConfiguration.privateIPAddress] Gets or sets
|
||||
|
@ -2784,6 +2791,9 @@ export interface PublicIPAddresses {
|
|||
* allocation method (Static/Dynamic). Possible values include: 'Static',
|
||||
* 'Dynamic'
|
||||
*
|
||||
* @param {string} [parameters.publicIPAddressVersion] Gets or sets PublicIP
|
||||
* address version (IPv4/IPv6). Possible values include: 'IPv4', 'IPv6'
|
||||
*
|
||||
* @param {object} [parameters.ipConfiguration]
|
||||
*
|
||||
* @param {string} [parameters.ipConfiguration.privateIPAddress] Gets or sets
|
||||
|
|
|
@ -433,9 +433,11 @@ NetworkInterfaces.prototype.get = function (resourceGroupName, networkInterfaceN
|
|||
* @param {string} [parameters.dnsSettings.internalDnsNameLabel] Gets or sets
|
||||
* the Internal DNS name
|
||||
*
|
||||
* @param {string} [parameters.dnsSettings.internalFqdn] Gets or sets full
|
||||
* IDNS name in the form, DnsName.VnetId.ZoneId.TopleveSuffix. This is set
|
||||
* when the NIC is associated to a VM
|
||||
* @param {string} [parameters.dnsSettings.internalFqdn] Gets or sets the
|
||||
* internal fqdn.
|
||||
*
|
||||
* @param {string} [parameters.dnsSettings.internalDomainNameSuffix] Gets or
|
||||
* sets internal domain name suffix of the NIC.
|
||||
*
|
||||
* @param {string} [parameters.macAddress] Gets the MAC Address of the network
|
||||
* interface
|
||||
|
@ -589,9 +591,11 @@ NetworkInterfaces.prototype.createOrUpdate = function (resourceGroupName, networ
|
|||
* @param {string} [parameters.dnsSettings.internalDnsNameLabel] Gets or sets
|
||||
* the Internal DNS name
|
||||
*
|
||||
* @param {string} [parameters.dnsSettings.internalFqdn] Gets or sets full
|
||||
* IDNS name in the form, DnsName.VnetId.ZoneId.TopleveSuffix. This is set
|
||||
* when the NIC is associated to a VM
|
||||
* @param {string} [parameters.dnsSettings.internalFqdn] Gets or sets the
|
||||
* internal fqdn.
|
||||
*
|
||||
* @param {string} [parameters.dnsSettings.internalDomainNameSuffix] Gets or
|
||||
* sets internal domain name suffix of the NIC.
|
||||
*
|
||||
* @param {string} [parameters.macAddress] Gets the MAC Address of the network
|
||||
* interface
|
||||
|
|
|
@ -388,6 +388,9 @@ PublicIPAddresses.prototype.get = function (resourceGroupName, publicIpAddressNa
|
|||
* allocation method (Static/Dynamic). Possible values include: 'Static',
|
||||
* 'Dynamic'
|
||||
*
|
||||
* @param {string} [parameters.publicIPAddressVersion] Gets or sets PublicIP
|
||||
* address version (IPv4/IPv6). Possible values include: 'IPv4', 'IPv6'
|
||||
*
|
||||
* @param {object} [parameters.ipConfiguration]
|
||||
*
|
||||
* @param {string} [parameters.ipConfiguration.privateIPAddress] Gets or sets
|
||||
|
@ -624,6 +627,9 @@ PublicIPAddresses.prototype.createOrUpdate = function (resourceGroupName, public
|
|||
* allocation method (Static/Dynamic). Possible values include: 'Static',
|
||||
* 'Dynamic'
|
||||
*
|
||||
* @param {string} [parameters.publicIPAddressVersion] Gets or sets PublicIP
|
||||
* address version (IPv4/IPv6). Possible values include: 'IPv4', 'IPv6'
|
||||
*
|
||||
* @param {object} [parameters.ipConfiguration]
|
||||
*
|
||||
* @param {string} [parameters.ipConfiguration.privateIPAddress] Gets or sets
|
||||
|
|
|
@ -3,9 +3,10 @@
|
|||
"author": "Microsoft Corporation",
|
||||
"contributors": [
|
||||
"Siegemund, Frank <franksie@microsoft.com>",
|
||||
"Rajendran, Deepak <derajen@microsoft.com>"
|
||||
"Rajendran, Deepak <derajen@microsoft.com>",
|
||||
"Choubey, Ankur <anchoube@microsoft.com>"
|
||||
],
|
||||
"version": "0.13.1",
|
||||
"version": "0.13.2",
|
||||
"description": "Microsoft Azure Network Resource Provider Management Client Library for node",
|
||||
"tags": [
|
||||
"azure",
|
||||
|
|
Загрузка…
Ссылка в новой задаче