class Google::Apis::GameservicesV1beta::GameServerDeployment
A game server deployment resource.
Attributes
Output only. The creation time. Corresponds to the JSON property `createTime` @return [String]
Human readable description of the game server delpoyment. Corresponds to the JSON property `description` @return [String]
ETag of the resource. Corresponds to the JSON property `etag` @return [String]
The labels associated with this game server deployment. Each label is a key- value pair. Corresponds to the JSON property `labels` @return [Hash<String,String>]
The resource name of the game server deployment, in the following form: ` projects/`project`/locations/`location`/gameServerDeployments/`deployment“. For example, `projects/my-project/locations/global/gameServerDeployments/my- deployment`. Corresponds to the JSON property `name` @return [String]
Output only. The last-modified time. Corresponds to the JSON property `updateTime` @return [String]
Public Class Methods
# File lib/google/apis/gameservices_v1beta/classes.rb, line 902 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/gameservices_v1beta/classes.rb, line 907 def update!(**args) @create_time = args[:create_time] if args.key?(:create_time) @description = args[:description] if args.key?(:description) @etag = args[:etag] if args.key?(:etag) @labels = args[:labels] if args.key?(:labels) @name = args[:name] if args.key?(:name) @update_time = args[:update_time] if args.key?(:update_time) end