google-apis-gameservices_v1beta 0.13.0 → 0.14.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 34524ac2dd0d4ba1a24c1ffada6697f86ccaf1b77b54543e13bfab9a089ad88f
|
4
|
+
data.tar.gz: 66cb825f577acb26285da210611aa20b1c7d91d79f48bc76fb0aa2aa94522358
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5a3d89b475d51eacac6f3a74c2971a91766b7caf6b1e1b1b0ea1961c5798e8b3c14c7515c6dfaa27967a7f3f581efb27d05d7fddadbd0490b522572d9cf5597e
|
7
|
+
data.tar.gz: c15872e43a3c4320425aae1afae16d10f243f7eb9a0574c9cf211c2ea2eb27aa9bf47e294b4b597035b364d1b9585586f380b420a8776b09e48aa449eea4f32b
|
data/CHANGELOG.md
CHANGED
@@ -672,14 +672,6 @@ module Google
|
|
672
672
|
class GameServerCluster
|
673
673
|
include Google::Apis::Core::Hashable
|
674
674
|
|
675
|
-
# Optional. The allocation priority assigned to the game server cluster. Game
|
676
|
-
# server clusters receive new game server allocations based on the relative
|
677
|
-
# allocation priorites set for each cluster, if the realm is configured for
|
678
|
-
# multicluster allocation.
|
679
|
-
# Corresponds to the JSON property `allocationPriority`
|
680
|
-
# @return [String]
|
681
|
-
attr_accessor :allocation_priority
|
682
|
-
|
683
675
|
# The state of the Kubernetes cluster.
|
684
676
|
# Corresponds to the JSON property `clusterState`
|
685
677
|
# @return [Google::Apis::GameservicesV1beta::KubernetesClusterState]
|
@@ -730,7 +722,6 @@ module Google
|
|
730
722
|
|
731
723
|
# Update properties of this object
|
732
724
|
def update!(**args)
|
733
|
-
@allocation_priority = args[:allocation_priority] if args.key?(:allocation_priority)
|
734
725
|
@cluster_state = args[:cluster_state] if args.key?(:cluster_state)
|
735
726
|
@connection_info = args[:connection_info] if args.key?(:connection_info)
|
736
727
|
@create_time = args[:create_time] if args.key?(:create_time)
|
@@ -751,12 +742,6 @@ module Google
|
|
751
742
|
# @return [Google::Apis::GameservicesV1beta::GkeClusterReference]
|
752
743
|
attr_accessor :gke_cluster_reference
|
753
744
|
|
754
|
-
# GkeHubClusterReference represents a reference to a Kubernetes cluster
|
755
|
-
# registered through GKE Hub.
|
756
|
-
# Corresponds to the JSON property `gkeHubClusterReference`
|
757
|
-
# @return [Google::Apis::GameservicesV1beta::GkeHubClusterReference]
|
758
|
-
attr_accessor :gke_hub_cluster_reference
|
759
|
-
|
760
745
|
# Namespace designated on the game server cluster where the Agones game server
|
761
746
|
# instances will be created. Existence of the namespace will be validated during
|
762
747
|
# creation.
|
@@ -771,7 +756,6 @@ module Google
|
|
771
756
|
# Update properties of this object
|
772
757
|
def update!(**args)
|
773
758
|
@gke_cluster_reference = args[:gke_cluster_reference] if args.key?(:gke_cluster_reference)
|
774
|
-
@gke_hub_cluster_reference = args[:gke_hub_cluster_reference] if args.key?(:gke_hub_cluster_reference)
|
775
759
|
@namespace = args[:namespace] if args.key?(:namespace)
|
776
760
|
end
|
777
761
|
end
|
@@ -993,31 +977,6 @@ module Google
|
|
993
977
|
end
|
994
978
|
end
|
995
979
|
|
996
|
-
# GkeHubClusterReference represents a reference to a Kubernetes cluster
|
997
|
-
# registered through GKE Hub.
|
998
|
-
class GkeHubClusterReference
|
999
|
-
include Google::Apis::Core::Hashable
|
1000
|
-
|
1001
|
-
# The full or partial name of a GKE Hub membership, using one of the following
|
1002
|
-
# forms: * `https://gkehub.googleapis.com/v1beta1/projects/`project_id`/
|
1003
|
-
# locations/global/memberships/`membership_id`` * `projects/`project_id`/
|
1004
|
-
# locations/global/memberships/`membership_id`` * ``membership_id`` If project
|
1005
|
-
# is not specified, the project of the GameServerCluster resource is used to
|
1006
|
-
# generate the full name of the GKE Hub membership.
|
1007
|
-
# Corresponds to the JSON property `membership`
|
1008
|
-
# @return [String]
|
1009
|
-
attr_accessor :membership
|
1010
|
-
|
1011
|
-
def initialize(**args)
|
1012
|
-
update!(**args)
|
1013
|
-
end
|
1014
|
-
|
1015
|
-
# Update properties of this object
|
1016
|
-
def update!(**args)
|
1017
|
-
@membership = args[:membership] if args.key?(:membership)
|
1018
|
-
end
|
1019
|
-
end
|
1020
|
-
|
1021
980
|
# The state of the Kubernetes cluster.
|
1022
981
|
class KubernetesClusterState
|
1023
982
|
include Google::Apis::Core::Hashable
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module GameservicesV1beta
|
18
18
|
# Version of the google-apis-gameservices_v1beta gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.14.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.4.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20211112"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -184,12 +184,6 @@ module Google
|
|
184
184
|
include Google::Apis::Core::JsonObjectSupport
|
185
185
|
end
|
186
186
|
|
187
|
-
class GkeHubClusterReference
|
188
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
189
|
-
|
190
|
-
include Google::Apis::Core::JsonObjectSupport
|
191
|
-
end
|
192
|
-
|
193
187
|
class KubernetesClusterState
|
194
188
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
195
189
|
|
@@ -575,7 +569,6 @@ module Google
|
|
575
569
|
class GameServerCluster
|
576
570
|
# @private
|
577
571
|
class Representation < Google::Apis::Core::JsonRepresentation
|
578
|
-
property :allocation_priority, as: 'allocationPriority'
|
579
572
|
property :cluster_state, as: 'clusterState', class: Google::Apis::GameservicesV1beta::KubernetesClusterState, decorator: Google::Apis::GameservicesV1beta::KubernetesClusterState::Representation
|
580
573
|
|
581
574
|
property :connection_info, as: 'connectionInfo', class: Google::Apis::GameservicesV1beta::GameServerClusterConnectionInfo, decorator: Google::Apis::GameservicesV1beta::GameServerClusterConnectionInfo::Representation
|
@@ -594,8 +587,6 @@ module Google
|
|
594
587
|
class Representation < Google::Apis::Core::JsonRepresentation
|
595
588
|
property :gke_cluster_reference, as: 'gkeClusterReference', class: Google::Apis::GameservicesV1beta::GkeClusterReference, decorator: Google::Apis::GameservicesV1beta::GkeClusterReference::Representation
|
596
589
|
|
597
|
-
property :gke_hub_cluster_reference, as: 'gkeHubClusterReference', class: Google::Apis::GameservicesV1beta::GkeHubClusterReference, decorator: Google::Apis::GameservicesV1beta::GkeHubClusterReference::Representation
|
598
|
-
|
599
590
|
property :namespace, as: 'namespace'
|
600
591
|
end
|
601
592
|
end
|
@@ -656,13 +647,6 @@ module Google
|
|
656
647
|
end
|
657
648
|
end
|
658
649
|
|
659
|
-
class GkeHubClusterReference
|
660
|
-
# @private
|
661
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
662
|
-
property :membership, as: 'membership'
|
663
|
-
end
|
664
|
-
end
|
665
|
-
|
666
650
|
class KubernetesClusterState
|
667
651
|
# @private
|
668
652
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-gameservices_v1beta
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.14.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-12-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-gameservices_v1beta/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-gameservices_v1beta/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-gameservices_v1beta/v0.14.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-gameservices_v1beta
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|