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
Response message for ListInterceptDeploymentGroups.
Instance Attribute Summary collapse
-
#intercept_deployment_groups ⇒ Array<Google::Apis::NetworksecurityV1beta1::InterceptDeploymentGroup>
The deployment groups from the specified parent.
-
#next_page_token ⇒ String
A token that can be sent as
page_tokento retrieve the next page.
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.
3047 3048 3049 |
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 3047 def initialize(**args) update!(**args) end |
Instance Attribute Details
#intercept_deployment_groups ⇒ Array<Google::Apis::NetworksecurityV1beta1::InterceptDeploymentGroup>
The deployment groups from the specified parent.
Corresponds to the JSON property interceptDeploymentGroups
3038 3039 3040 |
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 3038 def intercept_deployment_groups @intercept_deployment_groups end |
#next_page_token ⇒ String
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
3045 3046 3047 |
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 3045 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3052 3053 3054 3055 |
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 3052 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 |