Skip to content
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

[Backport 2.x] Generate IcuCollationKeywordProperty #1321

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,10 @@ Inspired from [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)

## [Unreleased 2.x]
### Added
- Added support for `IcuCollationKeywordProperty`'s `country`, `language` and `variant` properties ([#]())

### Dependencies
- Bumps `org.junit:junit-bom` from 5.10.2 to 5.11.3

### Changed

Expand All @@ -13,6 +15,7 @@ Inspired from [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
### Removed

### Fixed
- Fixed `IcuCollationDecomposition`'s variants to align with those supported by OpenSearch ([#]())

### Security

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,18 +30,24 @@
* GitHub history for details.
*/

//----------------------------------------------------
// THIS CODE IS GENERATED. MANUAL EDITS WILL BE LOST.
//----------------------------------------------------

package org.opensearch.client.opensearch._types.analysis;

import javax.annotation.Generated;
import org.opensearch.client.json.JsonEnum;
import org.opensearch.client.json.JsonpDeserializable;

// typedef: _types.analysis.IcuCollationAlternate

@JsonpDeserializable
@Generated("org.opensearch.client.codegen.CodeGenerator")
public enum IcuCollationAlternate implements JsonEnum {
Shifted("shifted"),

NonIgnorable("non-ignorable"),

;
Shifted("shifted");

private final String jsonValue;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,18 +30,24 @@
* GitHub history for details.
*/

//----------------------------------------------------
// THIS CODE IS GENERATED. MANUAL EDITS WILL BE LOST.
//----------------------------------------------------

package org.opensearch.client.opensearch._types.analysis;

import javax.annotation.Generated;
import org.opensearch.client.json.JsonEnum;
import org.opensearch.client.json.JsonpDeserializable;

// typedef: _types.analysis.IcuCollationCaseFirst

@JsonpDeserializable
@Generated("org.opensearch.client.codegen.CodeGenerator")
public enum IcuCollationCaseFirst implements JsonEnum {
Lower("lower"),

Upper("upper"),

;
Upper("upper");

private final String jsonValue;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,18 +30,24 @@
* GitHub history for details.
*/

//----------------------------------------------------
// THIS CODE IS GENERATED. MANUAL EDITS WILL BE LOST.
//----------------------------------------------------

package org.opensearch.client.opensearch._types.analysis;

import javax.annotation.Generated;
import org.opensearch.client.json.JsonEnum;
import org.opensearch.client.json.JsonpDeserializable;

// typedef: _types.analysis.IcuCollationDecomposition

@JsonpDeserializable
@Generated("org.opensearch.client.codegen.CodeGenerator")
public enum IcuCollationDecomposition implements JsonEnum {
No("no"),

Identical("identical"),
Canonical("canonical"),

;
No("no");

private final String jsonValue;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,24 +30,30 @@
* GitHub history for details.
*/

//----------------------------------------------------
// THIS CODE IS GENERATED. MANUAL EDITS WILL BE LOST.
//----------------------------------------------------

package org.opensearch.client.opensearch._types.analysis;

import javax.annotation.Generated;
import org.opensearch.client.json.JsonEnum;
import org.opensearch.client.json.JsonpDeserializable;

// typedef: _types.analysis.IcuCollationStrength

@JsonpDeserializable
@Generated("org.opensearch.client.codegen.CodeGenerator")
public enum IcuCollationStrength implements JsonEnum {
Primary("primary"),

Secondary("secondary"),
Identical("identical"),

Tertiary("tertiary"),
Primary("primary"),

Quaternary("quaternary"),

Identical("identical"),
Secondary("secondary"),

;
Tertiary("tertiary");

private final String jsonValue;

Expand Down
Loading
Loading