google-apps-meet-v2 0.3.0 → 0.4.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: 942cb91d5742ee70df3440b41781e2c1ed43792ce7a35147f6150d66420d0047
4
- data.tar.gz: 7d81d792a65aabb93a161a85bdf09ef0f22f96aee6cb6f1892c86d3c9bc0b018
3
+ metadata.gz: 12f5c61aa07642e0477c349829514f3c26abe2f0ed562f78ab5e690de4967b9e
4
+ data.tar.gz: 548fd5d582be835c42040d3c93d1ecf07ebbd1bf855726ebc985d89a2a8bb574
5
5
  SHA512:
6
- metadata.gz: 1aa6321e119aa47b6538c45a9d18674bc7ccb38c6c23e786635d17ee3ba943af087a21c8f15421980eb35ab879cbb42cd619b17a26601e23656139aa9a5b9217
7
- data.tar.gz: 5001f8da20efe1984bf24833f0dbdea0c2b1f7a8d14f41061c991d0917d2be3e8760783a5f0931ace4ebddeb992d49ba5ada27a6015b5f41d80a8edf69ea560a
6
+ metadata.gz: 45c9d0348484d82cfd7e923c2d49b38ae56beb51612ae1959326f415ef7edc254785b9cc482b9125d33cb4ffc468c5aa174a716d025130ff0cf9e4fde7288a0e
7
+ data.tar.gz: 1e05c61a99d10642b0b29a014a7262b3e63dfaffc8ef7f190ac6c07ab8cd383bfda9b12f356f2280eb016f52211b6838c574b17c5dce15b9a9b51a5a6421ab61
data/README.md CHANGED
@@ -85,7 +85,7 @@ To browse ready to use code samples check [Google Cloud Samples](https://cloud.g
85
85
 
86
86
  ## Supported Ruby Versions
87
87
 
88
- This library is supported on Ruby 2.7+.
88
+ This library is supported on Ruby 3.0+.
89
89
 
90
90
  Google provides official support for Ruby versions that are actively supported
91
91
  by Ruby Core—that is, Ruby versions that are either in normal maintenance or
@@ -1432,6 +1432,13 @@ module Google
1432
1432
  # * (`GRPC::Core::Channel`) a gRPC channel with included credentials
1433
1433
  # * (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
1434
1434
  # * (`nil`) indicating no credentials
1435
+ #
1436
+ # Warning: If you accept a credential configuration (JSON file or Hash) from an
1437
+ # external source for authentication to Google Cloud, you must validate it before
1438
+ # providing it to a Google API client library. Providing an unvalidated credential
1439
+ # configuration to Google APIs can compromise the security of your systems and data.
1440
+ # For more information, refer to [Validate credential configurations from external
1441
+ # sources](https://cloud.google.com/docs/authentication/external/externally-sourced-credentials).
1435
1442
  # @return [::Object]
1436
1443
  # @!attribute [rw] scope
1437
1444
  # The OAuth scopes
@@ -1347,6 +1347,13 @@ module Google
1347
1347
  # * (`Signet::OAuth2::Client`) A signet oauth2 client object
1348
1348
  # (see the [signet docs](https://rubydoc.info/gems/signet/Signet/OAuth2/Client))
1349
1349
  # * (`nil`) indicating no credentials
1350
+ #
1351
+ # Warning: If you accept a credential configuration (JSON file or Hash) from an
1352
+ # external source for authentication to Google Cloud, you must validate it before
1353
+ # providing it to a Google API client library. Providing an unvalidated credential
1354
+ # configuration to Google APIs can compromise the security of your systems and data.
1355
+ # For more information, refer to [Validate credential configurations from external
1356
+ # sources](https://cloud.google.com/docs/authentication/external/externally-sourced-credentials).
1350
1357
  # @return [::Object]
1351
1358
  # @!attribute [rw] scope
1352
1359
  # The OAuth scopes
@@ -576,6 +576,13 @@ module Google
576
576
  # * (`GRPC::Core::Channel`) a gRPC channel with included credentials
577
577
  # * (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
578
578
  # * (`nil`) indicating no credentials
579
+ #
580
+ # Warning: If you accept a credential configuration (JSON file or Hash) from an
581
+ # external source for authentication to Google Cloud, you must validate it before
582
+ # providing it to a Google API client library. Providing an unvalidated credential
583
+ # configuration to Google APIs can compromise the security of your systems and data.
584
+ # For more information, refer to [Validate credential configurations from external
585
+ # sources](https://cloud.google.com/docs/authentication/external/externally-sourced-credentials).
579
586
  # @return [::Object]
580
587
  # @!attribute [rw] scope
581
588
  # The OAuth scopes
@@ -547,6 +547,13 @@ module Google
547
547
  # * (`Signet::OAuth2::Client`) A signet oauth2 client object
548
548
  # (see the [signet docs](https://rubydoc.info/gems/signet/Signet/OAuth2/Client))
549
549
  # * (`nil`) indicating no credentials
550
+ #
551
+ # Warning: If you accept a credential configuration (JSON file or Hash) from an
552
+ # external source for authentication to Google Cloud, you must validate it before
553
+ # providing it to a Google API client library. Providing an unvalidated credential
554
+ # configuration to Google APIs can compromise the security of your systems and data.
555
+ # For more information, refer to [Validate credential configurations from external
556
+ # sources](https://cloud.google.com/docs/authentication/external/externally-sourced-credentials).
550
557
  # @return [::Object]
551
558
  # @!attribute [rw] scope
552
559
  # The OAuth scopes
@@ -21,7 +21,7 @@ module Google
21
21
  module Apps
22
22
  module Meet
23
23
  module V2
24
- VERSION = "0.3.0"
24
+ VERSION = "0.4.0"
25
25
  end
26
26
  end
27
27
  end
@@ -138,12 +138,18 @@ module Google
138
138
  # @!attribute [rw] signedin_user
139
139
  # @return [::Google::Apps::Meet::V2::SignedinUser]
140
140
  # Signed-in user.
141
+ #
142
+ # Note: The following fields are mutually exclusive: `signedin_user`, `anonymous_user`, `phone_user`. If a field in that set is populated, all other fields in the set will automatically be cleared.
141
143
  # @!attribute [rw] anonymous_user
142
144
  # @return [::Google::Apps::Meet::V2::AnonymousUser]
143
145
  # Anonymous user.
146
+ #
147
+ # Note: The following fields are mutually exclusive: `anonymous_user`, `signedin_user`, `phone_user`. If a field in that set is populated, all other fields in the set will automatically be cleared.
144
148
  # @!attribute [rw] phone_user
145
149
  # @return [::Google::Apps::Meet::V2::PhoneUser]
146
150
  # User calling from their phone.
151
+ #
152
+ # Note: The following fields are mutually exclusive: `phone_user`, `signedin_user`, `anonymous_user`. If a field in that set is populated, all other fields in the set will automatically be cleared.
147
153
  # @!attribute [r] name
148
154
  # @return [::String]
149
155
  # Output only. Resource name of the participant.
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apps-meet-v2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2024-12-10 00:00:00.000000000 Z
10
+ date: 2025-01-29 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: gapic-common
@@ -16,7 +15,7 @@ dependencies:
16
15
  requirements:
17
16
  - - ">="
18
17
  - !ruby/object:Gem::Version
19
- version: 0.24.0
18
+ version: 0.25.0
20
19
  - - "<"
21
20
  - !ruby/object:Gem::Version
22
21
  version: 2.a
@@ -26,7 +25,7 @@ dependencies:
26
25
  requirements:
27
26
  - - ">="
28
27
  - !ruby/object:Gem::Version
29
- version: 0.24.0
28
+ version: 0.25.0
30
29
  - - "<"
31
30
  - !ruby/object:Gem::Version
32
31
  version: 2.a
@@ -92,7 +91,6 @@ homepage: https://github.com/googleapis/google-cloud-ruby
92
91
  licenses:
93
92
  - Apache-2.0
94
93
  metadata: {}
95
- post_install_message:
96
94
  rdoc_options: []
97
95
  require_paths:
98
96
  - lib
@@ -100,15 +98,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
100
98
  requirements:
101
99
  - - ">="
102
100
  - !ruby/object:Gem::Version
103
- version: '2.7'
101
+ version: '3.0'
104
102
  required_rubygems_version: !ruby/object:Gem::Requirement
105
103
  requirements:
106
104
  - - ">="
107
105
  - !ruby/object:Gem::Version
108
106
  version: '0'
109
107
  requirements: []
110
- rubygems_version: 3.5.23
111
- signing_key:
108
+ rubygems_version: 3.6.2
112
109
  specification_version: 4
113
110
  summary: Create and manage meetings in Google Meet.
114
111
  test_files: []