google-apps-meet-v2beta 0.a → 0.2.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/.yardopts +12 -0
- data/AUTHENTICATION.md +122 -0
- data/README.md +144 -8
- data/lib/google/apps/meet/v2beta/conference_records_service/client.rb +1618 -0
- data/lib/google/apps/meet/v2beta/conference_records_service/credentials.rb +44 -0
- data/lib/google/apps/meet/v2beta/conference_records_service/paths.rb +136 -0
- data/lib/google/apps/meet/v2beta/conference_records_service/rest/client.rb +1516 -0
- data/lib/google/apps/meet/v2beta/conference_records_service/rest/service_stub.rb +766 -0
- data/lib/google/apps/meet/v2beta/conference_records_service/rest.rb +52 -0
- data/lib/google/apps/meet/v2beta/conference_records_service.rb +55 -0
- data/lib/google/apps/meet/v2beta/resource_pb.rb +64 -0
- data/lib/google/apps/meet/v2beta/rest.rb +38 -0
- data/lib/google/apps/meet/v2beta/service_pb.rb +73 -0
- data/lib/google/apps/meet/v2beta/service_services_pb.rb +122 -0
- data/lib/google/apps/meet/v2beta/spaces_service/client.rb +710 -0
- data/lib/google/apps/meet/v2beta/spaces_service/credentials.rb +44 -0
- data/lib/google/apps/meet/v2beta/spaces_service/paths.rb +61 -0
- data/lib/google/apps/meet/v2beta/spaces_service/rest/client.rb +664 -0
- data/lib/google/apps/meet/v2beta/spaces_service/rest/service_stub.rb +297 -0
- data/lib/google/apps/meet/v2beta/spaces_service/rest.rb +52 -0
- data/lib/google/apps/meet/v2beta/spaces_service.rb +55 -0
- data/lib/google/apps/meet/v2beta/version.rb +7 -2
- data/lib/google/apps/meet/v2beta.rb +46 -0
- data/lib/google-apps-meet-v2beta.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/v2beta/resource.rb +375 -0
- data/proto_docs/google/apps/meet/v2beta/service.rb +350 -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 +190 -13
@@ -0,0 +1,44 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Copyright 2023 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 V2beta
|
25
|
+
module SpacesService
|
26
|
+
# Credentials for the SpacesService API.
|
27
|
+
class Credentials < ::Google::Auth::Credentials
|
28
|
+
self.env_vars = [
|
29
|
+
"GOOGLE_CLOUD_CREDENTIALS",
|
30
|
+
"GOOGLE_CLOUD_KEYFILE",
|
31
|
+
"GCLOUD_KEYFILE",
|
32
|
+
"GOOGLE_CLOUD_CREDENTIALS_JSON",
|
33
|
+
"GOOGLE_CLOUD_KEYFILE_JSON",
|
34
|
+
"GCLOUD_KEYFILE_JSON"
|
35
|
+
]
|
36
|
+
self.paths = [
|
37
|
+
"~/.config/google_cloud/application_default_credentials.json"
|
38
|
+
]
|
39
|
+
end
|
40
|
+
end
|
41
|
+
end
|
42
|
+
end
|
43
|
+
end
|
44
|
+
end
|
@@ -0,0 +1,61 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Copyright 2023 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 V2beta
|
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
|