Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add start_date to suppression APIs #2590

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .apigentools-info
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
"spec_versions": {
"v1": {
"apigentools_version": "1.6.6",
"regenerated": "2024-12-26 16:01:50.411671",
"spec_repo_commit": "f2e98b01"
"regenerated": "2025-01-02 14:39:41.391682",
"spec_repo_commit": "b4e964b3"
},
"v2": {
"apigentools_version": "1.6.6",
"regenerated": "2024-12-26 16:01:50.427605",
"spec_repo_commit": "f2e98b01"
"regenerated": "2025-01-02 14:39:41.406329",
"spec_repo_commit": "b4e964b3"
}
}
}
21 changes: 21 additions & 0 deletions .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24825,6 +24825,12 @@ components:
as the search bar for detection rules.
example: type:log_detection source:cloudtrail
type: string
start_date:
description: A Unix millisecond timestamp giving the start date for the
suppression rule. After this date, it starts suppressing signals.
example: 1703187336000
format: int64
type: integer
suppression_query:
description: The suppression query of the suppression rule. If a signal
matches this query, it is suppressed and not triggered. Same syntax as
Expand Down Expand Up @@ -24880,6 +24886,12 @@ components:
as the search bar for detection rules.
example: type:log_detection source:cloudtrail
type: string
start_date:
description: A Unix millisecond timestamp giving the start date for the
suppression rule. After this date, it starts suppressing signals.
example: 1703187336000
format: int64
type: integer
suppression_query:
description: The suppression query of the suppression rule. If a signal
matches this query, it is suppressed and is not triggered. It uses the
Expand Down Expand Up @@ -24966,6 +24978,15 @@ components:
as the search bar for detection rules.
example: type:log_detection source:cloudtrail
type: string
start_date:
description: A Unix millisecond timestamp giving the start date for the
suppression rule. After this date, it starts suppressing signals. If unset,
the start date of the suppression rule is left untouched. If set to `null`,
the start date is removed.
example: 1703187336000
format: int64
nullable: true
type: integer
suppression_query:
description: The suppression query of the suppression rule. If a signal
matches this query, it is suppressed and not triggered. Same syntax as
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ public static void main(String[] args) {
"This rule suppresses low-severity signals in staging"
+ " environments.")
.enabled(true)
.startDate(1637493071000L)
.expirationDate(1638443471000L)
.name("Example-Security-Monitoring")
.ruleQuery("type:log_detection source:cloudtrail")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ public static void main(String[] args) {
"This rule suppresses low-severity signals in staging"
+ " environments.")
.enabled(true)
.startDate(1637493071000L)
.expirationDate(1638443471000L)
.name("Example-Security-Monitoring")
.ruleQuery("type:log_detection source:cloudtrail")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
SecurityMonitoringSuppressionAttributes.JSON_PROPERTY_EXPIRATION_DATE,
SecurityMonitoringSuppressionAttributes.JSON_PROPERTY_NAME,
SecurityMonitoringSuppressionAttributes.JSON_PROPERTY_RULE_QUERY,
SecurityMonitoringSuppressionAttributes.JSON_PROPERTY_START_DATE,
SecurityMonitoringSuppressionAttributes.JSON_PROPERTY_SUPPRESSION_QUERY,
SecurityMonitoringSuppressionAttributes.JSON_PROPERTY_UPDATE_DATE,
SecurityMonitoringSuppressionAttributes.JSON_PROPERTY_UPDATER,
Expand Down Expand Up @@ -63,6 +64,9 @@ public class SecurityMonitoringSuppressionAttributes {
public static final String JSON_PROPERTY_RULE_QUERY = "rule_query";
private String ruleQuery;

public static final String JSON_PROPERTY_START_DATE = "start_date";
private Long startDate;

public static final String JSON_PROPERTY_SUPPRESSION_QUERY = "suppression_query";
private String suppressionQuery;

Expand Down Expand Up @@ -269,6 +273,28 @@ public void setRuleQuery(String ruleQuery) {
this.ruleQuery = ruleQuery;
}

public SecurityMonitoringSuppressionAttributes startDate(Long startDate) {
this.startDate = startDate;
return this;
}

/**
* A Unix millisecond timestamp giving the start date for the suppression rule. After this date,
* it starts suppressing signals.
*
* @return startDate
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_START_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Long getStartDate() {
return startDate;
}

public void setStartDate(Long startDate) {
this.startDate = startDate;
}

public SecurityMonitoringSuppressionAttributes suppressionQuery(String suppressionQuery) {
this.suppressionQuery = suppressionQuery;
return this;
Expand Down Expand Up @@ -424,6 +450,7 @@ public boolean equals(Object o) {
this.expirationDate, securityMonitoringSuppressionAttributes.expirationDate)
&& Objects.equals(this.name, securityMonitoringSuppressionAttributes.name)
&& Objects.equals(this.ruleQuery, securityMonitoringSuppressionAttributes.ruleQuery)
&& Objects.equals(this.startDate, securityMonitoringSuppressionAttributes.startDate)
&& Objects.equals(
this.suppressionQuery, securityMonitoringSuppressionAttributes.suppressionQuery)
&& Objects.equals(this.updateDate, securityMonitoringSuppressionAttributes.updateDate)
Expand All @@ -446,6 +473,7 @@ public int hashCode() {
expirationDate,
name,
ruleQuery,
startDate,
suppressionQuery,
updateDate,
updater,
Expand All @@ -466,6 +494,7 @@ public String toString() {
sb.append(" expirationDate: ").append(toIndentedString(expirationDate)).append("\n");
sb.append(" name: ").append(toIndentedString(name)).append("\n");
sb.append(" ruleQuery: ").append(toIndentedString(ruleQuery)).append("\n");
sb.append(" startDate: ").append(toIndentedString(startDate)).append("\n");
sb.append(" suppressionQuery: ").append(toIndentedString(suppressionQuery)).append("\n");
sb.append(" updateDate: ").append(toIndentedString(updateDate)).append("\n");
sb.append(" updater: ").append(toIndentedString(updater)).append("\n");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
SecurityMonitoringSuppressionCreateAttributes.JSON_PROPERTY_EXPIRATION_DATE,
SecurityMonitoringSuppressionCreateAttributes.JSON_PROPERTY_NAME,
SecurityMonitoringSuppressionCreateAttributes.JSON_PROPERTY_RULE_QUERY,
SecurityMonitoringSuppressionCreateAttributes.JSON_PROPERTY_START_DATE,
SecurityMonitoringSuppressionCreateAttributes.JSON_PROPERTY_SUPPRESSION_QUERY
})
@jakarta.annotation.Generated(
Expand All @@ -49,6 +50,9 @@ public class SecurityMonitoringSuppressionCreateAttributes {
public static final String JSON_PROPERTY_RULE_QUERY = "rule_query";
private String ruleQuery;

public static final String JSON_PROPERTY_START_DATE = "start_date";
private Long startDate;

public static final String JSON_PROPERTY_SUPPRESSION_QUERY = "suppression_query";
private String suppressionQuery;

Expand Down Expand Up @@ -192,6 +196,28 @@ public void setRuleQuery(String ruleQuery) {
this.ruleQuery = ruleQuery;
}

public SecurityMonitoringSuppressionCreateAttributes startDate(Long startDate) {
this.startDate = startDate;
return this;
}

/**
* A Unix millisecond timestamp giving the start date for the suppression rule. After this date,
* it starts suppressing signals.
*
* @return startDate
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_START_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Long getStartDate() {
return startDate;
}

public void setStartDate(Long startDate) {
this.startDate = startDate;
}

public SecurityMonitoringSuppressionCreateAttributes suppressionQuery(String suppressionQuery) {
this.suppressionQuery = suppressionQuery;
return this;
Expand Down Expand Up @@ -283,6 +309,7 @@ public boolean equals(Object o) {
this.expirationDate, securityMonitoringSuppressionCreateAttributes.expirationDate)
&& Objects.equals(this.name, securityMonitoringSuppressionCreateAttributes.name)
&& Objects.equals(this.ruleQuery, securityMonitoringSuppressionCreateAttributes.ruleQuery)
&& Objects.equals(this.startDate, securityMonitoringSuppressionCreateAttributes.startDate)
&& Objects.equals(
this.suppressionQuery, securityMonitoringSuppressionCreateAttributes.suppressionQuery)
&& Objects.equals(
Expand All @@ -299,6 +326,7 @@ public int hashCode() {
expirationDate,
name,
ruleQuery,
startDate,
suppressionQuery,
additionalProperties);
}
Expand All @@ -313,6 +341,7 @@ public String toString() {
sb.append(" expirationDate: ").append(toIndentedString(expirationDate)).append("\n");
sb.append(" name: ").append(toIndentedString(name)).append("\n");
sb.append(" ruleQuery: ").append(toIndentedString(ruleQuery)).append("\n");
sb.append(" startDate: ").append(toIndentedString(startDate)).append("\n");
sb.append(" suppressionQuery: ").append(toIndentedString(suppressionQuery)).append("\n");
sb.append(" additionalProperties: ")
.append(toIndentedString(additionalProperties))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
SecurityMonitoringSuppressionUpdateAttributes.JSON_PROPERTY_EXPIRATION_DATE,
SecurityMonitoringSuppressionUpdateAttributes.JSON_PROPERTY_NAME,
SecurityMonitoringSuppressionUpdateAttributes.JSON_PROPERTY_RULE_QUERY,
SecurityMonitoringSuppressionUpdateAttributes.JSON_PROPERTY_START_DATE,
SecurityMonitoringSuppressionUpdateAttributes.JSON_PROPERTY_SUPPRESSION_QUERY,
SecurityMonitoringSuppressionUpdateAttributes.JSON_PROPERTY_VERSION
})
Expand All @@ -50,6 +51,9 @@ public class SecurityMonitoringSuppressionUpdateAttributes {
public static final String JSON_PROPERTY_RULE_QUERY = "rule_query";
private String ruleQuery;

public static final String JSON_PROPERTY_START_DATE = "start_date";
private JsonNullable<Long> startDate = JsonNullable.<Long>undefined();

public static final String JSON_PROPERTY_SUPPRESSION_QUERY = "suppression_query";
private String suppressionQuery;

Expand Down Expand Up @@ -198,6 +202,39 @@ public void setRuleQuery(String ruleQuery) {
this.ruleQuery = ruleQuery;
}

public SecurityMonitoringSuppressionUpdateAttributes startDate(Long startDate) {
this.startDate = JsonNullable.<Long>of(startDate);
return this;
}

/**
* A Unix millisecond timestamp giving the start date for the suppression rule. After this date,
* it starts suppressing signals. If unset, the start date of the suppression rule is left
* untouched. If set to <code>null</code>, the start date is removed.
*
* @return startDate
*/
@jakarta.annotation.Nullable
@JsonIgnore
public Long getStartDate() {
return startDate.orElse(null);
}

@JsonProperty(JSON_PROPERTY_START_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public JsonNullable<Long> getStartDate_JsonNullable() {
return startDate;
}

@JsonProperty(JSON_PROPERTY_START_DATE)
public void setStartDate_JsonNullable(JsonNullable<Long> startDate) {
this.startDate = startDate;
}

public void setStartDate(Long startDate) {
this.startDate = JsonNullable.<Long>of(startDate);
}

public SecurityMonitoringSuppressionUpdateAttributes suppressionQuery(String suppressionQuery) {
this.suppressionQuery = suppressionQuery;
return this;
Expand Down Expand Up @@ -310,6 +347,7 @@ public boolean equals(Object o) {
this.expirationDate, securityMonitoringSuppressionUpdateAttributes.expirationDate)
&& Objects.equals(this.name, securityMonitoringSuppressionUpdateAttributes.name)
&& Objects.equals(this.ruleQuery, securityMonitoringSuppressionUpdateAttributes.ruleQuery)
&& Objects.equals(this.startDate, securityMonitoringSuppressionUpdateAttributes.startDate)
&& Objects.equals(
this.suppressionQuery, securityMonitoringSuppressionUpdateAttributes.suppressionQuery)
&& Objects.equals(this.version, securityMonitoringSuppressionUpdateAttributes.version)
Expand All @@ -327,6 +365,7 @@ public int hashCode() {
expirationDate,
name,
ruleQuery,
startDate,
suppressionQuery,
version,
additionalProperties);
Expand All @@ -342,6 +381,7 @@ public String toString() {
sb.append(" expirationDate: ").append(toIndentedString(expirationDate)).append("\n");
sb.append(" name: ").append(toIndentedString(name)).append("\n");
sb.append(" ruleQuery: ").append(toIndentedString(ruleQuery)).append("\n");
sb.append(" startDate: ").append(toIndentedString(startDate)).append("\n");
sb.append(" suppressionQuery: ").append(toIndentedString(suppressionQuery)).append("\n");
sb.append(" version: ").append(toIndentedString(version)).append("\n");
sb.append(" additionalProperties: ")
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2024-05-20T17:07:03.155Z
2024-11-27T15:22:34.711Z
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"httpRequest": {
"body": {
"type": "JSON",
"json": "{\"data\":{\"attributes\":{\"description\":\"This rule suppresses low-severity signals in staging environments.\",\"enabled\":true,\"expiration_date\":1718039223000,\"name\":\"Test-Create_a_suppression_rule_returns_OK_response-1716224823\",\"rule_query\":\"type:log_detection source:cloudtrail\",\"suppression_query\":\"env:staging status:low\"},\"type\":\"suppressions\"}}"
"json": "{\"data\":{\"attributes\":{\"description\":\"This rule suppresses low-severity signals in staging environments.\",\"enabled\":true,\"expiration_date\":1734535354000,\"name\":\"Test-Create_a_suppression_rule_returns_OK_response-1732720954\",\"rule_query\":\"type:log_detection source:cloudtrail\",\"start_date\":1733584954000,\"suppression_query\":\"env:staging status:low\"},\"type\":\"suppressions\"}}"
},
"headers": {},
"method": "POST",
Expand All @@ -12,10 +12,10 @@
"secure": true
},
"httpResponse": {
"body": "{\"data\":{\"id\":\"8qj-mmz-zym\",\"attributes\":{\"name\":\"Test-Create_a_suppression_rule_returns_OK_response-1716224823\",\"enabled\":true,\"description\":\"This rule suppresses low-severity signals in staging environments.\",\"rule_query\":\"type:log_detection source:cloudtrail\",\"suppression_query\":\"env:staging status:low\",\"data_exclusion_query\":\"\",\"expiration_date\":1718039223000,\"version\":1,\"creation_date\":1716224823374,\"update_date\":1716224823374,\"creator\":{\"name\":null,\"handle\":\"[email protected]\"},\"updater\":{\"name\":null,\"handle\":\"[email protected]\"}},\"type\":\"suppressions\"}}\n",
"body": "{\"data\":{\"id\":\"ejv-ksi-r4j\",\"type\":\"suppressions\",\"attributes\":{\"creation_date\":1732720954868,\"creator\":{\"handle\":\"[email protected]\",\"name\":\"\"},\"data_exclusion_query\":\"\",\"description\":\"This rule suppresses low-severity signals in staging environments.\",\"editable\":true,\"enabled\":true,\"expiration_date\":1734535354000,\"name\":\"Test-Create_a_suppression_rule_returns_OK_response-1732720954\",\"rule_query\":\"type:log_detection source:cloudtrail\",\"start_date\":1733584954000,\"suppression_query\":\"env:staging status:low\",\"update_date\":1732720954868,\"updater\":{\"handle\":\"[email protected]\",\"name\":\"\"},\"version\":1}}}",
"headers": {
"Content-Type": [
"application/json"
"application/vnd.api+json"
]
},
"statusCode": 200,
Expand All @@ -27,22 +27,18 @@
"timeToLive": {
"unlimited": true
},
"id": "27a1f916-3c5e-7ca4-58af-a4dfedcf653a"
"id": "935a1a23-dd04-eabb-dc7d-2dd3caa616f9"
},
{
"httpRequest": {
"headers": {},
"method": "DELETE",
"path": "/api/v2/security_monitoring/configuration/suppressions/8qj-mmz-zym",
"path": "/api/v2/security_monitoring/configuration/suppressions/ejv-ksi-r4j",
"keepAlive": false,
"secure": true
},
"httpResponse": {
"headers": {
"Content-Type": [
"text/html; charset=utf-8"
]
},
"headers": {},
"statusCode": 204,
"reasonPhrase": "No Content"
},
Expand All @@ -52,6 +48,6 @@
"timeToLive": {
"unlimited": true
},
"id": "d9f9b01e-0568-0cee-8935-b3a7c3962d93"
"id": "b62286dc-79a3-ad34-84cf-c79401028e80"
}
]
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2024-05-20T17:07:12.131Z
2024-11-27T15:24:35.169Z
Loading
Loading