@azure/arm-selfhelp 2.0.0-beta.3 → 2.0.0-beta.5

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 (93) hide show
  1. package/CHANGELOG.md +245 -6
  2. package/README.md +2 -3
  3. package/dist/index.js +58 -83
  4. package/dist/index.js.map +1 -1
  5. package/dist/index.min.js +1 -1
  6. package/dist/index.min.js.map +1 -1
  7. package/dist-esm/samples-dev/checkNameAvailabilityCheckAvailabilitySample.d.ts +2 -0
  8. package/dist-esm/samples-dev/checkNameAvailabilityCheckAvailabilitySample.d.ts.map +1 -0
  9. package/dist-esm/samples-dev/{checkNameAvailabilityPostSample.js → checkNameAvailabilityCheckAvailabilitySample.js} +3 -3
  10. package/dist-esm/samples-dev/checkNameAvailabilityCheckAvailabilitySample.js.map +1 -0
  11. package/dist-esm/samples-dev/discoverySolutionNlpDiscoverSolutionsBySubscriptionSample.d.ts +2 -0
  12. package/dist-esm/samples-dev/discoverySolutionNlpDiscoverSolutionsBySubscriptionSample.d.ts.map +1 -0
  13. package/dist-esm/samples-dev/{discoverySolutionNlpSubscriptionScopePostSample.js → discoverySolutionNlpDiscoverSolutionsBySubscriptionSample.js} +5 -8
  14. package/dist-esm/samples-dev/discoverySolutionNlpDiscoverSolutionsBySubscriptionSample.js.map +1 -0
  15. package/dist-esm/samples-dev/discoverySolutionNlpDiscoverSolutionsSample.d.ts +2 -0
  16. package/dist-esm/samples-dev/discoverySolutionNlpDiscoverSolutionsSample.d.ts.map +1 -0
  17. package/dist-esm/samples-dev/{discoverySolutionNlpTenantScopePostSample.js → discoverySolutionNlpDiscoverSolutionsSample.js} +2 -3
  18. package/dist-esm/samples-dev/discoverySolutionNlpDiscoverSolutionsSample.js.map +1 -0
  19. package/dist-esm/samples-dev/operationsListSample.js +1 -3
  20. package/dist-esm/samples-dev/operationsListSample.js.map +1 -1
  21. package/dist-esm/src/helpRP.d.ts +2 -6
  22. package/dist-esm/src/helpRP.d.ts.map +1 -1
  23. package/dist-esm/src/helpRP.js +9 -16
  24. package/dist-esm/src/helpRP.js.map +1 -1
  25. package/dist-esm/src/models/index.d.ts +10 -10
  26. package/dist-esm/src/models/index.d.ts.map +1 -1
  27. package/dist-esm/src/models/parameters.d.ts.map +1 -1
  28. package/dist-esm/src/models/parameters.js +2 -1
  29. package/dist-esm/src/models/parameters.js.map +1 -1
  30. package/dist-esm/src/operations/checkNameAvailability.d.ts +2 -2
  31. package/dist-esm/src/operations/checkNameAvailability.d.ts.map +1 -1
  32. package/dist-esm/src/operations/checkNameAvailability.js +3 -3
  33. package/dist-esm/src/operations/checkNameAvailability.js.map +1 -1
  34. package/dist-esm/src/operations/discoverySolutionNLP.d.ts +26 -0
  35. package/dist-esm/src/operations/discoverySolutionNLP.d.ts.map +1 -0
  36. package/dist-esm/src/operations/{discoverySolutionNLPSubscriptionScope.js → discoverySolutionNLP.js} +34 -7
  37. package/dist-esm/src/operations/discoverySolutionNLP.js.map +1 -0
  38. package/dist-esm/src/operations/index.d.ts +1 -2
  39. package/dist-esm/src/operations/index.d.ts.map +1 -1
  40. package/dist-esm/src/operations/index.js +1 -2
  41. package/dist-esm/src/operations/index.js.map +1 -1
  42. package/dist-esm/src/operationsInterfaces/checkNameAvailability.d.ts +2 -2
  43. package/dist-esm/src/operationsInterfaces/checkNameAvailability.d.ts.map +1 -1
  44. package/dist-esm/src/operationsInterfaces/discoverySolutionNLP.d.ts +18 -0
  45. package/dist-esm/src/operationsInterfaces/discoverySolutionNLP.d.ts.map +1 -0
  46. package/dist-esm/src/operationsInterfaces/{discoverySolutionNLPTenantScope.js → discoverySolutionNLP.js} +1 -1
  47. package/dist-esm/src/operationsInterfaces/discoverySolutionNLP.js.map +1 -0
  48. package/dist-esm/src/operationsInterfaces/index.d.ts +1 -2
  49. package/dist-esm/src/operationsInterfaces/index.d.ts.map +1 -1
  50. package/dist-esm/src/operationsInterfaces/index.js +1 -2
  51. package/dist-esm/src/operationsInterfaces/index.js.map +1 -1
  52. package/dist-esm/test/selfhelp_operations_test.spec.js +6 -1
  53. package/dist-esm/test/selfhelp_operations_test.spec.js.map +1 -1
  54. package/package.json +4 -3
  55. package/review/arm-selfhelp.api.md +11 -20
  56. package/src/helpRP.ts +5 -33
  57. package/src/models/index.ts +12 -10
  58. package/src/models/parameters.ts +2 -1
  59. package/src/operations/checkNameAvailability.ts +7 -7
  60. package/src/operations/discoverySolutionNLP.ts +101 -0
  61. package/src/operations/index.ts +1 -2
  62. package/src/operationsInterfaces/checkNameAvailability.ts +5 -5
  63. package/src/operationsInterfaces/discoverySolutionNLP.ts +36 -0
  64. package/src/operationsInterfaces/index.ts +1 -2
  65. package/types/arm-selfhelp.d.ts +22 -29
  66. package/types/tsdoc-metadata.json +1 -1
  67. package/dist-esm/samples-dev/checkNameAvailabilityPostSample.d.ts +0 -2
  68. package/dist-esm/samples-dev/checkNameAvailabilityPostSample.d.ts.map +0 -1
  69. package/dist-esm/samples-dev/checkNameAvailabilityPostSample.js.map +0 -1
  70. package/dist-esm/samples-dev/discoverySolutionNlpSubscriptionScopePostSample.d.ts +0 -2
  71. package/dist-esm/samples-dev/discoverySolutionNlpSubscriptionScopePostSample.d.ts.map +0 -1
  72. package/dist-esm/samples-dev/discoverySolutionNlpSubscriptionScopePostSample.js.map +0 -1
  73. package/dist-esm/samples-dev/discoverySolutionNlpTenantScopePostSample.d.ts +0 -2
  74. package/dist-esm/samples-dev/discoverySolutionNlpTenantScopePostSample.d.ts.map +0 -1
  75. package/dist-esm/samples-dev/discoverySolutionNlpTenantScopePostSample.js.map +0 -1
  76. package/dist-esm/src/operations/discoverySolutionNLPSubscriptionScope.d.ts +0 -19
  77. package/dist-esm/src/operations/discoverySolutionNLPSubscriptionScope.d.ts.map +0 -1
  78. package/dist-esm/src/operations/discoverySolutionNLPSubscriptionScope.js.map +0 -1
  79. package/dist-esm/src/operations/discoverySolutionNLPTenantScope.d.ts +0 -19
  80. package/dist-esm/src/operations/discoverySolutionNLPTenantScope.d.ts.map +0 -1
  81. package/dist-esm/src/operations/discoverySolutionNLPTenantScope.js +0 -49
  82. package/dist-esm/src/operations/discoverySolutionNLPTenantScope.js.map +0 -1
  83. package/dist-esm/src/operationsInterfaces/discoverySolutionNLPSubscriptionScope.d.ts +0 -11
  84. package/dist-esm/src/operationsInterfaces/discoverySolutionNLPSubscriptionScope.d.ts.map +0 -1
  85. package/dist-esm/src/operationsInterfaces/discoverySolutionNLPSubscriptionScope.js +0 -9
  86. package/dist-esm/src/operationsInterfaces/discoverySolutionNLPSubscriptionScope.js.map +0 -1
  87. package/dist-esm/src/operationsInterfaces/discoverySolutionNLPTenantScope.d.ts +0 -11
  88. package/dist-esm/src/operationsInterfaces/discoverySolutionNLPTenantScope.d.ts.map +0 -1
  89. package/dist-esm/src/operationsInterfaces/discoverySolutionNLPTenantScope.js.map +0 -1
  90. package/src/operations/discoverySolutionNLPSubscriptionScope.ts +0 -64
  91. package/src/operations/discoverySolutionNLPTenantScope.ts +0 -64
  92. package/src/operationsInterfaces/discoverySolutionNLPSubscriptionScope.ts +0 -24
  93. package/src/operationsInterfaces/discoverySolutionNLPTenantScope.ts +0 -24
