@azure/arm-changeanalysis 1.1.1 → 2.0.0

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.
Files changed (132) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/LICENSE +21 -0
  3. package/README.md +69 -81
  4. package/dist/index.js +1099 -0
  5. package/dist/index.js.map +1 -0
  6. package/dist/index.min.js +1 -0
  7. package/dist/index.min.js.map +1 -0
  8. package/dist-esm/src/azureChangeAnalysisManagementClient.d.ts +20 -0
  9. package/dist-esm/src/azureChangeAnalysisManagementClient.d.ts.map +1 -0
  10. package/dist-esm/src/azureChangeAnalysisManagementClient.js +53 -0
  11. package/dist-esm/src/azureChangeAnalysisManagementClient.js.map +1 -0
  12. package/dist-esm/src/index.d.ts +5 -0
  13. package/dist-esm/src/index.d.ts.map +1 -0
  14. package/dist-esm/src/index.js +12 -0
  15. package/dist-esm/src/index.js.map +1 -0
  16. package/dist-esm/src/models/index.d.ts +240 -0
  17. package/dist-esm/src/models/index.d.ts.map +1 -0
  18. package/dist-esm/src/models/index.js +22 -0
  19. package/dist-esm/src/models/index.js.map +1 -0
  20. package/dist-esm/src/models/mappers.d.ts +14 -0
  21. package/dist-esm/src/models/mappers.d.ts.map +1 -0
  22. package/{esm → dist-esm/src}/models/mappers.js +172 -228
  23. package/dist-esm/src/models/mappers.js.map +1 -0
  24. package/dist-esm/src/models/parameters.d.ts +12 -0
  25. package/dist-esm/src/models/parameters.d.ts.map +1 -0
  26. package/{esm → dist-esm/src}/models/parameters.js +51 -46
  27. package/dist-esm/src/models/parameters.js.map +1 -0
  28. package/dist-esm/src/operations/changes.d.ts +71 -0
  29. package/dist-esm/src/operations/changes.d.ts.map +1 -0
  30. package/dist-esm/src/operations/changes.js +269 -0
  31. package/dist-esm/src/operations/changes.js.map +1 -0
  32. package/{esm → dist-esm/src}/operations/index.d.ts +0 -0
  33. package/dist-esm/src/operations/index.d.ts.map +1 -0
  34. package/{esm → dist-esm/src}/operations/index.js +1 -2
  35. package/dist-esm/src/operations/index.js.map +1 -0
  36. package/dist-esm/src/operations/operations.d.ts +34 -0
  37. package/dist-esm/src/operations/operations.d.ts.map +1 -0
  38. package/dist-esm/src/operations/operations.js +122 -0
  39. package/dist-esm/src/operations/operations.js.map +1 -0
  40. package/dist-esm/src/operations/resourceChanges.d.ts +43 -0
  41. package/dist-esm/src/operations/resourceChanges.d.ts.map +1 -0
  42. package/dist-esm/src/operations/resourceChanges.js +141 -0
  43. package/dist-esm/src/operations/resourceChanges.js.map +1 -0
  44. package/dist-esm/src/operationsInterfaces/changes.d.ts +23 -0
  45. package/dist-esm/src/operationsInterfaces/changes.d.ts.map +1 -0
  46. package/{esm/models/index.js → dist-esm/src/operationsInterfaces/changes.js} +2 -1
  47. package/dist-esm/src/operationsInterfaces/changes.js.map +1 -0
  48. package/dist-esm/src/operationsInterfaces/index.d.ts +4 -0
  49. package/dist-esm/src/operationsInterfaces/index.d.ts.map +1 -0
  50. package/dist-esm/src/operationsInterfaces/index.js +11 -0
  51. package/dist-esm/src/operationsInterfaces/index.js.map +1 -0
  52. package/dist-esm/src/operationsInterfaces/operations.d.ts +12 -0
  53. package/dist-esm/src/operationsInterfaces/operations.d.ts.map +1 -0
  54. package/dist-esm/src/operationsInterfaces/operations.js +9 -0
  55. package/dist-esm/src/operationsInterfaces/operations.js.map +1 -0
  56. package/dist-esm/src/operationsInterfaces/resourceChanges.d.ts +15 -0
  57. package/dist-esm/src/operationsInterfaces/resourceChanges.d.ts.map +1 -0
  58. package/dist-esm/src/operationsInterfaces/resourceChanges.js +9 -0
  59. package/dist-esm/src/operationsInterfaces/resourceChanges.js.map +1 -0
  60. package/dist-esm/test/sampleTest.d.ts +2 -0
  61. package/dist-esm/test/sampleTest.d.ts.map +1 -0
  62. package/dist-esm/test/sampleTest.js +40 -0
  63. package/dist-esm/test/sampleTest.js.map +1 -0
  64. package/package.json +63 -32
  65. package/review/arm-changeanalysis.api.md +230 -0
  66. package/rollup.config.js +181 -30
  67. package/src/azureChangeAnalysisManagementClient.ts +64 -36
  68. package/src/index.ts +12 -0
  69. package/src/models/index.ts +191 -455
  70. package/src/models/mappers.ts +175 -240
  71. package/src/models/parameters.ts +65 -47
  72. package/src/operations/changes.ts +267 -173
  73. package/src/operations/index.ts +1 -2
  74. package/src/operations/operations.ts +89 -79
  75. package/src/operations/resourceChanges.ts +126 -95
  76. package/src/operationsInterfaces/changes.ts +45 -0
  77. package/src/{models/operationsMappers.ts → operationsInterfaces/index.ts} +3 -8
  78. package/src/operationsInterfaces/operations.ts +26 -0
  79. package/src/operationsInterfaces/resourceChanges.ts +29 -0
  80. package/tsconfig.json +3 -3
  81. package/types/arm-changeanalysis.d.ts +337 -0
  82. package/types/tsdoc-metadata.json +11 -0
  83. package/dist/arm-changeanalysis.js +0 -1107
  84. package/dist/arm-changeanalysis.js.map +0 -1
  85. package/dist/arm-changeanalysis.min.js +0 -1
  86. package/dist/arm-changeanalysis.min.js.map +0 -1
  87. package/esm/azureChangeAnalysisManagementClient.d.ts +0 -26
  88. package/esm/azureChangeAnalysisManagementClient.d.ts.map +0 -1
  89. package/esm/azureChangeAnalysisManagementClient.js +0 -39
  90. package/esm/azureChangeAnalysisManagementClient.js.map +0 -1
  91. package/esm/azureChangeAnalysisManagementClientContext.d.ts +0 -22
  92. package/esm/azureChangeAnalysisManagementClientContext.d.ts.map +0 -1
  93. package/esm/azureChangeAnalysisManagementClientContext.js +0 -60
  94. package/esm/azureChangeAnalysisManagementClientContext.js.map +0 -1
  95. package/esm/models/changesMappers.d.ts +0 -2
  96. package/esm/models/changesMappers.d.ts.map +0 -1
  97. package/esm/models/changesMappers.js +0 -9
  98. package/esm/models/changesMappers.js.map +0 -1
  99. package/esm/models/index.d.ts +0 -505
  100. package/esm/models/index.d.ts.map +0 -1
  101. package/esm/models/index.js.map +0 -1
  102. package/esm/models/mappers.d.ts +0 -18
  103. package/esm/models/mappers.d.ts.map +0 -1
  104. package/esm/models/mappers.js.map +0 -1
  105. package/esm/models/operationsMappers.d.ts +0 -2
  106. package/esm/models/operationsMappers.d.ts.map +0 -1
  107. package/esm/models/operationsMappers.js +0 -9
  108. package/esm/models/operationsMappers.js.map +0 -1
  109. package/esm/models/parameters.d.ts +0 -11
  110. package/esm/models/parameters.d.ts.map +0 -1
  111. package/esm/models/parameters.js.map +0 -1
  112. package/esm/models/resourceChangesMappers.d.ts +0 -2
  113. package/esm/models/resourceChangesMappers.d.ts.map +0 -1
  114. package/esm/models/resourceChangesMappers.js +0 -9
  115. package/esm/models/resourceChangesMappers.js.map +0 -1
  116. package/esm/operations/changes.d.ts +0 -110
  117. package/esm/operations/changes.d.ts.map +0 -1
  118. package/esm/operations/changes.js +0 -160
  119. package/esm/operations/changes.js.map +0 -1
  120. package/esm/operations/index.d.ts.map +0 -1
  121. package/esm/operations/index.js.map +0 -1
  122. package/esm/operations/operations.d.ts +0 -48
  123. package/esm/operations/operations.d.ts.map +0 -1
  124. package/esm/operations/operations.js +0 -81
  125. package/esm/operations/operations.js.map +0 -1
  126. package/esm/operations/resourceChanges.d.ts +0 -63
  127. package/esm/operations/resourceChanges.d.ts.map +0 -1
  128. package/esm/operations/resourceChanges.js +0 -93
  129. package/esm/operations/resourceChanges.js.map +0 -1
  130. package/src/azureChangeAnalysisManagementClientContext.ts +0 -67
  131. package/src/models/changesMappers.ts +0 -22
  132. package/src/models/resourceChangesMappers.ts +0 -22
