-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Integrate sync stack in schema registry via AutoRest. #32576
Integrate sync stack in schema registry via AutoRest. #32576
Conversation
...a-schemaregistry/src/main/java/com/azure/data/schemaregistry/implementation/SchemasImpl.java
Show resolved
Hide resolved
API change check APIView has identified API level changes in this PR and created following API reviews. |
...ta-schemaregistry/src/main/java/com/azure/data/schemaregistry/SchemaRegistryAsyncClient.java
Outdated
Show resolved
Hide resolved
...re-data-schemaregistry/src/main/java/com/azure/data/schemaregistry/SchemaRegistryClient.java
Show resolved
Hide resolved
...src/main/java/com/azure/data/schemaregistry/implementation/models/SchemasGetByIdHeaders.java
Show resolved
Hide resolved
...re-data-schemaregistry/src/main/java/com/azure/data/schemaregistry/SchemaRegistryClient.java
Show resolved
Hide resolved
...ta-schemaregistry/src/main/java/com/azure/data/schemaregistry/SchemaRegistryAsyncClient.java
Show resolved
Hide resolved
...ta-schemaregistry/src/main/java/com/azure/data/schemaregistry/SchemaRegistryAsyncClient.java
Outdated
Show resolved
Hide resolved
...egistry/src/main/java/com/azure/data/schemaregistry/implementation/SchemaRegistryHelper.java
Outdated
Show resolved
Hide resolved
...-schemaregistry/src/main/java/com/azure/data/schemaregistry/SchemaRegistryClientBuilder.java
Outdated
Show resolved
Hide resolved
/azp run java - schemaregistry - tests |
Azure Pipelines successfully started running 1 pipeline(s). |
...ta-schemaregistry/src/main/java/com/azure/data/schemaregistry/SchemaRegistryAsyncClient.java
Show resolved
Hide resolved
@@ -197,7 +211,7 @@ public SchemasGetByIdHeaders setLocation(String location) { | |||
* | |||
* @return the contentType value. | |||
*/ | |||
public SchemaFormatImpl getContentType() { | |||
public SchemaFormat getContentType() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Curious why the change from SchemaFormatImpl -> SchemaFormat? I think there is a collision with the public-facing one so we have to qualify it. :/
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is done by Autorest, we can revert this if its a breaking change ?
/azp run java - schemaregistry - tests |
Azure Pipelines successfully started running 1 pipeline(s). |
Integrates Sync Stack in Schema Registry via AutoRest, also enables ResponseBase in Schema Registry via AutoRest.