Skip to content
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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion .openapi-generator/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7.7.0
7.15.0
11 changes: 6 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,11 @@ repositories {
}

tasks.shadowJar.configure {
classifier = null
archiveClassifier.set("")
}

tasks.jar.configure {
classifier = 'default'
archiveClassifier.set("default")
}

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

task sourcesJar(type: Jar) {
from android.sourceSets.main.java.srcDirs
classifier = 'sources'
archiveClassifier.set("sources")
}

artifacts {
Expand Down Expand Up @@ -144,6 +144,7 @@ ext {

dependencies {
implementation 'io.swagger:swagger-annotations:1.6.14'
implementation 'io.swagger.core.v3:swagger-annotations:2.2.22'
implementation "com.google.code.findbugs:jsr305:3.0.2"
implementation 'com.squareup.okhttp3:okhttp:4.12.0'
implementation 'com.squareup.okhttp3:logging-interceptor:4.12.0'
Expand Down Expand Up @@ -180,12 +181,12 @@ gradle.taskGraph.whenReady { taskGraph ->
}

task sourceJar(type: Jar) {
classifier "sources"
archiveClassifier.set("sources")
from sourceSets.main.allJava
}

task javadocJar(type: Jar, dependsOn: javadoc) {
classifier "javadoc"
archiveClassifier.set("javadoc")
from javadoc.destinationDir
}

Expand Down
5 changes: 5 additions & 0 deletions config-v4.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
additionalProperties:
apiPackage: io.tiledb.cloud.rest_api.v4.api
modelPackage: io.tiledb.cloud.rest_api.v4.model
hideGenerationTimestamp: true
library: okhttp-gson
20 changes: 20 additions & 0 deletions docs/APIToken.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@


# APIToken

An API token

## Properties

| Name | Type | Description | Notes |
|------------ | ------------- | ------------- | -------------|
|**tokenId** | **String** | The token's ID | |
|**name** | **String** | The name of the token | |
|**createdAt** | **OffsetDateTime** | The creation date and time of the token | |
|**expiresAt** | **OffsetDateTime** | The expiration date and time of the token | |
|**apiKey** | **String** | The secret API key that's used for authentication. If workspace_id is set, the format of the key is \"tiledb_<random bytes>\". Otherwise, the format is a JWT. | |
|**workspaceId** | **String** | The workspace ID of the token (if API token) | [optional] |
|**scope** | **TokenScope** | | |



16 changes: 16 additions & 0 deletions docs/AWSCredential.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@


# AWSCredential

Credential information to access Amazon Web Services

## Properties

| Name | Type | Description | Notes |
|------------ | ------------- | ------------- | -------------|
|**accessKeyId** | **String** | The ID of the access key | |
|**secretAccessKey** | **String** | The access key's secret. Never returned in responses. | |
|**endpoint** | **String** | The endpoint used for this credential | [optional] |



16 changes: 16 additions & 0 deletions docs/AWSRole.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@


# AWSRole

The role information itself. Exactly one sub-field may be set. The names match those in the CloudProvider enum

## Properties

| Name | Type | Description | Notes |
|------------ | ------------- | ------------- | -------------|
|**roleArn** | **String** | The role arn used to access | |
|**externalId** | **String** | The role external id used to access | |
|**endpoint** | **String** | The endpoint used for this role | [optional] |



Loading