google-apis-gameservices_v1beta 0.12.0 → 0.16.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b4aad40d2a67d7cd04e03e3a374c92057d46b3d7db224929d6c70ea09f7909c9
4
- data.tar.gz: 6a726dac78f974876bb4c6fce00598f01a2b87db8914c39cd7c5e1077f79d789
3
+ metadata.gz: f7519d12ee631c245d7705928ba45ab54ea91aedf7ef0de2f2cce3bff55fe815
4
+ data.tar.gz: 8ed66c6b454f91c514ff695f714c8fc72628bf14379998ec5c96ebc2ee9867ce
5
5
  SHA512:
6
- metadata.gz: ed51c879caf22fc2abea338fdce7bdc6d7e3d0e3a8b9000f5260745889790aa0afe9ba984537001664de2db1006d7b44cc685247174d33e6ea5665fa596332e1
7
- data.tar.gz: 8aae4a049a2425903b12672267265d75e2f6f4abb954e2ccd493b391e814e767bddb02d352c68066ecadcc2983d05762bf712e9c3daed31ee35b8308ec2a6391
6
+ metadata.gz: 307e3e173acf05de33c18e6532565a3e1939df9f488321b18dc66b8929aace7ddebeee2d9e4ab1709d677fca54bae0c677e307cd623160d21e5414901fb51e7d
7
+ data.tar.gz: a8a50780683f02b5d749ec2c9d8ef738ee559c5e1ec91771a8eefed322a2a68946326060e8a070ef75da4c139b8241da69fc215ea90c0e03a038fa793fbeca87
data/CHANGELOG.md CHANGED
@@ -1,5 +1,22 @@
1
1
  # Release history for google-apis-gameservices_v1beta
2
2
 
3
+ ### v0.16.0 (2022-02-05)
4
+
5
+ * Regenerated from discovery document revision 20220126
6
+ * Regenerated using generator version 0.4.1
7
+
8
+ ### v0.15.0 (2021-12-16)
9
+
10
+ * Unspecified changes
11
+
12
+ ### v0.14.0 (2021-11-20)
13
+
14
+ * Regenerated from discovery document revision 20211112
15
+
16
+ ### v0.13.0 (2021-11-13)
17
+
18
+ * Regenerated from discovery document revision 20211103
19
+
3
20
  ### v0.12.0 (2021-10-31)
4
21
 
5
22
  * Regenerated from discovery document revision 20211021
data/OVERVIEW.md CHANGED
@@ -51,7 +51,7 @@ require "google/apis/gameservices_v1beta"
51
51
  client = Google::Apis::GameservicesV1beta::GameServicesService.new
52
52
 
53
53
  # Authenticate calls
54
- client.authentication = # ... use the googleauth gem to create credentials
54
+ client.authorization = # ... use the googleauth gem to create credentials
55
55
  ```
56
56
 
57
57
  See the class reference docs for information on the methods you can call from a client.
@@ -45,11 +45,6 @@ module Google
45
45
  # @return [Array<Google::Apis::GameservicesV1beta::AuditLogConfig>]
46
46
  attr_accessor :audit_log_configs
47
47
 
48
- #
49
- # Corresponds to the JSON property `exemptedMembers`
50
- # @return [Array<String>]
51
- attr_accessor :exempted_members
52
-
53
48
  # Specifies a service that will be enabled for audit logging. For example, `
54
49
  # storage.googleapis.com`, `cloudsql.googleapis.com`. `allServices` is a special
55
50
  # value that covers all services.
@@ -64,7 +59,6 @@ module Google
64
59
  # Update properties of this object
65
60
  def update!(**args)
66
61
  @audit_log_configs = args[:audit_log_configs] if args.key?(:audit_log_configs)
67
- @exempted_members = args[:exempted_members] if args.key?(:exempted_members)
68
62
  @service = args[:service] if args.key?(:service)
69
63
  end
70
64
  end
@@ -672,14 +666,6 @@ module Google
672
666
  class GameServerCluster
673
667
  include Google::Apis::Core::Hashable
674
668
 
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
669
  # The state of the Kubernetes cluster.
684
670
  # Corresponds to the JSON property `clusterState`
685
671
  # @return [Google::Apis::GameservicesV1beta::KubernetesClusterState]
@@ -730,7 +716,6 @@ module Google
730
716
 
731
717
  # Update properties of this object
732
718
  def update!(**args)
733
- @allocation_priority = args[:allocation_priority] if args.key?(:allocation_priority)
734
719
  @cluster_state = args[:cluster_state] if args.key?(:cluster_state)
735
720
  @connection_info = args[:connection_info] if args.key?(:connection_info)
736
721
  @create_time = args[:create_time] if args.key?(:create_time)
@@ -751,12 +736,6 @@ module Google
751
736
  # @return [Google::Apis::GameservicesV1beta::GkeClusterReference]
752
737
  attr_accessor :gke_cluster_reference
753
738
 
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
739
  # Namespace designated on the game server cluster where the Agones game server
761
740
  # instances will be created. Existence of the namespace will be validated during
762
741
  # creation.
@@ -771,7 +750,6 @@ module Google
771
750
  # Update properties of this object
772
751
  def update!(**args)
773
752
  @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
753
  @namespace = args[:namespace] if args.key?(:namespace)
776
754
  end
777
755
  end