package/CHANGELOG.md CHANGED
@@ -1,8 +1,247 @@
1
1
  # Release History
2
+
3
+ ## 2.0.0-beta.5 (2024-06-26)
4
+ Compared with version 1.0.0
5
+
6
+ ### Features Added
2
7
 
8
+ - Added operation group CheckNameAvailability
9
+ - Added operation group DiscoverySolutionNLP
10
+ - Added operation group SimplifiedSolutions
11
+ - Added operation group Solution
12
+ - Added operation group SolutionSelfHelp
13
+ - Added operation group Troubleshooters
14
+ - Added Interface AutomatedCheckResult
15
+ - Added Interface CheckNameAvailabilityCheckAvailabilityOptionalParams
16
+ - Added Interface ClassificationService
17
+ - Added Interface ContinueRequestBody
18
+ - Added Interface DiscoveryNlpRequest
19
+ - Added Interface DiscoveryNlpResponse
20
+ - Added Interface DiscoverySolutionNLPDiscoverSolutionsBySubscriptionOptionalParams
21
+ - Added Interface DiscoverySolutionNLPDiscoverSolutionsOptionalParams
22
+ - Added Interface Filter
23
+ - Added Interface FilterGroup
24
+ - Added Interface MetricsBasedChart
25
+ - Added Interface ReplacementMaps
26
+ - Added Interface ReplacementMapsSelfHelp
27
+ - Added Interface ResponseOption
28
+ - Added Interface ResponseValidationProperties
29
+ - Added Interface RestartTroubleshooterResponse
30
+ - Added Interface SearchResult
31
+ - Added Interface Section
32
+ - Added Interface SectionSelfHelp
33
+ - Added Interface SimplifiedSolutionsCreateOptionalParams
34
+ - Added Interface SimplifiedSolutionsGetOptionalParams
35
+ - Added Interface SimplifiedSolutionsResource
36
+ - Added Interface SolutionCreateOptionalParams
37
+ - Added Interface SolutionGetOptionalParams
38
+ - Added Interface SolutionMetadataProperties
39
+ - Added Interface SolutionNlpMetadataResource
40
+ - Added Interface SolutionPatchRequestBody
41
+ - Added Interface SolutionResource
42
+ - Added Interface SolutionResourceSelfHelp
43
+ - Added Interface SolutionsDiagnostic
44
+ - Added Interface SolutionSelfHelpGetOptionalParams
45
+ - Added Interface SolutionsTroubleshooters
46
+ - Added Interface SolutionUpdateHeaders
47
+ - Added Interface SolutionUpdateOptionalParams
48
+ - Added Interface SolutionWarmUpOptionalParams
49
+ - Added Interface SolutionWarmUpRequestBody
50
+ - Added Interface Step
51
+ - Added Interface StepInput
52
+ - Added Interface TriggerCriterion
53
+ - Added Interface TroubleshooterResource
54
+ - Added Interface TroubleshooterResponse
55
+ - Added Interface TroubleshootersContinueHeaders
56
+ - Added Interface TroubleshootersContinueOptionalParams
57
+ - Added Interface TroubleshootersCreateOptionalParams
58
+ - Added Interface TroubleshootersEndHeaders
59
+ - Added Interface TroubleshootersEndOptionalParams
60
+ - Added Interface TroubleshootersGetOptionalParams
61
+ - Added Interface TroubleshootersRestartHeaders
62
+ - Added Interface TroubleshootersRestartOptionalParams
63
+ - Added Interface Video
64
+ - Added Interface VideoGroup
65
+ - Added Interface VideoGroupVideo
66
+ - Added Interface WebResult
67
+ - Added Type Alias AggregationType
68
+ - Added Type Alias AutomatedCheckResultType
69
+ - Added Type Alias CheckNameAvailabilityCheckAvailabilityResponse
70
+ - Added Type Alias Confidence
71
+ - Added Type Alias DiagnosticProvisioningState
72
+ - Added Type Alias DiscoverySolutionNLPDiscoverSolutionsBySubscriptionResponse
73
+ - Added Type Alias DiscoverySolutionNLPDiscoverSolutionsResponse
74
+ - Added Type Alias ExecutionStatus
75
+ - Added Type Alias Name
76
+ - Added Type Alias QuestionContentType
77
+ - Added Type Alias QuestionType
78
+ - Added Type Alias ResultType
79
+ - Added Type Alias SimplifiedSolutionsCreateResponse
80
+ - Added Type Alias SimplifiedSolutionsGetResponse
81
+ - Added Type Alias SolutionCreateResponse
82
+ - Added Type Alias SolutionGetResponse
83
+ - Added Type Alias SolutionProvisioningState
84
+ - Added Type Alias SolutionSelfHelpGetResponse
85
+ - Added Type Alias SolutionType
86
+ - Added Type Alias SolutionUpdateResponse
87
+ - Added Type Alias TroubleshooterProvisioningState
88
+ - Added Type Alias TroubleshootersContinueResponse
89
+ - Added Type Alias TroubleshootersCreateResponse
90
+ - Added Type Alias TroubleshootersEndResponse
91
+ - Added Type Alias TroubleshootersGetResponse
92
+ - Added Type Alias TroubleshootersRestartResponse
93
+ - Added Type Alias Type
94
+ - Added Type Alias ValidationScope
95
+ - Interface SolutionMetadataResource has a new optional parameter solutions
96
+ - Added Enum KnownAggregationType
97
+ - Added Enum KnownAutomatedCheckResultType
98
+ - Added Enum KnownConfidence
99
+ - Added Enum KnownDiagnosticProvisioningState
100
+ - Added Enum KnownExecutionStatus
101
+ - Added Enum KnownName
102
+ - Added Enum KnownQuestionContentType
103
+ - Added Enum KnownQuestionType
104
+ - Added Enum KnownResultType
105
+ - Added Enum KnownSolutionProvisioningState
106
+ - Added Enum KnownSolutionType
107
+ - Added Enum KnownTroubleshooterProvisioningState
108
+ - Added Enum KnownType
109
+ - Added Enum KnownValidationScope
110
+
111
+ ### Breaking Changes
112
+
113
+ - Removed operation Diagnostics.checkNameAvailability
114
+ - Operation DiscoverySolution.list has a new signature
115
+ - Interface SolutionMetadataResource no longer has parameter description
116
+ - Interface SolutionMetadataResource no longer has parameter requiredParameterSets
117
+ - Interface SolutionMetadataResource no longer has parameter solutionId
118
+ - Interface SolutionMetadataResource no longer has parameter solutionType
119
+ - Type of parameter provisioningState of interface DiagnosticResource is changed from ProvisioningState to DiagnosticProvisioningState
120
+ - Removed Enum KnownProvisioningState
121
+
122
+
123
+ ## 2.0.0-beta.4 (2024-05-10)
124
+
125
+ ### Features Added
126
+
127
+ - Added operation group CheckNameAvailability
128
+ - Added operation group DiscoverySolutionNLPSubscriptionScope
129
+ - Added operation group DiscoverySolutionNLPTenantScope
130
+ - Added operation group SimplifiedSolutions
131
+ - Added operation group Solution
132
+ - Added operation group SolutionSelfHelp
133
+ - Added operation group Troubleshooters
134
+ - Added Interface AutomatedCheckResult
135
+ - Added Interface CheckNameAvailabilityPostOptionalParams
136
+ - Added Interface ClassificationService
137
+ - Added Interface ContinueRequestBody
138
+ - Added Interface DiscoveryNlpRequest
139
+ - Added Interface DiscoveryNlpResponse
140
+ - Added Interface DiscoverySolutionNLPSubscriptionScopePostOptionalParams
141
+ - Added Interface DiscoverySolutionNLPTenantScopePostOptionalParams
142
+ - Added Interface Filter
143
+ - Added Interface FilterGroup
144
+ - Added Interface MetricsBasedChart
145
+ - Added Interface ReplacementMaps
146
+ - Added Interface ReplacementMapsSelfHelp
147
+ - Added Interface ResponseOption
148
+ - Added Interface ResponseValidationProperties
149
+ - Added Interface RestartTroubleshooterResponse
150
+ - Added Interface SearchResult
151
+ - Added Interface Section
152
+ - Added Interface SectionSelfHelp
153
+ - Added Interface SimplifiedSolutionsCreateOptionalParams
154
+ - Added Interface SimplifiedSolutionsGetOptionalParams
155
+ - Added Interface SimplifiedSolutionsResource
156
+ - Added Interface SolutionCreateOptionalParams
157
+ - Added Interface SolutionGetOptionalParams
158
+ - Added Interface SolutionMetadataProperties
159
+ - Added Interface SolutionNlpMetadataResource
160
+ - Added Interface SolutionPatchRequestBody
161
+ - Added Interface SolutionResource
162
+ - Added Interface SolutionResourceSelfHelp
163
+ - Added Interface SolutionsDiagnostic
164
+ - Added Interface SolutionSelfHelpGetOptionalParams
165
+ - Added Interface SolutionsTroubleshooters
166
+ - Added Interface SolutionUpdateHeaders
167
+ - Added Interface SolutionUpdateOptionalParams
168
+ - Added Interface SolutionWarmUpOptionalParams
169
+ - Added Interface SolutionWarmUpRequestBody
170
+ - Added Interface Step
171
+ - Added Interface StepInput
172
+ - Added Interface TriggerCriterion
173
+ - Added Interface TroubleshooterResource
174
+ - Added Interface TroubleshooterResponse
175
+ - Added Interface TroubleshootersContinueHeaders
176
+ - Added Interface TroubleshootersContinueOptionalParams
177
+ - Added Interface TroubleshootersCreateOptionalParams
178
+ - Added Interface TroubleshootersEndHeaders
179
+ - Added Interface TroubleshootersEndOptionalParams
180
+ - Added Interface TroubleshootersGetOptionalParams
181
+ - Added Interface TroubleshootersRestartHeaders
182
+ - Added Interface TroubleshootersRestartOptionalParams
183
+ - Added Interface Video
184
+ - Added Interface VideoGroup
185
+ - Added Interface VideoGroupVideo
186
+ - Added Interface WebResult
187
+ - Added Type Alias AggregationType
188
+ - Added Type Alias AutomatedCheckResultType
189
+ - Added Type Alias CheckNameAvailabilityPostResponse
190
+ - Added Type Alias Confidence
191
+ - Added Type Alias DiagnosticProvisioningState
192
+ - Added Type Alias DiscoverySolutionNLPSubscriptionScopePostResponse
193
+ - Added Type Alias DiscoverySolutionNLPTenantScopePostResponse
194
+ - Added Type Alias ExecutionStatus
195
+ - Added Type Alias Name
196
+ - Added Type Alias QuestionContentType
197
+ - Added Type Alias QuestionType
198
+ - Added Type Alias ResultType
199
+ - Added Type Alias SimplifiedSolutionsCreateResponse
200
+ - Added Type Alias SimplifiedSolutionsGetResponse
201
+ - Added Type Alias SolutionCreateResponse
202
+ - Added Type Alias SolutionGetResponse
203
+ - Added Type Alias SolutionProvisioningState
204
+ - Added Type Alias SolutionSelfHelpGetResponse
205
+ - Added Type Alias SolutionType
206
+ - Added Type Alias SolutionUpdateResponse
207
+ - Added Type Alias TroubleshooterProvisioningState
208
+ - Added Type Alias TroubleshootersContinueResponse
209
+ - Added Type Alias TroubleshootersCreateResponse
210
+ - Added Type Alias TroubleshootersEndResponse
211
+ - Added Type Alias TroubleshootersGetResponse
212
+ - Added Type Alias TroubleshootersRestartResponse
213
+ - Added Type Alias Type
214
+ - Added Type Alias ValidationScope
215
+ - Interface SolutionMetadataResource has a new optional parameter solutions
216
+ - Added Enum KnownAggregationType
217
+ - Added Enum KnownAutomatedCheckResultType
218
+ - Added Enum KnownConfidence
219
+ - Added Enum KnownDiagnosticProvisioningState
220
+ - Added Enum KnownExecutionStatus
221
+ - Added Enum KnownName
222
+ - Added Enum KnownQuestionContentType
223
+ - Added Enum KnownQuestionType
224
+ - Added Enum KnownResultType
225
+ - Added Enum KnownSolutionProvisioningState
226
+ - Added Enum KnownSolutionType
227
+ - Added Enum KnownTroubleshooterProvisioningState
228
+ - Added Enum KnownType
229
+ - Added Enum KnownValidationScope
230
+
231
+ ### Breaking Changes
232
+
233
+ - Removed operation Diagnostics.checkNameAvailability
234
+ - Operation DiscoverySolution.list has a new signature
235
+ - Interface SolutionMetadataResource no longer has parameter description
236
+ - Interface SolutionMetadataResource no longer has parameter requiredParameterSets
237
+ - Interface SolutionMetadataResource no longer has parameter solutionId
238
+ - Interface SolutionMetadataResource no longer has parameter solutionType
239
+ - Type of parameter provisioningState of interface DiagnosticResource is changed from ProvisioningState to DiagnosticProvisioningState
240
+ - Removed Enum KnownProvisioningState
241
+
3
242
  ## 2.0.0-beta.3 (2024-04-19)
