google-apis-digitalassetlinks_v1 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.yardopts +13 -0
- data/CHANGELOG.md +7 -0
- data/LICENSE.md +202 -0
- data/OVERVIEW.md +96 -0
- data/lib/google-apis-digitalassetlinks_v1.rb +15 -0
- data/lib/google/apis/digitalassetlinks_v1.rb +33 -0
- data/lib/google/apis/digitalassetlinks_v1/classes.rb +279 -0
- data/lib/google/apis/digitalassetlinks_v1/gem_version.rb +28 -0
- data/lib/google/apis/digitalassetlinks_v1/representations.rb +133 -0
- data/lib/google/apis/digitalassetlinks_v1/service.rb +269 -0
- metadata +76 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: f520bb93ce627c63c24d3d0d122d75d43d58715db58875721566521e273f8300
|
4
|
+
data.tar.gz: c2215912c2d0542c7cad6ef5f87b6fad711330d473b8e588b9cb5cb4e22f2ca0
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: f093ed6d0d4919cac480c0e9178cd5e84ac7359680fd22bf880e8c2cb715a0d4697b6e39a47452720753b756a2d2c1d7ea0fbcdc8dedddb1523fc42acc7e8f5c
|
7
|
+
data.tar.gz: f5d1113c17fff3ccbb485aad06192da8add33be90a451fded4e11fadc24c1f217c4976bc5f0dff897ecffc7564af406c0e3bce0c7f563beaa2782a7abbc89ed3
|
data/.yardopts
ADDED
@@ -0,0 +1,13 @@
|
|
1
|
+
--hide-void-return
|
2
|
+
--no-private
|
3
|
+
--verbose
|
4
|
+
--title=google-apis-digitalassetlinks_v1
|
5
|
+
--markup-provider=redcarpet
|
6
|
+
--markup=markdown
|
7
|
+
--main OVERVIEW.md
|
8
|
+
lib/google/apis/digitalassetlinks_v1/*.rb
|
9
|
+
lib/google/apis/digitalassetlinks_v1.rb
|
10
|
+
-
|
11
|
+
OVERVIEW.md
|
12
|
+
CHANGELOG.md
|
13
|
+
LICENSE.md
|
data/CHANGELOG.md
ADDED
data/LICENSE.md
ADDED
@@ -0,0 +1,202 @@
|
|
1
|
+
|
2
|
+
Apache License
|
3
|
+
Version 2.0, January 2004
|
4
|
+
http://www.apache.org/licenses/
|
5
|
+
|
6
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
7
|
+
|
8
|
+
1. Definitions.
|
9
|
+
|
10
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
11
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
12
|
+
|
13
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
14
|
+
the copyright owner that is granting the License.
|
15
|
+
|
16
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
17
|
+
other entities that control, are controlled by, or are under common
|
18
|
+
control with that entity. For the purposes of this definition,
|
19
|
+
"control" means (i) the power, direct or indirect, to cause the
|
20
|
+
direction or management of such entity, whether by contract or
|
21
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
22
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
23
|
+
|
24
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
25
|
+
exercising permissions granted by this License.
|
26
|
+
|
27
|
+
"Source" form shall mean the preferred form for making modifications,
|
28
|
+
including but not limited to software source code, documentation
|
29
|
+
source, and configuration files.
|
30
|
+
|
31
|
+
"Object" form shall mean any form resulting from mechanical
|
32
|
+
transformation or translation of a Source form, including but
|
33
|
+
not limited to compiled object code, generated documentation,
|
34
|
+
and conversions to other media types.
|
35
|
+
|
36
|
+
"Work" shall mean the work of authorship, whether in Source or
|
37
|
+
Object form, made available under the License, as indicated by a
|
38
|
+
copyright notice that is included in or attached to the work
|
39
|
+
(an example is provided in the Appendix below).
|
40
|
+
|
41
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
42
|
+
form, that is based on (or derived from) the Work and for which the
|
43
|
+
editorial revisions, annotations, elaborations, or other modifications
|
44
|
+
represent, as a whole, an original work of authorship. For the purposes
|
45
|
+
of this License, Derivative Works shall not include works that remain
|
46
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
47
|
+
the Work and Derivative Works thereof.
|
48
|
+
|
49
|
+
"Contribution" shall mean any work of authorship, including
|
50
|
+
the original version of the Work and any modifications or additions
|
51
|
+
to that Work or Derivative Works thereof, that is intentionally
|
52
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
53
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
54
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
55
|
+
means any form of electronic, verbal, or written communication sent
|
56
|
+
to the Licensor or its representatives, including but not limited to
|
57
|
+
communication on electronic mailing lists, source code control systems,
|
58
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
59
|
+
Licensor for the purpose of discussing and improving the Work, but
|
60
|
+
excluding communication that is conspicuously marked or otherwise
|
61
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
62
|
+
|
63
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
64
|
+
on behalf of whom a Contribution has been received by Licensor and
|
65
|
+
subsequently incorporated within the Work.
|
66
|
+
|
67
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
68
|
+
this License, each Contributor hereby grants to You a perpetual,
|
69
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
70
|
+
copyright license to reproduce, prepare Derivative Works of,
|
71
|
+
publicly display, publicly perform, sublicense, and distribute the
|
72
|
+
Work and such Derivative Works in Source or Object form.
|
73
|
+
|
74
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
75
|
+
this License, each Contributor hereby grants to You a perpetual,
|
76
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
77
|
+
(except as stated in this section) patent license to make, have made,
|
78
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
79
|
+
where such license applies only to those patent claims licensable
|
80
|
+
by such Contributor that are necessarily infringed by their
|
81
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
82
|
+
with the Work to which such Contribution(s) was submitted. If You
|
83
|
+
institute patent litigation against any entity (including a
|
84
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
85
|
+
or a Contribution incorporated within the Work constitutes direct
|
86
|
+
or contributory patent infringement, then any patent licenses
|
87
|
+
granted to You under this License for that Work shall terminate
|
88
|
+
as of the date such litigation is filed.
|
89
|
+
|
90
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
91
|
+
Work or Derivative Works thereof in any medium, with or without
|
92
|
+
modifications, and in Source or Object form, provided that You
|
93
|
+
meet the following conditions:
|
94
|
+
|
95
|
+
(a) You must give any other recipients of the Work or
|
96
|
+
Derivative Works a copy of this License; and
|
97
|
+
|
98
|
+
(b) You must cause any modified files to carry prominent notices
|
99
|
+
stating that You changed the files; and
|
100
|
+
|
101
|
+
(c) You must retain, in the Source form of any Derivative Works
|
102
|
+
that You distribute, all copyright, patent, trademark, and
|
103
|
+
attribution notices from the Source form of the Work,
|
104
|
+
excluding those notices that do not pertain to any part of
|
105
|
+
the Derivative Works; and
|
106
|
+
|
107
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
108
|
+
distribution, then any Derivative Works that You distribute must
|
109
|
+
include a readable copy of the attribution notices contained
|
110
|
+
within such NOTICE file, excluding those notices that do not
|
111
|
+
pertain to any part of the Derivative Works, in at least one
|
112
|
+
of the following places: within a NOTICE text file distributed
|
113
|
+
as part of the Derivative Works; within the Source form or
|
114
|
+
documentation, if provided along with the Derivative Works; or,
|
115
|
+
within a display generated by the Derivative Works, if and
|
116
|
+
wherever such third-party notices normally appear. The contents
|
117
|
+
of the NOTICE file are for informational purposes only and
|
118
|
+
do not modify the License. You may add Your own attribution
|
119
|
+
notices within Derivative Works that You distribute, alongside
|
120
|
+
or as an addendum to the NOTICE text from the Work, provided
|
121
|
+
that such additional attribution notices cannot be construed
|
122
|
+
as modifying the License.
|
123
|
+
|
124
|
+
You may add Your own copyright statement to Your modifications and
|
125
|
+
may provide additional or different license terms and conditions
|
126
|
+
for use, reproduction, or distribution of Your modifications, or
|
127
|
+
for any such Derivative Works as a whole, provided Your use,
|
128
|
+
reproduction, and distribution of the Work otherwise complies with
|
129
|
+
the conditions stated in this License.
|
130
|
+
|
131
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
132
|
+
any Contribution intentionally submitted for inclusion in the Work
|
133
|
+
by You to the Licensor shall be under the terms and conditions of
|
134
|
+
this License, without any additional terms or conditions.
|
135
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
136
|
+
the terms of any separate license agreement you may have executed
|
137
|
+
with Licensor regarding such Contributions.
|
138
|
+
|
139
|
+
6. Trademarks. This License does not grant permission to use the trade
|
140
|
+
names, trademarks, service marks, or product names of the Licensor,
|
141
|
+
except as required for reasonable and customary use in describing the
|
142
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
143
|
+
|
144
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
145
|
+
agreed to in writing, Licensor provides the Work (and each
|
146
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
147
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
148
|
+
implied, including, without limitation, any warranties or conditions
|
149
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
150
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
151
|
+
appropriateness of using or redistributing the Work and assume any
|
152
|
+
risks associated with Your exercise of permissions under this License.
|
153
|
+
|
154
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
155
|
+
whether in tort (including negligence), contract, or otherwise,
|
156
|
+
unless required by applicable law (such as deliberate and grossly
|
157
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
158
|
+
liable to You for damages, including any direct, indirect, special,
|
159
|
+
incidental, or consequential damages of any character arising as a
|
160
|
+
result of this License or out of the use or inability to use the
|
161
|
+
Work (including but not limited to damages for loss of goodwill,
|
162
|
+
work stoppage, computer failure or malfunction, or any and all
|
163
|
+
other commercial damages or losses), even if such Contributor
|
164
|
+
has been advised of the possibility of such damages.
|
165
|
+
|
166
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
167
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
168
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
169
|
+
or other liability obligations and/or rights consistent with this
|
170
|
+
License. However, in accepting such obligations, You may act only
|
171
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
172
|
+
of any other Contributor, and only if You agree to indemnify,
|
173
|
+
defend, and hold each Contributor harmless for any liability
|
174
|
+
incurred by, or claims asserted against, such Contributor by reason
|
175
|
+
of your accepting any such warranty or additional liability.
|
176
|
+
|
177
|
+
END OF TERMS AND CONDITIONS
|
178
|
+
|
179
|
+
APPENDIX: How to apply the Apache License to your work.
|
180
|
+
|
181
|
+
To apply the Apache License to your work, attach the following
|
182
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
183
|
+
replaced with your own identifying information. (Don't include
|
184
|
+
the brackets!) The text should be enclosed in the appropriate
|
185
|
+
comment syntax for the file format. We also recommend that a
|
186
|
+
file or class name and description of purpose be included on the
|
187
|
+
same "printed page" as the copyright notice for easier
|
188
|
+
identification within third-party archives.
|
189
|
+
|
190
|
+
Copyright [yyyy] [name of copyright owner]
|
191
|
+
|
192
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
193
|
+
you may not use this file except in compliance with the License.
|
194
|
+
You may obtain a copy of the License at
|
195
|
+
|
196
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
197
|
+
|
198
|
+
Unless required by applicable law or agreed to in writing, software
|
199
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
200
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
201
|
+
See the License for the specific language governing permissions and
|
202
|
+
limitations under the License.
|
data/OVERVIEW.md
ADDED
@@ -0,0 +1,96 @@
|
|
1
|
+
# Simple REST client for version V1 of the Digital Asset Links API
|
2
|
+
|
3
|
+
This is a simple client library for version V1 of the Digital Asset Links API. It provides:
|
4
|
+
|
5
|
+
* A client object that connects to the HTTP/JSON REST endpoint for the service.
|
6
|
+
* Ruby objects for data structures related to the service.
|
7
|
+
* Integration with the googleauth gem for authentication using OAuth, API keys, and service accounts.
|
8
|
+
* Control of retry, pagination, and timeouts.
|
9
|
+
|
10
|
+
Note that although this client library is supported and will continue to be updated to track changes to the service, it is otherwise considered complete and not under active development. Many Google services, especially Google Cloud Platform services, may provide a more modern client that is under more active development and improvement. See the section below titled *Which client should I use?* for more information.
|
11
|
+
|
12
|
+
## Getting started
|
13
|
+
|
14
|
+
### Before you begin
|
15
|
+
|
16
|
+
There are a few setup steps you need to complete before you can use this library:
|
17
|
+
|
18
|
+
1. If you don't already have a Google account, [sign up](https://www.google.com/accounts).
|
19
|
+
2. If you have never created a Google APIs Console project, read about [Managing Projects](https://cloud.google.com/resource-manager/docs/creating-managing-projects) and create a project in the [Google API Console](https://console.cloud.google.com/).
|
20
|
+
3. Most APIs need to be enabled for your project. [Enable it](https://console.cloud.google.com/apis/library/digitalassetlinks.googleapis.com) in the console.
|
21
|
+
|
22
|
+
### Installation
|
23
|
+
|
24
|
+
Add this line to your application's Gemfile:
|
25
|
+
|
26
|
+
```ruby
|
27
|
+
gem 'google-apis-digitalassetlinks_v1', '~> 0.1'
|
28
|
+
```
|
29
|
+
|
30
|
+
And then execute:
|
31
|
+
|
32
|
+
```
|
33
|
+
$ bundle
|
34
|
+
```
|
35
|
+
|
36
|
+
Or install it yourself as:
|
37
|
+
|
38
|
+
```
|
39
|
+
$ gem install google-apis-digitalassetlinks_v1
|
40
|
+
```
|
41
|
+
|
42
|
+
### Creating a client object
|
43
|
+
|
44
|
+
Once the gem is installed, you can load the client code and instantiate a client.
|
45
|
+
|
46
|
+
```ruby
|
47
|
+
# Load the client
|
48
|
+
require "google/apis/digitalassetlinks_v1"
|
49
|
+
|
50
|
+
# Create a client object
|
51
|
+
client = Google::Apis::DigitalassetlinksV1::DigitalassetlinksService.new
|
52
|
+
|
53
|
+
# Authenticate calls
|
54
|
+
client.authentication = # ... use the googleauth gem to create credentials
|
55
|
+
```
|
56
|
+
|
57
|
+
See the class reference docs for information on the methods you can call from a client.
|
58
|
+
|
59
|
+
## Documentation
|
60
|
+
|
61
|
+
More detailed descriptions of the Google simple REST clients are available in two documents.
|
62
|
+
|
63
|
+
* The [Usage Guide](https://github.com/googleapis/google-api-ruby-client/blob/master/docs/usage-guide.md) discusses how to make API calls, how to use the provided data structures, and how to work the various features of the client library, including media upload and download, error handling, retries, pagination, and logging.
|
64
|
+
* The [Auth Guide](https://github.com/googleapis/google-api-ruby-client/blob/master/docs/auth-guide.md) discusses authentication in the client libraries, including API keys, OAuth 2.0, service accounts, and environment variables.
|
65
|
+
|
66
|
+
(Note: the above documents are written for the simple REST clients in general, and their examples may not reflect the Digitalassetlinks service in particular.)
|
67
|
+
|
68
|
+
For reference information on specific calls in the Digital Asset Links API, see the {Google::Apis::DigitalassetlinksV1::DigitalassetlinksService class reference docs}.
|
69
|
+
|
70
|
+
## Which client should I use?
|
71
|
+
|
72
|
+
Google provides two types of Ruby API client libraries: **simple REST clients** and **modern clients**.
|
73
|
+
|
74
|
+
This library, `google-apis-digitalassetlinks_v1`, is a simple REST client. You can identify these clients by their gem names, which are always in the form `google-apis-<servicename>_<serviceversion>`. The simple REST clients connect to HTTP/JSON REST endpoints and are automatically generated from service discovery documents. They support most API functionality, but their class interfaces are sometimes awkward.
|
75
|
+
|
76
|
+
Modern clients are produced by a modern code generator, sometimes combined with hand-crafted functionality. Most modern clients connect to high-performance gRPC endpoints, although a few are backed by REST services. Modern clients are available for many Google services, especially Google Cloud Platform services, but do not yet support all the services covered by the simple clients.
|
77
|
+
|
78
|
+
Gem names for modern clients are often of the form `google-cloud-<service_name>`. (For example, [google-cloud-pubsub](https://rubygems.org/gems/google-cloud-pubsub).) Note that most modern clients also have corresponding "versioned" gems with names like `google-cloud-<service_name>-<version>`. (For example, [google-cloud-pubsub-v1](https://rubygems.org/gems/google-cloud-pubsub-v1).) The "versioned" gems can be used directly, but often provide lower-level interfaces. In most cases, the main gem is recommended.
|
79
|
+
|
80
|
+
**For most users, we recommend the modern client, if one is available.** Compared with simple clients, modern clients are generally much easier to use and more Ruby-like, support more advanced features such as streaming and long-running operations, and often provide much better performance. You may consider using a simple client instead, if a modern client is not yet available for the service you want to use, or if you are not able to use gRPC on your infrastructure.
|
81
|
+
|
82
|
+
The [product documentation](https://developers.google.com/digital-asset-links/) may provide guidance regarding the preferred client library to use.
|
83
|
+
|
84
|
+
## Supported Ruby versions
|
85
|
+
|
86
|
+
This library is supported on Ruby 2.5+.
|
87
|
+
|
88
|
+
Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Currently, this means Ruby 2.5 and later. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
|
89
|
+
|
90
|
+
## License
|
91
|
+
|
92
|
+
This library is licensed under Apache 2.0. Full license text is available in the {file:LICENSE.md LICENSE}.
|
93
|
+
|
94
|
+
## Support
|
95
|
+
|
96
|
+
Please [report bugs at the project on Github](https://github.com/google/google-api-ruby-client/issues). Don't hesitate to [ask questions](http://stackoverflow.com/questions/tagged/google-api-ruby-client) about the client or APIs on [StackOverflow](http://stackoverflow.com).
|
@@ -0,0 +1,15 @@
|
|
1
|
+
# Copyright 2020 Google LLC
|
2
|
+
#
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
4
|
+
# you may not use this file except in compliance with the License.
|
5
|
+
# You may obtain a copy of the License at
|
6
|
+
#
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
8
|
+
#
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
12
|
+
# See the License for the specific language governing permissions and
|
13
|
+
# limitations under the License.
|
14
|
+
|
15
|
+
require "google/apis/digitalassetlinks_v1"
|
@@ -0,0 +1,33 @@
|
|
1
|
+
# Copyright 2020 Google LLC
|
2
|
+
#
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
4
|
+
# you may not use this file except in compliance with the License.
|
5
|
+
# You may obtain a copy of the License at
|
6
|
+
#
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
8
|
+
#
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
12
|
+
# See the License for the specific language governing permissions and
|
13
|
+
# limitations under the License.
|
14
|
+
|
15
|
+
require 'google/apis/digitalassetlinks_v1/service.rb'
|
16
|
+
require 'google/apis/digitalassetlinks_v1/classes.rb'
|
17
|
+
require 'google/apis/digitalassetlinks_v1/representations.rb'
|
18
|
+
require 'google/apis/digitalassetlinks_v1/gem_version.rb'
|
19
|
+
|
20
|
+
module Google
|
21
|
+
module Apis
|
22
|
+
# Digital Asset Links API
|
23
|
+
#
|
24
|
+
# Discovers relationships between online assets such as websites or mobile apps.
|
25
|
+
#
|
26
|
+
# @see https://developers.google.com/digital-asset-links/
|
27
|
+
module DigitalassetlinksV1
|
28
|
+
# Version of the Digital Asset Links API this client connects to.
|
29
|
+
# This is NOT the gem version.
|
30
|
+
VERSION = 'V1'
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
@@ -0,0 +1,279 @@
|
|
1
|
+
# Copyright 2020 Google LLC
|
2
|
+
#
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
4
|
+
# you may not use this file except in compliance with the License.
|
5
|
+
# You may obtain a copy of the License at
|
6
|
+
#
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
8
|
+
#
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
12
|
+
# See the License for the specific language governing permissions and
|
13
|
+
# limitations under the License.
|
14
|
+
|
15
|
+
require 'date'
|
16
|
+
require 'google/apis/core/base_service'
|
17
|
+
require 'google/apis/core/json_representation'
|
18
|
+
require 'google/apis/core/hashable'
|
19
|
+
require 'google/apis/errors'
|
20
|
+
|
21
|
+
module Google
|
22
|
+
module Apis
|
23
|
+
module DigitalassetlinksV1
|
24
|
+
|
25
|
+
# Describes an android app asset.
|
26
|
+
class AndroidAppAsset
|
27
|
+
include Google::Apis::Core::Hashable
|
28
|
+
|
29
|
+
# Describes an X509 certificate.
|
30
|
+
# Corresponds to the JSON property `certificate`
|
31
|
+
# @return [Google::Apis::DigitalassetlinksV1::CertificateInfo]
|
32
|
+
attr_accessor :certificate
|
33
|
+
|
34
|
+
# Android App assets are naturally identified by their Java package name. For
|
35
|
+
# example, the Google Maps app uses the package name `com.google.android.apps.
|
36
|
+
# maps`. REQUIRED
|
37
|
+
# Corresponds to the JSON property `packageName`
|
38
|
+
# @return [String]
|
39
|
+
attr_accessor :package_name
|
40
|
+
|
41
|
+
def initialize(**args)
|
42
|
+
update!(**args)
|
43
|
+
end
|
44
|
+
|
45
|
+
# Update properties of this object
|
46
|
+
def update!(**args)
|
47
|
+
@certificate = args[:certificate] if args.key?(:certificate)
|
48
|
+
@package_name = args[:package_name] if args.key?(:package_name)
|
49
|
+
end
|
50
|
+
end
|
51
|
+
|
52
|
+
# Uniquely identifies an asset. A digital asset is an identifiable and
|
53
|
+
# addressable online entity that typically provides some service or content.
|
54
|
+
# Examples of assets are websites, Android apps, Twitter feeds, and Plus Pages.
|
55
|
+
class Asset
|
56
|
+
include Google::Apis::Core::Hashable
|
57
|
+
|
58
|
+
# Describes an android app asset.
|
59
|
+
# Corresponds to the JSON property `androidApp`
|
60
|
+
# @return [Google::Apis::DigitalassetlinksV1::AndroidAppAsset]
|
61
|
+
attr_accessor :android_app
|
62
|
+
|
63
|
+
# Describes a web asset.
|
64
|
+
# Corresponds to the JSON property `web`
|
65
|
+
# @return [Google::Apis::DigitalassetlinksV1::WebAsset]
|
66
|
+
attr_accessor :web
|
67
|
+
|
68
|
+
def initialize(**args)
|
69
|
+
update!(**args)
|
70
|
+
end
|
71
|
+
|
72
|
+
# Update properties of this object
|
73
|
+
def update!(**args)
|
74
|
+
@android_app = args[:android_app] if args.key?(:android_app)
|
75
|
+
@web = args[:web] if args.key?(:web)
|
76
|
+
end
|
77
|
+
end
|
78
|
+
|
79
|
+
# Describes an X509 certificate.
|
80
|
+
class CertificateInfo
|
81
|
+
include Google::Apis::Core::Hashable
|
82
|
+
|
83
|
+
# The uppercase SHA-265 fingerprint of the certificate. From the PEM certificate,
|
84
|
+
# it can be acquired like this: $ keytool -printcert -file $CERTFILE | grep
|
85
|
+
# SHA256: SHA256: 14:6D:E9:83:C5:73:06:50:D8:EE:B9:95:2F:34:FC:64:16:A0:83: \ 42:
|
86
|
+
# E6:1D:BE:A8:8A:04:96:B2:3F:CF:44:E5 or like this: $ openssl x509 -in $CERTFILE
|
87
|
+
# -noout -fingerprint -sha256 SHA256 Fingerprint=14:6D:E9:83:C5:73:06:50:D8:EE:
|
88
|
+
# B9:95:2F:34:FC:64: \ 16:A0:83:42:E6:1D:BE:A8:8A:04:96:B2:3F:CF:44:E5 In this
|
89
|
+
# example, the contents of this field would be `14:6D:E9:83:C5:73: 06:50:D8:EE:
|
90
|
+
# B9:95:2F:34:FC:64:16:A0:83:42:E6:1D:BE:A8:8A:04:96:B2:3F:CF: 44:E5`. If these
|
91
|
+
# tools are not available to you, you can convert the PEM certificate into the
|
92
|
+
# DER format, compute the SHA-256 hash of that string and represent the result
|
93
|
+
# as a hexstring (that is, uppercase hexadecimal representations of each octet,
|
94
|
+
# separated by colons).
|
95
|
+
# Corresponds to the JSON property `sha256Fingerprint`
|
96
|
+
# @return [String]
|
97
|
+
attr_accessor :sha256_fingerprint
|
98
|
+
|
99
|
+
def initialize(**args)
|
100
|
+
update!(**args)
|
101
|
+
end
|
102
|
+
|
103
|
+
# Update properties of this object
|
104
|
+
def update!(**args)
|
105
|
+
@sha256_fingerprint = args[:sha256_fingerprint] if args.key?(:sha256_fingerprint)
|
106
|
+
end
|
107
|
+
end
|
108
|
+
|
109
|
+
# Response message for the CheckAssetLinks call.
|
110
|
+
class CheckResponse
|
111
|
+
include Google::Apis::Core::Hashable
|
112
|
+
|
113
|
+
# Human-readable message containing information intended to help end users
|
114
|
+
# understand, reproduce and debug the result. The message will be in English and
|
115
|
+
# we are currently not planning to offer any translations. Please note that no
|
116
|
+
# guarantees are made about the contents or format of this string. Any aspect of
|
117
|
+
# it may be subject to change without notice. You should not attempt to
|
118
|
+
# programmatically parse this data. For programmatic access, use the error_code
|
119
|
+
# field below.
|
120
|
+
# Corresponds to the JSON property `debugString`
|
121
|
+
# @return [String]
|
122
|
+
attr_accessor :debug_string
|
123
|
+
|
124
|
+
# Error codes that describe the result of the Check operation.
|
125
|
+
# Corresponds to the JSON property `errorCode`
|
126
|
+
# @return [Array<String>]
|
127
|
+
attr_accessor :error_code
|
128
|
+
|
129
|
+
# Set to true if the assets specified in the request are linked by the relation
|
130
|
+
# specified in the request.
|
131
|
+
# Corresponds to the JSON property `linked`
|
132
|
+
# @return [Boolean]
|
133
|
+
attr_accessor :linked
|
134
|
+
alias_method :linked?, :linked
|
135
|
+
|
136
|
+
# From serving time, how much longer the response should be considered valid
|
137
|
+
# barring further updates. REQUIRED
|
138
|
+
# Corresponds to the JSON property `maxAge`
|
139
|
+
# @return [String]
|
140
|
+
attr_accessor :max_age
|
141
|
+
|
142
|
+
def initialize(**args)
|
143
|
+
update!(**args)
|
144
|
+
end
|
145
|
+
|
146
|
+
# Update properties of this object
|
147
|
+
def update!(**args)
|
148
|
+
@debug_string = args[:debug_string] if args.key?(:debug_string)
|
149
|
+
@error_code = args[:error_code] if args.key?(:error_code)
|
150
|
+
@linked = args[:linked] if args.key?(:linked)
|
151
|
+
@max_age = args[:max_age] if args.key?(:max_age)
|
152
|
+
end
|
153
|
+
end
|
154
|
+
|
155
|
+
# Response message for the List call.
|
156
|
+
class ListResponse
|
157
|
+
include Google::Apis::Core::Hashable
|
158
|
+
|
159
|
+
# Human-readable message containing information intended to help end users
|
160
|
+
# understand, reproduce and debug the result. The message will be in English and
|
161
|
+
# we are currently not planning to offer any translations. Please note that no
|
162
|
+
# guarantees are made about the contents or format of this string. Any aspect of
|
163
|
+
# it may be subject to change without notice. You should not attempt to
|
164
|
+
# programmatically parse this data. For programmatic access, use the error_code
|
165
|
+
# field below.
|
166
|
+
# Corresponds to the JSON property `debugString`
|
167
|
+
# @return [String]
|
168
|
+
attr_accessor :debug_string
|
169
|
+
|
170
|
+
# Error codes that describe the result of the List operation.
|
171
|
+
# Corresponds to the JSON property `errorCode`
|
172
|
+
# @return [Array<String>]
|
173
|
+
attr_accessor :error_code
|
174
|
+
|
175
|
+
# From serving time, how much longer the response should be considered valid
|
176
|
+
# barring further updates. REQUIRED
|
177
|
+
# Corresponds to the JSON property `maxAge`
|
178
|
+
# @return [String]
|
179
|
+
attr_accessor :max_age
|
180
|
+
|
181
|
+
# A list of all the matching statements that have been found.
|
182
|
+
# Corresponds to the JSON property `statements`
|
183
|
+
# @return [Array<Google::Apis::DigitalassetlinksV1::Statement>]
|
184
|
+
attr_accessor :statements
|
185
|
+
|
186
|
+
def initialize(**args)
|
187
|
+
update!(**args)
|
188
|
+
end
|
189
|
+
|
190
|
+
# Update properties of this object
|
191
|
+
def update!(**args)
|
192
|
+
@debug_string = args[:debug_string] if args.key?(:debug_string)
|
193
|
+
@error_code = args[:error_code] if args.key?(:error_code)
|
194
|
+
@max_age = args[:max_age] if args.key?(:max_age)
|
195
|
+
@statements = args[:statements] if args.key?(:statements)
|
196
|
+
end
|
197
|
+
end
|
198
|
+
|
199
|
+
# Describes a reliable statement that has been made about the relationship
|
200
|
+
# between a source asset and a target asset. Statements are always made by the
|
201
|
+
# source asset, either directly or by delegating to a statement list that is
|
202
|
+
# stored elsewhere. For more detailed definitions of statements and assets,
|
203
|
+
# please refer to our [API documentation landing page](/digital-asset-links/v1/
|
204
|
+
# getting-started).
|
205
|
+
class Statement
|
206
|
+
include Google::Apis::Core::Hashable
|
207
|
+
|
208
|
+
# The relation identifies the use of the statement as intended by the source
|
209
|
+
# asset's owner (that is, the person or entity who issued the statement). Every
|
210
|
+
# complete statement has a relation. We identify relations with strings of the
|
211
|
+
# format `/`, where `` must be one of a set of pre-defined purpose categories,
|
212
|
+
# and `` is a free-form lowercase alphanumeric string that describes the
|
213
|
+
# specific use case of the statement. Refer to [our API documentation](/digital-
|
214
|
+
# asset-links/v1/relation-strings) for the current list of supported relations.
|
215
|
+
# Example: `delegate_permission/common.handle_all_urls` REQUIRED
|
216
|
+
# Corresponds to the JSON property `relation`
|
217
|
+
# @return [String]
|
218
|
+
attr_accessor :relation
|
219
|
+
|
220
|
+
# Uniquely identifies an asset. A digital asset is an identifiable and
|
221
|
+
# addressable online entity that typically provides some service or content.
|
222
|
+
# Examples of assets are websites, Android apps, Twitter feeds, and Plus Pages.
|
223
|
+
# Corresponds to the JSON property `source`
|
224
|
+
# @return [Google::Apis::DigitalassetlinksV1::Asset]
|
225
|
+
attr_accessor :source
|
226
|
+
|
227
|
+
# Uniquely identifies an asset. A digital asset is an identifiable and
|
228
|
+
# addressable online entity that typically provides some service or content.
|
229
|
+
# Examples of assets are websites, Android apps, Twitter feeds, and Plus Pages.
|
230
|
+
# Corresponds to the JSON property `target`
|
231
|
+
# @return [Google::Apis::DigitalassetlinksV1::Asset]
|
232
|
+
attr_accessor :target
|
233
|
+
|
234
|
+
def initialize(**args)
|
235
|
+
update!(**args)
|
236
|
+
end
|
237
|
+
|
238
|
+
# Update properties of this object
|
239
|
+
def update!(**args)
|
240
|
+
@relation = args[:relation] if args.key?(:relation)
|
241
|
+
@source = args[:source] if args.key?(:source)
|
242
|
+
@target = args[:target] if args.key?(:target)
|
243
|
+
end
|
244
|
+
end
|
245
|
+
|
246
|
+
# Describes a web asset.
|
247
|
+
class WebAsset
|
248
|
+
include Google::Apis::Core::Hashable
|
249
|
+
|
250
|
+
# Web assets are identified by a URL that contains only the scheme, hostname and
|
251
|
+
# port parts. The format is http[s]://[:] Hostnames must be fully qualified:
|
252
|
+
# they must end in a single period ("`.`"). Only the schemes "http" and "https"
|
253
|
+
# are currently allowed. Port numbers are given as a decimal number, and they
|
254
|
+
# must be omitted if the standard port numbers are used: 80 for http and 443 for
|
255
|
+
# https. We call this limited URL the "site". All URLs that share the same
|
256
|
+
# scheme, hostname and port are considered to be a part of the site and thus
|
257
|
+
# belong to the web asset. Example: the asset with the site `https://www.google.
|
258
|
+
# com` contains all these URLs: * `https://www.google.com/` * `https://www.
|
259
|
+
# google.com:443/` * `https://www.google.com/foo` * `https://www.google.com/foo?
|
260
|
+
# bar` * `https://www.google.com/foo#bar` * `https://user@password:www.google.
|
261
|
+
# com/` But it does not contain these URLs: * `http://www.google.com/` (wrong
|
262
|
+
# scheme) * `https://google.com/` (hostname does not match) * `https://www.
|
263
|
+
# google.com:444/` (port does not match) REQUIRED
|
264
|
+
# Corresponds to the JSON property `site`
|
265
|
+
# @return [String]
|
266
|
+
attr_accessor :site
|
267
|
+
|
268
|
+
def initialize(**args)
|
269
|
+
update!(**args)
|
270
|
+
end
|
271
|
+
|
272
|
+
# Update properties of this object
|
273
|
+
def update!(**args)
|
274
|
+
@site = args[:site] if args.key?(:site)
|
275
|
+
end
|
276
|
+
end
|
277
|
+
end
|
278
|
+
end
|
279
|
+
end
|
@@ -0,0 +1,28 @@
|
|
1
|
+
# Copyright 2020 Google LLC
|
2
|
+
#
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
4
|
+
# you may not use this file except in compliance with the License.
|
5
|
+
# You may obtain a copy of the License at
|
6
|
+
#
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
8
|
+
#
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
12
|
+
# See the License for the specific language governing permissions and
|
13
|
+
# limitations under the License.
|
14
|
+
|
15
|
+
module Google
|
16
|
+
module Apis
|
17
|
+
module DigitalassetlinksV1
|
18
|
+
# Version of the google-apis-digitalassetlinks_v1 gem
|
19
|
+
GEM_VERSION = "0.1.0"
|
20
|
+
|
21
|
+
# Version of the code generator used to generate this client
|
22
|
+
GENERATOR_VERSION = "0.1.1"
|
23
|
+
|
24
|
+
# Revision of the discovery document this client was generated from
|
25
|
+
REVISION = "20200829"
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
@@ -0,0 +1,133 @@
|
|
1
|
+
# Copyright 2020 Google LLC
|
2
|
+
#
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
4
|
+
# you may not use this file except in compliance with the License.
|
5
|
+
# You may obtain a copy of the License at
|
6
|
+
#
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
8
|
+
#
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
12
|
+
# See the License for the specific language governing permissions and
|
13
|
+
# limitations under the License.
|
14
|
+
|
15
|
+
require 'date'
|
16
|
+
require 'google/apis/core/base_service'
|
17
|
+
require 'google/apis/core/json_representation'
|
18
|
+
require 'google/apis/core/hashable'
|
19
|
+
require 'google/apis/errors'
|
20
|
+
|
21
|
+
module Google
|
22
|
+
module Apis
|
23
|
+
module DigitalassetlinksV1
|
24
|
+
|
25
|
+
class AndroidAppAsset
|
26
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
27
|
+
|
28
|
+
include Google::Apis::Core::JsonObjectSupport
|
29
|
+
end
|
30
|
+
|
31
|
+
class Asset
|
32
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
33
|
+
|
34
|
+
include Google::Apis::Core::JsonObjectSupport
|
35
|
+
end
|
36
|
+
|
37
|
+
class CertificateInfo
|
38
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
39
|
+
|
40
|
+
include Google::Apis::Core::JsonObjectSupport
|
41
|
+
end
|
42
|
+
|
43
|
+
class CheckResponse
|
44
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
45
|
+
|
46
|
+
include Google::Apis::Core::JsonObjectSupport
|
47
|
+
end
|
48
|
+
|
49
|
+
class ListResponse
|
50
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
51
|
+
|
52
|
+
include Google::Apis::Core::JsonObjectSupport
|
53
|
+
end
|
54
|
+
|
55
|
+
class Statement
|
56
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
57
|
+
|
58
|
+
include Google::Apis::Core::JsonObjectSupport
|
59
|
+
end
|
60
|
+
|
61
|
+
class WebAsset
|
62
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
63
|
+
|
64
|
+
include Google::Apis::Core::JsonObjectSupport
|
65
|
+
end
|
66
|
+
|
67
|
+
class AndroidAppAsset
|
68
|
+
# @private
|
69
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
70
|
+
property :certificate, as: 'certificate', class: Google::Apis::DigitalassetlinksV1::CertificateInfo, decorator: Google::Apis::DigitalassetlinksV1::CertificateInfo::Representation
|
71
|
+
|
72
|
+
property :package_name, as: 'packageName'
|
73
|
+
end
|
74
|
+
end
|
75
|
+
|
76
|
+
class Asset
|
77
|
+
# @private
|
78
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
79
|
+
property :android_app, as: 'androidApp', class: Google::Apis::DigitalassetlinksV1::AndroidAppAsset, decorator: Google::Apis::DigitalassetlinksV1::AndroidAppAsset::Representation
|
80
|
+
|
81
|
+
property :web, as: 'web', class: Google::Apis::DigitalassetlinksV1::WebAsset, decorator: Google::Apis::DigitalassetlinksV1::WebAsset::Representation
|
82
|
+
|
83
|
+
end
|
84
|
+
end
|
85
|
+
|
86
|
+
class CertificateInfo
|
87
|
+
# @private
|
88
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
89
|
+
property :sha256_fingerprint, as: 'sha256Fingerprint'
|
90
|
+
end
|
91
|
+
end
|
92
|
+
|
93
|
+
class CheckResponse
|
94
|
+
# @private
|
95
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
96
|
+
property :debug_string, as: 'debugString'
|
97
|
+
collection :error_code, as: 'errorCode'
|
98
|
+
property :linked, as: 'linked'
|
99
|
+
property :max_age, as: 'maxAge'
|
100
|
+
end
|
101
|
+
end
|
102
|
+
|
103
|
+
class ListResponse
|
104
|
+
# @private
|
105
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
106
|
+
property :debug_string, as: 'debugString'
|
107
|
+
collection :error_code, as: 'errorCode'
|
108
|
+
property :max_age, as: 'maxAge'
|
109
|
+
collection :statements, as: 'statements', class: Google::Apis::DigitalassetlinksV1::Statement, decorator: Google::Apis::DigitalassetlinksV1::Statement::Representation
|
110
|
+
|
111
|
+
end
|
112
|
+
end
|
113
|
+
|
114
|
+
class Statement
|
115
|
+
# @private
|
116
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
117
|
+
property :relation, as: 'relation'
|
118
|
+
property :source, as: 'source', class: Google::Apis::DigitalassetlinksV1::Asset, decorator: Google::Apis::DigitalassetlinksV1::Asset::Representation
|
119
|
+
|
120
|
+
property :target, as: 'target', class: Google::Apis::DigitalassetlinksV1::Asset, decorator: Google::Apis::DigitalassetlinksV1::Asset::Representation
|
121
|
+
|
122
|
+
end
|
123
|
+
end
|
124
|
+
|
125
|
+
class WebAsset
|
126
|
+
# @private
|
127
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
128
|
+
property :site, as: 'site'
|
129
|
+
end
|
130
|
+
end
|
131
|
+
end
|
132
|
+
end
|
133
|
+
end
|
@@ -0,0 +1,269 @@
|
|
1
|
+
# Copyright 2020 Google LLC
|
2
|
+
#
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
4
|
+
# you may not use this file except in compliance with the License.
|
5
|
+
# You may obtain a copy of the License at
|
6
|
+
#
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
8
|
+
#
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
12
|
+
# See the License for the specific language governing permissions and
|
13
|
+
# limitations under the License.
|
14
|
+
|
15
|
+
require 'google/apis/core/base_service'
|
16
|
+
require 'google/apis/core/json_representation'
|
17
|
+
require 'google/apis/core/hashable'
|
18
|
+
require 'google/apis/errors'
|
19
|
+
|
20
|
+
module Google
|
21
|
+
module Apis
|
22
|
+
module DigitalassetlinksV1
|
23
|
+
# Digital Asset Links API
|
24
|
+
#
|
25
|
+
# Discovers relationships between online assets such as websites or mobile apps.
|
26
|
+
#
|
27
|
+
# @example
|
28
|
+
# require 'google/apis/digitalassetlinks_v1'
|
29
|
+
#
|
30
|
+
# Digitalassetlinks = Google::Apis::DigitalassetlinksV1 # Alias the module
|
31
|
+
# service = Digitalassetlinks::DigitalassetlinksService.new
|
32
|
+
#
|
33
|
+
# @see https://developers.google.com/digital-asset-links/
|
34
|
+
class DigitalassetlinksService < Google::Apis::Core::BaseService
|
35
|
+
# @return [String]
|
36
|
+
# API key. Your API key identifies your project and provides you with API access,
|
37
|
+
# quota, and reports. Required unless you provide an OAuth 2.0 token.
|
38
|
+
attr_accessor :key
|
39
|
+
|
40
|
+
# @return [String]
|
41
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
42
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
43
|
+
attr_accessor :quota_user
|
44
|
+
|
45
|
+
def initialize
|
46
|
+
super('https://digitalassetlinks.googleapis.com/', '',
|
47
|
+
client_name: 'google-apis-digitalassetlinks_v1',
|
48
|
+
client_version: Google::Apis::DigitalassetlinksV1::GEM_VERSION)
|
49
|
+
@batch_path = 'batch'
|
50
|
+
end
|
51
|
+
|
52
|
+
# Determines whether the specified (directional) relationship exists between the
|
53
|
+
# specified source and target assets. The relation describes the intent of the
|
54
|
+
# link between the two assets as claimed by the source asset. An example for
|
55
|
+
# such relationships is the delegation of privileges or permissions. This
|
56
|
+
# command is most often used by infrastructure systems to check preconditions
|
57
|
+
# for an action. For example, a client may want to know if it is OK to send a
|
58
|
+
# web URL to a particular mobile app instead. The client can check for the
|
59
|
+
# relevant asset link from the website to the mobile app to decide if the
|
60
|
+
# operation should be allowed. A note about security: if you specify a secure
|
61
|
+
# asset as the source, such as an HTTPS website or an Android app, the API will
|
62
|
+
# ensure that any statements used to generate the response have been made in a
|
63
|
+
# secure way by the owner of that asset. Conversely, if the source asset is an
|
64
|
+
# insecure HTTP website (that is, the URL starts with `http://` instead of `
|
65
|
+
# https://`), the API cannot verify its statements securely, and it is not
|
66
|
+
# possible to ensure that the website's statements have not been altered by a
|
67
|
+
# third party. For more information, see the [Digital Asset Links technical
|
68
|
+
# design specification](https://github.com/google/digitalassetlinks/blob/master/
|
69
|
+
# well-known/details.md).
|
70
|
+
# @param [String] relation
|
71
|
+
# Query string for the relation. We identify relations with strings of the
|
72
|
+
# format `/`, where `` must be one of a set of pre-defined purpose categories,
|
73
|
+
# and `` is a free-form lowercase alphanumeric string that describes the
|
74
|
+
# specific use case of the statement. Refer to [our API documentation](/digital-
|
75
|
+
# asset-links/v1/relation-strings) for the current list of supported relations.
|
76
|
+
# For a query to match an asset link, both the query's and the asset link's
|
77
|
+
# relation strings must match exactly. Example: A query with relation `
|
78
|
+
# delegate_permission/common.handle_all_urls` matches an asset link with
|
79
|
+
# relation `delegate_permission/common.handle_all_urls`.
|
80
|
+
# @param [String] source_android_app_certificate_sha256_fingerprint
|
81
|
+
# The uppercase SHA-265 fingerprint of the certificate. From the PEM certificate,
|
82
|
+
# it can be acquired like this: $ keytool -printcert -file $CERTFILE | grep
|
83
|
+
# SHA256: SHA256: 14:6D:E9:83:C5:73:06:50:D8:EE:B9:95:2F:34:FC:64:16:A0:83: \ 42:
|
84
|
+
# E6:1D:BE:A8:8A:04:96:B2:3F:CF:44:E5 or like this: $ openssl x509 -in $CERTFILE
|
85
|
+
# -noout -fingerprint -sha256 SHA256 Fingerprint=14:6D:E9:83:C5:73:06:50:D8:EE:
|
86
|
+
# B9:95:2F:34:FC:64: \ 16:A0:83:42:E6:1D:BE:A8:8A:04:96:B2:3F:CF:44:E5 In this
|
87
|
+
# example, the contents of this field would be `14:6D:E9:83:C5:73: 06:50:D8:EE:
|
88
|
+
# B9:95:2F:34:FC:64:16:A0:83:42:E6:1D:BE:A8:8A:04:96:B2:3F:CF: 44:E5`. If these
|
89
|
+
# tools are not available to you, you can convert the PEM certificate into the
|
90
|
+
# DER format, compute the SHA-256 hash of that string and represent the result
|
91
|
+
# as a hexstring (that is, uppercase hexadecimal representations of each octet,
|
92
|
+
# separated by colons).
|
93
|
+
# @param [String] source_android_app_package_name
|
94
|
+
# Android App assets are naturally identified by their Java package name. For
|
95
|
+
# example, the Google Maps app uses the package name `com.google.android.apps.
|
96
|
+
# maps`. REQUIRED
|
97
|
+
# @param [String] source_web_site
|
98
|
+
# Web assets are identified by a URL that contains only the scheme, hostname and
|
99
|
+
# port parts. The format is http[s]://[:] Hostnames must be fully qualified:
|
100
|
+
# they must end in a single period ("`.`"). Only the schemes "http" and "https"
|
101
|
+
# are currently allowed. Port numbers are given as a decimal number, and they
|
102
|
+
# must be omitted if the standard port numbers are used: 80 for http and 443 for
|
103
|
+
# https. We call this limited URL the "site". All URLs that share the same
|
104
|
+
# scheme, hostname and port are considered to be a part of the site and thus
|
105
|
+
# belong to the web asset. Example: the asset with the site `https://www.google.
|
106
|
+
# com` contains all these URLs: * `https://www.google.com/` * `https://www.
|
107
|
+
# google.com:443/` * `https://www.google.com/foo` * `https://www.google.com/foo?
|
108
|
+
# bar` * `https://www.google.com/foo#bar` * `https://user@password:www.google.
|
109
|
+
# com/` But it does not contain these URLs: * `http://www.google.com/` (wrong
|
110
|
+
# scheme) * `https://google.com/` (hostname does not match) * `https://www.
|
111
|
+
# google.com:444/` (port does not match) REQUIRED
|
112
|
+
# @param [String] target_android_app_certificate_sha256_fingerprint
|
113
|
+
# The uppercase SHA-265 fingerprint of the certificate. From the PEM certificate,
|
114
|
+
# it can be acquired like this: $ keytool -printcert -file $CERTFILE | grep
|
115
|
+
# SHA256: SHA256: 14:6D:E9:83:C5:73:06:50:D8:EE:B9:95:2F:34:FC:64:16:A0:83: \ 42:
|
116
|
+
# E6:1D:BE:A8:8A:04:96:B2:3F:CF:44:E5 or like this: $ openssl x509 -in $CERTFILE
|
117
|
+
# -noout -fingerprint -sha256 SHA256 Fingerprint=14:6D:E9:83:C5:73:06:50:D8:EE:
|
118
|
+
# B9:95:2F:34:FC:64: \ 16:A0:83:42:E6:1D:BE:A8:8A:04:96:B2:3F:CF:44:E5 In this
|
119
|
+
# example, the contents of this field would be `14:6D:E9:83:C5:73: 06:50:D8:EE:
|
120
|
+
# B9:95:2F:34:FC:64:16:A0:83:42:E6:1D:BE:A8:8A:04:96:B2:3F:CF: 44:E5`. If these
|
121
|
+
# tools are not available to you, you can convert the PEM certificate into the
|
122
|
+
# DER format, compute the SHA-256 hash of that string and represent the result
|
123
|
+
# as a hexstring (that is, uppercase hexadecimal representations of each octet,
|
124
|
+
# separated by colons).
|
125
|
+
# @param [String] target_android_app_package_name
|
126
|
+
# Android App assets are naturally identified by their Java package name. For
|
127
|
+
# example, the Google Maps app uses the package name `com.google.android.apps.
|
128
|
+
# maps`. REQUIRED
|
129
|
+
# @param [String] target_web_site
|
130
|
+
# Web assets are identified by a URL that contains only the scheme, hostname and
|
131
|
+
# port parts. The format is http[s]://[:] Hostnames must be fully qualified:
|
132
|
+
# they must end in a single period ("`.`"). Only the schemes "http" and "https"
|
133
|
+
# are currently allowed. Port numbers are given as a decimal number, and they
|
134
|
+
# must be omitted if the standard port numbers are used: 80 for http and 443 for
|
135
|
+
# https. We call this limited URL the "site". All URLs that share the same
|
136
|
+
# scheme, hostname and port are considered to be a part of the site and thus
|
137
|
+
# belong to the web asset. Example: the asset with the site `https://www.google.
|
138
|
+
# com` contains all these URLs: * `https://www.google.com/` * `https://www.
|
139
|
+
# google.com:443/` * `https://www.google.com/foo` * `https://www.google.com/foo?
|
140
|
+
# bar` * `https://www.google.com/foo#bar` * `https://user@password:www.google.
|
141
|
+
# com/` But it does not contain these URLs: * `http://www.google.com/` (wrong
|
142
|
+
# scheme) * `https://google.com/` (hostname does not match) * `https://www.
|
143
|
+
# google.com:444/` (port does not match) REQUIRED
|
144
|
+
# @param [String] fields
|
145
|
+
# Selector specifying which fields to include in a partial response.
|
146
|
+
# @param [String] quota_user
|
147
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
148
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
149
|
+
# @param [Google::Apis::RequestOptions] options
|
150
|
+
# Request-specific options
|
151
|
+
#
|
152
|
+
# @yield [result, err] Result & error if block supplied
|
153
|
+
# @yieldparam result [Google::Apis::DigitalassetlinksV1::CheckResponse] parsed result object
|
154
|
+
# @yieldparam err [StandardError] error object if request failed
|
155
|
+
#
|
156
|
+
# @return [Google::Apis::DigitalassetlinksV1::CheckResponse]
|
157
|
+
#
|
158
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
159
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
160
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
161
|
+
def check_assetlink(relation: nil, source_android_app_certificate_sha256_fingerprint: nil, source_android_app_package_name: nil, source_web_site: nil, target_android_app_certificate_sha256_fingerprint: nil, target_android_app_package_name: nil, target_web_site: nil, fields: nil, quota_user: nil, options: nil, &block)
|
162
|
+
command = make_simple_command(:get, 'v1/assetlinks:check', options)
|
163
|
+
command.response_representation = Google::Apis::DigitalassetlinksV1::CheckResponse::Representation
|
164
|
+
command.response_class = Google::Apis::DigitalassetlinksV1::CheckResponse
|
165
|
+
command.query['relation'] = relation unless relation.nil?
|
166
|
+
command.query['source.androidApp.certificate.sha256Fingerprint'] = source_android_app_certificate_sha256_fingerprint unless source_android_app_certificate_sha256_fingerprint.nil?
|
167
|
+
command.query['source.androidApp.packageName'] = source_android_app_package_name unless source_android_app_package_name.nil?
|
168
|
+
command.query['source.web.site'] = source_web_site unless source_web_site.nil?
|
169
|
+
command.query['target.androidApp.certificate.sha256Fingerprint'] = target_android_app_certificate_sha256_fingerprint unless target_android_app_certificate_sha256_fingerprint.nil?
|
170
|
+
command.query['target.androidApp.packageName'] = target_android_app_package_name unless target_android_app_package_name.nil?
|
171
|
+
command.query['target.web.site'] = target_web_site unless target_web_site.nil?
|
172
|
+
command.query['fields'] = fields unless fields.nil?
|
173
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
174
|
+
execute_or_queue_command(command, &block)
|
175
|
+
end
|
176
|
+
|
177
|
+
# Retrieves a list of all statements from a given source that match the
|
178
|
+
# specified target and statement string. The API guarantees that all statements
|
179
|
+
# with secure source assets, such as HTTPS websites or Android apps, have been
|
180
|
+
# made in a secure way by the owner of those assets, as described in the [
|
181
|
+
# Digital Asset Links technical design specification](https://github.com/google/
|
182
|
+
# digitalassetlinks/blob/master/well-known/details.md). Specifically, you should
|
183
|
+
# consider that for insecure websites (that is, where the URL starts with `http:/
|
184
|
+
# /` instead of `https://`), this guarantee cannot be made. The `List` command
|
185
|
+
# is most useful in cases where the API client wants to know all the ways in
|
186
|
+
# which two assets are related, or enumerate all the relationships from a
|
187
|
+
# particular source asset. Example: a feature that helps users navigate to
|
188
|
+
# related items. When a mobile app is running on a device, the feature would
|
189
|
+
# make it easy to navigate to the corresponding web site or Google+ profile.
|
190
|
+
# @param [String] relation
|
191
|
+
# Use only associations that match the specified relation. See the [`Statement`](
|
192
|
+
# #Statement) message for a detailed definition of relation strings. For a query
|
193
|
+
# to match a statement, one of the following must be true: * both the query's
|
194
|
+
# and the statement's relation strings match exactly, or * the query's relation
|
195
|
+
# string is empty or missing. Example: A query with relation `
|
196
|
+
# delegate_permission/common.handle_all_urls` matches an asset link with
|
197
|
+
# relation `delegate_permission/common.handle_all_urls`.
|
198
|
+
# @param [String] source_android_app_certificate_sha256_fingerprint
|
199
|
+
# The uppercase SHA-265 fingerprint of the certificate. From the PEM certificate,
|
200
|
+
# it can be acquired like this: $ keytool -printcert -file $CERTFILE | grep
|
201
|
+
# SHA256: SHA256: 14:6D:E9:83:C5:73:06:50:D8:EE:B9:95:2F:34:FC:64:16:A0:83: \ 42:
|
202
|
+
# E6:1D:BE:A8:8A:04:96:B2:3F:CF:44:E5 or like this: $ openssl x509 -in $CERTFILE
|
203
|
+
# -noout -fingerprint -sha256 SHA256 Fingerprint=14:6D:E9:83:C5:73:06:50:D8:EE:
|
204
|
+
# B9:95:2F:34:FC:64: \ 16:A0:83:42:E6:1D:BE:A8:8A:04:96:B2:3F:CF:44:E5 In this
|
205
|
+
# example, the contents of this field would be `14:6D:E9:83:C5:73: 06:50:D8:EE:
|
206
|
+
# B9:95:2F:34:FC:64:16:A0:83:42:E6:1D:BE:A8:8A:04:96:B2:3F:CF: 44:E5`. If these
|
207
|
+
# tools are not available to you, you can convert the PEM certificate into the
|
208
|
+
# DER format, compute the SHA-256 hash of that string and represent the result
|
209
|
+
# as a hexstring (that is, uppercase hexadecimal representations of each octet,
|
210
|
+
# separated by colons).
|
211
|
+
# @param [String] source_android_app_package_name
|
212
|
+
# Android App assets are naturally identified by their Java package name. For
|
213
|
+
# example, the Google Maps app uses the package name `com.google.android.apps.
|
214
|
+
# maps`. REQUIRED
|
215
|
+
# @param [String] source_web_site
|
216
|
+
# Web assets are identified by a URL that contains only the scheme, hostname and
|
217
|
+
# port parts. The format is http[s]://[:] Hostnames must be fully qualified:
|
218
|
+
# they must end in a single period ("`.`"). Only the schemes "http" and "https"
|
219
|
+
# are currently allowed. Port numbers are given as a decimal number, and they
|
220
|
+
# must be omitted if the standard port numbers are used: 80 for http and 443 for
|
221
|
+
# https. We call this limited URL the "site". All URLs that share the same
|
222
|
+
# scheme, hostname and port are considered to be a part of the site and thus
|
223
|
+
# belong to the web asset. Example: the asset with the site `https://www.google.
|
224
|
+
# com` contains all these URLs: * `https://www.google.com/` * `https://www.
|
225
|
+
# google.com:443/` * `https://www.google.com/foo` * `https://www.google.com/foo?
|
226
|
+
# bar` * `https://www.google.com/foo#bar` * `https://user@password:www.google.
|
227
|
+
# com/` But it does not contain these URLs: * `http://www.google.com/` (wrong
|
228
|
+
# scheme) * `https://google.com/` (hostname does not match) * `https://www.
|
229
|
+
# google.com:444/` (port does not match) REQUIRED
|
230
|
+
# @param [String] fields
|
231
|
+
# Selector specifying which fields to include in a partial response.
|
232
|
+
# @param [String] quota_user
|
233
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
234
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
235
|
+
# @param [Google::Apis::RequestOptions] options
|
236
|
+
# Request-specific options
|
237
|
+
#
|
238
|
+
# @yield [result, err] Result & error if block supplied
|
239
|
+
# @yieldparam result [Google::Apis::DigitalassetlinksV1::ListResponse] parsed result object
|
240
|
+
# @yieldparam err [StandardError] error object if request failed
|
241
|
+
#
|
242
|
+
# @return [Google::Apis::DigitalassetlinksV1::ListResponse]
|
243
|
+
#
|
244
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
245
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
246
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
247
|
+
def list_statements(relation: nil, source_android_app_certificate_sha256_fingerprint: nil, source_android_app_package_name: nil, source_web_site: nil, fields: nil, quota_user: nil, options: nil, &block)
|
248
|
+
command = make_simple_command(:get, 'v1/statements:list', options)
|
249
|
+
command.response_representation = Google::Apis::DigitalassetlinksV1::ListResponse::Representation
|
250
|
+
command.response_class = Google::Apis::DigitalassetlinksV1::ListResponse
|
251
|
+
command.query['relation'] = relation unless relation.nil?
|
252
|
+
command.query['source.androidApp.certificate.sha256Fingerprint'] = source_android_app_certificate_sha256_fingerprint unless source_android_app_certificate_sha256_fingerprint.nil?
|
253
|
+
command.query['source.androidApp.packageName'] = source_android_app_package_name unless source_android_app_package_name.nil?
|
254
|
+
command.query['source.web.site'] = source_web_site unless source_web_site.nil?
|
255
|
+
command.query['fields'] = fields unless fields.nil?
|
256
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
257
|
+
execute_or_queue_command(command, &block)
|
258
|
+
end
|
259
|
+
|
260
|
+
protected
|
261
|
+
|
262
|
+
def apply_command_defaults(command)
|
263
|
+
command.query['key'] = key unless key.nil?
|
264
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
265
|
+
end
|
266
|
+
end
|
267
|
+
end
|
268
|
+
end
|
269
|
+
end
|
metadata
ADDED
@@ -0,0 +1,76 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: google-apis-digitalassetlinks_v1
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Google LLC
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2021-01-08 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: google-apis-core
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0.1'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0.1'
|
27
|
+
description: This is the simple REST client for Digital Asset Links API V1. Simple
|
28
|
+
REST clients are Ruby client libraries that provide access to Google services via
|
29
|
+
their HTTP REST API endpoints. These libraries are generated and updated automatically
|
30
|
+
based on the discovery documents published by the service, and they handle most
|
31
|
+
concerns such as authentication, pagination, retry, timeouts, and logging. You can
|
32
|
+
use this client to access the Digital Asset Links API, but note that some services
|
33
|
+
may provide a separate modern client that is easier to use.
|
34
|
+
email: googleapis-packages@google.com
|
35
|
+
executables: []
|
36
|
+
extensions: []
|
37
|
+
extra_rdoc_files: []
|
38
|
+
files:
|
39
|
+
- ".yardopts"
|
40
|
+
- CHANGELOG.md
|
41
|
+
- LICENSE.md
|
42
|
+
- OVERVIEW.md
|
43
|
+
- lib/google-apis-digitalassetlinks_v1.rb
|
44
|
+
- lib/google/apis/digitalassetlinks_v1.rb
|
45
|
+
- lib/google/apis/digitalassetlinks_v1/classes.rb
|
46
|
+
- lib/google/apis/digitalassetlinks_v1/gem_version.rb
|
47
|
+
- lib/google/apis/digitalassetlinks_v1/representations.rb
|
48
|
+
- lib/google/apis/digitalassetlinks_v1/service.rb
|
49
|
+
homepage: https://github.com/google/google-api-ruby-client
|
50
|
+
licenses:
|
51
|
+
- Apache-2.0
|
52
|
+
metadata:
|
53
|
+
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
54
|
+
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-digitalassetlinks_v1/CHANGELOG.md
|
55
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-digitalassetlinks_v1/v0.1.0
|
56
|
+
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-digitalassetlinks_v1
|
57
|
+
post_install_message:
|
58
|
+
rdoc_options: []
|
59
|
+
require_paths:
|
60
|
+
- lib
|
61
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
62
|
+
requirements:
|
63
|
+
- - ">="
|
64
|
+
- !ruby/object:Gem::Version
|
65
|
+
version: '2.4'
|
66
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
67
|
+
requirements:
|
68
|
+
- - ">="
|
69
|
+
- !ruby/object:Gem::Version
|
70
|
+
version: '0'
|
71
|
+
requirements: []
|
72
|
+
rubygems_version: 3.1.4
|
73
|
+
signing_key:
|
74
|
+
specification_version: 4
|
75
|
+
summary: Simple REST client for Digital Asset Links API V1
|
76
|
+
test_files: []
|