Class: Google::Apis::NetworksecurityV1beta1::ListSacRealmsResponse

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 ListSACRealms method.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListSacRealmsResponse

Returns a new instance of ListSacRealmsResponse.



3347
3348
3349
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 3347

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)


3335
3336
3337
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 3335

def next_page_token
  @next_page_token
end

#sac_realmsArray<Google::Apis::NetworksecurityV1beta1::SacRealm>

The list of SACRealms. Corresponds to the JSON property sacRealms



3340
3341
3342
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 3340

def sac_realms
  @sac_realms
end

#unreachableArray<String>

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

Returns:

  • (Array<String>)


3345
3346
3347
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 3345

def unreachable
  @unreachable
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3352
3353
3354
3355
3356
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 3352

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