Skip to content
This repository has been archived by the owner on Sep 16, 2023. It is now read-only.

Commit

Permalink
feat: added support for test cases and agent validation (#141)
Browse files Browse the repository at this point in the history
This PR was generated using Autosynth. 🌈

Synth log will be available here:
https://source.cloud.google.com/results/invocations/549c8707-14a7-4963-9d20-bbd5d5285b08/targets

- [ ] To automatically regenerate this PR, check this box.

PiperOrigin-RevId: 357800868
Source-Link: googleapis/googleapis@e8bc447
PiperOrigin-RevId: 357788001
Source-Link: googleapis/googleapis@2bea43c
PiperOrigin-RevId: 357757017
Source-Link: googleapis/googleapis@38d77ab
PiperOrigin-RevId: 356804449
Source-Link: googleapis/googleapis@6de7abe
PiperOrigin-RevId: 356624136
Source-Link: googleapis/googleapis@e28aa85
PiperOrigin-RevId: 356341083
Source-Link: googleapis/googleapis@8d8c008
PiperOrigin-RevId: 354553780
Source-Link: googleapis/googleapis@c71a9c4
PiperOrigin-RevId: 354550974
Source-Link: googleapis/googleapis@ed71e24
PiperOrigin-RevId: 353783208
Source-Link: googleapis/googleapis@6fa7194
PiperOrigin-RevId: 353683381
Source-Link: googleapis/googleapis@2e29020
PiperOrigin-RevId: 353075593
Source-Link: googleapis/googleapis@cb932c5
PiperOrigin-RevId: 352834280
Source-Link: googleapis/googleapis@f83715b

feat: Add new Experiment service 
feat: supports SentimentAnalysisResult in webhook request 
feat: Support transition route group coverage for Test Cases
fix: RunTestCase http template. PHP REST client lib can be generated 
chore: update gapic-generator-java to 0.0.20 
docs: generate sample code in the Java microgenerator 
docs: minor doc update on redact field in intent.proto and page.proto
docs: minor updates in wording
docs: test cases doc update
  • Loading branch information
yoshi-automation committed Feb 19, 2021
1 parent 5411cd0 commit a79149b
Show file tree
Hide file tree
Showing 390 changed files with 160,541 additions and 4,099 deletions.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,17 @@ public OperationCallSettings<RestoreAgentRequest, Empty, Struct> restoreAgentOpe
return ((AgentsStubSettings) getStubSettings()).restoreAgentOperationSettings();
}

/** Returns the object with the settings used for calls to validateAgent. */
public UnaryCallSettings<ValidateAgentRequest, AgentValidationResult> validateAgentSettings() {
return ((AgentsStubSettings) getStubSettings()).validateAgentSettings();
}

/** Returns the object with the settings used for calls to getAgentValidationResult. */
public UnaryCallSettings<GetAgentValidationResultRequest, AgentValidationResult>
getAgentValidationResultSettings() {
return ((AgentsStubSettings) getStubSettings()).getAgentValidationResultSettings();
}

public static final AgentsSettings create(AgentsStubSettings stub) throws IOException {
return new AgentsSettings.Builder(stub.toBuilder()).build();
}
Expand Down Expand Up @@ -264,6 +275,18 @@ public UnaryCallSettings.Builder<RestoreAgentRequest, Operation> restoreAgentSet
return getStubSettingsBuilder().restoreAgentOperationSettings();
}

/** Returns the builder for the settings used for calls to validateAgent. */
public UnaryCallSettings.Builder<ValidateAgentRequest, AgentValidationResult>
validateAgentSettings() {
return getStubSettingsBuilder().validateAgentSettings();
}

/** Returns the builder for the settings used for calls to getAgentValidationResult. */
public UnaryCallSettings.Builder<GetAgentValidationResultRequest, AgentValidationResult>
getAgentValidationResultSettings() {
return getStubSettingsBuilder().getAgentValidationResultSettings();
}

@Override
public AgentsSettings build() throws IOException {
return new AgentsSettings(this);
Expand Down
Loading

0 comments on commit a79149b

Please sign in to comment.