-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Schema Registry: Update support for 415 error code. Regenerate test p…
…layback files. (#25342) * Fix user agent string. * Adding new record playback files. * Adding regenerated classes. * Adding additional tests. * Adding content headers depending on SchemaFormat type. * Adding CHANGELOG.md * Update sdk/schemaregistry/azure-data-schemaregistry/CHANGELOG.md Co-authored-by: Liudmila Molkova <[email protected]>
- Loading branch information
Showing
24 changed files
with
423 additions
and
191 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
38 changes: 38 additions & 0 deletions
38
...aregistry/src/main/java/com/azure/data/schemaregistry/implementation/models/SchemaId.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT License. | ||
// Code generated by Microsoft (R) AutoRest Code Generator. | ||
|
||
package com.azure.data.schemaregistry.implementation.models; | ||
|
||
import com.azure.core.annotation.Fluent; | ||
import com.fasterxml.jackson.annotation.JsonProperty; | ||
|
||
/** Object received from the registry containing schema identifiers. */ | ||
@Fluent | ||
public final class SchemaId { | ||
/* | ||
* Schema ID that uniquely identifies a schema in the registry namespace. | ||
*/ | ||
@JsonProperty(value = "id") | ||
private String id; | ||
|
||
/** | ||
* Get the id property: Schema ID that uniquely identifies a schema in the registry namespace. | ||
* | ||
* @return the id value. | ||
*/ | ||
public String getId() { | ||
return this.id; | ||
} | ||
|
||
/** | ||
* Set the id property: Schema ID that uniquely identifies a schema in the registry namespace. | ||
* | ||
* @param id the id value to set. | ||
* @return the SchemaId object itself. | ||
*/ | ||
public SchemaId setId(String id) { | ||
this.id = id; | ||
return this; | ||
} | ||
} |
2 changes: 2 additions & 0 deletions
2
...egistry/azure-data-schemaregistry/src/main/resources/azure-data-schemaregistry.properties
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
name=${project.artifactId} | ||
version=${project.version} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.