4
243
 
5
- **Features**
244
+ ### Features Added
6
245
 
7
246
  - Added operation group CheckNameAvailability
8
247
  - Added operation group DiscoverySolutionNLPSubscriptionScope
@@ -108,7 +347,7 @@
108
347
  - Added Enum KnownType
109
348
  - Added Enum KnownValidationScope
110
349
 
111
- **Breaking Changes**
350
+ ### Breaking Changes
112
351
 
113
352
  - Removed operation Diagnostics.checkNameAvailability
114
353
  - Operation DiscoverySolution.list has a new signature
@@ -122,7 +361,7 @@
122
361
 
123
362
  ## 2.0.0-beta.2 (2023-12-04)
124
363
 
125
- **Features**
364
+ ### Features Added
126
365
 
127
366
  - Added operation group CheckNameAvailability
128
367
  - Added operation group Solution
@@ -202,7 +441,7 @@
202
441
  - Added Enum KnownTroubleshooterProvisioningState
203
442
  - Added Enum KnownType
204
443
 
205
- **Breaking Changes**
444
+ ### Breaking Changes
206
445
 
207
446
  - Removed operation Diagnostics.checkNameAvailability
208
447
  - Interface SolutionMetadataResource no longer has parameter description
@@ -215,7 +454,7 @@
215
454
 
