Class: Google::Apis::CloudcontrolspartnerV1::ListViolationsResponse

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

Overview

Response message for list customer violation requests

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListViolationsResponse

Returns a new instance of ListViolationsResponse.



468
469
470
# File 'lib/google/apis/cloudcontrolspartner_v1/classes.rb', line 468

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

Instance Attribute Details

#next_page_tokenString

A token that can be sent as page_token to retrieve the next page. If this field is omitted, there are no subsequent pages. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


455
456
457
# File 'lib/google/apis/cloudcontrolspartner_v1/classes.rb', line 455

def next_page_token
  @next_page_token
end

#unreachableArray<String>

Workloads that could not be reached due to permission errors or any other error. Ref: https://google.aip.dev/217 Corresponds to the JSON property unreachable

Returns:

  • (Array<String>)


461
462
463
# File 'lib/google/apis/cloudcontrolspartner_v1/classes.rb', line 461

def unreachable
  @unreachable
end

#violationsArray<Google::Apis::CloudcontrolspartnerV1::Violation>

List of violation Corresponds to the JSON property violations



466
467
468
# File 'lib/google/apis/cloudcontrolspartner_v1/classes.rb', line 466

def violations
  @violations
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



473
474
475
476
477
# File 'lib/google/apis/cloudcontrolspartner_v1/classes.rb', line 473

def update!(**args)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @unreachable = args[:unreachable] if args.key?(:unreachable)
  @violations = args[:violations] if args.key?(:violations)
end