google-apis-chat_v1 0.70.0 → 0.72.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: f83ed9bbbeed1bd7a0f49fcc932201d577911c51be0f5b8450ce454990dfd57b
4
- data.tar.gz: d45ba15dc2fd0c474aa1abd8971a8736790d2819afbe7e3f8b27f9a95ec35361
3
+ metadata.gz: d951e9b3545eb41ad0875c2abac6491885240a7b425aac6d351642203d624852
4
+ data.tar.gz: 96aebca2ab90f391e1187d6f3c39349fd46957b5a4f001228610b27136a4692c
5
5
  SHA512:
6
- metadata.gz: 528643c9f0bf5ff9c5d21a5637163522098a853ca5a63eb077218d9a39905832389b0871be402662378d21a914ec1cfee710ac88a6111141bb249ecd425e2213
7
- data.tar.gz: 92aa0621c15f3f5ee1cad75fec64629673d1f69f5e837f5067123ae31f2e4c9af3a0588845bb3b019544bca2763b343202040f707b8699f331e41ca6a867bd36
6
+ metadata.gz: e7fc4e4db5a8f0764215ea8f43e6893177cfa1f032e1c677c6bbade8dd3dbafafd802904d95b7592ab3553dd6dae8a9dd5e8f67f6645ba0427f26dba49f2df81
7
+ data.tar.gz: 1b2a78a4d27f9f3febcd72661a4aaeb5442375d5889533b5bb8afd75d074eee9434587cee9dd2126b186f698f8fdc926a50931c10e0fdca7db8faa723f54772d
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-chat_v1
2
2
 
3
+ ### v0.72.0 (2023-09-24)
4
+
5
+ * Regenerated from discovery document revision 20230914
6
+
7
+ ### v0.71.0 (2023-09-10)
8
+
9
+ * Regenerated from discovery document revision 20230905
10
+
3
11
  ### v0.70.0 (2023-09-03)
4
12
 
5
13
  * Regenerated from discovery document revision 20230827
@@ -2599,6 +2599,13 @@ module Google
2599
2599
  # @return [Google::Apis::ChatV1::GoogleAppsCardV1Action]
2600
2600
  attr_accessor :on_change_action
2601
2601
 
2602
+ # Text that appears in the text input field when the field is empty. Use this
2603
+ # text to prompt users to enter a value. For example, `Enter a number from 0 to
2604
+ # 100`. Supported by Google Chat apps, but not Google Workspace Add-ons.
2605
+ # Corresponds to the JSON property `placeholderText`
2606
+ # @return [String]
2607
+ attr_accessor :placeholder_text
2608
+
2602
2609
  # How a text input field appears in the user interface. For example, whether the
2603
2610
  # field is single or multi-line.
2604
2611
  # Corresponds to the JSON property `type`
@@ -2624,6 +2631,7 @@ module Google
2624
2631
  @label = args[:label] if args.key?(:label)
2625
2632
  @name = args[:name] if args.key?(:name)
2626
2633
  @on_change_action = args[:on_change_action] if args.key?(:on_change_action)
2634
+ @placeholder_text = args[:placeholder_text] if args.key?(:placeholder_text)
2627
2635
  @type = args[:type] if args.key?(:type)
2628
2636
  @value = args[:value] if args.key?(:value)
2629
2637
  end
@@ -3425,10 +3433,11 @@ module Google
3425
3433
  attr_accessor :space
3426
3434
 
3427
3435
  # Plain-text body of the message. The first link to an image, video, or web page
3428
- # generates a preview chip. You can also @mention a Google Chat user, or
3429
- # everyone in the space. To learn about creating text messages, see [Create a
3430
- # text message](https://developers.google.com/chat/api/guides/message-formats/
3431
- # text).
3436
+ # generates a [preview chip](https://developers.google.com/chat/how-tos/preview-
3437
+ # links). You can also [@mention a Google Chat user](https://developers.google.
3438
+ # com/chat/api/guides/message-formats/text#messages-@mention), or everyone in
3439
+ # the space. To learn about creating text messages, see [Create a text message](
3440
+ # https://developers.google.com/chat/api/guides/message-formats/text).
3432
3441
  # Corresponds to the JSON property `text`
3433
3442
  # @return [String]
3434
3443
  attr_accessor :text
@@ -3766,9 +3775,12 @@ module Google
3766
3775
  attr_accessor :display_name
3767
3776
 
3768
3777
  # Immutable. Whether this space permits any Google Chat user as a member. Input
3769
- # when creating a space in a Google Workspace organization. For Google Chat
3770
- # users that use a Google Account, omit this field when creating a space (By
3771
- # default, the space permits any Google Chat user). For existing spaces, this
3778
+ # when creating a space in a Google Workspace organization. Omit this field when
3779
+ # creating spaces in the following conditions: * The authenticated user uses a
3780
+ # Google Account. By default, the space permits any Google Chat user. * The
3781
+ # space is used to [import data to Google Chat] (https://developers.google.com/
3782
+ # chat/api/guides/import-data-overview). Import mode spaces must only permit
3783
+ # members from the same Google Workspace organization. For existing spaces, this
3772
3784
  # field is output only.
3773
3785
  # Corresponds to the JSON property `externalUserAllowed`
3774
3786
  # @return [Boolean]
@@ -4158,7 +4170,12 @@ module Google
4158
4170
  # Person `resource_name` is `people/`person_id``. For example, `users/123456789`
4159
4171
  # in Chat API represents the same person as `people/123456789` in People API. -
4160
4172
  # the `id` for a [user](https://developers.google.com/admin-sdk/directory/
4161
- # reference/rest/v1/users) in the Admin SDK Directory API.
4173
+ # reference/rest/v1/users) in the Admin SDK Directory API. - the user's email
4174
+ # address can be used as an alias for ``user`` in API requests. For example, if
4175
+ # the People API Person `resourceName` for `user@example.com` is `people/
4176
+ # 123456789`, you can use `users/user@example.com` as an alias to reference `
4177
+ # users/123456789`. Only the canonical resource name (for example `users/
4178
+ # 123456789`) will be returned from the API.
4162
4179
  # Corresponds to the JSON property `name`
4163
4180
  # @return [String]
4164
4181
  attr_accessor :name
@@ -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.70.0"
19
+ GEM_VERSION = "0.72.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230827"
25
+ REVISION = "20230914"
26
26
  end
27
27
  end
28
28
  end
@@ -1219,6 +1219,7 @@ module Google
1219
1219
  property :name, as: 'name'
1220
1220
  property :on_change_action, as: 'onChangeAction', class: Google::Apis::ChatV1::GoogleAppsCardV1Action, decorator: Google::Apis::ChatV1::GoogleAppsCardV1Action::Representation
1221
1221
 
1222
+ property :placeholder_text, as: 'placeholderText'
1222
1223
  property :type, as: 'type'
1223
1224
  property :value, as: 'value'
1224
1225
  end
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.70.0
4
+ version: 0.72.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-09-03 00:00:00.000000000 Z
11
+ date: 2023-09-24 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.70.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-chat_v1/v0.72.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: []