google-apis-chat_v1 0.30.0 → 0.33.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: 06a54325626a566ef1e388e95eddc54667dad22eb1584f9cd9e4f6e4af4613f7
4
- data.tar.gz: 8b81083b511abe3e7a18c87d789dc2aa50aad10e69874b8b4eac1bf6fac958d3
3
+ metadata.gz: 7e1c3222bc5d64b8dacd65169d7a74f8c8c138052b6f90f659b54f94d9ff604f
4
+ data.tar.gz: e2e4a1da2408df5be7200ed901f474713470f54e06a325f38a69aed41fd014f9
5
5
  SHA512:
6
- metadata.gz: 22c6c0dcaca3e90317512a411462ff2e75460fb85abc581035cbf1d33a11099ee470f893835ce2f876a4f64bae16ce2f16c1ece1a94f026558cae1343077c129
7
- data.tar.gz: e9c22fc87699b17feee7b68d9cb75e35e7e5d744a72fc24ccc3992cdbdc41b98022e160570c0b1a766891ef0bd3b2d9b2a00ec073d6bafc227b8bc4bcc08d3f9
6
+ metadata.gz: 75f899933d04f6d7c1d82460bf29fe9f2e6ce6facf43308abe0ac0689bba095628254c1d4c94496b83097db4bccdf43b4d44f0ce996c2b4bc591974b8d0f3953
7
+ data.tar.gz: c84ce50affa27cc8e2153552fa96c8bb5aa3a62a65697155a415684f71052b1d4eed06895acfc04fbd04c11791800085ca0dd5caca6204a00e437041d2c787bd
data/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Release history for google-apis-chat_v1
2
2
 
3
+ ### v0.33.0 (2022-05-18)
4
+
5
+ * Regenerated from discovery document revision 20220511
6
+
7
+ ### v0.32.0 (2022-05-13)
8
+
9
+ * Regenerated from discovery document revision 20220506
10
+
11
+ ### v0.31.0 (2022-04-22)
12
+
13
+ * Regenerated from discovery document revision 20220415
14
+
3
15
  ### v0.30.0 (2022-04-08)
4
16
 
5
17
  * Regenerated from discovery document revision 20220405
@@ -374,6 +374,46 @@ module Google
374
374
  end
375
375
  end
376
376
 
377
+ # JSON payload of error messages. If the Cloud Logging API is enabled, these
378
+ # error messages are logged to [Google Cloud Logging](https://cloud.google.com/
379
+ # logging/docs).
380
+ class ChatAppLogEntry
381
+ include Google::Apis::Core::Hashable
382
+
383
+ # The deployment that caused the error. For Chat apps built in Apps Script, this
384
+ # is the deployment ID defined by Apps Script.
385
+ # Corresponds to the JSON property `deployment`
386
+ # @return [String]
387
+ attr_accessor :deployment
388
+
389
+ # The unencrypted `callback_method` name that was running when the error was
390
+ # encountered.
391
+ # Corresponds to the JSON property `deploymentFunction`
392
+ # @return [String]
393
+ attr_accessor :deployment_function
394
+
395
+ # The `Status` type defines a logical error model that is suitable for different
396
+ # programming environments, including REST APIs and RPC APIs. It is used by [
397
+ # gRPC](https://github.com/grpc). Each `Status` message contains three pieces of
398
+ # data: error code, error message, and error details. You can find out more
399
+ # about this error model and how to work with it in the [API Design Guide](https:
400
+ # //cloud.google.com/apis/design/errors).
401
+ # Corresponds to the JSON property `error`
402
+ # @return [Google::Apis::ChatV1::Status]
403
+ attr_accessor :error
404
+
405
+ def initialize(**args)
406
+ update!(**args)
407
+ end
408
+
409
+ # Update properties of this object
410
+ def update!(**args)
411
+ @deployment = args[:deployment] if args.key?(:deployment)
412
+ @deployment_function = args[:deployment_function] if args.key?(:deployment_function)
413
+ @error = args[:error] if args.key?(:error)
414
+ end
415
+ end
416
+
377
417
  # Represents a color in the RGBA color space. This representation is designed
