Class: Google::Apis::NetworksecurityV1beta1::ListSacAttachmentsResponse

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

Overview

Response for ListSACAttachments method.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListSacAttachmentsResponse

Returns a new instance of ListSacAttachmentsResponse.



3316
3317
3318
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 3316

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

Instance Attribute Details

#next_page_tokenString

A token identifying a page of results the server should return. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


3304
3305
3306
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 3304

def next_page_token
  @next_page_token
end

#sac_attachmentsArray<Google::Apis::NetworksecurityV1beta1::SacAttachment>

The list of SACAttachments. Corresponds to the JSON property sacAttachments



3309
3310
3311
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 3309

def sac_attachments
  @sac_attachments
end

#unreachableArray<String>

Locations that could not be reached. Corresponds to the JSON property unreachable

Returns:

  • (Array<String>)


3314
3315
3316
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 3314

def unreachable
  @unreachable
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3321
3322
3323
3324
3325
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 3321

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