Skip to content

Commit e07d4b8

Browse files
AUTO GENERATED ELIXIR GOOGLEAPIS PROTOBUF (#1005)
Co-authored-by: Hany Rock <rudebono@gmail.com>
1 parent 1b69228 commit e07d4b8

11 files changed

+66
-8
lines changed

lib/google/cloud/dialogflow/cx/v3beta1/agent.pb.ex

+12
Original file line numberDiff line numberDiff line change
@@ -179,6 +179,18 @@ defmodule Google.Cloud.Dialogflow.Cx.V3beta1.Agent do
179179
type: Google.Cloud.Dialogflow.Cx.V3beta1.Agent.ClientCertificateSettings,
180180
json_name: "clientCertificateSettings",
181181
deprecated: false
182+
183+
field :satisfies_pzs, 45,
184+
proto3_optional: true,
185+
type: :bool,
186+
json_name: "satisfiesPzs",
187+
deprecated: false
188+
189+
field :satisfies_pzi, 46,
190+
proto3_optional: true,
191+
type: :bool,
192+
json_name: "satisfiesPzi",
193+
deprecated: false
182194
end
183195

184196
defmodule Google.Cloud.Dialogflow.Cx.V3beta1.ListAgentsRequest do

lib/google/cloud/dialogflow/cx/v3beta1/conversation_history.pb.ex

+18
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,15 @@ defmodule Google.Cloud.Dialogflow.Cx.V3beta1.Conversation.Interaction.MissingTra
106106
field :score, 2, type: :float
107107
end
108108

109+
defmodule Google.Cloud.Dialogflow.Cx.V3beta1.Conversation.Interaction.StepMetrics do
110+
@moduledoc false
111+
112+
use Protobuf, protoc_gen_elixir_version: "0.14.1", syntax: :proto3
113+
114+
field :name, 1, type: :string
115+
field :latency, 2, type: Google.Protobuf.Duration
116+
end
117+
109118
defmodule Google.Cloud.Dialogflow.Cx.V3beta1.Conversation.Interaction do
110119
@moduledoc false
111120

@@ -123,9 +132,18 @@ defmodule Google.Cloud.Dialogflow.Cx.V3beta1.Conversation.Interaction do
123132
field :response_utterances, 5, type: :string, json_name: "responseUtterances"
124133
field :create_time, 6, type: Google.Protobuf.Timestamp, json_name: "createTime"
125134

135+
field :answer_feedback, 7,
136+
type: Google.Cloud.Dialogflow.Cx.V3beta1.AnswerFeedback,
137+
json_name: "answerFeedback"
138+
126139
field :missing_transition, 8,
127140
type: Google.Cloud.Dialogflow.Cx.V3beta1.Conversation.Interaction.MissingTransition,
128141
json_name: "missingTransition"
142+
143+
field :step_metrics, 9,
144+
repeated: true,
145+
type: Google.Cloud.Dialogflow.Cx.V3beta1.Conversation.Interaction.StepMetrics,
146+
json_name: "stepMetrics"
129147
end
130148

131149
defmodule Google.Cloud.Dialogflow.Cx.V3beta1.Conversation.FlowVersionsEntry do

lib/google/cloud/dialogflow/cx/v3beta1/data_store_connection.pb.ex

+15
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,16 @@ defmodule Google.Cloud.Dialogflow.Cx.V3beta1.DataStoreType do
99
field :STRUCTURED, 3
1010
end
1111

12+
defmodule Google.Cloud.Dialogflow.Cx.V3beta1.DocumentProcessingMode do
13+
@moduledoc false
14+
15+
use Protobuf, enum: true, protoc_gen_elixir_version: "0.14.1", syntax: :proto3
16+
17+
field :DOCUMENT_PROCESSING_MODE_UNSPECIFIED, 0
18+
field :DOCUMENTS, 1
19+
field :CHUNKS, 2
20+
end
21+
1222
defmodule Google.Cloud.Dialogflow.Cx.V3beta1.DataStoreConnectionSignals.GroundingSignals.GroundingDecision do
1323
@moduledoc false
1424

@@ -64,6 +74,11 @@ defmodule Google.Cloud.Dialogflow.Cx.V3beta1.DataStoreConnection do
6474
enum: true
6575

6676
field :data_store, 2, type: :string, json_name: "dataStore"
77+
78+
field :document_processing_mode, 4,
79+
type: Google.Cloud.Dialogflow.Cx.V3beta1.DocumentProcessingMode,
80+
json_name: "documentProcessingMode",
81+
enum: true
6782
end
6883

6984
defmodule Google.Cloud.Dialogflow.Cx.V3beta1.DataStoreConnectionSignals.RewriterModelCallSignals do

lib/google/cloud/dialogflow/cx/v3beta1/example.pb.ex

+3
Original file line numberDiff line numberDiff line change
@@ -203,6 +203,7 @@ defmodule Google.Cloud.Dialogflow.Cx.V3beta1.ToolUse do
203203
use Protobuf, protoc_gen_elixir_version: "0.14.1", syntax: :proto3
204204

205205
field :tool, 1, type: :string, deprecated: false
206+
field :display_name, 8, type: :string, json_name: "displayName", deprecated: false
206207
field :action, 2, type: :string, deprecated: false
207208

208209
field :input_action_parameters, 5,
@@ -222,6 +223,7 @@ defmodule Google.Cloud.Dialogflow.Cx.V3beta1.PlaybookInvocation do
222223
use Protobuf, protoc_gen_elixir_version: "0.14.1", syntax: :proto3
223224

224225
field :playbook, 1, type: :string, deprecated: false
226+
field :display_name, 5, type: :string, json_name: "displayName", deprecated: false
225227

226228
field :playbook_input, 2,
227229
type: Google.Cloud.Dialogflow.Cx.V3beta1.PlaybookInput,
@@ -246,6 +248,7 @@ defmodule Google.Cloud.Dialogflow.Cx.V3beta1.FlowInvocation do
246248
use Protobuf, protoc_gen_elixir_version: "0.14.1", syntax: :proto3
247249

248250
field :flow, 1, type: :string, deprecated: false
251+
field :display_name, 7, type: :string, json_name: "displayName", deprecated: false
249252

250253
field :input_action_parameters, 5,
251254
type: Google.Protobuf.Struct,

lib/google/cloud/dialogflow/cx/v3beta1/intent.pb.ex

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ defmodule Google.Cloud.Dialogflow.Cx.V3beta1.Intent.TrainingPhrase do
4747

4848
use Protobuf, protoc_gen_elixir_version: "0.14.1", syntax: :proto3
4949

50-
field :id, 1, type: :string
50+
field :id, 1, type: :string, deprecated: false
5151

5252
field :parts, 2,
5353
repeated: true,

lib/google/cloud/dialogflow/cx/v3beta1/playbook.pb.ex

+6
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ defmodule Google.Cloud.Dialogflow.Cx.V3beta1.Playbook.Instruction do
6767

6868
use Protobuf, protoc_gen_elixir_version: "0.14.1", syntax: :proto3
6969

70+
field :guidelines, 1, type: :string
7071
field :steps, 2, repeated: true, type: Google.Cloud.Dialogflow.Cx.V3beta1.Playbook.Step
7172
end
7273

@@ -126,6 +127,11 @@ defmodule Google.Cloud.Dialogflow.Cx.V3beta1.Playbook do
126127
type: Google.Cloud.Dialogflow.Cx.V3beta1.LlmModelSettings,
127128
json_name: "llmModelSettings",
128129
deprecated: false
130+
131+
field :speech_settings, 20,
132+
type: Google.Cloud.Dialogflow.Cx.V3beta1.AdvancedSettings.SpeechSettings,
133+
json_name: "speechSettings",
134+
deprecated: false
129135
end
130136

131137
defmodule Google.Cloud.Dialogflow.Cx.V3beta1.CreatePlaybookVersionRequest do

lib/google/cloud/dialogflow/cx/v3beta1/session.pb.ex

+1-1
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,7 @@ defmodule Google.Cloud.Dialogflow.Cx.V3beta1.QueryParameters do
357357
field :populate_data_store_connection_signals, 25,
358358
type: :bool,
359359
json_name: "populateDataStoreConnectionSignals",
360-
deprecated: false
360+
deprecated: true
361361
end
362362

363363
defmodule Google.Cloud.Dialogflow.Cx.V3beta1.SearchConfig do

lib/google/cloud/modelarmor/v1/service.pb.ex

+4-2
Original file line numberDiff line numberDiff line change
@@ -247,6 +247,7 @@ defmodule Google.Cloud.Modelarmor.V1.FloorSetting do
247247
deprecated: false
248248

249249
field :enable_floor_setting_enforcement, 5,
250+
proto3_optional: true,
250251
type: :bool,
251252
json_name: "enableFloorSettingEnforcement",
252253
deprecated: false
@@ -592,9 +593,9 @@ defmodule Google.Cloud.Modelarmor.V1.FilterResult do
592593
json_name: "maliciousUriFilterResult",
593594
oneof: 0
594595

595-
field :csam_filter_filter_result, 5,
596+
field :csam_filter_result, 5,
596597
type: Google.Cloud.Modelarmor.V1.CsamFilterResult,
597-
json_name: "csamFilterFilterResult",
598+
json_name: "csamFilterResult",
598599
oneof: 0
599600

600601
field :virus_scan_filter_result, 6,
@@ -760,6 +761,7 @@ defmodule Google.Cloud.Modelarmor.V1.SdpDeidentifyResult do
760761

761762
field :data, 4, type: Google.Cloud.Modelarmor.V1.DataItem
762763
field :transformed_bytes, 5, type: :int64, json_name: "transformedBytes"
764+
field :info_types, 6, repeated: true, type: :string, json_name: "infoTypes"
763765
end
764766

765767
defmodule Google.Cloud.Modelarmor.V1.SdpFinding.SdpFindingLocation do

lib/google/cloud/sql/v1/cloud_sql_connect.pb.ex

+2-2
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,8 @@ defmodule Google.Cloud.Sql.V1.GenerateEphemeralCertRequest do
5959

6060
field :instance, 1, type: :string
6161
field :project, 2, type: :string
62-
field :public_key, 3, type: :string, json_name: "publicKey"
63-
field :access_token, 4, type: :string, json_name: "accessToken", deprecated: false
62+
field :public_key, 3, type: :string
63+
field :access_token, 4, type: :string, deprecated: false
6464
field :read_time, 7, type: Google.Protobuf.Timestamp, json_name: "readTime", deprecated: false
6565

6666
field :valid_duration, 12,

lib/google/cloud/sql/v1/cloud_sql_instances.pb.ex

+2-2
Original file line numberDiff line numberDiff line change
@@ -597,8 +597,8 @@ defmodule Google.Cloud.Sql.V1.SslCertsCreateEphemeralRequest do
597597

598598
use Protobuf, protoc_gen_elixir_version: "0.14.1", syntax: :proto3
599599

600-
field :public_key, 1, type: :string, json_name: "publicKey"
601-
field :access_token, 2, type: :string, json_name: "accessToken"
600+
field :public_key, 1, type: :string
601+
field :access_token, 2, type: :string
602602
end
603603

604604
defmodule Google.Cloud.Sql.V1.InstancesImportRequest do

lib/google/spanner/v1/result_set.pb.ex

+2
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ defmodule Google.Spanner.V1.PartialResultSet do
2828
type: Google.Spanner.V1.MultiplexedSessionPrecommitToken,
2929
json_name: "precommitToken",
3030
deprecated: false
31+
32+
field :last, 9, type: :bool, deprecated: false
3133
end
3234

3335
defmodule Google.Spanner.V1.ResultSetMetadata do

0 commit comments

Comments
 (0)