google-apps-meet-v2 0.a → 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.yardopts +12 -0
- data/AUTHENTICATION.md +122 -0
- data/README.md +144 -8
- data/lib/google/apps/meet/v2/conference_records_service/client.rb +1612 -0
- data/lib/google/apps/meet/v2/conference_records_service/credentials.rb +48 -0
- data/lib/google/apps/meet/v2/conference_records_service/paths.rb +136 -0
- data/lib/google/apps/meet/v2/conference_records_service/rest/client.rb +1510 -0
- data/lib/google/apps/meet/v2/conference_records_service/rest/service_stub.rb +775 -0
- data/lib/google/apps/meet/v2/conference_records_service/rest.rb +52 -0
- data/lib/google/apps/meet/v2/conference_records_service.rb +55 -0
- data/lib/google/apps/meet/v2/resource_pb.rb +64 -0
- data/lib/google/apps/meet/v2/rest.rb +38 -0
- data/lib/google/apps/meet/v2/service_pb.rb +73 -0
- data/lib/google/apps/meet/v2/service_services_pb.rb +109 -0
- data/lib/google/apps/meet/v2/spaces_service/client.rb +706 -0
- data/lib/google/apps/meet/v2/spaces_service/credentials.rb +48 -0
- data/lib/google/apps/meet/v2/spaces_service/paths.rb +61 -0
- data/lib/google/apps/meet/v2/spaces_service/rest/client.rb +660 -0
- data/lib/google/apps/meet/v2/spaces_service/rest/service_stub.rb +306 -0
- data/lib/google/apps/meet/v2/spaces_service/rest.rb +52 -0
- data/lib/google/apps/meet/v2/spaces_service.rb +55 -0
- data/lib/google/apps/meet/v2/version.rb +7 -2
- data/lib/google/apps/meet/v2.rb +46 -0
- data/lib/google-apps-meet-v2.rb +21 -0
- data/proto_docs/README.md +4 -0
- data/proto_docs/google/api/client.rb +395 -0
- data/proto_docs/google/api/field_behavior.rb +85 -0
- data/proto_docs/google/api/launch_stage.rb +71 -0
- data/proto_docs/google/api/resource.rb +222 -0
- data/proto_docs/google/apps/meet/v2/resource.rb +367 -0
- data/proto_docs/google/apps/meet/v2/service.rb +353 -0
- data/proto_docs/google/protobuf/duration.rb +98 -0
- data/proto_docs/google/protobuf/empty.rb +34 -0
- data/proto_docs/google/protobuf/field_mask.rb +229 -0
- data/proto_docs/google/protobuf/timestamp.rb +127 -0
- metadata +76 -11
@@ -0,0 +1,48 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Copyright 2024 Google LLC
|
4
|
+
#
|
5
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
# you may not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# https://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing, software
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
# See the License for the specific language governing permissions and
|
15
|
+
# limitations under the License.
|
16
|
+
|
17
|
+
# Auto-generated by gapic-generator-ruby. DO NOT EDIT!
|
18
|
+
|
19
|
+
require "googleauth"
|
20
|
+
|
21
|
+
module Google
|
22
|
+
module Apps
|
23
|
+
module Meet
|
24
|
+
module V2
|
25
|
+
module SpacesService
|
26
|
+
# Credentials for the SpacesService API.
|
27
|
+
class Credentials < ::Google::Auth::Credentials
|
28
|
+
self.scope = [
|
29
|
+
"https://www.googleapis.com/auth/meetings.space.created",
|
30
|
+
"https://www.googleapis.com/auth/meetings.space.readonly"
|
31
|
+
]
|
32
|
+
self.env_vars = [
|
33
|
+
"GOOGLE_CLOUD_CREDENTIALS",
|
34
|
+
"GOOGLE_CLOUD_KEYFILE",
|
35
|
+
"GCLOUD_KEYFILE",
|
36
|
+
"GOOGLE_CLOUD_CREDENTIALS_JSON",
|
37
|
+
"GOOGLE_CLOUD_KEYFILE_JSON",
|
38
|
+
"GCLOUD_KEYFILE_JSON"
|
39
|
+
]
|
40
|
+
self.paths = [
|
41
|
+
"~/.config/google_cloud/application_default_credentials.json"
|
42
|
+
]
|
43
|
+
end
|
44
|
+
end
|
45
|
+
end
|
46
|
+
end
|
47
|
+
end
|
48
|
+
end
|
@@ -0,0 +1,61 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Copyright 2024 Google LLC
|
4
|
+
#
|
5
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
# you may not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# https://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing, software
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
# See the License for the specific language governing permissions and
|
15
|
+
# limitations under the License.
|
16
|
+
|
17
|
+
# Auto-generated by gapic-generator-ruby. DO NOT EDIT!
|
18
|
+
|
19
|
+
|
20
|
+
module Google
|
21
|
+
module Apps
|
22
|
+
module Meet
|
23
|
+
module V2
|
24
|
+
module SpacesService
|
25
|
+
# Path helper methods for the SpacesService API.
|
26
|
+
module Paths
|
27
|
+
##
|
28
|
+
# Create a fully-qualified ConferenceRecord resource string.
|
29
|
+
#
|
30
|
+
# The resource will be in the following format:
|
31
|
+
#
|
32
|
+
# `conferenceRecords/{conference_record}`
|
33
|
+
#
|
34
|
+
# @param conference_record [String]
|
35
|
+
#
|
36
|
+
# @return [::String]
|
37
|
+
def conference_record_path conference_record:
|
38
|
+
"conferenceRecords/#{conference_record}"
|
39
|
+
end
|
40
|
+
|
41
|
+
##
|
42
|
+
# Create a fully-qualified Space resource string.
|
43
|
+
#
|
44
|
+
# The resource will be in the following format:
|
45
|
+
#
|
46
|
+
# `spaces/{space}`
|
47
|
+
#
|
48
|
+
# @param space [String]
|
49
|
+
#
|
50
|
+
# @return [::String]
|
51
|
+
def space_path space:
|
52
|
+
"spaces/#{space}"
|
53
|
+
end
|
54
|
+
|
55
|
+
extend self
|
56
|
+
end
|
57
|
+
end
|
58
|
+
end
|
59
|
+
end
|
60
|
+
end
|
61
|
+
end
|