-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/main' into 7363
Signed-off-by: Ashish Singh <[email protected]>
- Loading branch information
Showing
104 changed files
with
3,252 additions
and
3,527 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,4 +17,5 @@ BWC_VERSION: | |
- "2.6.0" | ||
- "2.6.1" | ||
- "2.7.0" | ||
- "2.7.1" | ||
- "2.8.0" |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
93 changes: 93 additions & 0 deletions
93
buildSrc/src/main/java/org/opensearch/gradle/testclusters/ExtensionsProperties.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,93 @@ | ||
/* | ||
* SPDX-License-Identifier: Apache-2.0 | ||
* | ||
* The OpenSearch Contributors require contributions made to | ||
* this file be licensed under the Apache-2.0 license or a | ||
* compatible open source license. | ||
*/ | ||
|
||
package org.opensearch.gradle.testclusters; | ||
|
||
public class ExtensionsProperties { | ||
private String name; | ||
private String uniqueId; | ||
private String hostAddress; | ||
private String port; | ||
private String version; | ||
private String opensearchVersion; | ||
private String minimumCompatibleVersion; | ||
|
||
public ExtensionsProperties( | ||
String name, | ||
String uniqueId, | ||
String hostAddress, | ||
String port, | ||
String version, | ||
String opensearchVersion, | ||
String minimumCompatibleVersion | ||
) { | ||
this.name = name; | ||
this.uniqueId = uniqueId; | ||
this.hostAddress = hostAddress; | ||
this.port = port; | ||
this.version = version; | ||
this.opensearchVersion = opensearchVersion; | ||
this.minimumCompatibleVersion = minimumCompatibleVersion; | ||
} | ||
|
||
public String getName() { | ||
return name; | ||
} | ||
|
||
public void setName(String name) { | ||
this.name = name; | ||
} | ||
|
||
public String getUniqueId() { | ||
return uniqueId; | ||
} | ||
|
||
public void setUniqueId(String uniqueId) { | ||
this.uniqueId = uniqueId; | ||
} | ||
|
||
public String getHostAddress() { | ||
return hostAddress; | ||
} | ||
|
||
public void setHostAddress(String hostAddress) { | ||
this.hostAddress = hostAddress; | ||
} | ||
|
||
public String getPort() { | ||
return port; | ||
} | ||
|
||
public void setPort(String port) { | ||
this.port = port; | ||
} | ||
|
||
public String getVersion() { | ||
return version; | ||
} | ||
|
||
public void setVersion(String version) { | ||
this.version = version; | ||
} | ||
|
||
public String getOpensearchVersion() { | ||
return opensearchVersion; | ||
} | ||
|
||
public void setOpensearchVersion(String opensearchVersion) { | ||
this.opensearchVersion = opensearchVersion; | ||
} | ||
|
||
public String getMinimumCompatibleVersion() { | ||
return minimumCompatibleVersion; | ||
} | ||
|
||
public void setMinimumCompatibleVersion(String minimumCompatibleVersion) { | ||
this.minimumCompatibleVersion = minimumCompatibleVersion; | ||
} | ||
} |
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.