From fa1a2d4993269c1ed65b9a2123114bdcced4dedb Mon Sep 17 00:00:00 2001 From: Robrecht Cannoodt Date: Thu, 15 Jan 2026 13:07:21 +0100 Subject: [PATCH 1/2] update to the api --- .openapi-generator/FILES | 67 ++++ README.md | 12 +- api/openapi.yaml | 307 +++--------------- config.yaml | 2 +- docs/AccountsApi.md | 6 +- docs/DbServerApi.md | 12 +- docs/InstanceArtifactsApi.md | 66 ++++ docs/InstancesApi.md | 6 +- docs/OrganizationsApi.md | 30 +- docs/SpacesApi.md | 60 ++-- docs/StoragesApi.md | 6 +- docs/TeamsApi.md | 54 +-- generate.sh | 2 + pom.xml | 2 +- .../ai/lamin/lamin_api_client/ApiClient.java | 2 +- .../lamin/lamin_api_client/ApiException.java | 2 +- .../lamin/lamin_api_client/Configuration.java | 4 +- .../java/ai/lamin/lamin_api_client/Pair.java | 2 +- .../lamin_api_client/ServerConfiguration.java | 2 +- .../lamin_api_client/ServerVariable.java | 2 +- .../ai/lamin/lamin_api_client/StringUtil.java | 2 +- .../lamin_api_client/api/AccountsApi.java | 27 +- .../lamin_api_client/api/DbServerApi.java | 53 +-- .../api/InstanceArtifactsApi.java | 153 +++++++++ .../lamin_api_client/api/InstancesApi.java | 26 +- .../api/OrganizationsApi.java | 130 +++----- .../lamin/lamin_api_client/api/SpacesApi.java | 260 +++++---------- .../lamin_api_client/api/StoragesApi.java | 27 +- .../lamin/lamin_api_client/api/TeamsApi.java | 234 +++++-------- .../lamin_api_client/auth/ApiKeyAuth.java | 2 +- .../lamin_api_client/auth/HttpBearerAuth.java | 2 +- .../model/AbstractOpenApiSchema.java | 2 +- .../model/AddCollaboratorRequestBody.java | 2 +- .../AddOrganizationMemberRequestBody.java | 2 +- .../AddSpaceCollaboratorRequestBody.java | 2 +- .../model/AddTeamMemberRequestBody.java | 2 +- .../model/AttachSpaceToRecordRequestBody.java | 2 +- .../model/BatchDeleteBody.java | 2 +- .../model/BatchDeleteResponse.java | 2 +- .../model/BatchSyncLinksBody.java | 2 +- .../model/BatchSyncResponse.java | 2 +- .../model/BatchUpdateBody.java | 2 +- .../ai/lamin/lamin_api_client/model/Body.java | 2 +- .../model/CreateArtifactRequestBody.java | 2 +- .../model/CreateSpaceRequestBody.java | 2 +- .../model/CreateTeamRequestBody.java | 2 +- .../model/CreateTransformRequestBody.java | 2 +- .../lamin_api_client/model/Dimension.java | 2 +- .../lamin_api_client/model/ErrorDetail.java | 2 +- .../model/ExecuteFunctionRequestBody.java | 2 +- .../model/ExportRecordsRequestBody.java | 2 +- .../model/GetRecordRequestBody.java | 2 +- .../model/GetRecordsRequestBody.java | 2 +- .../model/GetValuesRequestBody.java | 2 +- .../model/GroupByRequestBody.java | 2 +- .../model/HTTPValidationError.java | 2 +- .../lamin/lamin_api_client/model/Measure.java | 2 +- .../model/NonEmptyTablesResponse.java | 2 +- .../lamin_api_client/model/OrderByColumn.java | 2 +- .../model/RegisterDbServerBody.java | 2 +- .../model/RegisterFormRequest.java | 2 +- .../lamin/lamin_api_client/model/Request.java | 2 +- .../ai/lamin/lamin_api_client/model/Role.java | 2 +- .../lamin/lamin_api_client/model/Role1.java | 2 +- .../model/S3PermissionsRequest.java | 2 +- .../model/StatisticsResponse.java | 2 +- .../model/SyncInstruction.java | 2 +- .../model/TraversalParams.java | 2 +- .../model/TraversalParamsValuesInner.java | 2 +- .../model/UpdateCollaboratorRequestBody.java | 2 +- .../UpdateOrganizationMemberRequestBody.java | 2 +- .../UpdateSpaceCollaboratorRequestBody.java | 2 +- .../model/UpdateSpaceRequestBody.java | 2 +- .../model/UpdateTeamMemberRequestBody.java | 2 +- .../model/UpdateTeamRequestBody.java | 2 +- .../model/ValidationError.java | 2 +- .../model/ValidationErrorLocInner.java | 2 +- .../lamin_api_client/api/AccountsApiTest.java | 4 +- .../lamin_api_client/api/DbServerApiTest.java | 7 +- .../api/InstanceArtifactsApiTest.java | 14 + .../api/InstancesApiTest.java | 3 +- .../api/OrganizationsApiTest.java | 15 +- .../lamin_api_client/api/SpacesApiTest.java | 30 +- .../lamin_api_client/api/StoragesApiTest.java | 4 +- .../lamin_api_client/api/TeamsApiTest.java | 27 +- 85 files changed, 760 insertions(+), 998 deletions(-) diff --git a/.openapi-generator/FILES b/.openapi-generator/FILES index 6b0e666..c2f14f0 100644 --- a/.openapi-generator/FILES +++ b/.openapi-generator/FILES @@ -157,3 +157,70 @@ src/main/java/ai/lamin/lamin_api_client/model/UpdateTeamMemberRequestBody.java src/main/java/ai/lamin/lamin_api_client/model/UpdateTeamRequestBody.java src/main/java/ai/lamin/lamin_api_client/model/ValidationError.java src/main/java/ai/lamin/lamin_api_client/model/ValidationErrorLocInner.java +src/test/src/test/java/ai/lamin/lamin_api_client/api/AccountsApiTest.java +src/test/src/test/java/ai/lamin/lamin_api_client/api/BackwardCompatibleEndpointsApiTest.java +src/test/src/test/java/ai/lamin/lamin_api_client/api/CacheApiTest.java +src/test/src/test/java/ai/lamin/lamin_api_client/api/DbServerApiTest.java +src/test/src/test/java/ai/lamin/lamin_api_client/api/HealthChecksApiTest.java +src/test/src/test/java/ai/lamin/lamin_api_client/api/InstanceArtifactsApiTest.java +src/test/src/test/java/ai/lamin/lamin_api_client/api/InstanceDbTokenApiTest.java +src/test/src/test/java/ai/lamin/lamin_api_client/api/InstanceFeaturesApiTest.java +src/test/src/test/java/ai/lamin/lamin_api_client/api/InstanceFileExplorerApiTest.java +src/test/src/test/java/ai/lamin/lamin_api_client/api/InstanceFormsApiTest.java +src/test/src/test/java/ai/lamin/lamin_api_client/api/InstanceFunctionsApiTest.java +src/test/src/test/java/ai/lamin/lamin_api_client/api/InstanceLabelsApiTest.java +src/test/src/test/java/ai/lamin/lamin_api_client/api/InstanceRecordsApiTest.java +src/test/src/test/java/ai/lamin/lamin_api_client/api/InstanceSchemaApiTest.java +src/test/src/test/java/ai/lamin/lamin_api_client/api/InstanceSearchApiTest.java +src/test/src/test/java/ai/lamin/lamin_api_client/api/InstanceStatisticsApiTest.java +src/test/src/test/java/ai/lamin/lamin_api_client/api/InstanceTransformsApiTest.java +src/test/src/test/java/ai/lamin/lamin_api_client/api/InstancesApiTest.java +src/test/src/test/java/ai/lamin/lamin_api_client/api/OrganizationsApiTest.java +src/test/src/test/java/ai/lamin/lamin_api_client/api/SpacesApiTest.java +src/test/src/test/java/ai/lamin/lamin_api_client/api/StoragesApiTest.java +src/test/src/test/java/ai/lamin/lamin_api_client/api/TeamsApiTest.java +src/test/src/test/java/ai/lamin/lamin_api_client/model/AddCollaboratorRequestBodyTest.java +src/test/src/test/java/ai/lamin/lamin_api_client/model/AddOrganizationMemberRequestBodyTest.java +src/test/src/test/java/ai/lamin/lamin_api_client/model/AddSpaceCollaboratorRequestBodyTest.java +src/test/src/test/java/ai/lamin/lamin_api_client/model/AddTeamMemberRequestBodyTest.java +src/test/src/test/java/ai/lamin/lamin_api_client/model/AttachSpaceToRecordRequestBodyTest.java +src/test/src/test/java/ai/lamin/lamin_api_client/model/BatchDeleteBodyTest.java +src/test/src/test/java/ai/lamin/lamin_api_client/model/BatchDeleteResponseTest.java +src/test/src/test/java/ai/lamin/lamin_api_client/model/BatchSyncLinksBodyTest.java +src/test/src/test/java/ai/lamin/lamin_api_client/model/BatchSyncResponseTest.java +src/test/src/test/java/ai/lamin/lamin_api_client/model/BatchUpdateBodyTest.java +src/test/src/test/java/ai/lamin/lamin_api_client/model/BodyTest.java +src/test/src/test/java/ai/lamin/lamin_api_client/model/CreateArtifactRequestBodyTest.java +src/test/src/test/java/ai/lamin/lamin_api_client/model/CreateSpaceRequestBodyTest.java +src/test/src/test/java/ai/lamin/lamin_api_client/model/CreateTeamRequestBodyTest.java +src/test/src/test/java/ai/lamin/lamin_api_client/model/CreateTransformRequestBodyTest.java +src/test/src/test/java/ai/lamin/lamin_api_client/model/DimensionTest.java +src/test/src/test/java/ai/lamin/lamin_api_client/model/ErrorDetailTest.java +src/test/src/test/java/ai/lamin/lamin_api_client/model/ExecuteFunctionRequestBodyTest.java +src/test/src/test/java/ai/lamin/lamin_api_client/model/ExportRecordsRequestBodyTest.java +src/test/src/test/java/ai/lamin/lamin_api_client/model/GetRecordRequestBodyTest.java +src/test/src/test/java/ai/lamin/lamin_api_client/model/GetRecordsRequestBodyTest.java +src/test/src/test/java/ai/lamin/lamin_api_client/model/GetValuesRequestBodyTest.java +src/test/src/test/java/ai/lamin/lamin_api_client/model/GroupByRequestBodyTest.java +src/test/src/test/java/ai/lamin/lamin_api_client/model/HTTPValidationErrorTest.java +src/test/src/test/java/ai/lamin/lamin_api_client/model/MeasureTest.java +src/test/src/test/java/ai/lamin/lamin_api_client/model/NonEmptyTablesResponseTest.java +src/test/src/test/java/ai/lamin/lamin_api_client/model/OrderByColumnTest.java +src/test/src/test/java/ai/lamin/lamin_api_client/model/RegisterDbServerBodyTest.java +src/test/src/test/java/ai/lamin/lamin_api_client/model/RegisterFormRequestTest.java +src/test/src/test/java/ai/lamin/lamin_api_client/model/RequestTest.java +src/test/src/test/java/ai/lamin/lamin_api_client/model/Role1Test.java +src/test/src/test/java/ai/lamin/lamin_api_client/model/RoleTest.java +src/test/src/test/java/ai/lamin/lamin_api_client/model/S3PermissionsRequestTest.java +src/test/src/test/java/ai/lamin/lamin_api_client/model/StatisticsResponseTest.java +src/test/src/test/java/ai/lamin/lamin_api_client/model/SyncInstructionTest.java +src/test/src/test/java/ai/lamin/lamin_api_client/model/TraversalParamsTest.java +src/test/src/test/java/ai/lamin/lamin_api_client/model/TraversalParamsValuesInnerTest.java +src/test/src/test/java/ai/lamin/lamin_api_client/model/UpdateCollaboratorRequestBodyTest.java +src/test/src/test/java/ai/lamin/lamin_api_client/model/UpdateOrganizationMemberRequestBodyTest.java +src/test/src/test/java/ai/lamin/lamin_api_client/model/UpdateSpaceCollaboratorRequestBodyTest.java +src/test/src/test/java/ai/lamin/lamin_api_client/model/UpdateSpaceRequestBodyTest.java +src/test/src/test/java/ai/lamin/lamin_api_client/model/UpdateTeamMemberRequestBodyTest.java +src/test/src/test/java/ai/lamin/lamin_api_client/model/UpdateTeamRequestBodyTest.java +src/test/src/test/java/ai/lamin/lamin_api_client/model/ValidationErrorLocInnerTest.java +src/test/src/test/java/ai/lamin/lamin_api_client/model/ValidationErrorTest.java diff --git a/README.md b/README.md index bf9d2b6..4c12046 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ Lamin API - API version: 0.1.0 - - Build date: 2026-01-12T11:16:27.287169544+01:00[Europe/Brussels] + - Build date: 2026-01-15T12:58:35.937124602+01:00[Europe/Brussels] - Generator version: 7.12.0 No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) @@ -44,7 +44,7 @@ Add this dependency to your project's POM: ai.lamin lamin-api-client - 0.0.4 + 0.0.5-rc1 compile ``` @@ -60,7 +60,7 @@ Add this dependency to your project's build file: } dependencies { - implementation "ai.lamin:lamin-api-client:0.0.4" + implementation "ai.lamin:lamin-api-client:0.0.5-rc1" } ``` @@ -74,7 +74,7 @@ mvn clean package Then manually install the following JARs: -* `target/lamin-api-client-0.0.4.jar` +* `target/lamin-api-client-0.0.5-rc1.jar` * `target/lib/*.jar` ## Getting Started @@ -96,10 +96,9 @@ public class Example { defaultClient.setBasePath("https://staging.laminhub.com/api"); AccountsApi apiInstance = new AccountsApi(defaultClient); - UUID instanceId = UUID.randomUUID(); // UUID | String authorization = "authorization_example"; // String | try { - Object result = apiInstance.getCallerAccountAccountGet(instanceId, authorization); + Object result = apiInstance.getCallerAccountAccountGet(authorization); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling AccountsApi#getCallerAccountAccountGet"); @@ -127,6 +126,7 @@ Class | Method | HTTP request | Description *DbServerApi* | [**registerDbServerDbServerRegisterPost**](docs/DbServerApi.md#registerDbServerDbServerRegisterPost) | **POST** /db/server/register | Register Db Server *HealthChecksApi* | [**healthCheckHealthGet**](docs/HealthChecksApi.md#healthCheckHealthGet) | **GET** /health | Health Check *InstanceArtifactsApi* | [**createArtifactInstancesInstanceIdArtifactsCreatePost**](docs/InstanceArtifactsApi.md#createArtifactInstancesInstanceIdArtifactsCreatePost) | **POST** /instances/{instance_id}/artifacts/create | Create Artifact +*InstanceArtifactsApi* | [**getArtifactByPathInstancesInstanceIdArtifactsByPathGet**](docs/InstanceArtifactsApi.md#getArtifactByPathInstancesInstanceIdArtifactsByPathGet) | **GET** /instances/{instance_id}/artifacts/by-path | Get Artifact By Path *InstanceArtifactsApi* | [**uploadArtifactInstancesInstanceIdArtifactsUploadPost**](docs/InstanceArtifactsApi.md#uploadArtifactInstancesInstanceIdArtifactsUploadPost) | **POST** /instances/{instance_id}/artifacts/upload | Upload Artifact *InstanceDbTokenApi* | [**getDbTokenInstancesInstanceIdDbTokenGet**](docs/InstanceDbTokenApi.md#getDbTokenInstancesInstanceIdDbTokenGet) | **GET** /instances/{instance_id}/db_token | Get Db Token *InstanceFeaturesApi* | [**queryLinkedFeaturesInstancesInstanceIdModulesModuleNameModelNameQueryFeaturesPost**](docs/InstanceFeaturesApi.md#queryLinkedFeaturesInstancesInstanceIdModulesModuleNameModelNameQueryFeaturesPost) | **POST** /instances/{instance_id}/modules/{module_name}/{model_name}/query_features | Query Linked Features diff --git a/api/openapi.yaml b/api/openapi.yaml index 05a0064..23d30d4 100644 --- a/api/openapi.yaml +++ b/api/openapi.yaml @@ -27,15 +27,6 @@ paths: title: Organization Id type: string style: simple - - explode: true - in: query - name: instance_id - required: false - schema: - format: uuid - nullable: true - type: string - style: form - explode: false in: header name: Authorization @@ -82,15 +73,6 @@ paths: title: Organization Id type: string style: simple - - explode: true - in: query - name: instance_id - required: false - schema: - format: uuid - nullable: true - type: string - style: form - explode: false in: header name: Authorization @@ -148,15 +130,6 @@ paths: title: Account Id type: string style: simple - - explode: true - in: query - name: instance_id - required: false - schema: - format: uuid - nullable: true - type: string - style: form - explode: false in: header name: Authorization @@ -215,15 +188,6 @@ paths: title: Account Id type: string style: simple - - explode: true - in: query - name: instance_id - required: false - schema: - format: uuid - nullable: true - type: string - style: form - explode: false in: header name: Authorization @@ -288,15 +252,6 @@ paths: title: Account Id type: string style: simple - - explode: true - in: query - name: instance_id - required: false - schema: - format: uuid - nullable: true - type: string - style: form - explode: false in: header name: Authorization @@ -333,15 +288,6 @@ paths: get: operationId: get_caller_account_account_get parameters: - - explode: true - in: query - name: instance_id - required: false - schema: - format: uuid - nullable: true - type: string - style: form - explode: false in: header name: Authorization @@ -382,15 +328,6 @@ paths: - **201**: Space created successfully operationId: create_space_spaces_put parameters: - - explode: true - in: query - name: instance_id - required: false - schema: - format: uuid - nullable: true - type: string - style: form - explode: false in: header name: Authorization @@ -445,15 +382,6 @@ paths: title: Space Id type: string style: simple - - explode: true - in: query - name: instance_id - required: false - schema: - format: uuid - nullable: true - type: string - style: form - explode: false in: header name: Authorization @@ -500,15 +428,6 @@ paths: title: Space Id type: string style: simple - - explode: true - in: query - name: instance_id - required: false - schema: - format: uuid - nullable: true - type: string - style: form - explode: false in: header name: Authorization @@ -557,15 +476,6 @@ paths: title: Space Id type: string style: simple - - explode: true - in: query - name: instance_id - required: false - schema: - format: uuid - nullable: true - type: string - style: form - explode: false in: header name: Authorization @@ -803,15 +713,6 @@ paths: title: Space Id type: string style: simple - - explode: true - in: query - name: instance_id - required: false - schema: - format: uuid - nullable: true - type: string - style: form - explode: false in: header name: Authorization @@ -925,15 +826,6 @@ paths: nullable: true type: string style: form - - explode: true - in: query - name: instance_id - required: false - schema: - format: uuid - nullable: true - type: string - style: form - explode: false in: header name: Authorization @@ -979,15 +871,6 @@ paths: title: Space Id type: string style: simple - - explode: true - in: query - name: instance_id - required: false - schema: - format: uuid - nullable: true - type: string - style: form - explode: false in: header name: Authorization @@ -1039,15 +922,6 @@ paths: title: Space Id type: string style: simple - - explode: true - in: query - name: instance_id - required: false - schema: - format: uuid - nullable: true - type: string - style: form - explode: false in: header name: Authorization @@ -1105,15 +979,6 @@ paths: title: Space Id type: string style: simple - - explode: true - in: query - name: instance_id - required: false - schema: - format: uuid - nullable: true - type: string - style: form - explode: false in: header name: Authorization @@ -1167,15 +1032,6 @@ paths: title: Organization Id type: string style: simple - - explode: true - in: query - name: instance_id - required: false - schema: - format: uuid - nullable: true - type: string - style: form - explode: false in: header name: Authorization @@ -1216,15 +1072,6 @@ paths: - **201**: Team created successfully operationId: create_team_teams_put parameters: - - explode: true - in: query - name: instance_id - required: false - schema: - format: uuid - nullable: true - type: string - style: form - explode: false in: header name: Authorization @@ -1278,15 +1125,6 @@ paths: title: Team Id type: string style: simple - - explode: true - in: query - name: instance_id - required: false - schema: - format: uuid - nullable: true - type: string - style: form - explode: false in: header name: Authorization @@ -1333,15 +1171,6 @@ paths: title: Team Id type: string style: simple - - explode: true - in: query - name: instance_id - required: false - schema: - format: uuid - nullable: true - type: string - style: form - explode: false in: header name: Authorization @@ -1390,15 +1219,6 @@ paths: title: Team Id type: string style: simple - - explode: true - in: query - name: instance_id - required: false - schema: - format: uuid - nullable: true - type: string - style: form - explode: false in: header name: Authorization @@ -1452,15 +1272,6 @@ paths: title: Team Id type: string style: simple - - explode: true - in: query - name: instance_id - required: false - schema: - format: uuid - nullable: true - type: string - style: form - explode: false in: header name: Authorization @@ -1518,15 +1329,6 @@ paths: title: Account Id type: string style: simple - - explode: true - in: query - name: instance_id - required: false - schema: - format: uuid - nullable: true - type: string - style: form - explode: false in: header name: Authorization @@ -1585,15 +1387,6 @@ paths: title: Account Id type: string style: simple - - explode: true - in: query - name: instance_id - required: false - schema: - format: uuid - nullable: true - type: string - style: form - explode: false in: header name: Authorization @@ -1658,15 +1451,6 @@ paths: title: Account Id type: string style: simple - - explode: true - in: query - name: instance_id - required: false - schema: - format: uuid - nullable: true - type: string - style: form - explode: false in: header name: Authorization @@ -1720,15 +1504,6 @@ paths: title: Organization Id type: string style: simple - - explode: true - in: query - name: instance_id - required: false - schema: - format: uuid - nullable: true - type: string - style: form - explode: false in: header name: Authorization @@ -1808,15 +1583,6 @@ paths: nullable: true type: string style: form - - explode: true - in: query - name: instance_id - required: false - schema: - format: uuid - nullable: true - type: string - style: form - explode: false in: header name: Authorization @@ -3025,6 +2791,52 @@ paths: x-content-type: application/json x-accepts: - application/json + /instances/{instance_id}/artifacts/by-path: + get: + operationId: get_artifact_by_path_instances__instance_id__artifacts_by_path_get + parameters: + - explode: false + in: path + name: instance_id + required: true + schema: + format: uuid + nullable: true + type: string + style: simple + - explode: true + in: query + name: path + required: true + schema: + title: Path + type: string + style: form + - explode: false + in: header + name: Authorization + required: false + schema: + nullable: true + type: string + style: simple + responses: + "200": + content: + application/json: + schema: {} + description: Successful Response + "422": + content: + application/json: + schema: + $ref: '#/components/schemas/HTTPValidationError' + description: Validation Error + summary: Get Artifact By Path + tags: + - Instance Artifacts + x-accepts: + - application/json /instances/{instance_id}/modules/{module_name}/{model_name}/{id}/{label_field}/{label_id}: delete: operationId: detach_label_instances__instance_id__modules__module_name___model_name___id___label_field___label_id__delete @@ -4180,15 +3992,6 @@ paths: title: Aws User Name type: string style: form - - explode: true - in: query - name: instance_id - required: false - schema: - format: uuid - nullable: true - type: string - style: form - explode: false in: header name: Authorization @@ -4225,15 +4028,6 @@ paths: post: operationId: register_db_server_db_server_register_post parameters: - - explode: true - in: query - name: instance_id - required: false - schema: - format: uuid - nullable: true - type: string - style: form - explode: false in: header name: Authorization @@ -4278,15 +4072,6 @@ paths: title: Name type: string style: form - - explode: true - in: query - name: instance_id - required: false - schema: - format: uuid - nullable: true - type: string - style: form - explode: false in: header name: Authorization diff --git a/config.yaml b/config.yaml index 174daf3..b64315a 100644 --- a/config.yaml +++ b/config.yaml @@ -53,7 +53,7 @@ groupId: ai.lamin # Default: org.openapitools artifactId: lamin-api-client # Description: artifact version in generated pom.xml. This also becomes part of the generated library's filename. If not provided, uses the version from the OpenAPI specification file. If that's also not present, uses the default value of the artifactVersion option. -artifactVersion: 0.0.4 +artifactVersion: 0.0.5-rc1 # Description: artifact URL in generated pom.xml artifactUrl: https://github.com/laminlabs/lamin-api-client-java diff --git a/docs/AccountsApi.md b/docs/AccountsApi.md index 1822554..27c9290 100644 --- a/docs/AccountsApi.md +++ b/docs/AccountsApi.md @@ -9,7 +9,7 @@ All URIs are relative to *https://staging.laminhub.com/api* # **getCallerAccountAccountGet** -> Object getCallerAccountAccountGet(instanceId, authorization) +> Object getCallerAccountAccountGet(authorization) Get Caller Account @@ -28,10 +28,9 @@ public class Example { defaultClient.setBasePath("https://staging.laminhub.com/api"); AccountsApi apiInstance = new AccountsApi(defaultClient); - UUID instanceId = UUID.randomUUID(); // UUID | String authorization = "authorization_example"; // String | try { - Object result = apiInstance.getCallerAccountAccountGet(instanceId, authorization); + Object result = apiInstance.getCallerAccountAccountGet(authorization); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling AccountsApi#getCallerAccountAccountGet"); @@ -48,7 +47,6 @@ public class Example { | Name | Type | Description | Notes | |------------- | ------------- | ------------- | -------------| -| **instanceId** | **UUID**| | [optional] | | **authorization** | **String**| | [optional] | ### Return type diff --git a/docs/DbServerApi.md b/docs/DbServerApi.md index 56077c0..4cc27f8 100644 --- a/docs/DbServerApi.md +++ b/docs/DbServerApi.md @@ -10,7 +10,7 @@ All URIs are relative to *https://staging.laminhub.com/api* # **checkDbServerAccessDbServerCheckAccessPost** -> Object checkDbServerAccessDbServerCheckAccessPost(name, instanceId, authorization) +> Object checkDbServerAccessDbServerCheckAccessPost(name, authorization) Check Db Server Access @@ -30,10 +30,9 @@ public class Example { DbServerApi apiInstance = new DbServerApi(defaultClient); String name = "name_example"; // String | - UUID instanceId = UUID.randomUUID(); // UUID | String authorization = "authorization_example"; // String | try { - Object result = apiInstance.checkDbServerAccessDbServerCheckAccessPost(name, instanceId, authorization); + Object result = apiInstance.checkDbServerAccessDbServerCheckAccessPost(name, authorization); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling DbServerApi#checkDbServerAccessDbServerCheckAccessPost"); @@ -51,7 +50,6 @@ public class Example { | Name | Type | Description | Notes | |------------- | ------------- | ------------- | -------------| | **name** | **String**| | | -| **instanceId** | **UUID**| | [optional] | | **authorization** | **String**| | [optional] | ### Return type @@ -75,7 +73,7 @@ No authorization required # **registerDbServerDbServerRegisterPost** -> Object registerDbServerDbServerRegisterPost(registerDbServerBody, instanceId, authorization) +> Object registerDbServerDbServerRegisterPost(registerDbServerBody, authorization) Register Db Server @@ -95,10 +93,9 @@ public class Example { DbServerApi apiInstance = new DbServerApi(defaultClient); RegisterDbServerBody registerDbServerBody = new RegisterDbServerBody(); // RegisterDbServerBody | - UUID instanceId = UUID.randomUUID(); // UUID | String authorization = "authorization_example"; // String | try { - Object result = apiInstance.registerDbServerDbServerRegisterPost(registerDbServerBody, instanceId, authorization); + Object result = apiInstance.registerDbServerDbServerRegisterPost(registerDbServerBody, authorization); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling DbServerApi#registerDbServerDbServerRegisterPost"); @@ -116,7 +113,6 @@ public class Example { | Name | Type | Description | Notes | |------------- | ------------- | ------------- | -------------| | **registerDbServerBody** | [**RegisterDbServerBody**](RegisterDbServerBody.md)| | | -| **instanceId** | **UUID**| | [optional] | | **authorization** | **String**| | [optional] | ### Return type diff --git a/docs/InstanceArtifactsApi.md b/docs/InstanceArtifactsApi.md index e6a75e3..8d6de68 100644 --- a/docs/InstanceArtifactsApi.md +++ b/docs/InstanceArtifactsApi.md @@ -5,6 +5,7 @@ All URIs are relative to *https://staging.laminhub.com/api* | Method | HTTP request | Description | |------------- | ------------- | -------------| | [**createArtifactInstancesInstanceIdArtifactsCreatePost**](InstanceArtifactsApi.md#createArtifactInstancesInstanceIdArtifactsCreatePost) | **POST** /instances/{instance_id}/artifacts/create | Create Artifact | +| [**getArtifactByPathInstancesInstanceIdArtifactsByPathGet**](InstanceArtifactsApi.md#getArtifactByPathInstancesInstanceIdArtifactsByPathGet) | **GET** /instances/{instance_id}/artifacts/by-path | Get Artifact By Path | | [**uploadArtifactInstancesInstanceIdArtifactsUploadPost**](InstanceArtifactsApi.md#uploadArtifactInstancesInstanceIdArtifactsUploadPost) | **POST** /instances/{instance_id}/artifacts/upload | Upload Artifact | @@ -73,6 +74,71 @@ No authorization required | **200** | Successful Response | - | | **422** | Validation Error | - | + +# **getArtifactByPathInstancesInstanceIdArtifactsByPathGet** +> Object getArtifactByPathInstancesInstanceIdArtifactsByPathGet(instanceId, path, authorization) + +Get Artifact By Path + +### Example +```java +// Import classes: +import ai.lamin.lamin_api_client.ApiClient; +import ai.lamin.lamin_api_client.ApiException; +import ai.lamin.lamin_api_client.Configuration; +import ai.lamin.lamin_api_client.models.*; +import ai.lamin.lamin_api_client.api.InstanceArtifactsApi; + +public class Example { + public static void main(String[] args) { + ApiClient defaultClient = Configuration.getDefaultApiClient(); + defaultClient.setBasePath("https://staging.laminhub.com/api"); + + InstanceArtifactsApi apiInstance = new InstanceArtifactsApi(defaultClient); + UUID instanceId = UUID.randomUUID(); // UUID | + String path = "path_example"; // String | + String authorization = "authorization_example"; // String | + try { + Object result = apiInstance.getArtifactByPathInstancesInstanceIdArtifactsByPathGet(instanceId, path, authorization); + System.out.println(result); + } catch (ApiException e) { + System.err.println("Exception when calling InstanceArtifactsApi#getArtifactByPathInstancesInstanceIdArtifactsByPathGet"); + System.err.println("Status code: " + e.getCode()); + System.err.println("Reason: " + e.getResponseBody()); + System.err.println("Response headers: " + e.getResponseHeaders()); + e.printStackTrace(); + } + } +} +``` + +### Parameters + +| Name | Type | Description | Notes | +|------------- | ------------- | ------------- | -------------| +| **instanceId** | **UUID**| | | +| **path** | **String**| | | +| **authorization** | **String**| | [optional] | + +### Return type + +**Object** + +### Authorization + +No authorization required + +### HTTP request headers + + - **Content-Type**: Not defined + - **Accept**: application/json + +### HTTP response details +| Status code | Description | Response headers | +|-------------|-------------|------------------| +| **200** | Successful Response | - | +| **422** | Validation Error | - | + # **uploadArtifactInstancesInstanceIdArtifactsUploadPost** > Object uploadArtifactInstancesInstanceIdArtifactsUploadPost(instanceId, _file, authorization, kwargs) diff --git a/docs/InstancesApi.md b/docs/InstancesApi.md index bba2c77..f3917db 100644 --- a/docs/InstancesApi.md +++ b/docs/InstancesApi.md @@ -83,7 +83,7 @@ No authorization required # **createInstanceInstancesPut** -> Object createInstanceInstancesPut(name, storage, schemaStr, dbServerName, storageUid, accountId, instanceId, authorization, requestBody) +> Object createInstanceInstancesPut(name, storage, schemaStr, dbServerName, storageUid, accountId, authorization, requestBody) Create Instance @@ -108,11 +108,10 @@ public class Example { String dbServerName = "dbServerName_example"; // String | String storageUid = "storageUid_example"; // String | UUID accountId = UUID.randomUUID(); // UUID | - UUID instanceId = UUID.randomUUID(); // UUID | String authorization = "authorization_example"; // String | Map requestBody = null; // Map | try { - Object result = apiInstance.createInstanceInstancesPut(name, storage, schemaStr, dbServerName, storageUid, accountId, instanceId, authorization, requestBody); + Object result = apiInstance.createInstanceInstancesPut(name, storage, schemaStr, dbServerName, storageUid, accountId, authorization, requestBody); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling InstancesApi#createInstanceInstancesPut"); @@ -135,7 +134,6 @@ public class Example { | **dbServerName** | **String**| | [optional] | | **storageUid** | **String**| | [optional] | | **accountId** | **UUID**| | [optional] | -| **instanceId** | **UUID**| | [optional] | | **authorization** | **String**| | [optional] | | **requestBody** | [**Map<String, Object>**](Object.md)| | [optional] | diff --git a/docs/OrganizationsApi.md b/docs/OrganizationsApi.md index 1bcf91e..c3cea4d 100644 --- a/docs/OrganizationsApi.md +++ b/docs/OrganizationsApi.md @@ -13,7 +13,7 @@ All URIs are relative to *https://staging.laminhub.com/api* # **addOrganizationMemberOrganizationsOrganizationIdMembersAccountIdPut** -> Object addOrganizationMemberOrganizationsOrganizationIdMembersAccountIdPut(organizationId, accountId, addOrganizationMemberRequestBody, instanceId, authorization) +> Object addOrganizationMemberOrganizationsOrganizationIdMembersAccountIdPut(organizationId, accountId, addOrganizationMemberRequestBody, authorization) Add Organization Member @@ -37,10 +37,9 @@ public class Example { UUID organizationId = UUID.randomUUID(); // UUID | UUID accountId = UUID.randomUUID(); // UUID | AddOrganizationMemberRequestBody addOrganizationMemberRequestBody = new AddOrganizationMemberRequestBody(); // AddOrganizationMemberRequestBody | - UUID instanceId = UUID.randomUUID(); // UUID | String authorization = "authorization_example"; // String | try { - Object result = apiInstance.addOrganizationMemberOrganizationsOrganizationIdMembersAccountIdPut(organizationId, accountId, addOrganizationMemberRequestBody, instanceId, authorization); + Object result = apiInstance.addOrganizationMemberOrganizationsOrganizationIdMembersAccountIdPut(organizationId, accountId, addOrganizationMemberRequestBody, authorization); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling OrganizationsApi#addOrganizationMemberOrganizationsOrganizationIdMembersAccountIdPut"); @@ -60,7 +59,6 @@ public class Example { | **organizationId** | **UUID**| | | | **accountId** | **UUID**| | | | **addOrganizationMemberRequestBody** | [**AddOrganizationMemberRequestBody**](AddOrganizationMemberRequestBody.md)| | | -| **instanceId** | **UUID**| | [optional] | | **authorization** | **String**| | [optional] | ### Return type @@ -84,7 +82,7 @@ No authorization required # **getOrganizationOrganizationsOrganizationIdGet** -> Object getOrganizationOrganizationsOrganizationIdGet(organizationId, instanceId, authorization) +> Object getOrganizationOrganizationsOrganizationIdGet(organizationId, authorization) Get Organization @@ -106,10 +104,9 @@ public class Example { OrganizationsApi apiInstance = new OrganizationsApi(defaultClient); UUID organizationId = UUID.randomUUID(); // UUID | - UUID instanceId = UUID.randomUUID(); // UUID | String authorization = "authorization_example"; // String | try { - Object result = apiInstance.getOrganizationOrganizationsOrganizationIdGet(organizationId, instanceId, authorization); + Object result = apiInstance.getOrganizationOrganizationsOrganizationIdGet(organizationId, authorization); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling OrganizationsApi#getOrganizationOrganizationsOrganizationIdGet"); @@ -127,7 +124,6 @@ public class Example { | Name | Type | Description | Notes | |------------- | ------------- | ------------- | -------------| | **organizationId** | **UUID**| | | -| **instanceId** | **UUID**| | [optional] | | **authorization** | **String**| | [optional] | ### Return type @@ -151,7 +147,7 @@ No authorization required # **listOrganizationMembersOrganizationsOrganizationIdMembersGet** -> Object listOrganizationMembersOrganizationsOrganizationIdMembersGet(organizationId, instanceId, authorization) +> Object listOrganizationMembersOrganizationsOrganizationIdMembersGet(organizationId, authorization) List Organization Members @@ -173,10 +169,9 @@ public class Example { OrganizationsApi apiInstance = new OrganizationsApi(defaultClient); UUID organizationId = UUID.randomUUID(); // UUID | - UUID instanceId = UUID.randomUUID(); // UUID | String authorization = "authorization_example"; // String | try { - Object result = apiInstance.listOrganizationMembersOrganizationsOrganizationIdMembersGet(organizationId, instanceId, authorization); + Object result = apiInstance.listOrganizationMembersOrganizationsOrganizationIdMembersGet(organizationId, authorization); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling OrganizationsApi#listOrganizationMembersOrganizationsOrganizationIdMembersGet"); @@ -194,7 +189,6 @@ public class Example { | Name | Type | Description | Notes | |------------- | ------------- | ------------- | -------------| | **organizationId** | **UUID**| | | -| **instanceId** | **UUID**| | [optional] | | **authorization** | **String**| | [optional] | ### Return type @@ -218,7 +212,7 @@ No authorization required # **removeOrganizationMemberOrganizationsOrganizationIdMembersAccountIdDelete** -> Object removeOrganizationMemberOrganizationsOrganizationIdMembersAccountIdDelete(organizationId, accountId, instanceId, authorization) +> Object removeOrganizationMemberOrganizationsOrganizationIdMembersAccountIdDelete(organizationId, accountId, authorization) Remove Organization Member @@ -241,10 +235,9 @@ public class Example { OrganizationsApi apiInstance = new OrganizationsApi(defaultClient); UUID organizationId = UUID.randomUUID(); // UUID | UUID accountId = UUID.randomUUID(); // UUID | - UUID instanceId = UUID.randomUUID(); // UUID | String authorization = "authorization_example"; // String | try { - Object result = apiInstance.removeOrganizationMemberOrganizationsOrganizationIdMembersAccountIdDelete(organizationId, accountId, instanceId, authorization); + Object result = apiInstance.removeOrganizationMemberOrganizationsOrganizationIdMembersAccountIdDelete(organizationId, accountId, authorization); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling OrganizationsApi#removeOrganizationMemberOrganizationsOrganizationIdMembersAccountIdDelete"); @@ -263,7 +256,6 @@ public class Example { |------------- | ------------- | ------------- | -------------| | **organizationId** | **UUID**| | | | **accountId** | **UUID**| | | -| **instanceId** | **UUID**| | [optional] | | **authorization** | **String**| | [optional] | ### Return type @@ -287,7 +279,7 @@ No authorization required # **updateOrganizationMemberOrganizationsOrganizationIdMembersAccountIdPatch** -> Object updateOrganizationMemberOrganizationsOrganizationIdMembersAccountIdPatch(organizationId, accountId, updateOrganizationMemberRequestBody, instanceId, authorization) +> Object updateOrganizationMemberOrganizationsOrganizationIdMembersAccountIdPatch(organizationId, accountId, updateOrganizationMemberRequestBody, authorization) Update Organization Member @@ -311,10 +303,9 @@ public class Example { UUID organizationId = UUID.randomUUID(); // UUID | UUID accountId = UUID.randomUUID(); // UUID | UpdateOrganizationMemberRequestBody updateOrganizationMemberRequestBody = new UpdateOrganizationMemberRequestBody(); // UpdateOrganizationMemberRequestBody | - UUID instanceId = UUID.randomUUID(); // UUID | String authorization = "authorization_example"; // String | try { - Object result = apiInstance.updateOrganizationMemberOrganizationsOrganizationIdMembersAccountIdPatch(organizationId, accountId, updateOrganizationMemberRequestBody, instanceId, authorization); + Object result = apiInstance.updateOrganizationMemberOrganizationsOrganizationIdMembersAccountIdPatch(organizationId, accountId, updateOrganizationMemberRequestBody, authorization); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling OrganizationsApi#updateOrganizationMemberOrganizationsOrganizationIdMembersAccountIdPatch"); @@ -334,7 +325,6 @@ public class Example { | **organizationId** | **UUID**| | | | **accountId** | **UUID**| | | | **updateOrganizationMemberRequestBody** | [**UpdateOrganizationMemberRequestBody**](UpdateOrganizationMemberRequestBody.md)| | | -| **instanceId** | **UUID**| | [optional] | | **authorization** | **String**| | [optional] | ### Return type diff --git a/docs/SpacesApi.md b/docs/SpacesApi.md index f4c4037..5d8093e 100644 --- a/docs/SpacesApi.md +++ b/docs/SpacesApi.md @@ -22,7 +22,7 @@ All URIs are relative to *https://staging.laminhub.com/api* # **addSpaceCollaboratorSpacesSpaceIdCollaboratorsPut** -> Object addSpaceCollaboratorSpacesSpaceIdCollaboratorsPut(spaceId, addSpaceCollaboratorRequestBody, instanceId, authorization) +> Object addSpaceCollaboratorSpacesSpaceIdCollaboratorsPut(spaceId, addSpaceCollaboratorRequestBody, authorization) Add Space Collaborator @@ -45,10 +45,9 @@ public class Example { SpacesApi apiInstance = new SpacesApi(defaultClient); UUID spaceId = UUID.randomUUID(); // UUID | AddSpaceCollaboratorRequestBody addSpaceCollaboratorRequestBody = new AddSpaceCollaboratorRequestBody(); // AddSpaceCollaboratorRequestBody | - UUID instanceId = UUID.randomUUID(); // UUID | String authorization = "authorization_example"; // String | try { - Object result = apiInstance.addSpaceCollaboratorSpacesSpaceIdCollaboratorsPut(spaceId, addSpaceCollaboratorRequestBody, instanceId, authorization); + Object result = apiInstance.addSpaceCollaboratorSpacesSpaceIdCollaboratorsPut(spaceId, addSpaceCollaboratorRequestBody, authorization); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling SpacesApi#addSpaceCollaboratorSpacesSpaceIdCollaboratorsPut"); @@ -67,7 +66,6 @@ public class Example { |------------- | ------------- | ------------- | -------------| | **spaceId** | **UUID**| | | | **addSpaceCollaboratorRequestBody** | [**AddSpaceCollaboratorRequestBody**](AddSpaceCollaboratorRequestBody.md)| | | -| **instanceId** | **UUID**| | [optional] | | **authorization** | **String**| | [optional] | ### Return type @@ -158,7 +156,7 @@ No authorization required # **createSpaceSpacesPut** -> Object createSpaceSpacesPut(createSpaceRequestBody, instanceId, authorization) +> Object createSpaceSpacesPut(createSpaceRequestBody, authorization) Create Space @@ -180,10 +178,9 @@ public class Example { SpacesApi apiInstance = new SpacesApi(defaultClient); CreateSpaceRequestBody createSpaceRequestBody = new CreateSpaceRequestBody(); // CreateSpaceRequestBody | - UUID instanceId = UUID.randomUUID(); // UUID | String authorization = "authorization_example"; // String | try { - Object result = apiInstance.createSpaceSpacesPut(createSpaceRequestBody, instanceId, authorization); + Object result = apiInstance.createSpaceSpacesPut(createSpaceRequestBody, authorization); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling SpacesApi#createSpaceSpacesPut"); @@ -201,7 +198,6 @@ public class Example { | Name | Type | Description | Notes | |------------- | ------------- | ------------- | -------------| | **createSpaceRequestBody** | [**CreateSpaceRequestBody**](CreateSpaceRequestBody.md)| | | -| **instanceId** | **UUID**| | [optional] | | **authorization** | **String**| | [optional] | ### Return type @@ -225,7 +221,7 @@ No authorization required # **deleteSpaceSpacesSpaceIdDelete** -> Object deleteSpaceSpacesSpaceIdDelete(spaceId, instanceId, authorization) +> Object deleteSpaceSpacesSpaceIdDelete(spaceId, authorization) Delete Space @@ -247,10 +243,9 @@ public class Example { SpacesApi apiInstance = new SpacesApi(defaultClient); UUID spaceId = UUID.randomUUID(); // UUID | - UUID instanceId = UUID.randomUUID(); // UUID | String authorization = "authorization_example"; // String | try { - Object result = apiInstance.deleteSpaceSpacesSpaceIdDelete(spaceId, instanceId, authorization); + Object result = apiInstance.deleteSpaceSpacesSpaceIdDelete(spaceId, authorization); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling SpacesApi#deleteSpaceSpacesSpaceIdDelete"); @@ -268,7 +263,6 @@ public class Example { | Name | Type | Description | Notes | |------------- | ------------- | ------------- | -------------| | **spaceId** | **UUID**| | | -| **instanceId** | **UUID**| | [optional] | | **authorization** | **String**| | [optional] | ### Return type @@ -359,7 +353,7 @@ No authorization required # **getSpaceSpacesSpaceIdGet** -> Object getSpaceSpacesSpaceIdGet(spaceId, instanceId, authorization) +> Object getSpaceSpacesSpaceIdGet(spaceId, authorization) Get Space @@ -381,10 +375,9 @@ public class Example { SpacesApi apiInstance = new SpacesApi(defaultClient); UUID spaceId = UUID.randomUUID(); // UUID | - UUID instanceId = UUID.randomUUID(); // UUID | String authorization = "authorization_example"; // String | try { - Object result = apiInstance.getSpaceSpacesSpaceIdGet(spaceId, instanceId, authorization); + Object result = apiInstance.getSpaceSpacesSpaceIdGet(spaceId, authorization); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling SpacesApi#getSpaceSpacesSpaceIdGet"); @@ -402,7 +395,6 @@ public class Example { | Name | Type | Description | Notes | |------------- | ------------- | ------------- | -------------| | **spaceId** | **UUID**| | | -| **instanceId** | **UUID**| | [optional] | | **authorization** | **String**| | [optional] | ### Return type @@ -491,7 +483,7 @@ No authorization required # **listInstancesUsingSpaceSpacesSpaceIdInstancesGet** -> Object listInstancesUsingSpaceSpacesSpaceIdInstancesGet(spaceId, instanceId, authorization) +> Object listInstancesUsingSpaceSpacesSpaceIdInstancesGet(spaceId, authorization) List Instances Using Space @@ -513,10 +505,9 @@ public class Example { SpacesApi apiInstance = new SpacesApi(defaultClient); UUID spaceId = UUID.randomUUID(); // UUID | - UUID instanceId = UUID.randomUUID(); // UUID | String authorization = "authorization_example"; // String | try { - Object result = apiInstance.listInstancesUsingSpaceSpacesSpaceIdInstancesGet(spaceId, instanceId, authorization); + Object result = apiInstance.listInstancesUsingSpaceSpacesSpaceIdInstancesGet(spaceId, authorization); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling SpacesApi#listInstancesUsingSpaceSpacesSpaceIdInstancesGet"); @@ -534,7 +525,6 @@ public class Example { | Name | Type | Description | Notes | |------------- | ------------- | ------------- | -------------| | **spaceId** | **UUID**| | | -| **instanceId** | **UUID**| | [optional] | | **authorization** | **String**| | [optional] | ### Return type @@ -558,7 +548,7 @@ No authorization required # **listOrganizationSpacesSpacesOrganizationsOrganizationIdGet** -> Object listOrganizationSpacesSpacesOrganizationsOrganizationIdGet(organizationId, instanceId, authorization) +> Object listOrganizationSpacesSpacesOrganizationsOrganizationIdGet(organizationId, authorization) List Organization Spaces @@ -580,10 +570,9 @@ public class Example { SpacesApi apiInstance = new SpacesApi(defaultClient); UUID organizationId = UUID.randomUUID(); // UUID | - UUID instanceId = UUID.randomUUID(); // UUID | String authorization = "authorization_example"; // String | try { - Object result = apiInstance.listOrganizationSpacesSpacesOrganizationsOrganizationIdGet(organizationId, instanceId, authorization); + Object result = apiInstance.listOrganizationSpacesSpacesOrganizationsOrganizationIdGet(organizationId, authorization); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling SpacesApi#listOrganizationSpacesSpacesOrganizationsOrganizationIdGet"); @@ -601,7 +590,6 @@ public class Example { | Name | Type | Description | Notes | |------------- | ------------- | ------------- | -------------| | **organizationId** | **UUID**| | | -| **instanceId** | **UUID**| | [optional] | | **authorization** | **String**| | [optional] | ### Return type @@ -625,7 +613,7 @@ No authorization required # **listSpaceCollaboratorsSpacesSpaceIdCollaboratorsGet** -> Object listSpaceCollaboratorsSpacesSpaceIdCollaboratorsGet(spaceId, instanceId, authorization) +> Object listSpaceCollaboratorsSpacesSpaceIdCollaboratorsGet(spaceId, authorization) List Space Collaborators @@ -647,10 +635,9 @@ public class Example { SpacesApi apiInstance = new SpacesApi(defaultClient); UUID spaceId = UUID.randomUUID(); // UUID | - UUID instanceId = UUID.randomUUID(); // UUID | String authorization = "authorization_example"; // String | try { - Object result = apiInstance.listSpaceCollaboratorsSpacesSpaceIdCollaboratorsGet(spaceId, instanceId, authorization); + Object result = apiInstance.listSpaceCollaboratorsSpacesSpaceIdCollaboratorsGet(spaceId, authorization); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling SpacesApi#listSpaceCollaboratorsSpacesSpaceIdCollaboratorsGet"); @@ -668,7 +655,6 @@ public class Example { | Name | Type | Description | Notes | |------------- | ------------- | ------------- | -------------| | **spaceId** | **UUID**| | | -| **instanceId** | **UUID**| | [optional] | | **authorization** | **String**| | [optional] | ### Return type @@ -761,7 +747,7 @@ No authorization required # **removeSpaceCollaboratorSpacesSpaceIdCollaboratorsDelete** -> Object removeSpaceCollaboratorSpacesSpaceIdCollaboratorsDelete(spaceId, accountId, teamId, instanceId, authorization) +> Object removeSpaceCollaboratorSpacesSpaceIdCollaboratorsDelete(spaceId, accountId, teamId, authorization) Remove Space Collaborator @@ -785,10 +771,9 @@ public class Example { UUID spaceId = UUID.randomUUID(); // UUID | UUID accountId = UUID.randomUUID(); // UUID | UUID teamId = UUID.randomUUID(); // UUID | - UUID instanceId = UUID.randomUUID(); // UUID | String authorization = "authorization_example"; // String | try { - Object result = apiInstance.removeSpaceCollaboratorSpacesSpaceIdCollaboratorsDelete(spaceId, accountId, teamId, instanceId, authorization); + Object result = apiInstance.removeSpaceCollaboratorSpacesSpaceIdCollaboratorsDelete(spaceId, accountId, teamId, authorization); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling SpacesApi#removeSpaceCollaboratorSpacesSpaceIdCollaboratorsDelete"); @@ -808,7 +793,6 @@ public class Example { | **spaceId** | **UUID**| | | | **accountId** | **UUID**| | [optional] | | **teamId** | **UUID**| | [optional] | -| **instanceId** | **UUID**| | [optional] | | **authorization** | **String**| | [optional] | ### Return type @@ -832,7 +816,7 @@ No authorization required # **updateSpaceCollaboratorSpacesSpaceIdCollaboratorsPatch** -> Object updateSpaceCollaboratorSpacesSpaceIdCollaboratorsPatch(spaceId, updateSpaceCollaboratorRequestBody, instanceId, authorization) +> Object updateSpaceCollaboratorSpacesSpaceIdCollaboratorsPatch(spaceId, updateSpaceCollaboratorRequestBody, authorization) Update Space Collaborator @@ -855,10 +839,9 @@ public class Example { SpacesApi apiInstance = new SpacesApi(defaultClient); UUID spaceId = UUID.randomUUID(); // UUID | UpdateSpaceCollaboratorRequestBody updateSpaceCollaboratorRequestBody = new UpdateSpaceCollaboratorRequestBody(); // UpdateSpaceCollaboratorRequestBody | - UUID instanceId = UUID.randomUUID(); // UUID | String authorization = "authorization_example"; // String | try { - Object result = apiInstance.updateSpaceCollaboratorSpacesSpaceIdCollaboratorsPatch(spaceId, updateSpaceCollaboratorRequestBody, instanceId, authorization); + Object result = apiInstance.updateSpaceCollaboratorSpacesSpaceIdCollaboratorsPatch(spaceId, updateSpaceCollaboratorRequestBody, authorization); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling SpacesApi#updateSpaceCollaboratorSpacesSpaceIdCollaboratorsPatch"); @@ -877,7 +860,6 @@ public class Example { |------------- | ------------- | ------------- | -------------| | **spaceId** | **UUID**| | | | **updateSpaceCollaboratorRequestBody** | [**UpdateSpaceCollaboratorRequestBody**](UpdateSpaceCollaboratorRequestBody.md)| | | -| **instanceId** | **UUID**| | [optional] | | **authorization** | **String**| | [optional] | ### Return type @@ -901,7 +883,7 @@ No authorization required # **updateSpaceSpacesSpaceIdPatch** -> Object updateSpaceSpacesSpaceIdPatch(spaceId, updateSpaceRequestBody, instanceId, authorization) +> Object updateSpaceSpacesSpaceIdPatch(spaceId, updateSpaceRequestBody, authorization) Update Space @@ -924,10 +906,9 @@ public class Example { SpacesApi apiInstance = new SpacesApi(defaultClient); UUID spaceId = UUID.randomUUID(); // UUID | UpdateSpaceRequestBody updateSpaceRequestBody = new UpdateSpaceRequestBody(); // UpdateSpaceRequestBody | - UUID instanceId = UUID.randomUUID(); // UUID | String authorization = "authorization_example"; // String | try { - Object result = apiInstance.updateSpaceSpacesSpaceIdPatch(spaceId, updateSpaceRequestBody, instanceId, authorization); + Object result = apiInstance.updateSpaceSpacesSpaceIdPatch(spaceId, updateSpaceRequestBody, authorization); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling SpacesApi#updateSpaceSpacesSpaceIdPatch"); @@ -946,7 +927,6 @@ public class Example { |------------- | ------------- | ------------- | -------------| | **spaceId** | **UUID**| | | | **updateSpaceRequestBody** | [**UpdateSpaceRequestBody**](UpdateSpaceRequestBody.md)| | | -| **instanceId** | **UUID**| | [optional] | | **authorization** | **String**| | [optional] | ### Return type diff --git a/docs/StoragesApi.md b/docs/StoragesApi.md index df4364b..5777b5e 100644 --- a/docs/StoragesApi.md +++ b/docs/StoragesApi.md @@ -9,7 +9,7 @@ All URIs are relative to *https://staging.laminhub.com/api* # **grantS3PermissionsStoragesS3BucketNamePermissionsPut** -> Object grantS3PermissionsStoragesS3BucketNamePermissionsPut(bucketName, s3PermissionsRequest, awsAccountId, awsUserName, instanceId, authorization) +> Object grantS3PermissionsStoragesS3BucketNamePermissionsPut(bucketName, s3PermissionsRequest, awsAccountId, awsUserName, authorization) Grant S3 Permissions @@ -32,10 +32,9 @@ public class Example { S3PermissionsRequest s3PermissionsRequest = new S3PermissionsRequest(); // S3PermissionsRequest | String awsAccountId = "767398070972"; // String | String awsUserName = "lamin-manager"; // String | - UUID instanceId = UUID.randomUUID(); // UUID | String authorization = "authorization_example"; // String | try { - Object result = apiInstance.grantS3PermissionsStoragesS3BucketNamePermissionsPut(bucketName, s3PermissionsRequest, awsAccountId, awsUserName, instanceId, authorization); + Object result = apiInstance.grantS3PermissionsStoragesS3BucketNamePermissionsPut(bucketName, s3PermissionsRequest, awsAccountId, awsUserName, authorization); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling StoragesApi#grantS3PermissionsStoragesS3BucketNamePermissionsPut"); @@ -56,7 +55,6 @@ public class Example { | **s3PermissionsRequest** | [**S3PermissionsRequest**](S3PermissionsRequest.md)| | | | **awsAccountId** | **String**| | [optional] [default to 767398070972] | | **awsUserName** | **String**| | [optional] [default to lamin-manager] | -| **instanceId** | **UUID**| | [optional] | | **authorization** | **String**| | [optional] | ### Return type diff --git a/docs/TeamsApi.md b/docs/TeamsApi.md index 23f97d3..dccd3fc 100644 --- a/docs/TeamsApi.md +++ b/docs/TeamsApi.md @@ -17,7 +17,7 @@ All URIs are relative to *https://staging.laminhub.com/api* # **addTeamMemberTeamsTeamIdMembersAccountIdPut** -> Object addTeamMemberTeamsTeamIdMembersAccountIdPut(teamId, accountId, addTeamMemberRequestBody, instanceId, authorization) +> Object addTeamMemberTeamsTeamIdMembersAccountIdPut(teamId, accountId, addTeamMemberRequestBody, authorization) Add Team Member @@ -41,10 +41,9 @@ public class Example { UUID teamId = UUID.randomUUID(); // UUID | UUID accountId = UUID.randomUUID(); // UUID | AddTeamMemberRequestBody addTeamMemberRequestBody = new AddTeamMemberRequestBody(); // AddTeamMemberRequestBody | - UUID instanceId = UUID.randomUUID(); // UUID | String authorization = "authorization_example"; // String | try { - Object result = apiInstance.addTeamMemberTeamsTeamIdMembersAccountIdPut(teamId, accountId, addTeamMemberRequestBody, instanceId, authorization); + Object result = apiInstance.addTeamMemberTeamsTeamIdMembersAccountIdPut(teamId, accountId, addTeamMemberRequestBody, authorization); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling TeamsApi#addTeamMemberTeamsTeamIdMembersAccountIdPut"); @@ -64,7 +63,6 @@ public class Example { | **teamId** | **UUID**| | | | **accountId** | **UUID**| | | | **addTeamMemberRequestBody** | [**AddTeamMemberRequestBody**](AddTeamMemberRequestBody.md)| | | -| **instanceId** | **UUID**| | [optional] | | **authorization** | **String**| | [optional] | ### Return type @@ -88,7 +86,7 @@ No authorization required # **createTeamTeamsPut** -> Object createTeamTeamsPut(createTeamRequestBody, instanceId, authorization) +> Object createTeamTeamsPut(createTeamRequestBody, authorization) Create Team @@ -110,10 +108,9 @@ public class Example { TeamsApi apiInstance = new TeamsApi(defaultClient); CreateTeamRequestBody createTeamRequestBody = new CreateTeamRequestBody(); // CreateTeamRequestBody | - UUID instanceId = UUID.randomUUID(); // UUID | String authorization = "authorization_example"; // String | try { - Object result = apiInstance.createTeamTeamsPut(createTeamRequestBody, instanceId, authorization); + Object result = apiInstance.createTeamTeamsPut(createTeamRequestBody, authorization); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling TeamsApi#createTeamTeamsPut"); @@ -131,7 +128,6 @@ public class Example { | Name | Type | Description | Notes | |------------- | ------------- | ------------- | -------------| | **createTeamRequestBody** | [**CreateTeamRequestBody**](CreateTeamRequestBody.md)| | | -| **instanceId** | **UUID**| | [optional] | | **authorization** | **String**| | [optional] | ### Return type @@ -155,7 +151,7 @@ No authorization required # **deleteTeamTeamsTeamIdDelete** -> Object deleteTeamTeamsTeamIdDelete(teamId, instanceId, authorization) +> Object deleteTeamTeamsTeamIdDelete(teamId, authorization) Delete Team @@ -177,10 +173,9 @@ public class Example { TeamsApi apiInstance = new TeamsApi(defaultClient); UUID teamId = UUID.randomUUID(); // UUID | - UUID instanceId = UUID.randomUUID(); // UUID | String authorization = "authorization_example"; // String | try { - Object result = apiInstance.deleteTeamTeamsTeamIdDelete(teamId, instanceId, authorization); + Object result = apiInstance.deleteTeamTeamsTeamIdDelete(teamId, authorization); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling TeamsApi#deleteTeamTeamsTeamIdDelete"); @@ -198,7 +193,6 @@ public class Example { | Name | Type | Description | Notes | |------------- | ------------- | ------------- | -------------| | **teamId** | **UUID**| | | -| **instanceId** | **UUID**| | [optional] | | **authorization** | **String**| | [optional] | ### Return type @@ -222,7 +216,7 @@ No authorization required # **getTeamTeamsTeamIdGet** -> Object getTeamTeamsTeamIdGet(teamId, instanceId, authorization) +> Object getTeamTeamsTeamIdGet(teamId, authorization) Get Team @@ -244,10 +238,9 @@ public class Example { TeamsApi apiInstance = new TeamsApi(defaultClient); UUID teamId = UUID.randomUUID(); // UUID | - UUID instanceId = UUID.randomUUID(); // UUID | String authorization = "authorization_example"; // String | try { - Object result = apiInstance.getTeamTeamsTeamIdGet(teamId, instanceId, authorization); + Object result = apiInstance.getTeamTeamsTeamIdGet(teamId, authorization); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling TeamsApi#getTeamTeamsTeamIdGet"); @@ -265,7 +258,6 @@ public class Example { | Name | Type | Description | Notes | |------------- | ------------- | ------------- | -------------| | **teamId** | **UUID**| | | -| **instanceId** | **UUID**| | [optional] | | **authorization** | **String**| | [optional] | ### Return type @@ -289,7 +281,7 @@ No authorization required # **listOrganizationTeamsTeamsOrganizationsOrganizationIdGet** -> Object listOrganizationTeamsTeamsOrganizationsOrganizationIdGet(organizationId, instanceId, authorization) +> Object listOrganizationTeamsTeamsOrganizationsOrganizationIdGet(organizationId, authorization) List Organization Teams @@ -311,10 +303,9 @@ public class Example { TeamsApi apiInstance = new TeamsApi(defaultClient); UUID organizationId = UUID.randomUUID(); // UUID | - UUID instanceId = UUID.randomUUID(); // UUID | String authorization = "authorization_example"; // String | try { - Object result = apiInstance.listOrganizationTeamsTeamsOrganizationsOrganizationIdGet(organizationId, instanceId, authorization); + Object result = apiInstance.listOrganizationTeamsTeamsOrganizationsOrganizationIdGet(organizationId, authorization); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling TeamsApi#listOrganizationTeamsTeamsOrganizationsOrganizationIdGet"); @@ -332,7 +323,6 @@ public class Example { | Name | Type | Description | Notes | |------------- | ------------- | ------------- | -------------| | **organizationId** | **UUID**| | | -| **instanceId** | **UUID**| | [optional] | | **authorization** | **String**| | [optional] | ### Return type @@ -356,7 +346,7 @@ No authorization required # **listTeamMembersTeamsTeamIdMembersGet** -> Object listTeamMembersTeamsTeamIdMembersGet(teamId, instanceId, authorization) +> Object listTeamMembersTeamsTeamIdMembersGet(teamId, authorization) List Team Members @@ -378,10 +368,9 @@ public class Example { TeamsApi apiInstance = new TeamsApi(defaultClient); UUID teamId = UUID.randomUUID(); // UUID | - UUID instanceId = UUID.randomUUID(); // UUID | String authorization = "authorization_example"; // String | try { - Object result = apiInstance.listTeamMembersTeamsTeamIdMembersGet(teamId, instanceId, authorization); + Object result = apiInstance.listTeamMembersTeamsTeamIdMembersGet(teamId, authorization); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling TeamsApi#listTeamMembersTeamsTeamIdMembersGet"); @@ -399,7 +388,6 @@ public class Example { | Name | Type | Description | Notes | |------------- | ------------- | ------------- | -------------| | **teamId** | **UUID**| | | -| **instanceId** | **UUID**| | [optional] | | **authorization** | **String**| | [optional] | ### Return type @@ -423,7 +411,7 @@ No authorization required # **removeTeamMemberTeamsTeamIdMembersAccountIdDelete** -> Object removeTeamMemberTeamsTeamIdMembersAccountIdDelete(teamId, accountId, instanceId, authorization) +> Object removeTeamMemberTeamsTeamIdMembersAccountIdDelete(teamId, accountId, authorization) Remove Team Member @@ -446,10 +434,9 @@ public class Example { TeamsApi apiInstance = new TeamsApi(defaultClient); UUID teamId = UUID.randomUUID(); // UUID | UUID accountId = UUID.randomUUID(); // UUID | - UUID instanceId = UUID.randomUUID(); // UUID | String authorization = "authorization_example"; // String | try { - Object result = apiInstance.removeTeamMemberTeamsTeamIdMembersAccountIdDelete(teamId, accountId, instanceId, authorization); + Object result = apiInstance.removeTeamMemberTeamsTeamIdMembersAccountIdDelete(teamId, accountId, authorization); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling TeamsApi#removeTeamMemberTeamsTeamIdMembersAccountIdDelete"); @@ -468,7 +455,6 @@ public class Example { |------------- | ------------- | ------------- | -------------| | **teamId** | **UUID**| | | | **accountId** | **UUID**| | | -| **instanceId** | **UUID**| | [optional] | | **authorization** | **String**| | [optional] | ### Return type @@ -492,7 +478,7 @@ No authorization required # **updateTeamMemberTeamsTeamIdMembersAccountIdPatch** -> Object updateTeamMemberTeamsTeamIdMembersAccountIdPatch(teamId, accountId, updateTeamMemberRequestBody, instanceId, authorization) +> Object updateTeamMemberTeamsTeamIdMembersAccountIdPatch(teamId, accountId, updateTeamMemberRequestBody, authorization) Update Team Member @@ -516,10 +502,9 @@ public class Example { UUID teamId = UUID.randomUUID(); // UUID | UUID accountId = UUID.randomUUID(); // UUID | UpdateTeamMemberRequestBody updateTeamMemberRequestBody = new UpdateTeamMemberRequestBody(); // UpdateTeamMemberRequestBody | - UUID instanceId = UUID.randomUUID(); // UUID | String authorization = "authorization_example"; // String | try { - Object result = apiInstance.updateTeamMemberTeamsTeamIdMembersAccountIdPatch(teamId, accountId, updateTeamMemberRequestBody, instanceId, authorization); + Object result = apiInstance.updateTeamMemberTeamsTeamIdMembersAccountIdPatch(teamId, accountId, updateTeamMemberRequestBody, authorization); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling TeamsApi#updateTeamMemberTeamsTeamIdMembersAccountIdPatch"); @@ -539,7 +524,6 @@ public class Example { | **teamId** | **UUID**| | | | **accountId** | **UUID**| | | | **updateTeamMemberRequestBody** | [**UpdateTeamMemberRequestBody**](UpdateTeamMemberRequestBody.md)| | | -| **instanceId** | **UUID**| | [optional] | | **authorization** | **String**| | [optional] | ### Return type @@ -563,7 +547,7 @@ No authorization required # **updateTeamTeamsTeamIdPatch** -> Object updateTeamTeamsTeamIdPatch(teamId, updateTeamRequestBody, instanceId, authorization) +> Object updateTeamTeamsTeamIdPatch(teamId, updateTeamRequestBody, authorization) Update Team @@ -586,10 +570,9 @@ public class Example { TeamsApi apiInstance = new TeamsApi(defaultClient); UUID teamId = UUID.randomUUID(); // UUID | UpdateTeamRequestBody updateTeamRequestBody = new UpdateTeamRequestBody(); // UpdateTeamRequestBody | - UUID instanceId = UUID.randomUUID(); // UUID | String authorization = "authorization_example"; // String | try { - Object result = apiInstance.updateTeamTeamsTeamIdPatch(teamId, updateTeamRequestBody, instanceId, authorization); + Object result = apiInstance.updateTeamTeamsTeamIdPatch(teamId, updateTeamRequestBody, authorization); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling TeamsApi#updateTeamTeamsTeamIdPatch"); @@ -608,7 +591,6 @@ public class Example { |------------- | ------------- | ------------- | -------------| | **teamId** | **UUID**| | | | **updateTeamRequestBody** | [**UpdateTeamRequestBody**](UpdateTeamRequestBody.md)| | | -| **instanceId** | **UUID**| | [optional] | | **authorization** | **String**| | [optional] | ### Return type diff --git a/generate.sh b/generate.sh index de3b062..fa73ca5 100755 --- a/generate.sh +++ b/generate.sh @@ -5,6 +5,8 @@ # INPUT_SPEC="https://aws.us-east-1.lamin.ai/api/openapi.json" INPUT_SPEC="https://staging.laminhub.com/api/openapi.json" +rm -r ./src + npx @openapitools/openapi-generator-cli generate \ --generator-name java \ --config config.yaml \ diff --git a/pom.xml b/pom.xml index d6aadc6..2e4bbbb 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ lamin-api-client jar lamin-api-client - 0.0.4 + 0.0.5-rc1 https://github.com/laminlabs/lamin-api-client-java Java client for the Lamin API diff --git a/src/main/java/ai/lamin/lamin_api_client/ApiClient.java b/src/main/java/ai/lamin/lamin_api_client/ApiClient.java index a88f052..a3955a4 100644 --- a/src/main/java/ai/lamin/lamin_api_client/ApiClient.java +++ b/src/main/java/ai/lamin/lamin_api_client/ApiClient.java @@ -139,7 +139,7 @@ private void init() { json = new JSON(); // Set default User-Agent. - setUserAgent("OpenAPI-Generator/0.0.4/java"); + setUserAgent("OpenAPI-Generator/0.0.5-rc1/java"); authentications = new HashMap(); } diff --git a/src/main/java/ai/lamin/lamin_api_client/ApiException.java b/src/main/java/ai/lamin/lamin_api_client/ApiException.java index 7fa3e49..3d9cc71 100644 --- a/src/main/java/ai/lamin/lamin_api_client/ApiException.java +++ b/src/main/java/ai/lamin/lamin_api_client/ApiException.java @@ -21,7 +21,7 @@ *

ApiException class.

*/ @SuppressWarnings("serial") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-12T11:16:27.287169544+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class ApiException extends Exception { private static final long serialVersionUID = 1L; diff --git a/src/main/java/ai/lamin/lamin_api_client/Configuration.java b/src/main/java/ai/lamin/lamin_api_client/Configuration.java index 71c37ff..52a99b4 100644 --- a/src/main/java/ai/lamin/lamin_api_client/Configuration.java +++ b/src/main/java/ai/lamin/lamin_api_client/Configuration.java @@ -13,9 +13,9 @@ package ai.lamin.lamin_api_client; -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-12T11:16:27.287169544+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class Configuration { - public static final String VERSION = "0.0.4"; + public static final String VERSION = "0.0.5-rc1"; private static volatile ApiClient defaultApiClient = new ApiClient(); diff --git a/src/main/java/ai/lamin/lamin_api_client/Pair.java b/src/main/java/ai/lamin/lamin_api_client/Pair.java index b14ca7d..e53fc19 100644 --- a/src/main/java/ai/lamin/lamin_api_client/Pair.java +++ b/src/main/java/ai/lamin/lamin_api_client/Pair.java @@ -13,7 +13,7 @@ package ai.lamin.lamin_api_client; -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-12T11:16:27.287169544+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class Pair { private String name = ""; private String value = ""; diff --git a/src/main/java/ai/lamin/lamin_api_client/ServerConfiguration.java b/src/main/java/ai/lamin/lamin_api_client/ServerConfiguration.java index eb50feb..7e32fa0 100644 --- a/src/main/java/ai/lamin/lamin_api_client/ServerConfiguration.java +++ b/src/main/java/ai/lamin/lamin_api_client/ServerConfiguration.java @@ -18,7 +18,7 @@ /** * Representing a Server configuration. */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-12T11:16:27.287169544+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class ServerConfiguration { public String URL; public String description; diff --git a/src/main/java/ai/lamin/lamin_api_client/ServerVariable.java b/src/main/java/ai/lamin/lamin_api_client/ServerVariable.java index 9b2e44b..d7da7aa 100644 --- a/src/main/java/ai/lamin/lamin_api_client/ServerVariable.java +++ b/src/main/java/ai/lamin/lamin_api_client/ServerVariable.java @@ -18,7 +18,7 @@ /** * Representing a Server Variable for server URL template substitution. */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-12T11:16:27.287169544+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class ServerVariable { public String description; public String defaultValue; diff --git a/src/main/java/ai/lamin/lamin_api_client/StringUtil.java b/src/main/java/ai/lamin/lamin_api_client/StringUtil.java index 207e9f2..ae5fa24 100644 --- a/src/main/java/ai/lamin/lamin_api_client/StringUtil.java +++ b/src/main/java/ai/lamin/lamin_api_client/StringUtil.java @@ -16,7 +16,7 @@ import java.util.Collection; import java.util.Iterator; -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-12T11:16:27.287169544+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class StringUtil { /** * Check if the given array contains the given value (with case-insensitive comparison). diff --git a/src/main/java/ai/lamin/lamin_api_client/api/AccountsApi.java b/src/main/java/ai/lamin/lamin_api_client/api/AccountsApi.java index 6771a5d..73572dd 100644 --- a/src/main/java/ai/lamin/lamin_api_client/api/AccountsApi.java +++ b/src/main/java/ai/lamin/lamin_api_client/api/AccountsApi.java @@ -28,7 +28,6 @@ import ai.lamin.lamin_api_client.model.HTTPValidationError; -import java.util.UUID; import java.lang.reflect.Type; import java.util.ArrayList; @@ -75,7 +74,6 @@ public void setCustomBaseUrl(String customBaseUrl) { /** * Build call for getCallerAccountAccountGet - * @param instanceId (optional) * @param authorization (optional) * @param _callback Callback for upload/download progress * @return Call to execute @@ -88,7 +86,7 @@ public void setCustomBaseUrl(String customBaseUrl) { 422 Validation Error - */ - public okhttp3.Call getCallerAccountAccountGetCall(UUID instanceId, String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getCallerAccountAccountGetCall(String authorization, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -113,10 +111,6 @@ public okhttp3.Call getCallerAccountAccountGetCall(UUID instanceId, String autho Map localVarCookieParams = new HashMap(); Map localVarFormParams = new HashMap(); - if (instanceId != null) { - localVarQueryParams.addAll(localVarApiClient.parameterToPair("instance_id", instanceId)); - } - final String[] localVarAccepts = { "application/json" }; @@ -142,15 +136,14 @@ public okhttp3.Call getCallerAccountAccountGetCall(UUID instanceId, String autho } @SuppressWarnings("rawtypes") - private okhttp3.Call getCallerAccountAccountGetValidateBeforeCall(UUID instanceId, String authorization, final ApiCallback _callback) throws ApiException { - return getCallerAccountAccountGetCall(instanceId, authorization, _callback); + private okhttp3.Call getCallerAccountAccountGetValidateBeforeCall(String authorization, final ApiCallback _callback) throws ApiException { + return getCallerAccountAccountGetCall(authorization, _callback); } /** * Get Caller Account * - * @param instanceId (optional) * @param authorization (optional) * @return Object * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body @@ -162,15 +155,14 @@ private okhttp3.Call getCallerAccountAccountGetValidateBeforeCall(UUID instanceI 422 Validation Error - */ - public Object getCallerAccountAccountGet(UUID instanceId, String authorization) throws ApiException { - ApiResponse localVarResp = getCallerAccountAccountGetWithHttpInfo(instanceId, authorization); + public Object getCallerAccountAccountGet(String authorization) throws ApiException { + ApiResponse localVarResp = getCallerAccountAccountGetWithHttpInfo(authorization); return localVarResp.getData(); } /** * Get Caller Account * - * @param instanceId (optional) * @param authorization (optional) * @return ApiResponse<Object> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body @@ -182,8 +174,8 @@ public Object getCallerAccountAccountGet(UUID instanceId, String authorization) 422 Validation Error - */ - public ApiResponse getCallerAccountAccountGetWithHttpInfo(UUID instanceId, String authorization) throws ApiException { - okhttp3.Call localVarCall = getCallerAccountAccountGetValidateBeforeCall(instanceId, authorization, null); + public ApiResponse getCallerAccountAccountGetWithHttpInfo(String authorization) throws ApiException { + okhttp3.Call localVarCall = getCallerAccountAccountGetValidateBeforeCall(authorization, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -191,7 +183,6 @@ public ApiResponse getCallerAccountAccountGetWithHttpInfo(UUID instanceI /** * Get Caller Account (asynchronously) * - * @param instanceId (optional) * @param authorization (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call @@ -204,9 +195,9 @@ public ApiResponse getCallerAccountAccountGetWithHttpInfo(UUID instanceI 422 Validation Error - */ - public okhttp3.Call getCallerAccountAccountGetAsync(UUID instanceId, String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getCallerAccountAccountGetAsync(String authorization, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = getCallerAccountAccountGetValidateBeforeCall(instanceId, authorization, _callback); + okhttp3.Call localVarCall = getCallerAccountAccountGetValidateBeforeCall(authorization, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; diff --git a/src/main/java/ai/lamin/lamin_api_client/api/DbServerApi.java b/src/main/java/ai/lamin/lamin_api_client/api/DbServerApi.java index a19f06a..235a15d 100644 --- a/src/main/java/ai/lamin/lamin_api_client/api/DbServerApi.java +++ b/src/main/java/ai/lamin/lamin_api_client/api/DbServerApi.java @@ -29,7 +29,6 @@ import ai.lamin.lamin_api_client.model.HTTPValidationError; import ai.lamin.lamin_api_client.model.RegisterDbServerBody; -import java.util.UUID; import java.lang.reflect.Type; import java.util.ArrayList; @@ -77,7 +76,6 @@ public void setCustomBaseUrl(String customBaseUrl) { /** * Build call for checkDbServerAccessDbServerCheckAccessPost * @param name (required) - * @param instanceId (optional) * @param authorization (optional) * @param _callback Callback for upload/download progress * @return Call to execute @@ -90,7 +88,7 @@ public void setCustomBaseUrl(String customBaseUrl) { 422 Validation Error - */ - public okhttp3.Call checkDbServerAccessDbServerCheckAccessPostCall(String name, UUID instanceId, String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call checkDbServerAccessDbServerCheckAccessPostCall(String name, String authorization, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -119,10 +117,6 @@ public okhttp3.Call checkDbServerAccessDbServerCheckAccessPostCall(String name, localVarQueryParams.addAll(localVarApiClient.parameterToPair("name", name)); } - if (instanceId != null) { - localVarQueryParams.addAll(localVarApiClient.parameterToPair("instance_id", instanceId)); - } - final String[] localVarAccepts = { "application/json" }; @@ -148,13 +142,13 @@ public okhttp3.Call checkDbServerAccessDbServerCheckAccessPostCall(String name, } @SuppressWarnings("rawtypes") - private okhttp3.Call checkDbServerAccessDbServerCheckAccessPostValidateBeforeCall(String name, UUID instanceId, String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call checkDbServerAccessDbServerCheckAccessPostValidateBeforeCall(String name, String authorization, final ApiCallback _callback) throws ApiException { // verify the required parameter 'name' is set if (name == null) { throw new ApiException("Missing the required parameter 'name' when calling checkDbServerAccessDbServerCheckAccessPost(Async)"); } - return checkDbServerAccessDbServerCheckAccessPostCall(name, instanceId, authorization, _callback); + return checkDbServerAccessDbServerCheckAccessPostCall(name, authorization, _callback); } @@ -162,7 +156,6 @@ private okhttp3.Call checkDbServerAccessDbServerCheckAccessPostValidateBeforeCal * Check Db Server Access * * @param name (required) - * @param instanceId (optional) * @param authorization (optional) * @return Object * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body @@ -174,8 +167,8 @@ private okhttp3.Call checkDbServerAccessDbServerCheckAccessPostValidateBeforeCal 422 Validation Error - */ - public Object checkDbServerAccessDbServerCheckAccessPost(String name, UUID instanceId, String authorization) throws ApiException { - ApiResponse localVarResp = checkDbServerAccessDbServerCheckAccessPostWithHttpInfo(name, instanceId, authorization); + public Object checkDbServerAccessDbServerCheckAccessPost(String name, String authorization) throws ApiException { + ApiResponse localVarResp = checkDbServerAccessDbServerCheckAccessPostWithHttpInfo(name, authorization); return localVarResp.getData(); } @@ -183,7 +176,6 @@ public Object checkDbServerAccessDbServerCheckAccessPost(String name, UUID insta * Check Db Server Access * * @param name (required) - * @param instanceId (optional) * @param authorization (optional) * @return ApiResponse<Object> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body @@ -195,8 +187,8 @@ public Object checkDbServerAccessDbServerCheckAccessPost(String name, UUID insta 422 Validation Error - */ - public ApiResponse checkDbServerAccessDbServerCheckAccessPostWithHttpInfo(String name, UUID instanceId, String authorization) throws ApiException { - okhttp3.Call localVarCall = checkDbServerAccessDbServerCheckAccessPostValidateBeforeCall(name, instanceId, authorization, null); + public ApiResponse checkDbServerAccessDbServerCheckAccessPostWithHttpInfo(String name, String authorization) throws ApiException { + okhttp3.Call localVarCall = checkDbServerAccessDbServerCheckAccessPostValidateBeforeCall(name, authorization, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -205,7 +197,6 @@ public ApiResponse checkDbServerAccessDbServerCheckAccessPostWithHttpInf * Check Db Server Access (asynchronously) * * @param name (required) - * @param instanceId (optional) * @param authorization (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call @@ -218,9 +209,9 @@ public ApiResponse checkDbServerAccessDbServerCheckAccessPostWithHttpInf 422 Validation Error - */ - public okhttp3.Call checkDbServerAccessDbServerCheckAccessPostAsync(String name, UUID instanceId, String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call checkDbServerAccessDbServerCheckAccessPostAsync(String name, String authorization, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = checkDbServerAccessDbServerCheckAccessPostValidateBeforeCall(name, instanceId, authorization, _callback); + okhttp3.Call localVarCall = checkDbServerAccessDbServerCheckAccessPostValidateBeforeCall(name, authorization, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -228,7 +219,6 @@ public okhttp3.Call checkDbServerAccessDbServerCheckAccessPostAsync(String name, /** * Build call for registerDbServerDbServerRegisterPost * @param registerDbServerBody (required) - * @param instanceId (optional) * @param authorization (optional) * @param _callback Callback for upload/download progress * @return Call to execute @@ -241,7 +231,7 @@ public okhttp3.Call checkDbServerAccessDbServerCheckAccessPostAsync(String name, 422 Validation Error - */ - public okhttp3.Call registerDbServerDbServerRegisterPostCall(RegisterDbServerBody registerDbServerBody, UUID instanceId, String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call registerDbServerDbServerRegisterPostCall(RegisterDbServerBody registerDbServerBody, String authorization, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -266,10 +256,6 @@ public okhttp3.Call registerDbServerDbServerRegisterPostCall(RegisterDbServerBod Map localVarCookieParams = new HashMap(); Map localVarFormParams = new HashMap(); - if (instanceId != null) { - localVarQueryParams.addAll(localVarApiClient.parameterToPair("instance_id", instanceId)); - } - final String[] localVarAccepts = { "application/json" }; @@ -296,13 +282,13 @@ public okhttp3.Call registerDbServerDbServerRegisterPostCall(RegisterDbServerBod } @SuppressWarnings("rawtypes") - private okhttp3.Call registerDbServerDbServerRegisterPostValidateBeforeCall(RegisterDbServerBody registerDbServerBody, UUID instanceId, String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call registerDbServerDbServerRegisterPostValidateBeforeCall(RegisterDbServerBody registerDbServerBody, String authorization, final ApiCallback _callback) throws ApiException { // verify the required parameter 'registerDbServerBody' is set if (registerDbServerBody == null) { throw new ApiException("Missing the required parameter 'registerDbServerBody' when calling registerDbServerDbServerRegisterPost(Async)"); } - return registerDbServerDbServerRegisterPostCall(registerDbServerBody, instanceId, authorization, _callback); + return registerDbServerDbServerRegisterPostCall(registerDbServerBody, authorization, _callback); } @@ -310,7 +296,6 @@ private okhttp3.Call registerDbServerDbServerRegisterPostValidateBeforeCall(Regi * Register Db Server * * @param registerDbServerBody (required) - * @param instanceId (optional) * @param authorization (optional) * @return Object * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body @@ -322,8 +307,8 @@ private okhttp3.Call registerDbServerDbServerRegisterPostValidateBeforeCall(Regi 422 Validation Error - */ - public Object registerDbServerDbServerRegisterPost(RegisterDbServerBody registerDbServerBody, UUID instanceId, String authorization) throws ApiException { - ApiResponse localVarResp = registerDbServerDbServerRegisterPostWithHttpInfo(registerDbServerBody, instanceId, authorization); + public Object registerDbServerDbServerRegisterPost(RegisterDbServerBody registerDbServerBody, String authorization) throws ApiException { + ApiResponse localVarResp = registerDbServerDbServerRegisterPostWithHttpInfo(registerDbServerBody, authorization); return localVarResp.getData(); } @@ -331,7 +316,6 @@ public Object registerDbServerDbServerRegisterPost(RegisterDbServerBody register * Register Db Server * * @param registerDbServerBody (required) - * @param instanceId (optional) * @param authorization (optional) * @return ApiResponse<Object> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body @@ -343,8 +327,8 @@ public Object registerDbServerDbServerRegisterPost(RegisterDbServerBody register 422 Validation Error - */ - public ApiResponse registerDbServerDbServerRegisterPostWithHttpInfo(RegisterDbServerBody registerDbServerBody, UUID instanceId, String authorization) throws ApiException { - okhttp3.Call localVarCall = registerDbServerDbServerRegisterPostValidateBeforeCall(registerDbServerBody, instanceId, authorization, null); + public ApiResponse registerDbServerDbServerRegisterPostWithHttpInfo(RegisterDbServerBody registerDbServerBody, String authorization) throws ApiException { + okhttp3.Call localVarCall = registerDbServerDbServerRegisterPostValidateBeforeCall(registerDbServerBody, authorization, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -353,7 +337,6 @@ public ApiResponse registerDbServerDbServerRegisterPostWithHttpInfo(Regi * Register Db Server (asynchronously) * * @param registerDbServerBody (required) - * @param instanceId (optional) * @param authorization (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call @@ -366,9 +349,9 @@ public ApiResponse registerDbServerDbServerRegisterPostWithHttpInfo(Regi 422 Validation Error - */ - public okhttp3.Call registerDbServerDbServerRegisterPostAsync(RegisterDbServerBody registerDbServerBody, UUID instanceId, String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call registerDbServerDbServerRegisterPostAsync(RegisterDbServerBody registerDbServerBody, String authorization, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = registerDbServerDbServerRegisterPostValidateBeforeCall(registerDbServerBody, instanceId, authorization, _callback); + okhttp3.Call localVarCall = registerDbServerDbServerRegisterPostValidateBeforeCall(registerDbServerBody, authorization, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; diff --git a/src/main/java/ai/lamin/lamin_api_client/api/InstanceArtifactsApi.java b/src/main/java/ai/lamin/lamin_api_client/api/InstanceArtifactsApi.java index 372a0b3..8591aca 100644 --- a/src/main/java/ai/lamin/lamin_api_client/api/InstanceArtifactsApi.java +++ b/src/main/java/ai/lamin/lamin_api_client/api/InstanceArtifactsApi.java @@ -225,6 +225,159 @@ public okhttp3.Call createArtifactInstancesInstanceIdArtifactsCreatePostAsync(UU localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } + /** + * Build call for getArtifactByPathInstancesInstanceIdArtifactsByPathGet + * @param instanceId (required) + * @param path (required) + * @param authorization (optional) + * @param _callback Callback for upload/download progress + * @return Call to execute + * @throws ApiException If fail to serialize the request body object + * @http.response.details + + + + + +
Response Details
Status Code Description Response Headers
200 Successful Response -
422 Validation Error -
+ */ + public okhttp3.Call getArtifactByPathInstancesInstanceIdArtifactsByPathGetCall(UUID instanceId, String path, String authorization, final ApiCallback _callback) throws ApiException { + String basePath = null; + // Operation Servers + String[] localBasePaths = new String[] { }; + + // Determine Base Path to Use + if (localCustomBaseUrl != null){ + basePath = localCustomBaseUrl; + } else if ( localBasePaths.length > 0 ) { + basePath = localBasePaths[localHostIndex]; + } else { + basePath = null; + } + + Object localVarPostBody = null; + + // create path and map variables + String localVarPath = "/instances/{instance_id}/artifacts/by-path" + .replace("{" + "instance_id" + "}", localVarApiClient.escapeString(instanceId.toString())); + + List localVarQueryParams = new ArrayList(); + List localVarCollectionQueryParams = new ArrayList(); + Map localVarHeaderParams = new HashMap(); + Map localVarCookieParams = new HashMap(); + Map localVarFormParams = new HashMap(); + + if (path != null) { + localVarQueryParams.addAll(localVarApiClient.parameterToPair("path", path)); + } + + final String[] localVarAccepts = { + "application/json" + }; + final String localVarAccept = localVarApiClient.selectHeaderAccept(localVarAccepts); + if (localVarAccept != null) { + localVarHeaderParams.put("Accept", localVarAccept); + } + + final String[] localVarContentTypes = { + }; + final String localVarContentType = localVarApiClient.selectHeaderContentType(localVarContentTypes); + if (localVarContentType != null) { + localVarHeaderParams.put("Content-Type", localVarContentType); + } + + if (authorization != null) { + localVarHeaderParams.put("Authorization", localVarApiClient.parameterToString(authorization)); + } + + + String[] localVarAuthNames = new String[] { }; + return localVarApiClient.buildCall(basePath, localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); + } + + @SuppressWarnings("rawtypes") + private okhttp3.Call getArtifactByPathInstancesInstanceIdArtifactsByPathGetValidateBeforeCall(UUID instanceId, String path, String authorization, final ApiCallback _callback) throws ApiException { + // verify the required parameter 'instanceId' is set + if (instanceId == null) { + throw new ApiException("Missing the required parameter 'instanceId' when calling getArtifactByPathInstancesInstanceIdArtifactsByPathGet(Async)"); + } + + // verify the required parameter 'path' is set + if (path == null) { + throw new ApiException("Missing the required parameter 'path' when calling getArtifactByPathInstancesInstanceIdArtifactsByPathGet(Async)"); + } + + return getArtifactByPathInstancesInstanceIdArtifactsByPathGetCall(instanceId, path, authorization, _callback); + + } + + /** + * Get Artifact By Path + * + * @param instanceId (required) + * @param path (required) + * @param authorization (optional) + * @return Object + * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body + * @http.response.details + + + + + +
Response Details
Status Code Description Response Headers
200 Successful Response -
422 Validation Error -
+ */ + public Object getArtifactByPathInstancesInstanceIdArtifactsByPathGet(UUID instanceId, String path, String authorization) throws ApiException { + ApiResponse localVarResp = getArtifactByPathInstancesInstanceIdArtifactsByPathGetWithHttpInfo(instanceId, path, authorization); + return localVarResp.getData(); + } + + /** + * Get Artifact By Path + * + * @param instanceId (required) + * @param path (required) + * @param authorization (optional) + * @return ApiResponse<Object> + * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body + * @http.response.details + + + + + +
Response Details
Status Code Description Response Headers
200 Successful Response -
422 Validation Error -
+ */ + public ApiResponse getArtifactByPathInstancesInstanceIdArtifactsByPathGetWithHttpInfo(UUID instanceId, String path, String authorization) throws ApiException { + okhttp3.Call localVarCall = getArtifactByPathInstancesInstanceIdArtifactsByPathGetValidateBeforeCall(instanceId, path, authorization, null); + Type localVarReturnType = new TypeToken(){}.getType(); + return localVarApiClient.execute(localVarCall, localVarReturnType); + } + + /** + * Get Artifact By Path (asynchronously) + * + * @param instanceId (required) + * @param path (required) + * @param authorization (optional) + * @param _callback The callback to be executed when the API call finishes + * @return The request call + * @throws ApiException If fail to process the API call, e.g. serializing the request body object + * @http.response.details + + + + + +
Response Details
Status Code Description Response Headers
200 Successful Response -
422 Validation Error -
+ */ + public okhttp3.Call getArtifactByPathInstancesInstanceIdArtifactsByPathGetAsync(UUID instanceId, String path, String authorization, final ApiCallback _callback) throws ApiException { + + okhttp3.Call localVarCall = getArtifactByPathInstancesInstanceIdArtifactsByPathGetValidateBeforeCall(instanceId, path, authorization, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); + localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); + return localVarCall; + } /** * Build call for uploadArtifactInstancesInstanceIdArtifactsUploadPost * @param instanceId (required) diff --git a/src/main/java/ai/lamin/lamin_api_client/api/InstancesApi.java b/src/main/java/ai/lamin/lamin_api_client/api/InstancesApi.java index 6f98a6a..9a0b5d0 100644 --- a/src/main/java/ai/lamin/lamin_api_client/api/InstancesApi.java +++ b/src/main/java/ai/lamin/lamin_api_client/api/InstancesApi.java @@ -233,7 +233,6 @@ public okhttp3.Call addCollaboratorInstancesInstanceIdCollaboratorsPutAsync(UUID * @param dbServerName (optional) * @param storageUid (optional) * @param accountId (optional) - * @param instanceId (optional) * @param authorization (optional) * @param requestBody (optional) * @param _callback Callback for upload/download progress @@ -247,7 +246,7 @@ public okhttp3.Call addCollaboratorInstancesInstanceIdCollaboratorsPutAsync(UUID 422 Validation Error - */ - public okhttp3.Call createInstanceInstancesPutCall(String name, String storage, String schemaStr, String dbServerName, String storageUid, UUID accountId, UUID instanceId, String authorization, Map requestBody, final ApiCallback _callback) throws ApiException { + public okhttp3.Call createInstanceInstancesPutCall(String name, String storage, String schemaStr, String dbServerName, String storageUid, UUID accountId, String authorization, Map requestBody, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -296,10 +295,6 @@ public okhttp3.Call createInstanceInstancesPutCall(String name, String storage, localVarQueryParams.addAll(localVarApiClient.parameterToPair("account_id", accountId)); } - if (instanceId != null) { - localVarQueryParams.addAll(localVarApiClient.parameterToPair("instance_id", instanceId)); - } - final String[] localVarAccepts = { "application/json" }; @@ -326,13 +321,13 @@ public okhttp3.Call createInstanceInstancesPutCall(String name, String storage, } @SuppressWarnings("rawtypes") - private okhttp3.Call createInstanceInstancesPutValidateBeforeCall(String name, String storage, String schemaStr, String dbServerName, String storageUid, UUID accountId, UUID instanceId, String authorization, Map requestBody, final ApiCallback _callback) throws ApiException { + private okhttp3.Call createInstanceInstancesPutValidateBeforeCall(String name, String storage, String schemaStr, String dbServerName, String storageUid, UUID accountId, String authorization, Map requestBody, final ApiCallback _callback) throws ApiException { // verify the required parameter 'name' is set if (name == null) { throw new ApiException("Missing the required parameter 'name' when calling createInstanceInstancesPut(Async)"); } - return createInstanceInstancesPutCall(name, storage, schemaStr, dbServerName, storageUid, accountId, instanceId, authorization, requestBody, _callback); + return createInstanceInstancesPutCall(name, storage, schemaStr, dbServerName, storageUid, accountId, authorization, requestBody, _callback); } @@ -345,7 +340,6 @@ private okhttp3.Call createInstanceInstancesPutValidateBeforeCall(String name, S * @param dbServerName (optional) * @param storageUid (optional) * @param accountId (optional) - * @param instanceId (optional) * @param authorization (optional) * @param requestBody (optional) * @return Object @@ -358,8 +352,8 @@ private okhttp3.Call createInstanceInstancesPutValidateBeforeCall(String name, S 422 Validation Error - */ - public Object createInstanceInstancesPut(String name, String storage, String schemaStr, String dbServerName, String storageUid, UUID accountId, UUID instanceId, String authorization, Map requestBody) throws ApiException { - ApiResponse localVarResp = createInstanceInstancesPutWithHttpInfo(name, storage, schemaStr, dbServerName, storageUid, accountId, instanceId, authorization, requestBody); + public Object createInstanceInstancesPut(String name, String storage, String schemaStr, String dbServerName, String storageUid, UUID accountId, String authorization, Map requestBody) throws ApiException { + ApiResponse localVarResp = createInstanceInstancesPutWithHttpInfo(name, storage, schemaStr, dbServerName, storageUid, accountId, authorization, requestBody); return localVarResp.getData(); } @@ -372,7 +366,6 @@ public Object createInstanceInstancesPut(String name, String storage, String sch * @param dbServerName (optional) * @param storageUid (optional) * @param accountId (optional) - * @param instanceId (optional) * @param authorization (optional) * @param requestBody (optional) * @return ApiResponse<Object> @@ -385,8 +378,8 @@ public Object createInstanceInstancesPut(String name, String storage, String sch 422 Validation Error - */ - public ApiResponse createInstanceInstancesPutWithHttpInfo(String name, String storage, String schemaStr, String dbServerName, String storageUid, UUID accountId, UUID instanceId, String authorization, Map requestBody) throws ApiException { - okhttp3.Call localVarCall = createInstanceInstancesPutValidateBeforeCall(name, storage, schemaStr, dbServerName, storageUid, accountId, instanceId, authorization, requestBody, null); + public ApiResponse createInstanceInstancesPutWithHttpInfo(String name, String storage, String schemaStr, String dbServerName, String storageUid, UUID accountId, String authorization, Map requestBody) throws ApiException { + okhttp3.Call localVarCall = createInstanceInstancesPutValidateBeforeCall(name, storage, schemaStr, dbServerName, storageUid, accountId, authorization, requestBody, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -400,7 +393,6 @@ public ApiResponse createInstanceInstancesPutWithHttpInfo(String name, S * @param dbServerName (optional) * @param storageUid (optional) * @param accountId (optional) - * @param instanceId (optional) * @param authorization (optional) * @param requestBody (optional) * @param _callback The callback to be executed when the API call finishes @@ -414,9 +406,9 @@ public ApiResponse createInstanceInstancesPutWithHttpInfo(String name, S 422 Validation Error - */ - public okhttp3.Call createInstanceInstancesPutAsync(String name, String storage, String schemaStr, String dbServerName, String storageUid, UUID accountId, UUID instanceId, String authorization, Map requestBody, final ApiCallback _callback) throws ApiException { + public okhttp3.Call createInstanceInstancesPutAsync(String name, String storage, String schemaStr, String dbServerName, String storageUid, UUID accountId, String authorization, Map requestBody, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = createInstanceInstancesPutValidateBeforeCall(name, storage, schemaStr, dbServerName, storageUid, accountId, instanceId, authorization, requestBody, _callback); + okhttp3.Call localVarCall = createInstanceInstancesPutValidateBeforeCall(name, storage, schemaStr, dbServerName, storageUid, accountId, authorization, requestBody, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; diff --git a/src/main/java/ai/lamin/lamin_api_client/api/OrganizationsApi.java b/src/main/java/ai/lamin/lamin_api_client/api/OrganizationsApi.java index 810ceff..5edaa1b 100644 --- a/src/main/java/ai/lamin/lamin_api_client/api/OrganizationsApi.java +++ b/src/main/java/ai/lamin/lamin_api_client/api/OrganizationsApi.java @@ -80,7 +80,6 @@ public void setCustomBaseUrl(String customBaseUrl) { * @param organizationId (required) * @param accountId (required) * @param addOrganizationMemberRequestBody (required) - * @param instanceId (optional) * @param authorization (optional) * @param _callback Callback for upload/download progress * @return Call to execute @@ -93,7 +92,7 @@ public void setCustomBaseUrl(String customBaseUrl) { 422 Validation Error - */ - public okhttp3.Call addOrganizationMemberOrganizationsOrganizationIdMembersAccountIdPutCall(UUID organizationId, UUID accountId, AddOrganizationMemberRequestBody addOrganizationMemberRequestBody, UUID instanceId, String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call addOrganizationMemberOrganizationsOrganizationIdMembersAccountIdPutCall(UUID organizationId, UUID accountId, AddOrganizationMemberRequestBody addOrganizationMemberRequestBody, String authorization, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -120,10 +119,6 @@ public okhttp3.Call addOrganizationMemberOrganizationsOrganizationIdMembersAccou Map localVarCookieParams = new HashMap(); Map localVarFormParams = new HashMap(); - if (instanceId != null) { - localVarQueryParams.addAll(localVarApiClient.parameterToPair("instance_id", instanceId)); - } - final String[] localVarAccepts = { "application/json" }; @@ -150,7 +145,7 @@ public okhttp3.Call addOrganizationMemberOrganizationsOrganizationIdMembersAccou } @SuppressWarnings("rawtypes") - private okhttp3.Call addOrganizationMemberOrganizationsOrganizationIdMembersAccountIdPutValidateBeforeCall(UUID organizationId, UUID accountId, AddOrganizationMemberRequestBody addOrganizationMemberRequestBody, UUID instanceId, String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call addOrganizationMemberOrganizationsOrganizationIdMembersAccountIdPutValidateBeforeCall(UUID organizationId, UUID accountId, AddOrganizationMemberRequestBody addOrganizationMemberRequestBody, String authorization, final ApiCallback _callback) throws ApiException { // verify the required parameter 'organizationId' is set if (organizationId == null) { throw new ApiException("Missing the required parameter 'organizationId' when calling addOrganizationMemberOrganizationsOrganizationIdMembersAccountIdPut(Async)"); @@ -166,7 +161,7 @@ private okhttp3.Call addOrganizationMemberOrganizationsOrganizationIdMembersAcco throw new ApiException("Missing the required parameter 'addOrganizationMemberRequestBody' when calling addOrganizationMemberOrganizationsOrganizationIdMembersAccountIdPut(Async)"); } - return addOrganizationMemberOrganizationsOrganizationIdMembersAccountIdPutCall(organizationId, accountId, addOrganizationMemberRequestBody, instanceId, authorization, _callback); + return addOrganizationMemberOrganizationsOrganizationIdMembersAccountIdPutCall(organizationId, accountId, addOrganizationMemberRequestBody, authorization, _callback); } @@ -176,7 +171,6 @@ private okhttp3.Call addOrganizationMemberOrganizationsOrganizationIdMembersAcco * @param organizationId (required) * @param accountId (required) * @param addOrganizationMemberRequestBody (required) - * @param instanceId (optional) * @param authorization (optional) * @return Object * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body @@ -188,8 +182,8 @@ private okhttp3.Call addOrganizationMemberOrganizationsOrganizationIdMembersAcco 422 Validation Error - */ - public Object addOrganizationMemberOrganizationsOrganizationIdMembersAccountIdPut(UUID organizationId, UUID accountId, AddOrganizationMemberRequestBody addOrganizationMemberRequestBody, UUID instanceId, String authorization) throws ApiException { - ApiResponse localVarResp = addOrganizationMemberOrganizationsOrganizationIdMembersAccountIdPutWithHttpInfo(organizationId, accountId, addOrganizationMemberRequestBody, instanceId, authorization); + public Object addOrganizationMemberOrganizationsOrganizationIdMembersAccountIdPut(UUID organizationId, UUID accountId, AddOrganizationMemberRequestBody addOrganizationMemberRequestBody, String authorization) throws ApiException { + ApiResponse localVarResp = addOrganizationMemberOrganizationsOrganizationIdMembersAccountIdPutWithHttpInfo(organizationId, accountId, addOrganizationMemberRequestBody, authorization); return localVarResp.getData(); } @@ -199,7 +193,6 @@ public Object addOrganizationMemberOrganizationsOrganizationIdMembersAccountIdPu * @param organizationId (required) * @param accountId (required) * @param addOrganizationMemberRequestBody (required) - * @param instanceId (optional) * @param authorization (optional) * @return ApiResponse<Object> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body @@ -211,8 +204,8 @@ public Object addOrganizationMemberOrganizationsOrganizationIdMembersAccountIdPu 422 Validation Error - */ - public ApiResponse addOrganizationMemberOrganizationsOrganizationIdMembersAccountIdPutWithHttpInfo(UUID organizationId, UUID accountId, AddOrganizationMemberRequestBody addOrganizationMemberRequestBody, UUID instanceId, String authorization) throws ApiException { - okhttp3.Call localVarCall = addOrganizationMemberOrganizationsOrganizationIdMembersAccountIdPutValidateBeforeCall(organizationId, accountId, addOrganizationMemberRequestBody, instanceId, authorization, null); + public ApiResponse addOrganizationMemberOrganizationsOrganizationIdMembersAccountIdPutWithHttpInfo(UUID organizationId, UUID accountId, AddOrganizationMemberRequestBody addOrganizationMemberRequestBody, String authorization) throws ApiException { + okhttp3.Call localVarCall = addOrganizationMemberOrganizationsOrganizationIdMembersAccountIdPutValidateBeforeCall(organizationId, accountId, addOrganizationMemberRequestBody, authorization, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -223,7 +216,6 @@ public ApiResponse addOrganizationMemberOrganizationsOrganizationIdMembe * @param organizationId (required) * @param accountId (required) * @param addOrganizationMemberRequestBody (required) - * @param instanceId (optional) * @param authorization (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call @@ -236,9 +228,9 @@ public ApiResponse addOrganizationMemberOrganizationsOrganizationIdMembe 422 Validation Error - */ - public okhttp3.Call addOrganizationMemberOrganizationsOrganizationIdMembersAccountIdPutAsync(UUID organizationId, UUID accountId, AddOrganizationMemberRequestBody addOrganizationMemberRequestBody, UUID instanceId, String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call addOrganizationMemberOrganizationsOrganizationIdMembersAccountIdPutAsync(UUID organizationId, UUID accountId, AddOrganizationMemberRequestBody addOrganizationMemberRequestBody, String authorization, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = addOrganizationMemberOrganizationsOrganizationIdMembersAccountIdPutValidateBeforeCall(organizationId, accountId, addOrganizationMemberRequestBody, instanceId, authorization, _callback); + okhttp3.Call localVarCall = addOrganizationMemberOrganizationsOrganizationIdMembersAccountIdPutValidateBeforeCall(organizationId, accountId, addOrganizationMemberRequestBody, authorization, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -246,7 +238,6 @@ public okhttp3.Call addOrganizationMemberOrganizationsOrganizationIdMembersAccou /** * Build call for getOrganizationOrganizationsOrganizationIdGet * @param organizationId (required) - * @param instanceId (optional) * @param authorization (optional) * @param _callback Callback for upload/download progress * @return Call to execute @@ -259,7 +250,7 @@ public okhttp3.Call addOrganizationMemberOrganizationsOrganizationIdMembersAccou 422 Validation Error - */ - public okhttp3.Call getOrganizationOrganizationsOrganizationIdGetCall(UUID organizationId, UUID instanceId, String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getOrganizationOrganizationsOrganizationIdGetCall(UUID organizationId, String authorization, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -285,10 +276,6 @@ public okhttp3.Call getOrganizationOrganizationsOrganizationIdGetCall(UUID organ Map localVarCookieParams = new HashMap(); Map localVarFormParams = new HashMap(); - if (instanceId != null) { - localVarQueryParams.addAll(localVarApiClient.parameterToPair("instance_id", instanceId)); - } - final String[] localVarAccepts = { "application/json" }; @@ -314,13 +301,13 @@ public okhttp3.Call getOrganizationOrganizationsOrganizationIdGetCall(UUID organ } @SuppressWarnings("rawtypes") - private okhttp3.Call getOrganizationOrganizationsOrganizationIdGetValidateBeforeCall(UUID organizationId, UUID instanceId, String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call getOrganizationOrganizationsOrganizationIdGetValidateBeforeCall(UUID organizationId, String authorization, final ApiCallback _callback) throws ApiException { // verify the required parameter 'organizationId' is set if (organizationId == null) { throw new ApiException("Missing the required parameter 'organizationId' when calling getOrganizationOrganizationsOrganizationIdGet(Async)"); } - return getOrganizationOrganizationsOrganizationIdGetCall(organizationId, instanceId, authorization, _callback); + return getOrganizationOrganizationsOrganizationIdGetCall(organizationId, authorization, _callback); } @@ -328,7 +315,6 @@ private okhttp3.Call getOrganizationOrganizationsOrganizationIdGetValidateBefore * Get Organization * Get details of a specific organization. Parameters: - **organization_id**: UUID of the organization to retrieve Returns: - **200**: Organization details retrieved successfully - **404**: Organization not found * @param organizationId (required) - * @param instanceId (optional) * @param authorization (optional) * @return Object * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body @@ -340,8 +326,8 @@ private okhttp3.Call getOrganizationOrganizationsOrganizationIdGetValidateBefore 422 Validation Error - */ - public Object getOrganizationOrganizationsOrganizationIdGet(UUID organizationId, UUID instanceId, String authorization) throws ApiException { - ApiResponse localVarResp = getOrganizationOrganizationsOrganizationIdGetWithHttpInfo(organizationId, instanceId, authorization); + public Object getOrganizationOrganizationsOrganizationIdGet(UUID organizationId, String authorization) throws ApiException { + ApiResponse localVarResp = getOrganizationOrganizationsOrganizationIdGetWithHttpInfo(organizationId, authorization); return localVarResp.getData(); } @@ -349,7 +335,6 @@ public Object getOrganizationOrganizationsOrganizationIdGet(UUID organizationId, * Get Organization * Get details of a specific organization. Parameters: - **organization_id**: UUID of the organization to retrieve Returns: - **200**: Organization details retrieved successfully - **404**: Organization not found * @param organizationId (required) - * @param instanceId (optional) * @param authorization (optional) * @return ApiResponse<Object> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body @@ -361,8 +346,8 @@ public Object getOrganizationOrganizationsOrganizationIdGet(UUID organizationId, 422 Validation Error - */ - public ApiResponse getOrganizationOrganizationsOrganizationIdGetWithHttpInfo(UUID organizationId, UUID instanceId, String authorization) throws ApiException { - okhttp3.Call localVarCall = getOrganizationOrganizationsOrganizationIdGetValidateBeforeCall(organizationId, instanceId, authorization, null); + public ApiResponse getOrganizationOrganizationsOrganizationIdGetWithHttpInfo(UUID organizationId, String authorization) throws ApiException { + okhttp3.Call localVarCall = getOrganizationOrganizationsOrganizationIdGetValidateBeforeCall(organizationId, authorization, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -371,7 +356,6 @@ public ApiResponse getOrganizationOrganizationsOrganizationIdGetWithHttp * Get Organization (asynchronously) * Get details of a specific organization. Parameters: - **organization_id**: UUID of the organization to retrieve Returns: - **200**: Organization details retrieved successfully - **404**: Organization not found * @param organizationId (required) - * @param instanceId (optional) * @param authorization (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call @@ -384,9 +368,9 @@ public ApiResponse getOrganizationOrganizationsOrganizationIdGetWithHttp 422 Validation Error - */ - public okhttp3.Call getOrganizationOrganizationsOrganizationIdGetAsync(UUID organizationId, UUID instanceId, String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getOrganizationOrganizationsOrganizationIdGetAsync(UUID organizationId, String authorization, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = getOrganizationOrganizationsOrganizationIdGetValidateBeforeCall(organizationId, instanceId, authorization, _callback); + okhttp3.Call localVarCall = getOrganizationOrganizationsOrganizationIdGetValidateBeforeCall(organizationId, authorization, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -394,7 +378,6 @@ public okhttp3.Call getOrganizationOrganizationsOrganizationIdGetAsync(UUID orga /** * Build call for listOrganizationMembersOrganizationsOrganizationIdMembersGet * @param organizationId (required) - * @param instanceId (optional) * @param authorization (optional) * @param _callback Callback for upload/download progress * @return Call to execute @@ -407,7 +390,7 @@ public okhttp3.Call getOrganizationOrganizationsOrganizationIdGetAsync(UUID orga 422 Validation Error - */ - public okhttp3.Call listOrganizationMembersOrganizationsOrganizationIdMembersGetCall(UUID organizationId, UUID instanceId, String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call listOrganizationMembersOrganizationsOrganizationIdMembersGetCall(UUID organizationId, String authorization, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -433,10 +416,6 @@ public okhttp3.Call listOrganizationMembersOrganizationsOrganizationIdMembersGet Map localVarCookieParams = new HashMap(); Map localVarFormParams = new HashMap(); - if (instanceId != null) { - localVarQueryParams.addAll(localVarApiClient.parameterToPair("instance_id", instanceId)); - } - final String[] localVarAccepts = { "application/json" }; @@ -462,13 +441,13 @@ public okhttp3.Call listOrganizationMembersOrganizationsOrganizationIdMembersGet } @SuppressWarnings("rawtypes") - private okhttp3.Call listOrganizationMembersOrganizationsOrganizationIdMembersGetValidateBeforeCall(UUID organizationId, UUID instanceId, String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call listOrganizationMembersOrganizationsOrganizationIdMembersGetValidateBeforeCall(UUID organizationId, String authorization, final ApiCallback _callback) throws ApiException { // verify the required parameter 'organizationId' is set if (organizationId == null) { throw new ApiException("Missing the required parameter 'organizationId' when calling listOrganizationMembersOrganizationsOrganizationIdMembersGet(Async)"); } - return listOrganizationMembersOrganizationsOrganizationIdMembersGetCall(organizationId, instanceId, authorization, _callback); + return listOrganizationMembersOrganizationsOrganizationIdMembersGetCall(organizationId, authorization, _callback); } @@ -476,7 +455,6 @@ private okhttp3.Call listOrganizationMembersOrganizationsOrganizationIdMembersGe * List Organization Members * List all members of an organization. Parameters: - **organization_id**: UUID of the organization to list members for Returns: - **200**: List of organization members retrieved successfully * @param organizationId (required) - * @param instanceId (optional) * @param authorization (optional) * @return Object * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body @@ -488,8 +466,8 @@ private okhttp3.Call listOrganizationMembersOrganizationsOrganizationIdMembersGe 422 Validation Error - */ - public Object listOrganizationMembersOrganizationsOrganizationIdMembersGet(UUID organizationId, UUID instanceId, String authorization) throws ApiException { - ApiResponse localVarResp = listOrganizationMembersOrganizationsOrganizationIdMembersGetWithHttpInfo(organizationId, instanceId, authorization); + public Object listOrganizationMembersOrganizationsOrganizationIdMembersGet(UUID organizationId, String authorization) throws ApiException { + ApiResponse localVarResp = listOrganizationMembersOrganizationsOrganizationIdMembersGetWithHttpInfo(organizationId, authorization); return localVarResp.getData(); } @@ -497,7 +475,6 @@ public Object listOrganizationMembersOrganizationsOrganizationIdMembersGet(UUID * List Organization Members * List all members of an organization. Parameters: - **organization_id**: UUID of the organization to list members for Returns: - **200**: List of organization members retrieved successfully * @param organizationId (required) - * @param instanceId (optional) * @param authorization (optional) * @return ApiResponse<Object> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body @@ -509,8 +486,8 @@ public Object listOrganizationMembersOrganizationsOrganizationIdMembersGet(UUID 422 Validation Error - */ - public ApiResponse listOrganizationMembersOrganizationsOrganizationIdMembersGetWithHttpInfo(UUID organizationId, UUID instanceId, String authorization) throws ApiException { - okhttp3.Call localVarCall = listOrganizationMembersOrganizationsOrganizationIdMembersGetValidateBeforeCall(organizationId, instanceId, authorization, null); + public ApiResponse listOrganizationMembersOrganizationsOrganizationIdMembersGetWithHttpInfo(UUID organizationId, String authorization) throws ApiException { + okhttp3.Call localVarCall = listOrganizationMembersOrganizationsOrganizationIdMembersGetValidateBeforeCall(organizationId, authorization, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -519,7 +496,6 @@ public ApiResponse listOrganizationMembersOrganizationsOrganizationIdMem * List Organization Members (asynchronously) * List all members of an organization. Parameters: - **organization_id**: UUID of the organization to list members for Returns: - **200**: List of organization members retrieved successfully * @param organizationId (required) - * @param instanceId (optional) * @param authorization (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call @@ -532,9 +508,9 @@ public ApiResponse listOrganizationMembersOrganizationsOrganizationIdMem 422 Validation Error - */ - public okhttp3.Call listOrganizationMembersOrganizationsOrganizationIdMembersGetAsync(UUID organizationId, UUID instanceId, String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call listOrganizationMembersOrganizationsOrganizationIdMembersGetAsync(UUID organizationId, String authorization, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = listOrganizationMembersOrganizationsOrganizationIdMembersGetValidateBeforeCall(organizationId, instanceId, authorization, _callback); + okhttp3.Call localVarCall = listOrganizationMembersOrganizationsOrganizationIdMembersGetValidateBeforeCall(organizationId, authorization, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -543,7 +519,6 @@ public okhttp3.Call listOrganizationMembersOrganizationsOrganizationIdMembersGet * Build call for removeOrganizationMemberOrganizationsOrganizationIdMembersAccountIdDelete * @param organizationId (required) * @param accountId (required) - * @param instanceId (optional) * @param authorization (optional) * @param _callback Callback for upload/download progress * @return Call to execute @@ -556,7 +531,7 @@ public okhttp3.Call listOrganizationMembersOrganizationsOrganizationIdMembersGet 422 Validation Error - */ - public okhttp3.Call removeOrganizationMemberOrganizationsOrganizationIdMembersAccountIdDeleteCall(UUID organizationId, UUID accountId, UUID instanceId, String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call removeOrganizationMemberOrganizationsOrganizationIdMembersAccountIdDeleteCall(UUID organizationId, UUID accountId, String authorization, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -583,10 +558,6 @@ public okhttp3.Call removeOrganizationMemberOrganizationsOrganizationIdMembersAc Map localVarCookieParams = new HashMap(); Map localVarFormParams = new HashMap(); - if (instanceId != null) { - localVarQueryParams.addAll(localVarApiClient.parameterToPair("instance_id", instanceId)); - } - final String[] localVarAccepts = { "application/json" }; @@ -612,7 +583,7 @@ public okhttp3.Call removeOrganizationMemberOrganizationsOrganizationIdMembersAc } @SuppressWarnings("rawtypes") - private okhttp3.Call removeOrganizationMemberOrganizationsOrganizationIdMembersAccountIdDeleteValidateBeforeCall(UUID organizationId, UUID accountId, UUID instanceId, String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call removeOrganizationMemberOrganizationsOrganizationIdMembersAccountIdDeleteValidateBeforeCall(UUID organizationId, UUID accountId, String authorization, final ApiCallback _callback) throws ApiException { // verify the required parameter 'organizationId' is set if (organizationId == null) { throw new ApiException("Missing the required parameter 'organizationId' when calling removeOrganizationMemberOrganizationsOrganizationIdMembersAccountIdDelete(Async)"); @@ -623,7 +594,7 @@ private okhttp3.Call removeOrganizationMemberOrganizationsOrganizationIdMembersA throw new ApiException("Missing the required parameter 'accountId' when calling removeOrganizationMemberOrganizationsOrganizationIdMembersAccountIdDelete(Async)"); } - return removeOrganizationMemberOrganizationsOrganizationIdMembersAccountIdDeleteCall(organizationId, accountId, instanceId, authorization, _callback); + return removeOrganizationMemberOrganizationsOrganizationIdMembersAccountIdDeleteCall(organizationId, accountId, authorization, _callback); } @@ -632,7 +603,6 @@ private okhttp3.Call removeOrganizationMemberOrganizationsOrganizationIdMembersA * Remove a member from an organization. Parameters: - **organization_id**: UUID of the organization to remove the member from - **account_id**: UUID of the account to remove from the organization Returns: - **200**: Organization member removed successfully - **404**: Member not found in organization * @param organizationId (required) * @param accountId (required) - * @param instanceId (optional) * @param authorization (optional) * @return Object * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body @@ -644,8 +614,8 @@ private okhttp3.Call removeOrganizationMemberOrganizationsOrganizationIdMembersA 422 Validation Error - */ - public Object removeOrganizationMemberOrganizationsOrganizationIdMembersAccountIdDelete(UUID organizationId, UUID accountId, UUID instanceId, String authorization) throws ApiException { - ApiResponse localVarResp = removeOrganizationMemberOrganizationsOrganizationIdMembersAccountIdDeleteWithHttpInfo(organizationId, accountId, instanceId, authorization); + public Object removeOrganizationMemberOrganizationsOrganizationIdMembersAccountIdDelete(UUID organizationId, UUID accountId, String authorization) throws ApiException { + ApiResponse localVarResp = removeOrganizationMemberOrganizationsOrganizationIdMembersAccountIdDeleteWithHttpInfo(organizationId, accountId, authorization); return localVarResp.getData(); } @@ -654,7 +624,6 @@ public Object removeOrganizationMemberOrganizationsOrganizationIdMembersAccountI * Remove a member from an organization. Parameters: - **organization_id**: UUID of the organization to remove the member from - **account_id**: UUID of the account to remove from the organization Returns: - **200**: Organization member removed successfully - **404**: Member not found in organization * @param organizationId (required) * @param accountId (required) - * @param instanceId (optional) * @param authorization (optional) * @return ApiResponse<Object> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body @@ -666,8 +635,8 @@ public Object removeOrganizationMemberOrganizationsOrganizationIdMembersAccountI 422 Validation Error - */ - public ApiResponse removeOrganizationMemberOrganizationsOrganizationIdMembersAccountIdDeleteWithHttpInfo(UUID organizationId, UUID accountId, UUID instanceId, String authorization) throws ApiException { - okhttp3.Call localVarCall = removeOrganizationMemberOrganizationsOrganizationIdMembersAccountIdDeleteValidateBeforeCall(organizationId, accountId, instanceId, authorization, null); + public ApiResponse removeOrganizationMemberOrganizationsOrganizationIdMembersAccountIdDeleteWithHttpInfo(UUID organizationId, UUID accountId, String authorization) throws ApiException { + okhttp3.Call localVarCall = removeOrganizationMemberOrganizationsOrganizationIdMembersAccountIdDeleteValidateBeforeCall(organizationId, accountId, authorization, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -677,7 +646,6 @@ public ApiResponse removeOrganizationMemberOrganizationsOrganizationIdMe * Remove a member from an organization. Parameters: - **organization_id**: UUID of the organization to remove the member from - **account_id**: UUID of the account to remove from the organization Returns: - **200**: Organization member removed successfully - **404**: Member not found in organization * @param organizationId (required) * @param accountId (required) - * @param instanceId (optional) * @param authorization (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call @@ -690,9 +658,9 @@ public ApiResponse removeOrganizationMemberOrganizationsOrganizationIdMe 422 Validation Error - */ - public okhttp3.Call removeOrganizationMemberOrganizationsOrganizationIdMembersAccountIdDeleteAsync(UUID organizationId, UUID accountId, UUID instanceId, String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call removeOrganizationMemberOrganizationsOrganizationIdMembersAccountIdDeleteAsync(UUID organizationId, UUID accountId, String authorization, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = removeOrganizationMemberOrganizationsOrganizationIdMembersAccountIdDeleteValidateBeforeCall(organizationId, accountId, instanceId, authorization, _callback); + okhttp3.Call localVarCall = removeOrganizationMemberOrganizationsOrganizationIdMembersAccountIdDeleteValidateBeforeCall(organizationId, accountId, authorization, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -702,7 +670,6 @@ public okhttp3.Call removeOrganizationMemberOrganizationsOrganizationIdMembersAc * @param organizationId (required) * @param accountId (required) * @param updateOrganizationMemberRequestBody (required) - * @param instanceId (optional) * @param authorization (optional) * @param _callback Callback for upload/download progress * @return Call to execute @@ -715,7 +682,7 @@ public okhttp3.Call removeOrganizationMemberOrganizationsOrganizationIdMembersAc 422 Validation Error - */ - public okhttp3.Call updateOrganizationMemberOrganizationsOrganizationIdMembersAccountIdPatchCall(UUID organizationId, UUID accountId, UpdateOrganizationMemberRequestBody updateOrganizationMemberRequestBody, UUID instanceId, String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateOrganizationMemberOrganizationsOrganizationIdMembersAccountIdPatchCall(UUID organizationId, UUID accountId, UpdateOrganizationMemberRequestBody updateOrganizationMemberRequestBody, String authorization, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -742,10 +709,6 @@ public okhttp3.Call updateOrganizationMemberOrganizationsOrganizationIdMembersAc Map localVarCookieParams = new HashMap(); Map localVarFormParams = new HashMap(); - if (instanceId != null) { - localVarQueryParams.addAll(localVarApiClient.parameterToPair("instance_id", instanceId)); - } - final String[] localVarAccepts = { "application/json" }; @@ -772,7 +735,7 @@ public okhttp3.Call updateOrganizationMemberOrganizationsOrganizationIdMembersAc } @SuppressWarnings("rawtypes") - private okhttp3.Call updateOrganizationMemberOrganizationsOrganizationIdMembersAccountIdPatchValidateBeforeCall(UUID organizationId, UUID accountId, UpdateOrganizationMemberRequestBody updateOrganizationMemberRequestBody, UUID instanceId, String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call updateOrganizationMemberOrganizationsOrganizationIdMembersAccountIdPatchValidateBeforeCall(UUID organizationId, UUID accountId, UpdateOrganizationMemberRequestBody updateOrganizationMemberRequestBody, String authorization, final ApiCallback _callback) throws ApiException { // verify the required parameter 'organizationId' is set if (organizationId == null) { throw new ApiException("Missing the required parameter 'organizationId' when calling updateOrganizationMemberOrganizationsOrganizationIdMembersAccountIdPatch(Async)"); @@ -788,7 +751,7 @@ private okhttp3.Call updateOrganizationMemberOrganizationsOrganizationIdMembersA throw new ApiException("Missing the required parameter 'updateOrganizationMemberRequestBody' when calling updateOrganizationMemberOrganizationsOrganizationIdMembersAccountIdPatch(Async)"); } - return updateOrganizationMemberOrganizationsOrganizationIdMembersAccountIdPatchCall(organizationId, accountId, updateOrganizationMemberRequestBody, instanceId, authorization, _callback); + return updateOrganizationMemberOrganizationsOrganizationIdMembersAccountIdPatchCall(organizationId, accountId, updateOrganizationMemberRequestBody, authorization, _callback); } @@ -798,7 +761,6 @@ private okhttp3.Call updateOrganizationMemberOrganizationsOrganizationIdMembersA * @param organizationId (required) * @param accountId (required) * @param updateOrganizationMemberRequestBody (required) - * @param instanceId (optional) * @param authorization (optional) * @return Object * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body @@ -810,8 +772,8 @@ private okhttp3.Call updateOrganizationMemberOrganizationsOrganizationIdMembersA 422 Validation Error - */ - public Object updateOrganizationMemberOrganizationsOrganizationIdMembersAccountIdPatch(UUID organizationId, UUID accountId, UpdateOrganizationMemberRequestBody updateOrganizationMemberRequestBody, UUID instanceId, String authorization) throws ApiException { - ApiResponse localVarResp = updateOrganizationMemberOrganizationsOrganizationIdMembersAccountIdPatchWithHttpInfo(organizationId, accountId, updateOrganizationMemberRequestBody, instanceId, authorization); + public Object updateOrganizationMemberOrganizationsOrganizationIdMembersAccountIdPatch(UUID organizationId, UUID accountId, UpdateOrganizationMemberRequestBody updateOrganizationMemberRequestBody, String authorization) throws ApiException { + ApiResponse localVarResp = updateOrganizationMemberOrganizationsOrganizationIdMembersAccountIdPatchWithHttpInfo(organizationId, accountId, updateOrganizationMemberRequestBody, authorization); return localVarResp.getData(); } @@ -821,7 +783,6 @@ public Object updateOrganizationMemberOrganizationsOrganizationIdMembersAccountI * @param organizationId (required) * @param accountId (required) * @param updateOrganizationMemberRequestBody (required) - * @param instanceId (optional) * @param authorization (optional) * @return ApiResponse<Object> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body @@ -833,8 +794,8 @@ public Object updateOrganizationMemberOrganizationsOrganizationIdMembersAccountI 422 Validation Error - */ - public ApiResponse updateOrganizationMemberOrganizationsOrganizationIdMembersAccountIdPatchWithHttpInfo(UUID organizationId, UUID accountId, UpdateOrganizationMemberRequestBody updateOrganizationMemberRequestBody, UUID instanceId, String authorization) throws ApiException { - okhttp3.Call localVarCall = updateOrganizationMemberOrganizationsOrganizationIdMembersAccountIdPatchValidateBeforeCall(organizationId, accountId, updateOrganizationMemberRequestBody, instanceId, authorization, null); + public ApiResponse updateOrganizationMemberOrganizationsOrganizationIdMembersAccountIdPatchWithHttpInfo(UUID organizationId, UUID accountId, UpdateOrganizationMemberRequestBody updateOrganizationMemberRequestBody, String authorization) throws ApiException { + okhttp3.Call localVarCall = updateOrganizationMemberOrganizationsOrganizationIdMembersAccountIdPatchValidateBeforeCall(organizationId, accountId, updateOrganizationMemberRequestBody, authorization, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -845,7 +806,6 @@ public ApiResponse updateOrganizationMemberOrganizationsOrganizationIdMe * @param organizationId (required) * @param accountId (required) * @param updateOrganizationMemberRequestBody (required) - * @param instanceId (optional) * @param authorization (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call @@ -858,9 +818,9 @@ public ApiResponse updateOrganizationMemberOrganizationsOrganizationIdMe 422 Validation Error - */ - public okhttp3.Call updateOrganizationMemberOrganizationsOrganizationIdMembersAccountIdPatchAsync(UUID organizationId, UUID accountId, UpdateOrganizationMemberRequestBody updateOrganizationMemberRequestBody, UUID instanceId, String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateOrganizationMemberOrganizationsOrganizationIdMembersAccountIdPatchAsync(UUID organizationId, UUID accountId, UpdateOrganizationMemberRequestBody updateOrganizationMemberRequestBody, String authorization, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = updateOrganizationMemberOrganizationsOrganizationIdMembersAccountIdPatchValidateBeforeCall(organizationId, accountId, updateOrganizationMemberRequestBody, instanceId, authorization, _callback); + okhttp3.Call localVarCall = updateOrganizationMemberOrganizationsOrganizationIdMembersAccountIdPatchValidateBeforeCall(organizationId, accountId, updateOrganizationMemberRequestBody, authorization, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; diff --git a/src/main/java/ai/lamin/lamin_api_client/api/SpacesApi.java b/src/main/java/ai/lamin/lamin_api_client/api/SpacesApi.java index d07b9c2..f3ec457 100644 --- a/src/main/java/ai/lamin/lamin_api_client/api/SpacesApi.java +++ b/src/main/java/ai/lamin/lamin_api_client/api/SpacesApi.java @@ -82,7 +82,6 @@ public void setCustomBaseUrl(String customBaseUrl) { * Build call for addSpaceCollaboratorSpacesSpaceIdCollaboratorsPut * @param spaceId (required) * @param addSpaceCollaboratorRequestBody (required) - * @param instanceId (optional) * @param authorization (optional) * @param _callback Callback for upload/download progress * @return Call to execute @@ -95,7 +94,7 @@ public void setCustomBaseUrl(String customBaseUrl) { 422 Validation Error - */ - public okhttp3.Call addSpaceCollaboratorSpacesSpaceIdCollaboratorsPutCall(UUID spaceId, AddSpaceCollaboratorRequestBody addSpaceCollaboratorRequestBody, UUID instanceId, String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call addSpaceCollaboratorSpacesSpaceIdCollaboratorsPutCall(UUID spaceId, AddSpaceCollaboratorRequestBody addSpaceCollaboratorRequestBody, String authorization, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -121,10 +120,6 @@ public okhttp3.Call addSpaceCollaboratorSpacesSpaceIdCollaboratorsPutCall(UUID s Map localVarCookieParams = new HashMap(); Map localVarFormParams = new HashMap(); - if (instanceId != null) { - localVarQueryParams.addAll(localVarApiClient.parameterToPair("instance_id", instanceId)); - } - final String[] localVarAccepts = { "application/json" }; @@ -151,7 +146,7 @@ public okhttp3.Call addSpaceCollaboratorSpacesSpaceIdCollaboratorsPutCall(UUID s } @SuppressWarnings("rawtypes") - private okhttp3.Call addSpaceCollaboratorSpacesSpaceIdCollaboratorsPutValidateBeforeCall(UUID spaceId, AddSpaceCollaboratorRequestBody addSpaceCollaboratorRequestBody, UUID instanceId, String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call addSpaceCollaboratorSpacesSpaceIdCollaboratorsPutValidateBeforeCall(UUID spaceId, AddSpaceCollaboratorRequestBody addSpaceCollaboratorRequestBody, String authorization, final ApiCallback _callback) throws ApiException { // verify the required parameter 'spaceId' is set if (spaceId == null) { throw new ApiException("Missing the required parameter 'spaceId' when calling addSpaceCollaboratorSpacesSpaceIdCollaboratorsPut(Async)"); @@ -162,7 +157,7 @@ private okhttp3.Call addSpaceCollaboratorSpacesSpaceIdCollaboratorsPutValidateBe throw new ApiException("Missing the required parameter 'addSpaceCollaboratorRequestBody' when calling addSpaceCollaboratorSpacesSpaceIdCollaboratorsPut(Async)"); } - return addSpaceCollaboratorSpacesSpaceIdCollaboratorsPutCall(spaceId, addSpaceCollaboratorRequestBody, instanceId, authorization, _callback); + return addSpaceCollaboratorSpacesSpaceIdCollaboratorsPutCall(spaceId, addSpaceCollaboratorRequestBody, authorization, _callback); } @@ -171,7 +166,6 @@ private okhttp3.Call addSpaceCollaboratorSpacesSpaceIdCollaboratorsPutValidateBe * Add a collaborator (account or team) to a space. Parameters: - **space_id**: ID of the space to add the collaborator to - **body**: Request body containing collaborator details - **account_id**: UUID of the account to add (mutually exclusive with team_id) - **team_id**: UUID of the team to add (mutually exclusive with account_id) - **role**: Role of the collaborator Returns: - **201**: Collaborator added to space successfully - **400**: Invalid input (e.g., both account_id and team_id provided) * @param spaceId (required) * @param addSpaceCollaboratorRequestBody (required) - * @param instanceId (optional) * @param authorization (optional) * @return Object * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body @@ -183,8 +177,8 @@ private okhttp3.Call addSpaceCollaboratorSpacesSpaceIdCollaboratorsPutValidateBe 422 Validation Error - */ - public Object addSpaceCollaboratorSpacesSpaceIdCollaboratorsPut(UUID spaceId, AddSpaceCollaboratorRequestBody addSpaceCollaboratorRequestBody, UUID instanceId, String authorization) throws ApiException { - ApiResponse localVarResp = addSpaceCollaboratorSpacesSpaceIdCollaboratorsPutWithHttpInfo(spaceId, addSpaceCollaboratorRequestBody, instanceId, authorization); + public Object addSpaceCollaboratorSpacesSpaceIdCollaboratorsPut(UUID spaceId, AddSpaceCollaboratorRequestBody addSpaceCollaboratorRequestBody, String authorization) throws ApiException { + ApiResponse localVarResp = addSpaceCollaboratorSpacesSpaceIdCollaboratorsPutWithHttpInfo(spaceId, addSpaceCollaboratorRequestBody, authorization); return localVarResp.getData(); } @@ -193,7 +187,6 @@ public Object addSpaceCollaboratorSpacesSpaceIdCollaboratorsPut(UUID spaceId, Ad * Add a collaborator (account or team) to a space. Parameters: - **space_id**: ID of the space to add the collaborator to - **body**: Request body containing collaborator details - **account_id**: UUID of the account to add (mutually exclusive with team_id) - **team_id**: UUID of the team to add (mutually exclusive with account_id) - **role**: Role of the collaborator Returns: - **201**: Collaborator added to space successfully - **400**: Invalid input (e.g., both account_id and team_id provided) * @param spaceId (required) * @param addSpaceCollaboratorRequestBody (required) - * @param instanceId (optional) * @param authorization (optional) * @return ApiResponse<Object> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body @@ -205,8 +198,8 @@ public Object addSpaceCollaboratorSpacesSpaceIdCollaboratorsPut(UUID spaceId, Ad 422 Validation Error - */ - public ApiResponse addSpaceCollaboratorSpacesSpaceIdCollaboratorsPutWithHttpInfo(UUID spaceId, AddSpaceCollaboratorRequestBody addSpaceCollaboratorRequestBody, UUID instanceId, String authorization) throws ApiException { - okhttp3.Call localVarCall = addSpaceCollaboratorSpacesSpaceIdCollaboratorsPutValidateBeforeCall(spaceId, addSpaceCollaboratorRequestBody, instanceId, authorization, null); + public ApiResponse addSpaceCollaboratorSpacesSpaceIdCollaboratorsPutWithHttpInfo(UUID spaceId, AddSpaceCollaboratorRequestBody addSpaceCollaboratorRequestBody, String authorization) throws ApiException { + okhttp3.Call localVarCall = addSpaceCollaboratorSpacesSpaceIdCollaboratorsPutValidateBeforeCall(spaceId, addSpaceCollaboratorRequestBody, authorization, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -216,7 +209,6 @@ public ApiResponse addSpaceCollaboratorSpacesSpaceIdCollaboratorsPutWith * Add a collaborator (account or team) to a space. Parameters: - **space_id**: ID of the space to add the collaborator to - **body**: Request body containing collaborator details - **account_id**: UUID of the account to add (mutually exclusive with team_id) - **team_id**: UUID of the team to add (mutually exclusive with account_id) - **role**: Role of the collaborator Returns: - **201**: Collaborator added to space successfully - **400**: Invalid input (e.g., both account_id and team_id provided) * @param spaceId (required) * @param addSpaceCollaboratorRequestBody (required) - * @param instanceId (optional) * @param authorization (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call @@ -229,9 +221,9 @@ public ApiResponse addSpaceCollaboratorSpacesSpaceIdCollaboratorsPutWith 422 Validation Error - */ - public okhttp3.Call addSpaceCollaboratorSpacesSpaceIdCollaboratorsPutAsync(UUID spaceId, AddSpaceCollaboratorRequestBody addSpaceCollaboratorRequestBody, UUID instanceId, String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call addSpaceCollaboratorSpacesSpaceIdCollaboratorsPutAsync(UUID spaceId, AddSpaceCollaboratorRequestBody addSpaceCollaboratorRequestBody, String authorization, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = addSpaceCollaboratorSpacesSpaceIdCollaboratorsPutValidateBeforeCall(spaceId, addSpaceCollaboratorRequestBody, instanceId, authorization, _callback); + okhttp3.Call localVarCall = addSpaceCollaboratorSpacesSpaceIdCollaboratorsPutValidateBeforeCall(spaceId, addSpaceCollaboratorRequestBody, authorization, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -389,7 +381,6 @@ public okhttp3.Call attachSpaceToInstanceSpacesSpaceIdInstancesInstanceIdPutAsyn /** * Build call for createSpaceSpacesPut * @param createSpaceRequestBody (required) - * @param instanceId (optional) * @param authorization (optional) * @param _callback Callback for upload/download progress * @return Call to execute @@ -402,7 +393,7 @@ public okhttp3.Call attachSpaceToInstanceSpacesSpaceIdInstancesInstanceIdPutAsyn 422 Validation Error - */ - public okhttp3.Call createSpaceSpacesPutCall(CreateSpaceRequestBody createSpaceRequestBody, UUID instanceId, String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call createSpaceSpacesPutCall(CreateSpaceRequestBody createSpaceRequestBody, String authorization, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -427,10 +418,6 @@ public okhttp3.Call createSpaceSpacesPutCall(CreateSpaceRequestBody createSpaceR Map localVarCookieParams = new HashMap(); Map localVarFormParams = new HashMap(); - if (instanceId != null) { - localVarQueryParams.addAll(localVarApiClient.parameterToPair("instance_id", instanceId)); - } - final String[] localVarAccepts = { "application/json" }; @@ -457,13 +444,13 @@ public okhttp3.Call createSpaceSpacesPutCall(CreateSpaceRequestBody createSpaceR } @SuppressWarnings("rawtypes") - private okhttp3.Call createSpaceSpacesPutValidateBeforeCall(CreateSpaceRequestBody createSpaceRequestBody, UUID instanceId, String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call createSpaceSpacesPutValidateBeforeCall(CreateSpaceRequestBody createSpaceRequestBody, String authorization, final ApiCallback _callback) throws ApiException { // verify the required parameter 'createSpaceRequestBody' is set if (createSpaceRequestBody == null) { throw new ApiException("Missing the required parameter 'createSpaceRequestBody' when calling createSpaceSpacesPut(Async)"); } - return createSpaceSpacesPutCall(createSpaceRequestBody, instanceId, authorization, _callback); + return createSpaceSpacesPutCall(createSpaceRequestBody, authorization, _callback); } @@ -471,7 +458,6 @@ private okhttp3.Call createSpaceSpacesPutValidateBeforeCall(CreateSpaceRequestBo * Create Space * Create a new space. Parameters: - **body**: Request body containing space details - **name**: Name of the space - **organization_id**: UUID of the organization - **description**: Optional description of the space Returns: - **201**: Space created successfully * @param createSpaceRequestBody (required) - * @param instanceId (optional) * @param authorization (optional) * @return Object * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body @@ -483,8 +469,8 @@ private okhttp3.Call createSpaceSpacesPutValidateBeforeCall(CreateSpaceRequestBo 422 Validation Error - */ - public Object createSpaceSpacesPut(CreateSpaceRequestBody createSpaceRequestBody, UUID instanceId, String authorization) throws ApiException { - ApiResponse localVarResp = createSpaceSpacesPutWithHttpInfo(createSpaceRequestBody, instanceId, authorization); + public Object createSpaceSpacesPut(CreateSpaceRequestBody createSpaceRequestBody, String authorization) throws ApiException { + ApiResponse localVarResp = createSpaceSpacesPutWithHttpInfo(createSpaceRequestBody, authorization); return localVarResp.getData(); } @@ -492,7 +478,6 @@ public Object createSpaceSpacesPut(CreateSpaceRequestBody createSpaceRequestBody * Create Space * Create a new space. Parameters: - **body**: Request body containing space details - **name**: Name of the space - **organization_id**: UUID of the organization - **description**: Optional description of the space Returns: - **201**: Space created successfully * @param createSpaceRequestBody (required) - * @param instanceId (optional) * @param authorization (optional) * @return ApiResponse<Object> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body @@ -504,8 +489,8 @@ public Object createSpaceSpacesPut(CreateSpaceRequestBody createSpaceRequestBody 422 Validation Error - */ - public ApiResponse createSpaceSpacesPutWithHttpInfo(CreateSpaceRequestBody createSpaceRequestBody, UUID instanceId, String authorization) throws ApiException { - okhttp3.Call localVarCall = createSpaceSpacesPutValidateBeforeCall(createSpaceRequestBody, instanceId, authorization, null); + public ApiResponse createSpaceSpacesPutWithHttpInfo(CreateSpaceRequestBody createSpaceRequestBody, String authorization) throws ApiException { + okhttp3.Call localVarCall = createSpaceSpacesPutValidateBeforeCall(createSpaceRequestBody, authorization, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -514,7 +499,6 @@ public ApiResponse createSpaceSpacesPutWithHttpInfo(CreateSpaceRequestBo * Create Space (asynchronously) * Create a new space. Parameters: - **body**: Request body containing space details - **name**: Name of the space - **organization_id**: UUID of the organization - **description**: Optional description of the space Returns: - **201**: Space created successfully * @param createSpaceRequestBody (required) - * @param instanceId (optional) * @param authorization (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call @@ -527,9 +511,9 @@ public ApiResponse createSpaceSpacesPutWithHttpInfo(CreateSpaceRequestBo 422 Validation Error - */ - public okhttp3.Call createSpaceSpacesPutAsync(CreateSpaceRequestBody createSpaceRequestBody, UUID instanceId, String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call createSpaceSpacesPutAsync(CreateSpaceRequestBody createSpaceRequestBody, String authorization, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = createSpaceSpacesPutValidateBeforeCall(createSpaceRequestBody, instanceId, authorization, _callback); + okhttp3.Call localVarCall = createSpaceSpacesPutValidateBeforeCall(createSpaceRequestBody, authorization, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -537,7 +521,6 @@ public okhttp3.Call createSpaceSpacesPutAsync(CreateSpaceRequestBody createSpace /** * Build call for deleteSpaceSpacesSpaceIdDelete * @param spaceId (required) - * @param instanceId (optional) * @param authorization (optional) * @param _callback Callback for upload/download progress * @return Call to execute @@ -550,7 +533,7 @@ public okhttp3.Call createSpaceSpacesPutAsync(CreateSpaceRequestBody createSpace 422 Validation Error - */ - public okhttp3.Call deleteSpaceSpacesSpaceIdDeleteCall(UUID spaceId, UUID instanceId, String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call deleteSpaceSpacesSpaceIdDeleteCall(UUID spaceId, String authorization, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -576,10 +559,6 @@ public okhttp3.Call deleteSpaceSpacesSpaceIdDeleteCall(UUID spaceId, UUID instan Map localVarCookieParams = new HashMap(); Map localVarFormParams = new HashMap(); - if (instanceId != null) { - localVarQueryParams.addAll(localVarApiClient.parameterToPair("instance_id", instanceId)); - } - final String[] localVarAccepts = { "application/json" }; @@ -605,13 +584,13 @@ public okhttp3.Call deleteSpaceSpacesSpaceIdDeleteCall(UUID spaceId, UUID instan } @SuppressWarnings("rawtypes") - private okhttp3.Call deleteSpaceSpacesSpaceIdDeleteValidateBeforeCall(UUID spaceId, UUID instanceId, String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call deleteSpaceSpacesSpaceIdDeleteValidateBeforeCall(UUID spaceId, String authorization, final ApiCallback _callback) throws ApiException { // verify the required parameter 'spaceId' is set if (spaceId == null) { throw new ApiException("Missing the required parameter 'spaceId' when calling deleteSpaceSpacesSpaceIdDelete(Async)"); } - return deleteSpaceSpacesSpaceIdDeleteCall(spaceId, instanceId, authorization, _callback); + return deleteSpaceSpacesSpaceIdDeleteCall(spaceId, authorization, _callback); } @@ -619,7 +598,6 @@ private okhttp3.Call deleteSpaceSpacesSpaceIdDeleteValidateBeforeCall(UUID space * Delete Space * Delete a space and detach it from the instance. Parameters: - **space_id**: ID of the space to delete Returns: - **200**: Space deleted successfully - **404**: Space not found * @param spaceId (required) - * @param instanceId (optional) * @param authorization (optional) * @return Object * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body @@ -631,8 +609,8 @@ private okhttp3.Call deleteSpaceSpacesSpaceIdDeleteValidateBeforeCall(UUID space 422 Validation Error - */ - public Object deleteSpaceSpacesSpaceIdDelete(UUID spaceId, UUID instanceId, String authorization) throws ApiException { - ApiResponse localVarResp = deleteSpaceSpacesSpaceIdDeleteWithHttpInfo(spaceId, instanceId, authorization); + public Object deleteSpaceSpacesSpaceIdDelete(UUID spaceId, String authorization) throws ApiException { + ApiResponse localVarResp = deleteSpaceSpacesSpaceIdDeleteWithHttpInfo(spaceId, authorization); return localVarResp.getData(); } @@ -640,7 +618,6 @@ public Object deleteSpaceSpacesSpaceIdDelete(UUID spaceId, UUID instanceId, Stri * Delete Space * Delete a space and detach it from the instance. Parameters: - **space_id**: ID of the space to delete Returns: - **200**: Space deleted successfully - **404**: Space not found * @param spaceId (required) - * @param instanceId (optional) * @param authorization (optional) * @return ApiResponse<Object> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body @@ -652,8 +629,8 @@ public Object deleteSpaceSpacesSpaceIdDelete(UUID spaceId, UUID instanceId, Stri 422 Validation Error - */ - public ApiResponse deleteSpaceSpacesSpaceIdDeleteWithHttpInfo(UUID spaceId, UUID instanceId, String authorization) throws ApiException { - okhttp3.Call localVarCall = deleteSpaceSpacesSpaceIdDeleteValidateBeforeCall(spaceId, instanceId, authorization, null); + public ApiResponse deleteSpaceSpacesSpaceIdDeleteWithHttpInfo(UUID spaceId, String authorization) throws ApiException { + okhttp3.Call localVarCall = deleteSpaceSpacesSpaceIdDeleteValidateBeforeCall(spaceId, authorization, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -662,7 +639,6 @@ public ApiResponse deleteSpaceSpacesSpaceIdDeleteWithHttpInfo(UUID space * Delete Space (asynchronously) * Delete a space and detach it from the instance. Parameters: - **space_id**: ID of the space to delete Returns: - **200**: Space deleted successfully - **404**: Space not found * @param spaceId (required) - * @param instanceId (optional) * @param authorization (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call @@ -675,9 +651,9 @@ public ApiResponse deleteSpaceSpacesSpaceIdDeleteWithHttpInfo(UUID space 422 Validation Error - */ - public okhttp3.Call deleteSpaceSpacesSpaceIdDeleteAsync(UUID spaceId, UUID instanceId, String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call deleteSpaceSpacesSpaceIdDeleteAsync(UUID spaceId, String authorization, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = deleteSpaceSpacesSpaceIdDeleteValidateBeforeCall(spaceId, instanceId, authorization, _callback); + okhttp3.Call localVarCall = deleteSpaceSpacesSpaceIdDeleteValidateBeforeCall(spaceId, authorization, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -835,7 +811,6 @@ public okhttp3.Call detachSpaceFromInstanceSpacesSpaceIdInstancesInstanceIdDelet /** * Build call for getSpaceSpacesSpaceIdGet * @param spaceId (required) - * @param instanceId (optional) * @param authorization (optional) * @param _callback Callback for upload/download progress * @return Call to execute @@ -848,7 +823,7 @@ public okhttp3.Call detachSpaceFromInstanceSpacesSpaceIdInstancesInstanceIdDelet 422 Validation Error - */ - public okhttp3.Call getSpaceSpacesSpaceIdGetCall(UUID spaceId, UUID instanceId, String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getSpaceSpacesSpaceIdGetCall(UUID spaceId, String authorization, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -874,10 +849,6 @@ public okhttp3.Call getSpaceSpacesSpaceIdGetCall(UUID spaceId, UUID instanceId, Map localVarCookieParams = new HashMap(); Map localVarFormParams = new HashMap(); - if (instanceId != null) { - localVarQueryParams.addAll(localVarApiClient.parameterToPair("instance_id", instanceId)); - } - final String[] localVarAccepts = { "application/json" }; @@ -903,13 +874,13 @@ public okhttp3.Call getSpaceSpacesSpaceIdGetCall(UUID spaceId, UUID instanceId, } @SuppressWarnings("rawtypes") - private okhttp3.Call getSpaceSpacesSpaceIdGetValidateBeforeCall(UUID spaceId, UUID instanceId, String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call getSpaceSpacesSpaceIdGetValidateBeforeCall(UUID spaceId, String authorization, final ApiCallback _callback) throws ApiException { // verify the required parameter 'spaceId' is set if (spaceId == null) { throw new ApiException("Missing the required parameter 'spaceId' when calling getSpaceSpacesSpaceIdGet(Async)"); } - return getSpaceSpacesSpaceIdGetCall(spaceId, instanceId, authorization, _callback); + return getSpaceSpacesSpaceIdGetCall(spaceId, authorization, _callback); } @@ -917,7 +888,6 @@ private okhttp3.Call getSpaceSpacesSpaceIdGetValidateBeforeCall(UUID spaceId, UU * Get Space * Get details of a specific space. Parameters: - **space_id**: ID of the space to retrieve Returns: - **200**: Space details retrieved successfully - **404**: Space not found * @param spaceId (required) - * @param instanceId (optional) * @param authorization (optional) * @return Object * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body @@ -929,8 +899,8 @@ private okhttp3.Call getSpaceSpacesSpaceIdGetValidateBeforeCall(UUID spaceId, UU 422 Validation Error - */ - public Object getSpaceSpacesSpaceIdGet(UUID spaceId, UUID instanceId, String authorization) throws ApiException { - ApiResponse localVarResp = getSpaceSpacesSpaceIdGetWithHttpInfo(spaceId, instanceId, authorization); + public Object getSpaceSpacesSpaceIdGet(UUID spaceId, String authorization) throws ApiException { + ApiResponse localVarResp = getSpaceSpacesSpaceIdGetWithHttpInfo(spaceId, authorization); return localVarResp.getData(); } @@ -938,7 +908,6 @@ public Object getSpaceSpacesSpaceIdGet(UUID spaceId, UUID instanceId, String aut * Get Space * Get details of a specific space. Parameters: - **space_id**: ID of the space to retrieve Returns: - **200**: Space details retrieved successfully - **404**: Space not found * @param spaceId (required) - * @param instanceId (optional) * @param authorization (optional) * @return ApiResponse<Object> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body @@ -950,8 +919,8 @@ public Object getSpaceSpacesSpaceIdGet(UUID spaceId, UUID instanceId, String aut 422 Validation Error - */ - public ApiResponse getSpaceSpacesSpaceIdGetWithHttpInfo(UUID spaceId, UUID instanceId, String authorization) throws ApiException { - okhttp3.Call localVarCall = getSpaceSpacesSpaceIdGetValidateBeforeCall(spaceId, instanceId, authorization, null); + public ApiResponse getSpaceSpacesSpaceIdGetWithHttpInfo(UUID spaceId, String authorization) throws ApiException { + okhttp3.Call localVarCall = getSpaceSpacesSpaceIdGetValidateBeforeCall(spaceId, authorization, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -960,7 +929,6 @@ public ApiResponse getSpaceSpacesSpaceIdGetWithHttpInfo(UUID spaceId, UU * Get Space (asynchronously) * Get details of a specific space. Parameters: - **space_id**: ID of the space to retrieve Returns: - **200**: Space details retrieved successfully - **404**: Space not found * @param spaceId (required) - * @param instanceId (optional) * @param authorization (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call @@ -973,9 +941,9 @@ public ApiResponse getSpaceSpacesSpaceIdGetWithHttpInfo(UUID spaceId, UU 422 Validation Error - */ - public okhttp3.Call getSpaceSpacesSpaceIdGetAsync(UUID spaceId, UUID instanceId, String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getSpaceSpacesSpaceIdGetAsync(UUID spaceId, String authorization, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = getSpaceSpacesSpaceIdGetValidateBeforeCall(spaceId, instanceId, authorization, _callback); + okhttp3.Call localVarCall = getSpaceSpacesSpaceIdGetValidateBeforeCall(spaceId, authorization, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -1123,7 +1091,6 @@ public okhttp3.Call listInstanceSpacesSpacesInstancesInstanceIdGetAsync(UUID ins /** * Build call for listInstancesUsingSpaceSpacesSpaceIdInstancesGet * @param spaceId (required) - * @param instanceId (optional) * @param authorization (optional) * @param _callback Callback for upload/download progress * @return Call to execute @@ -1136,7 +1103,7 @@ public okhttp3.Call listInstanceSpacesSpacesInstancesInstanceIdGetAsync(UUID ins 422 Validation Error - */ - public okhttp3.Call listInstancesUsingSpaceSpacesSpaceIdInstancesGetCall(UUID spaceId, UUID instanceId, String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call listInstancesUsingSpaceSpacesSpaceIdInstancesGetCall(UUID spaceId, String authorization, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -1162,10 +1129,6 @@ public okhttp3.Call listInstancesUsingSpaceSpacesSpaceIdInstancesGetCall(UUID sp Map localVarCookieParams = new HashMap(); Map localVarFormParams = new HashMap(); - if (instanceId != null) { - localVarQueryParams.addAll(localVarApiClient.parameterToPair("instance_id", instanceId)); - } - final String[] localVarAccepts = { "application/json" }; @@ -1191,13 +1154,13 @@ public okhttp3.Call listInstancesUsingSpaceSpacesSpaceIdInstancesGetCall(UUID sp } @SuppressWarnings("rawtypes") - private okhttp3.Call listInstancesUsingSpaceSpacesSpaceIdInstancesGetValidateBeforeCall(UUID spaceId, UUID instanceId, String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call listInstancesUsingSpaceSpacesSpaceIdInstancesGetValidateBeforeCall(UUID spaceId, String authorization, final ApiCallback _callback) throws ApiException { // verify the required parameter 'spaceId' is set if (spaceId == null) { throw new ApiException("Missing the required parameter 'spaceId' when calling listInstancesUsingSpaceSpacesSpaceIdInstancesGet(Async)"); } - return listInstancesUsingSpaceSpacesSpaceIdInstancesGetCall(spaceId, instanceId, authorization, _callback); + return listInstancesUsingSpaceSpacesSpaceIdInstancesGetCall(spaceId, authorization, _callback); } @@ -1205,7 +1168,6 @@ private okhttp3.Call listInstancesUsingSpaceSpacesSpaceIdInstancesGetValidateBef * List Instances Using Space * List all instances that have this space attached. Parameters: - **space_id**: ID of the space to check Returns: - **200**: List of instances using the space retrieved successfully * @param spaceId (required) - * @param instanceId (optional) * @param authorization (optional) * @return Object * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body @@ -1217,8 +1179,8 @@ private okhttp3.Call listInstancesUsingSpaceSpacesSpaceIdInstancesGetValidateBef 422 Validation Error - */ - public Object listInstancesUsingSpaceSpacesSpaceIdInstancesGet(UUID spaceId, UUID instanceId, String authorization) throws ApiException { - ApiResponse localVarResp = listInstancesUsingSpaceSpacesSpaceIdInstancesGetWithHttpInfo(spaceId, instanceId, authorization); + public Object listInstancesUsingSpaceSpacesSpaceIdInstancesGet(UUID spaceId, String authorization) throws ApiException { + ApiResponse localVarResp = listInstancesUsingSpaceSpacesSpaceIdInstancesGetWithHttpInfo(spaceId, authorization); return localVarResp.getData(); } @@ -1226,7 +1188,6 @@ public Object listInstancesUsingSpaceSpacesSpaceIdInstancesGet(UUID spaceId, UUI * List Instances Using Space * List all instances that have this space attached. Parameters: - **space_id**: ID of the space to check Returns: - **200**: List of instances using the space retrieved successfully * @param spaceId (required) - * @param instanceId (optional) * @param authorization (optional) * @return ApiResponse<Object> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body @@ -1238,8 +1199,8 @@ public Object listInstancesUsingSpaceSpacesSpaceIdInstancesGet(UUID spaceId, UUI 422 Validation Error - */ - public ApiResponse listInstancesUsingSpaceSpacesSpaceIdInstancesGetWithHttpInfo(UUID spaceId, UUID instanceId, String authorization) throws ApiException { - okhttp3.Call localVarCall = listInstancesUsingSpaceSpacesSpaceIdInstancesGetValidateBeforeCall(spaceId, instanceId, authorization, null); + public ApiResponse listInstancesUsingSpaceSpacesSpaceIdInstancesGetWithHttpInfo(UUID spaceId, String authorization) throws ApiException { + okhttp3.Call localVarCall = listInstancesUsingSpaceSpacesSpaceIdInstancesGetValidateBeforeCall(spaceId, authorization, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -1248,7 +1209,6 @@ public ApiResponse listInstancesUsingSpaceSpacesSpaceIdInstancesGetWithH * List Instances Using Space (asynchronously) * List all instances that have this space attached. Parameters: - **space_id**: ID of the space to check Returns: - **200**: List of instances using the space retrieved successfully * @param spaceId (required) - * @param instanceId (optional) * @param authorization (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call @@ -1261,9 +1221,9 @@ public ApiResponse listInstancesUsingSpaceSpacesSpaceIdInstancesGetWithH 422 Validation Error - */ - public okhttp3.Call listInstancesUsingSpaceSpacesSpaceIdInstancesGetAsync(UUID spaceId, UUID instanceId, String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call listInstancesUsingSpaceSpacesSpaceIdInstancesGetAsync(UUID spaceId, String authorization, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = listInstancesUsingSpaceSpacesSpaceIdInstancesGetValidateBeforeCall(spaceId, instanceId, authorization, _callback); + okhttp3.Call localVarCall = listInstancesUsingSpaceSpacesSpaceIdInstancesGetValidateBeforeCall(spaceId, authorization, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -1271,7 +1231,6 @@ public okhttp3.Call listInstancesUsingSpaceSpacesSpaceIdInstancesGetAsync(UUID s /** * Build call for listOrganizationSpacesSpacesOrganizationsOrganizationIdGet * @param organizationId (required) - * @param instanceId (optional) * @param authorization (optional) * @param _callback Callback for upload/download progress * @return Call to execute @@ -1284,7 +1243,7 @@ public okhttp3.Call listInstancesUsingSpaceSpacesSpaceIdInstancesGetAsync(UUID s 422 Validation Error - */ - public okhttp3.Call listOrganizationSpacesSpacesOrganizationsOrganizationIdGetCall(UUID organizationId, UUID instanceId, String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call listOrganizationSpacesSpacesOrganizationsOrganizationIdGetCall(UUID organizationId, String authorization, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -1310,10 +1269,6 @@ public okhttp3.Call listOrganizationSpacesSpacesOrganizationsOrganizationIdGetCa Map localVarCookieParams = new HashMap(); Map localVarFormParams = new HashMap(); - if (instanceId != null) { - localVarQueryParams.addAll(localVarApiClient.parameterToPair("instance_id", instanceId)); - } - final String[] localVarAccepts = { "application/json" }; @@ -1339,13 +1294,13 @@ public okhttp3.Call listOrganizationSpacesSpacesOrganizationsOrganizationIdGetCa } @SuppressWarnings("rawtypes") - private okhttp3.Call listOrganizationSpacesSpacesOrganizationsOrganizationIdGetValidateBeforeCall(UUID organizationId, UUID instanceId, String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call listOrganizationSpacesSpacesOrganizationsOrganizationIdGetValidateBeforeCall(UUID organizationId, String authorization, final ApiCallback _callback) throws ApiException { // verify the required parameter 'organizationId' is set if (organizationId == null) { throw new ApiException("Missing the required parameter 'organizationId' when calling listOrganizationSpacesSpacesOrganizationsOrganizationIdGet(Async)"); } - return listOrganizationSpacesSpacesOrganizationsOrganizationIdGetCall(organizationId, instanceId, authorization, _callback); + return listOrganizationSpacesSpacesOrganizationsOrganizationIdGetCall(organizationId, authorization, _callback); } @@ -1353,7 +1308,6 @@ private okhttp3.Call listOrganizationSpacesSpacesOrganizationsOrganizationIdGetV * List Organization Spaces * List all spaces in an organization. Parameters: - **organization_id**: UUID of the organization to list spaces for Returns: - **200**: List of spaces retrieved successfully * @param organizationId (required) - * @param instanceId (optional) * @param authorization (optional) * @return Object * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body @@ -1365,8 +1319,8 @@ private okhttp3.Call listOrganizationSpacesSpacesOrganizationsOrganizationIdGetV 422 Validation Error - */ - public Object listOrganizationSpacesSpacesOrganizationsOrganizationIdGet(UUID organizationId, UUID instanceId, String authorization) throws ApiException { - ApiResponse localVarResp = listOrganizationSpacesSpacesOrganizationsOrganizationIdGetWithHttpInfo(organizationId, instanceId, authorization); + public Object listOrganizationSpacesSpacesOrganizationsOrganizationIdGet(UUID organizationId, String authorization) throws ApiException { + ApiResponse localVarResp = listOrganizationSpacesSpacesOrganizationsOrganizationIdGetWithHttpInfo(organizationId, authorization); return localVarResp.getData(); } @@ -1374,7 +1328,6 @@ public Object listOrganizationSpacesSpacesOrganizationsOrganizationIdGet(UUID or * List Organization Spaces * List all spaces in an organization. Parameters: - **organization_id**: UUID of the organization to list spaces for Returns: - **200**: List of spaces retrieved successfully * @param organizationId (required) - * @param instanceId (optional) * @param authorization (optional) * @return ApiResponse<Object> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body @@ -1386,8 +1339,8 @@ public Object listOrganizationSpacesSpacesOrganizationsOrganizationIdGet(UUID or 422 Validation Error - */ - public ApiResponse listOrganizationSpacesSpacesOrganizationsOrganizationIdGetWithHttpInfo(UUID organizationId, UUID instanceId, String authorization) throws ApiException { - okhttp3.Call localVarCall = listOrganizationSpacesSpacesOrganizationsOrganizationIdGetValidateBeforeCall(organizationId, instanceId, authorization, null); + public ApiResponse listOrganizationSpacesSpacesOrganizationsOrganizationIdGetWithHttpInfo(UUID organizationId, String authorization) throws ApiException { + okhttp3.Call localVarCall = listOrganizationSpacesSpacesOrganizationsOrganizationIdGetValidateBeforeCall(organizationId, authorization, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -1396,7 +1349,6 @@ public ApiResponse listOrganizationSpacesSpacesOrganizationsOrganization * List Organization Spaces (asynchronously) * List all spaces in an organization. Parameters: - **organization_id**: UUID of the organization to list spaces for Returns: - **200**: List of spaces retrieved successfully * @param organizationId (required) - * @param instanceId (optional) * @param authorization (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call @@ -1409,9 +1361,9 @@ public ApiResponse listOrganizationSpacesSpacesOrganizationsOrganization 422 Validation Error - */ - public okhttp3.Call listOrganizationSpacesSpacesOrganizationsOrganizationIdGetAsync(UUID organizationId, UUID instanceId, String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call listOrganizationSpacesSpacesOrganizationsOrganizationIdGetAsync(UUID organizationId, String authorization, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = listOrganizationSpacesSpacesOrganizationsOrganizationIdGetValidateBeforeCall(organizationId, instanceId, authorization, _callback); + okhttp3.Call localVarCall = listOrganizationSpacesSpacesOrganizationsOrganizationIdGetValidateBeforeCall(organizationId, authorization, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -1419,7 +1371,6 @@ public okhttp3.Call listOrganizationSpacesSpacesOrganizationsOrganizationIdGetAs /** * Build call for listSpaceCollaboratorsSpacesSpaceIdCollaboratorsGet * @param spaceId (required) - * @param instanceId (optional) * @param authorization (optional) * @param _callback Callback for upload/download progress * @return Call to execute @@ -1432,7 +1383,7 @@ public okhttp3.Call listOrganizationSpacesSpacesOrganizationsOrganizationIdGetAs 422 Validation Error - */ - public okhttp3.Call listSpaceCollaboratorsSpacesSpaceIdCollaboratorsGetCall(UUID spaceId, UUID instanceId, String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call listSpaceCollaboratorsSpacesSpaceIdCollaboratorsGetCall(UUID spaceId, String authorization, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -1458,10 +1409,6 @@ public okhttp3.Call listSpaceCollaboratorsSpacesSpaceIdCollaboratorsGetCall(UUID Map localVarCookieParams = new HashMap(); Map localVarFormParams = new HashMap(); - if (instanceId != null) { - localVarQueryParams.addAll(localVarApiClient.parameterToPair("instance_id", instanceId)); - } - final String[] localVarAccepts = { "application/json" }; @@ -1487,13 +1434,13 @@ public okhttp3.Call listSpaceCollaboratorsSpacesSpaceIdCollaboratorsGetCall(UUID } @SuppressWarnings("rawtypes") - private okhttp3.Call listSpaceCollaboratorsSpacesSpaceIdCollaboratorsGetValidateBeforeCall(UUID spaceId, UUID instanceId, String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call listSpaceCollaboratorsSpacesSpaceIdCollaboratorsGetValidateBeforeCall(UUID spaceId, String authorization, final ApiCallback _callback) throws ApiException { // verify the required parameter 'spaceId' is set if (spaceId == null) { throw new ApiException("Missing the required parameter 'spaceId' when calling listSpaceCollaboratorsSpacesSpaceIdCollaboratorsGet(Async)"); } - return listSpaceCollaboratorsSpacesSpaceIdCollaboratorsGetCall(spaceId, instanceId, authorization, _callback); + return listSpaceCollaboratorsSpacesSpaceIdCollaboratorsGetCall(spaceId, authorization, _callback); } @@ -1501,7 +1448,6 @@ private okhttp3.Call listSpaceCollaboratorsSpacesSpaceIdCollaboratorsGetValidate * List Space Collaborators * List all collaborators of a space. Parameters: - **space_id**: ID of the space to list collaborators for Returns: - **200**: List of space collaborators retrieved successfully * @param spaceId (required) - * @param instanceId (optional) * @param authorization (optional) * @return Object * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body @@ -1513,8 +1459,8 @@ private okhttp3.Call listSpaceCollaboratorsSpacesSpaceIdCollaboratorsGetValidate 422 Validation Error - */ - public Object listSpaceCollaboratorsSpacesSpaceIdCollaboratorsGet(UUID spaceId, UUID instanceId, String authorization) throws ApiException { - ApiResponse localVarResp = listSpaceCollaboratorsSpacesSpaceIdCollaboratorsGetWithHttpInfo(spaceId, instanceId, authorization); + public Object listSpaceCollaboratorsSpacesSpaceIdCollaboratorsGet(UUID spaceId, String authorization) throws ApiException { + ApiResponse localVarResp = listSpaceCollaboratorsSpacesSpaceIdCollaboratorsGetWithHttpInfo(spaceId, authorization); return localVarResp.getData(); } @@ -1522,7 +1468,6 @@ public Object listSpaceCollaboratorsSpacesSpaceIdCollaboratorsGet(UUID spaceId, * List Space Collaborators * List all collaborators of a space. Parameters: - **space_id**: ID of the space to list collaborators for Returns: - **200**: List of space collaborators retrieved successfully * @param spaceId (required) - * @param instanceId (optional) * @param authorization (optional) * @return ApiResponse<Object> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body @@ -1534,8 +1479,8 @@ public Object listSpaceCollaboratorsSpacesSpaceIdCollaboratorsGet(UUID spaceId, 422 Validation Error - */ - public ApiResponse listSpaceCollaboratorsSpacesSpaceIdCollaboratorsGetWithHttpInfo(UUID spaceId, UUID instanceId, String authorization) throws ApiException { - okhttp3.Call localVarCall = listSpaceCollaboratorsSpacesSpaceIdCollaboratorsGetValidateBeforeCall(spaceId, instanceId, authorization, null); + public ApiResponse listSpaceCollaboratorsSpacesSpaceIdCollaboratorsGetWithHttpInfo(UUID spaceId, String authorization) throws ApiException { + okhttp3.Call localVarCall = listSpaceCollaboratorsSpacesSpaceIdCollaboratorsGetValidateBeforeCall(spaceId, authorization, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -1544,7 +1489,6 @@ public ApiResponse listSpaceCollaboratorsSpacesSpaceIdCollaboratorsGetWi * List Space Collaborators (asynchronously) * List all collaborators of a space. Parameters: - **space_id**: ID of the space to list collaborators for Returns: - **200**: List of space collaborators retrieved successfully * @param spaceId (required) - * @param instanceId (optional) * @param authorization (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call @@ -1557,9 +1501,9 @@ public ApiResponse listSpaceCollaboratorsSpacesSpaceIdCollaboratorsGetWi 422 Validation Error - */ - public okhttp3.Call listSpaceCollaboratorsSpacesSpaceIdCollaboratorsGetAsync(UUID spaceId, UUID instanceId, String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call listSpaceCollaboratorsSpacesSpaceIdCollaboratorsGetAsync(UUID spaceId, String authorization, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = listSpaceCollaboratorsSpacesSpaceIdCollaboratorsGetValidateBeforeCall(spaceId, instanceId, authorization, _callback); + okhttp3.Call localVarCall = listSpaceCollaboratorsSpacesSpaceIdCollaboratorsGetValidateBeforeCall(spaceId, authorization, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -1730,7 +1674,6 @@ public okhttp3.Call moveRecordToSpaceSpacesSpaceIdRecordAttachmentsPutAsync(Inte * @param spaceId (required) * @param accountId (optional) * @param teamId (optional) - * @param instanceId (optional) * @param authorization (optional) * @param _callback Callback for upload/download progress * @return Call to execute @@ -1743,7 +1686,7 @@ public okhttp3.Call moveRecordToSpaceSpacesSpaceIdRecordAttachmentsPutAsync(Inte 422 Validation Error - */ - public okhttp3.Call removeSpaceCollaboratorSpacesSpaceIdCollaboratorsDeleteCall(UUID spaceId, UUID accountId, UUID teamId, UUID instanceId, String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call removeSpaceCollaboratorSpacesSpaceIdCollaboratorsDeleteCall(UUID spaceId, UUID accountId, UUID teamId, String authorization, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -1777,10 +1720,6 @@ public okhttp3.Call removeSpaceCollaboratorSpacesSpaceIdCollaboratorsDeleteCall( localVarQueryParams.addAll(localVarApiClient.parameterToPair("team_id", teamId)); } - if (instanceId != null) { - localVarQueryParams.addAll(localVarApiClient.parameterToPair("instance_id", instanceId)); - } - final String[] localVarAccepts = { "application/json" }; @@ -1806,13 +1745,13 @@ public okhttp3.Call removeSpaceCollaboratorSpacesSpaceIdCollaboratorsDeleteCall( } @SuppressWarnings("rawtypes") - private okhttp3.Call removeSpaceCollaboratorSpacesSpaceIdCollaboratorsDeleteValidateBeforeCall(UUID spaceId, UUID accountId, UUID teamId, UUID instanceId, String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call removeSpaceCollaboratorSpacesSpaceIdCollaboratorsDeleteValidateBeforeCall(UUID spaceId, UUID accountId, UUID teamId, String authorization, final ApiCallback _callback) throws ApiException { // verify the required parameter 'spaceId' is set if (spaceId == null) { throw new ApiException("Missing the required parameter 'spaceId' when calling removeSpaceCollaboratorSpacesSpaceIdCollaboratorsDelete(Async)"); } - return removeSpaceCollaboratorSpacesSpaceIdCollaboratorsDeleteCall(spaceId, accountId, teamId, instanceId, authorization, _callback); + return removeSpaceCollaboratorSpacesSpaceIdCollaboratorsDeleteCall(spaceId, accountId, teamId, authorization, _callback); } @@ -1822,7 +1761,6 @@ private okhttp3.Call removeSpaceCollaboratorSpacesSpaceIdCollaboratorsDeleteVali * @param spaceId (required) * @param accountId (optional) * @param teamId (optional) - * @param instanceId (optional) * @param authorization (optional) * @return Object * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body @@ -1834,8 +1772,8 @@ private okhttp3.Call removeSpaceCollaboratorSpacesSpaceIdCollaboratorsDeleteVali 422 Validation Error - */ - public Object removeSpaceCollaboratorSpacesSpaceIdCollaboratorsDelete(UUID spaceId, UUID accountId, UUID teamId, UUID instanceId, String authorization) throws ApiException { - ApiResponse localVarResp = removeSpaceCollaboratorSpacesSpaceIdCollaboratorsDeleteWithHttpInfo(spaceId, accountId, teamId, instanceId, authorization); + public Object removeSpaceCollaboratorSpacesSpaceIdCollaboratorsDelete(UUID spaceId, UUID accountId, UUID teamId, String authorization) throws ApiException { + ApiResponse localVarResp = removeSpaceCollaboratorSpacesSpaceIdCollaboratorsDeleteWithHttpInfo(spaceId, accountId, teamId, authorization); return localVarResp.getData(); } @@ -1845,7 +1783,6 @@ public Object removeSpaceCollaboratorSpacesSpaceIdCollaboratorsDelete(UUID space * @param spaceId (required) * @param accountId (optional) * @param teamId (optional) - * @param instanceId (optional) * @param authorization (optional) * @return ApiResponse<Object> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body @@ -1857,8 +1794,8 @@ public Object removeSpaceCollaboratorSpacesSpaceIdCollaboratorsDelete(UUID space 422 Validation Error - */ - public ApiResponse removeSpaceCollaboratorSpacesSpaceIdCollaboratorsDeleteWithHttpInfo(UUID spaceId, UUID accountId, UUID teamId, UUID instanceId, String authorization) throws ApiException { - okhttp3.Call localVarCall = removeSpaceCollaboratorSpacesSpaceIdCollaboratorsDeleteValidateBeforeCall(spaceId, accountId, teamId, instanceId, authorization, null); + public ApiResponse removeSpaceCollaboratorSpacesSpaceIdCollaboratorsDeleteWithHttpInfo(UUID spaceId, UUID accountId, UUID teamId, String authorization) throws ApiException { + okhttp3.Call localVarCall = removeSpaceCollaboratorSpacesSpaceIdCollaboratorsDeleteValidateBeforeCall(spaceId, accountId, teamId, authorization, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -1869,7 +1806,6 @@ public ApiResponse removeSpaceCollaboratorSpacesSpaceIdCollaboratorsDele * @param spaceId (required) * @param accountId (optional) * @param teamId (optional) - * @param instanceId (optional) * @param authorization (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call @@ -1882,9 +1818,9 @@ public ApiResponse removeSpaceCollaboratorSpacesSpaceIdCollaboratorsDele 422 Validation Error - */ - public okhttp3.Call removeSpaceCollaboratorSpacesSpaceIdCollaboratorsDeleteAsync(UUID spaceId, UUID accountId, UUID teamId, UUID instanceId, String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call removeSpaceCollaboratorSpacesSpaceIdCollaboratorsDeleteAsync(UUID spaceId, UUID accountId, UUID teamId, String authorization, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = removeSpaceCollaboratorSpacesSpaceIdCollaboratorsDeleteValidateBeforeCall(spaceId, accountId, teamId, instanceId, authorization, _callback); + okhttp3.Call localVarCall = removeSpaceCollaboratorSpacesSpaceIdCollaboratorsDeleteValidateBeforeCall(spaceId, accountId, teamId, authorization, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -1893,7 +1829,6 @@ public okhttp3.Call removeSpaceCollaboratorSpacesSpaceIdCollaboratorsDeleteAsync * Build call for updateSpaceCollaboratorSpacesSpaceIdCollaboratorsPatch * @param spaceId (required) * @param updateSpaceCollaboratorRequestBody (required) - * @param instanceId (optional) * @param authorization (optional) * @param _callback Callback for upload/download progress * @return Call to execute @@ -1906,7 +1841,7 @@ public okhttp3.Call removeSpaceCollaboratorSpacesSpaceIdCollaboratorsDeleteAsync 422 Validation Error - */ - public okhttp3.Call updateSpaceCollaboratorSpacesSpaceIdCollaboratorsPatchCall(UUID spaceId, UpdateSpaceCollaboratorRequestBody updateSpaceCollaboratorRequestBody, UUID instanceId, String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateSpaceCollaboratorSpacesSpaceIdCollaboratorsPatchCall(UUID spaceId, UpdateSpaceCollaboratorRequestBody updateSpaceCollaboratorRequestBody, String authorization, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -1932,10 +1867,6 @@ public okhttp3.Call updateSpaceCollaboratorSpacesSpaceIdCollaboratorsPatchCall(U Map localVarCookieParams = new HashMap(); Map localVarFormParams = new HashMap(); - if (instanceId != null) { - localVarQueryParams.addAll(localVarApiClient.parameterToPair("instance_id", instanceId)); - } - final String[] localVarAccepts = { "application/json" }; @@ -1962,7 +1893,7 @@ public okhttp3.Call updateSpaceCollaboratorSpacesSpaceIdCollaboratorsPatchCall(U } @SuppressWarnings("rawtypes") - private okhttp3.Call updateSpaceCollaboratorSpacesSpaceIdCollaboratorsPatchValidateBeforeCall(UUID spaceId, UpdateSpaceCollaboratorRequestBody updateSpaceCollaboratorRequestBody, UUID instanceId, String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call updateSpaceCollaboratorSpacesSpaceIdCollaboratorsPatchValidateBeforeCall(UUID spaceId, UpdateSpaceCollaboratorRequestBody updateSpaceCollaboratorRequestBody, String authorization, final ApiCallback _callback) throws ApiException { // verify the required parameter 'spaceId' is set if (spaceId == null) { throw new ApiException("Missing the required parameter 'spaceId' when calling updateSpaceCollaboratorSpacesSpaceIdCollaboratorsPatch(Async)"); @@ -1973,7 +1904,7 @@ private okhttp3.Call updateSpaceCollaboratorSpacesSpaceIdCollaboratorsPatchValid throw new ApiException("Missing the required parameter 'updateSpaceCollaboratorRequestBody' when calling updateSpaceCollaboratorSpacesSpaceIdCollaboratorsPatch(Async)"); } - return updateSpaceCollaboratorSpacesSpaceIdCollaboratorsPatchCall(spaceId, updateSpaceCollaboratorRequestBody, instanceId, authorization, _callback); + return updateSpaceCollaboratorSpacesSpaceIdCollaboratorsPatchCall(spaceId, updateSpaceCollaboratorRequestBody, authorization, _callback); } @@ -1982,7 +1913,6 @@ private okhttp3.Call updateSpaceCollaboratorSpacesSpaceIdCollaboratorsPatchValid * Update a collaborator's permissions in a space. Parameters: - **space_id**: ID of the space to update the collaborator in - **body**: Request body containing collaborator details - **account_id**: UUID of the account to update (mutually exclusive with team_id) - **team_id**: UUID of the team to update (mutually exclusive with account_id) - **role**: Role of the collaborator Returns: - **200**: Collaborator updated successfully - **400**: Invalid input (e.g., both account_id and team_id provided) - **404**: Collaborator not found in space * @param spaceId (required) * @param updateSpaceCollaboratorRequestBody (required) - * @param instanceId (optional) * @param authorization (optional) * @return Object * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body @@ -1994,8 +1924,8 @@ private okhttp3.Call updateSpaceCollaboratorSpacesSpaceIdCollaboratorsPatchValid 422 Validation Error - */ - public Object updateSpaceCollaboratorSpacesSpaceIdCollaboratorsPatch(UUID spaceId, UpdateSpaceCollaboratorRequestBody updateSpaceCollaboratorRequestBody, UUID instanceId, String authorization) throws ApiException { - ApiResponse localVarResp = updateSpaceCollaboratorSpacesSpaceIdCollaboratorsPatchWithHttpInfo(spaceId, updateSpaceCollaboratorRequestBody, instanceId, authorization); + public Object updateSpaceCollaboratorSpacesSpaceIdCollaboratorsPatch(UUID spaceId, UpdateSpaceCollaboratorRequestBody updateSpaceCollaboratorRequestBody, String authorization) throws ApiException { + ApiResponse localVarResp = updateSpaceCollaboratorSpacesSpaceIdCollaboratorsPatchWithHttpInfo(spaceId, updateSpaceCollaboratorRequestBody, authorization); return localVarResp.getData(); } @@ -2004,7 +1934,6 @@ public Object updateSpaceCollaboratorSpacesSpaceIdCollaboratorsPatch(UUID spaceI * Update a collaborator's permissions in a space. Parameters: - **space_id**: ID of the space to update the collaborator in - **body**: Request body containing collaborator details - **account_id**: UUID of the account to update (mutually exclusive with team_id) - **team_id**: UUID of the team to update (mutually exclusive with account_id) - **role**: Role of the collaborator Returns: - **200**: Collaborator updated successfully - **400**: Invalid input (e.g., both account_id and team_id provided) - **404**: Collaborator not found in space * @param spaceId (required) * @param updateSpaceCollaboratorRequestBody (required) - * @param instanceId (optional) * @param authorization (optional) * @return ApiResponse<Object> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body @@ -2016,8 +1945,8 @@ public Object updateSpaceCollaboratorSpacesSpaceIdCollaboratorsPatch(UUID spaceI 422 Validation Error - */ - public ApiResponse updateSpaceCollaboratorSpacesSpaceIdCollaboratorsPatchWithHttpInfo(UUID spaceId, UpdateSpaceCollaboratorRequestBody updateSpaceCollaboratorRequestBody, UUID instanceId, String authorization) throws ApiException { - okhttp3.Call localVarCall = updateSpaceCollaboratorSpacesSpaceIdCollaboratorsPatchValidateBeforeCall(spaceId, updateSpaceCollaboratorRequestBody, instanceId, authorization, null); + public ApiResponse updateSpaceCollaboratorSpacesSpaceIdCollaboratorsPatchWithHttpInfo(UUID spaceId, UpdateSpaceCollaboratorRequestBody updateSpaceCollaboratorRequestBody, String authorization) throws ApiException { + okhttp3.Call localVarCall = updateSpaceCollaboratorSpacesSpaceIdCollaboratorsPatchValidateBeforeCall(spaceId, updateSpaceCollaboratorRequestBody, authorization, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -2027,7 +1956,6 @@ public ApiResponse updateSpaceCollaboratorSpacesSpaceIdCollaboratorsPatc * Update a collaborator's permissions in a space. Parameters: - **space_id**: ID of the space to update the collaborator in - **body**: Request body containing collaborator details - **account_id**: UUID of the account to update (mutually exclusive with team_id) - **team_id**: UUID of the team to update (mutually exclusive with account_id) - **role**: Role of the collaborator Returns: - **200**: Collaborator updated successfully - **400**: Invalid input (e.g., both account_id and team_id provided) - **404**: Collaborator not found in space * @param spaceId (required) * @param updateSpaceCollaboratorRequestBody (required) - * @param instanceId (optional) * @param authorization (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call @@ -2040,9 +1968,9 @@ public ApiResponse updateSpaceCollaboratorSpacesSpaceIdCollaboratorsPatc 422 Validation Error - */ - public okhttp3.Call updateSpaceCollaboratorSpacesSpaceIdCollaboratorsPatchAsync(UUID spaceId, UpdateSpaceCollaboratorRequestBody updateSpaceCollaboratorRequestBody, UUID instanceId, String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateSpaceCollaboratorSpacesSpaceIdCollaboratorsPatchAsync(UUID spaceId, UpdateSpaceCollaboratorRequestBody updateSpaceCollaboratorRequestBody, String authorization, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = updateSpaceCollaboratorSpacesSpaceIdCollaboratorsPatchValidateBeforeCall(spaceId, updateSpaceCollaboratorRequestBody, instanceId, authorization, _callback); + okhttp3.Call localVarCall = updateSpaceCollaboratorSpacesSpaceIdCollaboratorsPatchValidateBeforeCall(spaceId, updateSpaceCollaboratorRequestBody, authorization, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -2051,7 +1979,6 @@ public okhttp3.Call updateSpaceCollaboratorSpacesSpaceIdCollaboratorsPatchAsync( * Build call for updateSpaceSpacesSpaceIdPatch * @param spaceId (required) * @param updateSpaceRequestBody (required) - * @param instanceId (optional) * @param authorization (optional) * @param _callback Callback for upload/download progress * @return Call to execute @@ -2064,7 +1991,7 @@ public okhttp3.Call updateSpaceCollaboratorSpacesSpaceIdCollaboratorsPatchAsync( 422 Validation Error - */ - public okhttp3.Call updateSpaceSpacesSpaceIdPatchCall(UUID spaceId, UpdateSpaceRequestBody updateSpaceRequestBody, UUID instanceId, String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateSpaceSpacesSpaceIdPatchCall(UUID spaceId, UpdateSpaceRequestBody updateSpaceRequestBody, String authorization, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -2090,10 +2017,6 @@ public okhttp3.Call updateSpaceSpacesSpaceIdPatchCall(UUID spaceId, UpdateSpaceR Map localVarCookieParams = new HashMap(); Map localVarFormParams = new HashMap(); - if (instanceId != null) { - localVarQueryParams.addAll(localVarApiClient.parameterToPair("instance_id", instanceId)); - } - final String[] localVarAccepts = { "application/json" }; @@ -2120,7 +2043,7 @@ public okhttp3.Call updateSpaceSpacesSpaceIdPatchCall(UUID spaceId, UpdateSpaceR } @SuppressWarnings("rawtypes") - private okhttp3.Call updateSpaceSpacesSpaceIdPatchValidateBeforeCall(UUID spaceId, UpdateSpaceRequestBody updateSpaceRequestBody, UUID instanceId, String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call updateSpaceSpacesSpaceIdPatchValidateBeforeCall(UUID spaceId, UpdateSpaceRequestBody updateSpaceRequestBody, String authorization, final ApiCallback _callback) throws ApiException { // verify the required parameter 'spaceId' is set if (spaceId == null) { throw new ApiException("Missing the required parameter 'spaceId' when calling updateSpaceSpacesSpaceIdPatch(Async)"); @@ -2131,7 +2054,7 @@ private okhttp3.Call updateSpaceSpacesSpaceIdPatchValidateBeforeCall(UUID spaceI throw new ApiException("Missing the required parameter 'updateSpaceRequestBody' when calling updateSpaceSpacesSpaceIdPatch(Async)"); } - return updateSpaceSpacesSpaceIdPatchCall(spaceId, updateSpaceRequestBody, instanceId, authorization, _callback); + return updateSpaceSpacesSpaceIdPatchCall(spaceId, updateSpaceRequestBody, authorization, _callback); } @@ -2140,7 +2063,6 @@ private okhttp3.Call updateSpaceSpacesSpaceIdPatchValidateBeforeCall(UUID spaceI * Update a space's details. Parameters: - **space_id**: ID of the space to update - **body**: Request body containing updated space details - **name**: Optional new name for the space - **description**: Optional new description for the space Returns: - **200**: Space updated successfully * @param spaceId (required) * @param updateSpaceRequestBody (required) - * @param instanceId (optional) * @param authorization (optional) * @return Object * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body @@ -2152,8 +2074,8 @@ private okhttp3.Call updateSpaceSpacesSpaceIdPatchValidateBeforeCall(UUID spaceI 422 Validation Error - */ - public Object updateSpaceSpacesSpaceIdPatch(UUID spaceId, UpdateSpaceRequestBody updateSpaceRequestBody, UUID instanceId, String authorization) throws ApiException { - ApiResponse localVarResp = updateSpaceSpacesSpaceIdPatchWithHttpInfo(spaceId, updateSpaceRequestBody, instanceId, authorization); + public Object updateSpaceSpacesSpaceIdPatch(UUID spaceId, UpdateSpaceRequestBody updateSpaceRequestBody, String authorization) throws ApiException { + ApiResponse localVarResp = updateSpaceSpacesSpaceIdPatchWithHttpInfo(spaceId, updateSpaceRequestBody, authorization); return localVarResp.getData(); } @@ -2162,7 +2084,6 @@ public Object updateSpaceSpacesSpaceIdPatch(UUID spaceId, UpdateSpaceRequestBody * Update a space's details. Parameters: - **space_id**: ID of the space to update - **body**: Request body containing updated space details - **name**: Optional new name for the space - **description**: Optional new description for the space Returns: - **200**: Space updated successfully * @param spaceId (required) * @param updateSpaceRequestBody (required) - * @param instanceId (optional) * @param authorization (optional) * @return ApiResponse<Object> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body @@ -2174,8 +2095,8 @@ public Object updateSpaceSpacesSpaceIdPatch(UUID spaceId, UpdateSpaceRequestBody 422 Validation Error - */ - public ApiResponse updateSpaceSpacesSpaceIdPatchWithHttpInfo(UUID spaceId, UpdateSpaceRequestBody updateSpaceRequestBody, UUID instanceId, String authorization) throws ApiException { - okhttp3.Call localVarCall = updateSpaceSpacesSpaceIdPatchValidateBeforeCall(spaceId, updateSpaceRequestBody, instanceId, authorization, null); + public ApiResponse updateSpaceSpacesSpaceIdPatchWithHttpInfo(UUID spaceId, UpdateSpaceRequestBody updateSpaceRequestBody, String authorization) throws ApiException { + okhttp3.Call localVarCall = updateSpaceSpacesSpaceIdPatchValidateBeforeCall(spaceId, updateSpaceRequestBody, authorization, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -2185,7 +2106,6 @@ public ApiResponse updateSpaceSpacesSpaceIdPatchWithHttpInfo(UUID spaceI * Update a space's details. Parameters: - **space_id**: ID of the space to update - **body**: Request body containing updated space details - **name**: Optional new name for the space - **description**: Optional new description for the space Returns: - **200**: Space updated successfully * @param spaceId (required) * @param updateSpaceRequestBody (required) - * @param instanceId (optional) * @param authorization (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call @@ -2198,9 +2118,9 @@ public ApiResponse updateSpaceSpacesSpaceIdPatchWithHttpInfo(UUID spaceI 422 Validation Error - */ - public okhttp3.Call updateSpaceSpacesSpaceIdPatchAsync(UUID spaceId, UpdateSpaceRequestBody updateSpaceRequestBody, UUID instanceId, String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateSpaceSpacesSpaceIdPatchAsync(UUID spaceId, UpdateSpaceRequestBody updateSpaceRequestBody, String authorization, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = updateSpaceSpacesSpaceIdPatchValidateBeforeCall(spaceId, updateSpaceRequestBody, instanceId, authorization, _callback); + okhttp3.Call localVarCall = updateSpaceSpacesSpaceIdPatchValidateBeforeCall(spaceId, updateSpaceRequestBody, authorization, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; diff --git a/src/main/java/ai/lamin/lamin_api_client/api/StoragesApi.java b/src/main/java/ai/lamin/lamin_api_client/api/StoragesApi.java index ddea98a..d04bebb 100644 --- a/src/main/java/ai/lamin/lamin_api_client/api/StoragesApi.java +++ b/src/main/java/ai/lamin/lamin_api_client/api/StoragesApi.java @@ -29,7 +29,6 @@ import ai.lamin.lamin_api_client.model.HTTPValidationError; import ai.lamin.lamin_api_client.model.S3PermissionsRequest; -import java.util.UUID; import java.lang.reflect.Type; import java.util.ArrayList; @@ -80,7 +79,6 @@ public void setCustomBaseUrl(String customBaseUrl) { * @param s3PermissionsRequest (required) * @param awsAccountId (optional, default to 767398070972) * @param awsUserName (optional, default to lamin-manager) - * @param instanceId (optional) * @param authorization (optional) * @param _callback Callback for upload/download progress * @return Call to execute @@ -93,7 +91,7 @@ public void setCustomBaseUrl(String customBaseUrl) { 422 Validation Error - */ - public okhttp3.Call grantS3PermissionsStoragesS3BucketNamePermissionsPutCall(String bucketName, S3PermissionsRequest s3PermissionsRequest, String awsAccountId, String awsUserName, UUID instanceId, String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call grantS3PermissionsStoragesS3BucketNamePermissionsPutCall(String bucketName, S3PermissionsRequest s3PermissionsRequest, String awsAccountId, String awsUserName, String authorization, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -127,10 +125,6 @@ public okhttp3.Call grantS3PermissionsStoragesS3BucketNamePermissionsPutCall(Str localVarQueryParams.addAll(localVarApiClient.parameterToPair("aws_user_name", awsUserName)); } - if (instanceId != null) { - localVarQueryParams.addAll(localVarApiClient.parameterToPair("instance_id", instanceId)); - } - final String[] localVarAccepts = { "application/json" }; @@ -157,7 +151,7 @@ public okhttp3.Call grantS3PermissionsStoragesS3BucketNamePermissionsPutCall(Str } @SuppressWarnings("rawtypes") - private okhttp3.Call grantS3PermissionsStoragesS3BucketNamePermissionsPutValidateBeforeCall(String bucketName, S3PermissionsRequest s3PermissionsRequest, String awsAccountId, String awsUserName, UUID instanceId, String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call grantS3PermissionsStoragesS3BucketNamePermissionsPutValidateBeforeCall(String bucketName, S3PermissionsRequest s3PermissionsRequest, String awsAccountId, String awsUserName, String authorization, final ApiCallback _callback) throws ApiException { // verify the required parameter 'bucketName' is set if (bucketName == null) { throw new ApiException("Missing the required parameter 'bucketName' when calling grantS3PermissionsStoragesS3BucketNamePermissionsPut(Async)"); @@ -168,7 +162,7 @@ private okhttp3.Call grantS3PermissionsStoragesS3BucketNamePermissionsPutValidat throw new ApiException("Missing the required parameter 's3PermissionsRequest' when calling grantS3PermissionsStoragesS3BucketNamePermissionsPut(Async)"); } - return grantS3PermissionsStoragesS3BucketNamePermissionsPutCall(bucketName, s3PermissionsRequest, awsAccountId, awsUserName, instanceId, authorization, _callback); + return grantS3PermissionsStoragesS3BucketNamePermissionsPutCall(bucketName, s3PermissionsRequest, awsAccountId, awsUserName, authorization, _callback); } @@ -179,7 +173,6 @@ private okhttp3.Call grantS3PermissionsStoragesS3BucketNamePermissionsPutValidat * @param s3PermissionsRequest (required) * @param awsAccountId (optional, default to 767398070972) * @param awsUserName (optional, default to lamin-manager) - * @param instanceId (optional) * @param authorization (optional) * @return Object * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body @@ -191,8 +184,8 @@ private okhttp3.Call grantS3PermissionsStoragesS3BucketNamePermissionsPutValidat 422 Validation Error - */ - public Object grantS3PermissionsStoragesS3BucketNamePermissionsPut(String bucketName, S3PermissionsRequest s3PermissionsRequest, String awsAccountId, String awsUserName, UUID instanceId, String authorization) throws ApiException { - ApiResponse localVarResp = grantS3PermissionsStoragesS3BucketNamePermissionsPutWithHttpInfo(bucketName, s3PermissionsRequest, awsAccountId, awsUserName, instanceId, authorization); + public Object grantS3PermissionsStoragesS3BucketNamePermissionsPut(String bucketName, S3PermissionsRequest s3PermissionsRequest, String awsAccountId, String awsUserName, String authorization) throws ApiException { + ApiResponse localVarResp = grantS3PermissionsStoragesS3BucketNamePermissionsPutWithHttpInfo(bucketName, s3PermissionsRequest, awsAccountId, awsUserName, authorization); return localVarResp.getData(); } @@ -203,7 +196,6 @@ public Object grantS3PermissionsStoragesS3BucketNamePermissionsPut(String bucket * @param s3PermissionsRequest (required) * @param awsAccountId (optional, default to 767398070972) * @param awsUserName (optional, default to lamin-manager) - * @param instanceId (optional) * @param authorization (optional) * @return ApiResponse<Object> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body @@ -215,8 +207,8 @@ public Object grantS3PermissionsStoragesS3BucketNamePermissionsPut(String bucket 422 Validation Error - */ - public ApiResponse grantS3PermissionsStoragesS3BucketNamePermissionsPutWithHttpInfo(String bucketName, S3PermissionsRequest s3PermissionsRequest, String awsAccountId, String awsUserName, UUID instanceId, String authorization) throws ApiException { - okhttp3.Call localVarCall = grantS3PermissionsStoragesS3BucketNamePermissionsPutValidateBeforeCall(bucketName, s3PermissionsRequest, awsAccountId, awsUserName, instanceId, authorization, null); + public ApiResponse grantS3PermissionsStoragesS3BucketNamePermissionsPutWithHttpInfo(String bucketName, S3PermissionsRequest s3PermissionsRequest, String awsAccountId, String awsUserName, String authorization) throws ApiException { + okhttp3.Call localVarCall = grantS3PermissionsStoragesS3BucketNamePermissionsPutValidateBeforeCall(bucketName, s3PermissionsRequest, awsAccountId, awsUserName, authorization, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -228,7 +220,6 @@ public ApiResponse grantS3PermissionsStoragesS3BucketNamePermissionsPutW * @param s3PermissionsRequest (required) * @param awsAccountId (optional, default to 767398070972) * @param awsUserName (optional, default to lamin-manager) - * @param instanceId (optional) * @param authorization (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call @@ -241,9 +232,9 @@ public ApiResponse grantS3PermissionsStoragesS3BucketNamePermissionsPutW 422 Validation Error - */ - public okhttp3.Call grantS3PermissionsStoragesS3BucketNamePermissionsPutAsync(String bucketName, S3PermissionsRequest s3PermissionsRequest, String awsAccountId, String awsUserName, UUID instanceId, String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call grantS3PermissionsStoragesS3BucketNamePermissionsPutAsync(String bucketName, S3PermissionsRequest s3PermissionsRequest, String awsAccountId, String awsUserName, String authorization, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = grantS3PermissionsStoragesS3BucketNamePermissionsPutValidateBeforeCall(bucketName, s3PermissionsRequest, awsAccountId, awsUserName, instanceId, authorization, _callback); + okhttp3.Call localVarCall = grantS3PermissionsStoragesS3BucketNamePermissionsPutValidateBeforeCall(bucketName, s3PermissionsRequest, awsAccountId, awsUserName, authorization, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; diff --git a/src/main/java/ai/lamin/lamin_api_client/api/TeamsApi.java b/src/main/java/ai/lamin/lamin_api_client/api/TeamsApi.java index 1d08bbe..603b294 100644 --- a/src/main/java/ai/lamin/lamin_api_client/api/TeamsApi.java +++ b/src/main/java/ai/lamin/lamin_api_client/api/TeamsApi.java @@ -82,7 +82,6 @@ public void setCustomBaseUrl(String customBaseUrl) { * @param teamId (required) * @param accountId (required) * @param addTeamMemberRequestBody (required) - * @param instanceId (optional) * @param authorization (optional) * @param _callback Callback for upload/download progress * @return Call to execute @@ -95,7 +94,7 @@ public void setCustomBaseUrl(String customBaseUrl) { 422 Validation Error - */ - public okhttp3.Call addTeamMemberTeamsTeamIdMembersAccountIdPutCall(UUID teamId, UUID accountId, AddTeamMemberRequestBody addTeamMemberRequestBody, UUID instanceId, String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call addTeamMemberTeamsTeamIdMembersAccountIdPutCall(UUID teamId, UUID accountId, AddTeamMemberRequestBody addTeamMemberRequestBody, String authorization, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -122,10 +121,6 @@ public okhttp3.Call addTeamMemberTeamsTeamIdMembersAccountIdPutCall(UUID teamId, Map localVarCookieParams = new HashMap(); Map localVarFormParams = new HashMap(); - if (instanceId != null) { - localVarQueryParams.addAll(localVarApiClient.parameterToPair("instance_id", instanceId)); - } - final String[] localVarAccepts = { "application/json" }; @@ -152,7 +147,7 @@ public okhttp3.Call addTeamMemberTeamsTeamIdMembersAccountIdPutCall(UUID teamId, } @SuppressWarnings("rawtypes") - private okhttp3.Call addTeamMemberTeamsTeamIdMembersAccountIdPutValidateBeforeCall(UUID teamId, UUID accountId, AddTeamMemberRequestBody addTeamMemberRequestBody, UUID instanceId, String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call addTeamMemberTeamsTeamIdMembersAccountIdPutValidateBeforeCall(UUID teamId, UUID accountId, AddTeamMemberRequestBody addTeamMemberRequestBody, String authorization, final ApiCallback _callback) throws ApiException { // verify the required parameter 'teamId' is set if (teamId == null) { throw new ApiException("Missing the required parameter 'teamId' when calling addTeamMemberTeamsTeamIdMembersAccountIdPut(Async)"); @@ -168,7 +163,7 @@ private okhttp3.Call addTeamMemberTeamsTeamIdMembersAccountIdPutValidateBeforeCa throw new ApiException("Missing the required parameter 'addTeamMemberRequestBody' when calling addTeamMemberTeamsTeamIdMembersAccountIdPut(Async)"); } - return addTeamMemberTeamsTeamIdMembersAccountIdPutCall(teamId, accountId, addTeamMemberRequestBody, instanceId, authorization, _callback); + return addTeamMemberTeamsTeamIdMembersAccountIdPutCall(teamId, accountId, addTeamMemberRequestBody, authorization, _callback); } @@ -178,7 +173,6 @@ private okhttp3.Call addTeamMemberTeamsTeamIdMembersAccountIdPutValidateBeforeCa * @param teamId (required) * @param accountId (required) * @param addTeamMemberRequestBody (required) - * @param instanceId (optional) * @param authorization (optional) * @return Object * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body @@ -190,8 +184,8 @@ private okhttp3.Call addTeamMemberTeamsTeamIdMembersAccountIdPutValidateBeforeCa 422 Validation Error - */ - public Object addTeamMemberTeamsTeamIdMembersAccountIdPut(UUID teamId, UUID accountId, AddTeamMemberRequestBody addTeamMemberRequestBody, UUID instanceId, String authorization) throws ApiException { - ApiResponse localVarResp = addTeamMemberTeamsTeamIdMembersAccountIdPutWithHttpInfo(teamId, accountId, addTeamMemberRequestBody, instanceId, authorization); + public Object addTeamMemberTeamsTeamIdMembersAccountIdPut(UUID teamId, UUID accountId, AddTeamMemberRequestBody addTeamMemberRequestBody, String authorization) throws ApiException { + ApiResponse localVarResp = addTeamMemberTeamsTeamIdMembersAccountIdPutWithHttpInfo(teamId, accountId, addTeamMemberRequestBody, authorization); return localVarResp.getData(); } @@ -201,7 +195,6 @@ public Object addTeamMemberTeamsTeamIdMembersAccountIdPut(UUID teamId, UUID acco * @param teamId (required) * @param accountId (required) * @param addTeamMemberRequestBody (required) - * @param instanceId (optional) * @param authorization (optional) * @return ApiResponse<Object> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body @@ -213,8 +206,8 @@ public Object addTeamMemberTeamsTeamIdMembersAccountIdPut(UUID teamId, UUID acco 422 Validation Error - */ - public ApiResponse addTeamMemberTeamsTeamIdMembersAccountIdPutWithHttpInfo(UUID teamId, UUID accountId, AddTeamMemberRequestBody addTeamMemberRequestBody, UUID instanceId, String authorization) throws ApiException { - okhttp3.Call localVarCall = addTeamMemberTeamsTeamIdMembersAccountIdPutValidateBeforeCall(teamId, accountId, addTeamMemberRequestBody, instanceId, authorization, null); + public ApiResponse addTeamMemberTeamsTeamIdMembersAccountIdPutWithHttpInfo(UUID teamId, UUID accountId, AddTeamMemberRequestBody addTeamMemberRequestBody, String authorization) throws ApiException { + okhttp3.Call localVarCall = addTeamMemberTeamsTeamIdMembersAccountIdPutValidateBeforeCall(teamId, accountId, addTeamMemberRequestBody, authorization, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -225,7 +218,6 @@ public ApiResponse addTeamMemberTeamsTeamIdMembersAccountIdPutWithHttpIn * @param teamId (required) * @param accountId (required) * @param addTeamMemberRequestBody (required) - * @param instanceId (optional) * @param authorization (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call @@ -238,9 +230,9 @@ public ApiResponse addTeamMemberTeamsTeamIdMembersAccountIdPutWithHttpIn 422 Validation Error - */ - public okhttp3.Call addTeamMemberTeamsTeamIdMembersAccountIdPutAsync(UUID teamId, UUID accountId, AddTeamMemberRequestBody addTeamMemberRequestBody, UUID instanceId, String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call addTeamMemberTeamsTeamIdMembersAccountIdPutAsync(UUID teamId, UUID accountId, AddTeamMemberRequestBody addTeamMemberRequestBody, String authorization, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = addTeamMemberTeamsTeamIdMembersAccountIdPutValidateBeforeCall(teamId, accountId, addTeamMemberRequestBody, instanceId, authorization, _callback); + okhttp3.Call localVarCall = addTeamMemberTeamsTeamIdMembersAccountIdPutValidateBeforeCall(teamId, accountId, addTeamMemberRequestBody, authorization, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -248,7 +240,6 @@ public okhttp3.Call addTeamMemberTeamsTeamIdMembersAccountIdPutAsync(UUID teamId /** * Build call for createTeamTeamsPut * @param createTeamRequestBody (required) - * @param instanceId (optional) * @param authorization (optional) * @param _callback Callback for upload/download progress * @return Call to execute @@ -261,7 +252,7 @@ public okhttp3.Call addTeamMemberTeamsTeamIdMembersAccountIdPutAsync(UUID teamId 422 Validation Error - */ - public okhttp3.Call createTeamTeamsPutCall(CreateTeamRequestBody createTeamRequestBody, UUID instanceId, String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call createTeamTeamsPutCall(CreateTeamRequestBody createTeamRequestBody, String authorization, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -286,10 +277,6 @@ public okhttp3.Call createTeamTeamsPutCall(CreateTeamRequestBody createTeamReque Map localVarCookieParams = new HashMap(); Map localVarFormParams = new HashMap(); - if (instanceId != null) { - localVarQueryParams.addAll(localVarApiClient.parameterToPair("instance_id", instanceId)); - } - final String[] localVarAccepts = { "application/json" }; @@ -316,13 +303,13 @@ public okhttp3.Call createTeamTeamsPutCall(CreateTeamRequestBody createTeamReque } @SuppressWarnings("rawtypes") - private okhttp3.Call createTeamTeamsPutValidateBeforeCall(CreateTeamRequestBody createTeamRequestBody, UUID instanceId, String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call createTeamTeamsPutValidateBeforeCall(CreateTeamRequestBody createTeamRequestBody, String authorization, final ApiCallback _callback) throws ApiException { // verify the required parameter 'createTeamRequestBody' is set if (createTeamRequestBody == null) { throw new ApiException("Missing the required parameter 'createTeamRequestBody' when calling createTeamTeamsPut(Async)"); } - return createTeamTeamsPutCall(createTeamRequestBody, instanceId, authorization, _callback); + return createTeamTeamsPutCall(createTeamRequestBody, authorization, _callback); } @@ -330,7 +317,6 @@ private okhttp3.Call createTeamTeamsPutValidateBeforeCall(CreateTeamRequestBody * Create Team * Create a new team. Parameters: - **body**: Request body containing team details - **name**: Name of the team - **organization_id**: UUID of the organization - **description**: Optional description of the team Returns: - **201**: Team created successfully * @param createTeamRequestBody (required) - * @param instanceId (optional) * @param authorization (optional) * @return Object * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body @@ -342,8 +328,8 @@ private okhttp3.Call createTeamTeamsPutValidateBeforeCall(CreateTeamRequestBody 422 Validation Error - */ - public Object createTeamTeamsPut(CreateTeamRequestBody createTeamRequestBody, UUID instanceId, String authorization) throws ApiException { - ApiResponse localVarResp = createTeamTeamsPutWithHttpInfo(createTeamRequestBody, instanceId, authorization); + public Object createTeamTeamsPut(CreateTeamRequestBody createTeamRequestBody, String authorization) throws ApiException { + ApiResponse localVarResp = createTeamTeamsPutWithHttpInfo(createTeamRequestBody, authorization); return localVarResp.getData(); } @@ -351,7 +337,6 @@ public Object createTeamTeamsPut(CreateTeamRequestBody createTeamRequestBody, UU * Create Team * Create a new team. Parameters: - **body**: Request body containing team details - **name**: Name of the team - **organization_id**: UUID of the organization - **description**: Optional description of the team Returns: - **201**: Team created successfully * @param createTeamRequestBody (required) - * @param instanceId (optional) * @param authorization (optional) * @return ApiResponse<Object> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body @@ -363,8 +348,8 @@ public Object createTeamTeamsPut(CreateTeamRequestBody createTeamRequestBody, UU 422 Validation Error - */ - public ApiResponse createTeamTeamsPutWithHttpInfo(CreateTeamRequestBody createTeamRequestBody, UUID instanceId, String authorization) throws ApiException { - okhttp3.Call localVarCall = createTeamTeamsPutValidateBeforeCall(createTeamRequestBody, instanceId, authorization, null); + public ApiResponse createTeamTeamsPutWithHttpInfo(CreateTeamRequestBody createTeamRequestBody, String authorization) throws ApiException { + okhttp3.Call localVarCall = createTeamTeamsPutValidateBeforeCall(createTeamRequestBody, authorization, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -373,7 +358,6 @@ public ApiResponse createTeamTeamsPutWithHttpInfo(CreateTeamRequestBody * Create Team (asynchronously) * Create a new team. Parameters: - **body**: Request body containing team details - **name**: Name of the team - **organization_id**: UUID of the organization - **description**: Optional description of the team Returns: - **201**: Team created successfully * @param createTeamRequestBody (required) - * @param instanceId (optional) * @param authorization (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call @@ -386,9 +370,9 @@ public ApiResponse createTeamTeamsPutWithHttpInfo(CreateTeamRequestBody 422 Validation Error - */ - public okhttp3.Call createTeamTeamsPutAsync(CreateTeamRequestBody createTeamRequestBody, UUID instanceId, String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call createTeamTeamsPutAsync(CreateTeamRequestBody createTeamRequestBody, String authorization, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = createTeamTeamsPutValidateBeforeCall(createTeamRequestBody, instanceId, authorization, _callback); + okhttp3.Call localVarCall = createTeamTeamsPutValidateBeforeCall(createTeamRequestBody, authorization, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -396,7 +380,6 @@ public okhttp3.Call createTeamTeamsPutAsync(CreateTeamRequestBody createTeamRequ /** * Build call for deleteTeamTeamsTeamIdDelete * @param teamId (required) - * @param instanceId (optional) * @param authorization (optional) * @param _callback Callback for upload/download progress * @return Call to execute @@ -409,7 +392,7 @@ public okhttp3.Call createTeamTeamsPutAsync(CreateTeamRequestBody createTeamRequ 422 Validation Error - */ - public okhttp3.Call deleteTeamTeamsTeamIdDeleteCall(UUID teamId, UUID instanceId, String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call deleteTeamTeamsTeamIdDeleteCall(UUID teamId, String authorization, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -435,10 +418,6 @@ public okhttp3.Call deleteTeamTeamsTeamIdDeleteCall(UUID teamId, UUID instanceId Map localVarCookieParams = new HashMap(); Map localVarFormParams = new HashMap(); - if (instanceId != null) { - localVarQueryParams.addAll(localVarApiClient.parameterToPair("instance_id", instanceId)); - } - final String[] localVarAccepts = { "application/json" }; @@ -464,13 +443,13 @@ public okhttp3.Call deleteTeamTeamsTeamIdDeleteCall(UUID teamId, UUID instanceId } @SuppressWarnings("rawtypes") - private okhttp3.Call deleteTeamTeamsTeamIdDeleteValidateBeforeCall(UUID teamId, UUID instanceId, String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call deleteTeamTeamsTeamIdDeleteValidateBeforeCall(UUID teamId, String authorization, final ApiCallback _callback) throws ApiException { // verify the required parameter 'teamId' is set if (teamId == null) { throw new ApiException("Missing the required parameter 'teamId' when calling deleteTeamTeamsTeamIdDelete(Async)"); } - return deleteTeamTeamsTeamIdDeleteCall(teamId, instanceId, authorization, _callback); + return deleteTeamTeamsTeamIdDeleteCall(teamId, authorization, _callback); } @@ -478,7 +457,6 @@ private okhttp3.Call deleteTeamTeamsTeamIdDeleteValidateBeforeCall(UUID teamId, * Delete Team * Delete a team. Parameters: - **team_id**: UUID of the team to delete Returns: - **200**: Team deleted successfully * @param teamId (required) - * @param instanceId (optional) * @param authorization (optional) * @return Object * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body @@ -490,8 +468,8 @@ private okhttp3.Call deleteTeamTeamsTeamIdDeleteValidateBeforeCall(UUID teamId, 422 Validation Error - */ - public Object deleteTeamTeamsTeamIdDelete(UUID teamId, UUID instanceId, String authorization) throws ApiException { - ApiResponse localVarResp = deleteTeamTeamsTeamIdDeleteWithHttpInfo(teamId, instanceId, authorization); + public Object deleteTeamTeamsTeamIdDelete(UUID teamId, String authorization) throws ApiException { + ApiResponse localVarResp = deleteTeamTeamsTeamIdDeleteWithHttpInfo(teamId, authorization); return localVarResp.getData(); } @@ -499,7 +477,6 @@ public Object deleteTeamTeamsTeamIdDelete(UUID teamId, UUID instanceId, String a * Delete Team * Delete a team. Parameters: - **team_id**: UUID of the team to delete Returns: - **200**: Team deleted successfully * @param teamId (required) - * @param instanceId (optional) * @param authorization (optional) * @return ApiResponse<Object> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body @@ -511,8 +488,8 @@ public Object deleteTeamTeamsTeamIdDelete(UUID teamId, UUID instanceId, String a 422 Validation Error - */ - public ApiResponse deleteTeamTeamsTeamIdDeleteWithHttpInfo(UUID teamId, UUID instanceId, String authorization) throws ApiException { - okhttp3.Call localVarCall = deleteTeamTeamsTeamIdDeleteValidateBeforeCall(teamId, instanceId, authorization, null); + public ApiResponse deleteTeamTeamsTeamIdDeleteWithHttpInfo(UUID teamId, String authorization) throws ApiException { + okhttp3.Call localVarCall = deleteTeamTeamsTeamIdDeleteValidateBeforeCall(teamId, authorization, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -521,7 +498,6 @@ public ApiResponse deleteTeamTeamsTeamIdDeleteWithHttpInfo(UUID teamId, * Delete Team (asynchronously) * Delete a team. Parameters: - **team_id**: UUID of the team to delete Returns: - **200**: Team deleted successfully * @param teamId (required) - * @param instanceId (optional) * @param authorization (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call @@ -534,9 +510,9 @@ public ApiResponse deleteTeamTeamsTeamIdDeleteWithHttpInfo(UUID teamId, 422 Validation Error - */ - public okhttp3.Call deleteTeamTeamsTeamIdDeleteAsync(UUID teamId, UUID instanceId, String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call deleteTeamTeamsTeamIdDeleteAsync(UUID teamId, String authorization, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = deleteTeamTeamsTeamIdDeleteValidateBeforeCall(teamId, instanceId, authorization, _callback); + okhttp3.Call localVarCall = deleteTeamTeamsTeamIdDeleteValidateBeforeCall(teamId, authorization, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -544,7 +520,6 @@ public okhttp3.Call deleteTeamTeamsTeamIdDeleteAsync(UUID teamId, UUID instanceI /** * Build call for getTeamTeamsTeamIdGet * @param teamId (required) - * @param instanceId (optional) * @param authorization (optional) * @param _callback Callback for upload/download progress * @return Call to execute @@ -557,7 +532,7 @@ public okhttp3.Call deleteTeamTeamsTeamIdDeleteAsync(UUID teamId, UUID instanceI 422 Validation Error - */ - public okhttp3.Call getTeamTeamsTeamIdGetCall(UUID teamId, UUID instanceId, String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getTeamTeamsTeamIdGetCall(UUID teamId, String authorization, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -583,10 +558,6 @@ public okhttp3.Call getTeamTeamsTeamIdGetCall(UUID teamId, UUID instanceId, Stri Map localVarCookieParams = new HashMap(); Map localVarFormParams = new HashMap(); - if (instanceId != null) { - localVarQueryParams.addAll(localVarApiClient.parameterToPair("instance_id", instanceId)); - } - final String[] localVarAccepts = { "application/json" }; @@ -612,13 +583,13 @@ public okhttp3.Call getTeamTeamsTeamIdGetCall(UUID teamId, UUID instanceId, Stri } @SuppressWarnings("rawtypes") - private okhttp3.Call getTeamTeamsTeamIdGetValidateBeforeCall(UUID teamId, UUID instanceId, String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call getTeamTeamsTeamIdGetValidateBeforeCall(UUID teamId, String authorization, final ApiCallback _callback) throws ApiException { // verify the required parameter 'teamId' is set if (teamId == null) { throw new ApiException("Missing the required parameter 'teamId' when calling getTeamTeamsTeamIdGet(Async)"); } - return getTeamTeamsTeamIdGetCall(teamId, instanceId, authorization, _callback); + return getTeamTeamsTeamIdGetCall(teamId, authorization, _callback); } @@ -626,7 +597,6 @@ private okhttp3.Call getTeamTeamsTeamIdGetValidateBeforeCall(UUID teamId, UUID i * Get Team * Get details of a specific team. Parameters: - **team_id**: UUID of the team to retrieve Returns: - **200**: Team details retrieved successfully - **404**: Team not found * @param teamId (required) - * @param instanceId (optional) * @param authorization (optional) * @return Object * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body @@ -638,8 +608,8 @@ private okhttp3.Call getTeamTeamsTeamIdGetValidateBeforeCall(UUID teamId, UUID i 422 Validation Error - */ - public Object getTeamTeamsTeamIdGet(UUID teamId, UUID instanceId, String authorization) throws ApiException { - ApiResponse localVarResp = getTeamTeamsTeamIdGetWithHttpInfo(teamId, instanceId, authorization); + public Object getTeamTeamsTeamIdGet(UUID teamId, String authorization) throws ApiException { + ApiResponse localVarResp = getTeamTeamsTeamIdGetWithHttpInfo(teamId, authorization); return localVarResp.getData(); } @@ -647,7 +617,6 @@ public Object getTeamTeamsTeamIdGet(UUID teamId, UUID instanceId, String authori * Get Team * Get details of a specific team. Parameters: - **team_id**: UUID of the team to retrieve Returns: - **200**: Team details retrieved successfully - **404**: Team not found * @param teamId (required) - * @param instanceId (optional) * @param authorization (optional) * @return ApiResponse<Object> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body @@ -659,8 +628,8 @@ public Object getTeamTeamsTeamIdGet(UUID teamId, UUID instanceId, String authori 422 Validation Error - */ - public ApiResponse getTeamTeamsTeamIdGetWithHttpInfo(UUID teamId, UUID instanceId, String authorization) throws ApiException { - okhttp3.Call localVarCall = getTeamTeamsTeamIdGetValidateBeforeCall(teamId, instanceId, authorization, null); + public ApiResponse getTeamTeamsTeamIdGetWithHttpInfo(UUID teamId, String authorization) throws ApiException { + okhttp3.Call localVarCall = getTeamTeamsTeamIdGetValidateBeforeCall(teamId, authorization, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -669,7 +638,6 @@ public ApiResponse getTeamTeamsTeamIdGetWithHttpInfo(UUID teamId, UUID i * Get Team (asynchronously) * Get details of a specific team. Parameters: - **team_id**: UUID of the team to retrieve Returns: - **200**: Team details retrieved successfully - **404**: Team not found * @param teamId (required) - * @param instanceId (optional) * @param authorization (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call @@ -682,9 +650,9 @@ public ApiResponse getTeamTeamsTeamIdGetWithHttpInfo(UUID teamId, UUID i 422 Validation Error - */ - public okhttp3.Call getTeamTeamsTeamIdGetAsync(UUID teamId, UUID instanceId, String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getTeamTeamsTeamIdGetAsync(UUID teamId, String authorization, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = getTeamTeamsTeamIdGetValidateBeforeCall(teamId, instanceId, authorization, _callback); + okhttp3.Call localVarCall = getTeamTeamsTeamIdGetValidateBeforeCall(teamId, authorization, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -692,7 +660,6 @@ public okhttp3.Call getTeamTeamsTeamIdGetAsync(UUID teamId, UUID instanceId, Str /** * Build call for listOrganizationTeamsTeamsOrganizationsOrganizationIdGet * @param organizationId (required) - * @param instanceId (optional) * @param authorization (optional) * @param _callback Callback for upload/download progress * @return Call to execute @@ -705,7 +672,7 @@ public okhttp3.Call getTeamTeamsTeamIdGetAsync(UUID teamId, UUID instanceId, Str 422 Validation Error - */ - public okhttp3.Call listOrganizationTeamsTeamsOrganizationsOrganizationIdGetCall(UUID organizationId, UUID instanceId, String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call listOrganizationTeamsTeamsOrganizationsOrganizationIdGetCall(UUID organizationId, String authorization, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -731,10 +698,6 @@ public okhttp3.Call listOrganizationTeamsTeamsOrganizationsOrganizationIdGetCall Map localVarCookieParams = new HashMap(); Map localVarFormParams = new HashMap(); - if (instanceId != null) { - localVarQueryParams.addAll(localVarApiClient.parameterToPair("instance_id", instanceId)); - } - final String[] localVarAccepts = { "application/json" }; @@ -760,13 +723,13 @@ public okhttp3.Call listOrganizationTeamsTeamsOrganizationsOrganizationIdGetCall } @SuppressWarnings("rawtypes") - private okhttp3.Call listOrganizationTeamsTeamsOrganizationsOrganizationIdGetValidateBeforeCall(UUID organizationId, UUID instanceId, String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call listOrganizationTeamsTeamsOrganizationsOrganizationIdGetValidateBeforeCall(UUID organizationId, String authorization, final ApiCallback _callback) throws ApiException { // verify the required parameter 'organizationId' is set if (organizationId == null) { throw new ApiException("Missing the required parameter 'organizationId' when calling listOrganizationTeamsTeamsOrganizationsOrganizationIdGet(Async)"); } - return listOrganizationTeamsTeamsOrganizationsOrganizationIdGetCall(organizationId, instanceId, authorization, _callback); + return listOrganizationTeamsTeamsOrganizationsOrganizationIdGetCall(organizationId, authorization, _callback); } @@ -774,7 +737,6 @@ private okhttp3.Call listOrganizationTeamsTeamsOrganizationsOrganizationIdGetVal * List Organization Teams * List all teams in an organization. Parameters: - **organization_id**: UUID of the organization to list teams for Returns: - **200**: List of teams retrieved successfully * @param organizationId (required) - * @param instanceId (optional) * @param authorization (optional) * @return Object * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body @@ -786,8 +748,8 @@ private okhttp3.Call listOrganizationTeamsTeamsOrganizationsOrganizationIdGetVal 422 Validation Error - */ - public Object listOrganizationTeamsTeamsOrganizationsOrganizationIdGet(UUID organizationId, UUID instanceId, String authorization) throws ApiException { - ApiResponse localVarResp = listOrganizationTeamsTeamsOrganizationsOrganizationIdGetWithHttpInfo(organizationId, instanceId, authorization); + public Object listOrganizationTeamsTeamsOrganizationsOrganizationIdGet(UUID organizationId, String authorization) throws ApiException { + ApiResponse localVarResp = listOrganizationTeamsTeamsOrganizationsOrganizationIdGetWithHttpInfo(organizationId, authorization); return localVarResp.getData(); } @@ -795,7 +757,6 @@ public Object listOrganizationTeamsTeamsOrganizationsOrganizationIdGet(UUID orga * List Organization Teams * List all teams in an organization. Parameters: - **organization_id**: UUID of the organization to list teams for Returns: - **200**: List of teams retrieved successfully * @param organizationId (required) - * @param instanceId (optional) * @param authorization (optional) * @return ApiResponse<Object> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body @@ -807,8 +768,8 @@ public Object listOrganizationTeamsTeamsOrganizationsOrganizationIdGet(UUID orga 422 Validation Error - */ - public ApiResponse listOrganizationTeamsTeamsOrganizationsOrganizationIdGetWithHttpInfo(UUID organizationId, UUID instanceId, String authorization) throws ApiException { - okhttp3.Call localVarCall = listOrganizationTeamsTeamsOrganizationsOrganizationIdGetValidateBeforeCall(organizationId, instanceId, authorization, null); + public ApiResponse listOrganizationTeamsTeamsOrganizationsOrganizationIdGetWithHttpInfo(UUID organizationId, String authorization) throws ApiException { + okhttp3.Call localVarCall = listOrganizationTeamsTeamsOrganizationsOrganizationIdGetValidateBeforeCall(organizationId, authorization, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -817,7 +778,6 @@ public ApiResponse listOrganizationTeamsTeamsOrganizationsOrganizationId * List Organization Teams (asynchronously) * List all teams in an organization. Parameters: - **organization_id**: UUID of the organization to list teams for Returns: - **200**: List of teams retrieved successfully * @param organizationId (required) - * @param instanceId (optional) * @param authorization (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call @@ -830,9 +790,9 @@ public ApiResponse listOrganizationTeamsTeamsOrganizationsOrganizationId 422 Validation Error - */ - public okhttp3.Call listOrganizationTeamsTeamsOrganizationsOrganizationIdGetAsync(UUID organizationId, UUID instanceId, String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call listOrganizationTeamsTeamsOrganizationsOrganizationIdGetAsync(UUID organizationId, String authorization, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = listOrganizationTeamsTeamsOrganizationsOrganizationIdGetValidateBeforeCall(organizationId, instanceId, authorization, _callback); + okhttp3.Call localVarCall = listOrganizationTeamsTeamsOrganizationsOrganizationIdGetValidateBeforeCall(organizationId, authorization, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -840,7 +800,6 @@ public okhttp3.Call listOrganizationTeamsTeamsOrganizationsOrganizationIdGetAsyn /** * Build call for listTeamMembersTeamsTeamIdMembersGet * @param teamId (required) - * @param instanceId (optional) * @param authorization (optional) * @param _callback Callback for upload/download progress * @return Call to execute @@ -853,7 +812,7 @@ public okhttp3.Call listOrganizationTeamsTeamsOrganizationsOrganizationIdGetAsyn 422 Validation Error - */ - public okhttp3.Call listTeamMembersTeamsTeamIdMembersGetCall(UUID teamId, UUID instanceId, String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call listTeamMembersTeamsTeamIdMembersGetCall(UUID teamId, String authorization, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -879,10 +838,6 @@ public okhttp3.Call listTeamMembersTeamsTeamIdMembersGetCall(UUID teamId, UUID i Map localVarCookieParams = new HashMap(); Map localVarFormParams = new HashMap(); - if (instanceId != null) { - localVarQueryParams.addAll(localVarApiClient.parameterToPair("instance_id", instanceId)); - } - final String[] localVarAccepts = { "application/json" }; @@ -908,13 +863,13 @@ public okhttp3.Call listTeamMembersTeamsTeamIdMembersGetCall(UUID teamId, UUID i } @SuppressWarnings("rawtypes") - private okhttp3.Call listTeamMembersTeamsTeamIdMembersGetValidateBeforeCall(UUID teamId, UUID instanceId, String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call listTeamMembersTeamsTeamIdMembersGetValidateBeforeCall(UUID teamId, String authorization, final ApiCallback _callback) throws ApiException { // verify the required parameter 'teamId' is set if (teamId == null) { throw new ApiException("Missing the required parameter 'teamId' when calling listTeamMembersTeamsTeamIdMembersGet(Async)"); } - return listTeamMembersTeamsTeamIdMembersGetCall(teamId, instanceId, authorization, _callback); + return listTeamMembersTeamsTeamIdMembersGetCall(teamId, authorization, _callback); } @@ -922,7 +877,6 @@ private okhttp3.Call listTeamMembersTeamsTeamIdMembersGetValidateBeforeCall(UUID * List Team Members * List all members of a team. Parameters: - **team_id**: UUID of the team to list members for Returns: - **200**: List of team members retrieved successfully * @param teamId (required) - * @param instanceId (optional) * @param authorization (optional) * @return Object * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body @@ -934,8 +888,8 @@ private okhttp3.Call listTeamMembersTeamsTeamIdMembersGetValidateBeforeCall(UUID 422 Validation Error - */ - public Object listTeamMembersTeamsTeamIdMembersGet(UUID teamId, UUID instanceId, String authorization) throws ApiException { - ApiResponse localVarResp = listTeamMembersTeamsTeamIdMembersGetWithHttpInfo(teamId, instanceId, authorization); + public Object listTeamMembersTeamsTeamIdMembersGet(UUID teamId, String authorization) throws ApiException { + ApiResponse localVarResp = listTeamMembersTeamsTeamIdMembersGetWithHttpInfo(teamId, authorization); return localVarResp.getData(); } @@ -943,7 +897,6 @@ public Object listTeamMembersTeamsTeamIdMembersGet(UUID teamId, UUID instanceId, * List Team Members * List all members of a team. Parameters: - **team_id**: UUID of the team to list members for Returns: - **200**: List of team members retrieved successfully * @param teamId (required) - * @param instanceId (optional) * @param authorization (optional) * @return ApiResponse<Object> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body @@ -955,8 +908,8 @@ public Object listTeamMembersTeamsTeamIdMembersGet(UUID teamId, UUID instanceId, 422 Validation Error - */ - public ApiResponse listTeamMembersTeamsTeamIdMembersGetWithHttpInfo(UUID teamId, UUID instanceId, String authorization) throws ApiException { - okhttp3.Call localVarCall = listTeamMembersTeamsTeamIdMembersGetValidateBeforeCall(teamId, instanceId, authorization, null); + public ApiResponse listTeamMembersTeamsTeamIdMembersGetWithHttpInfo(UUID teamId, String authorization) throws ApiException { + okhttp3.Call localVarCall = listTeamMembersTeamsTeamIdMembersGetValidateBeforeCall(teamId, authorization, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -965,7 +918,6 @@ public ApiResponse listTeamMembersTeamsTeamIdMembersGetWithHttpInfo(UUID * List Team Members (asynchronously) * List all members of a team. Parameters: - **team_id**: UUID of the team to list members for Returns: - **200**: List of team members retrieved successfully * @param teamId (required) - * @param instanceId (optional) * @param authorization (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call @@ -978,9 +930,9 @@ public ApiResponse listTeamMembersTeamsTeamIdMembersGetWithHttpInfo(UUID 422 Validation Error - */ - public okhttp3.Call listTeamMembersTeamsTeamIdMembersGetAsync(UUID teamId, UUID instanceId, String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call listTeamMembersTeamsTeamIdMembersGetAsync(UUID teamId, String authorization, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = listTeamMembersTeamsTeamIdMembersGetValidateBeforeCall(teamId, instanceId, authorization, _callback); + okhttp3.Call localVarCall = listTeamMembersTeamsTeamIdMembersGetValidateBeforeCall(teamId, authorization, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -989,7 +941,6 @@ public okhttp3.Call listTeamMembersTeamsTeamIdMembersGetAsync(UUID teamId, UUID * Build call for removeTeamMemberTeamsTeamIdMembersAccountIdDelete * @param teamId (required) * @param accountId (required) - * @param instanceId (optional) * @param authorization (optional) * @param _callback Callback for upload/download progress * @return Call to execute @@ -1002,7 +953,7 @@ public okhttp3.Call listTeamMembersTeamsTeamIdMembersGetAsync(UUID teamId, UUID 422 Validation Error - */ - public okhttp3.Call removeTeamMemberTeamsTeamIdMembersAccountIdDeleteCall(UUID teamId, UUID accountId, UUID instanceId, String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call removeTeamMemberTeamsTeamIdMembersAccountIdDeleteCall(UUID teamId, UUID accountId, String authorization, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -1029,10 +980,6 @@ public okhttp3.Call removeTeamMemberTeamsTeamIdMembersAccountIdDeleteCall(UUID t Map localVarCookieParams = new HashMap(); Map localVarFormParams = new HashMap(); - if (instanceId != null) { - localVarQueryParams.addAll(localVarApiClient.parameterToPair("instance_id", instanceId)); - } - final String[] localVarAccepts = { "application/json" }; @@ -1058,7 +1005,7 @@ public okhttp3.Call removeTeamMemberTeamsTeamIdMembersAccountIdDeleteCall(UUID t } @SuppressWarnings("rawtypes") - private okhttp3.Call removeTeamMemberTeamsTeamIdMembersAccountIdDeleteValidateBeforeCall(UUID teamId, UUID accountId, UUID instanceId, String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call removeTeamMemberTeamsTeamIdMembersAccountIdDeleteValidateBeforeCall(UUID teamId, UUID accountId, String authorization, final ApiCallback _callback) throws ApiException { // verify the required parameter 'teamId' is set if (teamId == null) { throw new ApiException("Missing the required parameter 'teamId' when calling removeTeamMemberTeamsTeamIdMembersAccountIdDelete(Async)"); @@ -1069,7 +1016,7 @@ private okhttp3.Call removeTeamMemberTeamsTeamIdMembersAccountIdDeleteValidateBe throw new ApiException("Missing the required parameter 'accountId' when calling removeTeamMemberTeamsTeamIdMembersAccountIdDelete(Async)"); } - return removeTeamMemberTeamsTeamIdMembersAccountIdDeleteCall(teamId, accountId, instanceId, authorization, _callback); + return removeTeamMemberTeamsTeamIdMembersAccountIdDeleteCall(teamId, accountId, authorization, _callback); } @@ -1078,7 +1025,6 @@ private okhttp3.Call removeTeamMemberTeamsTeamIdMembersAccountIdDeleteValidateBe * Remove a member from a team. Parameters: - **team_id**: UUID of the team to remove the member from - **account_id**: UUID of the account to remove from the team Returns: - **200**: Team member removed successfully - **404**: Member not found in team * @param teamId (required) * @param accountId (required) - * @param instanceId (optional) * @param authorization (optional) * @return Object * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body @@ -1090,8 +1036,8 @@ private okhttp3.Call removeTeamMemberTeamsTeamIdMembersAccountIdDeleteValidateBe 422 Validation Error - */ - public Object removeTeamMemberTeamsTeamIdMembersAccountIdDelete(UUID teamId, UUID accountId, UUID instanceId, String authorization) throws ApiException { - ApiResponse localVarResp = removeTeamMemberTeamsTeamIdMembersAccountIdDeleteWithHttpInfo(teamId, accountId, instanceId, authorization); + public Object removeTeamMemberTeamsTeamIdMembersAccountIdDelete(UUID teamId, UUID accountId, String authorization) throws ApiException { + ApiResponse localVarResp = removeTeamMemberTeamsTeamIdMembersAccountIdDeleteWithHttpInfo(teamId, accountId, authorization); return localVarResp.getData(); } @@ -1100,7 +1046,6 @@ public Object removeTeamMemberTeamsTeamIdMembersAccountIdDelete(UUID teamId, UUI * Remove a member from a team. Parameters: - **team_id**: UUID of the team to remove the member from - **account_id**: UUID of the account to remove from the team Returns: - **200**: Team member removed successfully - **404**: Member not found in team * @param teamId (required) * @param accountId (required) - * @param instanceId (optional) * @param authorization (optional) * @return ApiResponse<Object> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body @@ -1112,8 +1057,8 @@ public Object removeTeamMemberTeamsTeamIdMembersAccountIdDelete(UUID teamId, UUI 422 Validation Error - */ - public ApiResponse removeTeamMemberTeamsTeamIdMembersAccountIdDeleteWithHttpInfo(UUID teamId, UUID accountId, UUID instanceId, String authorization) throws ApiException { - okhttp3.Call localVarCall = removeTeamMemberTeamsTeamIdMembersAccountIdDeleteValidateBeforeCall(teamId, accountId, instanceId, authorization, null); + public ApiResponse removeTeamMemberTeamsTeamIdMembersAccountIdDeleteWithHttpInfo(UUID teamId, UUID accountId, String authorization) throws ApiException { + okhttp3.Call localVarCall = removeTeamMemberTeamsTeamIdMembersAccountIdDeleteValidateBeforeCall(teamId, accountId, authorization, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -1123,7 +1068,6 @@ public ApiResponse removeTeamMemberTeamsTeamIdMembersAccountIdDeleteWith * Remove a member from a team. Parameters: - **team_id**: UUID of the team to remove the member from - **account_id**: UUID of the account to remove from the team Returns: - **200**: Team member removed successfully - **404**: Member not found in team * @param teamId (required) * @param accountId (required) - * @param instanceId (optional) * @param authorization (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call @@ -1136,9 +1080,9 @@ public ApiResponse removeTeamMemberTeamsTeamIdMembersAccountIdDeleteWith 422 Validation Error - */ - public okhttp3.Call removeTeamMemberTeamsTeamIdMembersAccountIdDeleteAsync(UUID teamId, UUID accountId, UUID instanceId, String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call removeTeamMemberTeamsTeamIdMembersAccountIdDeleteAsync(UUID teamId, UUID accountId, String authorization, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = removeTeamMemberTeamsTeamIdMembersAccountIdDeleteValidateBeforeCall(teamId, accountId, instanceId, authorization, _callback); + okhttp3.Call localVarCall = removeTeamMemberTeamsTeamIdMembersAccountIdDeleteValidateBeforeCall(teamId, accountId, authorization, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -1148,7 +1092,6 @@ public okhttp3.Call removeTeamMemberTeamsTeamIdMembersAccountIdDeleteAsync(UUID * @param teamId (required) * @param accountId (required) * @param updateTeamMemberRequestBody (required) - * @param instanceId (optional) * @param authorization (optional) * @param _callback Callback for upload/download progress * @return Call to execute @@ -1161,7 +1104,7 @@ public okhttp3.Call removeTeamMemberTeamsTeamIdMembersAccountIdDeleteAsync(UUID 422 Validation Error - */ - public okhttp3.Call updateTeamMemberTeamsTeamIdMembersAccountIdPatchCall(UUID teamId, UUID accountId, UpdateTeamMemberRequestBody updateTeamMemberRequestBody, UUID instanceId, String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateTeamMemberTeamsTeamIdMembersAccountIdPatchCall(UUID teamId, UUID accountId, UpdateTeamMemberRequestBody updateTeamMemberRequestBody, String authorization, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -1188,10 +1131,6 @@ public okhttp3.Call updateTeamMemberTeamsTeamIdMembersAccountIdPatchCall(UUID te Map localVarCookieParams = new HashMap(); Map localVarFormParams = new HashMap(); - if (instanceId != null) { - localVarQueryParams.addAll(localVarApiClient.parameterToPair("instance_id", instanceId)); - } - final String[] localVarAccepts = { "application/json" }; @@ -1218,7 +1157,7 @@ public okhttp3.Call updateTeamMemberTeamsTeamIdMembersAccountIdPatchCall(UUID te } @SuppressWarnings("rawtypes") - private okhttp3.Call updateTeamMemberTeamsTeamIdMembersAccountIdPatchValidateBeforeCall(UUID teamId, UUID accountId, UpdateTeamMemberRequestBody updateTeamMemberRequestBody, UUID instanceId, String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call updateTeamMemberTeamsTeamIdMembersAccountIdPatchValidateBeforeCall(UUID teamId, UUID accountId, UpdateTeamMemberRequestBody updateTeamMemberRequestBody, String authorization, final ApiCallback _callback) throws ApiException { // verify the required parameter 'teamId' is set if (teamId == null) { throw new ApiException("Missing the required parameter 'teamId' when calling updateTeamMemberTeamsTeamIdMembersAccountIdPatch(Async)"); @@ -1234,7 +1173,7 @@ private okhttp3.Call updateTeamMemberTeamsTeamIdMembersAccountIdPatchValidateBef throw new ApiException("Missing the required parameter 'updateTeamMemberRequestBody' when calling updateTeamMemberTeamsTeamIdMembersAccountIdPatch(Async)"); } - return updateTeamMemberTeamsTeamIdMembersAccountIdPatchCall(teamId, accountId, updateTeamMemberRequestBody, instanceId, authorization, _callback); + return updateTeamMemberTeamsTeamIdMembersAccountIdPatchCall(teamId, accountId, updateTeamMemberRequestBody, authorization, _callback); } @@ -1244,7 +1183,6 @@ private okhttp3.Call updateTeamMemberTeamsTeamIdMembersAccountIdPatchValidateBef * @param teamId (required) * @param accountId (required) * @param updateTeamMemberRequestBody (required) - * @param instanceId (optional) * @param authorization (optional) * @return Object * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body @@ -1256,8 +1194,8 @@ private okhttp3.Call updateTeamMemberTeamsTeamIdMembersAccountIdPatchValidateBef 422 Validation Error - */ - public Object updateTeamMemberTeamsTeamIdMembersAccountIdPatch(UUID teamId, UUID accountId, UpdateTeamMemberRequestBody updateTeamMemberRequestBody, UUID instanceId, String authorization) throws ApiException { - ApiResponse localVarResp = updateTeamMemberTeamsTeamIdMembersAccountIdPatchWithHttpInfo(teamId, accountId, updateTeamMemberRequestBody, instanceId, authorization); + public Object updateTeamMemberTeamsTeamIdMembersAccountIdPatch(UUID teamId, UUID accountId, UpdateTeamMemberRequestBody updateTeamMemberRequestBody, String authorization) throws ApiException { + ApiResponse localVarResp = updateTeamMemberTeamsTeamIdMembersAccountIdPatchWithHttpInfo(teamId, accountId, updateTeamMemberRequestBody, authorization); return localVarResp.getData(); } @@ -1267,7 +1205,6 @@ public Object updateTeamMemberTeamsTeamIdMembersAccountIdPatch(UUID teamId, UUID * @param teamId (required) * @param accountId (required) * @param updateTeamMemberRequestBody (required) - * @param instanceId (optional) * @param authorization (optional) * @return ApiResponse<Object> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body @@ -1279,8 +1216,8 @@ public Object updateTeamMemberTeamsTeamIdMembersAccountIdPatch(UUID teamId, UUID 422 Validation Error - */ - public ApiResponse updateTeamMemberTeamsTeamIdMembersAccountIdPatchWithHttpInfo(UUID teamId, UUID accountId, UpdateTeamMemberRequestBody updateTeamMemberRequestBody, UUID instanceId, String authorization) throws ApiException { - okhttp3.Call localVarCall = updateTeamMemberTeamsTeamIdMembersAccountIdPatchValidateBeforeCall(teamId, accountId, updateTeamMemberRequestBody, instanceId, authorization, null); + public ApiResponse updateTeamMemberTeamsTeamIdMembersAccountIdPatchWithHttpInfo(UUID teamId, UUID accountId, UpdateTeamMemberRequestBody updateTeamMemberRequestBody, String authorization) throws ApiException { + okhttp3.Call localVarCall = updateTeamMemberTeamsTeamIdMembersAccountIdPatchValidateBeforeCall(teamId, accountId, updateTeamMemberRequestBody, authorization, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -1291,7 +1228,6 @@ public ApiResponse updateTeamMemberTeamsTeamIdMembersAccountIdPatchWithH * @param teamId (required) * @param accountId (required) * @param updateTeamMemberRequestBody (required) - * @param instanceId (optional) * @param authorization (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call @@ -1304,9 +1240,9 @@ public ApiResponse updateTeamMemberTeamsTeamIdMembersAccountIdPatchWithH 422 Validation Error - */ - public okhttp3.Call updateTeamMemberTeamsTeamIdMembersAccountIdPatchAsync(UUID teamId, UUID accountId, UpdateTeamMemberRequestBody updateTeamMemberRequestBody, UUID instanceId, String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateTeamMemberTeamsTeamIdMembersAccountIdPatchAsync(UUID teamId, UUID accountId, UpdateTeamMemberRequestBody updateTeamMemberRequestBody, String authorization, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = updateTeamMemberTeamsTeamIdMembersAccountIdPatchValidateBeforeCall(teamId, accountId, updateTeamMemberRequestBody, instanceId, authorization, _callback); + okhttp3.Call localVarCall = updateTeamMemberTeamsTeamIdMembersAccountIdPatchValidateBeforeCall(teamId, accountId, updateTeamMemberRequestBody, authorization, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; @@ -1315,7 +1251,6 @@ public okhttp3.Call updateTeamMemberTeamsTeamIdMembersAccountIdPatchAsync(UUID t * Build call for updateTeamTeamsTeamIdPatch * @param teamId (required) * @param updateTeamRequestBody (required) - * @param instanceId (optional) * @param authorization (optional) * @param _callback Callback for upload/download progress * @return Call to execute @@ -1328,7 +1263,7 @@ public okhttp3.Call updateTeamMemberTeamsTeamIdMembersAccountIdPatchAsync(UUID t 422 Validation Error - */ - public okhttp3.Call updateTeamTeamsTeamIdPatchCall(UUID teamId, UpdateTeamRequestBody updateTeamRequestBody, UUID instanceId, String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateTeamTeamsTeamIdPatchCall(UUID teamId, UpdateTeamRequestBody updateTeamRequestBody, String authorization, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] { }; @@ -1354,10 +1289,6 @@ public okhttp3.Call updateTeamTeamsTeamIdPatchCall(UUID teamId, UpdateTeamReques Map localVarCookieParams = new HashMap(); Map localVarFormParams = new HashMap(); - if (instanceId != null) { - localVarQueryParams.addAll(localVarApiClient.parameterToPair("instance_id", instanceId)); - } - final String[] localVarAccepts = { "application/json" }; @@ -1384,7 +1315,7 @@ public okhttp3.Call updateTeamTeamsTeamIdPatchCall(UUID teamId, UpdateTeamReques } @SuppressWarnings("rawtypes") - private okhttp3.Call updateTeamTeamsTeamIdPatchValidateBeforeCall(UUID teamId, UpdateTeamRequestBody updateTeamRequestBody, UUID instanceId, String authorization, final ApiCallback _callback) throws ApiException { + private okhttp3.Call updateTeamTeamsTeamIdPatchValidateBeforeCall(UUID teamId, UpdateTeamRequestBody updateTeamRequestBody, String authorization, final ApiCallback _callback) throws ApiException { // verify the required parameter 'teamId' is set if (teamId == null) { throw new ApiException("Missing the required parameter 'teamId' when calling updateTeamTeamsTeamIdPatch(Async)"); @@ -1395,7 +1326,7 @@ private okhttp3.Call updateTeamTeamsTeamIdPatchValidateBeforeCall(UUID teamId, U throw new ApiException("Missing the required parameter 'updateTeamRequestBody' when calling updateTeamTeamsTeamIdPatch(Async)"); } - return updateTeamTeamsTeamIdPatchCall(teamId, updateTeamRequestBody, instanceId, authorization, _callback); + return updateTeamTeamsTeamIdPatchCall(teamId, updateTeamRequestBody, authorization, _callback); } @@ -1404,7 +1335,6 @@ private okhttp3.Call updateTeamTeamsTeamIdPatchValidateBeforeCall(UUID teamId, U * Update a team's details. Parameters: - **team_id**: UUID of the team to update - **body**: Request body containing updated team details - **name**: Optional new name for the team - **description**: Optional new description for the team Returns: - **200**: Team updated successfully * @param teamId (required) * @param updateTeamRequestBody (required) - * @param instanceId (optional) * @param authorization (optional) * @return Object * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body @@ -1416,8 +1346,8 @@ private okhttp3.Call updateTeamTeamsTeamIdPatchValidateBeforeCall(UUID teamId, U 422 Validation Error - */ - public Object updateTeamTeamsTeamIdPatch(UUID teamId, UpdateTeamRequestBody updateTeamRequestBody, UUID instanceId, String authorization) throws ApiException { - ApiResponse localVarResp = updateTeamTeamsTeamIdPatchWithHttpInfo(teamId, updateTeamRequestBody, instanceId, authorization); + public Object updateTeamTeamsTeamIdPatch(UUID teamId, UpdateTeamRequestBody updateTeamRequestBody, String authorization) throws ApiException { + ApiResponse localVarResp = updateTeamTeamsTeamIdPatchWithHttpInfo(teamId, updateTeamRequestBody, authorization); return localVarResp.getData(); } @@ -1426,7 +1356,6 @@ public Object updateTeamTeamsTeamIdPatch(UUID teamId, UpdateTeamRequestBody upda * Update a team's details. Parameters: - **team_id**: UUID of the team to update - **body**: Request body containing updated team details - **name**: Optional new name for the team - **description**: Optional new description for the team Returns: - **200**: Team updated successfully * @param teamId (required) * @param updateTeamRequestBody (required) - * @param instanceId (optional) * @param authorization (optional) * @return ApiResponse<Object> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body @@ -1438,8 +1367,8 @@ public Object updateTeamTeamsTeamIdPatch(UUID teamId, UpdateTeamRequestBody upda 422 Validation Error - */ - public ApiResponse updateTeamTeamsTeamIdPatchWithHttpInfo(UUID teamId, UpdateTeamRequestBody updateTeamRequestBody, UUID instanceId, String authorization) throws ApiException { - okhttp3.Call localVarCall = updateTeamTeamsTeamIdPatchValidateBeforeCall(teamId, updateTeamRequestBody, instanceId, authorization, null); + public ApiResponse updateTeamTeamsTeamIdPatchWithHttpInfo(UUID teamId, UpdateTeamRequestBody updateTeamRequestBody, String authorization) throws ApiException { + okhttp3.Call localVarCall = updateTeamTeamsTeamIdPatchValidateBeforeCall(teamId, updateTeamRequestBody, authorization, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -1449,7 +1378,6 @@ public ApiResponse updateTeamTeamsTeamIdPatchWithHttpInfo(UUID teamId, U * Update a team's details. Parameters: - **team_id**: UUID of the team to update - **body**: Request body containing updated team details - **name**: Optional new name for the team - **description**: Optional new description for the team Returns: - **200**: Team updated successfully * @param teamId (required) * @param updateTeamRequestBody (required) - * @param instanceId (optional) * @param authorization (optional) * @param _callback The callback to be executed when the API call finishes * @return The request call @@ -1462,9 +1390,9 @@ public ApiResponse updateTeamTeamsTeamIdPatchWithHttpInfo(UUID teamId, U 422 Validation Error - */ - public okhttp3.Call updateTeamTeamsTeamIdPatchAsync(UUID teamId, UpdateTeamRequestBody updateTeamRequestBody, UUID instanceId, String authorization, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateTeamTeamsTeamIdPatchAsync(UUID teamId, UpdateTeamRequestBody updateTeamRequestBody, String authorization, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = updateTeamTeamsTeamIdPatchValidateBeforeCall(teamId, updateTeamRequestBody, instanceId, authorization, _callback); + okhttp3.Call localVarCall = updateTeamTeamsTeamIdPatchValidateBeforeCall(teamId, updateTeamRequestBody, authorization, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; diff --git a/src/main/java/ai/lamin/lamin_api_client/auth/ApiKeyAuth.java b/src/main/java/ai/lamin/lamin_api_client/auth/ApiKeyAuth.java index 1abc0c7..3f9a560 100644 --- a/src/main/java/ai/lamin/lamin_api_client/auth/ApiKeyAuth.java +++ b/src/main/java/ai/lamin/lamin_api_client/auth/ApiKeyAuth.java @@ -20,7 +20,7 @@ import java.util.Map; import java.util.List; -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-12T11:16:27.287169544+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class ApiKeyAuth implements Authentication { private final String location; private final String paramName; diff --git a/src/main/java/ai/lamin/lamin_api_client/auth/HttpBearerAuth.java b/src/main/java/ai/lamin/lamin_api_client/auth/HttpBearerAuth.java index 10549de..acc6eb4 100644 --- a/src/main/java/ai/lamin/lamin_api_client/auth/HttpBearerAuth.java +++ b/src/main/java/ai/lamin/lamin_api_client/auth/HttpBearerAuth.java @@ -22,7 +22,7 @@ import java.util.Optional; import java.util.function.Supplier; -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-12T11:16:27.287169544+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class HttpBearerAuth implements Authentication { private final String scheme; private Supplier tokenSupplier; diff --git a/src/main/java/ai/lamin/lamin_api_client/model/AbstractOpenApiSchema.java b/src/main/java/ai/lamin/lamin_api_client/model/AbstractOpenApiSchema.java index 965da0d..6ac449e 100644 --- a/src/main/java/ai/lamin/lamin_api_client/model/AbstractOpenApiSchema.java +++ b/src/main/java/ai/lamin/lamin_api_client/model/AbstractOpenApiSchema.java @@ -21,7 +21,7 @@ /** * Abstract class for oneOf,anyOf schemas defined in OpenAPI spec */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-12T11:16:27.287169544+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public abstract class AbstractOpenApiSchema { // store the actual instance of the schema/object diff --git a/src/main/java/ai/lamin/lamin_api_client/model/AddCollaboratorRequestBody.java b/src/main/java/ai/lamin/lamin_api_client/model/AddCollaboratorRequestBody.java index 10fed2b..eafa370 100644 --- a/src/main/java/ai/lamin/lamin_api_client/model/AddCollaboratorRequestBody.java +++ b/src/main/java/ai/lamin/lamin_api_client/model/AddCollaboratorRequestBody.java @@ -50,7 +50,7 @@ /** * AddCollaboratorRequestBody */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-12T11:16:27.287169544+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class AddCollaboratorRequestBody { public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id"; @SerializedName(SERIALIZED_NAME_ACCOUNT_ID) diff --git a/src/main/java/ai/lamin/lamin_api_client/model/AddOrganizationMemberRequestBody.java b/src/main/java/ai/lamin/lamin_api_client/model/AddOrganizationMemberRequestBody.java index c637c20..2447e53 100644 --- a/src/main/java/ai/lamin/lamin_api_client/model/AddOrganizationMemberRequestBody.java +++ b/src/main/java/ai/lamin/lamin_api_client/model/AddOrganizationMemberRequestBody.java @@ -48,7 +48,7 @@ /** * AddOrganizationMemberRequestBody */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-12T11:16:27.287169544+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class AddOrganizationMemberRequestBody { /** * Gets or Sets role diff --git a/src/main/java/ai/lamin/lamin_api_client/model/AddSpaceCollaboratorRequestBody.java b/src/main/java/ai/lamin/lamin_api_client/model/AddSpaceCollaboratorRequestBody.java index 8ca4a41..b79f732 100644 --- a/src/main/java/ai/lamin/lamin_api_client/model/AddSpaceCollaboratorRequestBody.java +++ b/src/main/java/ai/lamin/lamin_api_client/model/AddSpaceCollaboratorRequestBody.java @@ -50,7 +50,7 @@ /** * AddSpaceCollaboratorRequestBody */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-12T11:16:27.287169544+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class AddSpaceCollaboratorRequestBody { public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id"; @SerializedName(SERIALIZED_NAME_ACCOUNT_ID) diff --git a/src/main/java/ai/lamin/lamin_api_client/model/AddTeamMemberRequestBody.java b/src/main/java/ai/lamin/lamin_api_client/model/AddTeamMemberRequestBody.java index e29ac65..05ab0ad 100644 --- a/src/main/java/ai/lamin/lamin_api_client/model/AddTeamMemberRequestBody.java +++ b/src/main/java/ai/lamin/lamin_api_client/model/AddTeamMemberRequestBody.java @@ -49,7 +49,7 @@ /** * AddTeamMemberRequestBody */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-12T11:16:27.287169544+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class AddTeamMemberRequestBody { public static final String SERIALIZED_NAME_ROLE = "role"; @SerializedName(SERIALIZED_NAME_ROLE) diff --git a/src/main/java/ai/lamin/lamin_api_client/model/AttachSpaceToRecordRequestBody.java b/src/main/java/ai/lamin/lamin_api_client/model/AttachSpaceToRecordRequestBody.java index b7ed061..e2b956d 100644 --- a/src/main/java/ai/lamin/lamin_api_client/model/AttachSpaceToRecordRequestBody.java +++ b/src/main/java/ai/lamin/lamin_api_client/model/AttachSpaceToRecordRequestBody.java @@ -48,7 +48,7 @@ /** * AttachSpaceToRecordRequestBody */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-12T11:16:27.287169544+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class AttachSpaceToRecordRequestBody { public static final String SERIALIZED_NAME_MODULE_NAME = "module_name"; @SerializedName(SERIALIZED_NAME_MODULE_NAME) diff --git a/src/main/java/ai/lamin/lamin_api_client/model/BatchDeleteBody.java b/src/main/java/ai/lamin/lamin_api_client/model/BatchDeleteBody.java index d999f0e..4ab4cc9 100644 --- a/src/main/java/ai/lamin/lamin_api_client/model/BatchDeleteBody.java +++ b/src/main/java/ai/lamin/lamin_api_client/model/BatchDeleteBody.java @@ -51,7 +51,7 @@ /** * BatchDeleteBody */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-12T11:16:27.287169544+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class BatchDeleteBody { public static final String SERIALIZED_NAME_RECORDS = "records"; @SerializedName(SERIALIZED_NAME_RECORDS) diff --git a/src/main/java/ai/lamin/lamin_api_client/model/BatchDeleteResponse.java b/src/main/java/ai/lamin/lamin_api_client/model/BatchDeleteResponse.java index c710246..a3d27ba 100644 --- a/src/main/java/ai/lamin/lamin_api_client/model/BatchDeleteResponse.java +++ b/src/main/java/ai/lamin/lamin_api_client/model/BatchDeleteResponse.java @@ -48,7 +48,7 @@ /** * BatchDeleteResponse */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-12T11:16:27.287169544+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class BatchDeleteResponse { public static final String SERIALIZED_NAME_DELETED_COUNT = "deleted_count"; @SerializedName(SERIALIZED_NAME_DELETED_COUNT) diff --git a/src/main/java/ai/lamin/lamin_api_client/model/BatchSyncLinksBody.java b/src/main/java/ai/lamin/lamin_api_client/model/BatchSyncLinksBody.java index 625136c..36388f4 100644 --- a/src/main/java/ai/lamin/lamin_api_client/model/BatchSyncLinksBody.java +++ b/src/main/java/ai/lamin/lamin_api_client/model/BatchSyncLinksBody.java @@ -51,7 +51,7 @@ /** * The request body for the batch synchronization endpoint. */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-12T11:16:27.287169544+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class BatchSyncLinksBody { public static final String SERIALIZED_NAME_INSTRUCTIONS = "instructions"; @SerializedName(SERIALIZED_NAME_INSTRUCTIONS) diff --git a/src/main/java/ai/lamin/lamin_api_client/model/BatchSyncResponse.java b/src/main/java/ai/lamin/lamin_api_client/model/BatchSyncResponse.java index 68746bd..450c1e7 100644 --- a/src/main/java/ai/lamin/lamin_api_client/model/BatchSyncResponse.java +++ b/src/main/java/ai/lamin/lamin_api_client/model/BatchSyncResponse.java @@ -51,7 +51,7 @@ /** * The detailed response model for a batch synchronization operation, including the lists of records that were processed. */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-12T11:16:27.287169544+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class BatchSyncResponse { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/src/main/java/ai/lamin/lamin_api_client/model/BatchUpdateBody.java b/src/main/java/ai/lamin/lamin_api_client/model/BatchUpdateBody.java index d822d3a..926344d 100644 --- a/src/main/java/ai/lamin/lamin_api_client/model/BatchUpdateBody.java +++ b/src/main/java/ai/lamin/lamin_api_client/model/BatchUpdateBody.java @@ -51,7 +51,7 @@ /** * BatchUpdateBody */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-12T11:16:27.287169544+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class BatchUpdateBody { public static final String SERIALIZED_NAME_RECORDS = "records"; @SerializedName(SERIALIZED_NAME_RECORDS) diff --git a/src/main/java/ai/lamin/lamin_api_client/model/Body.java b/src/main/java/ai/lamin/lamin_api_client/model/Body.java index eeab449..3d6a916 100644 --- a/src/main/java/ai/lamin/lamin_api_client/model/Body.java +++ b/src/main/java/ai/lamin/lamin_api_client/model/Body.java @@ -52,7 +52,7 @@ import ai.lamin.lamin_api_client.JSON; -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-12T11:16:27.287169544+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class Body extends AbstractOpenApiSchema { private static final Logger log = Logger.getLogger(Body.class.getName()); diff --git a/src/main/java/ai/lamin/lamin_api_client/model/CreateArtifactRequestBody.java b/src/main/java/ai/lamin/lamin_api_client/model/CreateArtifactRequestBody.java index 1124d28..579b765 100644 --- a/src/main/java/ai/lamin/lamin_api_client/model/CreateArtifactRequestBody.java +++ b/src/main/java/ai/lamin/lamin_api_client/model/CreateArtifactRequestBody.java @@ -50,7 +50,7 @@ /** * CreateArtifactRequestBody */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-12T11:16:27.287169544+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class CreateArtifactRequestBody { public static final String SERIALIZED_NAME_PATH = "path"; @SerializedName(SERIALIZED_NAME_PATH) diff --git a/src/main/java/ai/lamin/lamin_api_client/model/CreateSpaceRequestBody.java b/src/main/java/ai/lamin/lamin_api_client/model/CreateSpaceRequestBody.java index 0a3b966..15c26ed 100644 --- a/src/main/java/ai/lamin/lamin_api_client/model/CreateSpaceRequestBody.java +++ b/src/main/java/ai/lamin/lamin_api_client/model/CreateSpaceRequestBody.java @@ -50,7 +50,7 @@ /** * CreateSpaceRequestBody */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-12T11:16:27.287169544+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class CreateSpaceRequestBody { public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) diff --git a/src/main/java/ai/lamin/lamin_api_client/model/CreateTeamRequestBody.java b/src/main/java/ai/lamin/lamin_api_client/model/CreateTeamRequestBody.java index 90b718b..e3d9015 100644 --- a/src/main/java/ai/lamin/lamin_api_client/model/CreateTeamRequestBody.java +++ b/src/main/java/ai/lamin/lamin_api_client/model/CreateTeamRequestBody.java @@ -50,7 +50,7 @@ /** * CreateTeamRequestBody */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-12T11:16:27.287169544+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class CreateTeamRequestBody { public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) diff --git a/src/main/java/ai/lamin/lamin_api_client/model/CreateTransformRequestBody.java b/src/main/java/ai/lamin/lamin_api_client/model/CreateTransformRequestBody.java index 921719b..5fb64f0 100644 --- a/src/main/java/ai/lamin/lamin_api_client/model/CreateTransformRequestBody.java +++ b/src/main/java/ai/lamin/lamin_api_client/model/CreateTransformRequestBody.java @@ -51,7 +51,7 @@ /** * CreateTransformRequestBody */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-12T11:16:27.287169544+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class CreateTransformRequestBody { public static final String SERIALIZED_NAME_KEY = "key"; @SerializedName(SERIALIZED_NAME_KEY) diff --git a/src/main/java/ai/lamin/lamin_api_client/model/Dimension.java b/src/main/java/ai/lamin/lamin_api_client/model/Dimension.java index d6d8caa..37fd8b9 100644 --- a/src/main/java/ai/lamin/lamin_api_client/model/Dimension.java +++ b/src/main/java/ai/lamin/lamin_api_client/model/Dimension.java @@ -49,7 +49,7 @@ /** * Dimension */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-12T11:16:27.287169544+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class Dimension { public static final String SERIALIZED_NAME_FIELD_NAME = "field_name"; @SerializedName(SERIALIZED_NAME_FIELD_NAME) diff --git a/src/main/java/ai/lamin/lamin_api_client/model/ErrorDetail.java b/src/main/java/ai/lamin/lamin_api_client/model/ErrorDetail.java index e92489b..afa2b7f 100644 --- a/src/main/java/ai/lamin/lamin_api_client/model/ErrorDetail.java +++ b/src/main/java/ai/lamin/lamin_api_client/model/ErrorDetail.java @@ -48,7 +48,7 @@ /** * ErrorDetail */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-12T11:16:27.287169544+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class ErrorDetail { public static final String SERIALIZED_NAME_DETAIL = "detail"; @SerializedName(SERIALIZED_NAME_DETAIL) diff --git a/src/main/java/ai/lamin/lamin_api_client/model/ExecuteFunctionRequestBody.java b/src/main/java/ai/lamin/lamin_api_client/model/ExecuteFunctionRequestBody.java index 5d04ee0..64abb94 100644 --- a/src/main/java/ai/lamin/lamin_api_client/model/ExecuteFunctionRequestBody.java +++ b/src/main/java/ai/lamin/lamin_api_client/model/ExecuteFunctionRequestBody.java @@ -50,7 +50,7 @@ /** * ExecuteFunctionRequestBody */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-12T11:16:27.287169544+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class ExecuteFunctionRequestBody { public static final String SERIALIZED_NAME_TRANSFORM_UID = "transform_uid"; @SerializedName(SERIALIZED_NAME_TRANSFORM_UID) diff --git a/src/main/java/ai/lamin/lamin_api_client/model/ExportRecordsRequestBody.java b/src/main/java/ai/lamin/lamin_api_client/model/ExportRecordsRequestBody.java index d4adfce..ec03666 100644 --- a/src/main/java/ai/lamin/lamin_api_client/model/ExportRecordsRequestBody.java +++ b/src/main/java/ai/lamin/lamin_api_client/model/ExportRecordsRequestBody.java @@ -50,7 +50,7 @@ /** * ExportRecordsRequestBody */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-12T11:16:27.287169544+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class ExportRecordsRequestBody { public static final String SERIALIZED_NAME_KWARGS = "kwargs"; @SerializedName(SERIALIZED_NAME_KWARGS) diff --git a/src/main/java/ai/lamin/lamin_api_client/model/GetRecordRequestBody.java b/src/main/java/ai/lamin/lamin_api_client/model/GetRecordRequestBody.java index 2516ce4..3e87c5b 100644 --- a/src/main/java/ai/lamin/lamin_api_client/model/GetRecordRequestBody.java +++ b/src/main/java/ai/lamin/lamin_api_client/model/GetRecordRequestBody.java @@ -51,7 +51,7 @@ /** * GetRecordRequestBody */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-12T11:16:27.287169544+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class GetRecordRequestBody { public static final String SERIALIZED_NAME_SELECT = "select"; @SerializedName(SERIALIZED_NAME_SELECT) diff --git a/src/main/java/ai/lamin/lamin_api_client/model/GetRecordsRequestBody.java b/src/main/java/ai/lamin/lamin_api_client/model/GetRecordsRequestBody.java index 4964353..fa12f38 100644 --- a/src/main/java/ai/lamin/lamin_api_client/model/GetRecordsRequestBody.java +++ b/src/main/java/ai/lamin/lamin_api_client/model/GetRecordsRequestBody.java @@ -54,7 +54,7 @@ /** * GetRecordsRequestBody */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-12T11:16:27.287169544+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class GetRecordsRequestBody { public static final String SERIALIZED_NAME_SELECT = "select"; @SerializedName(SERIALIZED_NAME_SELECT) diff --git a/src/main/java/ai/lamin/lamin_api_client/model/GetValuesRequestBody.java b/src/main/java/ai/lamin/lamin_api_client/model/GetValuesRequestBody.java index 5a106b0..9ed8e9d 100644 --- a/src/main/java/ai/lamin/lamin_api_client/model/GetValuesRequestBody.java +++ b/src/main/java/ai/lamin/lamin_api_client/model/GetValuesRequestBody.java @@ -54,7 +54,7 @@ /** * GetValuesRequestBody */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-12T11:16:27.287169544+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class GetValuesRequestBody { public static final String SERIALIZED_NAME_FILTER = "filter"; @SerializedName(SERIALIZED_NAME_FILTER) diff --git a/src/main/java/ai/lamin/lamin_api_client/model/GroupByRequestBody.java b/src/main/java/ai/lamin/lamin_api_client/model/GroupByRequestBody.java index 5f84329..a2b151f 100644 --- a/src/main/java/ai/lamin/lamin_api_client/model/GroupByRequestBody.java +++ b/src/main/java/ai/lamin/lamin_api_client/model/GroupByRequestBody.java @@ -55,7 +55,7 @@ /** * GroupByRequestBody */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-12T11:16:27.287169544+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class GroupByRequestBody { public static final String SERIALIZED_NAME_DIMENSIONS = "dimensions"; @SerializedName(SERIALIZED_NAME_DIMENSIONS) diff --git a/src/main/java/ai/lamin/lamin_api_client/model/HTTPValidationError.java b/src/main/java/ai/lamin/lamin_api_client/model/HTTPValidationError.java index 47377e6..4324691 100644 --- a/src/main/java/ai/lamin/lamin_api_client/model/HTTPValidationError.java +++ b/src/main/java/ai/lamin/lamin_api_client/model/HTTPValidationError.java @@ -51,7 +51,7 @@ /** * HTTPValidationError */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-12T11:16:27.287169544+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class HTTPValidationError { public static final String SERIALIZED_NAME_DETAIL = "detail"; @SerializedName(SERIALIZED_NAME_DETAIL) diff --git a/src/main/java/ai/lamin/lamin_api_client/model/Measure.java b/src/main/java/ai/lamin/lamin_api_client/model/Measure.java index 81d5a5a..c38f3b2 100644 --- a/src/main/java/ai/lamin/lamin_api_client/model/Measure.java +++ b/src/main/java/ai/lamin/lamin_api_client/model/Measure.java @@ -49,7 +49,7 @@ /** * Measure */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-12T11:16:27.287169544+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class Measure { public static final String SERIALIZED_NAME_FIELD_NAME = "field_name"; @SerializedName(SERIALIZED_NAME_FIELD_NAME) diff --git a/src/main/java/ai/lamin/lamin_api_client/model/NonEmptyTablesResponse.java b/src/main/java/ai/lamin/lamin_api_client/model/NonEmptyTablesResponse.java index eb3ae2b..695aac7 100644 --- a/src/main/java/ai/lamin/lamin_api_client/model/NonEmptyTablesResponse.java +++ b/src/main/java/ai/lamin/lamin_api_client/model/NonEmptyTablesResponse.java @@ -51,7 +51,7 @@ /** * NonEmptyTablesResponse */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-12T11:16:27.287169544+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class NonEmptyTablesResponse { public static final String SERIALIZED_NAME_NON_EMPTY_TABLES = "non_empty_tables"; @SerializedName(SERIALIZED_NAME_NON_EMPTY_TABLES) diff --git a/src/main/java/ai/lamin/lamin_api_client/model/OrderByColumn.java b/src/main/java/ai/lamin/lamin_api_client/model/OrderByColumn.java index ed9af89..f84a194 100644 --- a/src/main/java/ai/lamin/lamin_api_client/model/OrderByColumn.java +++ b/src/main/java/ai/lamin/lamin_api_client/model/OrderByColumn.java @@ -48,7 +48,7 @@ /** * OrderByColumn */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-12T11:16:27.287169544+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class OrderByColumn { public static final String SERIALIZED_NAME_FIELD = "field"; @SerializedName(SERIALIZED_NAME_FIELD) diff --git a/src/main/java/ai/lamin/lamin_api_client/model/RegisterDbServerBody.java b/src/main/java/ai/lamin/lamin_api_client/model/RegisterDbServerBody.java index e3bb71b..b017a0a 100644 --- a/src/main/java/ai/lamin/lamin_api_client/model/RegisterDbServerBody.java +++ b/src/main/java/ai/lamin/lamin_api_client/model/RegisterDbServerBody.java @@ -49,7 +49,7 @@ /** * RegisterDbServerBody */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-12T11:16:27.287169544+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class RegisterDbServerBody { public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) diff --git a/src/main/java/ai/lamin/lamin_api_client/model/RegisterFormRequest.java b/src/main/java/ai/lamin/lamin_api_client/model/RegisterFormRequest.java index d7382fe..89ff25a 100644 --- a/src/main/java/ai/lamin/lamin_api_client/model/RegisterFormRequest.java +++ b/src/main/java/ai/lamin/lamin_api_client/model/RegisterFormRequest.java @@ -50,7 +50,7 @@ /** * RegisterFormRequest */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-12T11:16:27.287169544+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class RegisterFormRequest { public static final String SERIALIZED_NAME_KEY = "key"; @SerializedName(SERIALIZED_NAME_KEY) diff --git a/src/main/java/ai/lamin/lamin_api_client/model/Request.java b/src/main/java/ai/lamin/lamin_api_client/model/Request.java index 841d7d8..b3457c5 100644 --- a/src/main/java/ai/lamin/lamin_api_client/model/Request.java +++ b/src/main/java/ai/lamin/lamin_api_client/model/Request.java @@ -55,7 +55,7 @@ /** * Request */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-12T11:16:27.287169544+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class Request { public static final String SERIALIZED_NAME_RELATIVES = "relatives"; @SerializedName(SERIALIZED_NAME_RELATIVES) diff --git a/src/main/java/ai/lamin/lamin_api_client/model/Role.java b/src/main/java/ai/lamin/lamin_api_client/model/Role.java index 477bc0e..5c414f7 100644 --- a/src/main/java/ai/lamin/lamin_api_client/model/Role.java +++ b/src/main/java/ai/lamin/lamin_api_client/model/Role.java @@ -50,7 +50,7 @@ import ai.lamin.lamin_api_client.JSON; -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-12T11:16:27.287169544+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class Role extends AbstractOpenApiSchema { private static final Logger log = Logger.getLogger(Role.class.getName()); diff --git a/src/main/java/ai/lamin/lamin_api_client/model/Role1.java b/src/main/java/ai/lamin/lamin_api_client/model/Role1.java index b8c15c6..494b630 100644 --- a/src/main/java/ai/lamin/lamin_api_client/model/Role1.java +++ b/src/main/java/ai/lamin/lamin_api_client/model/Role1.java @@ -50,7 +50,7 @@ import ai.lamin.lamin_api_client.JSON; -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-12T11:16:27.287169544+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class Role1 extends AbstractOpenApiSchema { private static final Logger log = Logger.getLogger(Role1.class.getName()); diff --git a/src/main/java/ai/lamin/lamin_api_client/model/S3PermissionsRequest.java b/src/main/java/ai/lamin/lamin_api_client/model/S3PermissionsRequest.java index 6910bd2..463f339 100644 --- a/src/main/java/ai/lamin/lamin_api_client/model/S3PermissionsRequest.java +++ b/src/main/java/ai/lamin/lamin_api_client/model/S3PermissionsRequest.java @@ -51,7 +51,7 @@ /** * S3PermissionsRequest */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-12T11:16:27.287169544+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class S3PermissionsRequest { public static final String SERIALIZED_NAME_AWS_ACCESS_KEY_ID = "aws_access_key_id"; @SerializedName(SERIALIZED_NAME_AWS_ACCESS_KEY_ID) diff --git a/src/main/java/ai/lamin/lamin_api_client/model/StatisticsResponse.java b/src/main/java/ai/lamin/lamin_api_client/model/StatisticsResponse.java index 08c6d02..2024576 100644 --- a/src/main/java/ai/lamin/lamin_api_client/model/StatisticsResponse.java +++ b/src/main/java/ai/lamin/lamin_api_client/model/StatisticsResponse.java @@ -50,7 +50,7 @@ /** * Defines the response for the instance statistics endpoint. */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-12T11:16:27.287169544+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class StatisticsResponse { public static final String SERIALIZED_NAME_INSTANCE_SIZE = "instance_size"; @SerializedName(SERIALIZED_NAME_INSTANCE_SIZE) diff --git a/src/main/java/ai/lamin/lamin_api_client/model/SyncInstruction.java b/src/main/java/ai/lamin/lamin_api_client/model/SyncInstruction.java index a3d0687..7975264 100644 --- a/src/main/java/ai/lamin/lamin_api_client/model/SyncInstruction.java +++ b/src/main/java/ai/lamin/lamin_api_client/model/SyncInstruction.java @@ -52,7 +52,7 @@ /** * Defines a single synchronization instruction, containing the scope and the desired state for that scope. */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-12T11:16:27.287169544+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class SyncInstruction { public static final String SERIALIZED_NAME_SCOPE = "scope"; @SerializedName(SERIALIZED_NAME_SCOPE) diff --git a/src/main/java/ai/lamin/lamin_api_client/model/TraversalParams.java b/src/main/java/ai/lamin/lamin_api_client/model/TraversalParams.java index 57b5c76..082e567 100644 --- a/src/main/java/ai/lamin/lamin_api_client/model/TraversalParams.java +++ b/src/main/java/ai/lamin/lamin_api_client/model/TraversalParams.java @@ -52,7 +52,7 @@ /** * Parameters that define the hierarchical traversal. */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-12T11:16:27.287169544+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class TraversalParams { public static final String SERIALIZED_NAME_VALUES = "values"; @SerializedName(SERIALIZED_NAME_VALUES) diff --git a/src/main/java/ai/lamin/lamin_api_client/model/TraversalParamsValuesInner.java b/src/main/java/ai/lamin/lamin_api_client/model/TraversalParamsValuesInner.java index 7a0f87e..558aa87 100644 --- a/src/main/java/ai/lamin/lamin_api_client/model/TraversalParamsValuesInner.java +++ b/src/main/java/ai/lamin/lamin_api_client/model/TraversalParamsValuesInner.java @@ -50,7 +50,7 @@ import ai.lamin.lamin_api_client.JSON; -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-12T11:16:27.287169544+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class TraversalParamsValuesInner extends AbstractOpenApiSchema { private static final Logger log = Logger.getLogger(TraversalParamsValuesInner.class.getName()); diff --git a/src/main/java/ai/lamin/lamin_api_client/model/UpdateCollaboratorRequestBody.java b/src/main/java/ai/lamin/lamin_api_client/model/UpdateCollaboratorRequestBody.java index 9ac540d..b806e2e 100644 --- a/src/main/java/ai/lamin/lamin_api_client/model/UpdateCollaboratorRequestBody.java +++ b/src/main/java/ai/lamin/lamin_api_client/model/UpdateCollaboratorRequestBody.java @@ -50,7 +50,7 @@ /** * UpdateCollaboratorRequestBody */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-12T11:16:27.287169544+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class UpdateCollaboratorRequestBody { /** * Gets or Sets role diff --git a/src/main/java/ai/lamin/lamin_api_client/model/UpdateOrganizationMemberRequestBody.java b/src/main/java/ai/lamin/lamin_api_client/model/UpdateOrganizationMemberRequestBody.java index 276add6..323e262 100644 --- a/src/main/java/ai/lamin/lamin_api_client/model/UpdateOrganizationMemberRequestBody.java +++ b/src/main/java/ai/lamin/lamin_api_client/model/UpdateOrganizationMemberRequestBody.java @@ -48,7 +48,7 @@ /** * UpdateOrganizationMemberRequestBody */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-12T11:16:27.287169544+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class UpdateOrganizationMemberRequestBody { /** * Gets or Sets role diff --git a/src/main/java/ai/lamin/lamin_api_client/model/UpdateSpaceCollaboratorRequestBody.java b/src/main/java/ai/lamin/lamin_api_client/model/UpdateSpaceCollaboratorRequestBody.java index e37afef..85bd863 100644 --- a/src/main/java/ai/lamin/lamin_api_client/model/UpdateSpaceCollaboratorRequestBody.java +++ b/src/main/java/ai/lamin/lamin_api_client/model/UpdateSpaceCollaboratorRequestBody.java @@ -50,7 +50,7 @@ /** * UpdateSpaceCollaboratorRequestBody */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-12T11:16:27.287169544+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class UpdateSpaceCollaboratorRequestBody { public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id"; @SerializedName(SERIALIZED_NAME_ACCOUNT_ID) diff --git a/src/main/java/ai/lamin/lamin_api_client/model/UpdateSpaceRequestBody.java b/src/main/java/ai/lamin/lamin_api_client/model/UpdateSpaceRequestBody.java index bef6b17..535b3ca 100644 --- a/src/main/java/ai/lamin/lamin_api_client/model/UpdateSpaceRequestBody.java +++ b/src/main/java/ai/lamin/lamin_api_client/model/UpdateSpaceRequestBody.java @@ -49,7 +49,7 @@ /** * UpdateSpaceRequestBody */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-12T11:16:27.287169544+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class UpdateSpaceRequestBody { public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) diff --git a/src/main/java/ai/lamin/lamin_api_client/model/UpdateTeamMemberRequestBody.java b/src/main/java/ai/lamin/lamin_api_client/model/UpdateTeamMemberRequestBody.java index 16507e8..049dd30 100644 --- a/src/main/java/ai/lamin/lamin_api_client/model/UpdateTeamMemberRequestBody.java +++ b/src/main/java/ai/lamin/lamin_api_client/model/UpdateTeamMemberRequestBody.java @@ -49,7 +49,7 @@ /** * UpdateTeamMemberRequestBody */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-12T11:16:27.287169544+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class UpdateTeamMemberRequestBody { public static final String SERIALIZED_NAME_ROLE = "role"; @SerializedName(SERIALIZED_NAME_ROLE) diff --git a/src/main/java/ai/lamin/lamin_api_client/model/UpdateTeamRequestBody.java b/src/main/java/ai/lamin/lamin_api_client/model/UpdateTeamRequestBody.java index 0206938..c12df8a 100644 --- a/src/main/java/ai/lamin/lamin_api_client/model/UpdateTeamRequestBody.java +++ b/src/main/java/ai/lamin/lamin_api_client/model/UpdateTeamRequestBody.java @@ -49,7 +49,7 @@ /** * UpdateTeamRequestBody */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-12T11:16:27.287169544+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class UpdateTeamRequestBody { public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) diff --git a/src/main/java/ai/lamin/lamin_api_client/model/ValidationError.java b/src/main/java/ai/lamin/lamin_api_client/model/ValidationError.java index 3a6b426..79cefe5 100644 --- a/src/main/java/ai/lamin/lamin_api_client/model/ValidationError.java +++ b/src/main/java/ai/lamin/lamin_api_client/model/ValidationError.java @@ -51,7 +51,7 @@ /** * ValidationError */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-12T11:16:27.287169544+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class ValidationError { public static final String SERIALIZED_NAME_LOC = "loc"; @SerializedName(SERIALIZED_NAME_LOC) diff --git a/src/main/java/ai/lamin/lamin_api_client/model/ValidationErrorLocInner.java b/src/main/java/ai/lamin/lamin_api_client/model/ValidationErrorLocInner.java index cbe883c..a793858 100644 --- a/src/main/java/ai/lamin/lamin_api_client/model/ValidationErrorLocInner.java +++ b/src/main/java/ai/lamin/lamin_api_client/model/ValidationErrorLocInner.java @@ -50,7 +50,7 @@ import ai.lamin.lamin_api_client.JSON; -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-12T11:16:27.287169544+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class ValidationErrorLocInner extends AbstractOpenApiSchema { private static final Logger log = Logger.getLogger(ValidationErrorLocInner.class.getName()); diff --git a/src/test/src/test/java/ai/lamin/lamin_api_client/api/AccountsApiTest.java b/src/test/src/test/java/ai/lamin/lamin_api_client/api/AccountsApiTest.java index adf82bc..5d31c41 100644 --- a/src/test/src/test/java/ai/lamin/lamin_api_client/api/AccountsApiTest.java +++ b/src/test/src/test/java/ai/lamin/lamin_api_client/api/AccountsApiTest.java @@ -15,7 +15,6 @@ import ai.lamin.lamin_api_client.ApiException; import ai.lamin.lamin_api_client.model.HTTPValidationError; -import java.util.UUID; import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Test; @@ -39,9 +38,8 @@ public class AccountsApiTest { */ @Test public void getCallerAccountAccountGetTest() throws ApiException { - UUID instanceId = null; String authorization = null; - Object response = api.getCallerAccountAccountGet(instanceId, authorization); + Object response = api.getCallerAccountAccountGet(authorization); // TODO: test validations } diff --git a/src/test/src/test/java/ai/lamin/lamin_api_client/api/DbServerApiTest.java b/src/test/src/test/java/ai/lamin/lamin_api_client/api/DbServerApiTest.java index 29d7080..36c5298 100644 --- a/src/test/src/test/java/ai/lamin/lamin_api_client/api/DbServerApiTest.java +++ b/src/test/src/test/java/ai/lamin/lamin_api_client/api/DbServerApiTest.java @@ -16,7 +16,6 @@ import ai.lamin.lamin_api_client.ApiException; import ai.lamin.lamin_api_client.model.HTTPValidationError; import ai.lamin.lamin_api_client.model.RegisterDbServerBody; -import java.util.UUID; import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Test; @@ -41,9 +40,8 @@ public class DbServerApiTest { @Test public void checkDbServerAccessDbServerCheckAccessPostTest() throws ApiException { String name = null; - UUID instanceId = null; String authorization = null; - Object response = api.checkDbServerAccessDbServerCheckAccessPost(name, instanceId, authorization); + Object response = api.checkDbServerAccessDbServerCheckAccessPost(name, authorization); // TODO: test validations } @@ -55,9 +53,8 @@ public void checkDbServerAccessDbServerCheckAccessPostTest() throws ApiException @Test public void registerDbServerDbServerRegisterPostTest() throws ApiException { RegisterDbServerBody registerDbServerBody = null; - UUID instanceId = null; String authorization = null; - Object response = api.registerDbServerDbServerRegisterPost(registerDbServerBody, instanceId, authorization); + Object response = api.registerDbServerDbServerRegisterPost(registerDbServerBody, authorization); // TODO: test validations } diff --git a/src/test/src/test/java/ai/lamin/lamin_api_client/api/InstanceArtifactsApiTest.java b/src/test/src/test/java/ai/lamin/lamin_api_client/api/InstanceArtifactsApiTest.java index 9794e0f..90ea195 100644 --- a/src/test/src/test/java/ai/lamin/lamin_api_client/api/InstanceArtifactsApiTest.java +++ b/src/test/src/test/java/ai/lamin/lamin_api_client/api/InstanceArtifactsApiTest.java @@ -48,6 +48,20 @@ public void createArtifactInstancesInstanceIdArtifactsCreatePostTest() throws Ap // TODO: test validations } + /** + * Get Artifact By Path + * + * @throws ApiException if the Api call fails + */ + @Test + public void getArtifactByPathInstancesInstanceIdArtifactsByPathGetTest() throws ApiException { + UUID instanceId = null; + String path = null; + String authorization = null; + Object response = api.getArtifactByPathInstancesInstanceIdArtifactsByPathGet(instanceId, path, authorization); + // TODO: test validations + } + /** * Upload Artifact * diff --git a/src/test/src/test/java/ai/lamin/lamin_api_client/api/InstancesApiTest.java b/src/test/src/test/java/ai/lamin/lamin_api_client/api/InstancesApiTest.java index c3600cb..80c5a99 100644 --- a/src/test/src/test/java/ai/lamin/lamin_api_client/api/InstancesApiTest.java +++ b/src/test/src/test/java/ai/lamin/lamin_api_client/api/InstancesApiTest.java @@ -63,10 +63,9 @@ public void createInstanceInstancesPutTest() throws ApiException { String dbServerName = null; String storageUid = null; UUID accountId = null; - UUID instanceId = null; String authorization = null; Map requestBody = null; - Object response = api.createInstanceInstancesPut(name, storage, schemaStr, dbServerName, storageUid, accountId, instanceId, authorization, requestBody); + Object response = api.createInstanceInstancesPut(name, storage, schemaStr, dbServerName, storageUid, accountId, authorization, requestBody); // TODO: test validations } diff --git a/src/test/src/test/java/ai/lamin/lamin_api_client/api/OrganizationsApiTest.java b/src/test/src/test/java/ai/lamin/lamin_api_client/api/OrganizationsApiTest.java index e231d4d..d21e778 100644 --- a/src/test/src/test/java/ai/lamin/lamin_api_client/api/OrganizationsApiTest.java +++ b/src/test/src/test/java/ai/lamin/lamin_api_client/api/OrganizationsApiTest.java @@ -46,9 +46,8 @@ public void addOrganizationMemberOrganizationsOrganizationIdMembersAccountIdPutT UUID organizationId = null; UUID accountId = null; AddOrganizationMemberRequestBody addOrganizationMemberRequestBody = null; - UUID instanceId = null; String authorization = null; - Object response = api.addOrganizationMemberOrganizationsOrganizationIdMembersAccountIdPut(organizationId, accountId, addOrganizationMemberRequestBody, instanceId, authorization); + Object response = api.addOrganizationMemberOrganizationsOrganizationIdMembersAccountIdPut(organizationId, accountId, addOrganizationMemberRequestBody, authorization); // TODO: test validations } @@ -62,9 +61,8 @@ public void addOrganizationMemberOrganizationsOrganizationIdMembersAccountIdPutT @Test public void getOrganizationOrganizationsOrganizationIdGetTest() throws ApiException { UUID organizationId = null; - UUID instanceId = null; String authorization = null; - Object response = api.getOrganizationOrganizationsOrganizationIdGet(organizationId, instanceId, authorization); + Object response = api.getOrganizationOrganizationsOrganizationIdGet(organizationId, authorization); // TODO: test validations } @@ -78,9 +76,8 @@ public void getOrganizationOrganizationsOrganizationIdGetTest() throws ApiExcept @Test public void listOrganizationMembersOrganizationsOrganizationIdMembersGetTest() throws ApiException { UUID organizationId = null; - UUID instanceId = null; String authorization = null; - Object response = api.listOrganizationMembersOrganizationsOrganizationIdMembersGet(organizationId, instanceId, authorization); + Object response = api.listOrganizationMembersOrganizationsOrganizationIdMembersGet(organizationId, authorization); // TODO: test validations } @@ -95,9 +92,8 @@ public void listOrganizationMembersOrganizationsOrganizationIdMembersGetTest() t public void removeOrganizationMemberOrganizationsOrganizationIdMembersAccountIdDeleteTest() throws ApiException { UUID organizationId = null; UUID accountId = null; - UUID instanceId = null; String authorization = null; - Object response = api.removeOrganizationMemberOrganizationsOrganizationIdMembersAccountIdDelete(organizationId, accountId, instanceId, authorization); + Object response = api.removeOrganizationMemberOrganizationsOrganizationIdMembersAccountIdDelete(organizationId, accountId, authorization); // TODO: test validations } @@ -113,9 +109,8 @@ public void updateOrganizationMemberOrganizationsOrganizationIdMembersAccountIdP UUID organizationId = null; UUID accountId = null; UpdateOrganizationMemberRequestBody updateOrganizationMemberRequestBody = null; - UUID instanceId = null; String authorization = null; - Object response = api.updateOrganizationMemberOrganizationsOrganizationIdMembersAccountIdPatch(organizationId, accountId, updateOrganizationMemberRequestBody, instanceId, authorization); + Object response = api.updateOrganizationMemberOrganizationsOrganizationIdMembersAccountIdPatch(organizationId, accountId, updateOrganizationMemberRequestBody, authorization); // TODO: test validations } diff --git a/src/test/src/test/java/ai/lamin/lamin_api_client/api/SpacesApiTest.java b/src/test/src/test/java/ai/lamin/lamin_api_client/api/SpacesApiTest.java index baeac9f..4ad6a90 100644 --- a/src/test/src/test/java/ai/lamin/lamin_api_client/api/SpacesApiTest.java +++ b/src/test/src/test/java/ai/lamin/lamin_api_client/api/SpacesApiTest.java @@ -48,9 +48,8 @@ public class SpacesApiTest { public void addSpaceCollaboratorSpacesSpaceIdCollaboratorsPutTest() throws ApiException { UUID spaceId = null; AddSpaceCollaboratorRequestBody addSpaceCollaboratorRequestBody = null; - UUID instanceId = null; String authorization = null; - Object response = api.addSpaceCollaboratorSpacesSpaceIdCollaboratorsPut(spaceId, addSpaceCollaboratorRequestBody, instanceId, authorization); + Object response = api.addSpaceCollaboratorSpacesSpaceIdCollaboratorsPut(spaceId, addSpaceCollaboratorRequestBody, authorization); // TODO: test validations } @@ -80,9 +79,8 @@ public void attachSpaceToInstanceSpacesSpaceIdInstancesInstanceIdPutTest() throw @Test public void createSpaceSpacesPutTest() throws ApiException { CreateSpaceRequestBody createSpaceRequestBody = null; - UUID instanceId = null; String authorization = null; - Object response = api.createSpaceSpacesPut(createSpaceRequestBody, instanceId, authorization); + Object response = api.createSpaceSpacesPut(createSpaceRequestBody, authorization); // TODO: test validations } @@ -96,9 +94,8 @@ public void createSpaceSpacesPutTest() throws ApiException { @Test public void deleteSpaceSpacesSpaceIdDeleteTest() throws ApiException { UUID spaceId = null; - UUID instanceId = null; String authorization = null; - Object response = api.deleteSpaceSpacesSpaceIdDelete(spaceId, instanceId, authorization); + Object response = api.deleteSpaceSpacesSpaceIdDelete(spaceId, authorization); // TODO: test validations } @@ -128,9 +125,8 @@ public void detachSpaceFromInstanceSpacesSpaceIdInstancesInstanceIdDeleteTest() @Test public void getSpaceSpacesSpaceIdGetTest() throws ApiException { UUID spaceId = null; - UUID instanceId = null; String authorization = null; - Object response = api.getSpaceSpacesSpaceIdGet(spaceId, instanceId, authorization); + Object response = api.getSpaceSpacesSpaceIdGet(spaceId, authorization); // TODO: test validations } @@ -159,9 +155,8 @@ public void listInstanceSpacesSpacesInstancesInstanceIdGetTest() throws ApiExcep @Test public void listInstancesUsingSpaceSpacesSpaceIdInstancesGetTest() throws ApiException { UUID spaceId = null; - UUID instanceId = null; String authorization = null; - Object response = api.listInstancesUsingSpaceSpacesSpaceIdInstancesGet(spaceId, instanceId, authorization); + Object response = api.listInstancesUsingSpaceSpacesSpaceIdInstancesGet(spaceId, authorization); // TODO: test validations } @@ -175,9 +170,8 @@ public void listInstancesUsingSpaceSpacesSpaceIdInstancesGetTest() throws ApiExc @Test public void listOrganizationSpacesSpacesOrganizationsOrganizationIdGetTest() throws ApiException { UUID organizationId = null; - UUID instanceId = null; String authorization = null; - Object response = api.listOrganizationSpacesSpacesOrganizationsOrganizationIdGet(organizationId, instanceId, authorization); + Object response = api.listOrganizationSpacesSpacesOrganizationsOrganizationIdGet(organizationId, authorization); // TODO: test validations } @@ -191,9 +185,8 @@ public void listOrganizationSpacesSpacesOrganizationsOrganizationIdGetTest() thr @Test public void listSpaceCollaboratorsSpacesSpaceIdCollaboratorsGetTest() throws ApiException { UUID spaceId = null; - UUID instanceId = null; String authorization = null; - Object response = api.listSpaceCollaboratorsSpacesSpaceIdCollaboratorsGet(spaceId, instanceId, authorization); + Object response = api.listSpaceCollaboratorsSpacesSpaceIdCollaboratorsGet(spaceId, authorization); // TODO: test validations } @@ -226,9 +219,8 @@ public void removeSpaceCollaboratorSpacesSpaceIdCollaboratorsDeleteTest() throws UUID spaceId = null; UUID accountId = null; UUID teamId = null; - UUID instanceId = null; String authorization = null; - Object response = api.removeSpaceCollaboratorSpacesSpaceIdCollaboratorsDelete(spaceId, accountId, teamId, instanceId, authorization); + Object response = api.removeSpaceCollaboratorSpacesSpaceIdCollaboratorsDelete(spaceId, accountId, teamId, authorization); // TODO: test validations } @@ -243,9 +235,8 @@ public void removeSpaceCollaboratorSpacesSpaceIdCollaboratorsDeleteTest() throws public void updateSpaceCollaboratorSpacesSpaceIdCollaboratorsPatchTest() throws ApiException { UUID spaceId = null; UpdateSpaceCollaboratorRequestBody updateSpaceCollaboratorRequestBody = null; - UUID instanceId = null; String authorization = null; - Object response = api.updateSpaceCollaboratorSpacesSpaceIdCollaboratorsPatch(spaceId, updateSpaceCollaboratorRequestBody, instanceId, authorization); + Object response = api.updateSpaceCollaboratorSpacesSpaceIdCollaboratorsPatch(spaceId, updateSpaceCollaboratorRequestBody, authorization); // TODO: test validations } @@ -260,9 +251,8 @@ public void updateSpaceCollaboratorSpacesSpaceIdCollaboratorsPatchTest() throws public void updateSpaceSpacesSpaceIdPatchTest() throws ApiException { UUID spaceId = null; UpdateSpaceRequestBody updateSpaceRequestBody = null; - UUID instanceId = null; String authorization = null; - Object response = api.updateSpaceSpacesSpaceIdPatch(spaceId, updateSpaceRequestBody, instanceId, authorization); + Object response = api.updateSpaceSpacesSpaceIdPatch(spaceId, updateSpaceRequestBody, authorization); // TODO: test validations } diff --git a/src/test/src/test/java/ai/lamin/lamin_api_client/api/StoragesApiTest.java b/src/test/src/test/java/ai/lamin/lamin_api_client/api/StoragesApiTest.java index 081e229..8443902 100644 --- a/src/test/src/test/java/ai/lamin/lamin_api_client/api/StoragesApiTest.java +++ b/src/test/src/test/java/ai/lamin/lamin_api_client/api/StoragesApiTest.java @@ -16,7 +16,6 @@ import ai.lamin.lamin_api_client.ApiException; import ai.lamin.lamin_api_client.model.HTTPValidationError; import ai.lamin.lamin_api_client.model.S3PermissionsRequest; -import java.util.UUID; import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Test; @@ -44,9 +43,8 @@ public void grantS3PermissionsStoragesS3BucketNamePermissionsPutTest() throws Ap S3PermissionsRequest s3PermissionsRequest = null; String awsAccountId = null; String awsUserName = null; - UUID instanceId = null; String authorization = null; - Object response = api.grantS3PermissionsStoragesS3BucketNamePermissionsPut(bucketName, s3PermissionsRequest, awsAccountId, awsUserName, instanceId, authorization); + Object response = api.grantS3PermissionsStoragesS3BucketNamePermissionsPut(bucketName, s3PermissionsRequest, awsAccountId, awsUserName, authorization); // TODO: test validations } diff --git a/src/test/src/test/java/ai/lamin/lamin_api_client/api/TeamsApiTest.java b/src/test/src/test/java/ai/lamin/lamin_api_client/api/TeamsApiTest.java index a6917af..27bd8ef 100644 --- a/src/test/src/test/java/ai/lamin/lamin_api_client/api/TeamsApiTest.java +++ b/src/test/src/test/java/ai/lamin/lamin_api_client/api/TeamsApiTest.java @@ -48,9 +48,8 @@ public void addTeamMemberTeamsTeamIdMembersAccountIdPutTest() throws ApiExceptio UUID teamId = null; UUID accountId = null; AddTeamMemberRequestBody addTeamMemberRequestBody = null; - UUID instanceId = null; String authorization = null; - Object response = api.addTeamMemberTeamsTeamIdMembersAccountIdPut(teamId, accountId, addTeamMemberRequestBody, instanceId, authorization); + Object response = api.addTeamMemberTeamsTeamIdMembersAccountIdPut(teamId, accountId, addTeamMemberRequestBody, authorization); // TODO: test validations } @@ -64,9 +63,8 @@ public void addTeamMemberTeamsTeamIdMembersAccountIdPutTest() throws ApiExceptio @Test public void createTeamTeamsPutTest() throws ApiException { CreateTeamRequestBody createTeamRequestBody = null; - UUID instanceId = null; String authorization = null; - Object response = api.createTeamTeamsPut(createTeamRequestBody, instanceId, authorization); + Object response = api.createTeamTeamsPut(createTeamRequestBody, authorization); // TODO: test validations } @@ -80,9 +78,8 @@ public void createTeamTeamsPutTest() throws ApiException { @Test public void deleteTeamTeamsTeamIdDeleteTest() throws ApiException { UUID teamId = null; - UUID instanceId = null; String authorization = null; - Object response = api.deleteTeamTeamsTeamIdDelete(teamId, instanceId, authorization); + Object response = api.deleteTeamTeamsTeamIdDelete(teamId, authorization); // TODO: test validations } @@ -96,9 +93,8 @@ public void deleteTeamTeamsTeamIdDeleteTest() throws ApiException { @Test public void getTeamTeamsTeamIdGetTest() throws ApiException { UUID teamId = null; - UUID instanceId = null; String authorization = null; - Object response = api.getTeamTeamsTeamIdGet(teamId, instanceId, authorization); + Object response = api.getTeamTeamsTeamIdGet(teamId, authorization); // TODO: test validations } @@ -112,9 +108,8 @@ public void getTeamTeamsTeamIdGetTest() throws ApiException { @Test public void listOrganizationTeamsTeamsOrganizationsOrganizationIdGetTest() throws ApiException { UUID organizationId = null; - UUID instanceId = null; String authorization = null; - Object response = api.listOrganizationTeamsTeamsOrganizationsOrganizationIdGet(organizationId, instanceId, authorization); + Object response = api.listOrganizationTeamsTeamsOrganizationsOrganizationIdGet(organizationId, authorization); // TODO: test validations } @@ -128,9 +123,8 @@ public void listOrganizationTeamsTeamsOrganizationsOrganizationIdGetTest() throw @Test public void listTeamMembersTeamsTeamIdMembersGetTest() throws ApiException { UUID teamId = null; - UUID instanceId = null; String authorization = null; - Object response = api.listTeamMembersTeamsTeamIdMembersGet(teamId, instanceId, authorization); + Object response = api.listTeamMembersTeamsTeamIdMembersGet(teamId, authorization); // TODO: test validations } @@ -145,9 +139,8 @@ public void listTeamMembersTeamsTeamIdMembersGetTest() throws ApiException { public void removeTeamMemberTeamsTeamIdMembersAccountIdDeleteTest() throws ApiException { UUID teamId = null; UUID accountId = null; - UUID instanceId = null; String authorization = null; - Object response = api.removeTeamMemberTeamsTeamIdMembersAccountIdDelete(teamId, accountId, instanceId, authorization); + Object response = api.removeTeamMemberTeamsTeamIdMembersAccountIdDelete(teamId, accountId, authorization); // TODO: test validations } @@ -163,9 +156,8 @@ public void updateTeamMemberTeamsTeamIdMembersAccountIdPatchTest() throws ApiExc UUID teamId = null; UUID accountId = null; UpdateTeamMemberRequestBody updateTeamMemberRequestBody = null; - UUID instanceId = null; String authorization = null; - Object response = api.updateTeamMemberTeamsTeamIdMembersAccountIdPatch(teamId, accountId, updateTeamMemberRequestBody, instanceId, authorization); + Object response = api.updateTeamMemberTeamsTeamIdMembersAccountIdPatch(teamId, accountId, updateTeamMemberRequestBody, authorization); // TODO: test validations } @@ -180,9 +172,8 @@ public void updateTeamMemberTeamsTeamIdMembersAccountIdPatchTest() throws ApiExc public void updateTeamTeamsTeamIdPatchTest() throws ApiException { UUID teamId = null; UpdateTeamRequestBody updateTeamRequestBody = null; - UUID instanceId = null; String authorization = null; - Object response = api.updateTeamTeamsTeamIdPatch(teamId, updateTeamRequestBody, instanceId, authorization); + Object response = api.updateTeamTeamsTeamIdPatch(teamId, updateTeamRequestBody, authorization); // TODO: test validations } From c96d18e6089073b1c41147c2ac8c14856fa749b4 Mon Sep 17 00:00:00 2001 From: Robrecht Cannoodt Date: Mon, 19 Jan 2026 09:15:45 +0100 Subject: [PATCH 2/2] bump to 0.0.5 --- README.md | 8 ++++---- config.yaml | 2 +- pom.xml | 2 +- src/main/java/ai/lamin/lamin_api_client/ApiClient.java | 2 +- src/main/java/ai/lamin/lamin_api_client/ApiException.java | 2 +- .../java/ai/lamin/lamin_api_client/Configuration.java | 4 ++-- src/main/java/ai/lamin/lamin_api_client/Pair.java | 2 +- .../ai/lamin/lamin_api_client/ServerConfiguration.java | 2 +- .../java/ai/lamin/lamin_api_client/ServerVariable.java | 2 +- src/main/java/ai/lamin/lamin_api_client/StringUtil.java | 2 +- .../java/ai/lamin/lamin_api_client/auth/ApiKeyAuth.java | 2 +- .../ai/lamin/lamin_api_client/auth/HttpBearerAuth.java | 2 +- .../lamin_api_client/model/AbstractOpenApiSchema.java | 2 +- .../model/AddCollaboratorRequestBody.java | 2 +- .../model/AddOrganizationMemberRequestBody.java | 2 +- .../model/AddSpaceCollaboratorRequestBody.java | 2 +- .../lamin_api_client/model/AddTeamMemberRequestBody.java | 2 +- .../model/AttachSpaceToRecordRequestBody.java | 2 +- .../ai/lamin/lamin_api_client/model/BatchDeleteBody.java | 2 +- .../lamin/lamin_api_client/model/BatchDeleteResponse.java | 2 +- .../lamin/lamin_api_client/model/BatchSyncLinksBody.java | 2 +- .../lamin/lamin_api_client/model/BatchSyncResponse.java | 2 +- .../ai/lamin/lamin_api_client/model/BatchUpdateBody.java | 2 +- src/main/java/ai/lamin/lamin_api_client/model/Body.java | 2 +- .../lamin_api_client/model/CreateArtifactRequestBody.java | 2 +- .../lamin_api_client/model/CreateSpaceRequestBody.java | 2 +- .../lamin_api_client/model/CreateTeamRequestBody.java | 2 +- .../model/CreateTransformRequestBody.java | 2 +- .../java/ai/lamin/lamin_api_client/model/Dimension.java | 2 +- .../java/ai/lamin/lamin_api_client/model/ErrorDetail.java | 2 +- .../model/ExecuteFunctionRequestBody.java | 2 +- .../lamin_api_client/model/ExportRecordsRequestBody.java | 2 +- .../lamin_api_client/model/GetRecordRequestBody.java | 2 +- .../lamin_api_client/model/GetRecordsRequestBody.java | 2 +- .../lamin_api_client/model/GetValuesRequestBody.java | 2 +- .../lamin/lamin_api_client/model/GroupByRequestBody.java | 2 +- .../lamin/lamin_api_client/model/HTTPValidationError.java | 2 +- .../java/ai/lamin/lamin_api_client/model/Measure.java | 2 +- .../lamin_api_client/model/NonEmptyTablesResponse.java | 2 +- .../ai/lamin/lamin_api_client/model/OrderByColumn.java | 2 +- .../lamin_api_client/model/RegisterDbServerBody.java | 2 +- .../lamin/lamin_api_client/model/RegisterFormRequest.java | 2 +- .../java/ai/lamin/lamin_api_client/model/Request.java | 2 +- src/main/java/ai/lamin/lamin_api_client/model/Role.java | 2 +- src/main/java/ai/lamin/lamin_api_client/model/Role1.java | 2 +- .../lamin_api_client/model/S3PermissionsRequest.java | 2 +- .../lamin/lamin_api_client/model/StatisticsResponse.java | 2 +- .../ai/lamin/lamin_api_client/model/SyncInstruction.java | 2 +- .../ai/lamin/lamin_api_client/model/TraversalParams.java | 2 +- .../model/TraversalParamsValuesInner.java | 2 +- .../model/UpdateCollaboratorRequestBody.java | 2 +- .../model/UpdateOrganizationMemberRequestBody.java | 2 +- .../model/UpdateSpaceCollaboratorRequestBody.java | 2 +- .../lamin_api_client/model/UpdateSpaceRequestBody.java | 2 +- .../model/UpdateTeamMemberRequestBody.java | 2 +- .../lamin_api_client/model/UpdateTeamRequestBody.java | 2 +- .../ai/lamin/lamin_api_client/model/ValidationError.java | 2 +- .../lamin_api_client/model/ValidationErrorLocInner.java | 2 +- 58 files changed, 62 insertions(+), 62 deletions(-) diff --git a/README.md b/README.md index 4c12046..f499ae0 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ Lamin API - API version: 0.1.0 - - Build date: 2026-01-15T12:58:35.937124602+01:00[Europe/Brussels] + - Build date: 2026-01-19T09:11:02.411898486+01:00[Europe/Brussels] - Generator version: 7.12.0 No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) @@ -44,7 +44,7 @@ Add this dependency to your project's POM: ai.lamin lamin-api-client - 0.0.5-rc1 + 0.0.5 compile ``` @@ -60,7 +60,7 @@ Add this dependency to your project's build file: } dependencies { - implementation "ai.lamin:lamin-api-client:0.0.5-rc1" + implementation "ai.lamin:lamin-api-client:0.0.5" } ``` @@ -74,7 +74,7 @@ mvn clean package Then manually install the following JARs: -* `target/lamin-api-client-0.0.5-rc1.jar` +* `target/lamin-api-client-0.0.5.jar` * `target/lib/*.jar` ## Getting Started diff --git a/config.yaml b/config.yaml index b64315a..c8605c1 100644 --- a/config.yaml +++ b/config.yaml @@ -53,7 +53,7 @@ groupId: ai.lamin # Default: org.openapitools artifactId: lamin-api-client # Description: artifact version in generated pom.xml. This also becomes part of the generated library's filename. If not provided, uses the version from the OpenAPI specification file. If that's also not present, uses the default value of the artifactVersion option. -artifactVersion: 0.0.5-rc1 +artifactVersion: 0.0.5 # Description: artifact URL in generated pom.xml artifactUrl: https://github.com/laminlabs/lamin-api-client-java diff --git a/pom.xml b/pom.xml index 2e4bbbb..77c8f70 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ lamin-api-client jar lamin-api-client - 0.0.5-rc1 + 0.0.5 https://github.com/laminlabs/lamin-api-client-java Java client for the Lamin API diff --git a/src/main/java/ai/lamin/lamin_api_client/ApiClient.java b/src/main/java/ai/lamin/lamin_api_client/ApiClient.java index a3955a4..7ec4733 100644 --- a/src/main/java/ai/lamin/lamin_api_client/ApiClient.java +++ b/src/main/java/ai/lamin/lamin_api_client/ApiClient.java @@ -139,7 +139,7 @@ private void init() { json = new JSON(); // Set default User-Agent. - setUserAgent("OpenAPI-Generator/0.0.5-rc1/java"); + setUserAgent("OpenAPI-Generator/0.0.5/java"); authentications = new HashMap(); } diff --git a/src/main/java/ai/lamin/lamin_api_client/ApiException.java b/src/main/java/ai/lamin/lamin_api_client/ApiException.java index 3d9cc71..5acfe71 100644 --- a/src/main/java/ai/lamin/lamin_api_client/ApiException.java +++ b/src/main/java/ai/lamin/lamin_api_client/ApiException.java @@ -21,7 +21,7 @@ *

ApiException class.

*/ @SuppressWarnings("serial") -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-19T09:11:02.411898486+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class ApiException extends Exception { private static final long serialVersionUID = 1L; diff --git a/src/main/java/ai/lamin/lamin_api_client/Configuration.java b/src/main/java/ai/lamin/lamin_api_client/Configuration.java index 52a99b4..6d2ffb3 100644 --- a/src/main/java/ai/lamin/lamin_api_client/Configuration.java +++ b/src/main/java/ai/lamin/lamin_api_client/Configuration.java @@ -13,9 +13,9 @@ package ai.lamin.lamin_api_client; -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-19T09:11:02.411898486+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class Configuration { - public static final String VERSION = "0.0.5-rc1"; + public static final String VERSION = "0.0.5"; private static volatile ApiClient defaultApiClient = new ApiClient(); diff --git a/src/main/java/ai/lamin/lamin_api_client/Pair.java b/src/main/java/ai/lamin/lamin_api_client/Pair.java index e53fc19..f235600 100644 --- a/src/main/java/ai/lamin/lamin_api_client/Pair.java +++ b/src/main/java/ai/lamin/lamin_api_client/Pair.java @@ -13,7 +13,7 @@ package ai.lamin.lamin_api_client; -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-19T09:11:02.411898486+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class Pair { private String name = ""; private String value = ""; diff --git a/src/main/java/ai/lamin/lamin_api_client/ServerConfiguration.java b/src/main/java/ai/lamin/lamin_api_client/ServerConfiguration.java index 7e32fa0..bf348b8 100644 --- a/src/main/java/ai/lamin/lamin_api_client/ServerConfiguration.java +++ b/src/main/java/ai/lamin/lamin_api_client/ServerConfiguration.java @@ -18,7 +18,7 @@ /** * Representing a Server configuration. */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-19T09:11:02.411898486+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class ServerConfiguration { public String URL; public String description; diff --git a/src/main/java/ai/lamin/lamin_api_client/ServerVariable.java b/src/main/java/ai/lamin/lamin_api_client/ServerVariable.java index d7da7aa..ec8e007 100644 --- a/src/main/java/ai/lamin/lamin_api_client/ServerVariable.java +++ b/src/main/java/ai/lamin/lamin_api_client/ServerVariable.java @@ -18,7 +18,7 @@ /** * Representing a Server Variable for server URL template substitution. */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-19T09:11:02.411898486+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class ServerVariable { public String description; public String defaultValue; diff --git a/src/main/java/ai/lamin/lamin_api_client/StringUtil.java b/src/main/java/ai/lamin/lamin_api_client/StringUtil.java index ae5fa24..c8f98d6 100644 --- a/src/main/java/ai/lamin/lamin_api_client/StringUtil.java +++ b/src/main/java/ai/lamin/lamin_api_client/StringUtil.java @@ -16,7 +16,7 @@ import java.util.Collection; import java.util.Iterator; -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-19T09:11:02.411898486+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class StringUtil { /** * Check if the given array contains the given value (with case-insensitive comparison). diff --git a/src/main/java/ai/lamin/lamin_api_client/auth/ApiKeyAuth.java b/src/main/java/ai/lamin/lamin_api_client/auth/ApiKeyAuth.java index 3f9a560..71a2407 100644 --- a/src/main/java/ai/lamin/lamin_api_client/auth/ApiKeyAuth.java +++ b/src/main/java/ai/lamin/lamin_api_client/auth/ApiKeyAuth.java @@ -20,7 +20,7 @@ import java.util.Map; import java.util.List; -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-19T09:11:02.411898486+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class ApiKeyAuth implements Authentication { private final String location; private final String paramName; diff --git a/src/main/java/ai/lamin/lamin_api_client/auth/HttpBearerAuth.java b/src/main/java/ai/lamin/lamin_api_client/auth/HttpBearerAuth.java index acc6eb4..67b3c50 100644 --- a/src/main/java/ai/lamin/lamin_api_client/auth/HttpBearerAuth.java +++ b/src/main/java/ai/lamin/lamin_api_client/auth/HttpBearerAuth.java @@ -22,7 +22,7 @@ import java.util.Optional; import java.util.function.Supplier; -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-19T09:11:02.411898486+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class HttpBearerAuth implements Authentication { private final String scheme; private Supplier tokenSupplier; diff --git a/src/main/java/ai/lamin/lamin_api_client/model/AbstractOpenApiSchema.java b/src/main/java/ai/lamin/lamin_api_client/model/AbstractOpenApiSchema.java index 6ac449e..b5b233b 100644 --- a/src/main/java/ai/lamin/lamin_api_client/model/AbstractOpenApiSchema.java +++ b/src/main/java/ai/lamin/lamin_api_client/model/AbstractOpenApiSchema.java @@ -21,7 +21,7 @@ /** * Abstract class for oneOf,anyOf schemas defined in OpenAPI spec */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-19T09:11:02.411898486+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public abstract class AbstractOpenApiSchema { // store the actual instance of the schema/object diff --git a/src/main/java/ai/lamin/lamin_api_client/model/AddCollaboratorRequestBody.java b/src/main/java/ai/lamin/lamin_api_client/model/AddCollaboratorRequestBody.java index eafa370..b4c6d8a 100644 --- a/src/main/java/ai/lamin/lamin_api_client/model/AddCollaboratorRequestBody.java +++ b/src/main/java/ai/lamin/lamin_api_client/model/AddCollaboratorRequestBody.java @@ -50,7 +50,7 @@ /** * AddCollaboratorRequestBody */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-19T09:11:02.411898486+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class AddCollaboratorRequestBody { public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id"; @SerializedName(SERIALIZED_NAME_ACCOUNT_ID) diff --git a/src/main/java/ai/lamin/lamin_api_client/model/AddOrganizationMemberRequestBody.java b/src/main/java/ai/lamin/lamin_api_client/model/AddOrganizationMemberRequestBody.java index 2447e53..6a95f43 100644 --- a/src/main/java/ai/lamin/lamin_api_client/model/AddOrganizationMemberRequestBody.java +++ b/src/main/java/ai/lamin/lamin_api_client/model/AddOrganizationMemberRequestBody.java @@ -48,7 +48,7 @@ /** * AddOrganizationMemberRequestBody */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-19T09:11:02.411898486+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class AddOrganizationMemberRequestBody { /** * Gets or Sets role diff --git a/src/main/java/ai/lamin/lamin_api_client/model/AddSpaceCollaboratorRequestBody.java b/src/main/java/ai/lamin/lamin_api_client/model/AddSpaceCollaboratorRequestBody.java index b79f732..6dd7684 100644 --- a/src/main/java/ai/lamin/lamin_api_client/model/AddSpaceCollaboratorRequestBody.java +++ b/src/main/java/ai/lamin/lamin_api_client/model/AddSpaceCollaboratorRequestBody.java @@ -50,7 +50,7 @@ /** * AddSpaceCollaboratorRequestBody */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-19T09:11:02.411898486+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class AddSpaceCollaboratorRequestBody { public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id"; @SerializedName(SERIALIZED_NAME_ACCOUNT_ID) diff --git a/src/main/java/ai/lamin/lamin_api_client/model/AddTeamMemberRequestBody.java b/src/main/java/ai/lamin/lamin_api_client/model/AddTeamMemberRequestBody.java index 05ab0ad..efee320 100644 --- a/src/main/java/ai/lamin/lamin_api_client/model/AddTeamMemberRequestBody.java +++ b/src/main/java/ai/lamin/lamin_api_client/model/AddTeamMemberRequestBody.java @@ -49,7 +49,7 @@ /** * AddTeamMemberRequestBody */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-19T09:11:02.411898486+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class AddTeamMemberRequestBody { public static final String SERIALIZED_NAME_ROLE = "role"; @SerializedName(SERIALIZED_NAME_ROLE) diff --git a/src/main/java/ai/lamin/lamin_api_client/model/AttachSpaceToRecordRequestBody.java b/src/main/java/ai/lamin/lamin_api_client/model/AttachSpaceToRecordRequestBody.java index e2b956d..9adbf0d 100644 --- a/src/main/java/ai/lamin/lamin_api_client/model/AttachSpaceToRecordRequestBody.java +++ b/src/main/java/ai/lamin/lamin_api_client/model/AttachSpaceToRecordRequestBody.java @@ -48,7 +48,7 @@ /** * AttachSpaceToRecordRequestBody */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-19T09:11:02.411898486+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class AttachSpaceToRecordRequestBody { public static final String SERIALIZED_NAME_MODULE_NAME = "module_name"; @SerializedName(SERIALIZED_NAME_MODULE_NAME) diff --git a/src/main/java/ai/lamin/lamin_api_client/model/BatchDeleteBody.java b/src/main/java/ai/lamin/lamin_api_client/model/BatchDeleteBody.java index 4ab4cc9..6a3024a 100644 --- a/src/main/java/ai/lamin/lamin_api_client/model/BatchDeleteBody.java +++ b/src/main/java/ai/lamin/lamin_api_client/model/BatchDeleteBody.java @@ -51,7 +51,7 @@ /** * BatchDeleteBody */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-19T09:11:02.411898486+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class BatchDeleteBody { public static final String SERIALIZED_NAME_RECORDS = "records"; @SerializedName(SERIALIZED_NAME_RECORDS) diff --git a/src/main/java/ai/lamin/lamin_api_client/model/BatchDeleteResponse.java b/src/main/java/ai/lamin/lamin_api_client/model/BatchDeleteResponse.java index a3d27ba..45e443d 100644 --- a/src/main/java/ai/lamin/lamin_api_client/model/BatchDeleteResponse.java +++ b/src/main/java/ai/lamin/lamin_api_client/model/BatchDeleteResponse.java @@ -48,7 +48,7 @@ /** * BatchDeleteResponse */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-19T09:11:02.411898486+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class BatchDeleteResponse { public static final String SERIALIZED_NAME_DELETED_COUNT = "deleted_count"; @SerializedName(SERIALIZED_NAME_DELETED_COUNT) diff --git a/src/main/java/ai/lamin/lamin_api_client/model/BatchSyncLinksBody.java b/src/main/java/ai/lamin/lamin_api_client/model/BatchSyncLinksBody.java index 36388f4..8a030b1 100644 --- a/src/main/java/ai/lamin/lamin_api_client/model/BatchSyncLinksBody.java +++ b/src/main/java/ai/lamin/lamin_api_client/model/BatchSyncLinksBody.java @@ -51,7 +51,7 @@ /** * The request body for the batch synchronization endpoint. */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-19T09:11:02.411898486+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class BatchSyncLinksBody { public static final String SERIALIZED_NAME_INSTRUCTIONS = "instructions"; @SerializedName(SERIALIZED_NAME_INSTRUCTIONS) diff --git a/src/main/java/ai/lamin/lamin_api_client/model/BatchSyncResponse.java b/src/main/java/ai/lamin/lamin_api_client/model/BatchSyncResponse.java index 450c1e7..993674a 100644 --- a/src/main/java/ai/lamin/lamin_api_client/model/BatchSyncResponse.java +++ b/src/main/java/ai/lamin/lamin_api_client/model/BatchSyncResponse.java @@ -51,7 +51,7 @@ /** * The detailed response model for a batch synchronization operation, including the lists of records that were processed. */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-19T09:11:02.411898486+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class BatchSyncResponse { public static final String SERIALIZED_NAME_STATUS = "status"; @SerializedName(SERIALIZED_NAME_STATUS) diff --git a/src/main/java/ai/lamin/lamin_api_client/model/BatchUpdateBody.java b/src/main/java/ai/lamin/lamin_api_client/model/BatchUpdateBody.java index 926344d..887e0fe 100644 --- a/src/main/java/ai/lamin/lamin_api_client/model/BatchUpdateBody.java +++ b/src/main/java/ai/lamin/lamin_api_client/model/BatchUpdateBody.java @@ -51,7 +51,7 @@ /** * BatchUpdateBody */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-19T09:11:02.411898486+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class BatchUpdateBody { public static final String SERIALIZED_NAME_RECORDS = "records"; @SerializedName(SERIALIZED_NAME_RECORDS) diff --git a/src/main/java/ai/lamin/lamin_api_client/model/Body.java b/src/main/java/ai/lamin/lamin_api_client/model/Body.java index 3d6a916..c2efdcf 100644 --- a/src/main/java/ai/lamin/lamin_api_client/model/Body.java +++ b/src/main/java/ai/lamin/lamin_api_client/model/Body.java @@ -52,7 +52,7 @@ import ai.lamin.lamin_api_client.JSON; -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-19T09:11:02.411898486+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class Body extends AbstractOpenApiSchema { private static final Logger log = Logger.getLogger(Body.class.getName()); diff --git a/src/main/java/ai/lamin/lamin_api_client/model/CreateArtifactRequestBody.java b/src/main/java/ai/lamin/lamin_api_client/model/CreateArtifactRequestBody.java index 579b765..5db1b10 100644 --- a/src/main/java/ai/lamin/lamin_api_client/model/CreateArtifactRequestBody.java +++ b/src/main/java/ai/lamin/lamin_api_client/model/CreateArtifactRequestBody.java @@ -50,7 +50,7 @@ /** * CreateArtifactRequestBody */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-19T09:11:02.411898486+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class CreateArtifactRequestBody { public static final String SERIALIZED_NAME_PATH = "path"; @SerializedName(SERIALIZED_NAME_PATH) diff --git a/src/main/java/ai/lamin/lamin_api_client/model/CreateSpaceRequestBody.java b/src/main/java/ai/lamin/lamin_api_client/model/CreateSpaceRequestBody.java index 15c26ed..a33ab7b 100644 --- a/src/main/java/ai/lamin/lamin_api_client/model/CreateSpaceRequestBody.java +++ b/src/main/java/ai/lamin/lamin_api_client/model/CreateSpaceRequestBody.java @@ -50,7 +50,7 @@ /** * CreateSpaceRequestBody */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-19T09:11:02.411898486+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class CreateSpaceRequestBody { public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) diff --git a/src/main/java/ai/lamin/lamin_api_client/model/CreateTeamRequestBody.java b/src/main/java/ai/lamin/lamin_api_client/model/CreateTeamRequestBody.java index e3d9015..d83c427 100644 --- a/src/main/java/ai/lamin/lamin_api_client/model/CreateTeamRequestBody.java +++ b/src/main/java/ai/lamin/lamin_api_client/model/CreateTeamRequestBody.java @@ -50,7 +50,7 @@ /** * CreateTeamRequestBody */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-19T09:11:02.411898486+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class CreateTeamRequestBody { public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) diff --git a/src/main/java/ai/lamin/lamin_api_client/model/CreateTransformRequestBody.java b/src/main/java/ai/lamin/lamin_api_client/model/CreateTransformRequestBody.java index 5fb64f0..caff464 100644 --- a/src/main/java/ai/lamin/lamin_api_client/model/CreateTransformRequestBody.java +++ b/src/main/java/ai/lamin/lamin_api_client/model/CreateTransformRequestBody.java @@ -51,7 +51,7 @@ /** * CreateTransformRequestBody */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-19T09:11:02.411898486+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class CreateTransformRequestBody { public static final String SERIALIZED_NAME_KEY = "key"; @SerializedName(SERIALIZED_NAME_KEY) diff --git a/src/main/java/ai/lamin/lamin_api_client/model/Dimension.java b/src/main/java/ai/lamin/lamin_api_client/model/Dimension.java index 37fd8b9..ee951f5 100644 --- a/src/main/java/ai/lamin/lamin_api_client/model/Dimension.java +++ b/src/main/java/ai/lamin/lamin_api_client/model/Dimension.java @@ -49,7 +49,7 @@ /** * Dimension */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-19T09:11:02.411898486+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class Dimension { public static final String SERIALIZED_NAME_FIELD_NAME = "field_name"; @SerializedName(SERIALIZED_NAME_FIELD_NAME) diff --git a/src/main/java/ai/lamin/lamin_api_client/model/ErrorDetail.java b/src/main/java/ai/lamin/lamin_api_client/model/ErrorDetail.java index afa2b7f..9bd5053 100644 --- a/src/main/java/ai/lamin/lamin_api_client/model/ErrorDetail.java +++ b/src/main/java/ai/lamin/lamin_api_client/model/ErrorDetail.java @@ -48,7 +48,7 @@ /** * ErrorDetail */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-19T09:11:02.411898486+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class ErrorDetail { public static final String SERIALIZED_NAME_DETAIL = "detail"; @SerializedName(SERIALIZED_NAME_DETAIL) diff --git a/src/main/java/ai/lamin/lamin_api_client/model/ExecuteFunctionRequestBody.java b/src/main/java/ai/lamin/lamin_api_client/model/ExecuteFunctionRequestBody.java index 64abb94..8191abb 100644 --- a/src/main/java/ai/lamin/lamin_api_client/model/ExecuteFunctionRequestBody.java +++ b/src/main/java/ai/lamin/lamin_api_client/model/ExecuteFunctionRequestBody.java @@ -50,7 +50,7 @@ /** * ExecuteFunctionRequestBody */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-19T09:11:02.411898486+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class ExecuteFunctionRequestBody { public static final String SERIALIZED_NAME_TRANSFORM_UID = "transform_uid"; @SerializedName(SERIALIZED_NAME_TRANSFORM_UID) diff --git a/src/main/java/ai/lamin/lamin_api_client/model/ExportRecordsRequestBody.java b/src/main/java/ai/lamin/lamin_api_client/model/ExportRecordsRequestBody.java index ec03666..e9996af 100644 --- a/src/main/java/ai/lamin/lamin_api_client/model/ExportRecordsRequestBody.java +++ b/src/main/java/ai/lamin/lamin_api_client/model/ExportRecordsRequestBody.java @@ -50,7 +50,7 @@ /** * ExportRecordsRequestBody */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-19T09:11:02.411898486+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class ExportRecordsRequestBody { public static final String SERIALIZED_NAME_KWARGS = "kwargs"; @SerializedName(SERIALIZED_NAME_KWARGS) diff --git a/src/main/java/ai/lamin/lamin_api_client/model/GetRecordRequestBody.java b/src/main/java/ai/lamin/lamin_api_client/model/GetRecordRequestBody.java index 3e87c5b..dd44fc9 100644 --- a/src/main/java/ai/lamin/lamin_api_client/model/GetRecordRequestBody.java +++ b/src/main/java/ai/lamin/lamin_api_client/model/GetRecordRequestBody.java @@ -51,7 +51,7 @@ /** * GetRecordRequestBody */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-19T09:11:02.411898486+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class GetRecordRequestBody { public static final String SERIALIZED_NAME_SELECT = "select"; @SerializedName(SERIALIZED_NAME_SELECT) diff --git a/src/main/java/ai/lamin/lamin_api_client/model/GetRecordsRequestBody.java b/src/main/java/ai/lamin/lamin_api_client/model/GetRecordsRequestBody.java index fa12f38..9cf6e3c 100644 --- a/src/main/java/ai/lamin/lamin_api_client/model/GetRecordsRequestBody.java +++ b/src/main/java/ai/lamin/lamin_api_client/model/GetRecordsRequestBody.java @@ -54,7 +54,7 @@ /** * GetRecordsRequestBody */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-19T09:11:02.411898486+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class GetRecordsRequestBody { public static final String SERIALIZED_NAME_SELECT = "select"; @SerializedName(SERIALIZED_NAME_SELECT) diff --git a/src/main/java/ai/lamin/lamin_api_client/model/GetValuesRequestBody.java b/src/main/java/ai/lamin/lamin_api_client/model/GetValuesRequestBody.java index 9ed8e9d..2ef698a 100644 --- a/src/main/java/ai/lamin/lamin_api_client/model/GetValuesRequestBody.java +++ b/src/main/java/ai/lamin/lamin_api_client/model/GetValuesRequestBody.java @@ -54,7 +54,7 @@ /** * GetValuesRequestBody */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-19T09:11:02.411898486+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class GetValuesRequestBody { public static final String SERIALIZED_NAME_FILTER = "filter"; @SerializedName(SERIALIZED_NAME_FILTER) diff --git a/src/main/java/ai/lamin/lamin_api_client/model/GroupByRequestBody.java b/src/main/java/ai/lamin/lamin_api_client/model/GroupByRequestBody.java index a2b151f..1b965a4 100644 --- a/src/main/java/ai/lamin/lamin_api_client/model/GroupByRequestBody.java +++ b/src/main/java/ai/lamin/lamin_api_client/model/GroupByRequestBody.java @@ -55,7 +55,7 @@ /** * GroupByRequestBody */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-19T09:11:02.411898486+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class GroupByRequestBody { public static final String SERIALIZED_NAME_DIMENSIONS = "dimensions"; @SerializedName(SERIALIZED_NAME_DIMENSIONS) diff --git a/src/main/java/ai/lamin/lamin_api_client/model/HTTPValidationError.java b/src/main/java/ai/lamin/lamin_api_client/model/HTTPValidationError.java index 4324691..c424906 100644 --- a/src/main/java/ai/lamin/lamin_api_client/model/HTTPValidationError.java +++ b/src/main/java/ai/lamin/lamin_api_client/model/HTTPValidationError.java @@ -51,7 +51,7 @@ /** * HTTPValidationError */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-19T09:11:02.411898486+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class HTTPValidationError { public static final String SERIALIZED_NAME_DETAIL = "detail"; @SerializedName(SERIALIZED_NAME_DETAIL) diff --git a/src/main/java/ai/lamin/lamin_api_client/model/Measure.java b/src/main/java/ai/lamin/lamin_api_client/model/Measure.java index c38f3b2..365aef5 100644 --- a/src/main/java/ai/lamin/lamin_api_client/model/Measure.java +++ b/src/main/java/ai/lamin/lamin_api_client/model/Measure.java @@ -49,7 +49,7 @@ /** * Measure */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-19T09:11:02.411898486+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class Measure { public static final String SERIALIZED_NAME_FIELD_NAME = "field_name"; @SerializedName(SERIALIZED_NAME_FIELD_NAME) diff --git a/src/main/java/ai/lamin/lamin_api_client/model/NonEmptyTablesResponse.java b/src/main/java/ai/lamin/lamin_api_client/model/NonEmptyTablesResponse.java index 695aac7..36c61cb 100644 --- a/src/main/java/ai/lamin/lamin_api_client/model/NonEmptyTablesResponse.java +++ b/src/main/java/ai/lamin/lamin_api_client/model/NonEmptyTablesResponse.java @@ -51,7 +51,7 @@ /** * NonEmptyTablesResponse */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-19T09:11:02.411898486+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class NonEmptyTablesResponse { public static final String SERIALIZED_NAME_NON_EMPTY_TABLES = "non_empty_tables"; @SerializedName(SERIALIZED_NAME_NON_EMPTY_TABLES) diff --git a/src/main/java/ai/lamin/lamin_api_client/model/OrderByColumn.java b/src/main/java/ai/lamin/lamin_api_client/model/OrderByColumn.java index f84a194..5216cac 100644 --- a/src/main/java/ai/lamin/lamin_api_client/model/OrderByColumn.java +++ b/src/main/java/ai/lamin/lamin_api_client/model/OrderByColumn.java @@ -48,7 +48,7 @@ /** * OrderByColumn */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-19T09:11:02.411898486+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class OrderByColumn { public static final String SERIALIZED_NAME_FIELD = "field"; @SerializedName(SERIALIZED_NAME_FIELD) diff --git a/src/main/java/ai/lamin/lamin_api_client/model/RegisterDbServerBody.java b/src/main/java/ai/lamin/lamin_api_client/model/RegisterDbServerBody.java index b017a0a..13f043e 100644 --- a/src/main/java/ai/lamin/lamin_api_client/model/RegisterDbServerBody.java +++ b/src/main/java/ai/lamin/lamin_api_client/model/RegisterDbServerBody.java @@ -49,7 +49,7 @@ /** * RegisterDbServerBody */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-19T09:11:02.411898486+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class RegisterDbServerBody { public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) diff --git a/src/main/java/ai/lamin/lamin_api_client/model/RegisterFormRequest.java b/src/main/java/ai/lamin/lamin_api_client/model/RegisterFormRequest.java index 89ff25a..a41ab62 100644 --- a/src/main/java/ai/lamin/lamin_api_client/model/RegisterFormRequest.java +++ b/src/main/java/ai/lamin/lamin_api_client/model/RegisterFormRequest.java @@ -50,7 +50,7 @@ /** * RegisterFormRequest */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-19T09:11:02.411898486+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class RegisterFormRequest { public static final String SERIALIZED_NAME_KEY = "key"; @SerializedName(SERIALIZED_NAME_KEY) diff --git a/src/main/java/ai/lamin/lamin_api_client/model/Request.java b/src/main/java/ai/lamin/lamin_api_client/model/Request.java index b3457c5..064ff3c 100644 --- a/src/main/java/ai/lamin/lamin_api_client/model/Request.java +++ b/src/main/java/ai/lamin/lamin_api_client/model/Request.java @@ -55,7 +55,7 @@ /** * Request */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-19T09:11:02.411898486+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class Request { public static final String SERIALIZED_NAME_RELATIVES = "relatives"; @SerializedName(SERIALIZED_NAME_RELATIVES) diff --git a/src/main/java/ai/lamin/lamin_api_client/model/Role.java b/src/main/java/ai/lamin/lamin_api_client/model/Role.java index 5c414f7..175a644 100644 --- a/src/main/java/ai/lamin/lamin_api_client/model/Role.java +++ b/src/main/java/ai/lamin/lamin_api_client/model/Role.java @@ -50,7 +50,7 @@ import ai.lamin.lamin_api_client.JSON; -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-19T09:11:02.411898486+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class Role extends AbstractOpenApiSchema { private static final Logger log = Logger.getLogger(Role.class.getName()); diff --git a/src/main/java/ai/lamin/lamin_api_client/model/Role1.java b/src/main/java/ai/lamin/lamin_api_client/model/Role1.java index 494b630..58b008b 100644 --- a/src/main/java/ai/lamin/lamin_api_client/model/Role1.java +++ b/src/main/java/ai/lamin/lamin_api_client/model/Role1.java @@ -50,7 +50,7 @@ import ai.lamin.lamin_api_client.JSON; -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-19T09:11:02.411898486+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class Role1 extends AbstractOpenApiSchema { private static final Logger log = Logger.getLogger(Role1.class.getName()); diff --git a/src/main/java/ai/lamin/lamin_api_client/model/S3PermissionsRequest.java b/src/main/java/ai/lamin/lamin_api_client/model/S3PermissionsRequest.java index 463f339..926cc71 100644 --- a/src/main/java/ai/lamin/lamin_api_client/model/S3PermissionsRequest.java +++ b/src/main/java/ai/lamin/lamin_api_client/model/S3PermissionsRequest.java @@ -51,7 +51,7 @@ /** * S3PermissionsRequest */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-19T09:11:02.411898486+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class S3PermissionsRequest { public static final String SERIALIZED_NAME_AWS_ACCESS_KEY_ID = "aws_access_key_id"; @SerializedName(SERIALIZED_NAME_AWS_ACCESS_KEY_ID) diff --git a/src/main/java/ai/lamin/lamin_api_client/model/StatisticsResponse.java b/src/main/java/ai/lamin/lamin_api_client/model/StatisticsResponse.java index 2024576..9d0e6f1 100644 --- a/src/main/java/ai/lamin/lamin_api_client/model/StatisticsResponse.java +++ b/src/main/java/ai/lamin/lamin_api_client/model/StatisticsResponse.java @@ -50,7 +50,7 @@ /** * Defines the response for the instance statistics endpoint. */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-19T09:11:02.411898486+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class StatisticsResponse { public static final String SERIALIZED_NAME_INSTANCE_SIZE = "instance_size"; @SerializedName(SERIALIZED_NAME_INSTANCE_SIZE) diff --git a/src/main/java/ai/lamin/lamin_api_client/model/SyncInstruction.java b/src/main/java/ai/lamin/lamin_api_client/model/SyncInstruction.java index 7975264..eac3bb1 100644 --- a/src/main/java/ai/lamin/lamin_api_client/model/SyncInstruction.java +++ b/src/main/java/ai/lamin/lamin_api_client/model/SyncInstruction.java @@ -52,7 +52,7 @@ /** * Defines a single synchronization instruction, containing the scope and the desired state for that scope. */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-19T09:11:02.411898486+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class SyncInstruction { public static final String SERIALIZED_NAME_SCOPE = "scope"; @SerializedName(SERIALIZED_NAME_SCOPE) diff --git a/src/main/java/ai/lamin/lamin_api_client/model/TraversalParams.java b/src/main/java/ai/lamin/lamin_api_client/model/TraversalParams.java index 082e567..75ff001 100644 --- a/src/main/java/ai/lamin/lamin_api_client/model/TraversalParams.java +++ b/src/main/java/ai/lamin/lamin_api_client/model/TraversalParams.java @@ -52,7 +52,7 @@ /** * Parameters that define the hierarchical traversal. */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-19T09:11:02.411898486+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class TraversalParams { public static final String SERIALIZED_NAME_VALUES = "values"; @SerializedName(SERIALIZED_NAME_VALUES) diff --git a/src/main/java/ai/lamin/lamin_api_client/model/TraversalParamsValuesInner.java b/src/main/java/ai/lamin/lamin_api_client/model/TraversalParamsValuesInner.java index 558aa87..39a795f 100644 --- a/src/main/java/ai/lamin/lamin_api_client/model/TraversalParamsValuesInner.java +++ b/src/main/java/ai/lamin/lamin_api_client/model/TraversalParamsValuesInner.java @@ -50,7 +50,7 @@ import ai.lamin.lamin_api_client.JSON; -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-19T09:11:02.411898486+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class TraversalParamsValuesInner extends AbstractOpenApiSchema { private static final Logger log = Logger.getLogger(TraversalParamsValuesInner.class.getName()); diff --git a/src/main/java/ai/lamin/lamin_api_client/model/UpdateCollaboratorRequestBody.java b/src/main/java/ai/lamin/lamin_api_client/model/UpdateCollaboratorRequestBody.java index b806e2e..2ace109 100644 --- a/src/main/java/ai/lamin/lamin_api_client/model/UpdateCollaboratorRequestBody.java +++ b/src/main/java/ai/lamin/lamin_api_client/model/UpdateCollaboratorRequestBody.java @@ -50,7 +50,7 @@ /** * UpdateCollaboratorRequestBody */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-19T09:11:02.411898486+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class UpdateCollaboratorRequestBody { /** * Gets or Sets role diff --git a/src/main/java/ai/lamin/lamin_api_client/model/UpdateOrganizationMemberRequestBody.java b/src/main/java/ai/lamin/lamin_api_client/model/UpdateOrganizationMemberRequestBody.java index 323e262..2c89557 100644 --- a/src/main/java/ai/lamin/lamin_api_client/model/UpdateOrganizationMemberRequestBody.java +++ b/src/main/java/ai/lamin/lamin_api_client/model/UpdateOrganizationMemberRequestBody.java @@ -48,7 +48,7 @@ /** * UpdateOrganizationMemberRequestBody */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-19T09:11:02.411898486+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class UpdateOrganizationMemberRequestBody { /** * Gets or Sets role diff --git a/src/main/java/ai/lamin/lamin_api_client/model/UpdateSpaceCollaboratorRequestBody.java b/src/main/java/ai/lamin/lamin_api_client/model/UpdateSpaceCollaboratorRequestBody.java index 85bd863..4bbb53b 100644 --- a/src/main/java/ai/lamin/lamin_api_client/model/UpdateSpaceCollaboratorRequestBody.java +++ b/src/main/java/ai/lamin/lamin_api_client/model/UpdateSpaceCollaboratorRequestBody.java @@ -50,7 +50,7 @@ /** * UpdateSpaceCollaboratorRequestBody */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-19T09:11:02.411898486+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class UpdateSpaceCollaboratorRequestBody { public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id"; @SerializedName(SERIALIZED_NAME_ACCOUNT_ID) diff --git a/src/main/java/ai/lamin/lamin_api_client/model/UpdateSpaceRequestBody.java b/src/main/java/ai/lamin/lamin_api_client/model/UpdateSpaceRequestBody.java index 535b3ca..d66e4b7 100644 --- a/src/main/java/ai/lamin/lamin_api_client/model/UpdateSpaceRequestBody.java +++ b/src/main/java/ai/lamin/lamin_api_client/model/UpdateSpaceRequestBody.java @@ -49,7 +49,7 @@ /** * UpdateSpaceRequestBody */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-19T09:11:02.411898486+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class UpdateSpaceRequestBody { public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) diff --git a/src/main/java/ai/lamin/lamin_api_client/model/UpdateTeamMemberRequestBody.java b/src/main/java/ai/lamin/lamin_api_client/model/UpdateTeamMemberRequestBody.java index 049dd30..9222377 100644 --- a/src/main/java/ai/lamin/lamin_api_client/model/UpdateTeamMemberRequestBody.java +++ b/src/main/java/ai/lamin/lamin_api_client/model/UpdateTeamMemberRequestBody.java @@ -49,7 +49,7 @@ /** * UpdateTeamMemberRequestBody */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-19T09:11:02.411898486+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class UpdateTeamMemberRequestBody { public static final String SERIALIZED_NAME_ROLE = "role"; @SerializedName(SERIALIZED_NAME_ROLE) diff --git a/src/main/java/ai/lamin/lamin_api_client/model/UpdateTeamRequestBody.java b/src/main/java/ai/lamin/lamin_api_client/model/UpdateTeamRequestBody.java index c12df8a..a211cba 100644 --- a/src/main/java/ai/lamin/lamin_api_client/model/UpdateTeamRequestBody.java +++ b/src/main/java/ai/lamin/lamin_api_client/model/UpdateTeamRequestBody.java @@ -49,7 +49,7 @@ /** * UpdateTeamRequestBody */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-19T09:11:02.411898486+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class UpdateTeamRequestBody { public static final String SERIALIZED_NAME_NAME = "name"; @SerializedName(SERIALIZED_NAME_NAME) diff --git a/src/main/java/ai/lamin/lamin_api_client/model/ValidationError.java b/src/main/java/ai/lamin/lamin_api_client/model/ValidationError.java index 79cefe5..421fddd 100644 --- a/src/main/java/ai/lamin/lamin_api_client/model/ValidationError.java +++ b/src/main/java/ai/lamin/lamin_api_client/model/ValidationError.java @@ -51,7 +51,7 @@ /** * ValidationError */ -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-19T09:11:02.411898486+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class ValidationError { public static final String SERIALIZED_NAME_LOC = "loc"; @SerializedName(SERIALIZED_NAME_LOC) diff --git a/src/main/java/ai/lamin/lamin_api_client/model/ValidationErrorLocInner.java b/src/main/java/ai/lamin/lamin_api_client/model/ValidationErrorLocInner.java index a793858..32d7f09 100644 --- a/src/main/java/ai/lamin/lamin_api_client/model/ValidationErrorLocInner.java +++ b/src/main/java/ai/lamin/lamin_api_client/model/ValidationErrorLocInner.java @@ -50,7 +50,7 @@ import ai.lamin.lamin_api_client.JSON; -@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-15T12:58:35.937124602+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-19T09:11:02.411898486+01:00[Europe/Brussels]", comments = "Generator version: 7.12.0") public class ValidationErrorLocInner extends AbstractOpenApiSchema { private static final Logger log = Logger.getLogger(ValidationErrorLocInner.class.getName());