378
418
  # for simplicity of conversion to/from color representations in various
379
419
  # languages over compactness. For example, the fields of this representation can
@@ -770,46 +810,6 @@ module Google
770
810
  end
771
811
  end
772
812
 
773
- # JSON payload of error messages. If the Cloud Logging API is enabled, these
774
- # error messages are logged to [Google Cloud Logging](https://cloud.google.com/
775
- # logging/docs).
776
- class DynamiteIntegrationLogEntry
777
- include Google::Apis::Core::Hashable
778
-
779
- # The deployment that caused the error. For Chat bots built in Apps Script, this
780
- # is the deployment ID defined by Apps Script.
781
- # Corresponds to the JSON property `deployment`
782
- # @return [String]
783
- attr_accessor :deployment
784
-
785
- # The unencrypted `callback_method` name that was running when the error was
786
- # encountered.
787
- # Corresponds to the JSON property `deploymentFunction`
788
- # @return [String]
789
- attr_accessor :deployment_function
790
-
791
- # The `Status` type defines a logical error model that is suitable for different
792
- # programming environments, including REST APIs and RPC APIs. It is used by [
793
- # gRPC](https://github.com/grpc). Each `Status` message contains three pieces of
794
- # data: error code, error message, and error details. You can find out more
795
- # about this error model and how to work with it in the [API Design Guide](https:
796
- # //cloud.google.com/apis/design/errors).
797
- # Corresponds to the JSON property `error`
798
- # @return [Google::Apis::ChatV1::Status]
799
- attr_accessor :error
800
-
801
- def initialize(**args)
802
- update!(**args)
803
- end
804
-
805
- # Update properties of this object
806
- def update!(**args)
807
- @deployment = args[:deployment] if args.key?(:deployment)
808
- @deployment_function = args[:deployment_function] if args.key?(:deployment_function)
809
- @error = args[:error] if args.key?(:error)
810
- end
811
- end
812
-
813
813
  # A generic empty message that you can re-use to avoid defining duplicated empty
814
814
  # messages in your APIs. A typical example is to use it as the request or the
815
815
  # response type of an API method. For instance: service Foo ` rpc Bar(google.
@@ -2362,9 +2362,9 @@ module Google
2362
2362
  end
2363
2363
  end
2364
2364
 
2365
- # A matched url in a Chat message. Chat apps can unfurl matched URLs. For more
2366
- # information, refer to [Unfurl links](https://developers.google.com/chat/how-
2367
- # tos/link-unfurling).
2365
+ # A matched url in a Chat message. Chat apps can preview matched URLs. For more
2366
+ # information, refer to [Preview links](https://developers.google.com/chat/how-
2367
+ # tos/preview-links).
2368
2368
  class MatchedUrl
2369
2369
  include Google::Apis::Core::Hashable
2370
2370
 
@@ -2402,12 +2402,13 @@ module Google
2402
2402
  end
2403
2403
  end
2404
2404
 
2405
- # Represents a membership relation in Google Chat.
2405
+ # Represents a membership relation in Google Chat, such as whether a user or
2406
+ # Chat app is invited to, part of, or absent from a space.
2406
2407
  class Membership
2407
2408
  include Google::Apis::Core::Hashable
2408
2409
 
2409
- # Output only. The creation time of the membership a.k.a. the time at which the
2410
- # member joined the space, if applicable.
2410
+ # Output only. The creation time of the membership, such as when a member joined
2411
+ # or was invited to join a space.
2411
2412
  # Corresponds to the JSON property `createTime`
2412
2413
  # @return [String]
2413
2414
  attr_accessor :create_time
@@ -2417,7 +2418,7 @@ module Google
2417
2418
  # @return [Google::Apis::ChatV1::User]
2418
2419
  attr_accessor :member
2419
2420
 
2420
- #
2421
+ # Resource name of the membership. Format: spaces/`space`/members/`member`
2421
2422
  # Corresponds to the JSON property `name`
2422
2423
  # @return [String]
2423
2424
  attr_accessor :name
@@ -2482,16 +2483,15 @@ module Google
2482
2483
  # @return [String]