@@ -1,110 +0,0 @@
1
- import * as msRest from "@azure/ms-rest-js";
2
- import * as Models from "../models";
3
- import { AzureChangeAnalysisManagementClientContext } from "../azureChangeAnalysisManagementClientContext";
4
- /** Class representing a Changes. */
5
- export declare class Changes {
6
- private readonly client;
7
- /**
8
- * Create a Changes.
9
- * @param {AzureChangeAnalysisManagementClientContext} client Reference to the service client.
10
- */
11
- constructor(client: AzureChangeAnalysisManagementClientContext);
12
- /**
13
- * @summary List the changes of a resource group within the specified time range. Customer data
14
- * will always be masked.
15
- * @param resourceGroupName The name of the resource group. The name is case insensitive.
16
- * @param startTime Specifies the start time of the changes request.
17
- * @param endTime Specifies the end time of the changes request.
18
- * @param [options] The optional parameters
19
- * @returns Promise<Models.ChangesListChangesByResourceGroupResponse>
20
- */
21
- listChangesByResourceGroup(resourceGroupName: string, startTime: Date | string, endTime: Date | string, options?: Models.ChangesListChangesByResourceGroupOptionalParams): Promise<Models.ChangesListChangesByResourceGroupResponse>;
22
- /**
23
- * @param resourceGroupName The name of the resource group. The name is case insensitive.
24
- * @param startTime Specifies the start time of the changes request.
25
- * @param endTime Specifies the end time of the changes request.
26
- * @param callback The callback
27
- */
28
- listChangesByResourceGroup(resourceGroupName: string, startTime: Date | string, endTime: Date | string, callback: msRest.ServiceCallback<Models.ChangeList>): void;
29
- /**
30
- * @param resourceGroupName The name of the resource group. The name is case insensitive.
31
- * @param startTime Specifies the start time of the changes request.
32
- * @param endTime Specifies the end time of the changes request.
33
- * @param options The optional parameters
34
- * @param callback The callback
35
- */
36
- listChangesByResourceGroup(resourceGroupName: string, startTime: Date | string, endTime: Date | string, options: Models.ChangesListChangesByResourceGroupOptionalParams, callback: msRest.ServiceCallback<Models.ChangeList>): void;
37
- /**
38
- * @summary List the changes of a subscription within the specified time range. Customer data will
39
- * always be masked.
40
- * @param startTime Specifies the start time of the changes request.
41
- * @param endTime Specifies the end time of the changes request.
42
- * @param [options] The optional parameters
43
- * @returns Promise<Models.ChangesListChangesBySubscriptionResponse>
44
- */
45
- listChangesBySubscription(startTime: Date | string, endTime: Date | string, options?: Models.ChangesListChangesBySubscriptionOptionalParams): Promise<Models.ChangesListChangesBySubscriptionResponse>;
46
- /**
47
- * @param startTime Specifies the start time of the changes request.
48
- * @param endTime Specifies the end time of the changes request.
49
- * @param callback The callback
50
- */
51
- listChangesBySubscription(startTime: Date | string, endTime: Date | string, callback: msRest.ServiceCallback<Models.ChangeList>): void;
52
- /**
53
- * @param startTime Specifies the start time of the changes request.
54
- * @param endTime Specifies the end time of the changes request.
55
- * @param options The optional parameters
56
- * @param callback The callback
57
- */
58
- listChangesBySubscription(startTime: Date | string, endTime: Date | string, options: Models.ChangesListChangesBySubscriptionOptionalParams, callback: msRest.ServiceCallback<Models.ChangeList>): void;
59
- /**
60
- * @summary List the changes of a resource group within the specified time range. Customer data
61
- * will always be masked.
62
- * @param nextPageLink The NextLink from the previous successful call to List operation.
63
- * @param startTime Specifies the start time of the changes request.
64
- * @param endTime Specifies the end time of the changes request.
65
- * @param [options] The optional parameters
66
- * @returns Promise<Models.ChangesListChangesByResourceGroupNextResponse>
67
- */
68
- listChangesByResourceGroupNext(nextPageLink: string, startTime: Date | string, endTime: Date | string, options?: Models.ChangesListChangesByResourceGroupNextOptionalParams): Promise<Models.ChangesListChangesByResourceGroupNextResponse>;
69
- /**
70
- * @param nextPageLink The NextLink from the previous successful call to List operation.
71
- * @param startTime Specifies the start time of the changes request.
72
- * @param endTime Specifies the end time of the changes request.
73
- * @param callback The callback
74
- */
75
- listChangesByResourceGroupNext(nextPageLink: string, startTime: Date | string, endTime: Date | string, callback: msRest.ServiceCallback<Models.ChangeList>): void;
76
- /**
77
- * @param nextPageLink The NextLink from the previous successful call to List operation.
78
- * @param startTime Specifies the start time of the changes request.
79
- * @param endTime Specifies the end time of the changes request.
80
- * @param options The optional parameters
81
- * @param callback The callback
82
- */
83
- listChangesByResourceGroupNext(nextPageLink: string, startTime: Date | string, endTime: Date | string, options: Models.ChangesListChangesByResourceGroupNextOptionalParams, callback: msRest.ServiceCallback<Models.ChangeList>): void;
84
- /**
85
- * @summary List the changes of a subscription within the specified time range. Customer data will
86
- * always be masked.
87
- * @param nextPageLink The NextLink from the previous successful call to List operation.
88
- * @param startTime Specifies the start time of the changes request.
89
- * @param endTime Specifies the end time of the changes request.
90
- * @param [options] The optional parameters
91
- * @returns Promise<Models.ChangesListChangesBySubscriptionNextResponse>
92
- */
93
- listChangesBySubscriptionNext(nextPageLink: string, startTime: Date | string, endTime: Date | string, options?: Models.ChangesListChangesBySubscriptionNextOptionalParams): Promise<Models.ChangesListChangesBySubscriptionNextResponse>;
94
- /**
95
- * @param nextPageLink The NextLink from the previous successful call to List operation.
96
- * @param startTime Specifies the start time of the changes request.
97
- * @param endTime Specifies the end time of the changes request.
98
- * @param callback The callback
99
- */
100
- listChangesBySubscriptionNext(nextPageLink: string, startTime: Date | string, endTime: Date | string, callback: msRest.ServiceCallback<Models.ChangeList>): void;
101
- /**
102
- * @param nextPageLink The NextLink from the previous successful call to List operation.
103
- * @param startTime Specifies the start time of the changes request.
104
- * @param endTime Specifies the end time of the changes request.
105
- * @param options The optional parameters
106
- * @param callback The callback
107
- */
108
- listChangesBySubscriptionNext(nextPageLink: string, startTime: Date | string, endTime: Date | string, options: Models.ChangesListChangesBySubscriptionNextOptionalParams, callback: msRest.ServiceCallback<Models.ChangeList>): void;
109
- }
110
- //# sourceMappingURL=changes.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"changes.d.ts","sourceRoot":"","sources":["../../src/operations/changes.ts"],"names":[],"mappings":"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"}
@@ -1,160 +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/changesMappers";
11
- import * as Parameters from "../models/parameters";
12
- /** Class representing a Changes. */
13
- var Changes = /** @class */ (function () {
14
- /**
15
- * Create a Changes.
16
- * @param {AzureChangeAnalysisManagementClientContext} client Reference to the service client.
17
- */
18
- function Changes(client) {
19
- this.client = client;
20
- }
21
- Changes.prototype.listChangesByResourceGroup = function (resourceGroupName, startTime, endTime, options, callback) {
22
- return this.client.sendOperationRequest({
23
- resourceGroupName: resourceGroupName,
24
- startTime: startTime,
25
- endTime: endTime,
26
- options: options
27
- }, listChangesByResourceGroupOperationSpec, callback);
28
- };
29
- Changes.prototype.listChangesBySubscription = function (startTime, endTime, options, callback) {
30
- return this.client.sendOperationRequest({
31
- startTime: startTime,
32
- endTime: endTime,
33
- options: options
34
- }, listChangesBySubscriptionOperationSpec, callback);
35
- };
36
- Changes.prototype.listChangesByResourceGroupNext = function (nextPageLink, startTime, endTime, options, callback) {
37
- return this.client.sendOperationRequest({
38
- nextPageLink: nextPageLink,
39
- startTime: startTime,
40
- endTime: endTime,
41
- options: options
42
- }, listChangesByResourceGroupNextOperationSpec, callback);
43
- };
44
- Changes.prototype.listChangesBySubscriptionNext = function (nextPageLink, startTime, endTime, options, callback) {
45
- return this.client.sendOperationRequest({
46
- nextPageLink: nextPageLink,
47
- startTime: startTime,
48
- endTime: endTime,
49
- options: options
50
- }, listChangesBySubscriptionNextOperationSpec, callback);
51
- };
52
- return Changes;
53
- }());
54
- export { Changes };
55
- // Operation Specifications
56
- var serializer = new msRest.Serializer(Mappers);
57
- var listChangesByResourceGroupOperationSpec = {
58
- httpMethod: "GET",
59
- path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ChangeAnalysis/changes",
60
- urlParameters: [
61
- Parameters.subscriptionId,
62
- Parameters.resourceGroupName
63
- ],
64
- queryParameters: [
65
- Parameters.apiVersion,
66
- Parameters.startTime,
67
- Parameters.endTime,
68
- Parameters.skipToken
69
- ],
70
- headerParameters: [
71
- Parameters.acceptLanguage
72
- ],
73
- responses: {
74
- 200: {
75
- bodyMapper: Mappers.ChangeList
76
- },
77
- default: {
78
- bodyMapper: Mappers.ErrorResponse
79
- }
80
- },
81
- serializer: serializer
82
- };
83
- var listChangesBySubscriptionOperationSpec = {
84
- httpMethod: "GET",
85
- path: "subscriptions/{subscriptionId}/providers/Microsoft.ChangeAnalysis/changes",
86
- urlParameters: [
87
- Parameters.subscriptionId
88
- ],
89
- queryParameters: [
90
- Parameters.apiVersion,
91
- Parameters.startTime,
92
- Parameters.endTime,
93
- Parameters.skipToken
94
- ],
95
- headerParameters: [
96
- Parameters.acceptLanguage
97
- ],
98
- responses: {
99
- 200: {
100
- bodyMapper: Mappers.ChangeList
101
- },
102
- default: {
103
- bodyMapper: Mappers.ErrorResponse
104
- }
105
- },
106
- serializer: serializer
107
- };
108
- var listChangesByResourceGroupNextOperationSpec = {
109
- httpMethod: "GET",
110
- baseUrl: "https://management.azure.com",
111
- path: "{nextLink}",
112
- urlParameters: [
113
- Parameters.nextPageLink
114
- ],
115
- queryParameters: [
116
- Parameters.apiVersion,
117
- Parameters.startTime,
118
- Parameters.endTime,
119
- Parameters.skipToken
120
- ],
121
- headerParameters: [
122
- Parameters.acceptLanguage
123
- ],
124
- responses: {
125
- 200: {
126
- bodyMapper: Mappers.ChangeList
127
- },
128
- default: {
129
- bodyMapper: Mappers.ErrorResponse
130
- }
131
- },
132
- serializer: serializer
133
- };
134
- var listChangesBySubscriptionNextOperationSpec = {
135
- httpMethod: "GET",
136
- baseUrl: "https://management.azure.com",
137
- path: "{nextLink}",
138
- urlParameters: [
139
- Parameters.nextPageLink
140
- ],
141
- queryParameters: [
142
- Parameters.apiVersion,
143
- Parameters.startTime,
144
- Parameters.endTime,
145
- Parameters.skipToken
146
- ],
147
- headerParameters: [
148
- Parameters.acceptLanguage
149
- ],
150
- responses: {
151
- 200: {
152
- bodyMapper: Mappers.ChangeList
153
- },
154
- default: {
155
- bodyMapper: Mappers.ErrorResponse
156
- }
157
- },
158
- serializer: serializer
159
- };
160
- //# sourceMappingURL=changes.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"changes.js","sourceRoot":"","sources":["../../src/operations/changes.ts"],"names":[],"mappings":"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"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/operations/index.ts"],"names":[],"mappings":"AASA,cAAc,cAAc,CAAC;AAC7B,cAAc,mBAAmB,CAAC;AAClC,cAAc,WAAW,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/operations/index.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAEH,cAAc,cAAc,CAAC;AAC7B,cAAc,mBAAmB,CAAC;AAClC,cAAc,WAAW,CAAC"}
@@ -1,48 +0,0 @@
1
- import * as msRest from "@azure/ms-rest-js";
2
- import * as Models from "../models";
3
- import { AzureChangeAnalysisManagementClientContext } from "../azureChangeAnalysisManagementClientContext";
4
- /** Class representing a Operations. */
5
- export declare class Operations {
6
- private readonly client;
7
- /**
8
- * Create a Operations.
9
- * @param {AzureChangeAnalysisManagementClientContext} client Reference to the service client.
10
- */
11
- constructor(client: AzureChangeAnalysisManagementClientContext);
12
- /**
13
- * @summary Lists all the supported operations by the Microsoft.ChangeAnalysis resource provider
14
- * along with their descriptions.
15
- * @param [options] The optional parameters
16
- * @returns Promise<Models.OperationsListResponse>
17
- */
18
- list(options?: Models.OperationsListOptionalParams): Promise<Models.OperationsListResponse>;
19
- /**
20
- * @param callback The callback
21
- */
22
- list(callback: msRest.ServiceCallback<Models.ResourceProviderOperationList>): void;
23
- /**
24
- * @param options The optional parameters
25
- * @param callback The callback
26
- */
27
- list(options: Models.OperationsListOptionalParams, callback: msRest.ServiceCallback<Models.ResourceProviderOperationList>): void;
28
- /**
29
- * @summary Lists all the supported operations by the Microsoft.ChangeAnalysis resource provider
30
- * along with their descriptions.
31
- * @param nextPageLink The NextLink from the previous successful call to List operation.
32
- * @param [options] The optional parameters
33
- * @returns Promise<Models.OperationsListNextResponse>
34
- */
35
- listNext(nextPageLink: string, options?: Models.OperationsListNextOptionalParams): Promise<Models.OperationsListNextResponse>;
36
- /**
37
- * @param nextPageLink The NextLink from the previous successful call to List operation.
38
- * @param callback The callback
39
- */
40
- listNext(nextPageLink: string, callback: msRest.ServiceCallback<Models.ResourceProviderOperationList>): void;
41
- /**
42
- * @param nextPageLink The NextLink from the previous successful call to List operation.
43
- * @param options The optional parameters
44
- * @param callback The callback
45
- */
46
- listNext(nextPageLink: string, options: Models.OperationsListNextOptionalParams, callback: msRest.ServiceCallback<Models.ResourceProviderOperationList>): void;
47
- }
48
- //# sourceMappingURL=operations.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"operations.d.ts","sourceRoot":"","sources":["../../src/operations/operations.ts"],"names":[],"mappings":"AASA,OAAO,KAAK,MAAM,MAAM,mBAAmB,CAAC;AAC5C,OAAO,KAAK,MAAM,MAAM,WAAW,CAAC;AAGpC,OAAO,EAAE,0CAA0C,EAAE,MAAM,+CAA+C,CAAC;AAE3G,uCAAuC;AACvC,qBAAa,UAAU;IACrB,OAAO,CAAC,QAAQ,CAAC,MAAM,CAA6C;IAEpE;;;OAGG;gBACS,MAAM,EAAE,0CAA0C;IAI9D;;;;;OAKG;IACH,IAAI,CAAC,OAAO,CAAC,EAAE,MAAM,CAAC,4BAA4B,GAAG,OAAO,CAAC,MAAM,CAAC,sBAAsB,CAAC;IAC3F;;OAEG;IACH,IAAI,CAAC,QAAQ,EAAE,MAAM,CAAC,eAAe,CAAC,MAAM,CAAC,6BAA6B,CAAC,GAAG,IAAI;IAClF;;;OAGG;IACH,IAAI,CAAC,OAAO,EAAE,MAAM,CAAC,4BAA4B,EAAE,QAAQ,EAAE,MAAM,CAAC,eAAe,CAAC,MAAM,CAAC,6BAA6B,CAAC,GAAG,IAAI;IAUhI;;;;;;OAMG;IACH,QAAQ,CAAC,YAAY,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,MAAM,CAAC,gCAAgC,GAAG,OAAO,CAAC,MAAM,CAAC,0BAA0B,CAAC;IAC7H;;;OAGG;IACH,QAAQ,CAAC,YAAY,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,CAAC,eAAe,CAAC,MAAM,CAAC,6BAA6B,CAAC,GAAG,IAAI;IAC5G;;;;OAIG;IACH,QAAQ,CAAC,YAAY,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,CAAC,gCAAgC,EAAE,QAAQ,EAAE,MAAM,CAAC,eAAe,CAAC,MAAM,CAAC,6BAA6B,CAAC,GAAG,IAAI;CAU/J"}
@@ -1,81 +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/operationsMappers";
11
- import * as Parameters from "../models/parameters";
12
- /** Class representing a Operations. */
13
- var Operations = /** @class */ (function () {
14
- /**
15
- * Create a Operations.
16
- * @param {AzureChangeAnalysisManagementClientContext} client Reference to the service client.
17
- */
18
- function Operations(client) {
19
- this.client = client;
20
- }
21
- Operations.prototype.list = function (options, callback) {
22
- return this.client.sendOperationRequest({
23
- options: options
24
- }, listOperationSpec, callback);
25
- };
26
- Operations.prototype.listNext = function (nextPageLink, options, callback) {
27
- return this.client.sendOperationRequest({
28
- nextPageLink: nextPageLink,
29
- options: options
30
- }, listNextOperationSpec, callback);
31
- };
32
- return Operations;
33
- }());
34
- export { Operations };
35
- // Operation Specifications
36
- var serializer = new msRest.Serializer(Mappers);
37
- var listOperationSpec = {
38
- httpMethod: "GET",
39
- path: "providers/Microsoft.ChangeAnalysis/operations",
40
- queryParameters: [
41
- Parameters.apiVersion,
42
- Parameters.skipToken
43
- ],
44
- headerParameters: [
45
- Parameters.acceptLanguage
46
- ],
47
- responses: {
48
- 200: {
49
- bodyMapper: Mappers.ResourceProviderOperationList
50
- },
51
- default: {
52
- bodyMapper: Mappers.ErrorResponse
53
- }
54
- },
55
- serializer: serializer
56
- };
57
- var listNextOperationSpec = {
58
- httpMethod: "GET",
59
- baseUrl: "https://management.azure.com",
60
- path: "{nextLink}",
61
- urlParameters: [
62
- Parameters.nextPageLink
63
- ],
64
- queryParameters: [
65
- Parameters.apiVersion,
66
- Parameters.skipToken
67
- ],
68
- headerParameters: [
69
- Parameters.acceptLanguage
70
- ],
71
- responses: {
72
- 200: {
73
- bodyMapper: Mappers.ResourceProviderOperationList
74
- },
75
- default: {
76
- bodyMapper: Mappers.ErrorResponse
77
- }
78
- },
79
- serializer: serializer
80
- };
81
- //# sourceMappingURL=operations.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"operations.js","sourceRoot":"","sources":["../../src/operations/operations.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAEH,OAAO,KAAK,MAAM,MAAM,mBAAmB,CAAC;AAE5C,OAAO,KAAK,OAAO,MAAM,6BAA6B,CAAC;AACvD,OAAO,KAAK,UAAU,MAAM,sBAAsB,CAAC;AAGnD,uCAAuC;AACvC;IAGE;;;OAGG;IACH,oBAAY,MAAkD;QAC5D,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;IACvB,CAAC;IAkBD,yBAAI,GAAJ,UAAK,OAA4G,EAAE,QAAuE;QACxL,OAAO,IAAI,CAAC,MAAM,CAAC,oBAAoB,CACrC;YACE,OAAO,SAAA;SACR,EACD,iBAAiB,EACjB,QAAQ,CAA2C,CAAC;IACxD,CAAC;IAqBD,6BAAQ,GAAR,UAAS,YAAoB,EAAE,OAAgH,EAAE,QAAuE;QACtN,OAAO,IAAI,CAAC,MAAM,CAAC,oBAAoB,CACrC;YACE,YAAY,cAAA;YACZ,OAAO,SAAA;SACR,EACD,qBAAqB,EACrB,QAAQ,CAA+C,CAAC;IAC5D,CAAC;IACH,iBAAC;AAAD,CAAC,AAhED,IAgEC;;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,+CAA+C;IACrD,eAAe,EAAE;QACf,UAAU,CAAC,UAAU;QACrB,UAAU,CAAC,SAAS;KACrB;IACD,gBAAgB,EAAE;QAChB,UAAU,CAAC,cAAc;KAC1B;IACD,SAAS,EAAE;QACT,GAAG,EAAE;YACH,UAAU,EAAE,OAAO,CAAC,6BAA6B;SAClD;QACD,OAAO,EAAE;YACP,UAAU,EAAE,OAAO,CAAC,aAAa;SAClC;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;QACrB,UAAU,CAAC,SAAS;KACrB;IACD,gBAAgB,EAAE;QAChB,UAAU,CAAC,cAAc;KAC1B;IACD,SAAS,EAAE;QACT,GAAG,EAAE;YACH,UAAU,EAAE,OAAO,CAAC,6BAA6B;SAClD;QACD,OAAO,EAAE;YACP,UAAU,EAAE,OAAO,CAAC,aAAa;SAClC;KACF;IACD,UAAU,YAAA;CACX,CAAC"}
@@ -1,63 +0,0 @@
1
- import * as msRest from "@azure/ms-rest-js";
2
- import * as Models from "../models";
3
- import { AzureChangeAnalysisManagementClientContext } from "../azureChangeAnalysisManagementClientContext";
4
- /** Class representing a ResourceChanges. */
5
- export declare class ResourceChanges {
6
- private readonly client;
7
- /**
8
- * Create a ResourceChanges.
9
- * @param {AzureChangeAnalysisManagementClientContext} client Reference to the service client.
10
- */
11
- constructor(client: AzureChangeAnalysisManagementClientContext);
12
- /**
13
- * @summary List the changes of a resource within the specified time range. Customer data will be
14
- * masked if the user doesn't have access.
15
- * @param resourceId The identifier of the resource.
16
- * @param startTime Specifies the start time of the changes request.
17
- * @param endTime Specifies the end time of the changes request.
18
- * @param [options] The optional parameters
19
- * @returns Promise<Models.ResourceChangesListResponse>
20
- */
21
- list(resourceId: string, startTime: Date | string, endTime: Date | string, options?: Models.ResourceChangesListOptionalParams): Promise<Models.ResourceChangesListResponse>;
22
- /**
23
- * @param resourceId The identifier of the resource.
24
- * @param startTime Specifies the start time of the changes request.
25
- * @param endTime Specifies the end time of the changes request.
26
- * @param callback The callback
27
- */
28
- list(resourceId: string, startTime: Date | string, endTime: Date | string, callback: msRest.ServiceCallback<Models.ChangeList>): void;
29
- /**
30
- * @param resourceId The identifier of the resource.
31
- * @param startTime Specifies the start time of the changes request.
32
- * @param endTime Specifies the end time of the changes request.
33
- * @param options The optional parameters
34
- * @param callback The callback
35
- */
36
- list(resourceId: string, startTime: Date | string, endTime: Date | string, options: Models.ResourceChangesListOptionalParams, callback: msRest.ServiceCallback<Models.ChangeList>): void;
37
- /**
38
- * @summary List the changes of a resource within the specified time range. Customer data will be
39
- * masked if the user doesn't have access.
40
- * @param nextPageLink The NextLink from the previous successful call to List operation.
41
- * @param startTime Specifies the start time of the changes request.
42
- * @param endTime Specifies the end time of the changes request.
43
- * @param [options] The optional parameters
44
- * @returns Promise<Models.ResourceChangesListNextResponse>
45
- */
46
- listNext(nextPageLink: string, startTime: Date | string, endTime: Date | string, options?: Models.ResourceChangesListNextOptionalParams): Promise<Models.ResourceChangesListNextResponse>;
47
- /**
48
- * @param nextPageLink The NextLink from the previous successful call to List operation.
49
- * @param startTime Specifies the start time of the changes request.
50
- * @param endTime Specifies the end time of the changes request.
51
- * @param callback The callback
52
- */
53
- listNext(nextPageLink: string, startTime: Date | string, endTime: Date | string, callback: msRest.ServiceCallback<Models.ChangeList>): void;
54
- /**
55
- * @param nextPageLink The NextLink from the previous successful call to List operation.
56
- * @param startTime Specifies the start time of the changes request.
57
- * @param endTime Specifies the end time of the changes request.
58
- * @param options The optional parameters
59
- * @param callback The callback
60
- */
61
- listNext(nextPageLink: string, startTime: Date | string, endTime: Date | string, options: Models.ResourceChangesListNextOptionalParams, callback: msRest.ServiceCallback<Models.ChangeList>): void;
62
- }
63
- //# sourceMappingURL=resourceChanges.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"resourceChanges.d.ts","sourceRoot":"","sources":["../../src/operations/resourceChanges.ts"],"names":[],"mappings":"AASA,OAAO,KAAK,MAAM,MAAM,mBAAmB,CAAC;AAC5C,OAAO,KAAK,MAAM,MAAM,WAAW,CAAC;AAGpC,OAAO,EAAE,0CAA0C,EAAE,MAAM,+CAA+C,CAAC;AAE3G,4CAA4C;AAC5C,qBAAa,eAAe;IAC1B,OAAO,CAAC,QAAQ,CAAC,MAAM,CAA6C;IAEpE;;;OAGG;gBACS,MAAM,EAAE,0CAA0C;IAI9D;;;;;;;;OAQG;IACH,IAAI,CAAC,UAAU,EAAE,MAAM,EAAE,SAAS,EAAE,IAAI,GAAG,MAAM,EAAE,OAAO,EAAE,IAAI,GAAG,MAAM,EAAE,OAAO,CAAC,EAAE,MAAM,CAAC,iCAAiC,GAAG,OAAO,CAAC,MAAM,CAAC,2BAA2B,CAAC;IAC3K;;;;;OAKG;IACH,IAAI,CAAC,UAAU,EAAE,MAAM,EAAE,SAAS,EAAE,IAAI,GAAG,MAAM,EAAE,OAAO,EAAE,IAAI,GAAG,MAAM,EAAE,QAAQ,EAAE,MAAM,CAAC,eAAe,CAAC,MAAM,CAAC,UAAU,CAAC,GAAG,IAAI;IACrI;;;;;;OAMG;IACH,IAAI,CAAC,UAAU,EAAE,MAAM,EAAE,SAAS,EAAE,IAAI,GAAG,MAAM,EAAE,OAAO,EAAE,IAAI,GAAG,MAAM,EAAE,OAAO,EAAE,MAAM,CAAC,iCAAiC,EAAE,QAAQ,EAAE,MAAM,CAAC,eAAe,CAAC,MAAM,CAAC,UAAU,CAAC,GAAG,IAAI;IAaxL;;;;;;;;OAQG;IACH,QAAQ,CAAC,YAAY,EAAE,MAAM,EAAE,SAAS,EAAE,IAAI,GAAG,MAAM,EAAE,OAAO,EAAE,IAAI,GAAG,MAAM,EAAE,OAAO,CAAC,EAAE,MAAM,CAAC,qCAAqC,GAAG,OAAO,CAAC,MAAM,CAAC,+BAA+B,CAAC;IACzL;;;;;OAKG;IACH,QAAQ,CAAC,YAAY,EAAE,MAAM,EAAE,SAAS,EAAE,IAAI,GAAG,MAAM,EAAE,OAAO,EAAE,IAAI,GAAG,MAAM,EAAE,QAAQ,EAAE,MAAM,CAAC,eAAe,CAAC,MAAM,CAAC,UAAU,CAAC,GAAG,IAAI;IAC3I;;;;;;OAMG;IACH,QAAQ,CAAC,YAAY,EAAE,MAAM,EAAE,SAAS,EAAE,IAAI,GAAG,MAAM,EAAE,OAAO,EAAE,IAAI,GAAG,MAAM,EAAE,OAAO,EAAE,MAAM,CAAC,qCAAqC,EAAE,QAAQ,EAAE,MAAM,CAAC,eAAe,CAAC,MAAM,CAAC,UAAU,CAAC,GAAG,IAAI;CAYnM"}
@@ -1,93 +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/resourceChangesMappers";
11
- import * as Parameters from "../models/parameters";
12
- /** Class representing a ResourceChanges. */
13
- var ResourceChanges = /** @class */ (function () {
14
- /**
15
- * Create a ResourceChanges.
16
- * @param {AzureChangeAnalysisManagementClientContext} client Reference to the service client.
17
- */
18
- function ResourceChanges(client) {
19
- this.client = client;
20
- }
21
- ResourceChanges.prototype.list = function (resourceId, startTime, endTime, options, callback) {
22
- return this.client.sendOperationRequest({
23
- resourceId: resourceId,
24
- startTime: startTime,
25
- endTime: endTime,
26
- options: options
27
- }, listOperationSpec, callback);
28
- };
29
- ResourceChanges.prototype.listNext = function (nextPageLink, startTime, endTime, options, callback) {
30
- return this.client.sendOperationRequest({
31
- nextPageLink: nextPageLink,
32
- startTime: startTime,
33
- endTime: endTime,
34
- options: options
35
- }, listNextOperationSpec, callback);
36
- };
37
- return ResourceChanges;
38
- }());
39
- export { ResourceChanges };
40
- // Operation Specifications
41
- var serializer = new msRest.Serializer(Mappers);
42
- var listOperationSpec = {
43
- httpMethod: "POST",
44
- path: "{resourceId}/providers/Microsoft.ChangeAnalysis/resourceChanges",
45
- urlParameters: [
46
- Parameters.resourceId
47
- ],
48
- queryParameters: [
49
- Parameters.apiVersion,
50
- Parameters.startTime,
51
- Parameters.endTime,
52
- Parameters.skipToken
53
- ],
54
- headerParameters: [
55
- Parameters.acceptLanguage
56
- ],
57
- responses: {
58
- 200: {
59
- bodyMapper: Mappers.ChangeList
60
- },
61
- default: {
62
- bodyMapper: Mappers.ErrorResponse
63
- }
64
- },
65
- serializer: serializer
66
- };
67
- var listNextOperationSpec = {
68
- httpMethod: "POST",
69
- baseUrl: "https://management.azure.com",
70
- path: "{nextLink}",
71
- urlParameters: [
72
- Parameters.nextPageLink
73
- ],
74
- queryParameters: [
75
- Parameters.apiVersion,
76
- Parameters.startTime,
77
- Parameters.endTime,
78
- Parameters.skipToken
79
- ],
80
- headerParameters: [
81
- Parameters.acceptLanguage
82
- ],
83
- responses: {
84
- 200: {
85
- bodyMapper: Mappers.ChangeList
86
- },
87
- default: {
88
- bodyMapper: Mappers.ErrorResponse
89
- }
90
- },
91
- serializer: serializer
92
- };
93
- //# sourceMappingURL=resourceChanges.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"resourceChanges.js","sourceRoot":"","sources":["../../src/operations/resourceChanges.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAEH,OAAO,KAAK,MAAM,MAAM,mBAAmB,CAAC;AAE5C,OAAO,KAAK,OAAO,MAAM,kCAAkC,CAAC;AAC5D,OAAO,KAAK,UAAU,MAAM,sBAAsB,CAAC;AAGnD,4CAA4C;AAC5C;IAGE;;;OAGG;IACH,yBAAY,MAAkD;QAC5D,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;IACvB,CAAC;IA2BD,8BAAI,GAAJ,UAAK,UAAkB,EAAE,SAAwB,EAAE,OAAsB,EAAE,OAA8F,EAAE,QAAoD;QAC7N,OAAO,IAAI,CAAC,MAAM,CAAC,oBAAoB,CACrC;YACE,UAAU,YAAA;YACV,SAAS,WAAA;YACT,OAAO,SAAA;YACP,OAAO,SAAA;SACR,EACD,iBAAiB,EACjB,QAAQ,CAAgD,CAAC;IAC7D,CAAC;IA2BD,kCAAQ,GAAR,UAAS,YAAoB,EAAE,SAAwB,EAAE,OAAsB,EAAE,OAAkG,EAAE,QAAoD;QACvO,OAAO,IAAI,CAAC,MAAM,CAAC,oBAAoB,CACrC;YACE,YAAY,cAAA;YACZ,SAAS,WAAA;YACT,OAAO,SAAA;YACP,OAAO,SAAA;SACR,EACD,qBAAqB,EACrB,QAAQ,CAAoD,CAAC;IACjE,CAAC;IACH,sBAAC;AAAD,CAAC,AApFD,IAoFC;;AAED,2BAA2B;AAC3B,IAAM,UAAU,GAAG,IAAI,MAAM,CAAC,UAAU,CAAC,OAAO,CAAC,CAAC;AAClD,IAAM,iBAAiB,GAAyB;IAC9C,UAAU,EAAE,MAAM;IAClB,IAAI,EAAE,iEAAiE;IACvE,aAAa,EAAE;QACb,UAAU,CAAC,UAAU;KACtB;IACD,eAAe,EAAE;QACf,UAAU,CAAC,UAAU;QACrB,UAAU,CAAC,SAAS;QACpB,UAAU,CAAC,OAAO;QAClB,UAAU,CAAC,SAAS;KACrB;IACD,gBAAgB,EAAE;QAChB,UAAU,CAAC,cAAc;KAC1B;IACD,SAAS,EAAE;QACT,GAAG,EAAE;YACH,UAAU,EAAE,OAAO,CAAC,UAAU;SAC/B;QACD,OAAO,EAAE;YACP,UAAU,EAAE,OAAO,CAAC,aAAa;SAClC;KACF;IACD,UAAU,YAAA;CACX,CAAC;AAEF,IAAM,qBAAqB,GAAyB;IAClD,UAAU,EAAE,MAAM;IAClB,OAAO,EAAE,8BAA8B;IACvC,IAAI,EAAE,YAAY;IAClB,aAAa,EAAE;QACb,UAAU,CAAC,YAAY;KACxB;IACD,eAAe,EAAE;QACf,UAAU,CAAC,UAAU;QACrB,UAAU,CAAC,SAAS;QACpB,UAAU,CAAC,OAAO;QAClB,UAAU,CAAC,SAAS;KACrB;IACD,gBAAgB,EAAE;QAChB,UAAU,CAAC,cAAc;KAC1B;IACD,SAAS,EAAE;QACT,GAAG,EAAE;YACH,UAAU,EAAE,OAAO,CAAC,UAAU;SAC/B;QACD,OAAO,EAAE;YACP,UAAU,EAAE,OAAO,CAAC,aAAa;SAClC;KACF;IACD,UAAU,YAAA;CACX,CAAC"}