Skip to content

Commit be39ea3

Browse files
authored
add v4 routes to Carrara (#44)
* generate v4 endpoints * delete tests * cleanup * cleanup2 * cleanup3 --------- Co-authored-by: tdbbyd <[email protected]>
1 parent 102ec51 commit be39ea3

File tree

387 files changed

+73651
-92
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

387 files changed

+73651
-92
lines changed

.openapi-generator/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
7.7.0
1+
7.15.0

build.gradle

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,11 @@ repositories {
3838
}
3939

4040
tasks.shadowJar.configure {
41-
classifier = null
41+
archiveClassifier.set("")
4242
}
4343

4444
tasks.jar.configure {
45-
classifier = 'default'
45+
archiveClassifier.set("default")
4646
}
4747

4848
tasks.withType(Javadoc) {
@@ -108,7 +108,7 @@ if(hasProperty('target') && target == 'android') {
108108

109109
task sourcesJar(type: Jar) {
110110
from android.sourceSets.main.java.srcDirs
111-
classifier = 'sources'
111+
archiveClassifier.set("sources")
112112
}
113113

114114
artifacts {
@@ -144,6 +144,7 @@ ext {
144144

145145
dependencies {
146146
implementation 'io.swagger:swagger-annotations:1.6.14'
147+
implementation 'io.swagger.core.v3:swagger-annotations:2.2.22'
147148
implementation "com.google.code.findbugs:jsr305:3.0.2"
148149
implementation 'com.squareup.okhttp3:okhttp:4.12.0'
149150
implementation 'com.squareup.okhttp3:logging-interceptor:4.12.0'
@@ -180,12 +181,12 @@ gradle.taskGraph.whenReady { taskGraph ->
180181
}
181182

182183
task sourceJar(type: Jar) {
183-
classifier "sources"
184+
archiveClassifier.set("sources")
184185
from sourceSets.main.allJava
185186
}
186187

187188
task javadocJar(type: Jar, dependsOn: javadoc) {
188-
classifier "javadoc"
189+
archiveClassifier.set("javadoc")
189190
from javadoc.destinationDir
190191
}
191192

config-v4.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
additionalProperties:
2+
apiPackage: io.tiledb.cloud.rest_api.v4.api
3+
modelPackage: io.tiledb.cloud.rest_api.v4.model
4+
hideGenerationTimestamp: true
5+
library: okhttp-gson

docs/APIToken.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
2+
3+
# APIToken
4+
5+
An API token
6+
7+
## Properties
8+
9+
| Name | Type | Description | Notes |
10+
|------------ | ------------- | ------------- | -------------|
11+
|**tokenId** | **String** | The token&#39;s ID | |
12+
|**name** | **String** | The name of the token | |
13+
|**createdAt** | **OffsetDateTime** | The creation date and time of the token | |
14+
|**expiresAt** | **OffsetDateTime** | The expiration date and time of the token | |
15+
|**apiKey** | **String** | The secret API key that&#39;s used for authentication. If workspace_id is set, the format of the key is \&quot;tiledb_&lt;random bytes&gt;\&quot;. Otherwise, the format is a JWT. | |
16+
|**workspaceId** | **String** | The workspace ID of the token (if API token) | [optional] |
17+
|**scope** | **TokenScope** | | |
18+
19+
20+

docs/AWSCredential.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
2+
3+
# AWSCredential
4+
5+
Credential information to access Amazon Web Services
6+
7+
## Properties
8+
9+
| Name | Type | Description | Notes |
10+
|------------ | ------------- | ------------- | -------------|
11+
|**accessKeyId** | **String** | The ID of the access key | |
12+
|**secretAccessKey** | **String** | The access key&#39;s secret. Never returned in responses. | |
13+
|**endpoint** | **String** | The endpoint used for this credential | [optional] |
14+
15+
16+

docs/AWSRole.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
2+
3+
# AWSRole
4+
5+
The role information itself. Exactly one sub-field may be set. The names match those in the CloudProvider enum
6+
7+
## Properties
8+
9+
| Name | Type | Description | Notes |
10+
|------------ | ------------- | ------------- | -------------|
11+
|**roleArn** | **String** | The role arn used to access | |
12+
|**externalId** | **String** | The role external id used to access | |
13+
|**endpoint** | **String** | The endpoint used for this role | [optional] |
14+
15+
16+

0 commit comments

Comments
 (0)