@azure/arm-security
Version:
A generated SDK for SecurityCenter.
205 lines • 8.54 kB
JavaScript
/*
* Copyright (c) Microsoft Corporation.
* Licensed under the MIT License.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
*/
import { __asyncDelegator, __asyncGenerator, __asyncValues, __await } from "tslib";
import * as coreClient from "@azure/core-client";
import * as Mappers from "../models/mappers";
import * as Parameters from "../models/parameters";
/// <reference lib="esnext.asynciterable" />
/** Class containing IotSecuritySolutionsAnalyticsAggregatedAlert operations. */
export class IotSecuritySolutionsAnalyticsAggregatedAlertImpl {
/**
* Initialize a new instance of the class IotSecuritySolutionsAnalyticsAggregatedAlert class.
* @param client Reference to the service client
*/
constructor(client) {
this.client = client;
}
/**
* Use this method to get the aggregated alert list of yours IoT Security solution.
* @param resourceGroupName The name of the resource group within the user's subscription. The name is
* case insensitive.
* @param solutionName The name of the IoT Security solution.
* @param options The options parameters.
*/
list(resourceGroupName, solutionName, options) {
const iter = this.listPagingAll(resourceGroupName, solutionName, options);
return {
next() {
return iter.next();
},
[Symbol.asyncIterator]() {
return this;
},
byPage: () => {
return this.listPagingPage(resourceGroupName, solutionName, options);
}
};
}
listPagingPage(resourceGroupName, solutionName, options) {
return __asyncGenerator(this, arguments, function* listPagingPage_1() {
let result = yield __await(this._list(resourceGroupName, solutionName, options));
yield yield __await(result.value || []);
let continuationToken = result.nextLink;
while (continuationToken) {
result = yield __await(this._listNext(resourceGroupName, solutionName, continuationToken, options));
continuationToken = result.nextLink;
yield yield __await(result.value || []);
}
});
}
listPagingAll(resourceGroupName, solutionName, options) {
return __asyncGenerator(this, arguments, function* listPagingAll_1() {
var e_1, _a;
try {
for (var _b = __asyncValues(this.listPagingPage(resourceGroupName, solutionName, options)), _c; _c = yield __await(_b.next()), !_c.done;) {
const page = _c.value;
yield __await(yield* __asyncDelegator(__asyncValues(page)));
}
}
catch (e_1_1) { e_1 = { error: e_1_1 }; }
finally {
try {
if (_c && !_c.done && (_a = _b.return)) yield __await(_a.call(_b));
}
finally { if (e_1) throw e_1.error; }
}
});
}
/**
* Use this method to get the aggregated alert list of yours IoT Security solution.
* @param resourceGroupName The name of the resource group within the user's subscription. The name is
* case insensitive.
* @param solutionName The name of the IoT Security solution.
* @param options The options parameters.
*/
_list(resourceGroupName, solutionName, options) {
return this.client.sendOperationRequest({ resourceGroupName, solutionName, options }, listOperationSpec);
}
/**
* Use this method to get a single the aggregated alert of yours IoT Security solution. This
* aggregation is performed by alert name.
* @param resourceGroupName The name of the resource group within the user's subscription. The name is
* case insensitive.
* @param solutionName The name of the IoT Security solution.
* @param aggregatedAlertName Identifier of the aggregated alert.
* @param options The options parameters.
*/
get(resourceGroupName, solutionName, aggregatedAlertName, options) {
return this.client.sendOperationRequest({ resourceGroupName, solutionName, aggregatedAlertName, options }, getOperationSpec);
}
/**
* Use this method to dismiss an aggregated IoT Security Solution Alert.
* @param resourceGroupName The name of the resource group within the user's subscription. The name is
* case insensitive.
* @param solutionName The name of the IoT Security solution.
* @param aggregatedAlertName Identifier of the aggregated alert.
* @param options The options parameters.
*/
dismiss(resourceGroupName, solutionName, aggregatedAlertName, options) {
return this.client.sendOperationRequest({ resourceGroupName, solutionName, aggregatedAlertName, options }, dismissOperationSpec);
}
/**
* ListNext
* @param resourceGroupName The name of the resource group within the user's subscription. The name is
* case insensitive.
* @param solutionName The name of the IoT Security solution.
* @param nextLink The nextLink from the previous successful call to the List method.
* @param options The options parameters.
*/
_listNext(resourceGroupName, solutionName, nextLink, options) {
return this.client.sendOperationRequest({ resourceGroupName, solutionName, nextLink, options }, listNextOperationSpec);
}
}
// Operation Specifications
const serializer = coreClient.createSerializer(Mappers, /* isXml */ false);
const listOperationSpec = {
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Security/iotSecuritySolutions/{solutionName}/analyticsModels/default/aggregatedAlerts",
httpMethod: "GET",
responses: {
200: {
bodyMapper: Mappers.IoTSecurityAggregatedAlertList
},
default: {
bodyMapper: Mappers.CloudError
}
},
queryParameters: [Parameters.apiVersion5, Parameters.top],
urlParameters: [
Parameters.$host,
Parameters.subscriptionId,
Parameters.resourceGroupName,
Parameters.solutionName
],
headerParameters: [Parameters.accept],
serializer
};
const getOperationSpec = {
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Security/iotSecuritySolutions/{solutionName}/analyticsModels/default/aggregatedAlerts/{aggregatedAlertName}",
httpMethod: "GET",
responses: {
200: {
bodyMapper: Mappers.IoTSecurityAggregatedAlert
},
default: {
bodyMapper: Mappers.CloudError
}
},
queryParameters: [Parameters.apiVersion5],
urlParameters: [
Parameters.$host,
Parameters.subscriptionId,
Parameters.resourceGroupName,
Parameters.solutionName,
Parameters.aggregatedAlertName
],
headerParameters: [Parameters.accept],
serializer
};
const dismissOperationSpec = {
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Security/iotSecuritySolutions/{solutionName}/analyticsModels/default/aggregatedAlerts/{aggregatedAlertName}/dismiss",
httpMethod: "POST",
responses: {
200: {},
default: {
bodyMapper: Mappers.CloudError
}
},
queryParameters: [Parameters.apiVersion5],
urlParameters: [
Parameters.$host,
Parameters.subscriptionId,
Parameters.resourceGroupName,
Parameters.solutionName,
Parameters.aggregatedAlertName
],
headerParameters: [Parameters.accept],
serializer
};
const listNextOperationSpec = {
path: "{nextLink}",
httpMethod: "GET",
responses: {
200: {
bodyMapper: Mappers.IoTSecurityAggregatedAlertList
},
default: {
bodyMapper: Mappers.CloudError
}
},
queryParameters: [Parameters.apiVersion5, Parameters.top],
urlParameters: [
Parameters.$host,
Parameters.subscriptionId,
Parameters.resourceGroupName,
Parameters.nextLink,
Parameters.solutionName
],
headerParameters: [Parameters.accept],
serializer
};
//# sourceMappingURL=iotSecuritySolutionsAnalyticsAggregatedAlert.js.map