@azure/arm-confluent 2.2.0 → 3.0.0-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +11 -0
- package/{LICENSE.txt → LICENSE} +2 -2
- package/README.md +70 -78
- package/dist/index.js +1547 -0
- package/dist/index.js.map +1 -0
- package/dist/index.min.js +1 -0
- package/dist/index.min.js.map +1 -0
- package/dist-esm/src/confluentManagementClient.d.ts +21 -0
- package/dist-esm/src/confluentManagementClient.d.ts.map +1 -0
- package/dist-esm/src/confluentManagementClient.js +54 -0
- package/dist-esm/src/confluentManagementClient.js.map +1 -0
- package/dist-esm/src/index.d.ts +5 -0
- package/dist-esm/src/index.d.ts.map +1 -0
- package/dist-esm/src/index.js +12 -0
- package/dist-esm/src/index.js.map +1 -0
- package/dist-esm/src/lroImpl.d.ts +16 -0
- package/dist-esm/src/lroImpl.d.ts.map +1 -0
- package/dist-esm/src/lroImpl.js +29 -0
- package/dist-esm/src/lroImpl.js.map +1 -0
- package/dist-esm/src/models/index.d.ts +382 -0
- package/dist-esm/src/models/index.d.ts.map +1 -0
- package/dist-esm/src/models/index.js +43 -0
- package/dist-esm/src/models/index.js.map +1 -0
- package/dist-esm/src/models/mappers.d.ts +15 -0
- package/dist-esm/src/models/mappers.d.ts.map +1 -0
- package/{esm → dist-esm/src}/models/mappers.js +209 -237
- package/dist-esm/src/models/mappers.js.map +1 -0
- package/dist-esm/src/models/parameters.d.ts +14 -0
- package/dist-esm/src/models/parameters.d.ts.map +1 -0
- package/dist-esm/src/models/parameters.js +110 -0
- package/dist-esm/src/models/parameters.js.map +1 -0
- package/{esm → dist-esm/src}/operations/index.d.ts +0 -0
- package/dist-esm/src/operations/index.d.ts.map +1 -0
- package/{esm → dist-esm/src}/operations/index.js +1 -2
- package/dist-esm/src/operations/index.js.map +1 -0
- package/dist-esm/src/operations/marketplaceAgreements.d.ts +37 -0
- package/dist-esm/src/operations/marketplaceAgreements.d.ts.map +1 -0
- package/dist-esm/src/operations/marketplaceAgreements.js +149 -0
- package/dist-esm/src/operations/marketplaceAgreements.js.map +1 -0
- package/dist-esm/src/operations/organization.d.ts +96 -0
- package/dist-esm/src/operations/organization.d.ts.map +1 -0
- package/dist-esm/src/operations/organization.js +449 -0
- package/dist-esm/src/operations/organization.js.map +1 -0
- package/dist-esm/src/operations/organizationOperations.d.ts +32 -0
- package/dist-esm/src/operations/organizationOperations.d.ts.map +1 -0
- package/dist-esm/src/operations/organizationOperations.js +120 -0
- package/dist-esm/src/operations/organizationOperations.js.map +1 -0
- package/dist-esm/src/operations/validations.d.ts +21 -0
- package/dist-esm/src/operations/validations.d.ts.map +1 -0
- package/dist-esm/src/operations/validations.js +56 -0
- package/dist-esm/src/operations/validations.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/index.d.ts +5 -0
- package/dist-esm/src/operationsInterfaces/index.d.ts.map +1 -0
- package/{esm/models/organizationOperationsMappers.js → dist-esm/src/operationsInterfaces/index.js} +5 -2
- package/dist-esm/src/operationsInterfaces/index.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/marketplaceAgreements.d.ts +16 -0
- package/dist-esm/src/operationsInterfaces/marketplaceAgreements.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/marketplaceAgreements.js +9 -0
- package/dist-esm/src/operationsInterfaces/marketplaceAgreements.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/organization.d.ts +60 -0
- package/dist-esm/src/operationsInterfaces/organization.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/organization.js +9 -0
- package/dist-esm/src/operationsInterfaces/organization.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/organizationOperations.d.ts +11 -0
- package/dist-esm/src/operationsInterfaces/organizationOperations.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/organizationOperations.js +9 -0
- package/dist-esm/src/operationsInterfaces/organizationOperations.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/validations.d.ts +13 -0
- package/dist-esm/src/operationsInterfaces/validations.d.ts.map +1 -0
- package/{esm/models/index.js → dist-esm/src/operationsInterfaces/validations.js} +2 -1
- package/dist-esm/src/operationsInterfaces/validations.js.map +1 -0
- package/dist-esm/test/sampleTest.d.ts +2 -0
- package/dist-esm/test/sampleTest.d.ts.map +1 -0
- package/dist-esm/test/sampleTest.js +40 -0
- package/dist-esm/test/sampleTest.js.map +1 -0
- package/package.json +65 -32
- package/review/arm-confluent.api.md +352 -0
- package/rollup.config.js +181 -30
- package/src/confluentManagementClient.ts +76 -38
- package/src/{models/validationsMappers.ts → index.ts} +4 -10
- package/src/lroImpl.ts +34 -0
- package/src/models/index.ts +297 -553
- package/src/models/mappers.ts +211 -240
- package/src/models/parameters.ts +81 -24
- package/src/operations/index.ts +1 -2
- package/src/operations/marketplaceAgreements.ts +108 -117
- package/src/operations/organization.ts +414 -300
- package/src/operations/organizationOperations.ts +87 -75
- package/src/operations/validations.ts +42 -62
- package/src/{models/organizationOperationsMappers.ts → operationsInterfaces/index.ts} +4 -7
- package/src/operationsInterfaces/marketplaceAgreements.ts +34 -0
- package/src/operationsInterfaces/organization.ts +114 -0
- package/src/operationsInterfaces/organizationOperations.ts +25 -0
- package/src/operationsInterfaces/validations.ts +30 -0
- package/tsconfig.json +3 -3
- package/types/arm-confluent.d.ts +543 -0
- package/types/tsdoc-metadata.json +11 -0
- package/dist/arm-confluent.js +0 -1460
- package/dist/arm-confluent.js.map +0 -1
- package/dist/arm-confluent.min.js +0 -1
- package/dist/arm-confluent.min.js.map +0 -1
- package/esm/confluentManagementClient.d.ts +0 -27
- package/esm/confluentManagementClient.d.ts.map +0 -1
- package/esm/confluentManagementClient.js +0 -40
- package/esm/confluentManagementClient.js.map +0 -1
- package/esm/confluentManagementClientContext.d.ts +0 -22
- package/esm/confluentManagementClientContext.d.ts.map +0 -1
- package/esm/confluentManagementClientContext.js +0 -60
- package/esm/confluentManagementClientContext.js.map +0 -1
- package/esm/models/index.d.ts +0 -640
- package/esm/models/index.d.ts.map +0 -1
- package/esm/models/index.js.map +0 -1
- package/esm/models/mappers.d.ts +0 -17
- package/esm/models/mappers.d.ts.map +0 -1
- package/esm/models/mappers.js.map +0 -1
- package/esm/models/marketplaceAgreementsMappers.d.ts +0 -2
- package/esm/models/marketplaceAgreementsMappers.d.ts.map +0 -1
- package/esm/models/marketplaceAgreementsMappers.js +0 -9
- package/esm/models/marketplaceAgreementsMappers.js.map +0 -1
- package/esm/models/organizationMappers.d.ts +0 -2
- package/esm/models/organizationMappers.d.ts.map +0 -1
- package/esm/models/organizationMappers.js +0 -9
- package/esm/models/organizationMappers.js.map +0 -1
- package/esm/models/organizationOperationsMappers.d.ts +0 -2
- package/esm/models/organizationOperationsMappers.d.ts.map +0 -1
- package/esm/models/organizationOperationsMappers.js.map +0 -1
- package/esm/models/parameters.d.ts +0 -8
- package/esm/models/parameters.d.ts.map +0 -1
- package/esm/models/parameters.js +0 -72
- package/esm/models/parameters.js.map +0 -1
- package/esm/models/validationsMappers.d.ts +0 -2
- package/esm/models/validationsMappers.d.ts.map +0 -1
- package/esm/models/validationsMappers.js +0 -9
- package/esm/models/validationsMappers.js.map +0 -1
- package/esm/operations/index.d.ts.map +0 -1
- package/esm/operations/index.js.map +0 -1
- package/esm/operations/marketplaceAgreements.d.ts +0 -61
- package/esm/operations/marketplaceAgreements.d.ts.map +0 -1
- package/esm/operations/marketplaceAgreements.js +0 -116
- package/esm/operations/marketplaceAgreements.js.map +0 -1
- package/esm/operations/organization.d.ts +0 -157
- package/esm/operations/organization.d.ts.map +0 -1
- package/esm/operations/organization.js +0 -317
- package/esm/operations/organization.js.map +0 -1
- package/esm/operations/organizationOperations.d.ts +0 -46
- package/esm/operations/organizationOperations.d.ts.map +0 -1
- package/esm/operations/organizationOperations.js +0 -79
- package/esm/operations/organizationOperations.js.map +0 -1
- package/esm/operations/validations.d.ts +0 -37
- package/esm/operations/validations.d.ts.map +0 -1
- package/esm/operations/validations.js +0 -63
- package/esm/operations/validations.js.map +0 -1
- package/src/confluentManagementClientContext.ts +0 -67
- package/src/models/marketplaceAgreementsMappers.ts +0 -19
- package/src/models/organizationMappers.ts +0 -20
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
export { BaseResource, ConfluentAgreementResource, ConfluentAgreementResourceListResponse, ErrorResponseBody, OfferDetail, OrganizationResource, ResourceProviderDefaultErrorResponse, SystemData, UserDetail } from "../models/mappers";
|
|
2
|
-
//# sourceMappingURL=marketplaceAgreementsMappers.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"marketplaceAgreementsMappers.d.ts","sourceRoot":"","sources":["../../src/models/marketplaceAgreementsMappers.ts"],"names":[],"mappings":"AAQA,OAAO,EACL,YAAY,EACZ,0BAA0B,EAC1B,sCAAsC,EACtC,iBAAiB,EACjB,WAAW,EACX,oBAAoB,EACpB,oCAAoC,EACpC,UAAU,EACV,UAAU,EACX,MAAM,mBAAmB,CAAC"}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Copyright (c) Microsoft Corporation.
|
|
3
|
-
* Licensed under the MIT License.
|
|
4
|
-
*
|
|
5
|
-
* Code generated by Microsoft (R) AutoRest Code Generator.
|
|
6
|
-
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
|
|
7
|
-
*/
|
|
8
|
-
export { BaseResource, ConfluentAgreementResource, ConfluentAgreementResourceListResponse, ErrorResponseBody, OfferDetail, OrganizationResource, ResourceProviderDefaultErrorResponse, SystemData, UserDetail } from "../models/mappers";
|
|
9
|
-
//# sourceMappingURL=marketplaceAgreementsMappers.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"marketplaceAgreementsMappers.js","sourceRoot":"","sources":["../../src/models/marketplaceAgreementsMappers.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAEH,OAAO,EACL,YAAY,EACZ,0BAA0B,EAC1B,sCAAsC,EACtC,iBAAiB,EACjB,WAAW,EACX,oBAAoB,EACpB,oCAAoC,EACpC,UAAU,EACV,UAAU,EACX,MAAM,mBAAmB,CAAC"}
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
export { BaseResource, ConfluentAgreementResource, ErrorResponseBody, OfferDetail, OrganizationResource, OrganizationResourceListResult, OrganizationResourceUpdate, ResourceProviderDefaultErrorResponse, SystemData, UserDetail } from "../models/mappers";
|
|
2
|
-
//# sourceMappingURL=organizationMappers.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"organizationMappers.d.ts","sourceRoot":"","sources":["../../src/models/organizationMappers.ts"],"names":[],"mappings":"AAQA,OAAO,EACL,YAAY,EACZ,0BAA0B,EAC1B,iBAAiB,EACjB,WAAW,EACX,oBAAoB,EACpB,8BAA8B,EAC9B,0BAA0B,EAC1B,oCAAoC,EACpC,UAAU,EACV,UAAU,EACX,MAAM,mBAAmB,CAAC"}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Copyright (c) Microsoft Corporation.
|
|
3
|
-
* Licensed under the MIT License.
|
|
4
|
-
*
|
|
5
|
-
* Code generated by Microsoft (R) AutoRest Code Generator.
|
|
6
|
-
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
|
|
7
|
-
*/
|
|
8
|
-
export { BaseResource, ConfluentAgreementResource, ErrorResponseBody, OfferDetail, OrganizationResource, OrganizationResourceListResult, OrganizationResourceUpdate, ResourceProviderDefaultErrorResponse, SystemData, UserDetail } from "../models/mappers";
|
|
9
|
-
//# sourceMappingURL=organizationMappers.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"organizationMappers.js","sourceRoot":"","sources":["../../src/models/organizationMappers.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAEH,OAAO,EACL,YAAY,EACZ,0BAA0B,EAC1B,iBAAiB,EACjB,WAAW,EACX,oBAAoB,EACpB,8BAA8B,EAC9B,0BAA0B,EAC1B,oCAAoC,EACpC,UAAU,EACV,UAAU,EACX,MAAM,mBAAmB,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"organizationOperationsMappers.d.ts","sourceRoot":"","sources":["../../src/models/organizationOperationsMappers.ts"],"names":[],"mappings":"AAQA,OAAO,EACL,iBAAiB,EACjB,gBAAgB,EAChB,mBAAmB,EACnB,eAAe,EACf,oCAAoC,EACrC,MAAM,mBAAmB,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"organizationOperationsMappers.js","sourceRoot":"","sources":["../../src/models/organizationOperationsMappers.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAEH,OAAO,EACL,iBAAiB,EACjB,gBAAgB,EAChB,mBAAmB,EACnB,eAAe,EACf,oCAAoC,EACrC,MAAM,mBAAmB,CAAC"}
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import * as msRest from "@azure/ms-rest-js";
|
|
2
|
-
export declare const acceptLanguage: msRest.OperationParameter;
|
|
3
|
-
export declare const apiVersion: msRest.OperationQueryParameter;
|
|
4
|
-
export declare const nextPageLink: msRest.OperationURLParameter;
|
|
5
|
-
export declare const organizationName: msRest.OperationURLParameter;
|
|
6
|
-
export declare const resourceGroupName: msRest.OperationURLParameter;
|
|
7
|
-
export declare const subscriptionId: msRest.OperationURLParameter;
|
|
8
|
-
//# sourceMappingURL=parameters.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"parameters.d.ts","sourceRoot":"","sources":["../../src/models/parameters.ts"],"names":[],"mappings":"AASA,OAAO,KAAK,MAAM,MAAM,mBAAmB,CAAC;AAE5C,eAAO,MAAM,cAAc,EAAE,MAAM,CAAC,kBASnC,CAAC;AACF,eAAO,MAAM,UAAU,EAAE,MAAM,CAAC,uBAW/B,CAAC;AACF,eAAO,MAAM,YAAY,EAAE,MAAM,CAAC,qBAUjC,CAAC;AACF,eAAO,MAAM,gBAAgB,EAAE,MAAM,CAAC,qBASrC,CAAC;AACF,eAAO,MAAM,iBAAiB,EAAE,MAAM,CAAC,qBAStC,CAAC;AACF,eAAO,MAAM,cAAc,EAAE,MAAM,CAAC,qBASnC,CAAC"}
|
package/esm/models/parameters.js
DELETED
|
@@ -1,72 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Copyright (c) Microsoft Corporation.
|
|
3
|
-
* Licensed under the MIT License.
|
|
4
|
-
*
|
|
5
|
-
* Code generated by Microsoft (R) AutoRest Code Generator.
|
|
6
|
-
* Changes may cause incorrect behavior and will be lost if the code is
|
|
7
|
-
* regenerated.
|
|
8
|
-
*/
|
|
9
|
-
export var acceptLanguage = {
|
|
10
|
-
parameterPath: "acceptLanguage",
|
|
11
|
-
mapper: {
|
|
12
|
-
serializedName: "accept-language",
|
|
13
|
-
defaultValue: 'en-US',
|
|
14
|
-
type: {
|
|
15
|
-
name: "String"
|
|
16
|
-
}
|
|
17
|
-
}
|
|
18
|
-
};
|
|
19
|
-
export var apiVersion = {
|
|
20
|
-
parameterPath: "apiVersion",
|
|
21
|
-
mapper: {
|
|
22
|
-
required: true,
|
|
23
|
-
isConstant: true,
|
|
24
|
-
serializedName: "api-version",
|
|
25
|
-
defaultValue: '2021-09-01-preview',
|
|
26
|
-
type: {
|
|
27
|
-
name: "String"
|
|
28
|
-
}
|
|
29
|
-
}
|
|
30
|
-
};
|
|
31
|
-
export var nextPageLink = {
|
|
32
|
-
parameterPath: "nextPageLink",
|
|
33
|
-
mapper: {
|
|
34
|
-
required: true,
|
|
35
|
-
serializedName: "nextLink",
|
|
36
|
-
type: {
|
|
37
|
-
name: "String"
|
|
38
|
-
}
|
|
39
|
-
},
|
|
40
|
-
skipEncoding: true
|
|
41
|
-
};
|
|
42
|
-
export var organizationName = {
|
|
43
|
-
parameterPath: "organizationName",
|
|
44
|
-
mapper: {
|
|
45
|
-
required: true,
|
|
46
|
-
serializedName: "organizationName",
|
|
47
|
-
type: {
|
|
48
|
-
name: "String"
|
|
49
|
-
}
|
|
50
|
-
}
|
|
51
|
-
};
|
|
52
|
-
export var resourceGroupName = {
|
|
53
|
-
parameterPath: "resourceGroupName",
|
|
54
|
-
mapper: {
|
|
55
|
-
required: true,
|
|
56
|
-
serializedName: "resourceGroupName",
|
|
57
|
-
type: {
|
|
58
|
-
name: "String"
|
|
59
|
-
}
|
|
60
|
-
}
|
|
61
|
-
};
|
|
62
|
-
export var subscriptionId = {
|
|
63
|
-
parameterPath: "subscriptionId",
|
|
64
|
-
mapper: {
|
|
65
|
-
required: true,
|
|
66
|
-
serializedName: "subscriptionId",
|
|
67
|
-
type: {
|
|
68
|
-
name: "String"
|
|
69
|
-
}
|
|
70
|
-
}
|
|
71
|
-
};
|
|
72
|
-
//# sourceMappingURL=parameters.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"parameters.js","sourceRoot":"","sources":["../../src/models/parameters.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAIH,MAAM,CAAC,IAAM,cAAc,GAA8B;IACvD,aAAa,EAAE,gBAAgB;IAC/B,MAAM,EAAE;QACN,cAAc,EAAE,iBAAiB;QACjC,YAAY,EAAE,OAAO;QACrB,IAAI,EAAE;YACJ,IAAI,EAAE,QAAQ;SACf;KACF;CACF,CAAC;AACF,MAAM,CAAC,IAAM,UAAU,GAAmC;IACxD,aAAa,EAAE,YAAY;IAC3B,MAAM,EAAE;QACN,QAAQ,EAAE,IAAI;QACd,UAAU,EAAE,IAAI;QAChB,cAAc,EAAE,aAAa;QAC7B,YAAY,EAAE,oBAAoB;QAClC,IAAI,EAAE;YACJ,IAAI,EAAE,QAAQ;SACf;KACF;CACF,CAAC;AACF,MAAM,CAAC,IAAM,YAAY,GAAiC;IACxD,aAAa,EAAE,cAAc;IAC7B,MAAM,EAAE;QACN,QAAQ,EAAE,IAAI;QACd,cAAc,EAAE,UAAU;QAC1B,IAAI,EAAE;YACJ,IAAI,EAAE,QAAQ;SACf;KACF;IACD,YAAY,EAAE,IAAI;CACnB,CAAC;AACF,MAAM,CAAC,IAAM,gBAAgB,GAAiC;IAC5D,aAAa,EAAE,kBAAkB;IACjC,MAAM,EAAE;QACN,QAAQ,EAAE,IAAI;QACd,cAAc,EAAE,kBAAkB;QAClC,IAAI,EAAE;YACJ,IAAI,EAAE,QAAQ;SACf;KACF;CACF,CAAC;AACF,MAAM,CAAC,IAAM,iBAAiB,GAAiC;IAC7D,aAAa,EAAE,mBAAmB;IAClC,MAAM,EAAE;QACN,QAAQ,EAAE,IAAI;QACd,cAAc,EAAE,mBAAmB;QACnC,IAAI,EAAE;YACJ,IAAI,EAAE,QAAQ;SACf;KACF;CACF,CAAC;AACF,MAAM,CAAC,IAAM,cAAc,GAAiC;IAC1D,aAAa,EAAE,gBAAgB;IAC/B,MAAM,EAAE;QACN,QAAQ,EAAE,IAAI;QACd,cAAc,EAAE,gBAAgB;QAChC,IAAI,EAAE;YACJ,IAAI,EAAE,QAAQ;SACf;KACF;CACF,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"validationsMappers.d.ts","sourceRoot":"","sources":["../../src/models/validationsMappers.ts"],"names":[],"mappings":"AAQA,OAAO,EACL,YAAY,EACZ,0BAA0B,EAC1B,iBAAiB,EACjB,WAAW,EACX,oBAAoB,EACpB,oCAAoC,EACpC,UAAU,EACV,UAAU,EACX,MAAM,mBAAmB,CAAC"}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Copyright (c) Microsoft Corporation.
|
|
3
|
-
* Licensed under the MIT License.
|
|
4
|
-
*
|
|
5
|
-
* Code generated by Microsoft (R) AutoRest Code Generator.
|
|
6
|
-
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
|
|
7
|
-
*/
|
|
8
|
-
export { BaseResource, ConfluentAgreementResource, ErrorResponseBody, OfferDetail, OrganizationResource, ResourceProviderDefaultErrorResponse, SystemData, UserDetail } from "../models/mappers";
|
|
9
|
-
//# sourceMappingURL=validationsMappers.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"validationsMappers.js","sourceRoot":"","sources":["../../src/models/validationsMappers.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAEH,OAAO,EACL,YAAY,EACZ,0BAA0B,EAC1B,iBAAiB,EACjB,WAAW,EACX,oBAAoB,EACpB,oCAAoC,EACpC,UAAU,EACV,UAAU,EACX,MAAM,mBAAmB,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/operations/index.ts"],"names":[],"mappings":"AASA,cAAc,yBAAyB,CAAC;AACxC,cAAc,0BAA0B,CAAC;AACzC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,eAAe,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/operations/index.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAEH,cAAc,yBAAyB,CAAC;AACxC,cAAc,0BAA0B,CAAC;AACzC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,eAAe,CAAC"}
|
|
@@ -1,61 +0,0 @@
|
|
|
1
|
-
import * as msRest from "@azure/ms-rest-js";
|
|
2
|
-
import * as Models from "../models";
|
|
3
|
-
import { ConfluentManagementClientContext } from "../confluentManagementClientContext";
|
|
4
|
-
/** Class representing a MarketplaceAgreements. */
|
|
5
|
-
export declare class MarketplaceAgreements {
|
|
6
|
-
private readonly client;
|
|
7
|
-
/**
|
|
8
|
-
* Create a MarketplaceAgreements.
|
|
9
|
-
* @param {ConfluentManagementClientContext} client Reference to the service client.
|
|
10
|
-
*/
|
|
11
|
-
constructor(client: ConfluentManagementClientContext);
|
|
12
|
-
/**
|
|
13
|
-
* @summary List Confluent marketplace agreements in the subscription.
|
|
14
|
-
* @param [options] The optional parameters
|
|
15
|
-
* @returns Promise<Models.MarketplaceAgreementsListResponse>
|
|
16
|
-
*/
|
|
17
|
-
list(options?: msRest.RequestOptionsBase): Promise<Models.MarketplaceAgreementsListResponse>;
|
|
18
|
-
/**
|
|
19
|
-
* @param callback The callback
|
|
20
|
-
*/
|
|
21
|
-
list(callback: msRest.ServiceCallback<Models.ConfluentAgreementResourceListResponse>): void;
|
|
22
|
-
/**
|
|
23
|
-
* @param options The optional parameters
|
|
24
|
-
* @param callback The callback
|
|
25
|
-
*/
|
|
26
|
-
list(options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.ConfluentAgreementResourceListResponse>): void;
|
|
27
|
-
/**
|
|
28
|
-
* @summary Create Confluent Marketplace agreement in the subscription.
|
|
29
|
-
* @param [options] The optional parameters
|
|
30
|
-
* @returns Promise<Models.MarketplaceAgreementsCreateResponse>
|
|
31
|
-
*/
|
|
32
|
-
create(options?: Models.MarketplaceAgreementsCreateOptionalParams): Promise<Models.MarketplaceAgreementsCreateResponse>;
|
|
33
|
-
/**
|
|
34
|
-
* @param callback The callback
|
|
35
|
-
*/
|
|
36
|
-
create(callback: msRest.ServiceCallback<Models.ConfluentAgreementResource>): void;
|
|
37
|
-
/**
|
|
38
|
-
* @param options The optional parameters
|
|
39
|
-
* @param callback The callback
|
|
40
|
-
*/
|
|
41
|
-
create(options: Models.MarketplaceAgreementsCreateOptionalParams, callback: msRest.ServiceCallback<Models.ConfluentAgreementResource>): void;
|
|
42
|
-
/**
|
|
43
|
-
* @summary List Confluent marketplace agreements in the subscription.
|
|
44
|
-
* @param nextPageLink The NextLink from the previous successful call to List operation.
|
|
45
|
-
* @param [options] The optional parameters
|
|
46
|
-
* @returns Promise<Models.MarketplaceAgreementsListNextResponse>
|
|
47
|
-
*/
|
|
48
|
-
listNext(nextPageLink: string, options?: msRest.RequestOptionsBase): Promise<Models.MarketplaceAgreementsListNextResponse>;
|
|
49
|
-
/**
|
|
50
|
-
* @param nextPageLink The NextLink from the previous successful call to List operation.
|
|
51
|
-
* @param callback The callback
|
|
52
|
-
*/
|
|
53
|
-
listNext(nextPageLink: string, callback: msRest.ServiceCallback<Models.ConfluentAgreementResourceListResponse>): void;
|
|
54
|
-
/**
|
|
55
|
-
* @param nextPageLink The NextLink from the previous successful call to List operation.
|
|
56
|
-
* @param options The optional parameters
|
|
57
|
-
* @param callback The callback
|
|
58
|
-
*/
|
|
59
|
-
listNext(nextPageLink: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.ConfluentAgreementResourceListResponse>): void;
|
|
60
|
-
}
|
|
61
|
-
//# sourceMappingURL=marketplaceAgreements.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"marketplaceAgreements.d.ts","sourceRoot":"","sources":["../../src/operations/marketplaceAgreements.ts"],"names":[],"mappings":"AASA,OAAO,KAAK,MAAM,MAAM,mBAAmB,CAAC;AAC5C,OAAO,KAAK,MAAM,MAAM,WAAW,CAAC;AAGpC,OAAO,EAAE,gCAAgC,EAAE,MAAM,qCAAqC,CAAC;AAEvF,kDAAkD;AAClD,qBAAa,qBAAqB;IAChC,OAAO,CAAC,QAAQ,CAAC,MAAM,CAAmC;IAE1D;;;OAGG;gBACS,MAAM,EAAE,gCAAgC;IAIpD;;;;OAIG;IACH,IAAI,CAAC,OAAO,CAAC,EAAE,MAAM,CAAC,kBAAkB,GAAG,OAAO,CAAC,MAAM,CAAC,iCAAiC,CAAC;IAC5F;;OAEG;IACH,IAAI,CAAC,QAAQ,EAAE,MAAM,CAAC,eAAe,CAAC,MAAM,CAAC,sCAAsC,CAAC,GAAG,IAAI;IAC3F;;;OAGG;IACH,IAAI,CAAC,OAAO,EAAE,MAAM,CAAC,kBAAkB,EAAE,QAAQ,EAAE,MAAM,CAAC,eAAe,CAAC,MAAM,CAAC,sCAAsC,CAAC,GAAG,IAAI;IAU/H;;;;OAIG;IACH,MAAM,CAAC,OAAO,CAAC,EAAE,MAAM,CAAC,yCAAyC,GAAG,OAAO,CAAC,MAAM,CAAC,mCAAmC,CAAC;IACvH;;OAEG;IACH,MAAM,CAAC,QAAQ,EAAE,MAAM,CAAC,eAAe,CAAC,MAAM,CAAC,0BAA0B,CAAC,GAAG,IAAI;IACjF;;;OAGG;IACH,MAAM,CAAC,OAAO,EAAE,MAAM,CAAC,yCAAyC,EAAE,QAAQ,EAAE,MAAM,CAAC,eAAe,CAAC,MAAM,CAAC,0BAA0B,CAAC,GAAG,IAAI;IAU5I;;;;;OAKG;IACH,QAAQ,CAAC,YAAY,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,MAAM,CAAC,kBAAkB,GAAG,OAAO,CAAC,MAAM,CAAC,qCAAqC,CAAC;IAC1H;;;OAGG;IACH,QAAQ,CAAC,YAAY,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,CAAC,eAAe,CAAC,MAAM,CAAC,sCAAsC,CAAC,GAAG,IAAI;IACrH;;;;OAIG;IACH,QAAQ,CAAC,YAAY,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,CAAC,kBAAkB,EAAE,QAAQ,EAAE,MAAM,CAAC,eAAe,CAAC,MAAM,CAAC,sCAAsC,CAAC,GAAG,IAAI;CAU1J"}
|
|
@@ -1,116 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Copyright (c) Microsoft Corporation.
|
|
3
|
-
* Licensed under the MIT License.
|
|
4
|
-
*
|
|
5
|
-
* Code generated by Microsoft (R) AutoRest Code Generator.
|
|
6
|
-
* Changes may cause incorrect behavior and will be lost if the code is
|
|
7
|
-
* regenerated.
|
|
8
|
-
*/
|
|
9
|
-
import * as msRest from "@azure/ms-rest-js";
|
|
10
|
-
import * as Mappers from "../models/marketplaceAgreementsMappers";
|
|
11
|
-
import * as Parameters from "../models/parameters";
|
|
12
|
-
/** Class representing a MarketplaceAgreements. */
|
|
13
|
-
var MarketplaceAgreements = /** @class */ (function () {
|
|
14
|
-
/**
|
|
15
|
-
* Create a MarketplaceAgreements.
|
|
16
|
-
* @param {ConfluentManagementClientContext} client Reference to the service client.
|
|
17
|
-
*/
|
|
18
|
-
function MarketplaceAgreements(client) {
|
|
19
|
-
this.client = client;
|
|
20
|
-
}
|
|
21
|
-
MarketplaceAgreements.prototype.list = function (options, callback) {
|
|
22
|
-
return this.client.sendOperationRequest({
|
|
23
|
-
options: options
|
|
24
|
-
}, listOperationSpec, callback);
|
|
25
|
-
};
|
|
26
|
-
MarketplaceAgreements.prototype.create = function (options, callback) {
|
|
27
|
-
return this.client.sendOperationRequest({
|
|
28
|
-
options: options
|
|
29
|
-
}, createOperationSpec, callback);
|
|
30
|
-
};
|
|
31
|
-
MarketplaceAgreements.prototype.listNext = function (nextPageLink, options, callback) {
|
|
32
|
-
return this.client.sendOperationRequest({
|
|
33
|
-
nextPageLink: nextPageLink,
|
|
34
|
-
options: options
|
|
35
|
-
}, listNextOperationSpec, callback);
|
|
36
|
-
};
|
|
37
|
-
return MarketplaceAgreements;
|
|
38
|
-
}());
|
|
39
|
-
export { MarketplaceAgreements };
|
|
40
|
-
// Operation Specifications
|
|
41
|
-
var serializer = new msRest.Serializer(Mappers);
|
|
42
|
-
var listOperationSpec = {
|
|
43
|
-
httpMethod: "GET",
|
|
44
|
-
path: "subscriptions/{subscriptionId}/providers/Microsoft.Confluent/agreements",
|
|
45
|
-
urlParameters: [
|
|
46
|
-
Parameters.subscriptionId
|
|
47
|
-
],
|
|
48
|
-
queryParameters: [
|
|
49
|
-
Parameters.apiVersion
|
|
50
|
-
],
|
|
51
|
-
headerParameters: [
|
|
52
|
-
Parameters.acceptLanguage
|
|
53
|
-
],
|
|
54
|
-
responses: {
|
|
55
|
-
200: {
|
|
56
|
-
bodyMapper: Mappers.ConfluentAgreementResourceListResponse
|
|
57
|
-
},
|
|
58
|
-
default: {
|
|
59
|
-
bodyMapper: Mappers.ResourceProviderDefaultErrorResponse
|
|
60
|
-
}
|
|
61
|
-
},
|
|
62
|
-
serializer: serializer
|
|
63
|
-
};
|
|
64
|
-
var createOperationSpec = {
|
|
65
|
-
httpMethod: "PUT",
|
|
66
|
-
path: "subscriptions/{subscriptionId}/providers/Microsoft.Confluent/agreements/default",
|
|
67
|
-
urlParameters: [
|
|
68
|
-
Parameters.subscriptionId
|
|
69
|
-
],
|
|
70
|
-
queryParameters: [
|
|
71
|
-
Parameters.apiVersion
|
|
72
|
-
],
|
|
73
|
-
headerParameters: [
|
|
74
|
-
Parameters.acceptLanguage
|
|
75
|
-
],
|
|
76
|
-
requestBody: {
|
|
77
|
-
parameterPath: [
|
|
78
|
-
"options",
|
|
79
|
-
"body"
|
|
80
|
-
],
|
|
81
|
-
mapper: Mappers.ConfluentAgreementResource
|
|
82
|
-
},
|
|
83
|
-
responses: {
|
|
84
|
-
200: {
|
|
85
|
-
bodyMapper: Mappers.ConfluentAgreementResource
|
|
86
|
-
},
|
|
87
|
-
default: {
|
|
88
|
-
bodyMapper: Mappers.ResourceProviderDefaultErrorResponse
|
|
89
|
-
}
|
|
90
|
-
},
|
|
91
|
-
serializer: serializer
|
|
92
|
-
};
|
|
93
|
-
var listNextOperationSpec = {
|
|
94
|
-
httpMethod: "GET",
|
|
95
|
-
baseUrl: "https://management.azure.com",
|
|
96
|
-
path: "{nextLink}",
|
|
97
|
-
urlParameters: [
|
|
98
|
-
Parameters.nextPageLink
|
|
99
|
-
],
|
|
100
|
-
queryParameters: [
|
|
101
|
-
Parameters.apiVersion
|
|
102
|
-
],
|
|
103
|
-
headerParameters: [
|
|
104
|
-
Parameters.acceptLanguage
|
|
105
|
-
],
|
|
106
|
-
responses: {
|
|
107
|
-
200: {
|
|
108
|
-
bodyMapper: Mappers.ConfluentAgreementResourceListResponse
|
|
109
|
-
},
|
|
110
|
-
default: {
|
|
111
|
-
bodyMapper: Mappers.ResourceProviderDefaultErrorResponse
|
|
112
|
-
}
|
|
113
|
-
},
|
|
114
|
-
serializer: serializer
|
|
115
|
-
};
|
|
116
|
-
//# sourceMappingURL=marketplaceAgreements.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"marketplaceAgreements.js","sourceRoot":"","sources":["../../src/operations/marketplaceAgreements.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAEH,OAAO,KAAK,MAAM,MAAM,mBAAmB,CAAC;AAE5C,OAAO,KAAK,OAAO,MAAM,wCAAwC,CAAC;AAClE,OAAO,KAAK,UAAU,MAAM,sBAAsB,CAAC;AAGnD,kDAAkD;AAClD;IAGE;;;OAGG;IACH,+BAAY,MAAwC;QAClD,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;IACvB,CAAC;IAiBD,oCAAI,GAAJ,UAAK,OAA2G,EAAE,QAAgF;QAChM,OAAO,IAAI,CAAC,MAAM,CAAC,oBAAoB,CACrC;YACE,OAAO,SAAA;SACR,EACD,iBAAiB,EACjB,QAAQ,CAAsD,CAAC;IACnE,CAAC;IAiBD,sCAAM,GAAN,UAAO,OAAsH,EAAE,QAAoE;QACjM,OAAO,IAAI,CAAC,MAAM,CAAC,oBAAoB,CACrC;YACE,OAAO,SAAA;SACR,EACD,mBAAmB,EACnB,QAAQ,CAAwD,CAAC;IACrE,CAAC;IAoBD,wCAAQ,GAAR,UAAS,YAAoB,EAAE,OAA2G,EAAE,QAAgF;QAC1N,OAAO,IAAI,CAAC,MAAM,CAAC,oBAAoB,CACrC;YACE,YAAY,cAAA;YACZ,OAAO,SAAA;SACR,EACD,qBAAqB,EACrB,QAAQ,CAA0D,CAAC;IACvE,CAAC;IACH,4BAAC;AAAD,CAAC,AAtFD,IAsFC;;AAED,2BAA2B;AAC3B,IAAM,UAAU,GAAG,IAAI,MAAM,CAAC,UAAU,CAAC,OAAO,CAAC,CAAC;AAClD,IAAM,iBAAiB,GAAyB;IAC9C,UAAU,EAAE,KAAK;IACjB,IAAI,EAAE,yEAAyE;IAC/E,aAAa,EAAE;QACb,UAAU,CAAC,cAAc;KAC1B;IACD,eAAe,EAAE;QACf,UAAU,CAAC,UAAU;KACtB;IACD,gBAAgB,EAAE;QAChB,UAAU,CAAC,cAAc;KAC1B;IACD,SAAS,EAAE;QACT,GAAG,EAAE;YACH,UAAU,EAAE,OAAO,CAAC,sCAAsC;SAC3D;QACD,OAAO,EAAE;YACP,UAAU,EAAE,OAAO,CAAC,oCAAoC;SACzD;KACF;IACD,UAAU,YAAA;CACX,CAAC;AAEF,IAAM,mBAAmB,GAAyB;IAChD,UAAU,EAAE,KAAK;IACjB,IAAI,EAAE,iFAAiF;IACvF,aAAa,EAAE;QACb,UAAU,CAAC,cAAc;KAC1B;IACD,eAAe,EAAE;QACf,UAAU,CAAC,UAAU;KACtB;IACD,gBAAgB,EAAE;QAChB,UAAU,CAAC,cAAc;KAC1B;IACD,WAAW,EAAE;QACX,aAAa,EAAE;YACb,SAAS;YACT,MAAM;SACP;QACD,MAAM,EAAE,OAAO,CAAC,0BAA0B;KAC3C;IACD,SAAS,EAAE;QACT,GAAG,EAAE;YACH,UAAU,EAAE,OAAO,CAAC,0BAA0B;SAC/C;QACD,OAAO,EAAE;YACP,UAAU,EAAE,OAAO,CAAC,oCAAoC;SACzD;KACF;IACD,UAAU,YAAA;CACX,CAAC;AAEF,IAAM,qBAAqB,GAAyB;IAClD,UAAU,EAAE,KAAK;IACjB,OAAO,EAAE,8BAA8B;IACvC,IAAI,EAAE,YAAY;IAClB,aAAa,EAAE;QACb,UAAU,CAAC,YAAY;KACxB;IACD,eAAe,EAAE;QACf,UAAU,CAAC,UAAU;KACtB;IACD,gBAAgB,EAAE;QAChB,UAAU,CAAC,cAAc;KAC1B;IACD,SAAS,EAAE;QACT,GAAG,EAAE;YACH,UAAU,EAAE,OAAO,CAAC,sCAAsC;SAC3D;QACD,OAAO,EAAE;YACP,UAAU,EAAE,OAAO,CAAC,oCAAoC;SACzD;KACF;IACD,UAAU,YAAA;CACX,CAAC"}
|
|
@@ -1,157 +0,0 @@
|
|
|
1
|
-
import * as msRest from "@azure/ms-rest-js";
|
|
2
|
-
import * as msRestAzure from "@azure/ms-rest-azure-js";
|
|
3
|
-
import * as Models from "../models";
|
|
4
|
-
import { ConfluentManagementClientContext } from "../confluentManagementClientContext";
|
|
5
|
-
/** Class representing a Organization. */
|
|
6
|
-
export declare class Organization {
|
|
7
|
-
private readonly client;
|
|
8
|
-
/**
|
|
9
|
-
* Create a Organization.
|
|
10
|
-
* @param {ConfluentManagementClientContext} client Reference to the service client.
|
|
11
|
-
*/
|
|
12
|
-
constructor(client: ConfluentManagementClientContext);
|
|
13
|
-
/**
|
|
14
|
-
* @summary List all organizations under the specified subscription.
|
|
15
|
-
* @param [options] The optional parameters
|
|
16
|
-
* @returns Promise<Models.OrganizationListBySubscriptionResponse>
|
|
17
|
-
*/
|
|
18
|
-
listBySubscription(options?: msRest.RequestOptionsBase): Promise<Models.OrganizationListBySubscriptionResponse>;
|
|
19
|
-
/**
|
|
20
|
-
* @param callback The callback
|
|
21
|
-
*/
|
|
22
|
-
listBySubscription(callback: msRest.ServiceCallback<Models.OrganizationResourceListResult>): void;
|
|
23
|
-
/**
|
|
24
|
-
* @param options The optional parameters
|
|
25
|
-
* @param callback The callback
|
|
26
|
-
*/
|
|
27
|
-
listBySubscription(options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.OrganizationResourceListResult>): void;
|
|
28
|
-
/**
|
|
29
|
-
* @summary List all Organizations under the specified resource group.
|
|
30
|
-
* @param resourceGroupName Resource group name
|
|
31
|
-
* @param [options] The optional parameters
|
|
32
|
-
* @returns Promise<Models.OrganizationListByResourceGroupResponse>
|
|
33
|
-
*/
|
|
34
|
-
listByResourceGroup(resourceGroupName: string, options?: msRest.RequestOptionsBase): Promise<Models.OrganizationListByResourceGroupResponse>;
|
|
35
|
-
/**
|
|
36
|
-
* @param resourceGroupName Resource group name
|
|
37
|
-
* @param callback The callback
|
|
38
|
-
*/
|
|
39
|
-
listByResourceGroup(resourceGroupName: string, callback: msRest.ServiceCallback<Models.OrganizationResourceListResult>): void;
|
|
40
|
-
/**
|
|
41
|
-
* @param resourceGroupName Resource group name
|
|
42
|
-
* @param options The optional parameters
|
|
43
|
-
* @param callback The callback
|
|
44
|
-
*/
|
|
45
|
-
listByResourceGroup(resourceGroupName: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.OrganizationResourceListResult>): void;
|
|
46
|
-
/**
|
|
47
|
-
* @summary Get the properties of a specific Organization resource.
|
|
48
|
-
* @param resourceGroupName Resource group name
|
|
49
|
-
* @param organizationName Organization resource name
|
|
50
|
-
* @param [options] The optional parameters
|
|
51
|
-
* @returns Promise<Models.OrganizationGetResponse>
|
|
52
|
-
*/
|
|
53
|
-
get(resourceGroupName: string, organizationName: string, options?: msRest.RequestOptionsBase): Promise<Models.OrganizationGetResponse>;
|
|
54
|
-
/**
|
|
55
|
-
* @param resourceGroupName Resource group name
|
|
56
|
-
* @param organizationName Organization resource name
|
|
57
|
-
* @param callback The callback
|
|
58
|
-
*/
|
|
59
|
-
get(resourceGroupName: string, organizationName: string, callback: msRest.ServiceCallback<Models.OrganizationResource>): void;
|
|
60
|
-
/**
|
|
61
|
-
* @param resourceGroupName Resource group name
|
|
62
|
-
* @param organizationName Organization resource name
|
|
63
|
-
* @param options The optional parameters
|
|
64
|
-
* @param callback The callback
|
|
65
|
-
*/
|
|
66
|
-
get(resourceGroupName: string, organizationName: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.OrganizationResource>): void;
|
|
67
|
-
/**
|
|
68
|
-
* @summary Create Organization resource
|
|
69
|
-
* @param resourceGroupName Resource group name
|
|
70
|
-
* @param organizationName Organization resource name
|
|
71
|
-
* @param [options] The optional parameters
|
|
72
|
-
* @returns Promise<Models.OrganizationCreateResponse>
|
|
73
|
-
*/
|
|
74
|
-
create(resourceGroupName: string, organizationName: string, options?: Models.OrganizationCreateOptionalParams): Promise<Models.OrganizationCreateResponse>;
|
|
75
|
-
/**
|
|
76
|
-
* @summary Update Organization resource
|
|
77
|
-
* @param resourceGroupName Resource group name
|
|
78
|
-
* @param organizationName Organization resource name
|
|
79
|
-
* @param [options] The optional parameters
|
|
80
|
-
* @returns Promise<Models.OrganizationUpdateResponse>
|
|
81
|
-
*/
|
|
82
|
-
update(resourceGroupName: string, organizationName: string, options?: Models.OrganizationUpdateOptionalParams): Promise<Models.OrganizationUpdateResponse>;
|
|
83
|
-
/**
|
|
84
|
-
* @param resourceGroupName Resource group name
|
|
85
|
-
* @param organizationName Organization resource name
|
|
86
|
-
* @param callback The callback
|
|
87
|
-
*/
|
|
88
|
-
update(resourceGroupName: string, organizationName: string, callback: msRest.ServiceCallback<Models.OrganizationResource>): void;
|
|
89
|
-
/**
|
|
90
|
-
* @param resourceGroupName Resource group name
|
|
91
|
-
* @param organizationName Organization resource name
|
|
92
|
-
* @param options The optional parameters
|
|
93
|
-
* @param callback The callback
|
|
94
|
-
*/
|
|
95
|
-
update(resourceGroupName: string, organizationName: string, options: Models.OrganizationUpdateOptionalParams, callback: msRest.ServiceCallback<Models.OrganizationResource>): void;
|
|
96
|
-
/**
|
|
97
|
-
* @summary Delete Organization resource
|
|
98
|
-
* @param resourceGroupName Resource group name
|
|
99
|
-
* @param organizationName Organization resource name
|
|
100
|
-
* @param [options] The optional parameters
|
|
101
|
-
* @returns Promise<msRest.RestResponse>
|
|
102
|
-
*/
|
|
103
|
-
deleteMethod(resourceGroupName: string, organizationName: string, options?: msRest.RequestOptionsBase): Promise<msRest.RestResponse>;
|
|
104
|
-
/**
|
|
105
|
-
* @summary Create Organization resource
|
|
106
|
-
* @param resourceGroupName Resource group name
|
|
107
|
-
* @param organizationName Organization resource name
|
|
108
|
-
* @param [options] The optional parameters
|
|
109
|
-
* @returns Promise<msRestAzure.LROPoller>
|
|
110
|
-
*/
|
|
111
|
-
beginCreate(resourceGroupName: string, organizationName: string, options?: Models.OrganizationBeginCreateOptionalParams): Promise<msRestAzure.LROPoller>;
|
|
112
|
-
/**
|
|
113
|
-
* @summary Delete Organization resource
|
|
114
|
-
* @param resourceGroupName Resource group name
|
|
115
|
-
* @param organizationName Organization resource name
|
|
116
|
-
* @param [options] The optional parameters
|
|
117
|
-
* @returns Promise<msRestAzure.LROPoller>
|
|
118
|
-
*/
|
|
119
|
-
beginDeleteMethod(resourceGroupName: string, organizationName: string, options?: msRest.RequestOptionsBase): Promise<msRestAzure.LROPoller>;
|
|
120
|
-
/**
|
|
121
|
-
* @summary List all organizations under the specified subscription.
|
|
122
|
-
* @param nextPageLink The NextLink from the previous successful call to List operation.
|
|
123
|
-
* @param [options] The optional parameters
|
|
124
|
-
* @returns Promise<Models.OrganizationListBySubscriptionNextResponse>
|
|
125
|
-
*/
|
|
126
|
-
listBySubscriptionNext(nextPageLink: string, options?: msRest.RequestOptionsBase): Promise<Models.OrganizationListBySubscriptionNextResponse>;
|
|
127
|
-
/**
|
|
128
|
-
* @param nextPageLink The NextLink from the previous successful call to List operation.
|
|
129
|
-
* @param callback The callback
|
|
130
|
-
*/
|
|
131
|
-
listBySubscriptionNext(nextPageLink: string, callback: msRest.ServiceCallback<Models.OrganizationResourceListResult>): void;
|
|
132
|
-
/**
|
|
133
|
-
* @param nextPageLink The NextLink from the previous successful call to List operation.
|
|
134
|
-
* @param options The optional parameters
|
|
135
|
-
* @param callback The callback
|
|
136
|
-
*/
|
|
137
|
-
listBySubscriptionNext(nextPageLink: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.OrganizationResourceListResult>): void;
|
|
138
|
-
/**
|
|
139
|
-
* @summary List all Organizations under the specified resource group.
|
|
140
|
-
* @param nextPageLink The NextLink from the previous successful call to List operation.
|
|
141
|
-
* @param [options] The optional parameters
|
|
142
|
-
* @returns Promise<Models.OrganizationListByResourceGroupNextResponse>
|
|
143
|
-
*/
|
|
144
|
-
listByResourceGroupNext(nextPageLink: string, options?: msRest.RequestOptionsBase): Promise<Models.OrganizationListByResourceGroupNextResponse>;
|
|
145
|
-
/**
|
|
146
|
-
* @param nextPageLink The NextLink from the previous successful call to List operation.
|
|
147
|
-
* @param callback The callback
|
|
148
|
-
*/
|
|
149
|
-
listByResourceGroupNext(nextPageLink: string, callback: msRest.ServiceCallback<Models.OrganizationResourceListResult>): void;
|
|
150
|
-
/**
|
|
151
|
-
* @param nextPageLink The NextLink from the previous successful call to List operation.
|
|
152
|
-
* @param options The optional parameters
|
|
153
|
-
* @param callback The callback
|
|
154
|
-
*/
|
|
155
|
-
listByResourceGroupNext(nextPageLink: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.OrganizationResourceListResult>): void;
|
|
156
|
-
}
|
|
157
|
-
//# sourceMappingURL=organization.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"organization.d.ts","sourceRoot":"","sources":["../../src/operations/organization.ts"],"names":[],"mappings":"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"}
|