|
1 | 1 | /* |
2 | | - * Copyright (c) Microsoft Corporation. All rights reserved. |
3 | | - * Licensed under the MIT License. See License.txt in the project root for license information. |
| 2 | + * Copyright (c) Microsoft Corporation. |
| 3 | + * Licensed under the MIT License. |
4 | 4 | * |
5 | 5 | * Code generated by Microsoft (R) AutoRest Code Generator. |
6 | 6 | * Changes may cause incorrect behavior and will be lost if the code is regenerated. |
@@ -310,6 +310,12 @@ export interface Zone extends Resource { |
310 | 310 | * **NOTE: This property will not be serialized. It can only be populated by the server.** |
311 | 311 | */ |
312 | 312 | readonly maxNumberOfRecordSets?: number; |
| 313 | + /** |
| 314 | + * The maximum number of records per record set that can be created in this DNS zone. This is a |
| 315 | + * read-only property and any attempt to set this value will be ignored. |
| 316 | + * **NOTE: This property will not be serialized. It can only be populated by the server.** |
| 317 | + */ |
| 318 | + readonly maxNumberOfRecordsPerRecordSet?: number; |
313 | 319 | /** |
314 | 320 | * The current number of record sets in this DNS zone. This is a read-only property and any |
315 | 321 | * attempt to set this value will be ignored. |
@@ -470,6 +476,54 @@ export interface RecordSetsListAllByDnsZoneOptionalParams extends msRest.Request |
470 | 476 | recordSetNameSuffix?: string; |
471 | 477 | } |
472 | 478 |
|
| 479 | +/** |
| 480 | + * Optional Parameters. |
| 481 | + */ |
| 482 | +export interface RecordSetsListByTypeNextOptionalParams extends msRest.RequestOptionsBase { |
| 483 | + /** |
| 484 | + * The maximum number of record sets to return. If not specified, returns up to 100 record sets. |
| 485 | + */ |
| 486 | + top?: number; |
| 487 | + /** |
| 488 | + * The suffix label of the record set name that has to be used to filter the record set |
| 489 | + * enumerations. If this parameter is specified, Enumeration will return only records that end |
| 490 | + * with .<recordSetNameSuffix> |
| 491 | + */ |
| 492 | + recordsetnamesuffix?: string; |
| 493 | +} |
| 494 | + |
| 495 | +/** |
| 496 | + * Optional Parameters. |
| 497 | + */ |
| 498 | +export interface RecordSetsListByDnsZoneNextOptionalParams extends msRest.RequestOptionsBase { |
| 499 | + /** |
| 500 | + * The maximum number of record sets to return. If not specified, returns up to 100 record sets. |
| 501 | + */ |
| 502 | + top?: number; |
| 503 | + /** |
| 504 | + * The suffix label of the record set name that has to be used to filter the record set |
| 505 | + * enumerations. If this parameter is specified, Enumeration will return only records that end |
| 506 | + * with .<recordSetNameSuffix> |
| 507 | + */ |
| 508 | + recordsetnamesuffix?: string; |
| 509 | +} |
| 510 | + |
| 511 | +/** |
| 512 | + * Optional Parameters. |
| 513 | + */ |
| 514 | +export interface RecordSetsListAllByDnsZoneNextOptionalParams extends msRest.RequestOptionsBase { |
| 515 | + /** |
| 516 | + * The maximum number of record sets to return. If not specified, returns up to 100 record sets. |
| 517 | + */ |
| 518 | + top?: number; |
| 519 | + /** |
| 520 | + * The suffix label of the record set name that has to be used to filter the record set |
| 521 | + * enumerations. If this parameter is specified, Enumeration will return only records that end |
| 522 | + * with .<recordSetNameSuffix> |
| 523 | + */ |
| 524 | + recordSetNameSuffix?: string; |
| 525 | +} |
| 526 | + |
473 | 527 | /** |
474 | 528 | * Optional Parameters. |
475 | 529 | */ |
@@ -539,6 +593,26 @@ export interface ZonesBeginDeleteMethodOptionalParams extends msRest.RequestOpti |
539 | 593 | ifMatch?: string; |
540 | 594 | } |
541 | 595 |
|
| 596 | +/** |
| 597 | + * Optional Parameters. |
| 598 | + */ |
| 599 | +export interface ZonesListByResourceGroupNextOptionalParams extends msRest.RequestOptionsBase { |
| 600 | + /** |
| 601 | + * The maximum number of record sets to return. If not specified, returns up to 100 record sets. |
| 602 | + */ |
| 603 | + top?: number; |
| 604 | +} |
| 605 | + |
| 606 | +/** |
| 607 | + * Optional Parameters. |
| 608 | + */ |
| 609 | +export interface ZonesListNextOptionalParams extends msRest.RequestOptionsBase { |
| 610 | + /** |
| 611 | + * The maximum number of DNS zones to return. If not specified, returns up to 100 zones. |
| 612 | + */ |
| 613 | + top?: number; |
| 614 | +} |
| 615 | + |
542 | 616 | /** |
543 | 617 | * An interface representing DnsManagementClientOptions. |
544 | 618 | */ |
|
0 commit comments