Class: Google::Apis::SecuritycenterV1p1beta1::GoogleCloudSecuritycenterV1p1beta1SecurityMarks

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/securitycenter_v1p1beta1/classes.rb,
generated/google/apis/securitycenter_v1p1beta1/representations.rb,
generated/google/apis/securitycenter_v1p1beta1/representations.rb

Overview

User specified security marks that are attached to the parent Cloud Security Command Center (Cloud SCC) resource. Security marks are scoped within a Cloud SCC organization -- they can be modified and viewed by all users who have proper permissions on the organization.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ GoogleCloudSecuritycenterV1p1beta1SecurityMarks

Returns a new instance of GoogleCloudSecuritycenterV1p1beta1SecurityMarks.



776
777
778
# File 'generated/google/apis/securitycenter_v1p1beta1/classes.rb', line 776

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#marksHash<String,String>

Mutable user specified security marks belonging to the parent resource. Constraints are as follows:

  • Keys and values are treated as case insensitive
  • Keys must be between 1 - 256 characters (inclusive)
  • Keys must be letters, numbers, underscores, or dashes
  • Values have leading and trailing whitespace trimmed, remaining characters must be between 1 - 4096 characters (inclusive) Corresponds to the JSON property marks

Returns:

  • (Hash<String,String>)


764
765
766
# File 'generated/google/apis/securitycenter_v1p1beta1/classes.rb', line 764

def marks
  @marks
end

#nameString

The relative resource name of the SecurityMarks. See: https://cloud.google.com/apis/design/resource_names#relative_resource_name Examples: "organizations/organization_id/assets/asset_id/securityMarks" "organizations/organization_id/sources/source_id/findings/finding_id/ securityMarks". Corresponds to the JSON property name

Returns:

  • (String)


774
775
776
# File 'generated/google/apis/securitycenter_v1p1beta1/classes.rb', line 774

def name
  @name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



781
782
783
784
# File 'generated/google/apis/securitycenter_v1p1beta1/classes.rb', line 781

def update!(**args)
  @marks = args[:marks] if args.key?(:marks)
  @name = args[:name] if args.key?(:name)
end