Class: Google::Apis::GameservicesV1::PreviewGameServerDeploymentRolloutResponse

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

Overview

Response message for PreviewGameServerDeploymentRollout. This has details about the Agones fleet and autoscaler to be actuated.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ PreviewGameServerDeploymentRolloutResponse

Returns a new instance of PreviewGameServerDeploymentRolloutResponse.



1667
1668
1669
# File 'lib/google/apis/gameservices_v1/classes.rb', line 1667

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

Instance Attribute Details

#etagString

ETag of the game server deployment. Corresponds to the JSON property etag

Returns:

  • (String)


1655
1656
1657
# File 'lib/google/apis/gameservices_v1/classes.rb', line 1655

def etag
  @etag
end

#target_stateGoogle::Apis::GameservicesV1::TargetState

Encapsulates the Target state. Corresponds to the JSON property targetState



1660
1661
1662
# File 'lib/google/apis/gameservices_v1/classes.rb', line 1660

def target_state
  @target_state
end

#unavailableArray<String>

Locations that could not be reached on this request. Corresponds to the JSON property unavailable

Returns:

  • (Array<String>)


1665
1666
1667
# File 'lib/google/apis/gameservices_v1/classes.rb', line 1665

def unavailable
  @unavailable
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1672
1673
1674
1675
1676
# File 'lib/google/apis/gameservices_v1/classes.rb', line 1672

def update!(**args)
  @etag = args[:etag] if args.key?(:etag)
  @target_state = args[:target_state] if args.key?(:target_state)
  @unavailable = args[:unavailable] if args.key?(:unavailable)
end