2483
2484
  attr_accessor :fallback_text
2484
2485
 
2485
- # Output only. The time at which the message was last updated in Google Chat
2486
- # server. If the message was never updated, this field will be same as
2487
- # create_time.
2486
+ # Output only. The time at which the message was last updated. If the message
2487
+ # was never updated, this field matches `create_time`.
2488
2488
  # Corresponds to the JSON property `lastUpdateTime`
2489
2489
  # @return [String]
2490
2490
  attr_accessor :last_update_time
2491
2491
 
2492
- # A matched url in a Chat message. Chat apps can unfurl matched URLs. For more
2493
- # information, refer to [Unfurl links](https://developers.google.com/chat/how-
2494
- # tos/link-unfurling).
2492
+ # A matched url in a Chat message. Chat apps can preview matched URLs. For more
2493
+ # information, refer to [Preview links](https://developers.google.com/chat/how-
2494
+ # tos/preview-links).
2495
2495
  # Corresponds to the JSON property `matchedUrl`
2496
2496
  # @return [Google::Apis::ChatV1::MatchedUrl]
2497
2497
  attr_accessor :matched_url
@@ -2701,8 +2701,7 @@ module Google
2701
2701
  # @return [String]
2702
2702
  attr_accessor :display_name
2703
2703
 
2704
- # Optional. Resource name of the space, in the form "spaces/*". Example: spaces/
2705
- # AAAAAAAAAAAA
2704
+ # Resource name of the space. Format: spaces/`space`
2706
2705
  # Corresponds to the JSON property `name`
2707
2706
  # @return [String]
2708
2707
  attr_accessor :name
@@ -2713,14 +2712,14 @@ module Google
2713
2712
  attr_accessor :single_user_bot_dm
2714
2713
  alias_method :single_user_bot_dm?, :single_user_bot_dm
2715
2714
 
2716
- # Output only. Output only. Whether the messages are threaded in this space.
2715
+ # Output only. Whether messages are threaded in this space.
2717
2716
  # Corresponds to the JSON property `threaded`
2718
2717
  # @return [Boolean]
2719
2718
  attr_accessor :threaded
2720
2719
  alias_method :threaded?, :threaded
2721
2720
 
2722
- # Output only. Deprecated: Use `single_user_bot_dm` instead. Output only. The
2723
- # type of a space.
2721
+ # Output only. Deprecated: Use `single_user_bot_dm` or `space_type` (developer
2722
+ # preview) instead. The type of a space.
2724
2723
  # Corresponds to the JSON property `type`
2725
2724
  # @return [String]
2726
2725
  attr_accessor :type
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ChatV1
18
18
  # Version of the google-apis-chat_v1 gem
19
- GEM_VERSION = "0.30.0"
19
+ GEM_VERSION = "0.33.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.4.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220405"
25
+ REVISION = "20220511"
26
26
  end
27
27
  end
28
28
  end
@@ -82,6 +82,12 @@ module Google
82
82
  include Google::Apis::Core::JsonObjectSupport
83
83
  end
84
84
 
85
+ class ChatAppLogEntry
86
+ class Representation < Google::Apis::Core::JsonRepresentation; end
87
+
88
+ include Google::Apis::Core::JsonObjectSupport
89
+ end
90
+
85
91
  class Color
86
92
  class Representation < Google::Apis::Core::JsonRepresentation; end
87
93
 
@@ -130,12 +136,6 @@ module Google
130
136
  include Google::Apis::Core::JsonObjectSupport
131
137
  end
132
138
 
133
- class DynamiteIntegrationLogEntry
134
- class Representation < Google::Apis::Core::JsonRepresentation; end
135
-
136
- include Google::Apis::Core::JsonObjectSupport
137
- end
138
-
139
139
  class Empty
140
140
  class Representation < Google::Apis::Core::JsonRepresentation; end
141
141
 
@@ -582,6 +582,16 @@ module Google
582
582
  end
583
583
  end
584
584
 