@@ -993,31 +971,6 @@ module Google
993
971
  end
994
972
  end
995
973
 
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
974
  # The state of the Kubernetes cluster.
1022
975
  class KubernetesClusterState
1023
976
  include Google::Apis::Core::Hashable
@@ -1957,9 +1910,9 @@ module Google
1957
1910
  # specified by start_time and end_time. If the scheduled event's timespan is
1958
1911
  # larger than the cron_spec + cron_job_duration, the event will be recurring. If
1959
1912
  # only cron_spec + cron_job_duration are specified, the event is effective
1960
- # starting at the local time specified by cron_spec, and is recurring.
1913
+ # starting at the local time specified by cron_spec, and is recurring. ```
1961
1914
  # start_time|-------[cron job]-------[cron job]-------[cron job]---|end_time
1962
- # cron job: cron spec start time + duration
1915
+ # cron job: cron spec start time + duration ```
1963
1916
  class Schedule
1964
1917
  include Google::Apis::Core::Hashable
1965
1918
 
@@ -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.12.0"
19
+ GEM_VERSION = "0.16.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.4.0"
22
+ GENERATOR_VERSION = "0.4.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20211021"
25
+ REVISION = "20220126"
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
 
@@ -399,7 +393,6 @@ module Google
399
393
  class Representation < Google::Apis::Core::JsonRepresentation
400
394
  collection :audit_log_configs, as: 'auditLogConfigs', class: Google::Apis::GameservicesV1beta::AuditLogConfig, decorator: Google::Apis::GameservicesV1beta::AuditLogConfig::Representation
401
395
 
402
- collection :exempted_members, as: 'exemptedMembers'
403
396
  property :service, as: 'service'
404
397
  end
405
398
  end
@@ -575,7 +568,6 @@ module Google
575
568
  class GameServerCluster
576
569
  # @private
577
570
  class Representation < Google::Apis::Core::JsonRepresentation
578
- property :allocation_priority, as: 'allocationPriority'
579
571
  property :cluster_state, as: 'clusterState', class: Google::Apis::GameservicesV1beta::KubernetesClusterState, decorator: Google::Apis::GameservicesV1beta::KubernetesClusterState::Representation
580
572
 
581
573
  property :connection_info, as: 'connectionInfo', class: Google::Apis::GameservicesV1beta::GameServerClusterConnectionInfo, decorator: Google::Apis::GameservicesV1beta::GameServerClusterConnectionInfo::Representation
@@ -594,8 +586,6 @@ module Google
594
586
  class Representation < Google::Apis::Core::JsonRepresentation
595
587
  property :gke_cluster_reference, as: 'gkeClusterReference', class: Google::Apis::GameservicesV1beta::GkeClusterReference, decorator: Google::Apis::GameservicesV1beta::GkeClusterReference::Representation
596
588
 
597
- property :gke_hub_cluster_reference, as: 'gkeHubClusterReference', class: Google::Apis::GameservicesV1beta::GkeHubClusterReference, decorator: Google::Apis::GameservicesV1beta::GkeHubClusterReference::Representation
598
-
599
589
  property :namespace, as: 'namespace'
600
590
  end
601
591
  end
@@ -656,13 +646,6 @@ module Google
656
646
  end
657
647
  end
658
648
 
659
- class GkeHubClusterReference
660
- # @private
661
- class Representation < Google::Apis::Core::JsonRepresentation
662
- property :membership, as: 'membership'
663
- end
664
- end
665
-
666
649
  class KubernetesClusterState
667
650
  # @private
668
651
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -268,13 +268,16 @@ module Google
268
268
  # REQUIRED: The resource for which the policy is being requested. See the
269
269
  # operation documentation for the appropriate value for this field.
270
270
  # @param [Fixnum] options_requested_policy_version
271
- # Optional. The policy format version to be returned. Valid values are 0, 1, and
272
- # 3. Requests specifying an invalid value will be rejected. Requests for
273
- # policies with any conditional bindings must specify version 3. Policies
274
- # without any conditional bindings may specify any valid value or leave the
275
- # field unset. To learn which resources support conditions in their IAM policies,
276
- # see the [IAM documentation](https://cloud.google.com/iam/help/conditions/
277
- # resource-policies).
271
+ # Optional. The maximum policy version that will be used to format the policy.
272
+ # Valid values are 0, 1, and 3. Requests specifying an invalid value will be
273
+ # rejected. Requests for policies with any conditional role bindings must
274
+ # specify version 3. Policies with no conditional role bindings may specify any
275
+ # valid value or leave the field unset. The policy in the response might use the
276
+ # policy version that you specified, or it might use a lower policy version. For
277
+ # example, if you specify version 3, but the policy has no conditional role
278
+ # bindings, the response uses version 1. To learn which resources support
279
+ # conditions in their IAM policies, see the [IAM documentation](https://cloud.
280
+ # google.com/iam/help/conditions/resource-policies).
278
281
  # @param [String] fields
279
282
  # Selector specifying which fields to include in a partial response.
280
283
  # @param [String] quota_user
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.12.0
4
+ version: 0.16.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-01 00:00:00.000000000 Z
11
+ date: 2022-02-07 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.12.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-gameservices_v1beta/v0.16.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: []
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.2.17
78
+ rubygems_version: 3.3.5
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Game Services API V1beta