google-apis-meet_v2 0.11.0 → 0.12.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 +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/google/apis/meet_v2/classes.rb +84 -0
- data/lib/google/apis/meet_v2/gem_version.rb +2 -2
- data/lib/google/apis/meet_v2/representations.rb +34 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 564ef3530a742f3617073b2701acd8824510e76e4a69dffb8dbf0c8d6ef231be
|
|
4
|
+
data.tar.gz: 43097dfecf2bdf20779e402aecc168dd5e1b07422fcdbadfad20fbc95864d89e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fe6e8c585a1741f57b133ea87f43933ab3e36cfb821f4b117c2e4b24e625db5266f623a27561ca264b4153f97b4b00d126fd882949c34d7dae7d844493dc169f
|
|
7
|
+
data.tar.gz: d3125f04aba1d77be01739fa32f649782310633c014b2d216613842614dfeae7f50c35dae4f9c4f814a6205b69043f00de6ece8facce1c1168803606487353e0
|
data/CHANGELOG.md
CHANGED
|
@@ -230,6 +230,33 @@ module Google
|
|
|
230
230
|
end
|
|
231
231
|
end
|
|
232
232
|
|
|
233
|
+
# Details how to join the conference via a SIP gateway.
|
|
234
|
+
class GatewaySipAccess
|
|
235
|
+
include Google::Apis::Core::Hashable
|
|
236
|
+
|
|
237
|
+
# Permanent numeric code for manual entry on specially configured devices.
|
|
238
|
+
# Corresponds to the JSON property `sipAccessCode`
|
|
239
|
+
# @return [String]
|
|
240
|
+
attr_accessor :sip_access_code
|
|
241
|
+
|
|
242
|
+
# The SIP URI the conference can be reached through. The string is on one of the
|
|
243
|
+
# formats: "sip:@" "sips:@" where currently is the 13-digit universal pin, and
|
|
244
|
+
# is a valid address to be resolved using a DNS SRV lookup, or a dotted quad.
|
|
245
|
+
# Corresponds to the JSON property `uri`
|
|
246
|
+
# @return [String]
|
|
247
|
+
attr_accessor :uri
|
|
248
|
+
|
|
249
|
+
def initialize(**args)
|
|
250
|
+
update!(**args)
|
|
251
|
+
end
|
|
252
|
+
|
|
253
|
+
# Update properties of this object
|
|
254
|
+
def update!(**args)
|
|
255
|
+
@sip_access_code = args[:sip_access_code] if args.key?(:sip_access_code)
|
|
256
|
+
@uri = args[:uri] if args.key?(:uri)
|
|
257
|
+
end
|
|
258
|
+
end
|
|
259
|
+
|
|
233
260
|
# Response of ListConferenceRecords method.
|
|
234
261
|
class ListConferenceRecordsResponse
|
|
235
262
|
include Google::Apis::Core::Hashable
|
|
@@ -547,6 +574,49 @@ module Google
|
|
|
547
574
|
end
|
|
548
575
|
end
|
|
549
576
|
|
|
577
|
+
# Phone access contains information required to dial into a conference using a
|
|
578
|
+
# regional phone number and a PIN that is specific to that phone number.
|
|
579
|
+
class PhoneAccess
|
|
580
|
+
include Google::Apis::Core::Hashable
|
|
581
|
+
|
|
582
|
+
# The BCP 47/LDML language code for the language associated with this phone
|
|
583
|
+
# access. To be parsed by the i18n LanguageCode utility. Examples: "es-419" for
|
|
584
|
+
# Latin American Spanish, "fr-CA" for Canadian French.
|
|
585
|
+
# Corresponds to the JSON property `languageCode`
|
|
586
|
+
# @return [String]
|
|
587
|
+
attr_accessor :language_code
|
|
588
|
+
|
|
589
|
+
# The phone number to dial for this meeting space in E.164 format. Full phone
|
|
590
|
+
# number with a leading '+' character.
|
|
591
|
+
# Corresponds to the JSON property `phoneNumber`
|
|
592
|
+
# @return [String]
|
|
593
|
+
attr_accessor :phone_number
|
|
594
|
+
|
|
595
|
+
# The PIN that users must enter after dialing the given number. The PIN consists
|
|
596
|
+
# of only decimal digits and the length may vary.
|
|
597
|
+
# Corresponds to the JSON property `pin`
|
|
598
|
+
# @return [String]
|
|
599
|
+
attr_accessor :pin
|
|
600
|
+
|
|
601
|
+
# The CLDR/ISO 3166 region code for the country associated with this phone
|
|
602
|
+
# access. To be parsed by the i18n RegionCode utility. Example: "SE" for Sweden.
|
|
603
|
+
# Corresponds to the JSON property `regionCode`
|
|
604
|
+
# @return [String]
|
|
605
|
+
attr_accessor :region_code
|
|
606
|
+
|
|
607
|
+
def initialize(**args)
|
|
608
|
+
update!(**args)
|
|
609
|
+
end
|
|
610
|
+
|
|
611
|
+
# Update properties of this object
|
|
612
|
+
def update!(**args)
|
|
613
|
+
@language_code = args[:language_code] if args.key?(:language_code)
|
|
614
|
+
@phone_number = args[:phone_number] if args.key?(:phone_number)
|
|
615
|
+
@pin = args[:pin] if args.key?(:pin)
|
|
616
|
+
@region_code = args[:region_code] if args.key?(:region_code)
|
|
617
|
+
end
|
|
618
|
+
end
|
|
619
|
+
|
|
550
620
|
# User dialing in from a phone where the user's identity is unknown because they
|
|
551
621
|
# haven't signed in with a Google Account.
|
|
552
622
|
class PhoneUser
|
|
@@ -747,6 +817,12 @@ module Google
|
|
|
747
817
|
# @return [Google::Apis::MeetV2::SpaceConfig]
|
|
748
818
|
attr_accessor :config
|
|
749
819
|
|
|
820
|
+
# Output only. The SIP based access methods that can be used to join the
|
|
821
|
+
# conference. Can be empty.
|
|
822
|
+
# Corresponds to the JSON property `gatewaySipAccess`
|
|
823
|
+
# @return [Array<Google::Apis::MeetV2::GatewaySipAccess>]
|
|
824
|
+
attr_accessor :gateway_sip_access
|
|
825
|
+
|
|
750
826
|
# Output only. Type friendly unique string used to join the meeting. Format: `[a-
|
|
751
827
|
# z]+-[a-z]+-[a-z]+`. For example, `abc-mnop-xyz`. The maximum length is 128
|
|
752
828
|
# characters. Can only be used as an alias of the space name to get the space.
|
|
@@ -770,6 +846,12 @@ module Google
|
|
|
770
846
|
# @return [String]
|
|
771
847
|
attr_accessor :name
|
|
772
848
|
|
|
849
|
+
# Output only. All regional phone access methods for this meeting space. Can be
|
|
850
|
+
# empty.
|
|
851
|
+
# Corresponds to the JSON property `phoneAccess`
|
|
852
|
+
# @return [Array<Google::Apis::MeetV2::PhoneAccess>]
|
|
853
|
+
attr_accessor :phone_access
|
|
854
|
+
|
|
773
855
|
def initialize(**args)
|
|
774
856
|
update!(**args)
|
|
775
857
|
end
|
|
@@ -778,9 +860,11 @@ module Google
|
|
|
778
860
|
def update!(**args)
|
|
779
861
|
@active_conference = args[:active_conference] if args.key?(:active_conference)
|
|
780
862
|
@config = args[:config] if args.key?(:config)
|
|
863
|
+
@gateway_sip_access = args[:gateway_sip_access] if args.key?(:gateway_sip_access)
|
|
781
864
|
@meeting_code = args[:meeting_code] if args.key?(:meeting_code)
|
|
782
865
|
@meeting_uri = args[:meeting_uri] if args.key?(:meeting_uri)
|
|
783
866
|
@name = args[:name] if args.key?(:name)
|
|
867
|
+
@phone_access = args[:phone_access] if args.key?(:phone_access)
|
|
784
868
|
end
|
|
785
869
|
end
|
|
786
870
|
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module MeetV2
|
|
18
18
|
# Version of the google-apis-meet_v2 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.12.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260329"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -70,6 +70,12 @@ module Google
|
|
|
70
70
|
include Google::Apis::Core::JsonObjectSupport
|
|
71
71
|
end
|
|
72
72
|
|
|
73
|
+
class GatewaySipAccess
|
|
74
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
75
|
+
|
|
76
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
77
|
+
end
|
|
78
|
+
|
|
73
79
|
class ListConferenceRecordsResponse
|
|
74
80
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
75
81
|
|
|
@@ -130,6 +136,12 @@ module Google
|
|
|
130
136
|
include Google::Apis::Core::JsonObjectSupport
|
|
131
137
|
end
|
|
132
138
|
|
|
139
|
+
class PhoneAccess
|
|
140
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
141
|
+
|
|
142
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
143
|
+
end
|
|
144
|
+
|
|
133
145
|
class PhoneUser
|
|
134
146
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
135
147
|
|
|
@@ -261,6 +273,14 @@ module Google
|
|
|
261
273
|
end
|
|
262
274
|
end
|
|
263
275
|
|
|
276
|
+
class GatewaySipAccess
|
|
277
|
+
# @private
|
|
278
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
279
|
+
property :sip_access_code, as: 'sipAccessCode'
|
|
280
|
+
property :uri, as: 'uri'
|
|
281
|
+
end
|
|
282
|
+
end
|
|
283
|
+
|
|
264
284
|
class ListConferenceRecordsResponse
|
|
265
285
|
# @private
|
|
266
286
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -359,6 +379,16 @@ module Google
|
|
|
359
379
|
end
|
|
360
380
|
end
|
|
361
381
|
|
|
382
|
+
class PhoneAccess
|
|
383
|
+
# @private
|
|
384
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
385
|
+
property :language_code, as: 'languageCode'
|
|
386
|
+
property :phone_number, as: 'phoneNumber'
|
|
387
|
+
property :pin, as: 'pin'
|
|
388
|
+
property :region_code, as: 'regionCode'
|
|
389
|
+
end
|
|
390
|
+
end
|
|
391
|
+
|
|
362
392
|
class PhoneUser
|
|
363
393
|
# @private
|
|
364
394
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -419,9 +449,13 @@ module Google
|
|
|
419
449
|
|
|
420
450
|
property :config, as: 'config', class: Google::Apis::MeetV2::SpaceConfig, decorator: Google::Apis::MeetV2::SpaceConfig::Representation
|
|
421
451
|
|
|
452
|
+
collection :gateway_sip_access, as: 'gatewaySipAccess', class: Google::Apis::MeetV2::GatewaySipAccess, decorator: Google::Apis::MeetV2::GatewaySipAccess::Representation
|
|
453
|
+
|
|
422
454
|
property :meeting_code, as: 'meetingCode'
|
|
423
455
|
property :meeting_uri, as: 'meetingUri'
|
|
424
456
|
property :name, as: 'name'
|
|
457
|
+
collection :phone_access, as: 'phoneAccess', class: Google::Apis::MeetV2::PhoneAccess, decorator: Google::Apis::MeetV2::PhoneAccess::Representation
|
|
458
|
+
|
|
425
459
|
end
|
|
426
460
|
end
|
|
427
461
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-meet_v2
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.12.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -57,7 +57,7 @@ licenses:
|
|
|
57
57
|
metadata:
|
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-meet_v2/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-meet_v2/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-meet_v2/v0.12.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-meet_v2
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|