585
+ class ChatAppLogEntry
586
+ # @private
587
+ class Representation < Google::Apis::Core::JsonRepresentation
588
+ property :deployment, as: 'deployment'
589
+ property :deployment_function, as: 'deploymentFunction'
590
+ property :error, as: 'error', class: Google::Apis::ChatV1::Status, decorator: Google::Apis::ChatV1::Status::Representation
591
+
592
+ end
593
+ end
594
+
585
595
  class Color
586
596
  # @private
587
597
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -671,16 +681,6 @@ module Google
671
681
  end
672
682
  end
673
683
 
674
- class DynamiteIntegrationLogEntry
675
- # @private
676
- class Representation < Google::Apis::Core::JsonRepresentation
677
- property :deployment, as: 'deployment'
678
- property :deployment_function, as: 'deploymentFunction'
679
- property :error, as: 'error', class: Google::Apis::ChatV1::Status, decorator: Google::Apis::ChatV1::Status::Representation
680
-
681
- end
682
- end
683
-
684
684
  class Empty
685
685
  # @private
686
686
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -61,13 +61,10 @@ module Google
61
61
  # Optional. A unique request ID for this message. Specifying an existing request
62
62
  # ID returns the message created with that ID instead of creating a new message.
63
63
  # @param [String] thread_key
64
- # Optional. Opaque thread identifier string that can be specified to group
65
- # messages into a single thread. If this is the first message with a given
66
- # thread identifier, a new thread is created. Subsequent messages with the same
67
- # thread identifier will be posted into the same thread. This relieves Chat apps
68
- # and webhooks from having to store the Google Chat thread ID of a thread (
69
- # created earlier by them) to post further updates to it. Has no effect if
70
- # thread field, corresponding to an existing thread, is set in message.
64
+ # Optional. Opaque thread identifier. To start or add to a thread, create a
65
+ # message and specify a `threadKey` instead of thread.name. (Setting thread.name
66
+ # has no effect.) The first message with a given `threadKey` starts a new thread.
67
+ # Subsequent messages with the same `threadKey` post into the same thread.
71
68
  # @param [String] fields
72
69
  # Selector specifying which fields to include in a partial response.
73
70
  # @param [String] quota_user
@@ -109,13 +106,10 @@ module Google
109
106
  # Optional. A unique request ID for this message. Specifying an existing request
110
107
  # ID returns the message created with that ID instead of creating a new message.
111
108
  # @param [String] thread_key
112
- # Optional. Opaque thread identifier string that can be specified to group
113
- # messages into a single thread. If this is the first message with a given
114
- # thread identifier, a new thread is created. Subsequent messages with the same
115
- # thread identifier will be posted into the same thread. This relieves Chat apps
116
- # and webhooks from having to store the Google Chat thread ID of a thread (
117
- # created earlier by them) to post further updates to it. Has no effect if
118
- # thread field, corresponding to an existing thread, is set in message.
109
+ # Optional. Opaque thread identifier. To start or add to a thread, create a
110
+ # message and specify a `threadKey` instead of thread.name. (Setting thread.name
111
+ # has no effect.) The first message with a given `threadKey` starts a new thread.
112
+ # Subsequent messages with the same `threadKey` post into the same thread.
119
113
  # @param [String] fields
120
114
  # Selector specifying which fields to include in a partial response.
121
115
  # @param [String] quota_user
@@ -157,13 +151,10 @@ module Google
157
151
  # Optional. A unique request ID for this message. Specifying an existing request
158
152
  # ID returns the message created with that ID instead of creating a new message.
159
153
  # @param [String] thread_key
160
- # Optional. Opaque thread identifier string that can be specified to group
161
- # messages into a single thread. If this is the first message with a given
162
- # thread identifier, a new thread is created. Subsequent messages with the same
163
- # thread identifier will be posted into the same thread. This relieves Chat apps
164
- # and webhooks from having to store the Google Chat thread ID of a thread (
165
- # created earlier by them) to post further updates to it. Has no effect if
166
- # thread field, corresponding to an existing thread, is set in message.
154
+ # Optional. Opaque thread identifier. To start or add to a thread, create a
155
+ # message and specify a `threadKey` instead of thread.name. (Setting thread.name
156
+ # has no effect.) The first message with a given `threadKey` starts a new thread.
157
+ # Subsequent messages with the same `threadKey` post into the same thread.
167
158
  # @param [String] fields
