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

Commit

Permalink
feat(generator): update protoc to v3.15.3 (#457)
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/20ff8108-4bb8-44d9-b386-bf2432a15754/targets

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

PiperOrigin-RevId: 359781040
Source-Link: googleapis/googleapis@f6dd7e4
  • Loading branch information
yoshi-automation committed Mar 1, 2021
1 parent 8ae33e6 commit 59574d7
Show file tree
Hide file tree
Showing 24 changed files with 950 additions and 5 deletions.
Expand Up @@ -262,6 +262,23 @@ public com.google.protobuf.ByteString getParentBytes() {
}

public static final int ENTITY_TYPE_BATCH_URI_FIELD_NUMBER = 2;
/**
*
*
* <pre>
* The URI to a Google Cloud Storage file containing entity types to update
* or create. The file format can either be a serialized proto (of
* EntityBatch type) or a JSON object. Note: The URI must start with
* "gs://".
* </pre>
*
* <code>string entity_type_batch_uri = 2;</code>
*
* @return Whether the entityTypeBatchUri field is set.
*/
public boolean hasEntityTypeBatchUri() {
return entityTypeBatchCase_ == 2;
}
/**
*
*
Expand Down Expand Up @@ -1049,6 +1066,24 @@ public Builder setParentBytes(com.google.protobuf.ByteString value) {
return this;
}

/**
*
*
* <pre>
* The URI to a Google Cloud Storage file containing entity types to update
* or create. The file format can either be a serialized proto (of
* EntityBatch type) or a JSON object. Note: The URI must start with
* "gs://".
* </pre>
*
* <code>string entity_type_batch_uri = 2;</code>
*
* @return Whether the entityTypeBatchUri field is set.
*/
@java.lang.Override
public boolean hasEntityTypeBatchUri() {
return entityTypeBatchCase_ == 2;
}
/**
*
*
Expand Down
Expand Up @@ -54,6 +54,21 @@ public interface BatchUpdateEntityTypesRequestOrBuilder
*/
com.google.protobuf.ByteString getParentBytes();

/**
*
*
* <pre>
* The URI to a Google Cloud Storage file containing entity types to update
* or create. The file format can either be a serialized proto (of
* EntityBatch type) or a JSON object. Note: The URI must start with
* "gs://".
* </pre>
*
* <code>string entity_type_batch_uri = 2;</code>
*
* @return Whether the entityTypeBatchUri field is set.
*/
boolean hasEntityTypeBatchUri();
/**
*
*
Expand Down
Expand Up @@ -261,6 +261,22 @@ public com.google.protobuf.ByteString getParentBytes() {
}

public static final int INTENT_BATCH_URI_FIELD_NUMBER = 2;
/**
*
*
* <pre>
* The URI to a Google Cloud Storage file containing intents to update or
* create. The file format can either be a serialized proto (of IntentBatch
* type) or JSON object. Note: The URI must start with "gs://".
* </pre>
*
* <code>string intent_batch_uri = 2;</code>
*
* @return Whether the intentBatchUri field is set.
*/
public boolean hasIntentBatchUri() {
return intentBatchCase_ == 2;
}
/**
*
*
Expand Down Expand Up @@ -1092,6 +1108,23 @@ public Builder setParentBytes(com.google.protobuf.ByteString value) {
return this;
}

/**
*
*
* <pre>
* The URI to a Google Cloud Storage file containing intents to update or
* create. The file format can either be a serialized proto (of IntentBatch
* type) or JSON object. Note: The URI must start with "gs://".
* </pre>
*
* <code>string intent_batch_uri = 2;</code>
*
* @return Whether the intentBatchUri field is set.
*/
@java.lang.Override
public boolean hasIntentBatchUri() {
return intentBatchCase_ == 2;
}
/**
*
*
Expand Down
Expand Up @@ -54,6 +54,20 @@ public interface BatchUpdateIntentsRequestOrBuilder
*/
com.google.protobuf.ByteString getParentBytes();

/**
*
*
* <pre>
* The URI to a Google Cloud Storage file containing intents to update or
* create. The file format can either be a serialized proto (of IntentBatch
* type) or JSON object. Note: The URI must start with "gs://".
* </pre>
*
* <code>string intent_batch_uri = 2;</code>
*
* @return Whether the intentBatchUri field is set.
*/
boolean hasIntentBatchUri();
/**
*
*
Expand Down
Expand Up @@ -163,6 +163,21 @@ public AgentCase getAgentCase() {
}

public static final int AGENT_URI_FIELD_NUMBER = 1;
/**
*
*
* <pre>
* The URI to a file containing the exported agent. This field is populated
* only if `agent_uri` is specified in `ExportAgentRequest`.
* </pre>
*
* <code>string agent_uri = 1;</code>
*
* @return Whether the agentUri field is set.
*/
public boolean hasAgentUri() {
return agentCase_ == 1;
}
/**
*
*
Expand Down Expand Up @@ -221,6 +236,21 @@ public com.google.protobuf.ByteString getAgentUriBytes() {
}

public static final int AGENT_CONTENT_FIELD_NUMBER = 2;
/**
*
*
* <pre>
* Zip compressed raw byte content for agent.
* </pre>
*
* <code>bytes agent_content = 2;</code>
*
* @return Whether the agentContent field is set.
*/
@java.lang.Override
public boolean hasAgentContent() {
return agentCase_ == 2;
}
/**
*
*
Expand Down Expand Up @@ -620,6 +650,22 @@ public Builder clearAgent() {
return this;
}

/**
*
*
* <pre>
* The URI to a file containing the exported agent. This field is populated
* only if `agent_uri` is specified in `ExportAgentRequest`.
* </pre>
*
* <code>string agent_uri = 1;</code>
*
* @return Whether the agentUri field is set.
*/
@java.lang.Override
public boolean hasAgentUri() {
return agentCase_ == 1;
}
/**
*
*
Expand Down Expand Up @@ -744,6 +790,20 @@ public Builder setAgentUriBytes(com.google.protobuf.ByteString value) {
return this;
}

/**
*
*
* <pre>
* Zip compressed raw byte content for agent.
* </pre>
*
* <code>bytes agent_content = 2;</code>
*
* @return Whether the agentContent field is set.
*/
public boolean hasAgentContent() {
return agentCase_ == 2;
}
/**
*
*
Expand Down
Expand Up @@ -23,6 +23,19 @@ public interface ExportAgentResponseOrBuilder
// @@protoc_insertion_point(interface_extends:google.cloud.dialogflow.v2.ExportAgentResponse)
com.google.protobuf.MessageOrBuilder {

/**
*
*
* <pre>
* The URI to a file containing the exported agent. This field is populated
* only if `agent_uri` is specified in `ExportAgentRequest`.
* </pre>
*
* <code>string agent_uri = 1;</code>
*
* @return Whether the agentUri field is set.
*/
boolean hasAgentUri();
/**
*
*
Expand Down Expand Up @@ -50,6 +63,18 @@ public interface ExportAgentResponseOrBuilder
*/
com.google.protobuf.ByteString getAgentUriBytes();

/**
*
*
* <pre>
* Zip compressed raw byte content for agent.
* </pre>
*
* <code>bytes agent_content = 2;</code>
*
* @return Whether the agentContent field is set.
*/
boolean hasAgentContent();
/**
*
*
Expand Down
Expand Up @@ -227,6 +227,21 @@ public com.google.protobuf.ByteString getParentBytes() {
}

public static final int AGENT_URI_FIELD_NUMBER = 2;
/**
*
*
* <pre>
* The URI to a Google Cloud Storage file containing the agent to import.
* Note: The URI must start with "gs://".
* </pre>
*
* <code>string agent_uri = 2;</code>
*
* @return Whether the agentUri field is set.
*/
public boolean hasAgentUri() {
return agentCase_ == 2;
}
/**
*
*
Expand Down Expand Up @@ -285,6 +300,21 @@ public com.google.protobuf.ByteString getAgentUriBytes() {
}

public static final int AGENT_CONTENT_FIELD_NUMBER = 3;
/**
*
*
* <pre>
* Zip compressed raw byte content for agent.
* </pre>
*
* <code>bytes agent_content = 3;</code>
*
* @return Whether the agentContent field is set.
*/
@java.lang.Override
public boolean hasAgentContent() {
return agentCase_ == 3;
}
/**
*
*
Expand Down Expand Up @@ -821,6 +851,22 @@ public Builder setParentBytes(com.google.protobuf.ByteString value) {
return this;
}

/**
*
*
* <pre>
* The URI to a Google Cloud Storage file containing the agent to import.
* Note: The URI must start with "gs://".
* </pre>
*
* <code>string agent_uri = 2;</code>
*
* @return Whether the agentUri field is set.
*/
@java.lang.Override
public boolean hasAgentUri() {
return agentCase_ == 2;
}
/**
*
*
Expand Down Expand Up @@ -945,6 +991,20 @@ public Builder setAgentUriBytes(com.google.protobuf.ByteString value) {
return this;
}

/**
*
*
* <pre>
* Zip compressed raw byte content for agent.
* </pre>
*
* <code>bytes agent_content = 3;</code>
*
* @return Whether the agentContent field is set.
*/
public boolean hasAgentContent() {
return agentCase_ == 3;
}
/**
*
*
Expand Down
Expand Up @@ -54,6 +54,19 @@ public interface ImportAgentRequestOrBuilder
*/
com.google.protobuf.ByteString getParentBytes();

/**
*
*
* <pre>
* The URI to a Google Cloud Storage file containing the agent to import.
* Note: The URI must start with "gs://".
* </pre>
*
* <code>string agent_uri = 2;</code>
*
* @return Whether the agentUri field is set.
*/
boolean hasAgentUri();
/**
*
*
Expand Down Expand Up @@ -81,6 +94,18 @@ public interface ImportAgentRequestOrBuilder
*/
com.google.protobuf.ByteString getAgentUriBytes();

/**
*
*
* <pre>
* Zip compressed raw byte content for agent.
* </pre>
*
* <code>bytes agent_content = 3;</code>
*
* @return Whether the agentContent field is set.
*/
boolean hasAgentContent();
/**
*
*
Expand Down

0 comments on commit 59574d7

Please sign in to comment.