@@ -13,8 +13,8 @@ import { DecisionsStreamResponse, DeleteDecisionResponse, GetDecisionsResponse }
1313
1414export namespace Decisions {
1515 /**
16- * @description Returns a list of new/expired decisions. Intended for bouncers that need to "stream" decisions
17- * @tags bouncers
16+ * @description Returns a list of new/expired decisions. Intended for remediation component that need to "stream" decisions
17+ * @tags Remediation component
1818 * @name GetDecisionsStream
1919 * @summary getDecisionsStream
2020 * @request GET:/decisions/stream
@@ -23,7 +23,7 @@ export namespace Decisions {
2323 export namespace GetDecisionsStream {
2424 export type RequestParams = { } ;
2525 export type RequestQuery = {
26- /** If true, means that the bouncers is starting and a full list must be provided */
26+ /** If true, means that the remediation component is starting and a full list must be provided */
2727 startup ?: boolean ;
2828 /** Comma separated scopes of decisions to fetch */
2929 scopes ?: string ;
@@ -40,8 +40,8 @@ export namespace Decisions {
4040 }
4141
4242 /**
43- * @description Returns a list of new/expired decisions. Intended for bouncers that need to "stream" decisions
44- * @tags bouncers
43+ * @description Returns a list of new/expired decisions. Intended for remediation component that need to "stream" decisions
44+ * @tags Remediation component
4545 * @name HeadDecisionsStream
4646 * @summary GetDecisionsStream
4747 * @request HEAD:/decisions/stream
@@ -60,10 +60,11 @@ export namespace Decisions {
6060
6161 /**
6262 * @description Returns information about existing decisions
63- * @tags bouncers
63+ * @tags Remediation component
6464 * @name GetDecisions
6565 * @summary getDecisions
6666 * @request GET:/decisions
67+ * @secure
6768 */
6869 export namespace GetDecisions {
6970 export type RequestParams = { } ;
@@ -94,7 +95,7 @@ export namespace Decisions {
9495
9596 /**
9697 * @description Returns information about existing decisions
97- * @tags bouncers
98+ * @tags Remediation component
9899 * @name HeadDecisions
99100 * @summary GetDecisions
100101 * @request HEAD:/decisions
0 commit comments