Skip to content
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-09 11:21:38.816823",
"spec_repo_commit": "21da0df3"
"regenerated": "2024-12-10 13:52:29.278222",
"spec_repo_commit": "4f71be94"
},
"v2": {
"apigentools_version": "1.6.6",
"regenerated": "2024-12-09 11:21:38.838595",
"spec_repo_commit": "21da0df3"
"regenerated": "2024-12-10 13:52:29.297144",
"spec_repo_commit": "4f71be94"
}
}
}
4 changes: 4 additions & 0 deletions .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22893,6 +22893,10 @@ components:
description: User ID of the user who updated the rule.
format: int64
type: integer
updatedAt:
description: The date the rule was last updated, in milliseconds.
format: int64
type: integer
version:
description: The version of the rule.
format: int64
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2024-05-10T16:34:48.233Z
2024-11-22T13:52:05.136Z

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -1 +1 @@
2024-05-10T16:34:48.765Z
2024-11-22T13:52:07.331Z

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -1 +1 @@
2024-05-10T16:34:54.978Z
2024-11-22T13:52:12.595Z

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,9 @@ class SecurityMonitoringStandardRuleResponse
# User ID of the user who updated the rule.
attr_accessor :update_author_id

# The date the rule was last updated, in milliseconds.
attr_accessor :updated_at

# The version of the rule.
attr_accessor :version

Expand Down Expand Up @@ -114,6 +117,7 @@ def self.attribute_map
:'third_party_cases' => :'thirdPartyCases',
:'type' => :'type',
:'update_author_id' => :'updateAuthorId',
:'updated_at' => :'updatedAt',
:'version' => :'version'
}
end
Expand Down Expand Up @@ -143,6 +147,7 @@ def self.openapi_types
:'third_party_cases' => :'Array<SecurityMonitoringThirdPartyRuleCase>',
:'type' => :'SecurityMonitoringRuleTypeRead',
:'update_author_id' => :'Integer',
:'updated_at' => :'Integer',
:'version' => :'Integer'
}
end
Expand Down Expand Up @@ -263,6 +268,10 @@ def initialize(attributes = {})
self.update_author_id = attributes[:'update_author_id']
end

if attributes.key?(:'updated_at')
self.updated_at = attributes[:'updated_at']
end

if attributes.key?(:'version')
self.version = attributes[:'version']
end
Expand Down Expand Up @@ -315,6 +324,7 @@ def ==(o)
third_party_cases == o.third_party_cases &&
type == o.type &&
update_author_id == o.update_author_id &&
updated_at == o.updated_at &&
version == o.version
additional_properties == o.additional_properties
end
Expand All @@ -323,7 +333,7 @@ def ==(o)
# @return [Integer] Hash code
# @!visibility private
def hash
[cases, compliance_signal_options, created_at, creation_author_id, default_tags, deprecation_date, filters, has_extended_title, id, is_default, is_deleted, is_enabled, message, name, options, queries, reference_tables, tags, third_party_cases, type, update_author_id, version].hash
[cases, compliance_signal_options, created_at, creation_author_id, default_tags, deprecation_date, filters, has_extended_title, id, is_default, is_deleted, is_enabled, message, name, options, queries, reference_tables, tags, third_party_cases, type, update_author_id, updated_at, version].hash
end
end
end
Loading