google-apis-meet_v2 0.1.0 → 0.3.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: d3bbdf5e5f5309affb5814d21b9dc67145e0dd9b2f2b63aa4463937aa4aa62ec
4
- data.tar.gz: 6c0bb8d9c15061677c5d1730df8f70c3a1bf40c6478be3db0c38594ec4fb1c3a
3
+ metadata.gz: bf8aa2c3fa8b2302cdcfd24c666bc2249b4da980f92d4996dd3df93ea1e8b30a
4
+ data.tar.gz: 7f9d01163925ec7fb789f55004ea0647d303ca45af8203867cdc55e741b98351
5
5
  SHA512:
6
- metadata.gz: 59fb4bbf9bd415819aa6d4d62e2ad15be18bafde6737ab5f6f49e3264f3ba7b4c0ff1a57ce3ee54ed27a79020009062aca878b12e5c5feb008cdf400e260f1da
7
- data.tar.gz: 223472d902046019f5de3a0c551f07888cfe4c9a5f0226e6f9e1e7efc2185647fa48b5e8b9ea3ee2157a4c48445f955bd6ee3de74230177ff3900535e3c56816
6
+ metadata.gz: ef2aa38e9ac939bb126475d32b8fa57b6a6612b2676da00b981df6e2139e3e32008c5df4f0f5382940d10b8adc1241a8ddc60c4855f8ec27f25876d4963cc0b0
7
+ data.tar.gz: 90328ed146556ac8546bde6c65c2b787c94f484a61de2891b812a86670e76f36ecd859c49eb809409330370fdd622928c76a7da35299acec92056a2cd984890d
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-meet_v2
2
2
 
3
+ ### v0.3.0 (2024-07-25)
4
+
5
+ * Regenerated from discovery document revision 20240716
6
+
7
+ ### v0.2.0 (2024-06-30)
8
+
9
+ * Regenerated from discovery document revision 20240626
10
+
3
11
  ### v0.1.0 (2024-06-23)
4
12
 
5
13
  * Regenerated from discovery document revision 20240616
@@ -560,20 +560,25 @@ module Google
560
560
  # @return [Google::Apis::MeetV2::SpaceConfig]
561
561
  attr_accessor :config
562
562
 
563
- # Output only. Type friendly code to join the meeting. Format: `[a-z]+-[a-z]+-[a-
564
- # z]+` such as `abc-mnop-xyz`. The maximum length is 128 characters. Can only be
565
- # used as an alias of the space ID to get the space.
563
+ # Output only. Type friendly unique string used to join the meeting. Format: `[a-
564
+ # z]+-[a-z]+-[a-z]+`. For example, `abc-mnop-xyz`. The maximum length is 128
565
+ # characters. Can only be used as an alias of the space name to get the space.
566
566
  # Corresponds to the JSON property `meetingCode`
567
567
  # @return [String]
568
568
  attr_accessor :meeting_code
569
569
 
570
- # Output only. URI used to join meetings, such as `https://meet.google.com/abc-
570
+ # Output only. URI used to join meetings consisting of `https://meet.google.com/`
571
+ # followed by the `meeting_code`. For example, `https://meet.google.com/abc-
571
572
  # mnop-xyz`.
572
573
  # Corresponds to the JSON property `meetingUri`
573
574
  # @return [String]
574
575
  attr_accessor :meeting_uri
575
576
 
576
- # Immutable. Resource name of the space. Format: `spaces/`space``
577
+ # Immutable. Resource name of the space. Format: `spaces/`space``. ``space`` is
578
+ # the resource identifier for the space. It's a unique, server-generated ID and
579
+ # is case sensitive. For example, `jQCFfuBOdN5z`. For more information, see [How
580
+ # Meet identifies a meeting space](https://developers.google.com/meet/api/guides/
581
+ # meeting-spaces#identify-meeting-space).
577
582
  # Corresponds to the JSON property `name`
578
583
  # @return [String]
579
584
  attr_accessor :name
@@ -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.1.0"
19
+ GEM_VERSION = "0.3.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.15.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240616"
25
+ REVISION = "20240716"
26
26
  end
27
27
  end
28
28
  end
@@ -87,7 +87,9 @@ module Google
87
87
  # Optional. User specified filtering condition in [EBNF format](https://en.
88
88
  # wikipedia.org/wiki/Extended_Backus%E2%80%93Naur_form). The following are the
89
89
  # filterable fields: * `space.meeting_code` * `space.name` * `start_time` * `
