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.



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

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

Instance Attribute Details

#etagString

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

Returns:

  • (String)


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

def etag
  @etag
end

#target_stateGoogle::Apis::GameservicesV1::TargetState

Encapsulates the Target state. Corresponds to the JSON property targetState



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

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>)


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

def unavailable
  @unavailable
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



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

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