Class: Google::Apis::SecuritycenterV1beta2::Subscription

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

Overview

Resource capturing the state of an organization's subscription.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Subscription

Returns a new instance of Subscription.



9455
9456
9457
# File 'lib/google/apis/securitycenter_v1beta2/classes.rb', line 9455

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

Instance Attribute Details

#detailsGoogle::Apis::SecuritycenterV1beta2::Details

Details of a subscription. Corresponds to the JSON property details



9442
9443
9444
# File 'lib/google/apis/securitycenter_v1beta2/classes.rb', line 9442

def details
  @details
end

#nameString

The resource name of the subscription. Format: organizations/organization/ subscription Corresponds to the JSON property name

Returns:

  • (String)


9448
9449
9450
# File 'lib/google/apis/securitycenter_v1beta2/classes.rb', line 9448

def name
  @name
end

#tierString

The tier of SCC features this organization currently has access to. Corresponds to the JSON property tier

Returns:

  • (String)


9453
9454
9455
# File 'lib/google/apis/securitycenter_v1beta2/classes.rb', line 9453

def tier
  @tier
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



9460
9461
9462
9463
9464
# File 'lib/google/apis/securitycenter_v1beta2/classes.rb', line 9460

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