168
159
  # Selector specifying which fields to include in a partial response.
169
160
  # @param [String] quota_user
@@ -243,13 +234,10 @@ module Google
243
234
  # Optional. A unique request ID for this message. Specifying an existing request
244
235
  # ID returns the message created with that ID instead of creating a new message.
245
236
  # @param [String] thread_key
246
- # Optional. Opaque thread identifier string that can be specified to group
247
- # messages into a single thread. If this is the first message with a given
248
- # thread identifier, a new thread is created. Subsequent messages with the same
249
- # thread identifier will be posted into the same thread. This relieves Chat apps
250
- # and webhooks from having to store the Google Chat thread ID of a thread (
251
- # created earlier by them) to post further updates to it. Has no effect if
252
- # thread field, corresponding to an existing thread, is set in message.
237
+ # Optional. Opaque thread identifier. To start or add to a thread, create a
238
+ # message and specify a `threadKey` instead of thread.name. (Setting thread.name
239
+ # has no effect.) The first message with a given `threadKey` starts a new thread.
240
+ # Subsequent messages with the same `threadKey` post into the same thread.
253
241
  # @param [String] fields
254
242
  # Selector specifying which fields to include in a partial response.
255
243
  # @param [String] quota_user
@@ -291,13 +279,10 @@ module Google
291
279
  # Optional. A unique request ID for this message. Specifying an existing request
292
280
  # ID returns the message created with that ID instead of creating a new message.
293
281
  # @param [String] thread_key
294
- # Optional. Opaque thread identifier string that can be specified to group
295
- # messages into a single thread. If this is the first message with a given
296
- # thread identifier, a new thread is created. Subsequent messages with the same
297
- # thread identifier will be posted into the same thread. This relieves Chat apps
298
- # and webhooks from having to store the Google Chat thread ID of a thread (
299
- # created earlier by them) to post further updates to it. Has no effect if
300
- # thread field, corresponding to an existing thread, is set in message.
282
+ # Optional. Opaque thread identifier. To start or add to a thread, create a
283
+ # message and specify a `threadKey` instead of thread.name. (Setting thread.name
284
+ # has no effect.) The first message with a given `threadKey` starts a new thread.
285
+ # Subsequent messages with the same `threadKey` post into the same thread.
301
286
  # @param [String] fields
302
287
  # Selector specifying which fields to include in a partial response.
303
288
  # @param [String] quota_user
@@ -339,13 +324,10 @@ module Google
339
324
  # Optional. A unique request ID for this message. Specifying an existing request
340
325
  # ID returns the message created with that ID instead of creating a new message.
341
326
  # @param [String] thread_key
342
- # Optional. Opaque thread identifier string that can be specified to group
343
- # messages into a single thread. If this is the first message with a given
344
- # thread identifier, a new thread is created. Subsequent messages with the same
345
- # thread identifier will be posted into the same thread. This relieves Chat apps
346
- # and webhooks from having to store the Google Chat thread ID of a thread (
347
- # created earlier by them) to post further updates to it. Has no effect if
348
- # thread field, corresponding to an existing thread, is set in message.
327
+ # Optional. Opaque thread identifier. To start or add to a thread, create a
328
+ # message and specify a `threadKey` instead of thread.name. (Setting thread.name
329
+ # has no effect.) The first message with a given `threadKey` starts a new thread.
330
+ # Subsequent messages with the same `threadKey` post into the same thread.
349
331
  # @param [String] fields
350
332
  # Selector specifying which fields to include in a partial response.
351
333
  # @param [String] quota_user
@@ -380,8 +362,8 @@ module Google
380
362
  # Returns a space. Requires [service account authentication](https://developers.
381
363
  # google.com/chat/api/guides/auth/service-accounts).
382
364
  # @param [String] name
383
- # Required. Resource name of the space, in the form "spaces/*". Example: spaces/
384
- # AAAAAAAAAAAA
365
+ # Required. Resource name of the space, in the form "spaces/*". Format: spaces/`
366
+ # space`
385
367
  # @param [String] fields
