Class: Google::Apis::NetworksecurityV1beta1::ListInterceptDeploymentGroupsResponse

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 message for ListInterceptDeploymentGroups.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListInterceptDeploymentGroupsResponse

Returns a new instance of ListInterceptDeploymentGroupsResponse.



2934
2935
2936
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 2934

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

Instance Attribute Details

#intercept_deployment_groupsArray<Google::Apis::NetworksecurityV1beta1::InterceptDeploymentGroup>

The deployment groups from the specified parent. Corresponds to the JSON property interceptDeploymentGroups



2925
2926
2927
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 2925

def intercept_deployment_groups
  @intercept_deployment_groups
end

#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. See https://google.aip.dev/ 158 for more details. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


2932
2933
2934
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 2932

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2939
2940
2941
2942
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 2939

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