Skip to content

Commit

Permalink
chore: regenerate synth.metadata (#510)
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshi-automation authored and bcoe committed Jan 27, 2020
1 parent b608f4c commit 4cbf8f1
Show file tree
Hide file tree
Showing 62 changed files with 740 additions and 220 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -174,14 +174,11 @@ service Agents {

// Represents a conversational agent.
message Agent {
// This annotation designates that Agent is a resource, with
// the provided pattern. It's a singleton pattern, so there's no name
// field, but the resource name can still be used as a parent for its
// child resources.
option (google.api.resource) = {
type: "dialogflow.googleapis.com/Agent"
pattern: "projects/{project}/agent"
};

// Match mode determines how intents are detected from user queries.
enum MatchMode {
// Not specified.
Expand All @@ -192,7 +189,7 @@ message Agent {
MATCH_MODE_HYBRID = 1;

// Can be used for agents with a large number of examples in intents,
// especially the ones using @sys.any or very large developer entities.
// especially the ones using @sys.any or very large custom entities.
MATCH_MODE_ML_ONLY = 2;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,11 @@ option objc_class_prefix = "DF";
// data types such as date, time, currency, and so on. A system entity is
// represented by the `EntityType` type.
//
// * **Developer** - entities that are defined by you that represent
// * **Custom** - entities that are defined by you that represent
// actionable data that is meaningful to your application. For example,
// you could define a `pizza.sauce` entity for red or white pizza sauce,
// a `pizza.cheese` entity for the different types of cheese on a pizza,
// a `pizza.topping` entity for different toppings, and so on. A developer
// a `pizza.topping` entity for different toppings, and so on. A custom
// entity is represented by the `EntityType` type.
//
// * **User** - entities that are built for an individual user such as
Expand Down Expand Up @@ -211,7 +211,7 @@ message EntityType {
//
// For `KIND_MAP` entity types:
//
// * A canonical value to be used in place of synonyms.
// * A reference value to be used in place of synonyms.
//
// For `KIND_LIST` entity types:
//
Expand All @@ -234,11 +234,11 @@ message EntityType {
// Not specified. This value should be never used.
KIND_UNSPECIFIED = 0;

// Map entity types allow mapping of a group of synonyms to a canonical
// Map entity types allow mapping of a group of synonyms to a reference
// value.
KIND_MAP = 1;

// List entity types contain a set of entries that do not map to canonical
// List entity types contain a set of entries that do not map to reference
// values. However, list entity types can contain references to other entity
// types (with or without aliases).
KIND_LIST = 2;
Expand Down Expand Up @@ -515,7 +515,7 @@ message BatchDeleteEntitiesRequest {
}
];

// Required. The canonical `values` of the entities to delete. Note that
// Required. The reference `values` of the entities to delete. Note that
// these are not fully-qualified names, i.e. they don't start with
// `projects/<Project ID>`.
repeated string entity_values = 2 [(google.api.field_behavior) = REQUIRED];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -123,8 +123,8 @@ service SessionEntityTypes {

// Represents a session entity type.
//
// Extends or replaces a developer entity type at the user session level (we
// refer to the entity types defined at the agent level as "developer entity
// Extends or replaces a custom entity type at the user session level (we
// refer to the entity types defined at the agent level as "custom entity
// types").
//
// Note: session entity types apply to all queries, regardless of the language.
Expand All @@ -140,17 +140,17 @@ message SessionEntityType {
ENTITY_OVERRIDE_MODE_UNSPECIFIED = 0;

// The collection of session entities overrides the collection of entities
// in the corresponding developer entity type.
// in the corresponding custom entity type.
ENTITY_OVERRIDE_MODE_OVERRIDE = 1;

// The collection of session entities extends the collection of entities in
// the corresponding developer entity type.
// the corresponding custom entity type.
//
// Note: Even in this override mode calls to `ListSessionEntityTypes`,
// `GetSessionEntityType`, `CreateSessionEntityType` and
// `UpdateSessionEntityType` only return the additional entities added in
// this session entity type. If you want to get the supplemented list,
// please call [EntityTypes.GetEntityType][google.cloud.dialogflow.v2.EntityTypes.GetEntityType] on the developer entity type
// please call [EntityTypes.GetEntityType][google.cloud.dialogflow.v2.EntityTypes.GetEntityType] on the custom entity type
// and merge.
ENTITY_OVERRIDE_MODE_SUPPLEMENT = 2;
}
Expand All @@ -164,7 +164,7 @@ message SessionEntityType {
string name = 1 [(google.api.field_behavior) = REQUIRED];

// Required. Indicates whether the additional data should override or
// supplement the developer entity type definition.
// supplement the custom entity type definition.
EntityOverrideMode entity_override_mode = 2 [(google.api.field_behavior) = REQUIRED];

// Required. The collection of entities associated with this session entity
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ message Agent {
MATCH_MODE_HYBRID = 1;

// Can be used for agents with a large number of examples in intents,
// especially the ones using @sys.any or very large developer entities.
// especially the ones using @sys.any or very large custom entities.
MATCH_MODE_ML_ONLY = 2;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ syntax = "proto3";
package google.cloud.dialogflow.v2beta1;

import "google/api/annotations.proto";
import "google/api/field_behavior.proto";
import "google/cloud/dialogflow/v2beta1/gcs.proto";
import "google/longrunning/operations.proto";
import "google/protobuf/empty.proto";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,11 @@ option objc_class_prefix = "DF";
// data types such as date, time, currency, and so on. A system entity is
// represented by the `EntityType` type.
//
// * **Developer** - entities that are defined by you that represent
// * **Custom** - entities that are defined by you that represent
// actionable data that is meaningful to your application. For example,
// you could define a `pizza.sauce` entity for red or white pizza sauce,
// a `pizza.cheese` entity for the different types of cheese on a pizza,
// a `pizza.topping` entity for different toppings, and so on. A developer
// a `pizza.topping` entity for different toppings, and so on. A custom
// entity is represented by the `EntityType` type.
//
// * **User** - entities that are built for an individual user such as
Expand Down Expand Up @@ -206,7 +206,7 @@ message EntityType {
//
// For `KIND_MAP` entity types:
//
// * A canonical value to be used in place of synonyms.
// * A reference value to be used in place of synonyms.
//
// For `KIND_LIST` entity types:
//
Expand All @@ -229,11 +229,11 @@ message EntityType {
// Not specified. This value should be never used.
KIND_UNSPECIFIED = 0;

// Map entity types allow mapping of a group of synonyms to a canonical
// Map entity types allow mapping of a group of synonyms to a reference
// value.
KIND_MAP = 1;

// List entity types contain a set of entries that do not map to canonical
// List entity types contain a set of entries that do not map to reference
// values. However, list entity types can contain references to other entity
// types (with or without aliases).
KIND_LIST = 2;
Expand Down Expand Up @@ -465,7 +465,7 @@ message BatchDeleteEntitiesRequest {
// `projects/<Project ID>/agent/entityTypes/<Entity Type ID>`.
string parent = 1;

// Required. The canonical `values` of the entities to delete. Note that
// Required. The reference `values` of the entities to delete. Note that
// these are not fully-qualified names, i.e. they don't start with
// `projects/<Project ID>`.
repeated string entity_values = 2;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -168,8 +168,8 @@ service SessionEntityTypes {

// Represents a session entity type.
//
// Extends or replaces a developer entity type at the user session level (we
// refer to the entity types defined at the agent level as "developer entity
// Extends or replaces a custom entity type at the user session level (we
// refer to the entity types defined at the agent level as "custom entity
// types").
//
// Note: session entity types apply to all queries, regardless of the language.
Expand All @@ -180,17 +180,17 @@ message SessionEntityType {
ENTITY_OVERRIDE_MODE_UNSPECIFIED = 0;

// The collection of session entities overrides the collection of entities
// in the corresponding developer entity type.
// in the corresponding custom entity type.
ENTITY_OVERRIDE_MODE_OVERRIDE = 1;

// The collection of session entities extends the collection of entities in
// the corresponding developer entity type.
// the corresponding custom entity type.
//
// Note: Even in this override mode calls to `ListSessionEntityTypes`,
// `GetSessionEntityType`, `CreateSessionEntityType` and
// `UpdateSessionEntityType` only return the additional entities added in
// this session entity type. If you want to get the supplemented list,
// please call [EntityTypes.GetEntityType][google.cloud.dialogflow.v2beta1.EntityTypes.GetEntityType] on the developer entity type
// please call [EntityTypes.GetEntityType][google.cloud.dialogflow.v2beta1.EntityTypes.GetEntityType] on the custom entity type
// and merge.
ENTITY_OVERRIDE_MODE_SUPPLEMENT = 2;
}
Expand All @@ -208,7 +208,7 @@ message SessionEntityType {
string name = 1;

// Required. Indicates whether the additional data should override or
// supplement the developer entity type definition.
// supplement the custom entity type definition.
EntityOverrideMode entity_override_mode = 2;

// Required. The collection of entities associated with this session entity
Expand Down
2 changes: 1 addition & 1 deletion packages/google-cloud-dialogflow/src/browser.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2019 Google LLC
// Copyright 2020 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion packages/google-cloud-dialogflow/src/v2/agents_client.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2019 Google LLC
// Copyright 2020 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion packages/google-cloud-dialogflow/src/v2/contexts_client.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2019 Google LLC
// Copyright 2020 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2019 Google LLC
// Copyright 2020 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -139,7 +139,7 @@ const Agent = {

/**
* Can be used for agents with a large number of examples in intents,
* especially the ones using @sys.any or very large developer entities.
* especially the ones using @sys.any or very large custom entities.
*/
MATCH_MODE_ML_ONLY: 2
},
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2019 Google LLC
// Copyright 2020 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2019 Google LLC
// Copyright 2020 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2019 Google LLC
// Copyright 2020 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -65,7 +65,7 @@ const EntityType = {
*
* For `KIND_MAP` entity types:
*
* * A canonical value to be used in place of synonyms.
* * A reference value to be used in place of synonyms.
*
* For `KIND_LIST` entity types:
*
Expand Down Expand Up @@ -125,13 +125,13 @@ const EntityType = {
KIND_UNSPECIFIED: 0,

/**
* Map entity types allow mapping of a group of synonyms to a canonical
* Map entity types allow mapping of a group of synonyms to a reference
* value.
*/
KIND_MAP: 1,

/**
* List entity types contain a set of entries that do not map to canonical
* List entity types contain a set of entries that do not map to reference
* values. However, list entity types can contain references to other entity
* types (with or without aliases).
*/
Expand Down Expand Up @@ -434,7 +434,7 @@ const BatchUpdateEntitiesRequest = {
* `projects/<Project ID>/agent/entityTypes/<Entity Type ID>`.
*
* @property {string[]} entityValues
* Required. The canonical `values` of the entities to delete. Note that
* Required. The reference `values` of the entities to delete. Note that
* these are not fully-qualified names, i.e. they don't start with
* `projects/<Project ID>`.
*
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2019 Google LLC
// Copyright 2020 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2019 Google LLC
// Copyright 2020 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2019 Google LLC
// Copyright 2020 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
Expand All @@ -18,8 +18,8 @@
/**
* Represents a session entity type.
*
* Extends or replaces a developer entity type at the user session level (we
* refer to the entity types defined at the agent level as "developer entity
* Extends or replaces a custom entity type at the user session level (we
* refer to the entity types defined at the agent level as "custom entity
* types").
*
* Note: session entity types apply to all queries, regardless of the language.
Expand All @@ -34,7 +34,7 @@
*
* @property {number} entityOverrideMode
* Required. Indicates whether the additional data should override or
* supplement the developer entity type definition.
* supplement the custom entity type definition.
*
* The number should be among the values of [EntityOverrideMode]{@link google.cloud.dialogflow.v2.EntityOverrideMode}
*
Expand Down Expand Up @@ -66,19 +66,19 @@ const SessionEntityType = {

/**
* The collection of session entities overrides the collection of entities
* in the corresponding developer entity type.
* in the corresponding custom entity type.
*/
ENTITY_OVERRIDE_MODE_OVERRIDE: 1,

/**
* The collection of session entities extends the collection of entities in
* the corresponding developer entity type.
* the corresponding custom entity type.
*
* Note: Even in this override mode calls to `ListSessionEntityTypes`,
* `GetSessionEntityType`, `CreateSessionEntityType` and
* `UpdateSessionEntityType` only return the additional entities added in
* this session entity type. If you want to get the supplemented list,
* please call EntityTypes.GetEntityType on the developer entity type
* please call EntityTypes.GetEntityType on the custom entity type
* and merge.
*/
ENTITY_OVERRIDE_MODE_SUPPLEMENT: 2
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2019 Google LLC
// Copyright 2020 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2019 Google LLC
// Copyright 2020 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2019 Google LLC
// Copyright 2020 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2019 Google LLC
// Copyright 2020 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2019 Google LLC
// Copyright 2020 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2019 Google LLC
// Copyright 2020 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
Expand Down
Loading

0 comments on commit 4cbf8f1

Please sign in to comment.