Class: Google::Apis::NetworksecurityV1beta1::ListInterceptDeploymentGroupsResponse
- Inherits:
-
Object
- Object
- Google::Apis::NetworksecurityV1beta1::ListInterceptDeploymentGroupsResponse
- 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
Message for response to listing InterceptDeploymentGroups
Instance Attribute Summary collapse
-
#intercept_deployment_groups ⇒ Array<Google::Apis::NetworksecurityV1beta1::InterceptDeploymentGroup>
The list of InterceptDeploymentGroup Corresponds to the JSON property
interceptDeploymentGroups
. -
#next_page_token ⇒ String
A token identifying a page of results the server should return.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListInterceptDeploymentGroupsResponse
constructor
A new instance of ListInterceptDeploymentGroupsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListInterceptDeploymentGroupsResponse
Returns a new instance of ListInterceptDeploymentGroupsResponse.
2420 2421 2422 |
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 2420 def initialize(**args) update!(**args) end |
Instance Attribute Details
#intercept_deployment_groups ⇒ Array<Google::Apis::NetworksecurityV1beta1::InterceptDeploymentGroup>
The list of InterceptDeploymentGroup
Corresponds to the JSON property interceptDeploymentGroups
2413 2414 2415 |
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 2413 def intercept_deployment_groups @intercept_deployment_groups end |
#next_page_token ⇒ String
A token identifying a page of results the server should return.
Corresponds to the JSON property nextPageToken
2418 2419 2420 |
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 2418 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2425 2426 2427 2428 |
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 2425 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 |