Skip to content

Commit

Permalink
Generate IcuCollationKeywordProperty
Browse files Browse the repository at this point in the history
Signed-off-by: Thomas Farr <[email protected]>
  • Loading branch information
Xtansia committed Nov 20, 2024
1 parent d6e55a6 commit 6b5671f
Show file tree
Hide file tree
Showing 7 changed files with 293 additions and 97 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ 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
Expand All @@ -14,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

0 comments on commit 6b5671f

Please sign in to comment.