Class: Google::Apis::ClouddeployV1::ListDeployPoliciesResponse
- Inherits:
-
Object
- Object
- Google::Apis::ClouddeployV1::ListDeployPoliciesResponse
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/clouddeploy_v1/classes.rb,
lib/google/apis/clouddeploy_v1/representations.rb,
lib/google/apis/clouddeploy_v1/representations.rb
Overview
The response object from ListDeployPolicies
.
Instance Attribute Summary collapse
-
#deploy_policies ⇒ Array<Google::Apis::ClouddeployV1::DeployPolicy>
The
DeployPolicy
objects. -
#next_page_token ⇒ String
A token, which can be sent as
page_token
to retrieve the next page. -
#unreachable ⇒ Array<String>
Locations that could not be reached.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListDeployPoliciesResponse
constructor
A new instance of ListDeployPoliciesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListDeployPoliciesResponse
Returns a new instance of ListDeployPoliciesResponse.
2973 2974 2975 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 2973 def initialize(**args) update!(**args) end |
Instance Attribute Details
#deploy_policies ⇒ Array<Google::Apis::ClouddeployV1::DeployPolicy>
The DeployPolicy
objects.
Corresponds to the JSON property deployPolicies
2960 2961 2962 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 2960 def deploy_policies @deploy_policies end |
#next_page_token ⇒ String
A token, which can be sent as page_token
to retrieve the next page. If this
field is omitted, there are no subsequent pages.
Corresponds to the JSON property nextPageToken
2966 2967 2968 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 2966 def next_page_token @next_page_token end |
#unreachable ⇒ Array<String>
Locations that could not be reached.
Corresponds to the JSON property unreachable
2971 2972 2973 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 2971 def unreachable @unreachable end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2978 2979 2980 2981 2982 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 2978 def update!(**args) @deploy_policies = args[:deploy_policies] if args.key?(:deploy_policies) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @unreachable = args[:unreachable] if args.key?(:unreachable) end |