280 lines
10 KiB
JavaScript
280 lines
10 KiB
JavaScript
/*
|
|
* Copyright (c) Microsoft Corporation.
|
|
* Licensed under the MIT License.
|
|
*
|
|
* Code generated by Microsoft (R) AutoRest Code Generator.
|
|
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
|
|
*/
|
|
import { __asyncDelegator, __asyncGenerator, __asyncValues, __await } from "tslib";
|
|
import { setContinuationToken } from "../pagingHelper";
|
|
import * as coreClient from "@azure/core-client";
|
|
import * as Mappers from "../models/mappers";
|
|
import * as Parameters from "../models/parameters";
|
|
/// <reference lib="esnext.asynciterable" />
|
|
/** Class containing TopLevelDomains operations. */
|
|
export class TopLevelDomainsImpl {
|
|
/**
|
|
* Initialize a new instance of the class TopLevelDomains class.
|
|
* @param client Reference to the service client
|
|
*/
|
|
constructor(client) {
|
|
this.client = client;
|
|
}
|
|
/**
|
|
* Description for Get all top-level domains supported for registration.
|
|
* @param options The options parameters.
|
|
*/
|
|
list(options) {
|
|
const iter = this.listPagingAll(options);
|
|
return {
|
|
next() {
|
|
return iter.next();
|
|
},
|
|
[Symbol.asyncIterator]() {
|
|
return this;
|
|
},
|
|
byPage: (settings) => {
|
|
if (settings === null || settings === void 0 ? void 0 : settings.maxPageSize) {
|
|
throw new Error("maxPageSize is not supported by this operation.");
|
|
}
|
|
return this.listPagingPage(options, settings);
|
|
}
|
|
};
|
|
}
|
|
listPagingPage(options, settings) {
|
|
return __asyncGenerator(this, arguments, function* listPagingPage_1() {
|
|
let result;
|
|
let continuationToken = settings === null || settings === void 0 ? void 0 : settings.continuationToken;
|
|
if (!continuationToken) {
|
|
result = yield __await(this._list(options));
|
|
let page = result.value || [];
|
|
continuationToken = result.nextLink;
|
|
setContinuationToken(page, continuationToken);
|
|
yield yield __await(page);
|
|
}
|
|
while (continuationToken) {
|
|
result = yield __await(this._listNext(continuationToken, options));
|
|
continuationToken = result.nextLink;
|
|
let page = result.value || [];
|
|
setContinuationToken(page, continuationToken);
|
|
yield yield __await(page);
|
|
}
|
|
});
|
|
}
|
|
listPagingAll(options) {
|
|
return __asyncGenerator(this, arguments, function* listPagingAll_1() {
|
|
var e_1, _a;
|
|
try {
|
|
for (var _b = __asyncValues(this.listPagingPage(options)), _c; _c = yield __await(_b.next()), !_c.done;) {
|
|
const page = _c.value;
|
|
yield __await(yield* __asyncDelegator(__asyncValues(page)));
|
|
}
|
|
}
|
|
catch (e_1_1) { e_1 = { error: e_1_1 }; }
|
|
finally {
|
|
try {
|
|
if (_c && !_c.done && (_a = _b.return)) yield __await(_a.call(_b));
|
|
}
|
|
finally { if (e_1) throw e_1.error; }
|
|
}
|
|
});
|
|
}
|
|
/**
|
|
* Description for Gets all legal agreements that user needs to accept before purchasing a domain.
|
|
* @param name Name of the top-level domain.
|
|
* @param agreementOption Domain agreement options.
|
|
* @param options The options parameters.
|
|
*/
|
|
listAgreements(name, agreementOption, options) {
|
|
const iter = this.listAgreementsPagingAll(name, agreementOption, options);
|
|
return {
|
|
next() {
|
|
return iter.next();
|
|
},
|
|
[Symbol.asyncIterator]() {
|
|
return this;
|
|
},
|
|
byPage: (settings) => {
|
|
if (settings === null || settings === void 0 ? void 0 : settings.maxPageSize) {
|
|
throw new Error("maxPageSize is not supported by this operation.");
|
|
}
|
|
return this.listAgreementsPagingPage(name, agreementOption, options, settings);
|
|
}
|
|
};
|
|
}
|
|
listAgreementsPagingPage(name, agreementOption, options, settings) {
|
|
return __asyncGenerator(this, arguments, function* listAgreementsPagingPage_1() {
|
|
let result;
|
|
let continuationToken = settings === null || settings === void 0 ? void 0 : settings.continuationToken;
|
|
if (!continuationToken) {
|
|
result = yield __await(this._listAgreements(name, agreementOption, options));
|
|
let page = result.value || [];
|
|
continuationToken = result.nextLink;
|
|
setContinuationToken(page, continuationToken);
|
|
yield yield __await(page);
|
|
}
|
|
while (continuationToken) {
|
|
result = yield __await(this._listAgreementsNext(name, agreementOption, continuationToken, options));
|
|
continuationToken = result.nextLink;
|
|
let page = result.value || [];
|
|
setContinuationToken(page, continuationToken);
|
|
yield yield __await(page);
|
|
}
|
|
});
|
|
}
|
|
listAgreementsPagingAll(name, agreementOption, options) {
|
|
return __asyncGenerator(this, arguments, function* listAgreementsPagingAll_1() {
|
|
var e_2, _a;
|
|
try {
|
|
for (var _b = __asyncValues(this.listAgreementsPagingPage(name, agreementOption, options)), _c; _c = yield __await(_b.next()), !_c.done;) {
|
|
const page = _c.value;
|
|
yield __await(yield* __asyncDelegator(__asyncValues(page)));
|
|
}
|
|
}
|
|
catch (e_2_1) { e_2 = { error: e_2_1 }; }
|
|
finally {
|
|
try {
|
|
if (_c && !_c.done && (_a = _b.return)) yield __await(_a.call(_b));
|
|
}
|
|
finally { if (e_2) throw e_2.error; }
|
|
}
|
|
});
|
|
}
|
|
/**
|
|
* Description for Get all top-level domains supported for registration.
|
|
* @param options The options parameters.
|
|
*/
|
|
_list(options) {
|
|
return this.client.sendOperationRequest({ options }, listOperationSpec);
|
|
}
|
|
/**
|
|
* Description for Get details of a top-level domain.
|
|
* @param name Name of the top-level domain.
|
|
* @param options The options parameters.
|
|
*/
|
|
get(name, options) {
|
|
return this.client.sendOperationRequest({ name, options }, getOperationSpec);
|
|
}
|
|
/**
|
|
* Description for Gets all legal agreements that user needs to accept before purchasing a domain.
|
|
* @param name Name of the top-level domain.
|
|
* @param agreementOption Domain agreement options.
|
|
* @param options The options parameters.
|
|
*/
|
|
_listAgreements(name, agreementOption, options) {
|
|
return this.client.sendOperationRequest({ name, agreementOption, options }, listAgreementsOperationSpec);
|
|
}
|
|
/**
|
|
* ListNext
|
|
* @param nextLink The nextLink from the previous successful call to the List method.
|
|
* @param options The options parameters.
|
|
*/
|
|
_listNext(nextLink, options) {
|
|
return this.client.sendOperationRequest({ nextLink, options }, listNextOperationSpec);
|
|
}
|
|
/**
|
|
* ListAgreementsNext
|
|
* @param name Name of the top-level domain.
|
|
* @param agreementOption Domain agreement options.
|
|
* @param nextLink The nextLink from the previous successful call to the ListAgreements method.
|
|
* @param options The options parameters.
|
|
*/
|
|
_listAgreementsNext(name, agreementOption, nextLink, options) {
|
|
return this.client.sendOperationRequest({ name, agreementOption, nextLink, options }, listAgreementsNextOperationSpec);
|
|
}
|
|
}
|
|
// Operation Specifications
|
|
const serializer = coreClient.createSerializer(Mappers, /* isXml */ false);
|
|
const listOperationSpec = {
|
|
path: "/subscriptions/{subscriptionId}/providers/Microsoft.DomainRegistration/topLevelDomains",
|
|
httpMethod: "GET",
|
|
responses: {
|
|
200: {
|
|
bodyMapper: Mappers.TopLevelDomainCollection
|
|
},
|
|
default: {
|
|
bodyMapper: Mappers.DefaultErrorResponse
|
|
}
|
|
},
|
|
queryParameters: [Parameters.apiVersion],
|
|
urlParameters: [Parameters.$host, Parameters.subscriptionId],
|
|
headerParameters: [Parameters.accept],
|
|
serializer
|
|
};
|
|
const getOperationSpec = {
|
|
path: "/subscriptions/{subscriptionId}/providers/Microsoft.DomainRegistration/topLevelDomains/{name}",
|
|
httpMethod: "GET",
|
|
responses: {
|
|
200: {
|
|
bodyMapper: Mappers.TopLevelDomain
|
|
},
|
|
default: {
|
|
bodyMapper: Mappers.DefaultErrorResponse
|
|
}
|
|
},
|
|
queryParameters: [Parameters.apiVersion],
|
|
urlParameters: [Parameters.$host, Parameters.subscriptionId, Parameters.name],
|
|
headerParameters: [Parameters.accept],
|
|
serializer
|
|
};
|
|
const listAgreementsOperationSpec = {
|
|
path: "/subscriptions/{subscriptionId}/providers/Microsoft.DomainRegistration/topLevelDomains/{name}/listAgreements",
|
|
httpMethod: "POST",
|
|
responses: {
|
|
200: {
|
|
bodyMapper: Mappers.TldLegalAgreementCollection
|
|
},
|
|
default: {
|
|
bodyMapper: Mappers.DefaultErrorResponse
|
|
}
|
|
},
|
|
requestBody: Parameters.agreementOption,
|
|
queryParameters: [Parameters.apiVersion],
|
|
urlParameters: [Parameters.$host, Parameters.subscriptionId, Parameters.name],
|
|
headerParameters: [Parameters.accept, Parameters.contentType],
|
|
mediaType: "json",
|
|
serializer
|
|
};
|
|
const listNextOperationSpec = {
|
|
path: "{nextLink}",
|
|
httpMethod: "GET",
|
|
responses: {
|
|
200: {
|
|
bodyMapper: Mappers.TopLevelDomainCollection
|
|
},
|
|
default: {
|
|
bodyMapper: Mappers.DefaultErrorResponse
|
|
}
|
|
},
|
|
queryParameters: [Parameters.apiVersion],
|
|
urlParameters: [
|
|
Parameters.$host,
|
|
Parameters.subscriptionId,
|
|
Parameters.nextLink
|
|
],
|
|
headerParameters: [Parameters.accept],
|
|
serializer
|
|
};
|
|
const listAgreementsNextOperationSpec = {
|
|
path: "{nextLink}",
|
|
httpMethod: "GET",
|
|
responses: {
|
|
200: {
|
|
bodyMapper: Mappers.TldLegalAgreementCollection
|
|
},
|
|
default: {
|
|
bodyMapper: Mappers.DefaultErrorResponse
|
|
}
|
|
},
|
|
queryParameters: [Parameters.apiVersion],
|
|
urlParameters: [
|
|
Parameters.$host,
|
|
Parameters.subscriptionId,
|
|
Parameters.name,
|
|
Parameters.nextLink
|
|
],
|
|
headerParameters: [Parameters.accept, Parameters.contentType],
|
|
mediaType: "json",
|
|
serializer
|
|
};
|
|
//# sourceMappingURL=topLevelDomains.js.map
|