google-cloud-support-v2 0.1.0 → 0.2.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: e7b12b4dc544d284235081721fe1b7e4a72b6749a7173a61a46b2422d4cacd00
4
- data.tar.gz: da7eee59245835021d781f91be135bb6b1a27485c799be5e7eeecdf975796a4f
3
+ metadata.gz: 2e1f520c6447e409c1790c1318618ef3e0caf58175cc02ba3e1e5a13d1d66f99
4
+ data.tar.gz: 1341adc91a0f05ef009c499095da2ac862e9674103d9a4ac2cd9d2e95e582aa4
5
5
  SHA512:
6
- metadata.gz: 3a46c6fd5e89534b243a0e5ee1fd919fe80bdd8146966985d491b36ad558d6f71b603598dfc47f18844ed4c377bb592008c9a8457f3b732df9a98349808b3bf4
7
- data.tar.gz: ea1cfc7de3ed4956e7fcf7d8d3769c6795dc5f8ed79f26e7d64fe0f366cf5a17c56747349a0094333b3b6ad662cc2e28126a95e2cf109012747cfe64eca18761
6
+ metadata.gz: f68f9df4f53a9c9abea02ee1aec5541cb2c1d4a4c793589cefca18f2a9cdaf061ed5b9644fa8e0ddc0d920c394a3fe8f62aa68bde92b5f6d05d876a4937d523a
7
+ data.tar.gz: 0c40d83c394899726e5693c58e13e5900d4643c4544a2dc81c83dd3529d828b142eb4048963e54d6e285ce686820535d5750654f8284663ef2edad452394731d
@@ -143,7 +143,8 @@ module Google
143
143
  credentials: credentials,
144
144
  endpoint: @config.endpoint,
145
145
  channel_args: @config.channel_args,
146
- interceptors: @config.interceptors
146
+ interceptors: @config.interceptors,
147
+ channel_pool_config: @config.channel_pool
147
148
  )
148
149
  end
149
150
 
@@ -366,6 +367,14 @@ module Google
366
367
  end
367
368
  end
368
369
 
370
+ ##
371
+ # Configuration for the channel pool
372
+ # @return [::Gapic::ServiceStub::ChannelPool::Configuration]
373
+ #
374
+ def channel_pool
375
+ @channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new
376
+ end
377
+
369
378
  ##
370
379
  # Configuration RPC class for the CaseAttachmentService API.
371
380
  #
@@ -166,7 +166,8 @@ module Google
166
166
  credentials: credentials,
167
167
  endpoint: @config.endpoint,
168
168
  channel_args: @config.channel_args,
169
- interceptors: @config.interceptors
169
+ interceptors: @config.interceptors,
170
+ channel_pool_config: @config.channel_pool
170
171
  )
171
172
  end
172
173
 
@@ -1081,6 +1082,14 @@ module Google
1081
1082
  end
1082
1083
  end
1083
1084
 
1085
+ ##
1086
+ # Configuration for the channel pool
1087
+ # @return [::Gapic::ServiceStub::ChannelPool::Configuration]
1088
+ #
1089
+ def channel_pool
1090
+ @channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new
1091
+ end
1092
+
1084
1093
  ##
1085
1094
  # Configuration RPC class for the CaseService API.
1086
1095
  #
@@ -145,7 +145,8 @@ module Google
145
145
  credentials: credentials,
146
146
  endpoint: @config.endpoint,
147
147
  channel_args: @config.channel_args,
148
- interceptors: @config.interceptors
148
+ interceptors: @config.interceptors,
149
+ channel_pool_config: @config.channel_pool
149
150
  )
150
151
  end
151
152
 
@@ -454,6 +455,14 @@ module Google
454
455
  end
455
456
  end
456
457
 
458
+ ##
459
+ # Configuration for the channel pool
460
+ # @return [::Gapic::ServiceStub::ChannelPool::Configuration]
461
+ #
462
+ def channel_pool
463
+ @channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new
464
+ end
465
+
457
466
  ##
458
467
  # Configuration RPC class for the CommentService API.
459
468
  #
@@ -21,7 +21,7 @@ module Google
21
21
  module Cloud
22
22
  module Support
23
23
  module V2
24
- VERSION = "0.1.0"
24
+ VERSION = "0.2.0"
25
25
  end
26
26
  end
27
27
  end
@@ -66,6 +66,20 @@ module Google
66
66
  # a non-empty value will be returned. The user will not be aware of what
67
67
  # non-empty value to expect.
68
68
  NON_EMPTY_DEFAULT = 7
69
+
70
+ # Denotes that the field in a resource (a message annotated with
71
+ # google.api.resource) is used in the resource name to uniquely identify the
72
+ # resource. For AIP-compliant APIs, this should only be applied to the
73
+ # `name` field on the resource.
74
+ #
75
+ # This behavior should not be applied to references to other resources within
76
+ # the message.
77
+ #
78
+ # The identifier field of resources often have different field behavior
79
+ # depending on the request it is embedded in (e.g. for Create methods name
80
+ # is optional and unused, while for Update methods it is required). Instead
81
+ # of method-specific annotations, only `IDENTIFIER` is required.
82
+ IDENTIFIER = 8
69
83
  end
70
84
  end
71
85
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-support-v2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.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: 2023-06-12 00:00:00.000000000 Z
11
+ date: 2023-09-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: gapic-common
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 0.19.1
19
+ version: 0.20.0
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: 0.19.1
29
+ version: 0.20.0
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -230,7 +230,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
230
230
  - !ruby/object:Gem::Version
231
231
  version: '0'
232
232
  requirements: []
233
- rubygems_version: 3.4.2
233
+ rubygems_version: 3.4.19
234
234
  signing_key:
235
235
  specification_version: 4
236
236
  summary: Manages Google Cloud technical support cases for Customer Care support offerings.