Skip to content

Commit 0ab7fb4

Browse files
yoshi-automationsduskis
authored andcommitted
Regenerate dialogflow client (googleapis#738)
1 parent dffa63e commit 0ab7fb4

File tree

48 files changed

+17754
-17358
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+17754
-17358
lines changed

clients/1.26.0/google-api-services-dialogflow/v2/com/google/api/services/dialogflow/v2/model/GoogleCloudDialogflowV2EntityType.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ public final class GoogleCloudDialogflowV2EntityType extends com.google.api.clie
4545
private java.lang.String displayName;
4646

4747
/**
48-
* Optional. The collection of entities associated with the entity type.
48+
* Optional. The collection of entity entries associated with the entity type.
4949
* The value may be {@code null}.
5050
*/
5151
@com.google.api.client.util.Key
@@ -101,15 +101,15 @@ public GoogleCloudDialogflowV2EntityType setDisplayName(java.lang.String display
101101
}
102102

103103
/**
104-
* Optional. The collection of entities associated with the entity type.
104+
* Optional. The collection of entity entries associated with the entity type.
105105
* @return value or {@code null} for none
106106
*/
107107
public java.util.List<GoogleCloudDialogflowV2EntityTypeEntity> getEntities() {
108108
return entities;
109109
}
110110

111111
/**
112-
* Optional. The collection of entities associated with the entity type.
112+
* Optional. The collection of entity entries associated with the entity type.
113113
* @param entities entities or {@code null} for none
114114
*/
115115
public GoogleCloudDialogflowV2EntityType setEntities(java.util.List<GoogleCloudDialogflowV2EntityTypeEntity> entities) {

clients/1.26.0/google-api-services-dialogflow/v2/com/google/api/services/dialogflow/v2/model/GoogleCloudDialogflowV2EntityTypeEntity.java

Lines changed: 49 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
package com.google.api.services.dialogflow.v2.model;
1818

1919
/**
20-
* Optional. Represents an entity.
20+
* An **entity entry** for an associated entity type.
2121
*
2222
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
2323
* transmitted over HTTP when working with the Dialogflow API. For a detailed explanation see:
@@ -30,34 +30,53 @@
3030
public final class GoogleCloudDialogflowV2EntityTypeEntity extends com.google.api.client.json.GenericJson {
3131

3232
/**
33-
* Required. A collection of synonyms. For `KIND_LIST` entity types this must contain exactly one
34-
* synonym equal to `value`.
33+
* Required. A collection of value synonyms. For example, if the entity type is *vegetable*, and
34+
* `value` is *scallions*, a synonym could be *green onions*.
35+
*
36+
* For `KIND_LIST` entity types:
37+
*
38+
* * This collection must contain exactly one synonym equal to `value`.
3539
* The value may be {@code null}.
3640
*/
3741
@com.google.api.client.util.Key
3842
private java.util.List<java.lang.String> synonyms;
3943

4044
/**
41-
* Required. For `KIND_MAP` entity types: A canonical name to be used in place of synonyms. For
42-
* `KIND_LIST` entity types: A string that can contain references to other entity types (with or
43-
* without aliases).
45+
* Required. The primary value associated with this entity entry. For example, if the entity type
46+
* is *vegetable*, the value could be *scallions*.
47+
*
48+
* For `KIND_MAP` entity types:
49+
*
50+
* * A canonical value to be used in place of synonyms.
51+
*
52+
* For `KIND_LIST` entity types:
53+
*
54+
* * A string that can contain references to other entity types (with or without aliases).
4455
* The value may be {@code null}.
4556
*/
4657
@com.google.api.client.util.Key
4758
private java.lang.String value;
4859

4960
/**
50-
* Required. A collection of synonyms. For `KIND_LIST` entity types this must contain exactly one
51-
* synonym equal to `value`.
61+
* Required. A collection of value synonyms. For example, if the entity type is *vegetable*, and
62+
* `value` is *scallions*, a synonym could be *green onions*.
63+
*
64+
* For `KIND_LIST` entity types:
65+
*
66+
* * This collection must contain exactly one synonym equal to `value`.
5267
* @return value or {@code null} for none
5368
*/
5469
public java.util.List<java.lang.String> getSynonyms() {
5570
return synonyms;
5671
}
5772

5873
/**
59-
* Required. A collection of synonyms. For `KIND_LIST` entity types this must contain exactly one
60-
* synonym equal to `value`.
74+
* Required. A collection of value synonyms. For example, if the entity type is *vegetable*, and
75+
* `value` is *scallions*, a synonym could be *green onions*.
76+
*
77+
* For `KIND_LIST` entity types:
78+
*
79+
* * This collection must contain exactly one synonym equal to `value`.
6180
* @param synonyms synonyms or {@code null} for none
6281
*/
6382
public GoogleCloudDialogflowV2EntityTypeEntity setSynonyms(java.util.List<java.lang.String> synonyms) {
@@ -66,19 +85,33 @@ public GoogleCloudDialogflowV2EntityTypeEntity setSynonyms(java.util.List<java.l
6685
}
6786

6887
/**
69-
* Required. For `KIND_MAP` entity types: A canonical name to be used in place of synonyms. For
70-
* `KIND_LIST` entity types: A string that can contain references to other entity types (with or
71-
* without aliases).
88+
* Required. The primary value associated with this entity entry. For example, if the entity type
89+
* is *vegetable*, the value could be *scallions*.
90+
*
91+
* For `KIND_MAP` entity types:
92+
*
93+
* * A canonical value to be used in place of synonyms.
94+
*
95+
* For `KIND_LIST` entity types:
96+
*
97+
* * A string that can contain references to other entity types (with or without aliases).
7298
* @return value or {@code null} for none
7399
*/
74100
public java.lang.String getValue() {
75101
return value;
76102
}
77103

78104
/**
79-
* Required. For `KIND_MAP` entity types: A canonical name to be used in place of synonyms. For
80-
* `KIND_LIST` entity types: A string that can contain references to other entity types (with or
81-
* without aliases).
105+
* Required. The primary value associated with this entity entry. For example, if the entity type
106+
* is *vegetable*, the value could be *scallions*.
107+
*
108+
* For `KIND_MAP` entity types:
109+
*
110+
* * A canonical value to be used in place of synonyms.
111+
*
112+
* For `KIND_LIST` entity types:
113+
*
114+
* * A string that can contain references to other entity types (with or without aliases).
82115
* @param value value or {@code null} for none
83116
*/
84117
public GoogleCloudDialogflowV2EntityTypeEntity setValue(java.lang.String value) {

clients/1.26.0/google-api-services-dialogflow/v2/com/google/api/services/dialogflow/v2/model/GoogleCloudDialogflowV2EventInput.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
/**
2020
* Events allow for matching intents by event name instead of the natural language input. For
2121
* instance, input `` can trigger a personalized welcome response. The parameter `name` may be used
22-
* by the agent in the response: `Hello #welcome_event.name! What can I do for you today?`.
22+
* by the agent in the response: `"Hello #welcome_event.name! What can I do for you today?"`.
2323
*
2424
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
2525
* transmitted over HTTP when working with the Dialogflow API. For a detailed explanation see:

clients/1.26.0/google-api-services-dialogflow/v2/com/google/api/services/dialogflow/v2/model/GoogleCloudDialogflowV2beta1EntityType.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ public final class GoogleCloudDialogflowV2beta1EntityType extends com.google.api
4545
private java.lang.String displayName;
4646

4747
/**
48-
* Optional. The collection of entities associated with the entity type.
48+
* Optional. The collection of entity entries associated with the entity type.
4949
* The value may be {@code null}.
5050
*/
5151
@com.google.api.client.util.Key
@@ -101,15 +101,15 @@ public GoogleCloudDialogflowV2beta1EntityType setDisplayName(java.lang.String di
101101
}
102102

103103
/**
104-
* Optional. The collection of entities associated with the entity type.
104+
* Optional. The collection of entity entries associated with the entity type.
105105
* @return value or {@code null} for none
106106
*/
107107
public java.util.List<GoogleCloudDialogflowV2beta1EntityTypeEntity> getEntities() {
108108
return entities;
109109
}
110110

111111
/**
112-
* Optional. The collection of entities associated with the entity type.
112+
* Optional. The collection of entity entries associated with the entity type.
113113
* @param entities entities or {@code null} for none
114114
*/
115115
public GoogleCloudDialogflowV2beta1EntityType setEntities(java.util.List<GoogleCloudDialogflowV2beta1EntityTypeEntity> entities) {

clients/1.26.0/google-api-services-dialogflow/v2/com/google/api/services/dialogflow/v2/model/GoogleCloudDialogflowV2beta1EntityTypeEntity.java

Lines changed: 49 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
package com.google.api.services.dialogflow.v2.model;
1818

1919
/**
20-
* Optional. Represents an entity.
20+
* An **entity entry** for an associated entity type.
2121
*
2222
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
2323
* transmitted over HTTP when working with the Dialogflow API. For a detailed explanation see:
@@ -30,34 +30,53 @@
3030
public final class GoogleCloudDialogflowV2beta1EntityTypeEntity extends com.google.api.client.json.GenericJson {
3131

3232
/**
33-
* Required. A collection of synonyms. For `KIND_LIST` entity types this must contain exactly one
34-
* synonym equal to `value`.
33+
* Required. A collection of value synonyms. For example, if the entity type is *vegetable*, and
34+
* `value` is *scallions*, a synonym could be *green onions*.
35+
*
36+
* For `KIND_LIST` entity types:
37+
*
38+
* * This collection must contain exactly one synonym equal to `value`.
3539
* The value may be {@code null}.
3640
*/
3741
@com.google.api.client.util.Key
3842
private java.util.List<java.lang.String> synonyms;
3943

4044
/**
41-
* Required. For `KIND_MAP` entity types: A canonical name to be used in place of synonyms. For
42-
* `KIND_LIST` entity types: A string that can contain references to other entity types (with or
43-
* without aliases).
45+
* Required. The primary value associated with this entity entry. For example, if the entity type
46+
* is *vegetable*, the value could be *scallions*.
47+
*
48+
* For `KIND_MAP` entity types:
49+
*
50+
* * A canonical value to be used in place of synonyms.
51+
*
52+
* For `KIND_LIST` entity types:
53+
*
54+
* * A string that can contain references to other entity types (with or without aliases).
4455
* The value may be {@code null}.
4556
*/
4657
@com.google.api.client.util.Key
4758
private java.lang.String value;
4859

4960
/**
50-
* Required. A collection of synonyms. For `KIND_LIST` entity types this must contain exactly one
51-
* synonym equal to `value`.
61+
* Required. A collection of value synonyms. For example, if the entity type is *vegetable*, and
62+
* `value` is *scallions*, a synonym could be *green onions*.
63+
*
64+
* For `KIND_LIST` entity types:
65+
*
66+
* * This collection must contain exactly one synonym equal to `value`.
5267
* @return value or {@code null} for none
5368
*/
5469
public java.util.List<java.lang.String> getSynonyms() {
5570
return synonyms;
5671
}
5772

5873
/**
59-
* Required. A collection of synonyms. For `KIND_LIST` entity types this must contain exactly one
60-
* synonym equal to `value`.
74+
* Required. A collection of value synonyms. For example, if the entity type is *vegetable*, and
75+
* `value` is *scallions*, a synonym could be *green onions*.
76+
*
77+
* For `KIND_LIST` entity types:
78+
*
79+
* * This collection must contain exactly one synonym equal to `value`.
6180
* @param synonyms synonyms or {@code null} for none
6281
*/
6382
public GoogleCloudDialogflowV2beta1EntityTypeEntity setSynonyms(java.util.List<java.lang.String> synonyms) {
@@ -66,19 +85,33 @@ public GoogleCloudDialogflowV2beta1EntityTypeEntity setSynonyms(java.util.List<j
6685
}
6786

6887
/**
69-
* Required. For `KIND_MAP` entity types: A canonical name to be used in place of synonyms. For
70-
* `KIND_LIST` entity types: A string that can contain references to other entity types (with or
71-
* without aliases).
88+
* Required. The primary value associated with this entity entry. For example, if the entity type
89+
* is *vegetable*, the value could be *scallions*.
90+
*
91+
* For `KIND_MAP` entity types:
92+
*
93+
* * A canonical value to be used in place of synonyms.
94+
*
95+
* For `KIND_LIST` entity types:
96+
*
97+
* * A string that can contain references to other entity types (with or without aliases).
7298
* @return value or {@code null} for none
7399
*/
74100
public java.lang.String getValue() {
75101
return value;
76102
}
77103

78104
/**
79-
* Required. For `KIND_MAP` entity types: A canonical name to be used in place of synonyms. For
80-
* `KIND_LIST` entity types: A string that can contain references to other entity types (with or
81-
* without aliases).
105+
* Required. The primary value associated with this entity entry. For example, if the entity type
106+
* is *vegetable*, the value could be *scallions*.
107+
*
108+
* For `KIND_MAP` entity types:
109+
*
110+
* * A canonical value to be used in place of synonyms.
111+
*
112+
* For `KIND_LIST` entity types:
113+
*
114+
* * A string that can contain references to other entity types (with or without aliases).
82115
* @param value value or {@code null} for none
83116
*/
84117
public GoogleCloudDialogflowV2beta1EntityTypeEntity setValue(java.lang.String value) {

clients/1.26.0/google-api-services-dialogflow/v2/com/google/api/services/dialogflow/v2/model/GoogleCloudDialogflowV2beta1EventInput.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
/**
2020
* Events allow for matching intents by event name instead of the natural language input. For
2121
* instance, input `` can trigger a personalized welcome response. The parameter `name` may be used
22-
* by the agent in the response: `Hello #welcome_event.name! What can I do for you today?`.
22+
* by the agent in the response: `"Hello #welcome_event.name! What can I do for you today?"`.
2323
*
2424
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
2525
* transmitted over HTTP when working with the Dialogflow API. For a detailed explanation see:

clients/1.26.0/google-api-services-dialogflow/v2/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
<groupId>com.google.apis</groupId>
1010
<artifactId>google-api-services-dialogflow</artifactId>
11-
<version>v2-rev20190115-1.26.0</version>
12-
<name>Dialogflow API v2-rev20190115-1.26.0</name>
11+
<version>v2-rev20190122-1.26.0</version>
12+
<name>Dialogflow API v2-rev20190122-1.26.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

0 commit comments

Comments
 (0)