Class: Google::Apis::ConfigV1::ListDeploymentGroupRevisionsResponse

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/config_v1/classes.rb,
lib/google/apis/config_v1/representations.rb,
lib/google/apis/config_v1/representations.rb

Overview

The response message for the ListDeploymentGroupRevisions method.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListDeploymentGroupRevisionsResponse

Returns a new instance of ListDeploymentGroupRevisionsResponse.



1109
1110
1111
# File 'lib/google/apis/config_v1/classes.rb', line 1109

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

Instance Attribute Details

#deployment_group_revisionsArray<Google::Apis::ConfigV1::DeploymentGroupRevision>

The deployment group revisions from the specified collection. Corresponds to the JSON property deploymentGroupRevisions



1096
1097
1098
# File 'lib/google/apis/config_v1/classes.rb', line 1096

def deployment_group_revisions
  @deployment_group_revisions
end

#next_page_tokenString

Token to be supplied to the next ListDeploymentGroupRevisions request via page_token to obtain the next set of results. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


1102
1103
1104
# File 'lib/google/apis/config_v1/classes.rb', line 1102

def next_page_token
  @next_page_token
end

#unreachableArray<String>

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

Returns:

  • (Array<String>)


1107
1108
1109
# File 'lib/google/apis/config_v1/classes.rb', line 1107

def unreachable
  @unreachable
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1114
1115
1116
1117
1118
# File 'lib/google/apis/config_v1/classes.rb', line 1114

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