216
455
  ## 2.0.0-beta.1 (2023-10-24)
217
456
 
218
- **Features**
457
+ ### Features Added
219
458
 
220
459
  - Added operation group CheckNameAvailability
221
460
  - Added operation group Solution
@@ -296,7 +535,7 @@
296
535
  - Added Enum KnownTroubleshooterProvisioningState
297
536
  - Added Enum KnownType
298
537
 
299
- **Breaking Changes**
538
+ ### Breaking Changes
300
539
 
301
540
  - Removed operation Diagnostics.checkNameAvailability
302
541
  - Interface SolutionMetadataResource no longer has parameter description
package/README.md CHANGED
@@ -53,15 +53,14 @@ const { HelpRP } = require("@azure/arm-selfhelp");
53
53
  const { DefaultAzureCredential } = require("@azure/identity");
54
54
  // For client-side applications running in the browser, use InteractiveBrowserCredential instead of DefaultAzureCredential. See https://aka.ms/azsdk/js/identity/examples for more details.
55
55
 
56
- const subscriptionId = "00000000-0000-0000-0000-000000000000";
57
- const client = new HelpRP(new DefaultAzureCredential(), subscriptionId);
56
+ const client = new HelpRP(new DefaultAzureCredential());
58
57
 
59
58
  // For client-side applications running in the browser, use this code instead:
60
59
  // const credential = new InteractiveBrowserCredential({
61
60
  // tenantId: "<YOUR_TENANT_ID>",
62
61
  // clientId: "<YOUR_CLIENT_ID>"
63
62
  // });
64
- // const client = new HelpRP(credential, subscriptionId);
63
+ // const client = new HelpRP(credential);
65
64
  ```
66
65
 
67
66