386
368
  # Selector specifying which fields to include in a partial response.
387
369
  # @param [String] quota_user
@@ -455,13 +437,10 @@ module Google
455
437
  # Optional. A unique request ID for this message. Specifying an existing request
456
438
  # ID returns the message created with that ID instead of creating a new message.
457
439
  # @param [String] thread_key
458
- # Optional. Opaque thread identifier string that can be specified to group
459
- # messages into a single thread. If this is the first message with a given
460
- # thread identifier, a new thread is created. Subsequent messages with the same
461
- # thread identifier will be posted into the same thread. This relieves Chat apps
462
- # and webhooks from having to store the Google Chat thread ID of a thread (
463
- # created earlier by them) to post further updates to it. Has no effect if
464
- # thread field, corresponding to an existing thread, is set in message.
440
+ # Optional. Opaque thread identifier. To start or add to a thread, create a
441
+ # message and specify a `threadKey` instead of thread.name. (Setting thread.name
442
+ # has no effect.) The first message with a given `threadKey` starts a new thread.
443
+ # Subsequent messages with the same `threadKey` post into the same thread.
465
444
  # @param [String] fields
466
445
  # Selector specifying which fields to include in a partial response.
467
446
  # @param [String] quota_user
@@ -496,8 +475,8 @@ module Google
496
475
  # Returns a membership. Requires [service account authentication](https://
497
476
  # developers.google.com/chat/api/guides/auth/service-accounts).
498
477
  # @param [String] name
499
- # Required. Resource name of the membership to be retrieved, in the form "spaces/
500
- # */members/*". Example: spaces/AAAAAAAAAAAA/members/111111111111111111111
478
+ # Required. Resource name of the membership to retrieve. Format: spaces/`space`/
479
+ # members/`member`
501
480
  # @param [String] fields
502
481
  # Selector specifying which fields to include in a partial response.
503
482
  # @param [String] quota_user
@@ -528,8 +507,8 @@ module Google
528
507
  # Lists human memberships in a space. Requires [service account authentication](
529
508
  # https://developers.google.com/chat/api/guides/auth/service-accounts).
530
509
  # @param [String] parent
531
- # Required. The resource name of the space for which membership list is to be
532
- # fetched, in the form "spaces/*". Example: spaces/AAAAAAAAAAAA
510
+ # Required. The resource name of the space for which to fetch a membership list.
511
+ # Format: spaces/`space`
533
512
  # @param [Fixnum] page_size
534
513
  # Requested page size. The value is capped at 1000. Server may return fewer
535
514
  # results than requested. If unspecified, server will default to 100.
@@ -574,13 +553,10 @@ module Google
574
553
  # Optional. A unique request ID for this message. Specifying an existing request
575
554
  # ID returns the message created with that ID instead of creating a new message.
576
555
  # @param [String] thread_key
577
- # Optional. Opaque thread identifier string that can be specified to group
578
- # messages into a single thread. If this is the first message with a given
579
- # thread identifier, a new thread is created. Subsequent messages with the same
580
- # thread identifier will be posted into the same thread. This relieves Chat apps
581
- # and webhooks from having to store the Google Chat thread ID of a thread (
582
- # created earlier by them) to post further updates to it. Has no effect if
583
- # thread field, corresponding to an existing thread, is set in message.
556
+ # Optional. Opaque thread identifier. To start or add to a thread, create a
557
+ # message and specify a `threadKey` instead of thread.name. (Setting thread.name
558
+ # has no effect.) The first message with a given `threadKey` starts a new thread.
559
+ # Subsequent messages with the same `threadKey` post into the same thread.
584
560
  # @param [String] fields
585
561
  # Selector specifying which fields to include in a partial response.
586
562
  # @param [String] quota_user
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-chat_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.30.0
4
+ version: 0.33.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: 2022-04-11 00:00:00.000000000 Z
11
+ date: 2022-05-23 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-chat_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-chat_v1/v0.30.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-chat_v1/v0.33.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-chat_v1
63
63
  post_install_message:
64
64
  rdoc_options: []