90
- # end_time` For example, `space.meeting_code = "abc-mnop-xyz"`.
90
+ # end_time` For example, consider the following filters: * `space.name = "spaces/
91
+ # NAME"` * `space.meeting_code = "abc-mnop-xyz"` * `start_time>="2024-01-01T00:
92
+ # 00:00.000Z" AND start_time<="2024-01-02T00:00:00.000Z"` * `end_time IS NULL`
91
93
  # @param [Fixnum] page_size
92
94
  # Optional. Maximum number of conference records to return. The service might
93
95
  # return fewer than this value. If unspecified, at most 25 conference records
@@ -528,9 +530,15 @@ module Google
528
530
  execute_or_queue_command(command, &block)
529
531
  end
530
532
 
531
- # Ends an active conference (if there's one).
533
+ # Ends an active conference (if there's one). For an example, see [End active
534
+ # conference](https://developers.google.com/meet/api/guides/meeting-spaces#end-
535
+ # active-conference).
532
536
  # @param [String] name
533
- # Required. Resource name of the space.
537
+ # Required. Resource name of the space. Format: `spaces/`space``. ``space`` is
538
+ # the resource identifier for the space. It's a unique, server-generated ID and
539
+ # is case sensitive. For example, `jQCFfuBOdN5z`. For more information, see [How
540
+ # Meet identifies a meeting space](https://developers.google.com/meet/api/guides/
541
+ # meeting-spaces#identify-meeting-space).
534
542
  # @param [Google::Apis::MeetV2::EndActiveConferenceRequest] end_active_conference_request_object
535
543
  # @param [String] fields
536
544
  # Selector specifying which fields to include in a partial response.
@@ -561,9 +569,22 @@ module Google
561
569
  execute_or_queue_command(command, &block)
562
570
  end
563
571
 
564
- # Gets a space by `space_id` or `meeting_code`.
572
+ # Gets details about a meeting space. For an example, see [Get a meeting space](
573
+ # https://developers.google.com/meet/api/guides/meeting-spaces#get-meeting-space)
574
+ # .
565
575
  # @param [String] name
566
- # Required. Resource name of the space.
576
+ # Required. Resource name of the space. Format: `spaces/`space`` or `spaces/`
577
+ # meetingCode``. ``space`` is the resource identifier for the space. It's a
578
+ # unique, server-generated ID and is case sensitive. For example, `jQCFfuBOdN5z`.
579
+ # ``meetingCode`` is an alias for the space. It's a typeable, unique character
580
+ # string and is non-case sensitive. For example, `abc-mnop-xyz`. The maximum
581
+ # length is 128 characters. A `meetingCode` shouldn't be stored long term as it
582
+ # can become dissociated from a meeting space and can be reused for different
583
+ # meeting spaces in the future. Generally, a `meetingCode` expires 365 days
584
+ # after last use. For more information, see [Learn about meeting codes in Google
585
+ # Meet](https://support.google.com/meet/answer/10710509). For more information,
586
+ # see [How Meet identifies a meeting space](https://developers.google.com/meet/
587
+ # api/guides/meeting-spaces#identify-meeting-space).
567
588
  # @param [String] fields
568
589
  # Selector specifying which fields to include in a partial response.
569
590
  # @param [String] quota_user
@@ -591,9 +612,15 @@ module Google
591
612
  execute_or_queue_command(command, &block)
592
613
  end
593
614
 
594
- # Updates a space.
615
+ # Updates details about a meeting space. For an example, see [Update a meeting
616
+ # space](https://developers.google.com/meet/api/guides/meeting-spaces#update-
617
+ # meeting-space).
595
618
  # @param [String] name
596
- # Immutable. Resource name of the space. Format: `spaces/`space``
619
+ # Immutable. Resource name of the space. Format: `spaces/`space``. ``space`` is
620
+ # the resource identifier for the space. It's a unique, server-generated ID and
621
+ # is case sensitive. For example, `jQCFfuBOdN5z`. For more information, see [How
622
+ # Meet identifies a meeting space](https://developers.google.com/meet/api/guides/
623
+ # meeting-spaces#identify-meeting-space).
597
624
  # @param [Google::Apis::MeetV2::Space] space_object
598
625
  # @param [String] update_mask
599
626
  # Optional. Field mask used to specify the fields to be updated in the space. If
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-meet_v2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.3.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: 2024-06-23 00:00:00.000000000 Z
11
+ date: 2024-07-25 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-meet_v2/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-meet_v2/v0.1.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-meet_v2/v0.3.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-meet_v2
63
63
  post_install_message:
64
64
  rdoc_options: []