Skip to content
Open
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
4 changes: 4 additions & 0 deletions .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -87469,6 +87469,10 @@ components:
description: A description of the critical asset.
example: Production database servers handling PII
type: string
editable:
description: Whether the critical asset is editable.
example: true
type: boolean
enabled:
description: Whether the critical asset is enabled.
example: true
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2026-01-02T19:09:02.221Z
2026-07-10T15:48:20.043Z

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 @@
2026-01-12T19:41:34.038Z
2026-07-10T15:48:20.956Z

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 @@
2026-01-12T19:41:36.187Z
2026-07-10T15:48:22.074Z

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 @@
2026-01-12T19:41:37.223Z
2026-07-10T15:48:23.863Z

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 @@ -33,6 +33,9 @@ class SecurityMonitoringCriticalAssetAttributes
# A description of the critical asset.
attr_accessor :description

# Whether the critical asset is editable.
attr_accessor :editable

# Whether the critical asset is enabled.
attr_accessor :enabled

Expand Down Expand Up @@ -70,6 +73,7 @@ def self.attribute_map
:'creation_date' => :'creation_date',
:'creator' => :'creator',
:'description' => :'description',
:'editable' => :'editable',
:'enabled' => :'enabled',
:'query' => :'query',
:'rule_query' => :'rule_query',
Expand All @@ -90,6 +94,7 @@ def self.openapi_types
:'creation_date' => :'Integer',
:'creator' => :'SecurityMonitoringUser',
:'description' => :'String',
:'editable' => :'Boolean',
:'enabled' => :'Boolean',
:'query' => :'String',
:'rule_query' => :'String',
Expand Down Expand Up @@ -136,6 +141,10 @@ def initialize(attributes = {})
self.description = attributes[:'description']
end

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

if attributes.key?(:'enabled')
self.enabled = attributes[:'enabled']
end
Expand Down Expand Up @@ -223,6 +232,7 @@ def ==(o)
creation_date == o.creation_date &&
creator == o.creator &&
description == o.description &&
editable == o.editable &&
enabled == o.enabled &&
query == o.query &&
rule_query == o.rule_query &&
Expand All @@ -239,7 +249,7 @@ def ==(o)
# @return [Integer] Hash code
# @!visibility private
def hash
[creation_author_id, creation_date, creator, description, enabled, query, rule_query, severity, tags, update_author_id, update_date, updater, version, additional_properties].hash
[creation_author_id, creation_date, creator, description, editable, enabled, query, rule_query, severity, tags, update_author_id, update_date, updater, version, additional_properties].hash
end
end
end
Loading