google-apis-dialogflow_v3 0.21.0 → 0.25.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +17 -0
- data/OVERVIEW.md +3 -3
- data/lib/google/apis/dialogflow_v3/classes.rb +744 -13
- data/lib/google/apis/dialogflow_v3/gem_version.rb +2 -2
- data/lib/google/apis/dialogflow_v3/representations.rb +319 -0
- data/lib/google/apis/dialogflow_v3/service.rb +225 -1
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: '09118ab82e6d3cf7dad8fca824febfa5f189397feabac663341cc1e927ac3d76'
|
4
|
+
data.tar.gz: 459a447023433ddf7ad22ceab3895d3bca07080940e25c689b47c8b0db1452d7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d16aaac8b6d135bb99c313913c62dd9b49ae05399164f75a21b8d364e53a79ed828d2d2123887c07fdb573c4ff34e3d721738213f64df4f73704a0a256024315
|
7
|
+
data.tar.gz: f0219e69611ab6f02a33d91dce5fa58fe7c16d6e4e0166e08fd1cf2ac0f97a8e62b272124af01a493a6e62cea2c745373953d9c288b3d0517140562a5dcf66b7
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,22 @@
|
|
1
1
|
# Release history for google-apis-dialogflow_v3
|
2
2
|
|
3
|
+
### v0.25.0 (2022-01-07)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20211231
|
6
|
+
* Unspecified changes
|
7
|
+
|
8
|
+
### v0.24.0 (2021-12-04)
|
9
|
+
|
10
|
+
* Regenerated from discovery document revision 20211201
|
11
|
+
|
12
|
+
### v0.23.0 (2021-10-28)
|
13
|
+
|
14
|
+
* Regenerated from discovery document revision 20211022
|
15
|
+
|
16
|
+
### v0.22.0 (2021-10-21)
|
17
|
+
|
18
|
+
* Regenerated from discovery document revision 20211015
|
19
|
+
|
3
20
|
### v0.21.0 (2021-09-01)
|
4
21
|
|
5
22
|
* Regenerated from discovery document revision 20210830
|
data/OVERVIEW.md
CHANGED
@@ -51,7 +51,7 @@ require "google/apis/dialogflow_v3"
|
|
51
51
|
client = Google::Apis::DialogflowV3::DialogflowService.new
|
52
52
|
|
53
53
|
# Authenticate calls
|
54
|
-
client.
|
54
|
+
client.authorization = # ... use the googleauth gem to create credentials
|
55
55
|
```
|
56
56
|
|
57
57
|
See the class reference docs for information on the methods you can call from a client.
|
@@ -60,8 +60,8 @@ See the class reference docs for information on the methods you can call from a
|
|
60
60
|
|
61
61
|
More detailed descriptions of the Google simple REST clients are available in two documents.
|
62
62
|
|
63
|
-
* The [Usage Guide](https://github.com/googleapis/google-api-ruby-client/blob/
|
64
|
-
* The [Auth Guide](https://github.com/googleapis/google-api-ruby-client/blob/
|
63
|
+
* The [Usage Guide](https://github.com/googleapis/google-api-ruby-client/blob/main/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/main/docs/auth-guide.md) discusses authentication in the client libraries, including API keys, OAuth 2.0, service accounts, and environment variables.
|
65
65
|
|
66
66
|
(Note: the above documents are written for the simple REST clients in general, and their examples may not reflect the Dialogflow service in particular.)
|
67
67
|
|