From 483896cee4e06a6c49fbae4662d4d5afb0241657 Mon Sep 17 00:00:00 2001 From: akeyless Date: Tue, 26 Dec 2023 08:03:29 +0000 Subject: [PATCH] Release v3.5.4 --- .openapi-generator/FILES | 36 + README.md | 18 + api/openapi.yaml | 660 +- build.gradle | 2 +- build.sbt | 2 +- docs/AllowedAccess.md | 1 + docs/CreateESM.md | 2 +- docs/CreateEventForwarder.md | 2 +- docs/CreateUSC.md | 23 + docs/CreateUSCOutput.md | 14 + docs/DSProducerDetails.md | 1 + docs/GatewayCreateAllowedAccess.md | 2 + docs/GatewayCreateProducerOracleDb.md | 1 + docs/GatewayUpdateAllowedAccess.md | 2 + docs/GatewayUpdateProducerOracleDb.md | 1 + docs/ListItems.md | 3 +- docs/UscCreate.md | 22 + docs/UscCreateSecretOutput.md | 14 + docs/UscDelete.md | 18 + docs/UscDeleteSecretOutput.md | 13 + docs/UscGet.md | 18 + docs/UscGetSecretOutput.md | 16 + docs/UscList.md | 17 + docs/UscListSecretsOutput.md | 13 + docs/UscUpdate.md | 22 + docs/UscUpdateSecretOutput.md | 15 + docs/V2Api.md | 368 + pom.xml | 2 +- .../java/io/akeyless/client/ApiClient.java | 2 +- .../java/io/akeyless/client/api/V2Api.java | 10716 +++++++++------- .../akeyless/client/model/AllowedAccess.java | 31 +- .../io/akeyless/client/model/CreateESM.java | 4 +- .../client/model/CreateEventForwarder.java | 4 +- .../io/akeyless/client/model/CreateUSC.java | 372 + .../client/model/CreateUSCOutput.java | 129 + .../client/model/DSProducerDetails.java | 31 +- .../model/GatewayCreateAllowedAccess.java | 62 +- .../model/GatewayCreateProducerOracleDb.java | 31 +- .../model/GatewayUpdateAllowedAccess.java | 62 +- .../model/GatewayUpdateProducerOracleDb.java | 31 +- .../io/akeyless/client/model/ListItems.java | 35 +- .../io/akeyless/client/model/UscCreate.java | 344 + .../client/model/UscCreateSecretOutput.java | 129 + .../io/akeyless/client/model/UscDelete.java | 217 + .../client/model/UscDeleteSecretOutput.java | 100 + .../java/io/akeyless/client/model/UscGet.java | 217 + .../client/model/UscGetSecretOutput.java | 187 + .../io/akeyless/client/model/UscList.java | 188 + .../client/model/UscListSecretsOutput.java | 111 + .../io/akeyless/client/model/UscUpdate.java | 344 + .../client/model/UscUpdateSecretOutput.java | 158 + .../client/model/CreateUSCOutputTest.java | 59 + .../akeyless/client/model/CreateUSCTest.java | 125 + .../model/UscCreateSecretOutputTest.java | 59 + .../akeyless/client/model/UscCreateTest.java | 118 + .../model/UscDeleteSecretOutputTest.java | 51 + .../akeyless/client/model/UscDeleteTest.java | 83 + .../client/model/UscGetSecretOutputTest.java | 75 + .../io/akeyless/client/model/UscGetTest.java | 83 + .../model/UscListSecretsOutputTest.java | 54 + .../io/akeyless/client/model/UscListTest.java | 75 + .../model/UscUpdateSecretOutputTest.java | 67 + .../akeyless/client/model/UscUpdateTest.java | 118 + 63 files changed, 10792 insertions(+), 4988 deletions(-) create mode 100644 docs/CreateUSC.md create mode 100644 docs/CreateUSCOutput.md create mode 100644 docs/UscCreate.md create mode 100644 docs/UscCreateSecretOutput.md create mode 100644 docs/UscDelete.md create mode 100644 docs/UscDeleteSecretOutput.md create mode 100644 docs/UscGet.md create mode 100644 docs/UscGetSecretOutput.md create mode 100644 docs/UscList.md create mode 100644 docs/UscListSecretsOutput.md create mode 100644 docs/UscUpdate.md create mode 100644 docs/UscUpdateSecretOutput.md create mode 100644 src/main/java/io/akeyless/client/model/CreateUSC.java create mode 100644 src/main/java/io/akeyless/client/model/CreateUSCOutput.java create mode 100644 src/main/java/io/akeyless/client/model/UscCreate.java create mode 100644 src/main/java/io/akeyless/client/model/UscCreateSecretOutput.java create mode 100644 src/main/java/io/akeyless/client/model/UscDelete.java create mode 100644 src/main/java/io/akeyless/client/model/UscDeleteSecretOutput.java create mode 100644 src/main/java/io/akeyless/client/model/UscGet.java create mode 100644 src/main/java/io/akeyless/client/model/UscGetSecretOutput.java create mode 100644 src/main/java/io/akeyless/client/model/UscList.java create mode 100644 src/main/java/io/akeyless/client/model/UscListSecretsOutput.java create mode 100644 src/main/java/io/akeyless/client/model/UscUpdate.java create mode 100644 src/main/java/io/akeyless/client/model/UscUpdateSecretOutput.java create mode 100644 src/test/java/io/akeyless/client/model/CreateUSCOutputTest.java create mode 100644 src/test/java/io/akeyless/client/model/CreateUSCTest.java create mode 100644 src/test/java/io/akeyless/client/model/UscCreateSecretOutputTest.java create mode 100644 src/test/java/io/akeyless/client/model/UscCreateTest.java create mode 100644 src/test/java/io/akeyless/client/model/UscDeleteSecretOutputTest.java create mode 100644 src/test/java/io/akeyless/client/model/UscDeleteTest.java create mode 100644 src/test/java/io/akeyless/client/model/UscGetSecretOutputTest.java create mode 100644 src/test/java/io/akeyless/client/model/UscGetTest.java create mode 100644 src/test/java/io/akeyless/client/model/UscListSecretsOutputTest.java create mode 100644 src/test/java/io/akeyless/client/model/UscListTest.java create mode 100644 src/test/java/io/akeyless/client/model/UscUpdateSecretOutputTest.java create mode 100644 src/test/java/io/akeyless/client/model/UscUpdateTest.java diff --git a/.openapi-generator/FILES b/.openapi-generator/FILES index 83a9730a..79643df1 100644 --- a/.openapi-generator/FILES +++ b/.openapi-generator/FILES @@ -148,6 +148,8 @@ docs/CreateSecretOutput.md docs/CreateTargetItemAssocOutput.md docs/CreateTokenizer.md docs/CreateTokenizerOutput.md +docs/CreateUSC.md +docs/CreateUSCOutput.md docs/CreateUserEvent.md docs/CreateUserEventOutput.md docs/CreateWebTarget.md @@ -712,6 +714,16 @@ docs/UpdateZeroSSLTargetOutput.md docs/UploadPKCS12.md docs/UploadRSA.md docs/UsageEventSetting.md +docs/UscCreate.md +docs/UscCreateSecretOutput.md +docs/UscDelete.md +docs/UscDeleteSecretOutput.md +docs/UscGet.md +docs/UscGetSecretOutput.md +docs/UscList.md +docs/UscListSecretsOutput.md +docs/UscUpdate.md +docs/UscUpdateSecretOutput.md docs/V2Api.md docs/ValidateToken.md docs/ValidateTokenOutput.md @@ -902,6 +914,8 @@ src/main/java/io/akeyless/client/model/CreateSecretOutput.java src/main/java/io/akeyless/client/model/CreateTargetItemAssocOutput.java src/main/java/io/akeyless/client/model/CreateTokenizer.java src/main/java/io/akeyless/client/model/CreateTokenizerOutput.java +src/main/java/io/akeyless/client/model/CreateUSC.java +src/main/java/io/akeyless/client/model/CreateUSCOutput.java src/main/java/io/akeyless/client/model/CreateUserEvent.java src/main/java/io/akeyless/client/model/CreateUserEventOutput.java src/main/java/io/akeyless/client/model/CreateWebTarget.java @@ -1466,6 +1480,16 @@ src/main/java/io/akeyless/client/model/UpdateZeroSSLTargetOutput.java src/main/java/io/akeyless/client/model/UploadPKCS12.java src/main/java/io/akeyless/client/model/UploadRSA.java src/main/java/io/akeyless/client/model/UsageEventSetting.java +src/main/java/io/akeyless/client/model/UscCreate.java +src/main/java/io/akeyless/client/model/UscCreateSecretOutput.java +src/main/java/io/akeyless/client/model/UscDelete.java +src/main/java/io/akeyless/client/model/UscDeleteSecretOutput.java +src/main/java/io/akeyless/client/model/UscGet.java +src/main/java/io/akeyless/client/model/UscGetSecretOutput.java +src/main/java/io/akeyless/client/model/UscList.java +src/main/java/io/akeyless/client/model/UscListSecretsOutput.java +src/main/java/io/akeyless/client/model/UscUpdate.java +src/main/java/io/akeyless/client/model/UscUpdateSecretOutput.java src/main/java/io/akeyless/client/model/ValidateToken.java src/main/java/io/akeyless/client/model/ValidateTokenOutput.java src/main/java/io/akeyless/client/model/VaultlessTokenizerInfo.java @@ -1484,3 +1508,15 @@ src/main/java/io/akeyless/client/model/WindowsService.java src/main/java/io/akeyless/client/model/WindowsServiceAttributes.java src/main/java/io/akeyless/client/model/WindowsTargetDetails.java src/main/java/io/akeyless/client/model/ZeroSSLTargetDetails.java +src/test/java/io/akeyless/client/model/CreateUSCOutputTest.java +src/test/java/io/akeyless/client/model/CreateUSCTest.java +src/test/java/io/akeyless/client/model/UscCreateSecretOutputTest.java +src/test/java/io/akeyless/client/model/UscCreateTest.java +src/test/java/io/akeyless/client/model/UscDeleteSecretOutputTest.java +src/test/java/io/akeyless/client/model/UscDeleteTest.java +src/test/java/io/akeyless/client/model/UscGetSecretOutputTest.java +src/test/java/io/akeyless/client/model/UscGetTest.java +src/test/java/io/akeyless/client/model/UscListSecretsOutputTest.java +src/test/java/io/akeyless/client/model/UscListTest.java +src/test/java/io/akeyless/client/model/UscUpdateSecretOutputTest.java +src/test/java/io/akeyless/client/model/UscUpdateTest.java diff --git a/README.md b/README.md index 8f0ec969..cb9a0ed4 100644 --- a/README.md +++ b/README.md @@ -155,6 +155,7 @@ Class | Method | HTTP request | Description *V2Api* | [**createSalesforceTarget**](docs/V2Api.md#createSalesforceTarget) | **POST** /create-salesforce-target | *V2Api* | [**createSecret**](docs/V2Api.md#createSecret) | **POST** /create-secret | *V2Api* | [**createTokenizer**](docs/V2Api.md#createTokenizer) | **POST** /create-tokenizer | +*V2Api* | [**createUSC**](docs/V2Api.md#createUSC) | **POST** /create-usc | *V2Api* | [**createUserEvent**](docs/V2Api.md#createUserEvent) | **POST** /create-user-event | *V2Api* | [**createWebTarget**](docs/V2Api.md#createWebTarget) | **POST** /create-web-target | *V2Api* | [**createWindowsTarget**](docs/V2Api.md#createWindowsTarget) | **POST** /create-windows-target | @@ -401,6 +402,11 @@ Class | Method | HTTP request | Description *V2Api* | [**updateWindowsTarget**](docs/V2Api.md#updateWindowsTarget) | **POST** /update-windows-target | *V2Api* | [**updateZeroSSLTarget**](docs/V2Api.md#updateZeroSSLTarget) | **POST** /update-zerossl-target | *V2Api* | [**uploadRSA**](docs/V2Api.md#uploadRSA) | **POST** /upload-rsa | +*V2Api* | [**uscCreate**](docs/V2Api.md#uscCreate) | **POST** /usc-create | +*V2Api* | [**uscDelete**](docs/V2Api.md#uscDelete) | **POST** /usc-delete | +*V2Api* | [**uscGet**](docs/V2Api.md#uscGet) | **POST** /usc-get | +*V2Api* | [**uscList**](docs/V2Api.md#uscList) | **POST** /usc-list | +*V2Api* | [**uscUpdate**](docs/V2Api.md#uscUpdate) | **POST** /usc-update | *V2Api* | [**validateToken**](docs/V2Api.md#validateToken) | **POST** /validate-token | *V2Api* | [**verifyDataWithClassicKey**](docs/V2Api.md#verifyDataWithClassicKey) | **POST** /verify-data-with-classic-key | *V2Api* | [**verifyEcDsa**](docs/V2Api.md#verifyEcDsa) | **POST** /verify-ecdsa | @@ -557,6 +563,8 @@ Class | Method | HTTP request | Description - [CreateTargetItemAssocOutput](docs/CreateTargetItemAssocOutput.md) - [CreateTokenizer](docs/CreateTokenizer.md) - [CreateTokenizerOutput](docs/CreateTokenizerOutput.md) + - [CreateUSC](docs/CreateUSC.md) + - [CreateUSCOutput](docs/CreateUSCOutput.md) - [CreateUserEvent](docs/CreateUserEvent.md) - [CreateUserEventOutput](docs/CreateUserEventOutput.md) - [CreateWebTarget](docs/CreateWebTarget.md) @@ -1121,6 +1129,16 @@ Class | Method | HTTP request | Description - [UploadPKCS12](docs/UploadPKCS12.md) - [UploadRSA](docs/UploadRSA.md) - [UsageEventSetting](docs/UsageEventSetting.md) + - [UscCreate](docs/UscCreate.md) + - [UscCreateSecretOutput](docs/UscCreateSecretOutput.md) + - [UscDelete](docs/UscDelete.md) + - [UscDeleteSecretOutput](docs/UscDeleteSecretOutput.md) + - [UscGet](docs/UscGet.md) + - [UscGetSecretOutput](docs/UscGetSecretOutput.md) + - [UscList](docs/UscList.md) + - [UscListSecretsOutput](docs/UscListSecretsOutput.md) + - [UscUpdate](docs/UscUpdate.md) + - [UscUpdateSecretOutput](docs/UscUpdateSecretOutput.md) - [ValidateToken](docs/ValidateToken.md) - [ValidateTokenOutput](docs/ValidateTokenOutput.md) - [VaultlessTokenizerInfo](docs/VaultlessTokenizerInfo.md) diff --git a/api/openapi.yaml b/api/openapi.yaml index 3eccdfb7..41787e5c 100644 --- a/api/openapi.yaml +++ b/api/openapi.yaml @@ -1497,6 +1497,35 @@ paths: x-codegen-request-body-name: body x-contentType: application/json x-accepts: application/json + /create-usc: + post: + operationId: CreateUSC + requestBody: + content: + application/json: + schema: + $ref: '#/components/schemas/CreateUSC' + required: true + responses: + "201": + content: + application/json: + schema: + $ref: '#/components/schemas/CreateUSCOutput' + description: CreateUniversalSecretsConnectorResponse wraps response body. + default: + content: + application/json: + schema: + $ref: '#/components/schemas/JSONError' + description: |- + errorResponse wraps any error to return it as a JSON object with one "error" + field. + tags: + - v2 + x-codegen-request-body-name: body + x-contentType: application/json + x-accepts: application/json /create-user-event: post: operationId: createUserEvent @@ -8559,6 +8588,143 @@ paths: x-codegen-request-body-name: body x-contentType: application/json x-accepts: application/json + /usc-create: + post: + operationId: uscCreate + requestBody: + content: + application/json: + schema: + $ref: '#/components/schemas/uscUpdate' + required: true + responses: + "200": + content: + application/json: + schema: + $ref: '#/components/schemas/UscCreateSecretOutput' + description: uscCreateResponse wraps response body. + default: + content: + application/json: + schema: + $ref: '#/components/schemas/JSONError' + description: |- + errorResponse wraps any error to return it as a JSON object with one "error" + field. + tags: + - v2 + x-codegen-request-body-name: body + x-contentType: application/json + x-accepts: application/json + /usc-delete: + post: + operationId: uscDelete + requestBody: + content: + application/json: + schema: + $ref: '#/components/schemas/uscDelete' + required: true + responses: + "202": + content: + application/json: + schema: + $ref: '#/components/schemas/UscDeleteSecretOutput' + description: uscDeleteResponse wraps response body. + default: + content: + application/json: + schema: + $ref: '#/components/schemas/JSONError' + description: |- + errorResponse wraps any error to return it as a JSON object with one "error" + field. + tags: + - v2 + x-codegen-request-body-name: body + x-contentType: application/json + x-accepts: application/json + /usc-get: + post: + operationId: uscGet + requestBody: + content: + application/json: + schema: + $ref: '#/components/schemas/uscGet' + required: true + responses: + "200": + content: + application/json: + schema: + $ref: '#/components/schemas/UscGetSecretOutput' + description: uscGetResponse wraps response body. + default: + content: + application/json: + schema: + $ref: '#/components/schemas/JSONError' + description: |- + errorResponse wraps any error to return it as a JSON object with one "error" + field. + tags: + - v2 + x-codegen-request-body-name: body + x-contentType: application/json + x-accepts: application/json + /usc-list: + post: + operationId: uscList + requestBody: + content: + application/json: + schema: + $ref: '#/components/schemas/uscList' + required: true + responses: + "200": + content: + application/json: + schema: + $ref: '#/components/schemas/UscListSecretsOutput' + description: uscListResponse wraps response body. + default: + content: + application/json: + schema: + $ref: '#/components/schemas/JSONError' + description: |- + errorResponse wraps any error to return it as a JSON object with one "error" + field. + tags: + - v2 + x-codegen-request-body-name: body + x-contentType: application/json + x-accepts: application/json + /usc-update: + post: + operationId: uscUpdate + responses: + "200": + content: + application/json: + schema: + $ref: '#/components/schemas/UscUpdateSecretOutput' + description: uscUpdateResponse wraps response body. + default: + content: + application/json: + schema: + $ref: '#/components/schemas/JSONError' + description: |- + errorResponse wraps any error to return it as a JSON object with one "error" + field. + tags: + - v2 + x-accepts: application/json /user-event-last-status: post: operationId: getLastUserEventStatus @@ -8842,6 +9008,12 @@ components: schema: $ref: '#/components/schemas/CreateESMOutput' description: CreateExternalSecretsManagerResponse wraps response body. + CreateUniversalSecretsConnectorResponse: + content: + application/json: + schema: + $ref: '#/components/schemas/CreateUSCOutput' + description: CreateUniversalSecretsConnectorResponse wraps response body. DeriveKeyResponse: content: application/json: @@ -10628,6 +10800,36 @@ components: schema: $ref: '#/components/schemas/uploadRSAOutput' description: uploadRSAResponse wraps response body. + uscCreateResponse: + content: + application/json: + schema: + $ref: '#/components/schemas/UscCreateSecretOutput' + description: uscCreateResponse wraps response body. + uscDeleteResponse: + content: + application/json: + schema: + $ref: '#/components/schemas/UscDeleteSecretOutput' + description: uscDeleteResponse wraps response body. + uscGetResponse: + content: + application/json: + schema: + $ref: '#/components/schemas/UscGetSecretOutput' + description: uscGetResponse wraps response body. + uscListResponse: + content: + application/json: + schema: + $ref: '#/components/schemas/UscListSecretsOutput' + description: uscListResponse wraps response body. + uscUpdateResponse: + content: + application/json: + schema: + $ref: '#/components/schemas/UscUpdateSecretOutput' + description: uscUpdateResponse wraps response body. validateTokenResponse: content: application/json: @@ -11849,6 +12051,7 @@ components: editable: true created_at: 2000-01-23T04:56:07.000+00:00 description: description + sub_claims_case_insensitive: true error: error cluster_id: 0 updated_at: 2000-01-23T04:56:07.000+00:00 @@ -11905,6 +12108,9 @@ components: type: array type: object x-go-name: SubClaims + sub_claims_case_insensitive: + type: boolean + x-go-name: SubClaimsCaseInsensitive updated_at: format: date-time type: string @@ -14432,7 +14638,8 @@ components: type: object x-go-package: akeyless.io/akeyless-main-repo/go/src/client/commands CreateESM: - description: CreateESM is a command that creates an External Secrets Manager + description: 'CreateESM is a command that creates an External Secrets Manager. + [Deprecated: Use command create-usc]' example: target-to-associate: target-to-associate delete_protection: delete_protection @@ -14798,6 +15005,85 @@ components: x-go-name: AssociationID type: object x-go-package: akeyless.io/akeyless-main-repo/go/src/infra/types + CreateUSC: + description: CreateUSC is a command that creates a Universal Secrets Connector + example: + target-to-associate: target-to-associate + delete_protection: delete_protection + name: name + description: description + json: false + k8s-namespace: k8s-namespace + azure-kv-name: azure-kv-name + uid-token: uid-token + tags: + - tags + - tags + token: token + properties: + azure-kv-name: + description: Azure Key Vault name (Relevant only for Azure targets) + type: string + x-go-name: AzureVault + delete_protection: + description: Protection from accidental deletion of this item [true/false] + type: string + x-go-name: ItemProtected + description: + description: Description of the Universal Secrets Connector + type: string + x-go-name: Description + json: + default: false + description: Set output format to JSON + type: boolean + x-go-name: Json + k8s-namespace: + description: K8s namespace (Relevant to Kubernetes targets) + type: string + x-go-name: K8sNamespace + name: + description: Universal Secrets Connector name + type: string + x-go-name: ESMName + tags: + description: List of the tags attached to this Universal Secrets Connector + items: + type: string + type: array + x-go-name: Tags + target-to-associate: + description: Target Universal Secrets Connector to connect + type: string + x-go-name: TargetToAssociate + token: + description: Authentication token (see `/auth` and `/configure`) + type: string + x-go-name: Profile + uid-token: + description: The universal identity token, Required only for universal_identity + authentication + type: string + x-go-name: UIDToken + required: + - name + - target-to-associate + type: object + x-go-package: akeyless.io/akeyless-main-repo/go/src/client/commands + CreateUSCOutput: + example: + universal_secrets_connector_id: 0 + universal_secrets_connector_name: universal_secrets_connector_name + properties: + universal_secrets_connector_id: + format: int64 + type: integer + x-go-name: ESMId + universal_secrets_connector_name: + type: string + x-go-name: ESMName + type: object + x-go-package: akeyless.io/akeyless-main-repo/go/src/client/commands CustomTargetDetails: example: payload: payload @@ -15114,6 +15400,7 @@ components: venafi_tpp_username: venafi_tpp_username azure_user_portal_access: true venafi_root_first_in_chain: true + oracle_revocation_statements: oracle_revocation_statements venafi_auto_generated_folder: venafi_auto_generated_folder db_pwd: db_pwd signing_algorithm: signing_algorithm @@ -15683,6 +15970,9 @@ components: oracle_creation_statements: type: string x-go-name: OracleDBCreationStatements + oracle_revocation_statements: + type: string + x-go-name: OracleDBRevocationStatements password: type: string x-go-name: Password @@ -28497,6 +28787,99 @@ components: x-go-name: IntervalByDays type: object x-go-package: akeyless.io/akeyless-main-repo/go/src/infra/types + UscCreateSecretOutput: + example: + secret_id: secret_id + version_id: version_id + properties: + secret_id: + type: string + x-go-name: SecretId + version_id: + type: string + x-go-name: VersionId + type: object + x-go-package: akeyless.io/akeyless-main-repo/go/src/client/commands + UscDeleteSecretOutput: + example: + name: name + properties: + name: + type: string + x-go-name: Name + type: object + x-go-package: akeyless.io/akeyless-main-repo/go/src/client/commands + UscGetSecretOutput: + example: + metadata: '{}' + name: name + value: value + binary_value: true + properties: + binary_value: + type: boolean + x-go-name: BinaryValue + metadata: + type: object + x-go-name: Metadata + name: + type: string + x-go-name: Name + value: + type: string + x-go-name: Value + type: object + x-go-package: akeyless.io/akeyless-main-repo/go/src/client/commands + UscListSecretsOutput: + example: + secrets_list: + - secret_id: secret_id + created: 2000-01-23T04:56:07.000+00:00 + last_retrieved: 2000-01-23T04:56:07.000+00:00 + name: name + description: description + expiration: 2000-01-23T04:56:07.000+00:00 + location: '{}' + type: type + status: true + tags: + key: tags + - secret_id: secret_id + created: 2000-01-23T04:56:07.000+00:00 + last_retrieved: 2000-01-23T04:56:07.000+00:00 + name: name + description: description + expiration: 2000-01-23T04:56:07.000+00:00 + location: '{}' + type: type + status: true + tags: + key: tags + properties: + secrets_list: + items: + $ref: '#/components/schemas/SecretInfo' + type: array + x-go-name: SecretsList + type: object + x-go-package: akeyless.io/akeyless-main-repo/go/src/client/commands + UscUpdateSecretOutput: + example: + secret_id: secret_id + name: name + version_id: version_id + properties: + name: + type: string + x-go-name: Name + secret_id: + type: string + x-go-name: SecretId + version_id: + type: string + x-go-name: VersionId + type: object + x-go-package: akeyless.io/akeyless-main-repo/go/src/client/commands VaultlessTokenizerInfo: example: key_name: key_name @@ -31282,7 +31665,7 @@ components: x-go-name: EventSources event-source-type: default: item - description: Event Source type [item, target, auth_method] + description: Event Source type [item, target, auth_method, gateway] type: string x-go-name: EventSourceType event-types: @@ -34884,12 +35267,19 @@ components: description: gatewayCreateAllowedAccess is a command that creates allowed access in Gator properties: + SubClaimsCaseInsensitive: + type: boolean access-id: description: |- Access ID The access id to be attached to this allowed access. Auth method with this access id should already exist. type: string x-go-name: AccessID + case-sensitive: + default: "true" + description: Treat sub claims as case-sensitive [true/false] + type: string + x-go-name: IsSubClaimsCaseSensitive description: description: Allowed access description type: string @@ -35799,6 +36189,7 @@ components: venafi_tpp_username: venafi_tpp_username azure_user_portal_access: true venafi_root_first_in_chain: true + oracle_revocation_statements: oracle_revocation_statements venafi_auto_generated_folder: venafi_auto_generated_folder db_pwd: db_pwd signing_algorithm: signing_algorithm @@ -36231,6 +36622,7 @@ components: venafi_tpp_username: venafi_tpp_username azure_user_portal_access: true venafi_root_first_in_chain: true + oracle_revocation_statements: oracle_revocation_statements venafi_auto_generated_folder: venafi_auto_generated_folder db_pwd: db_pwd signing_algorithm: signing_algorithm @@ -36649,6 +37041,7 @@ components: venafi_tpp_username: venafi_tpp_username azure_user_portal_access: true venafi_root_first_in_chain: true + oracle_revocation_statements: oracle_revocation_statements venafi_auto_generated_folder: venafi_auto_generated_folder db_pwd: db_pwd signing_algorithm: signing_algorithm @@ -37022,6 +37415,7 @@ components: venafi_tpp_username: venafi_tpp_username azure_user_portal_access: true venafi_root_first_in_chain: true + oracle_revocation_statements: oracle_revocation_statements venafi_auto_generated_folder: venafi_auto_generated_folder db_pwd: db_pwd signing_algorithm: signing_algorithm @@ -37452,6 +37846,7 @@ components: venafi_tpp_username: venafi_tpp_username azure_user_portal_access: true venafi_root_first_in_chain: true + oracle_revocation_statements: oracle_revocation_statements venafi_auto_generated_folder: venafi_auto_generated_folder db_pwd: db_pwd signing_algorithm: signing_algorithm @@ -37915,6 +38310,7 @@ components: venafi_tpp_username: venafi_tpp_username azure_user_portal_access: true venafi_root_first_in_chain: true + oracle_revocation_statements: oracle_revocation_statements venafi_auto_generated_folder: venafi_auto_generated_folder db_pwd: db_pwd signing_algorithm: signing_algorithm @@ -38282,6 +38678,7 @@ components: venafi_tpp_username: venafi_tpp_username azure_user_portal_access: true venafi_root_first_in_chain: true + oracle_revocation_statements: oracle_revocation_statements venafi_auto_generated_folder: venafi_auto_generated_folder db_pwd: db_pwd signing_algorithm: signing_algorithm @@ -38683,6 +39080,7 @@ components: venafi_tpp_username: venafi_tpp_username azure_user_portal_access: true venafi_root_first_in_chain: true + oracle_revocation_statements: oracle_revocation_statements venafi_auto_generated_folder: venafi_auto_generated_folder db_pwd: db_pwd signing_algorithm: signing_algorithm @@ -39064,6 +39462,7 @@ components: venafi_tpp_username: venafi_tpp_username azure_user_portal_access: true venafi_root_first_in_chain: true + oracle_revocation_statements: oracle_revocation_statements venafi_auto_generated_folder: venafi_auto_generated_folder db_pwd: db_pwd signing_algorithm: signing_algorithm @@ -39435,6 +39834,7 @@ components: venafi_tpp_username: venafi_tpp_username azure_user_portal_access: true venafi_root_first_in_chain: true + oracle_revocation_statements: oracle_revocation_statements venafi_auto_generated_folder: venafi_auto_generated_folder db_pwd: db_pwd signing_algorithm: signing_algorithm @@ -39827,6 +40227,7 @@ components: venafi_tpp_username: venafi_tpp_username azure_user_portal_access: true venafi_root_first_in_chain: true + oracle_revocation_statements: oracle_revocation_statements venafi_auto_generated_folder: venafi_auto_generated_folder db_pwd: db_pwd signing_algorithm: signing_algorithm @@ -40232,6 +40633,7 @@ components: venafi_tpp_username: venafi_tpp_username azure_user_portal_access: true venafi_root_first_in_chain: true + oracle_revocation_statements: oracle_revocation_statements venafi_auto_generated_folder: venafi_auto_generated_folder db_pwd: db_pwd signing_algorithm: signing_algorithm @@ -40620,6 +41022,7 @@ components: venafi_tpp_username: venafi_tpp_username azure_user_portal_access: true venafi_root_first_in_chain: true + oracle_revocation_statements: oracle_revocation_statements venafi_auto_generated_folder: venafi_auto_generated_folder db_pwd: db_pwd signing_algorithm: signing_algorithm @@ -41025,6 +41428,7 @@ components: venafi_tpp_username: venafi_tpp_username azure_user_portal_access: true venafi_root_first_in_chain: true + oracle_revocation_statements: oracle_revocation_statements venafi_auto_generated_folder: venafi_auto_generated_folder db_pwd: db_pwd signing_algorithm: signing_algorithm @@ -41447,6 +41851,7 @@ components: venafi_tpp_username: venafi_tpp_username azure_user_portal_access: true venafi_root_first_in_chain: true + oracle_revocation_statements: oracle_revocation_statements venafi_auto_generated_folder: venafi_auto_generated_folder db_pwd: db_pwd signing_algorithm: signing_algorithm @@ -41865,6 +42270,7 @@ components: venafi_tpp_username: venafi_tpp_username azure_user_portal_access: true venafi_root_first_in_chain: true + oracle_revocation_statements: oracle_revocation_statements venafi_auto_generated_folder: venafi_auto_generated_folder db_pwd: db_pwd signing_algorithm: signing_algorithm @@ -42299,6 +42705,7 @@ components: venafi_tpp_username: venafi_tpp_username azure_user_portal_access: true venafi_root_first_in_chain: true + oracle_revocation_statements: oracle_revocation_statements venafi_auto_generated_folder: venafi_auto_generated_folder db_pwd: db_pwd signing_algorithm: signing_algorithm @@ -42379,6 +42786,10 @@ components: description: Oracle Port type: string x-go-name: DBPort + oracle-revocation-statements: + description: Oracle Revocation statements + type: string + x-go-name: RevocationStatements oracle-screation-statements: description: Oracle Creation statements type: string @@ -42706,6 +43117,7 @@ components: venafi_tpp_username: venafi_tpp_username azure_user_portal_access: true venafi_root_first_in_chain: true + oracle_revocation_statements: oracle_revocation_statements venafi_auto_generated_folder: venafi_auto_generated_folder db_pwd: db_pwd signing_algorithm: signing_algorithm @@ -43156,6 +43568,7 @@ components: venafi_tpp_username: venafi_tpp_username azure_user_portal_access: true venafi_root_first_in_chain: true + oracle_revocation_statements: oracle_revocation_statements venafi_auto_generated_folder: venafi_auto_generated_folder db_pwd: db_pwd signing_algorithm: signing_algorithm @@ -43567,6 +43980,7 @@ components: venafi_tpp_username: venafi_tpp_username azure_user_portal_access: true venafi_root_first_in_chain: true + oracle_revocation_statements: oracle_revocation_statements venafi_auto_generated_folder: venafi_auto_generated_folder db_pwd: db_pwd signing_algorithm: signing_algorithm @@ -43974,6 +44388,7 @@ components: venafi_tpp_username: venafi_tpp_username azure_user_portal_access: true venafi_root_first_in_chain: true + oracle_revocation_statements: oracle_revocation_statements venafi_auto_generated_folder: venafi_auto_generated_folder db_pwd: db_pwd signing_algorithm: signing_algorithm @@ -44389,6 +44804,7 @@ components: venafi_tpp_username: venafi_tpp_username azure_user_portal_access: true venafi_root_first_in_chain: true + oracle_revocation_statements: oracle_revocation_statements venafi_auto_generated_folder: venafi_auto_generated_folder db_pwd: db_pwd signing_algorithm: signing_algorithm @@ -44774,6 +45190,7 @@ components: venafi_tpp_username: venafi_tpp_username azure_user_portal_access: true venafi_root_first_in_chain: true + oracle_revocation_statements: oracle_revocation_statements venafi_auto_generated_folder: venafi_auto_generated_folder db_pwd: db_pwd signing_algorithm: signing_algorithm @@ -45168,6 +45585,7 @@ components: venafi_tpp_username: venafi_tpp_username azure_user_portal_access: true venafi_root_first_in_chain: true + oracle_revocation_statements: oracle_revocation_statements venafi_auto_generated_folder: venafi_auto_generated_folder db_pwd: db_pwd signing_algorithm: signing_algorithm @@ -45548,6 +45966,7 @@ components: venafi_tpp_username: venafi_tpp_username azure_user_portal_access: true venafi_root_first_in_chain: true + oracle_revocation_statements: oracle_revocation_statements venafi_auto_generated_folder: venafi_auto_generated_folder db_pwd: db_pwd signing_algorithm: signing_algorithm @@ -47132,12 +47551,19 @@ components: description: gatewayUpdateAllowedAccess is a command that update allowed access in Gator properties: + SubClaimsCaseInsensitive: + type: boolean access-id: description: |- Access ID The access id to be attached to this allowed access. Auth method with this access id should already exist. type: string x-go-name: AccessID + case-sensitive: + default: "true" + description: Treat sub claims as case-sensitive [true/false] + type: string + x-go-name: IsSubClaimsCaseSensitive description: description: Allowed access description type: string @@ -48205,6 +48631,7 @@ components: venafi_tpp_username: venafi_tpp_username azure_user_portal_access: true venafi_root_first_in_chain: true + oracle_revocation_statements: oracle_revocation_statements venafi_auto_generated_folder: venafi_auto_generated_folder db_pwd: db_pwd signing_algorithm: signing_algorithm @@ -48641,6 +49068,7 @@ components: venafi_tpp_username: venafi_tpp_username azure_user_portal_access: true venafi_root_first_in_chain: true + oracle_revocation_statements: oracle_revocation_statements venafi_auto_generated_folder: venafi_auto_generated_folder db_pwd: db_pwd signing_algorithm: signing_algorithm @@ -49063,6 +49491,7 @@ components: venafi_tpp_username: venafi_tpp_username azure_user_portal_access: true venafi_root_first_in_chain: true + oracle_revocation_statements: oracle_revocation_statements venafi_auto_generated_folder: venafi_auto_generated_folder db_pwd: db_pwd signing_algorithm: signing_algorithm @@ -49440,6 +49869,7 @@ components: venafi_tpp_username: venafi_tpp_username azure_user_portal_access: true venafi_root_first_in_chain: true + oracle_revocation_statements: oracle_revocation_statements venafi_auto_generated_folder: venafi_auto_generated_folder db_pwd: db_pwd signing_algorithm: signing_algorithm @@ -49874,6 +50304,7 @@ components: venafi_tpp_username: venafi_tpp_username azure_user_portal_access: true venafi_root_first_in_chain: true + oracle_revocation_statements: oracle_revocation_statements venafi_auto_generated_folder: venafi_auto_generated_folder db_pwd: db_pwd signing_algorithm: signing_algorithm @@ -50345,6 +50776,7 @@ components: venafi_tpp_username: venafi_tpp_username azure_user_portal_access: true venafi_root_first_in_chain: true + oracle_revocation_statements: oracle_revocation_statements venafi_auto_generated_folder: venafi_auto_generated_folder db_pwd: db_pwd signing_algorithm: signing_algorithm @@ -50716,6 +51148,7 @@ components: venafi_tpp_username: venafi_tpp_username azure_user_portal_access: true venafi_root_first_in_chain: true + oracle_revocation_statements: oracle_revocation_statements venafi_auto_generated_folder: venafi_auto_generated_folder db_pwd: db_pwd signing_algorithm: signing_algorithm @@ -51121,6 +51554,7 @@ components: venafi_tpp_username: venafi_tpp_username azure_user_portal_access: true venafi_root_first_in_chain: true + oracle_revocation_statements: oracle_revocation_statements venafi_auto_generated_folder: venafi_auto_generated_folder db_pwd: db_pwd signing_algorithm: signing_algorithm @@ -51506,6 +51940,7 @@ components: venafi_tpp_username: venafi_tpp_username azure_user_portal_access: true venafi_root_first_in_chain: true + oracle_revocation_statements: oracle_revocation_statements venafi_auto_generated_folder: venafi_auto_generated_folder db_pwd: db_pwd signing_algorithm: signing_algorithm @@ -51881,6 +52316,7 @@ components: venafi_tpp_username: venafi_tpp_username azure_user_portal_access: true venafi_root_first_in_chain: true + oracle_revocation_statements: oracle_revocation_statements venafi_auto_generated_folder: venafi_auto_generated_folder db_pwd: db_pwd signing_algorithm: signing_algorithm @@ -52277,6 +52713,7 @@ components: venafi_tpp_username: venafi_tpp_username azure_user_portal_access: true venafi_root_first_in_chain: true + oracle_revocation_statements: oracle_revocation_statements venafi_auto_generated_folder: venafi_auto_generated_folder db_pwd: db_pwd signing_algorithm: signing_algorithm @@ -52686,6 +53123,7 @@ components: venafi_tpp_username: venafi_tpp_username azure_user_portal_access: true venafi_root_first_in_chain: true + oracle_revocation_statements: oracle_revocation_statements venafi_auto_generated_folder: venafi_auto_generated_folder db_pwd: db_pwd signing_algorithm: signing_algorithm @@ -53078,6 +53516,7 @@ components: venafi_tpp_username: venafi_tpp_username azure_user_portal_access: true venafi_root_first_in_chain: true + oracle_revocation_statements: oracle_revocation_statements venafi_auto_generated_folder: venafi_auto_generated_folder db_pwd: db_pwd signing_algorithm: signing_algorithm @@ -53487,6 +53926,7 @@ components: venafi_tpp_username: venafi_tpp_username azure_user_portal_access: true venafi_root_first_in_chain: true + oracle_revocation_statements: oracle_revocation_statements venafi_auto_generated_folder: venafi_auto_generated_folder db_pwd: db_pwd signing_algorithm: signing_algorithm @@ -53913,6 +54353,7 @@ components: venafi_tpp_username: venafi_tpp_username azure_user_portal_access: true venafi_root_first_in_chain: true + oracle_revocation_statements: oracle_revocation_statements venafi_auto_generated_folder: venafi_auto_generated_folder db_pwd: db_pwd signing_algorithm: signing_algorithm @@ -54335,6 +54776,7 @@ components: venafi_tpp_username: venafi_tpp_username azure_user_portal_access: true venafi_root_first_in_chain: true + oracle_revocation_statements: oracle_revocation_statements venafi_auto_generated_folder: venafi_auto_generated_folder db_pwd: db_pwd signing_algorithm: signing_algorithm @@ -54773,6 +55215,7 @@ components: venafi_tpp_username: venafi_tpp_username azure_user_portal_access: true venafi_root_first_in_chain: true + oracle_revocation_statements: oracle_revocation_statements venafi_auto_generated_folder: venafi_auto_generated_folder db_pwd: db_pwd signing_algorithm: signing_algorithm @@ -54857,6 +55300,10 @@ components: description: Oracle Port type: string x-go-name: DBPort + oracle-revocation-statements: + description: Oracle Revocation statements + type: string + x-go-name: RevocationStatements oracle-screation-statements: description: Oracle Creation statements type: string @@ -55184,6 +55631,7 @@ components: venafi_tpp_username: venafi_tpp_username azure_user_portal_access: true venafi_root_first_in_chain: true + oracle_revocation_statements: oracle_revocation_statements venafi_auto_generated_folder: venafi_auto_generated_folder db_pwd: db_pwd signing_algorithm: signing_algorithm @@ -55638,6 +56086,7 @@ components: venafi_tpp_username: venafi_tpp_username azure_user_portal_access: true venafi_root_first_in_chain: true + oracle_revocation_statements: oracle_revocation_statements venafi_auto_generated_folder: venafi_auto_generated_folder db_pwd: db_pwd signing_algorithm: signing_algorithm @@ -56053,6 +56502,7 @@ components: venafi_tpp_username: venafi_tpp_username azure_user_portal_access: true venafi_root_first_in_chain: true + oracle_revocation_statements: oracle_revocation_statements venafi_auto_generated_folder: venafi_auto_generated_folder db_pwd: db_pwd signing_algorithm: signing_algorithm @@ -56464,6 +56914,7 @@ components: venafi_tpp_username: venafi_tpp_username azure_user_portal_access: true venafi_root_first_in_chain: true + oracle_revocation_statements: oracle_revocation_statements venafi_auto_generated_folder: venafi_auto_generated_folder db_pwd: db_pwd signing_algorithm: signing_algorithm @@ -56883,6 +57334,7 @@ components: venafi_tpp_username: venafi_tpp_username azure_user_portal_access: true venafi_root_first_in_chain: true + oracle_revocation_statements: oracle_revocation_statements venafi_auto_generated_folder: venafi_auto_generated_folder db_pwd: db_pwd signing_algorithm: signing_algorithm @@ -57272,6 +57724,7 @@ components: venafi_tpp_username: venafi_tpp_username azure_user_portal_access: true venafi_root_first_in_chain: true + oracle_revocation_statements: oracle_revocation_statements venafi_auto_generated_folder: venafi_auto_generated_folder db_pwd: db_pwd signing_algorithm: signing_algorithm @@ -57670,6 +58123,7 @@ components: venafi_tpp_username: venafi_tpp_username azure_user_portal_access: true venafi_root_first_in_chain: true + oracle_revocation_statements: oracle_revocation_statements venafi_auto_generated_folder: venafi_auto_generated_folder db_pwd: db_pwd signing_algorithm: signing_algorithm @@ -58054,6 +58508,7 @@ components: venafi_tpp_username: venafi_tpp_username azure_user_portal_access: true venafi_root_first_in_chain: true + oracle_revocation_statements: oracle_revocation_statements venafi_auto_generated_folder: venafi_auto_generated_folder db_pwd: db_pwd signing_algorithm: signing_algorithm @@ -59605,8 +60060,14 @@ components: type: boolean x-go-name: Json minimal-view: + description: Show only basic information of the items type: boolean x-go-name: BasicData + modified-after: + description: List only secrets modified after specified date (in unix time) + format: int64 + type: integer + x-go-name: ModifiedAfterDate pagination-token: description: Next page reference type: string @@ -65849,6 +66310,201 @@ components: uploadRSAOutput: type: object x-go-package: akeyless.io/akeyless-main-repo/go/src/client/commands + uscCreate: + description: uscCreate is a command that creates a new secret in a Universal + Secrets Connector + properties: + binary-value: + description: Use this option if the universal secrets value is a base64 + encoded binary + type: boolean + x-go-name: BinaryValue + description: + description: Description of the universal secrets + type: string + x-go-name: Description + json: + default: false + description: Set output format to JSON + type: boolean + x-go-name: Json + secret-name: + description: Name for the new universal secrets + type: string + x-go-name: SecretName + tags: + additionalProperties: + type: string + description: Tags for the universal secrets + type: object + x-go-name: Tags + token: + description: Authentication token (see `/auth` and `/configure`) + type: string + x-go-name: Profile + uid-token: + description: The universal identity token, Required only for universal_identity + authentication + type: string + x-go-name: UIDToken + usc-name: + description: Name of the Universal Secrets Connector item + type: string + x-go-name: ExternalSecretManagerName + value: + description: Value of the universal secrets item, either text or base64 + encoded binary + type: string + x-go-name: Value + required: + - secret-name + - usc-name + - value + type: object + x-go-package: akeyless.io/akeyless-main-repo/go/src/client/commands + uscDelete: + description: uscDelete is a command that deletes a secret from a Universal Secrets + Connector + properties: + json: + default: false + description: Set output format to JSON + type: boolean + x-go-name: Json + secret-id: + description: The universal secrets id (or name, for AWS, Azure or K8s targets) + to delete + type: string + x-go-name: SecretId + token: + description: Authentication token (see `/auth` and `/configure`) + type: string + x-go-name: Profile + uid-token: + description: The universal identity token, Required only for universal_identity + authentication + type: string + x-go-name: UIDToken + usc-name: + description: Name of the Universal Secrets Connector item + type: string + x-go-name: ExternalSecretManagerName + required: + - secret-id + - usc-name + type: object + x-go-package: akeyless.io/akeyless-main-repo/go/src/client/commands + uscGet: + description: uscGet is a command that gets the value and internal details of + a secret from a Universal Secrets Connector + properties: + json: + default: false + description: Set output format to JSON + type: boolean + x-go-name: Json + secret-id: + description: The secret id (or name, for AWS, Azure or K8s targets) to get + from the Universal Secrets Connector + type: string + x-go-name: SecretId + token: + description: Authentication token (see `/auth` and `/configure`) + type: string + x-go-name: Profile + uid-token: + description: The universal identity token, Required only for universal_identity + authentication + type: string + x-go-name: UIDToken + usc-name: + description: Name of the Universal Secrets Connector item + type: string + x-go-name: ExternalSecretManagerName + required: + - secret-id + - usc-name + type: object + x-go-package: akeyless.io/akeyless-main-repo/go/src/client/commands + uscList: + description: uscList is a command that lists the secrets of a Universal Secrets + Connector + properties: + json: + default: false + description: Set output format to JSON + type: boolean + x-go-name: Json + token: + description: Authentication token (see `/auth` and `/configure`) + type: string + x-go-name: Profile + uid-token: + description: The universal identity token, Required only for universal_identity + authentication + type: string + x-go-name: UIDToken + usc-name: + description: Name of the Universal Secrets Connector item + type: string + x-go-name: ExternalSecretManagerName + required: + - usc-name + type: object + x-go-package: akeyless.io/akeyless-main-repo/go/src/client/commands + uscUpdate: + description: uscUpdate is a command that updates a secret in a Universal Secrets + Connector + properties: + binary-value: + description: Use this option if the universal secrets value is a base64 + encoded binary + type: boolean + x-go-name: BinaryValue + description: + description: Description of the universal secrets + type: string + x-go-name: Description + json: + default: false + description: Set output format to JSON + type: boolean + x-go-name: Json + secret-id: + description: The universal secrets id (or name, for AWS, Azure or K8s targets) + to update + type: string + x-go-name: SecretId + tags: + additionalProperties: + type: string + description: Tags for the universal secrets + type: object + x-go-name: Tags + token: + description: Authentication token (see `/auth` and `/configure`) + type: string + x-go-name: Profile + uid-token: + description: The universal identity token, Required only for universal_identity + authentication + type: string + x-go-name: UIDToken + usc-name: + description: Name of the Universal Secrets Connector item + type: string + x-go-name: ExternalSecretManagerName + value: + description: Value of the universal secrets item, either text or base64 + encoded binary + type: string + x-go-name: Value + required: + - secret-id + - usc-name + - value + type: object + x-go-package: akeyless.io/akeyless-main-repo/go/src/client/commands validateToken: description: validate-token is a command that validaties token properties: diff --git a/build.gradle b/build.gradle index c87bf960..7e9681b2 100644 --- a/build.gradle +++ b/build.gradle @@ -4,7 +4,7 @@ apply plugin: 'java' apply plugin: 'com.diffplug.spotless' group = 'io.akeyless' -version = '3.5.3' +version = '3.5.4' buildscript { repositories { diff --git a/build.sbt b/build.sbt index 75edf5b1..91b59ba8 100644 --- a/build.sbt +++ b/build.sbt @@ -2,7 +2,7 @@ lazy val root = (project in file(".")). settings( organization := "io.akeyless", name := "akeyless-java", - version := "3.5.3", + version := "3.5.4", scalaVersion := "2.11.4", scalacOptions ++= Seq("-feature"), javacOptions in compile ++= Seq("-Xlint:deprecation"), diff --git a/docs/AllowedAccess.md b/docs/AllowedAccess.md index e08ff23a..feaaed09 100644 --- a/docs/AllowedAccess.md +++ b/docs/AllowedAccess.md @@ -19,6 +19,7 @@ Name | Type | Description | Notes **name** | **String** | | [optional] **permissions** | **List<String>** | | [optional] **subClaims** | **Map<String, List<String>>** | | [optional] +**subClaimsCaseInsensitive** | **Boolean** | | [optional] **updatedAt** | **OffsetDateTime** | | [optional] diff --git a/docs/CreateESM.md b/docs/CreateESM.md index a3cc5c19..37e24ce0 100644 --- a/docs/CreateESM.md +++ b/docs/CreateESM.md @@ -2,7 +2,7 @@ # CreateESM -CreateESM is a command that creates an External Secrets Manager +CreateESM is a command that creates an External Secrets Manager. [Deprecated: Use command create-usc] ## Properties diff --git a/docs/CreateEventForwarder.md b/docs/CreateEventForwarder.md index 904e19ae..55d3fb38 100644 --- a/docs/CreateEventForwarder.md +++ b/docs/CreateEventForwarder.md @@ -17,7 +17,7 @@ Name | Type | Description | Notes **description** | **String** | Description of the object | [optional] **emailTo** | **String** | A comma seperated list of email addresses to send event to (relevant only for \"email\" Event Forwarder) | [optional] **eventSourceLocations** | **List<String>** | Event sources | -**eventSourceType** | **String** | Event Source type [item, target, auth_method] | [optional] +**eventSourceType** | **String** | Event Source type [item, target, auth_method, gateway] | [optional] **eventTypes** | **List<String>** | List of event types to notify about [request-access, certificate-pending-expiration, certificate-expired, auth-method-pending-expiration, auth-method-expired, rotated-secret-success, rotated-secret-failure, dynamic-secret-failure, multi-auth-failure, uid-rotation-failure] | [optional] **every** | **String** | Rate of periodic runner repetition in hours | [optional] **forwarderType** | **String** | | diff --git a/docs/CreateUSC.md b/docs/CreateUSC.md new file mode 100644 index 00000000..353a213b --- /dev/null +++ b/docs/CreateUSC.md @@ -0,0 +1,23 @@ + + +# CreateUSC + +CreateUSC is a command that creates a Universal Secrets Connector + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**azureKvName** | **String** | Azure Key Vault name (Relevant only for Azure targets) | [optional] +**deleteProtection** | **String** | Protection from accidental deletion of this item [true/false] | [optional] +**description** | **String** | Description of the Universal Secrets Connector | [optional] +**json** | **Boolean** | Set output format to JSON | [optional] +**k8sNamespace** | **String** | K8s namespace (Relevant to Kubernetes targets) | [optional] +**name** | **String** | Universal Secrets Connector name | +**tags** | **List<String>** | List of the tags attached to this Universal Secrets Connector | [optional] +**targetToAssociate** | **String** | Target Universal Secrets Connector to connect | +**token** | **String** | Authentication token (see `/auth` and `/configure`) | [optional] +**uidToken** | **String** | The universal identity token, Required only for universal_identity authentication | [optional] + + + diff --git a/docs/CreateUSCOutput.md b/docs/CreateUSCOutput.md new file mode 100644 index 00000000..7407c822 --- /dev/null +++ b/docs/CreateUSCOutput.md @@ -0,0 +1,14 @@ + + +# CreateUSCOutput + + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**universalSecretsConnectorId** | **Long** | | [optional] +**universalSecretsConnectorName** | **String** | | [optional] + + + diff --git a/docs/DSProducerDetails.md b/docs/DSProducerDetails.md index 1a961d43..0d13a80f 100644 --- a/docs/DSProducerDetails.md +++ b/docs/DSProducerDetails.md @@ -166,6 +166,7 @@ Name | Type | Description | Notes **mysqlCreationStatements** | **String** | | [optional] **mysqlRevocationStatements** | **String** | | [optional] **oracleCreationStatements** | **String** | | [optional] +**oracleRevocationStatements** | **String** | | [optional] **password** | **String** | | [optional] **passwordLength** | **Long** | | [optional] **passwordPolicy** | **String** | | [optional] diff --git a/docs/GatewayCreateAllowedAccess.md b/docs/GatewayCreateAllowedAccess.md index dce997d2..db1486f0 100644 --- a/docs/GatewayCreateAllowedAccess.md +++ b/docs/GatewayCreateAllowedAccess.md @@ -8,7 +8,9 @@ gatewayCreateAllowedAccess is a command that creates allowed access in Gator Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- +**subClaimsCaseInsensitive** | **Boolean** | | [optional] **accessId** | **String** | Access ID The access id to be attached to this allowed access. Auth method with this access id should already exist. | +**caseSensitive** | **String** | Treat sub claims as case-sensitive [true/false] | [optional] **description** | **String** | Allowed access description | [optional] **json** | **Boolean** | Set output format to JSON | [optional] **name** | **String** | Allowed access name | diff --git a/docs/GatewayCreateProducerOracleDb.md b/docs/GatewayCreateProducerOracleDb.md index 0332df5a..1cf38d31 100644 --- a/docs/GatewayCreateProducerOracleDb.md +++ b/docs/GatewayCreateProducerOracleDb.md @@ -16,6 +16,7 @@ Name | Type | Description | Notes **oracleHost** | **String** | Oracle Host | [optional] **oraclePassword** | **String** | Oracle Password | [optional] **oraclePort** | **String** | Oracle Port | [optional] +**oracleRevocationStatements** | **String** | Oracle Revocation statements | [optional] **oracleScreationStatements** | **String** | Oracle Creation statements | [optional] **oracleServiceName** | **String** | Oracle DB Name | [optional] **oracleUsername** | **String** | Oracle Username | [optional] diff --git a/docs/GatewayUpdateAllowedAccess.md b/docs/GatewayUpdateAllowedAccess.md index dbaf9355..462e06a0 100644 --- a/docs/GatewayUpdateAllowedAccess.md +++ b/docs/GatewayUpdateAllowedAccess.md @@ -8,7 +8,9 @@ gatewayUpdateAllowedAccess is a command that update allowed access in Gator Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- +**subClaimsCaseInsensitive** | **Boolean** | | [optional] **accessId** | **String** | Access ID The access id to be attached to this allowed access. Auth method with this access id should already exist. | +**caseSensitive** | **String** | Treat sub claims as case-sensitive [true/false] | [optional] **description** | **String** | Allowed access description | [optional] **json** | **Boolean** | Set output format to JSON | [optional] **name** | **String** | Allowed access name | diff --git a/docs/GatewayUpdateProducerOracleDb.md b/docs/GatewayUpdateProducerOracleDb.md index dce7df91..58a31c24 100644 --- a/docs/GatewayUpdateProducerOracleDb.md +++ b/docs/GatewayUpdateProducerOracleDb.md @@ -17,6 +17,7 @@ Name | Type | Description | Notes **oracleHost** | **String** | Oracle Host | [optional] **oraclePassword** | **String** | Oracle Password | [optional] **oraclePort** | **String** | Oracle Port | [optional] +**oracleRevocationStatements** | **String** | Oracle Revocation statements | [optional] **oracleScreationStatements** | **String** | Oracle Creation statements | [optional] **oracleServiceName** | **String** | Oracle DB Name | [optional] **oracleUsername** | **String** | Oracle Username | [optional] diff --git a/docs/ListItems.md b/docs/ListItems.md index 10f53d74..1295bf62 100644 --- a/docs/ListItems.md +++ b/docs/ListItems.md @@ -12,7 +12,8 @@ Name | Type | Description | Notes **autoPagination** | **String** | Retrieve all items using pagination, when disabled retrieving only first 1000 items | [optional] **filter** | **String** | Filter by item name or part of it | [optional] **json** | **Boolean** | Set output format to JSON | [optional] -**minimalView** | **Boolean** | | [optional] +**minimalView** | **Boolean** | Show only basic information of the items | [optional] +**modifiedAfter** | **Long** | List only secrets modified after specified date (in unix time) | [optional] **paginationToken** | **String** | Next page reference | [optional] **path** | **String** | Path to folder | [optional] **sraOnly** | **Boolean** | Filter by items with SRA functionality enabled | [optional] diff --git a/docs/UscCreate.md b/docs/UscCreate.md new file mode 100644 index 00000000..8a5383b8 --- /dev/null +++ b/docs/UscCreate.md @@ -0,0 +1,22 @@ + + +# UscCreate + +uscCreate is a command that creates a new secret in a Universal Secrets Connector + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**binaryValue** | **Boolean** | Use this option if the universal secrets value is a base64 encoded binary | [optional] +**description** | **String** | Description of the universal secrets | [optional] +**json** | **Boolean** | Set output format to JSON | [optional] +**secretName** | **String** | Name for the new universal secrets | +**tags** | **Map<String, String>** | Tags for the universal secrets | [optional] +**token** | **String** | Authentication token (see `/auth` and `/configure`) | [optional] +**uidToken** | **String** | The universal identity token, Required only for universal_identity authentication | [optional] +**uscName** | **String** | Name of the Universal Secrets Connector item | +**value** | **String** | Value of the universal secrets item, either text or base64 encoded binary | + + + diff --git a/docs/UscCreateSecretOutput.md b/docs/UscCreateSecretOutput.md new file mode 100644 index 00000000..a9231a49 --- /dev/null +++ b/docs/UscCreateSecretOutput.md @@ -0,0 +1,14 @@ + + +# UscCreateSecretOutput + + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**secretId** | **String** | | [optional] +**versionId** | **String** | | [optional] + + + diff --git a/docs/UscDelete.md b/docs/UscDelete.md new file mode 100644 index 00000000..da322fd9 --- /dev/null +++ b/docs/UscDelete.md @@ -0,0 +1,18 @@ + + +# UscDelete + +uscDelete is a command that deletes a secret from a Universal Secrets Connector + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**json** | **Boolean** | Set output format to JSON | [optional] +**secretId** | **String** | The universal secrets id (or name, for AWS, Azure or K8s targets) to delete | +**token** | **String** | Authentication token (see `/auth` and `/configure`) | [optional] +**uidToken** | **String** | The universal identity token, Required only for universal_identity authentication | [optional] +**uscName** | **String** | Name of the Universal Secrets Connector item | + + + diff --git a/docs/UscDeleteSecretOutput.md b/docs/UscDeleteSecretOutput.md new file mode 100644 index 00000000..b2bab9c7 --- /dev/null +++ b/docs/UscDeleteSecretOutput.md @@ -0,0 +1,13 @@ + + +# UscDeleteSecretOutput + + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**name** | **String** | | [optional] + + + diff --git a/docs/UscGet.md b/docs/UscGet.md new file mode 100644 index 00000000..c7062680 --- /dev/null +++ b/docs/UscGet.md @@ -0,0 +1,18 @@ + + +# UscGet + +uscGet is a command that gets the value and internal details of a secret from a Universal Secrets Connector + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**json** | **Boolean** | Set output format to JSON | [optional] +**secretId** | **String** | The secret id (or name, for AWS, Azure or K8s targets) to get from the Universal Secrets Connector | +**token** | **String** | Authentication token (see `/auth` and `/configure`) | [optional] +**uidToken** | **String** | The universal identity token, Required only for universal_identity authentication | [optional] +**uscName** | **String** | Name of the Universal Secrets Connector item | + + + diff --git a/docs/UscGetSecretOutput.md b/docs/UscGetSecretOutput.md new file mode 100644 index 00000000..1dab4969 --- /dev/null +++ b/docs/UscGetSecretOutput.md @@ -0,0 +1,16 @@ + + +# UscGetSecretOutput + + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**binaryValue** | **Boolean** | | [optional] +**metadata** | **Object** | | [optional] +**name** | **String** | | [optional] +**value** | **String** | | [optional] + + + diff --git a/docs/UscList.md b/docs/UscList.md new file mode 100644 index 00000000..6e198177 --- /dev/null +++ b/docs/UscList.md @@ -0,0 +1,17 @@ + + +# UscList + +uscList is a command that lists the secrets of a Universal Secrets Connector + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**json** | **Boolean** | Set output format to JSON | [optional] +**token** | **String** | Authentication token (see `/auth` and `/configure`) | [optional] +**uidToken** | **String** | The universal identity token, Required only for universal_identity authentication | [optional] +**uscName** | **String** | Name of the Universal Secrets Connector item | + + + diff --git a/docs/UscListSecretsOutput.md b/docs/UscListSecretsOutput.md new file mode 100644 index 00000000..ed403d23 --- /dev/null +++ b/docs/UscListSecretsOutput.md @@ -0,0 +1,13 @@ + + +# UscListSecretsOutput + + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**secretsList** | [**List<SecretInfo>**](SecretInfo.md) | | [optional] + + + diff --git a/docs/UscUpdate.md b/docs/UscUpdate.md new file mode 100644 index 00000000..c8cfea7f --- /dev/null +++ b/docs/UscUpdate.md @@ -0,0 +1,22 @@ + + +# UscUpdate + +uscUpdate is a command that updates a secret in a Universal Secrets Connector + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**binaryValue** | **Boolean** | Use this option if the universal secrets value is a base64 encoded binary | [optional] +**description** | **String** | Description of the universal secrets | [optional] +**json** | **Boolean** | Set output format to JSON | [optional] +**secretId** | **String** | The universal secrets id (or name, for AWS, Azure or K8s targets) to update | +**tags** | **Map<String, String>** | Tags for the universal secrets | [optional] +**token** | **String** | Authentication token (see `/auth` and `/configure`) | [optional] +**uidToken** | **String** | The universal identity token, Required only for universal_identity authentication | [optional] +**uscName** | **String** | Name of the Universal Secrets Connector item | +**value** | **String** | Value of the universal secrets item, either text or base64 encoded binary | + + + diff --git a/docs/UscUpdateSecretOutput.md b/docs/UscUpdateSecretOutput.md new file mode 100644 index 00000000..474c2299 --- /dev/null +++ b/docs/UscUpdateSecretOutput.md @@ -0,0 +1,15 @@ + + +# UscUpdateSecretOutput + + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**name** | **String** | | [optional] +**secretId** | **String** | | [optional] +**versionId** | **String** | | [optional] + + + diff --git a/docs/V2Api.md b/docs/V2Api.md index e3d96e1a..e5c1bd87 100644 --- a/docs/V2Api.md +++ b/docs/V2Api.md @@ -54,6 +54,7 @@ Method | HTTP request | Description [**createSalesforceTarget**](V2Api.md#createSalesforceTarget) | **POST** /create-salesforce-target | [**createSecret**](V2Api.md#createSecret) | **POST** /create-secret | [**createTokenizer**](V2Api.md#createTokenizer) | **POST** /create-tokenizer | +[**createUSC**](V2Api.md#createUSC) | **POST** /create-usc | [**createUserEvent**](V2Api.md#createUserEvent) | **POST** /create-user-event | [**createWebTarget**](V2Api.md#createWebTarget) | **POST** /create-web-target | [**createWindowsTarget**](V2Api.md#createWindowsTarget) | **POST** /create-windows-target | @@ -300,6 +301,11 @@ Method | HTTP request | Description [**updateWindowsTarget**](V2Api.md#updateWindowsTarget) | **POST** /update-windows-target | [**updateZeroSSLTarget**](V2Api.md#updateZeroSSLTarget) | **POST** /update-zerossl-target | [**uploadRSA**](V2Api.md#uploadRSA) | **POST** /upload-rsa | +[**uscCreate**](V2Api.md#uscCreate) | **POST** /usc-create | +[**uscDelete**](V2Api.md#uscDelete) | **POST** /usc-delete | +[**uscGet**](V2Api.md#uscGet) | **POST** /usc-get | +[**uscList**](V2Api.md#uscList) | **POST** /usc-list | +[**uscUpdate**](V2Api.md#uscUpdate) | **POST** /usc-update | [**validateToken**](V2Api.md#validateToken) | **POST** /validate-token | [**verifyDataWithClassicKey**](V2Api.md#verifyDataWithClassicKey) | **POST** /verify-data-with-classic-key | [**verifyEcDsa**](V2Api.md#verifyEcDsa) | **POST** /verify-ecdsa | @@ -3361,6 +3367,67 @@ No authorization required **200** | createTokenizerResponse wraps response body. | - | **0** | errorResponse wraps any error to return it as a JSON object with one \"error\" field. | - | + +# **createUSC** +> CreateUSCOutput createUSC(body) + + + +### Example +```java +// Import classes: +import io.akeyless.client.ApiClient; +import io.akeyless.client.ApiException; +import io.akeyless.client.Configuration; +import io.akeyless.client.models.*; +import io.akeyless.client.api.V2Api; + +public class Example { + public static void main(String[] args) { + ApiClient defaultClient = Configuration.getDefaultApiClient(); + defaultClient.setBasePath("https://api.akeyless.io"); + + V2Api apiInstance = new V2Api(defaultClient); + CreateUSC body = new CreateUSC(); // CreateUSC | + try { + CreateUSCOutput result = apiInstance.createUSC(body); + System.out.println(result); + } catch (ApiException e) { + System.err.println("Exception when calling V2Api#createUSC"); + 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 +------------- | ------------- | ------------- | ------------- + **body** | [**CreateUSC**](CreateUSC.md)| | + +### Return type + +[**CreateUSCOutput**](CreateUSCOutput.md) + +### Authorization + +No authorization required + +### HTTP request headers + + - **Content-Type**: application/json + - **Accept**: application/json + +### HTTP response details +| Status code | Description | Response headers | +|-------------|-------------|------------------| +**201** | CreateUniversalSecretsConnectorResponse wraps response body. | - | +**0** | errorResponse wraps any error to return it as a JSON object with one \"error\" field. | - | + # **createUserEvent** > CreateUserEventOutput createUserEvent(body) @@ -18352,6 +18419,307 @@ No authorization required **200** | uploadRSAResponse wraps response body. | - | **0** | errorResponse wraps any error to return it as a JSON object with one \"error\" field. | - | + +# **uscCreate** +> UscCreateSecretOutput uscCreate(body) + + + +### Example +```java +// Import classes: +import io.akeyless.client.ApiClient; +import io.akeyless.client.ApiException; +import io.akeyless.client.Configuration; +import io.akeyless.client.models.*; +import io.akeyless.client.api.V2Api; + +public class Example { + public static void main(String[] args) { + ApiClient defaultClient = Configuration.getDefaultApiClient(); + defaultClient.setBasePath("https://api.akeyless.io"); + + V2Api apiInstance = new V2Api(defaultClient); + UscUpdate body = new UscUpdate(); // UscUpdate | + try { + UscCreateSecretOutput result = apiInstance.uscCreate(body); + System.out.println(result); + } catch (ApiException e) { + System.err.println("Exception when calling V2Api#uscCreate"); + 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 +------------- | ------------- | ------------- | ------------- + **body** | [**UscUpdate**](UscUpdate.md)| | + +### Return type + +[**UscCreateSecretOutput**](UscCreateSecretOutput.md) + +### Authorization + +No authorization required + +### HTTP request headers + + - **Content-Type**: application/json + - **Accept**: application/json + +### HTTP response details +| Status code | Description | Response headers | +|-------------|-------------|------------------| +**200** | uscCreateResponse wraps response body. | - | +**0** | errorResponse wraps any error to return it as a JSON object with one \"error\" field. | - | + + +# **uscDelete** +> UscDeleteSecretOutput uscDelete(body) + + + +### Example +```java +// Import classes: +import io.akeyless.client.ApiClient; +import io.akeyless.client.ApiException; +import io.akeyless.client.Configuration; +import io.akeyless.client.models.*; +import io.akeyless.client.api.V2Api; + +public class Example { + public static void main(String[] args) { + ApiClient defaultClient = Configuration.getDefaultApiClient(); + defaultClient.setBasePath("https://api.akeyless.io"); + + V2Api apiInstance = new V2Api(defaultClient); + UscDelete body = new UscDelete(); // UscDelete | + try { + UscDeleteSecretOutput result = apiInstance.uscDelete(body); + System.out.println(result); + } catch (ApiException e) { + System.err.println("Exception when calling V2Api#uscDelete"); + 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 +------------- | ------------- | ------------- | ------------- + **body** | [**UscDelete**](UscDelete.md)| | + +### Return type + +[**UscDeleteSecretOutput**](UscDeleteSecretOutput.md) + +### Authorization + +No authorization required + +### HTTP request headers + + - **Content-Type**: application/json + - **Accept**: application/json + +### HTTP response details +| Status code | Description | Response headers | +|-------------|-------------|------------------| +**202** | uscDeleteResponse wraps response body. | - | +**0** | errorResponse wraps any error to return it as a JSON object with one \"error\" field. | - | + + +# **uscGet** +> UscGetSecretOutput uscGet(body) + + + +### Example +```java +// Import classes: +import io.akeyless.client.ApiClient; +import io.akeyless.client.ApiException; +import io.akeyless.client.Configuration; +import io.akeyless.client.models.*; +import io.akeyless.client.api.V2Api; + +public class Example { + public static void main(String[] args) { + ApiClient defaultClient = Configuration.getDefaultApiClient(); + defaultClient.setBasePath("https://api.akeyless.io"); + + V2Api apiInstance = new V2Api(defaultClient); + UscGet body = new UscGet(); // UscGet | + try { + UscGetSecretOutput result = apiInstance.uscGet(body); + System.out.println(result); + } catch (ApiException e) { + System.err.println("Exception when calling V2Api#uscGet"); + 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 +------------- | ------------- | ------------- | ------------- + **body** | [**UscGet**](UscGet.md)| | + +### Return type + +[**UscGetSecretOutput**](UscGetSecretOutput.md) + +### Authorization + +No authorization required + +### HTTP request headers + + - **Content-Type**: application/json + - **Accept**: application/json + +### HTTP response details +| Status code | Description | Response headers | +|-------------|-------------|------------------| +**200** | uscGetResponse wraps response body. | - | +**0** | errorResponse wraps any error to return it as a JSON object with one \"error\" field. | - | + + +# **uscList** +> UscListSecretsOutput uscList(body) + + + +### Example +```java +// Import classes: +import io.akeyless.client.ApiClient; +import io.akeyless.client.ApiException; +import io.akeyless.client.Configuration; +import io.akeyless.client.models.*; +import io.akeyless.client.api.V2Api; + +public class Example { + public static void main(String[] args) { + ApiClient defaultClient = Configuration.getDefaultApiClient(); + defaultClient.setBasePath("https://api.akeyless.io"); + + V2Api apiInstance = new V2Api(defaultClient); + UscList body = new UscList(); // UscList | + try { + UscListSecretsOutput result = apiInstance.uscList(body); + System.out.println(result); + } catch (ApiException e) { + System.err.println("Exception when calling V2Api#uscList"); + 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 +------------- | ------------- | ------------- | ------------- + **body** | [**UscList**](UscList.md)| | + +### Return type + +[**UscListSecretsOutput**](UscListSecretsOutput.md) + +### Authorization + +No authorization required + +### HTTP request headers + + - **Content-Type**: application/json + - **Accept**: application/json + +### HTTP response details +| Status code | Description | Response headers | +|-------------|-------------|------------------| +**200** | uscListResponse wraps response body. | - | +**0** | errorResponse wraps any error to return it as a JSON object with one \"error\" field. | - | + + +# **uscUpdate** +> UscUpdateSecretOutput uscUpdate() + + + +### Example +```java +// Import classes: +import io.akeyless.client.ApiClient; +import io.akeyless.client.ApiException; +import io.akeyless.client.Configuration; +import io.akeyless.client.models.*; +import io.akeyless.client.api.V2Api; + +public class Example { + public static void main(String[] args) { + ApiClient defaultClient = Configuration.getDefaultApiClient(); + defaultClient.setBasePath("https://api.akeyless.io"); + + V2Api apiInstance = new V2Api(defaultClient); + try { + UscUpdateSecretOutput result = apiInstance.uscUpdate(); + System.out.println(result); + } catch (ApiException e) { + System.err.println("Exception when calling V2Api#uscUpdate"); + System.err.println("Status code: " + e.getCode()); + System.err.println("Reason: " + e.getResponseBody()); + System.err.println("Response headers: " + e.getResponseHeaders()); + e.printStackTrace(); + } + } +} +``` + +### Parameters +This endpoint does not need any parameter. + +### Return type + +[**UscUpdateSecretOutput**](UscUpdateSecretOutput.md) + +### Authorization + +No authorization required + +### HTTP request headers + + - **Content-Type**: Not defined + - **Accept**: application/json + +### HTTP response details +| Status code | Description | Response headers | +|-------------|-------------|------------------| +**200** | uscUpdateResponse wraps response body. | - | +**0** | errorResponse wraps any error to return it as a JSON object with one \"error\" field. | - | + # **validateToken** > ValidateTokenOutput validateToken(body) diff --git a/pom.xml b/pom.xml index 7130a165..d0785fd1 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ akeyless-java jar akeyless-java - 3.5.3 + 3.5.4 https://github.com/akeylesslabs/akeyless-java Akeyless Java SDK diff --git a/src/main/java/io/akeyless/client/ApiClient.java b/src/main/java/io/akeyless/client/ApiClient.java index c2417907..de0027c9 100644 --- a/src/main/java/io/akeyless/client/ApiClient.java +++ b/src/main/java/io/akeyless/client/ApiClient.java @@ -129,7 +129,7 @@ private void init() { json = new JSON(); // Set default User-Agent. - setUserAgent("OpenAPI-Generator/3.5.3/java"); + setUserAgent("OpenAPI-Generator/3.5.4/java"); authentications = new HashMap(); } diff --git a/src/main/java/io/akeyless/client/api/V2Api.java b/src/main/java/io/akeyless/client/api/V2Api.java index 862b2d95..44242dfb 100644 --- a/src/main/java/io/akeyless/client/api/V2Api.java +++ b/src/main/java/io/akeyless/client/api/V2Api.java @@ -130,6 +130,8 @@ import io.akeyless.client.model.CreateTargetItemAssocOutput; import io.akeyless.client.model.CreateTokenizer; import io.akeyless.client.model.CreateTokenizerOutput; +import io.akeyless.client.model.CreateUSC; +import io.akeyless.client.model.CreateUSCOutput; import io.akeyless.client.model.CreateUserEvent; import io.akeyless.client.model.CreateUserEventOutput; import io.akeyless.client.model.CreateWebTarget; @@ -559,6 +561,15 @@ import io.akeyless.client.model.UpdateZeroSSLTarget; import io.akeyless.client.model.UpdateZeroSSLTargetOutput; import io.akeyless.client.model.UploadRSA; +import io.akeyless.client.model.UscCreateSecretOutput; +import io.akeyless.client.model.UscDelete; +import io.akeyless.client.model.UscDeleteSecretOutput; +import io.akeyless.client.model.UscGet; +import io.akeyless.client.model.UscGetSecretOutput; +import io.akeyless.client.model.UscList; +import io.akeyless.client.model.UscListSecretsOutput; +import io.akeyless.client.model.UscUpdate; +import io.akeyless.client.model.UscUpdateSecretOutput; import io.akeyless.client.model.ValidateToken; import io.akeyless.client.model.ValidateTokenOutput; import io.akeyless.client.model.VerifyDataWithClassicKey; @@ -7168,6 +7179,137 @@ public okhttp3.Call createTokenizerAsync(CreateTokenizer body, final ApiCallback localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } + /** + * Build call for createUSC + * @param body (required) + * @param _callback Callback for upload/download progress + * @return Call to execute + * @throws ApiException If fail to serialize the request body object + * @http.response.details + + + + +
Status Code Description Response Headers
201 CreateUniversalSecretsConnectorResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
+ */ + public okhttp3.Call createUSCCall(CreateUSC body, 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 = body; + + // create path and map variables + String localVarPath = "/create-usc"; + + List localVarQueryParams = new ArrayList(); + List localVarCollectionQueryParams = new ArrayList(); + Map localVarHeaderParams = new HashMap(); + Map localVarCookieParams = new HashMap(); + Map localVarFormParams = new HashMap(); + + final String[] localVarAccepts = { + "application/json" + }; + final String localVarAccept = localVarApiClient.selectHeaderAccept(localVarAccepts); + if (localVarAccept != null) { + localVarHeaderParams.put("Accept", localVarAccept); + } + + final String[] localVarContentTypes = { + "application/json" + }; + final String localVarContentType = localVarApiClient.selectHeaderContentType(localVarContentTypes); + if (localVarContentType != null) { + localVarHeaderParams.put("Content-Type", localVarContentType); + } + + String[] localVarAuthNames = new String[] { }; + return localVarApiClient.buildCall(basePath, localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); + } + + @SuppressWarnings("rawtypes") + private okhttp3.Call createUSCValidateBeforeCall(CreateUSC body, final ApiCallback _callback) throws ApiException { + + // verify the required parameter 'body' is set + if (body == null) { + throw new ApiException("Missing the required parameter 'body' when calling createUSC(Async)"); + } + + + okhttp3.Call localVarCall = createUSCCall(body, _callback); + return localVarCall; + + } + + /** + * + * + * @param body (required) + * @return CreateUSCOutput + * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body + * @http.response.details + + + + +
Status Code Description Response Headers
201 CreateUniversalSecretsConnectorResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
+ */ + public CreateUSCOutput createUSC(CreateUSC body) throws ApiException { + ApiResponse localVarResp = createUSCWithHttpInfo(body); + return localVarResp.getData(); + } + + /** + * + * + * @param body (required) + * @return ApiResponse<CreateUSCOutput> + * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body + * @http.response.details + + + + +
Status Code Description Response Headers
201 CreateUniversalSecretsConnectorResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
+ */ + public ApiResponse createUSCWithHttpInfo(CreateUSC body) throws ApiException { + okhttp3.Call localVarCall = createUSCValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); + return localVarApiClient.execute(localVarCall, localVarReturnType); + } + + /** + * (asynchronously) + * + * @param body (required) + * @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 + + + + +
Status Code Description Response Headers
201 CreateUniversalSecretsConnectorResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
+ */ + public okhttp3.Call createUSCAsync(CreateUSC body, final ApiCallback _callback) throws ApiException { + + okhttp3.Call localVarCall = createUSCValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); + localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); + return localVarCall; + } /** * Build call for createUserEvent * @param body (required) @@ -7621,15 +7763,670 @@ public okhttp3.Call createZeroSSLTargetCall(CreateZeroSSLTarget body, final ApiC } @SuppressWarnings("rawtypes") - private okhttp3.Call createZeroSSLTargetValidateBeforeCall(CreateZeroSSLTarget body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call createZeroSSLTargetValidateBeforeCall(CreateZeroSSLTarget body, final ApiCallback _callback) throws ApiException { + + // verify the required parameter 'body' is set + if (body == null) { + throw new ApiException("Missing the required parameter 'body' when calling createZeroSSLTarget(Async)"); + } + + + okhttp3.Call localVarCall = createZeroSSLTargetCall(body, _callback); + return localVarCall; + + } + + /** + * + * + * @param body (required) + * @return CreateZeroSSLTargetOutput + * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body + * @http.response.details + + + + +
Status Code Description Response Headers
200 createZeroSSLTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
+ */ + public CreateZeroSSLTargetOutput createZeroSSLTarget(CreateZeroSSLTarget body) throws ApiException { + ApiResponse localVarResp = createZeroSSLTargetWithHttpInfo(body); + return localVarResp.getData(); + } + + /** + * + * + * @param body (required) + * @return ApiResponse<CreateZeroSSLTargetOutput> + * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body + * @http.response.details + + + + +
Status Code Description Response Headers
200 createZeroSSLTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
+ */ + public ApiResponse createZeroSSLTargetWithHttpInfo(CreateZeroSSLTarget body) throws ApiException { + okhttp3.Call localVarCall = createZeroSSLTargetValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); + return localVarApiClient.execute(localVarCall, localVarReturnType); + } + + /** + * (asynchronously) + * + * @param body (required) + * @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 + + + + +
Status Code Description Response Headers
200 createZeroSSLTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
+ */ + public okhttp3.Call createZeroSSLTargetAsync(CreateZeroSSLTarget body, final ApiCallback _callback) throws ApiException { + + okhttp3.Call localVarCall = createZeroSSLTargetValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); + localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); + return localVarCall; + } + /** + * Build call for createldapTarget + * @param body (required) + * @param _callback Callback for upload/download progress + * @return Call to execute + * @throws ApiException If fail to serialize the request body object + * @http.response.details + + + + +
Status Code Description Response Headers
200 createldapTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
+ */ + public okhttp3.Call createldapTargetCall(CreateLdapTarget body, 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 = body; + + // create path and map variables + String localVarPath = "/create-ldap-target"; + + List localVarQueryParams = new ArrayList(); + List localVarCollectionQueryParams = new ArrayList(); + Map localVarHeaderParams = new HashMap(); + Map localVarCookieParams = new HashMap(); + Map localVarFormParams = new HashMap(); + + final String[] localVarAccepts = { + "application/json" + }; + final String localVarAccept = localVarApiClient.selectHeaderAccept(localVarAccepts); + if (localVarAccept != null) { + localVarHeaderParams.put("Accept", localVarAccept); + } + + final String[] localVarContentTypes = { + "application/json" + }; + final String localVarContentType = localVarApiClient.selectHeaderContentType(localVarContentTypes); + if (localVarContentType != null) { + localVarHeaderParams.put("Content-Type", localVarContentType); + } + + String[] localVarAuthNames = new String[] { }; + return localVarApiClient.buildCall(basePath, localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); + } + + @SuppressWarnings("rawtypes") + private okhttp3.Call createldapTargetValidateBeforeCall(CreateLdapTarget body, final ApiCallback _callback) throws ApiException { + + // verify the required parameter 'body' is set + if (body == null) { + throw new ApiException("Missing the required parameter 'body' when calling createldapTarget(Async)"); + } + + + okhttp3.Call localVarCall = createldapTargetCall(body, _callback); + return localVarCall; + + } + + /** + * + * + * @param body (required) + * @return CreateLdapTargetOutput + * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body + * @http.response.details + + + + +
Status Code Description Response Headers
200 createldapTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
+ */ + public CreateLdapTargetOutput createldapTarget(CreateLdapTarget body) throws ApiException { + ApiResponse localVarResp = createldapTargetWithHttpInfo(body); + return localVarResp.getData(); + } + + /** + * + * + * @param body (required) + * @return ApiResponse<CreateLdapTargetOutput> + * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body + * @http.response.details + + + + +
Status Code Description Response Headers
200 createldapTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
+ */ + public ApiResponse createldapTargetWithHttpInfo(CreateLdapTarget body) throws ApiException { + okhttp3.Call localVarCall = createldapTargetValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); + return localVarApiClient.execute(localVarCall, localVarReturnType); + } + + /** + * (asynchronously) + * + * @param body (required) + * @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 + + + + +
Status Code Description Response Headers
200 createldapTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
+ */ + public okhttp3.Call createldapTargetAsync(CreateLdapTarget body, final ApiCallback _callback) throws ApiException { + + okhttp3.Call localVarCall = createldapTargetValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); + localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); + return localVarCall; + } + /** + * Build call for decrypt + * @param body (required) + * @param _callback Callback for upload/download progress + * @return Call to execute + * @throws ApiException If fail to serialize the request body object + * @http.response.details + + + + +
Status Code Description Response Headers
200 decryptResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
+ */ + public okhttp3.Call decryptCall(Decrypt body, 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 = body; + + // create path and map variables + String localVarPath = "/decrypt"; + + List localVarQueryParams = new ArrayList(); + List localVarCollectionQueryParams = new ArrayList(); + Map localVarHeaderParams = new HashMap(); + Map localVarCookieParams = new HashMap(); + Map localVarFormParams = new HashMap(); + + final String[] localVarAccepts = { + "application/json" + }; + final String localVarAccept = localVarApiClient.selectHeaderAccept(localVarAccepts); + if (localVarAccept != null) { + localVarHeaderParams.put("Accept", localVarAccept); + } + + final String[] localVarContentTypes = { + "application/json" + }; + final String localVarContentType = localVarApiClient.selectHeaderContentType(localVarContentTypes); + if (localVarContentType != null) { + localVarHeaderParams.put("Content-Type", localVarContentType); + } + + String[] localVarAuthNames = new String[] { }; + return localVarApiClient.buildCall(basePath, localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); + } + + @SuppressWarnings("rawtypes") + private okhttp3.Call decryptValidateBeforeCall(Decrypt body, final ApiCallback _callback) throws ApiException { + + // verify the required parameter 'body' is set + if (body == null) { + throw new ApiException("Missing the required parameter 'body' when calling decrypt(Async)"); + } + + + okhttp3.Call localVarCall = decryptCall(body, _callback); + return localVarCall; + + } + + /** + * + * + * @param body (required) + * @return DecryptOutput + * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body + * @http.response.details + + + + +
Status Code Description Response Headers
200 decryptResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
+ */ + public DecryptOutput decrypt(Decrypt body) throws ApiException { + ApiResponse localVarResp = decryptWithHttpInfo(body); + return localVarResp.getData(); + } + + /** + * + * + * @param body (required) + * @return ApiResponse<DecryptOutput> + * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body + * @http.response.details + + + + +
Status Code Description Response Headers
200 decryptResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
+ */ + public ApiResponse decryptWithHttpInfo(Decrypt body) throws ApiException { + okhttp3.Call localVarCall = decryptValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); + return localVarApiClient.execute(localVarCall, localVarReturnType); + } + + /** + * (asynchronously) + * + * @param body (required) + * @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 + + + + +
Status Code Description Response Headers
200 decryptResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
+ */ + public okhttp3.Call decryptAsync(Decrypt body, final ApiCallback _callback) throws ApiException { + + okhttp3.Call localVarCall = decryptValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); + localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); + return localVarCall; + } + /** + * Build call for decryptGPG + * @param body (required) + * @param _callback Callback for upload/download progress + * @return Call to execute + * @throws ApiException If fail to serialize the request body object + * @http.response.details + + + + +
Status Code Description Response Headers
200 decryptGPGResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
+ */ + public okhttp3.Call decryptGPGCall(DecryptGPG body, 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 = body; + + // create path and map variables + String localVarPath = "/decrypt-gpg"; + + List localVarQueryParams = new ArrayList(); + List localVarCollectionQueryParams = new ArrayList(); + Map localVarHeaderParams = new HashMap(); + Map localVarCookieParams = new HashMap(); + Map localVarFormParams = new HashMap(); + + final String[] localVarAccepts = { + "application/json" + }; + final String localVarAccept = localVarApiClient.selectHeaderAccept(localVarAccepts); + if (localVarAccept != null) { + localVarHeaderParams.put("Accept", localVarAccept); + } + + final String[] localVarContentTypes = { + "application/json" + }; + final String localVarContentType = localVarApiClient.selectHeaderContentType(localVarContentTypes); + if (localVarContentType != null) { + localVarHeaderParams.put("Content-Type", localVarContentType); + } + + String[] localVarAuthNames = new String[] { }; + return localVarApiClient.buildCall(basePath, localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); + } + + @SuppressWarnings("rawtypes") + private okhttp3.Call decryptGPGValidateBeforeCall(DecryptGPG body, final ApiCallback _callback) throws ApiException { + + // verify the required parameter 'body' is set + if (body == null) { + throw new ApiException("Missing the required parameter 'body' when calling decryptGPG(Async)"); + } + + + okhttp3.Call localVarCall = decryptGPGCall(body, _callback); + return localVarCall; + + } + + /** + * + * + * @param body (required) + * @return DecryptGPGOutput + * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body + * @http.response.details + + + + +
Status Code Description Response Headers
200 decryptGPGResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
+ */ + public DecryptGPGOutput decryptGPG(DecryptGPG body) throws ApiException { + ApiResponse localVarResp = decryptGPGWithHttpInfo(body); + return localVarResp.getData(); + } + + /** + * + * + * @param body (required) + * @return ApiResponse<DecryptGPGOutput> + * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body + * @http.response.details + + + + +
Status Code Description Response Headers
200 decryptGPGResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
+ */ + public ApiResponse decryptGPGWithHttpInfo(DecryptGPG body) throws ApiException { + okhttp3.Call localVarCall = decryptGPGValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); + return localVarApiClient.execute(localVarCall, localVarReturnType); + } + + /** + * (asynchronously) + * + * @param body (required) + * @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 + + + + +
Status Code Description Response Headers
200 decryptGPGResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
+ */ + public okhttp3.Call decryptGPGAsync(DecryptGPG body, final ApiCallback _callback) throws ApiException { + + okhttp3.Call localVarCall = decryptGPGValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); + localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); + return localVarCall; + } + /** + * Build call for decryptPKCS1 + * @param body (required) + * @param _callback Callback for upload/download progress + * @return Call to execute + * @throws ApiException If fail to serialize the request body object + * @http.response.details + + + + +
Status Code Description Response Headers
200 decryptPKCS1Response wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
+ */ + public okhttp3.Call decryptPKCS1Call(DecryptPKCS1 body, 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 = body; + + // create path and map variables + String localVarPath = "/decrypt-pkcs1"; + + List localVarQueryParams = new ArrayList(); + List localVarCollectionQueryParams = new ArrayList(); + Map localVarHeaderParams = new HashMap(); + Map localVarCookieParams = new HashMap(); + Map localVarFormParams = new HashMap(); + + final String[] localVarAccepts = { + "application/json" + }; + final String localVarAccept = localVarApiClient.selectHeaderAccept(localVarAccepts); + if (localVarAccept != null) { + localVarHeaderParams.put("Accept", localVarAccept); + } + + final String[] localVarContentTypes = { + "application/json" + }; + final String localVarContentType = localVarApiClient.selectHeaderContentType(localVarContentTypes); + if (localVarContentType != null) { + localVarHeaderParams.put("Content-Type", localVarContentType); + } + + String[] localVarAuthNames = new String[] { }; + return localVarApiClient.buildCall(basePath, localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); + } + + @SuppressWarnings("rawtypes") + private okhttp3.Call decryptPKCS1ValidateBeforeCall(DecryptPKCS1 body, final ApiCallback _callback) throws ApiException { + + // verify the required parameter 'body' is set + if (body == null) { + throw new ApiException("Missing the required parameter 'body' when calling decryptPKCS1(Async)"); + } + + + okhttp3.Call localVarCall = decryptPKCS1Call(body, _callback); + return localVarCall; + + } + + /** + * + * + * @param body (required) + * @return DecryptPKCS1Output + * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body + * @http.response.details + + + + +
Status Code Description Response Headers
200 decryptPKCS1Response wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
+ */ + public DecryptPKCS1Output decryptPKCS1(DecryptPKCS1 body) throws ApiException { + ApiResponse localVarResp = decryptPKCS1WithHttpInfo(body); + return localVarResp.getData(); + } + + /** + * + * + * @param body (required) + * @return ApiResponse<DecryptPKCS1Output> + * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body + * @http.response.details + + + + +
Status Code Description Response Headers
200 decryptPKCS1Response wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
+ */ + public ApiResponse decryptPKCS1WithHttpInfo(DecryptPKCS1 body) throws ApiException { + okhttp3.Call localVarCall = decryptPKCS1ValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); + return localVarApiClient.execute(localVarCall, localVarReturnType); + } + + /** + * (asynchronously) + * + * @param body (required) + * @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 + + + + +
Status Code Description Response Headers
200 decryptPKCS1Response wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
+ */ + public okhttp3.Call decryptPKCS1Async(DecryptPKCS1 body, final ApiCallback _callback) throws ApiException { + + okhttp3.Call localVarCall = decryptPKCS1ValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); + localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); + return localVarCall; + } + /** + * Build call for decryptWithClassicKey + * @param body (required) + * @param _callback Callback for upload/download progress + * @return Call to execute + * @throws ApiException If fail to serialize the request body object + * @http.response.details + + + + +
Status Code Description Response Headers
200 decryptWithClassicKeyResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
+ */ + public okhttp3.Call decryptWithClassicKeyCall(DecryptWithClassicKey body, 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 = body; + + // create path and map variables + String localVarPath = "/decrypt-with-classic-key"; + + List localVarQueryParams = new ArrayList(); + List localVarCollectionQueryParams = new ArrayList(); + Map localVarHeaderParams = new HashMap(); + Map localVarCookieParams = new HashMap(); + Map localVarFormParams = new HashMap(); + + final String[] localVarAccepts = { + "application/json" + }; + final String localVarAccept = localVarApiClient.selectHeaderAccept(localVarAccepts); + if (localVarAccept != null) { + localVarHeaderParams.put("Accept", localVarAccept); + } + + final String[] localVarContentTypes = { + "application/json" + }; + final String localVarContentType = localVarApiClient.selectHeaderContentType(localVarContentTypes); + if (localVarContentType != null) { + localVarHeaderParams.put("Content-Type", localVarContentType); + } + + String[] localVarAuthNames = new String[] { }; + return localVarApiClient.buildCall(basePath, localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); + } + + @SuppressWarnings("rawtypes") + private okhttp3.Call decryptWithClassicKeyValidateBeforeCall(DecryptWithClassicKey body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling createZeroSSLTarget(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling decryptWithClassicKey(Async)"); } - okhttp3.Call localVarCall = createZeroSSLTargetCall(body, _callback); + okhttp3.Call localVarCall = decryptWithClassicKeyCall(body, _callback); return localVarCall; } @@ -7638,17 +8435,17 @@ private okhttp3.Call createZeroSSLTargetValidateBeforeCall(CreateZeroSSLTarget b * * * @param body (required) - * @return CreateZeroSSLTargetOutput + * @return DecryptWithClassicKeyOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 createZeroSSLTargetResponse wraps response body. -
200 decryptWithClassicKeyResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public CreateZeroSSLTargetOutput createZeroSSLTarget(CreateZeroSSLTarget body) throws ApiException { - ApiResponse localVarResp = createZeroSSLTargetWithHttpInfo(body); + public DecryptWithClassicKeyOutput decryptWithClassicKey(DecryptWithClassicKey body) throws ApiException { + ApiResponse localVarResp = decryptWithClassicKeyWithHttpInfo(body); return localVarResp.getData(); } @@ -7656,18 +8453,18 @@ public CreateZeroSSLTargetOutput createZeroSSLTarget(CreateZeroSSLTarget body) t * * * @param body (required) - * @return ApiResponse<CreateZeroSSLTargetOutput> + * @return ApiResponse<DecryptWithClassicKeyOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 createZeroSSLTargetResponse wraps response body. -
200 decryptWithClassicKeyResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse createZeroSSLTargetWithHttpInfo(CreateZeroSSLTarget body) throws ApiException { - okhttp3.Call localVarCall = createZeroSSLTargetValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse decryptWithClassicKeyWithHttpInfo(DecryptWithClassicKey body) throws ApiException { + okhttp3.Call localVarCall = decryptWithClassicKeyValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -7681,19 +8478,19 @@ public ApiResponse createZeroSSLTargetWithHttpInfo(Cr * @http.response.details - +
Status Code Description Response Headers
200 createZeroSSLTargetResponse wraps response body. -
200 decryptWithClassicKeyResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call createZeroSSLTargetAsync(CreateZeroSSLTarget body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call decryptWithClassicKeyAsync(DecryptWithClassicKey body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = createZeroSSLTargetValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = decryptWithClassicKeyValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for createldapTarget + * Build call for deleteAuthMethod * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -7701,11 +8498,11 @@ public okhttp3.Call createZeroSSLTargetAsync(CreateZeroSSLTarget body, final Api * @http.response.details - +
Status Code Description Response Headers
200 createldapTargetResponse wraps response body. -
200 deleteAuthMethodResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call createldapTargetCall(CreateLdapTarget body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call deleteAuthMethodCall(DeleteAuthMethod body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -7723,7 +8520,7 @@ public okhttp3.Call createldapTargetCall(CreateLdapTarget body, final ApiCallbac Object localVarPostBody = body; // create path and map variables - String localVarPath = "/create-ldap-target"; + String localVarPath = "/delete-auth-method"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -7752,15 +8549,15 @@ public okhttp3.Call createldapTargetCall(CreateLdapTarget body, final ApiCallbac } @SuppressWarnings("rawtypes") - private okhttp3.Call createldapTargetValidateBeforeCall(CreateLdapTarget body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call deleteAuthMethodValidateBeforeCall(DeleteAuthMethod body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling createldapTarget(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling deleteAuthMethod(Async)"); } - okhttp3.Call localVarCall = createldapTargetCall(body, _callback); + okhttp3.Call localVarCall = deleteAuthMethodCall(body, _callback); return localVarCall; } @@ -7769,17 +8566,17 @@ private okhttp3.Call createldapTargetValidateBeforeCall(CreateLdapTarget body, f * * * @param body (required) - * @return CreateLdapTargetOutput + * @return DeleteAuthMethodOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 createldapTargetResponse wraps response body. -
200 deleteAuthMethodResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public CreateLdapTargetOutput createldapTarget(CreateLdapTarget body) throws ApiException { - ApiResponse localVarResp = createldapTargetWithHttpInfo(body); + public DeleteAuthMethodOutput deleteAuthMethod(DeleteAuthMethod body) throws ApiException { + ApiResponse localVarResp = deleteAuthMethodWithHttpInfo(body); return localVarResp.getData(); } @@ -7787,18 +8584,18 @@ public CreateLdapTargetOutput createldapTarget(CreateLdapTarget body) throws Api * * * @param body (required) - * @return ApiResponse<CreateLdapTargetOutput> + * @return ApiResponse<DeleteAuthMethodOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 createldapTargetResponse wraps response body. -
200 deleteAuthMethodResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse createldapTargetWithHttpInfo(CreateLdapTarget body) throws ApiException { - okhttp3.Call localVarCall = createldapTargetValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse deleteAuthMethodWithHttpInfo(DeleteAuthMethod body) throws ApiException { + okhttp3.Call localVarCall = deleteAuthMethodValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -7812,19 +8609,19 @@ public ApiResponse createldapTargetWithHttpInfo(CreateLd * @http.response.details - +
Status Code Description Response Headers
200 createldapTargetResponse wraps response body. -
200 deleteAuthMethodResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call createldapTargetAsync(CreateLdapTarget body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call deleteAuthMethodAsync(DeleteAuthMethod body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = createldapTargetValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = deleteAuthMethodValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for decrypt + * Build call for deleteAuthMethods * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -7832,11 +8629,11 @@ public okhttp3.Call createldapTargetAsync(CreateLdapTarget body, final ApiCallba * @http.response.details - +
Status Code Description Response Headers
200 decryptResponse wraps response body. -
200 deleteAuthMethodsResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call decryptCall(Decrypt body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call deleteAuthMethodsCall(DeleteAuthMethods body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -7854,7 +8651,7 @@ public okhttp3.Call decryptCall(Decrypt body, final ApiCallback _callback) throw Object localVarPostBody = body; // create path and map variables - String localVarPath = "/decrypt"; + String localVarPath = "/delete-auth-methods"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -7883,15 +8680,15 @@ public okhttp3.Call decryptCall(Decrypt body, final ApiCallback _callback) throw } @SuppressWarnings("rawtypes") - private okhttp3.Call decryptValidateBeforeCall(Decrypt body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call deleteAuthMethodsValidateBeforeCall(DeleteAuthMethods body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling decrypt(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling deleteAuthMethods(Async)"); } - okhttp3.Call localVarCall = decryptCall(body, _callback); + okhttp3.Call localVarCall = deleteAuthMethodsCall(body, _callback); return localVarCall; } @@ -7900,17 +8697,17 @@ private okhttp3.Call decryptValidateBeforeCall(Decrypt body, final ApiCallback _ * * * @param body (required) - * @return DecryptOutput + * @return DeleteAuthMethodsOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 decryptResponse wraps response body. -
200 deleteAuthMethodsResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public DecryptOutput decrypt(Decrypt body) throws ApiException { - ApiResponse localVarResp = decryptWithHttpInfo(body); + public DeleteAuthMethodsOutput deleteAuthMethods(DeleteAuthMethods body) throws ApiException { + ApiResponse localVarResp = deleteAuthMethodsWithHttpInfo(body); return localVarResp.getData(); } @@ -7918,18 +8715,18 @@ public DecryptOutput decrypt(Decrypt body) throws ApiException { * * * @param body (required) - * @return ApiResponse<DecryptOutput> + * @return ApiResponse<DeleteAuthMethodsOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 decryptResponse wraps response body. -
200 deleteAuthMethodsResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse decryptWithHttpInfo(Decrypt body) throws ApiException { - okhttp3.Call localVarCall = decryptValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse deleteAuthMethodsWithHttpInfo(DeleteAuthMethods body) throws ApiException { + okhttp3.Call localVarCall = deleteAuthMethodsValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -7943,19 +8740,19 @@ public ApiResponse decryptWithHttpInfo(Decrypt body) throws ApiEx * @http.response.details - +
Status Code Description Response Headers
200 decryptResponse wraps response body. -
200 deleteAuthMethodsResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call decryptAsync(Decrypt body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call deleteAuthMethodsAsync(DeleteAuthMethods body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = decryptValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = deleteAuthMethodsValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for decryptGPG + * Build call for deleteEventForwarder * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -7963,11 +8760,11 @@ public okhttp3.Call decryptAsync(Decrypt body, final ApiCallback * @http.response.details - +
Status Code Description Response Headers
200 decryptGPGResponse wraps response body. -
200 deleteEventForwarderResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call decryptGPGCall(DecryptGPG body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call deleteEventForwarderCall(DeleteEventForwarder body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -7985,7 +8782,7 @@ public okhttp3.Call decryptGPGCall(DecryptGPG body, final ApiCallback _callback) Object localVarPostBody = body; // create path and map variables - String localVarPath = "/decrypt-gpg"; + String localVarPath = "/delete-event-forwarder"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -8014,15 +8811,15 @@ public okhttp3.Call decryptGPGCall(DecryptGPG body, final ApiCallback _callback) } @SuppressWarnings("rawtypes") - private okhttp3.Call decryptGPGValidateBeforeCall(DecryptGPG body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call deleteEventForwarderValidateBeforeCall(DeleteEventForwarder body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling decryptGPG(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling deleteEventForwarder(Async)"); } - okhttp3.Call localVarCall = decryptGPGCall(body, _callback); + okhttp3.Call localVarCall = deleteEventForwarderCall(body, _callback); return localVarCall; } @@ -8031,17 +8828,17 @@ private okhttp3.Call decryptGPGValidateBeforeCall(DecryptGPG body, final ApiCall * * * @param body (required) - * @return DecryptGPGOutput + * @return Object * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 decryptGPGResponse wraps response body. -
200 deleteEventForwarderResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public DecryptGPGOutput decryptGPG(DecryptGPG body) throws ApiException { - ApiResponse localVarResp = decryptGPGWithHttpInfo(body); + public Object deleteEventForwarder(DeleteEventForwarder body) throws ApiException { + ApiResponse localVarResp = deleteEventForwarderWithHttpInfo(body); return localVarResp.getData(); } @@ -8049,18 +8846,18 @@ public DecryptGPGOutput decryptGPG(DecryptGPG body) throws ApiException { * * * @param body (required) - * @return ApiResponse<DecryptGPGOutput> + * @return ApiResponse<Object> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 decryptGPGResponse wraps response body. -
200 deleteEventForwarderResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse decryptGPGWithHttpInfo(DecryptGPG body) throws ApiException { - okhttp3.Call localVarCall = decryptGPGValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse deleteEventForwarderWithHttpInfo(DeleteEventForwarder body) throws ApiException { + okhttp3.Call localVarCall = deleteEventForwarderValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -8074,19 +8871,19 @@ public ApiResponse decryptGPGWithHttpInfo(DecryptGPG body) thr * @http.response.details - +
Status Code Description Response Headers
200 decryptGPGResponse wraps response body. -
200 deleteEventForwarderResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call decryptGPGAsync(DecryptGPG body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call deleteEventForwarderAsync(DeleteEventForwarder body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = decryptGPGValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = deleteEventForwarderValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for decryptPKCS1 + * Build call for deleteGatewayAllowedAccessId * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -8094,11 +8891,11 @@ public okhttp3.Call decryptGPGAsync(DecryptGPG body, final ApiCallback Status Code Description Response Headers - 200 decryptPKCS1Response wraps response body. - + 200 deleteGatewayAllowedAccessIdResponse wraps response body. - 0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. - */ - public okhttp3.Call decryptPKCS1Call(DecryptPKCS1 body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call deleteGatewayAllowedAccessIdCall(DeleteGatewayAllowedAccessId body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -8116,7 +8913,7 @@ public okhttp3.Call decryptPKCS1Call(DecryptPKCS1 body, final ApiCallback _callb Object localVarPostBody = body; // create path and map variables - String localVarPath = "/decrypt-pkcs1"; + String localVarPath = "/gateway-delete-allowed-management-access"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -8145,15 +8942,15 @@ public okhttp3.Call decryptPKCS1Call(DecryptPKCS1 body, final ApiCallback _callb } @SuppressWarnings("rawtypes") - private okhttp3.Call decryptPKCS1ValidateBeforeCall(DecryptPKCS1 body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call deleteGatewayAllowedAccessIdValidateBeforeCall(DeleteGatewayAllowedAccessId body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling decryptPKCS1(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling deleteGatewayAllowedAccessId(Async)"); } - okhttp3.Call localVarCall = decryptPKCS1Call(body, _callback); + okhttp3.Call localVarCall = deleteGatewayAllowedAccessIdCall(body, _callback); return localVarCall; } @@ -8162,17 +8959,17 @@ private okhttp3.Call decryptPKCS1ValidateBeforeCall(DecryptPKCS1 body, final Api * * * @param body (required) - * @return DecryptPKCS1Output + * @return Object * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 decryptPKCS1Response wraps response body. -
200 deleteGatewayAllowedAccessIdResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public DecryptPKCS1Output decryptPKCS1(DecryptPKCS1 body) throws ApiException { - ApiResponse localVarResp = decryptPKCS1WithHttpInfo(body); + public Object deleteGatewayAllowedAccessId(DeleteGatewayAllowedAccessId body) throws ApiException { + ApiResponse localVarResp = deleteGatewayAllowedAccessIdWithHttpInfo(body); return localVarResp.getData(); } @@ -8180,18 +8977,18 @@ public DecryptPKCS1Output decryptPKCS1(DecryptPKCS1 body) throws ApiException { * * * @param body (required) - * @return ApiResponse<DecryptPKCS1Output> + * @return ApiResponse<Object> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 decryptPKCS1Response wraps response body. -
200 deleteGatewayAllowedAccessIdResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse decryptPKCS1WithHttpInfo(DecryptPKCS1 body) throws ApiException { - okhttp3.Call localVarCall = decryptPKCS1ValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse deleteGatewayAllowedAccessIdWithHttpInfo(DeleteGatewayAllowedAccessId body) throws ApiException { + okhttp3.Call localVarCall = deleteGatewayAllowedAccessIdValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -8205,19 +9002,19 @@ public ApiResponse decryptPKCS1WithHttpInfo(DecryptPKCS1 bod * @http.response.details - +
Status Code Description Response Headers
200 decryptPKCS1Response wraps response body. -
200 deleteGatewayAllowedAccessIdResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call decryptPKCS1Async(DecryptPKCS1 body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call deleteGatewayAllowedAccessIdAsync(DeleteGatewayAllowedAccessId body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = decryptPKCS1ValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = deleteGatewayAllowedAccessIdValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for decryptWithClassicKey + * Build call for deleteGroup * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -8225,11 +9022,11 @@ public okhttp3.Call decryptPKCS1Async(DecryptPKCS1 body, final ApiCallback Status Code Description Response Headers - 200 decryptWithClassicKeyResponse wraps response body. - + 200 deleteGroupResponse wraps response body. - 0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. - */ - public okhttp3.Call decryptWithClassicKeyCall(DecryptWithClassicKey body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call deleteGroupCall(DeleteGroup body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -8247,7 +9044,7 @@ public okhttp3.Call decryptWithClassicKeyCall(DecryptWithClassicKey body, final Object localVarPostBody = body; // create path and map variables - String localVarPath = "/decrypt-with-classic-key"; + String localVarPath = "/delete-group"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -8276,15 +9073,15 @@ public okhttp3.Call decryptWithClassicKeyCall(DecryptWithClassicKey body, final } @SuppressWarnings("rawtypes") - private okhttp3.Call decryptWithClassicKeyValidateBeforeCall(DecryptWithClassicKey body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call deleteGroupValidateBeforeCall(DeleteGroup body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling decryptWithClassicKey(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling deleteGroup(Async)"); } - okhttp3.Call localVarCall = decryptWithClassicKeyCall(body, _callback); + okhttp3.Call localVarCall = deleteGroupCall(body, _callback); return localVarCall; } @@ -8293,17 +9090,17 @@ private okhttp3.Call decryptWithClassicKeyValidateBeforeCall(DecryptWithClassicK * * * @param body (required) - * @return DecryptWithClassicKeyOutput + * @return DeleteGroupOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 decryptWithClassicKeyResponse wraps response body. -
200 deleteGroupResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public DecryptWithClassicKeyOutput decryptWithClassicKey(DecryptWithClassicKey body) throws ApiException { - ApiResponse localVarResp = decryptWithClassicKeyWithHttpInfo(body); + public DeleteGroupOutput deleteGroup(DeleteGroup body) throws ApiException { + ApiResponse localVarResp = deleteGroupWithHttpInfo(body); return localVarResp.getData(); } @@ -8311,18 +9108,18 @@ public DecryptWithClassicKeyOutput decryptWithClassicKey(DecryptWithClassicKey b * * * @param body (required) - * @return ApiResponse<DecryptWithClassicKeyOutput> + * @return ApiResponse<DeleteGroupOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 decryptWithClassicKeyResponse wraps response body. -
200 deleteGroupResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse decryptWithClassicKeyWithHttpInfo(DecryptWithClassicKey body) throws ApiException { - okhttp3.Call localVarCall = decryptWithClassicKeyValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse deleteGroupWithHttpInfo(DeleteGroup body) throws ApiException { + okhttp3.Call localVarCall = deleteGroupValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -8336,19 +9133,19 @@ public ApiResponse decryptWithClassicKeyWithHttpInf * @http.response.details - +
Status Code Description Response Headers
200 decryptWithClassicKeyResponse wraps response body. -
200 deleteGroupResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call decryptWithClassicKeyAsync(DecryptWithClassicKey body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call deleteGroupAsync(DeleteGroup body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = decryptWithClassicKeyValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = deleteGroupValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for deleteAuthMethod + * Build call for deleteGwCluster * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -8356,11 +9153,11 @@ public okhttp3.Call decryptWithClassicKeyAsync(DecryptWithClassicKey body, final * @http.response.details - +
Status Code Description Response Headers
200 deleteAuthMethodResponse wraps response body. -
200 deleteGwClusterResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call deleteAuthMethodCall(DeleteAuthMethod body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call deleteGwClusterCall(DeleteGwCluster body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -8378,7 +9175,7 @@ public okhttp3.Call deleteAuthMethodCall(DeleteAuthMethod body, final ApiCallbac Object localVarPostBody = body; // create path and map variables - String localVarPath = "/delete-auth-method"; + String localVarPath = "/delete-gateway-cluster"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -8407,15 +9204,15 @@ public okhttp3.Call deleteAuthMethodCall(DeleteAuthMethod body, final ApiCallbac } @SuppressWarnings("rawtypes") - private okhttp3.Call deleteAuthMethodValidateBeforeCall(DeleteAuthMethod body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call deleteGwClusterValidateBeforeCall(DeleteGwCluster body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling deleteAuthMethod(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling deleteGwCluster(Async)"); } - okhttp3.Call localVarCall = deleteAuthMethodCall(body, _callback); + okhttp3.Call localVarCall = deleteGwClusterCall(body, _callback); return localVarCall; } @@ -8424,17 +9221,17 @@ private okhttp3.Call deleteAuthMethodValidateBeforeCall(DeleteAuthMethod body, f * * * @param body (required) - * @return DeleteAuthMethodOutput + * @return Object * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 deleteAuthMethodResponse wraps response body. -
200 deleteGwClusterResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public DeleteAuthMethodOutput deleteAuthMethod(DeleteAuthMethod body) throws ApiException { - ApiResponse localVarResp = deleteAuthMethodWithHttpInfo(body); + public Object deleteGwCluster(DeleteGwCluster body) throws ApiException { + ApiResponse localVarResp = deleteGwClusterWithHttpInfo(body); return localVarResp.getData(); } @@ -8442,18 +9239,18 @@ public DeleteAuthMethodOutput deleteAuthMethod(DeleteAuthMethod body) throws Api * * * @param body (required) - * @return ApiResponse<DeleteAuthMethodOutput> + * @return ApiResponse<Object> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 deleteAuthMethodResponse wraps response body. -
200 deleteGwClusterResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse deleteAuthMethodWithHttpInfo(DeleteAuthMethod body) throws ApiException { - okhttp3.Call localVarCall = deleteAuthMethodValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse deleteGwClusterWithHttpInfo(DeleteGwCluster body) throws ApiException { + okhttp3.Call localVarCall = deleteGwClusterValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -8467,19 +9264,19 @@ public ApiResponse deleteAuthMethodWithHttpInfo(DeleteAu * @http.response.details - +
Status Code Description Response Headers
200 deleteAuthMethodResponse wraps response body. -
200 deleteGwClusterResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call deleteAuthMethodAsync(DeleteAuthMethod body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call deleteGwClusterAsync(DeleteGwCluster body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = deleteAuthMethodValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = deleteGwClusterValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for deleteAuthMethods + * Build call for deleteItem * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -8487,11 +9284,11 @@ public okhttp3.Call deleteAuthMethodAsync(DeleteAuthMethod body, final ApiCallba * @http.response.details - +
Status Code Description Response Headers
200 deleteAuthMethodsResponse wraps response body. -
200 deleteItemResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call deleteAuthMethodsCall(DeleteAuthMethods body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call deleteItemCall(DeleteItem body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -8509,7 +9306,7 @@ public okhttp3.Call deleteAuthMethodsCall(DeleteAuthMethods body, final ApiCallb Object localVarPostBody = body; // create path and map variables - String localVarPath = "/delete-auth-methods"; + String localVarPath = "/delete-item"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -8538,15 +9335,15 @@ public okhttp3.Call deleteAuthMethodsCall(DeleteAuthMethods body, final ApiCallb } @SuppressWarnings("rawtypes") - private okhttp3.Call deleteAuthMethodsValidateBeforeCall(DeleteAuthMethods body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call deleteItemValidateBeforeCall(DeleteItem body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling deleteAuthMethods(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling deleteItem(Async)"); } - okhttp3.Call localVarCall = deleteAuthMethodsCall(body, _callback); + okhttp3.Call localVarCall = deleteItemCall(body, _callback); return localVarCall; } @@ -8555,17 +9352,17 @@ private okhttp3.Call deleteAuthMethodsValidateBeforeCall(DeleteAuthMethods body, * * * @param body (required) - * @return DeleteAuthMethodsOutput + * @return DeleteItemOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 deleteAuthMethodsResponse wraps response body. -
200 deleteItemResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public DeleteAuthMethodsOutput deleteAuthMethods(DeleteAuthMethods body) throws ApiException { - ApiResponse localVarResp = deleteAuthMethodsWithHttpInfo(body); + public DeleteItemOutput deleteItem(DeleteItem body) throws ApiException { + ApiResponse localVarResp = deleteItemWithHttpInfo(body); return localVarResp.getData(); } @@ -8573,18 +9370,18 @@ public DeleteAuthMethodsOutput deleteAuthMethods(DeleteAuthMethods body) throws * * * @param body (required) - * @return ApiResponse<DeleteAuthMethodsOutput> + * @return ApiResponse<DeleteItemOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 deleteAuthMethodsResponse wraps response body. -
200 deleteItemResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse deleteAuthMethodsWithHttpInfo(DeleteAuthMethods body) throws ApiException { - okhttp3.Call localVarCall = deleteAuthMethodsValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse deleteItemWithHttpInfo(DeleteItem body) throws ApiException { + okhttp3.Call localVarCall = deleteItemValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -8598,19 +9395,19 @@ public ApiResponse deleteAuthMethodsWithHttpInfo(Delete * @http.response.details - +
Status Code Description Response Headers
200 deleteAuthMethodsResponse wraps response body. -
200 deleteItemResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call deleteAuthMethodsAsync(DeleteAuthMethods body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call deleteItemAsync(DeleteItem body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = deleteAuthMethodsValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = deleteItemValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for deleteEventForwarder + * Build call for deleteItems * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -8618,11 +9415,11 @@ public okhttp3.Call deleteAuthMethodsAsync(DeleteAuthMethods body, final ApiCall * @http.response.details - +
Status Code Description Response Headers
200 deleteEventForwarderResponse wraps response body. -
200 deleteItemsResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call deleteEventForwarderCall(DeleteEventForwarder body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call deleteItemsCall(DeleteItems body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -8640,7 +9437,7 @@ public okhttp3.Call deleteEventForwarderCall(DeleteEventForwarder body, final Ap Object localVarPostBody = body; // create path and map variables - String localVarPath = "/delete-event-forwarder"; + String localVarPath = "/delete-items"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -8669,15 +9466,15 @@ public okhttp3.Call deleteEventForwarderCall(DeleteEventForwarder body, final Ap } @SuppressWarnings("rawtypes") - private okhttp3.Call deleteEventForwarderValidateBeforeCall(DeleteEventForwarder body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call deleteItemsValidateBeforeCall(DeleteItems body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling deleteEventForwarder(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling deleteItems(Async)"); } - okhttp3.Call localVarCall = deleteEventForwarderCall(body, _callback); + okhttp3.Call localVarCall = deleteItemsCall(body, _callback); return localVarCall; } @@ -8686,17 +9483,17 @@ private okhttp3.Call deleteEventForwarderValidateBeforeCall(DeleteEventForwarder * * * @param body (required) - * @return Object + * @return DeleteItemsOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 deleteEventForwarderResponse wraps response body. -
200 deleteItemsResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public Object deleteEventForwarder(DeleteEventForwarder body) throws ApiException { - ApiResponse localVarResp = deleteEventForwarderWithHttpInfo(body); + public DeleteItemsOutput deleteItems(DeleteItems body) throws ApiException { + ApiResponse localVarResp = deleteItemsWithHttpInfo(body); return localVarResp.getData(); } @@ -8704,18 +9501,18 @@ public Object deleteEventForwarder(DeleteEventForwarder body) throws ApiExceptio * * * @param body (required) - * @return ApiResponse<Object> + * @return ApiResponse<DeleteItemsOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 deleteEventForwarderResponse wraps response body. -
200 deleteItemsResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse deleteEventForwarderWithHttpInfo(DeleteEventForwarder body) throws ApiException { - okhttp3.Call localVarCall = deleteEventForwarderValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse deleteItemsWithHttpInfo(DeleteItems body) throws ApiException { + okhttp3.Call localVarCall = deleteItemsValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -8729,19 +9526,19 @@ public ApiResponse deleteEventForwarderWithHttpInfo(DeleteEventForwarder * @http.response.details - +
Status Code Description Response Headers
200 deleteEventForwarderResponse wraps response body. -
200 deleteItemsResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call deleteEventForwarderAsync(DeleteEventForwarder body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call deleteItemsAsync(DeleteItems body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = deleteEventForwarderValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = deleteItemsValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for deleteGatewayAllowedAccessId + * Build call for deleteRole * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -8749,11 +9546,11 @@ public okhttp3.Call deleteEventForwarderAsync(DeleteEventForwarder body, final A * @http.response.details - +
Status Code Description Response Headers
200 deleteGatewayAllowedAccessIdResponse wraps response body. -
200 deleteRoleResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call deleteGatewayAllowedAccessIdCall(DeleteGatewayAllowedAccessId body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call deleteRoleCall(DeleteRole body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -8771,7 +9568,7 @@ public okhttp3.Call deleteGatewayAllowedAccessIdCall(DeleteGatewayAllowedAccessI Object localVarPostBody = body; // create path and map variables - String localVarPath = "/gateway-delete-allowed-management-access"; + String localVarPath = "/delete-role"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -8800,15 +9597,15 @@ public okhttp3.Call deleteGatewayAllowedAccessIdCall(DeleteGatewayAllowedAccessI } @SuppressWarnings("rawtypes") - private okhttp3.Call deleteGatewayAllowedAccessIdValidateBeforeCall(DeleteGatewayAllowedAccessId body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call deleteRoleValidateBeforeCall(DeleteRole body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling deleteGatewayAllowedAccessId(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling deleteRole(Async)"); } - okhttp3.Call localVarCall = deleteGatewayAllowedAccessIdCall(body, _callback); + okhttp3.Call localVarCall = deleteRoleCall(body, _callback); return localVarCall; } @@ -8822,12 +9619,12 @@ private okhttp3.Call deleteGatewayAllowedAccessIdValidateBeforeCall(DeleteGatewa * @http.response.details - +
Status Code Description Response Headers
200 deleteGatewayAllowedAccessIdResponse wraps response body. -
200 deleteRoleResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public Object deleteGatewayAllowedAccessId(DeleteGatewayAllowedAccessId body) throws ApiException { - ApiResponse localVarResp = deleteGatewayAllowedAccessIdWithHttpInfo(body); + public Object deleteRole(DeleteRole body) throws ApiException { + ApiResponse localVarResp = deleteRoleWithHttpInfo(body); return localVarResp.getData(); } @@ -8840,12 +9637,12 @@ public Object deleteGatewayAllowedAccessId(DeleteGatewayAllowedAccessId body) th * @http.response.details - +
Status Code Description Response Headers
200 deleteGatewayAllowedAccessIdResponse wraps response body. -
200 deleteRoleResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse deleteGatewayAllowedAccessIdWithHttpInfo(DeleteGatewayAllowedAccessId body) throws ApiException { - okhttp3.Call localVarCall = deleteGatewayAllowedAccessIdValidateBeforeCall(body, null); + public ApiResponse deleteRoleWithHttpInfo(DeleteRole body) throws ApiException { + okhttp3.Call localVarCall = deleteRoleValidateBeforeCall(body, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -8860,19 +9657,19 @@ public ApiResponse deleteGatewayAllowedAccessIdWithHttpInfo(DeleteGatewa * @http.response.details - +
Status Code Description Response Headers
200 deleteGatewayAllowedAccessIdResponse wraps response body. -
200 deleteRoleResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call deleteGatewayAllowedAccessIdAsync(DeleteGatewayAllowedAccessId body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call deleteRoleAsync(DeleteRole body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = deleteGatewayAllowedAccessIdValidateBeforeCall(body, _callback); + okhttp3.Call localVarCall = deleteRoleValidateBeforeCall(body, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for deleteGroup + * Build call for deleteRoleAssociation * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -8880,11 +9677,11 @@ public okhttp3.Call deleteGatewayAllowedAccessIdAsync(DeleteGatewayAllowedAccess * @http.response.details - +
Status Code Description Response Headers
200 deleteGroupResponse wraps response body. -
200 deleteRoleAssociationResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call deleteGroupCall(DeleteGroup body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call deleteRoleAssociationCall(DeleteRoleAssociation body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -8902,7 +9699,7 @@ public okhttp3.Call deleteGroupCall(DeleteGroup body, final ApiCallback _callbac Object localVarPostBody = body; // create path and map variables - String localVarPath = "/delete-group"; + String localVarPath = "/delete-assoc"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -8931,15 +9728,15 @@ public okhttp3.Call deleteGroupCall(DeleteGroup body, final ApiCallback _callbac } @SuppressWarnings("rawtypes") - private okhttp3.Call deleteGroupValidateBeforeCall(DeleteGroup body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call deleteRoleAssociationValidateBeforeCall(DeleteRoleAssociation body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling deleteGroup(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling deleteRoleAssociation(Async)"); } - okhttp3.Call localVarCall = deleteGroupCall(body, _callback); + okhttp3.Call localVarCall = deleteRoleAssociationCall(body, _callback); return localVarCall; } @@ -8948,17 +9745,17 @@ private okhttp3.Call deleteGroupValidateBeforeCall(DeleteGroup body, final ApiCa * * * @param body (required) - * @return DeleteGroupOutput + * @return Object * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 deleteGroupResponse wraps response body. -
200 deleteRoleAssociationResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public DeleteGroupOutput deleteGroup(DeleteGroup body) throws ApiException { - ApiResponse localVarResp = deleteGroupWithHttpInfo(body); + public Object deleteRoleAssociation(DeleteRoleAssociation body) throws ApiException { + ApiResponse localVarResp = deleteRoleAssociationWithHttpInfo(body); return localVarResp.getData(); } @@ -8966,18 +9763,18 @@ public DeleteGroupOutput deleteGroup(DeleteGroup body) throws ApiException { * * * @param body (required) - * @return ApiResponse<DeleteGroupOutput> + * @return ApiResponse<Object> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 deleteGroupResponse wraps response body. -
200 deleteRoleAssociationResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse deleteGroupWithHttpInfo(DeleteGroup body) throws ApiException { - okhttp3.Call localVarCall = deleteGroupValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse deleteRoleAssociationWithHttpInfo(DeleteRoleAssociation body) throws ApiException { + okhttp3.Call localVarCall = deleteRoleAssociationValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -8991,19 +9788,19 @@ public ApiResponse deleteGroupWithHttpInfo(DeleteGroup body) * @http.response.details - +
Status Code Description Response Headers
200 deleteGroupResponse wraps response body. -
200 deleteRoleAssociationResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call deleteGroupAsync(DeleteGroup body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call deleteRoleAssociationAsync(DeleteRoleAssociation body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = deleteGroupValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = deleteRoleAssociationValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for deleteGwCluster + * Build call for deleteRoleRule * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -9011,11 +9808,11 @@ public okhttp3.Call deleteGroupAsync(DeleteGroup body, final ApiCallback Status Code Description Response Headers - 200 deleteGwClusterResponse wraps response body. - + 200 deleteRoleRuleResponse wraps response body. - 0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. - */ - public okhttp3.Call deleteGwClusterCall(DeleteGwCluster body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call deleteRoleRuleCall(DeleteRoleRule body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -9033,7 +9830,7 @@ public okhttp3.Call deleteGwClusterCall(DeleteGwCluster body, final ApiCallback Object localVarPostBody = body; // create path and map variables - String localVarPath = "/delete-gateway-cluster"; + String localVarPath = "/delete-role-rule"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -9062,15 +9859,15 @@ public okhttp3.Call deleteGwClusterCall(DeleteGwCluster body, final ApiCallback } @SuppressWarnings("rawtypes") - private okhttp3.Call deleteGwClusterValidateBeforeCall(DeleteGwCluster body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call deleteRoleRuleValidateBeforeCall(DeleteRoleRule body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling deleteGwCluster(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling deleteRoleRule(Async)"); } - okhttp3.Call localVarCall = deleteGwClusterCall(body, _callback); + okhttp3.Call localVarCall = deleteRoleRuleCall(body, _callback); return localVarCall; } @@ -9079,17 +9876,17 @@ private okhttp3.Call deleteGwClusterValidateBeforeCall(DeleteGwCluster body, fin * * * @param body (required) - * @return Object + * @return DeleteRoleRuleOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 deleteGwClusterResponse wraps response body. -
200 deleteRoleRuleResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public Object deleteGwCluster(DeleteGwCluster body) throws ApiException { - ApiResponse localVarResp = deleteGwClusterWithHttpInfo(body); + public DeleteRoleRuleOutput deleteRoleRule(DeleteRoleRule body) throws ApiException { + ApiResponse localVarResp = deleteRoleRuleWithHttpInfo(body); return localVarResp.getData(); } @@ -9097,18 +9894,18 @@ public Object deleteGwCluster(DeleteGwCluster body) throws ApiException { * * * @param body (required) - * @return ApiResponse<Object> + * @return ApiResponse<DeleteRoleRuleOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 deleteGwClusterResponse wraps response body. -
200 deleteRoleRuleResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse deleteGwClusterWithHttpInfo(DeleteGwCluster body) throws ApiException { - okhttp3.Call localVarCall = deleteGwClusterValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse deleteRoleRuleWithHttpInfo(DeleteRoleRule body) throws ApiException { + okhttp3.Call localVarCall = deleteRoleRuleValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -9122,19 +9919,19 @@ public ApiResponse deleteGwClusterWithHttpInfo(DeleteGwCluster body) thr * @http.response.details - +
Status Code Description Response Headers
200 deleteGwClusterResponse wraps response body. -
200 deleteRoleRuleResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call deleteGwClusterAsync(DeleteGwCluster body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call deleteRoleRuleAsync(DeleteRoleRule body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = deleteGwClusterValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = deleteRoleRuleValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for deleteItem + * Build call for deleteRoles * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -9142,11 +9939,11 @@ public okhttp3.Call deleteGwClusterAsync(DeleteGwCluster body, final ApiCallback * @http.response.details - +
Status Code Description Response Headers
200 deleteItemResponse wraps response body. -
200 deleteRolesResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call deleteItemCall(DeleteItem body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call deleteRolesCall(DeleteRoles body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -9164,7 +9961,7 @@ public okhttp3.Call deleteItemCall(DeleteItem body, final ApiCallback _callback) Object localVarPostBody = body; // create path and map variables - String localVarPath = "/delete-item"; + String localVarPath = "/delete-roles"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -9193,15 +9990,15 @@ public okhttp3.Call deleteItemCall(DeleteItem body, final ApiCallback _callback) } @SuppressWarnings("rawtypes") - private okhttp3.Call deleteItemValidateBeforeCall(DeleteItem body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call deleteRolesValidateBeforeCall(DeleteRoles body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling deleteItem(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling deleteRoles(Async)"); } - okhttp3.Call localVarCall = deleteItemCall(body, _callback); + okhttp3.Call localVarCall = deleteRolesCall(body, _callback); return localVarCall; } @@ -9210,17 +10007,17 @@ private okhttp3.Call deleteItemValidateBeforeCall(DeleteItem body, final ApiCall * * * @param body (required) - * @return DeleteItemOutput + * @return Object * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 deleteItemResponse wraps response body. -
200 deleteRolesResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public DeleteItemOutput deleteItem(DeleteItem body) throws ApiException { - ApiResponse localVarResp = deleteItemWithHttpInfo(body); + public Object deleteRoles(DeleteRoles body) throws ApiException { + ApiResponse localVarResp = deleteRolesWithHttpInfo(body); return localVarResp.getData(); } @@ -9228,18 +10025,18 @@ public DeleteItemOutput deleteItem(DeleteItem body) throws ApiException { * * * @param body (required) - * @return ApiResponse<DeleteItemOutput> + * @return ApiResponse<Object> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 deleteItemResponse wraps response body. -
200 deleteRolesResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse deleteItemWithHttpInfo(DeleteItem body) throws ApiException { - okhttp3.Call localVarCall = deleteItemValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse deleteRolesWithHttpInfo(DeleteRoles body) throws ApiException { + okhttp3.Call localVarCall = deleteRolesValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -9253,19 +10050,19 @@ public ApiResponse deleteItemWithHttpInfo(DeleteItem body) thr * @http.response.details - +
Status Code Description Response Headers
200 deleteItemResponse wraps response body. -
200 deleteRolesResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call deleteItemAsync(DeleteItem body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call deleteRolesAsync(DeleteRoles body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = deleteItemValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = deleteRolesValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for deleteItems + * Build call for deleteTarget * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -9273,11 +10070,11 @@ public okhttp3.Call deleteItemAsync(DeleteItem body, final ApiCallback Status Code Description Response Headers - 200 deleteItemsResponse wraps response body. - + 200 deleteTargetResponse wraps response body. - 0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. - */ - public okhttp3.Call deleteItemsCall(DeleteItems body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call deleteTargetCall(DeleteTarget body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -9295,7 +10092,7 @@ public okhttp3.Call deleteItemsCall(DeleteItems body, final ApiCallback _callbac Object localVarPostBody = body; // create path and map variables - String localVarPath = "/delete-items"; + String localVarPath = "/delete-target"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -9324,15 +10121,15 @@ public okhttp3.Call deleteItemsCall(DeleteItems body, final ApiCallback _callbac } @SuppressWarnings("rawtypes") - private okhttp3.Call deleteItemsValidateBeforeCall(DeleteItems body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call deleteTargetValidateBeforeCall(DeleteTarget body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling deleteItems(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling deleteTarget(Async)"); } - okhttp3.Call localVarCall = deleteItemsCall(body, _callback); + okhttp3.Call localVarCall = deleteTargetCall(body, _callback); return localVarCall; } @@ -9341,17 +10138,17 @@ private okhttp3.Call deleteItemsValidateBeforeCall(DeleteItems body, final ApiCa * * * @param body (required) - * @return DeleteItemsOutput + * @return Object * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 deleteItemsResponse wraps response body. -
200 deleteTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public DeleteItemsOutput deleteItems(DeleteItems body) throws ApiException { - ApiResponse localVarResp = deleteItemsWithHttpInfo(body); + public Object deleteTarget(DeleteTarget body) throws ApiException { + ApiResponse localVarResp = deleteTargetWithHttpInfo(body); return localVarResp.getData(); } @@ -9359,18 +10156,18 @@ public DeleteItemsOutput deleteItems(DeleteItems body) throws ApiException { * * * @param body (required) - * @return ApiResponse<DeleteItemsOutput> + * @return ApiResponse<Object> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 deleteItemsResponse wraps response body. -
200 deleteTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse deleteItemsWithHttpInfo(DeleteItems body) throws ApiException { - okhttp3.Call localVarCall = deleteItemsValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse deleteTargetWithHttpInfo(DeleteTarget body) throws ApiException { + okhttp3.Call localVarCall = deleteTargetValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -9384,19 +10181,19 @@ public ApiResponse deleteItemsWithHttpInfo(DeleteItems body) * @http.response.details - +
Status Code Description Response Headers
200 deleteItemsResponse wraps response body. -
200 deleteTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call deleteItemsAsync(DeleteItems body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call deleteTargetAsync(DeleteTarget body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = deleteItemsValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = deleteTargetValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for deleteRole + * Build call for deleteTargetAssociation * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -9404,11 +10201,11 @@ public okhttp3.Call deleteItemsAsync(DeleteItems body, final ApiCallback Status Code Description Response Headers - 200 deleteRoleResponse wraps response body. - + 200 deleteTargetAssociationResponse wraps response body. - 0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. - */ - public okhttp3.Call deleteRoleCall(DeleteRole body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call deleteTargetAssociationCall(DeleteTargetAssociation body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -9426,7 +10223,7 @@ public okhttp3.Call deleteRoleCall(DeleteRole body, final ApiCallback _callback) Object localVarPostBody = body; // create path and map variables - String localVarPath = "/delete-role"; + String localVarPath = "/delete-assoc-target-item"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -9455,15 +10252,15 @@ public okhttp3.Call deleteRoleCall(DeleteRole body, final ApiCallback _callback) } @SuppressWarnings("rawtypes") - private okhttp3.Call deleteRoleValidateBeforeCall(DeleteRole body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call deleteTargetAssociationValidateBeforeCall(DeleteTargetAssociation body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling deleteRole(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling deleteTargetAssociation(Async)"); } - okhttp3.Call localVarCall = deleteRoleCall(body, _callback); + okhttp3.Call localVarCall = deleteTargetAssociationCall(body, _callback); return localVarCall; } @@ -9477,12 +10274,12 @@ private okhttp3.Call deleteRoleValidateBeforeCall(DeleteRole body, final ApiCall * @http.response.details - +
Status Code Description Response Headers
200 deleteRoleResponse wraps response body. -
200 deleteTargetAssociationResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public Object deleteRole(DeleteRole body) throws ApiException { - ApiResponse localVarResp = deleteRoleWithHttpInfo(body); + public Object deleteTargetAssociation(DeleteTargetAssociation body) throws ApiException { + ApiResponse localVarResp = deleteTargetAssociationWithHttpInfo(body); return localVarResp.getData(); } @@ -9495,12 +10292,12 @@ public Object deleteRole(DeleteRole body) throws ApiException { * @http.response.details - +
Status Code Description Response Headers
200 deleteRoleResponse wraps response body. -
200 deleteTargetAssociationResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse deleteRoleWithHttpInfo(DeleteRole body) throws ApiException { - okhttp3.Call localVarCall = deleteRoleValidateBeforeCall(body, null); + public ApiResponse deleteTargetAssociationWithHttpInfo(DeleteTargetAssociation body) throws ApiException { + okhttp3.Call localVarCall = deleteTargetAssociationValidateBeforeCall(body, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -9515,19 +10312,19 @@ public ApiResponse deleteRoleWithHttpInfo(DeleteRole body) throws ApiExc * @http.response.details - +
Status Code Description Response Headers
200 deleteRoleResponse wraps response body. -
200 deleteTargetAssociationResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call deleteRoleAsync(DeleteRole body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call deleteTargetAssociationAsync(DeleteTargetAssociation body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = deleteRoleValidateBeforeCall(body, _callback); + okhttp3.Call localVarCall = deleteTargetAssociationValidateBeforeCall(body, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for deleteRoleAssociation + * Build call for deleteTargets * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -9535,11 +10332,11 @@ public okhttp3.Call deleteRoleAsync(DeleteRole body, final ApiCallback _ * @http.response.details - +
Status Code Description Response Headers
200 deleteRoleAssociationResponse wraps response body. -
200 deleteTargetsResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call deleteRoleAssociationCall(DeleteRoleAssociation body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call deleteTargetsCall(DeleteTargets body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -9557,7 +10354,7 @@ public okhttp3.Call deleteRoleAssociationCall(DeleteRoleAssociation body, final Object localVarPostBody = body; // create path and map variables - String localVarPath = "/delete-assoc"; + String localVarPath = "/delete-targets"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -9586,15 +10383,15 @@ public okhttp3.Call deleteRoleAssociationCall(DeleteRoleAssociation body, final } @SuppressWarnings("rawtypes") - private okhttp3.Call deleteRoleAssociationValidateBeforeCall(DeleteRoleAssociation body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call deleteTargetsValidateBeforeCall(DeleteTargets body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling deleteRoleAssociation(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling deleteTargets(Async)"); } - okhttp3.Call localVarCall = deleteRoleAssociationCall(body, _callback); + okhttp3.Call localVarCall = deleteTargetsCall(body, _callback); return localVarCall; } @@ -9608,12 +10405,12 @@ private okhttp3.Call deleteRoleAssociationValidateBeforeCall(DeleteRoleAssociati * @http.response.details - +
Status Code Description Response Headers
200 deleteRoleAssociationResponse wraps response body. -
200 deleteTargetsResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public Object deleteRoleAssociation(DeleteRoleAssociation body) throws ApiException { - ApiResponse localVarResp = deleteRoleAssociationWithHttpInfo(body); + public Object deleteTargets(DeleteTargets body) throws ApiException { + ApiResponse localVarResp = deleteTargetsWithHttpInfo(body); return localVarResp.getData(); } @@ -9626,12 +10423,12 @@ public Object deleteRoleAssociation(DeleteRoleAssociation body) throws ApiExcept * @http.response.details - +
Status Code Description Response Headers
200 deleteRoleAssociationResponse wraps response body. -
200 deleteTargetsResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse deleteRoleAssociationWithHttpInfo(DeleteRoleAssociation body) throws ApiException { - okhttp3.Call localVarCall = deleteRoleAssociationValidateBeforeCall(body, null); + public ApiResponse deleteTargetsWithHttpInfo(DeleteTargets body) throws ApiException { + okhttp3.Call localVarCall = deleteTargetsValidateBeforeCall(body, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -9646,19 +10443,19 @@ public ApiResponse deleteRoleAssociationWithHttpInfo(DeleteRoleAssociati * @http.response.details - +
Status Code Description Response Headers
200 deleteRoleAssociationResponse wraps response body. -
200 deleteTargetsResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call deleteRoleAssociationAsync(DeleteRoleAssociation body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call deleteTargetsAsync(DeleteTargets body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = deleteRoleAssociationValidateBeforeCall(body, _callback); + okhttp3.Call localVarCall = deleteTargetsValidateBeforeCall(body, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for deleteRoleRule + * Build call for deriveKey * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -9666,11 +10463,11 @@ public okhttp3.Call deleteRoleAssociationAsync(DeleteRoleAssociation body, final * @http.response.details - +
Status Code Description Response Headers
200 deleteRoleRuleResponse wraps response body. -
200 DeriveKeyResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call deleteRoleRuleCall(DeleteRoleRule body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call deriveKeyCall(DeriveKey body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -9688,7 +10485,7 @@ public okhttp3.Call deleteRoleRuleCall(DeleteRoleRule body, final ApiCallback _c Object localVarPostBody = body; // create path and map variables - String localVarPath = "/delete-role-rule"; + String localVarPath = "/derive-key"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -9717,15 +10514,15 @@ public okhttp3.Call deleteRoleRuleCall(DeleteRoleRule body, final ApiCallback _c } @SuppressWarnings("rawtypes") - private okhttp3.Call deleteRoleRuleValidateBeforeCall(DeleteRoleRule body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call deriveKeyValidateBeforeCall(DeriveKey body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling deleteRoleRule(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling deriveKey(Async)"); } - okhttp3.Call localVarCall = deleteRoleRuleCall(body, _callback); + okhttp3.Call localVarCall = deriveKeyCall(body, _callback); return localVarCall; } @@ -9734,17 +10531,17 @@ private okhttp3.Call deleteRoleRuleValidateBeforeCall(DeleteRoleRule body, final * * * @param body (required) - * @return DeleteRoleRuleOutput + * @return DeriveKeyOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 deleteRoleRuleResponse wraps response body. -
200 DeriveKeyResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public DeleteRoleRuleOutput deleteRoleRule(DeleteRoleRule body) throws ApiException { - ApiResponse localVarResp = deleteRoleRuleWithHttpInfo(body); + public DeriveKeyOutput deriveKey(DeriveKey body) throws ApiException { + ApiResponse localVarResp = deriveKeyWithHttpInfo(body); return localVarResp.getData(); } @@ -9752,18 +10549,18 @@ public DeleteRoleRuleOutput deleteRoleRule(DeleteRoleRule body) throws ApiExcept * * * @param body (required) - * @return ApiResponse<DeleteRoleRuleOutput> + * @return ApiResponse<DeriveKeyOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 deleteRoleRuleResponse wraps response body. -
200 DeriveKeyResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse deleteRoleRuleWithHttpInfo(DeleteRoleRule body) throws ApiException { - okhttp3.Call localVarCall = deleteRoleRuleValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse deriveKeyWithHttpInfo(DeriveKey body) throws ApiException { + okhttp3.Call localVarCall = deriveKeyValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -9777,19 +10574,19 @@ public ApiResponse deleteRoleRuleWithHttpInfo(DeleteRoleRu * @http.response.details - +
Status Code Description Response Headers
200 deleteRoleRuleResponse wraps response body. -
200 DeriveKeyResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call deleteRoleRuleAsync(DeleteRoleRule body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call deriveKeyAsync(DeriveKey body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = deleteRoleRuleValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = deriveKeyValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for deleteRoles + * Build call for describeAssoc * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -9797,11 +10594,11 @@ public okhttp3.Call deleteRoleRuleAsync(DeleteRoleRule body, final ApiCallback Status Code Description Response Headers - 200 deleteRolesResponse wraps response body. - + 200 describeAssocResponse wraps response body. - 0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. - */ - public okhttp3.Call deleteRolesCall(DeleteRoles body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call describeAssocCall(DescribeAssoc body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -9819,7 +10616,7 @@ public okhttp3.Call deleteRolesCall(DeleteRoles body, final ApiCallback _callbac Object localVarPostBody = body; // create path and map variables - String localVarPath = "/delete-roles"; + String localVarPath = "/describe-role-am-assoc"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -9848,15 +10645,15 @@ public okhttp3.Call deleteRolesCall(DeleteRoles body, final ApiCallback _callbac } @SuppressWarnings("rawtypes") - private okhttp3.Call deleteRolesValidateBeforeCall(DeleteRoles body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call describeAssocValidateBeforeCall(DescribeAssoc body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling deleteRoles(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling describeAssoc(Async)"); } - okhttp3.Call localVarCall = deleteRolesCall(body, _callback); + okhttp3.Call localVarCall = describeAssocCall(body, _callback); return localVarCall; } @@ -9865,17 +10662,17 @@ private okhttp3.Call deleteRolesValidateBeforeCall(DeleteRoles body, final ApiCa * * * @param body (required) - * @return Object + * @return RoleAssociationDetails * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 deleteRolesResponse wraps response body. -
200 describeAssocResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public Object deleteRoles(DeleteRoles body) throws ApiException { - ApiResponse localVarResp = deleteRolesWithHttpInfo(body); + public RoleAssociationDetails describeAssoc(DescribeAssoc body) throws ApiException { + ApiResponse localVarResp = describeAssocWithHttpInfo(body); return localVarResp.getData(); } @@ -9883,18 +10680,18 @@ public Object deleteRoles(DeleteRoles body) throws ApiException { * * * @param body (required) - * @return ApiResponse<Object> + * @return ApiResponse<RoleAssociationDetails> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 deleteRolesResponse wraps response body. -
200 describeAssocResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse deleteRolesWithHttpInfo(DeleteRoles body) throws ApiException { - okhttp3.Call localVarCall = deleteRolesValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse describeAssocWithHttpInfo(DescribeAssoc body) throws ApiException { + okhttp3.Call localVarCall = describeAssocValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -9908,19 +10705,19 @@ public ApiResponse deleteRolesWithHttpInfo(DeleteRoles body) throws ApiE * @http.response.details - +
Status Code Description Response Headers
200 deleteRolesResponse wraps response body. -
200 describeAssocResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call deleteRolesAsync(DeleteRoles body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call describeAssocAsync(DescribeAssoc body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = deleteRolesValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = describeAssocValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for deleteTarget + * Build call for describeItem * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -9928,11 +10725,11 @@ public okhttp3.Call deleteRolesAsync(DeleteRoles body, final ApiCallback * @http.response.details - +
Status Code Description Response Headers
200 deleteTargetResponse wraps response body. -
200 describeItemResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call deleteTargetCall(DeleteTarget body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call describeItemCall(DescribeItem body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -9950,7 +10747,7 @@ public okhttp3.Call deleteTargetCall(DeleteTarget body, final ApiCallback _callb Object localVarPostBody = body; // create path and map variables - String localVarPath = "/delete-target"; + String localVarPath = "/describe-item"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -9979,15 +10776,15 @@ public okhttp3.Call deleteTargetCall(DeleteTarget body, final ApiCallback _callb } @SuppressWarnings("rawtypes") - private okhttp3.Call deleteTargetValidateBeforeCall(DeleteTarget body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call describeItemValidateBeforeCall(DescribeItem body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling deleteTarget(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling describeItem(Async)"); } - okhttp3.Call localVarCall = deleteTargetCall(body, _callback); + okhttp3.Call localVarCall = describeItemCall(body, _callback); return localVarCall; } @@ -9996,17 +10793,17 @@ private okhttp3.Call deleteTargetValidateBeforeCall(DeleteTarget body, final Api * * * @param body (required) - * @return Object + * @return Item * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 deleteTargetResponse wraps response body. -
200 describeItemResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public Object deleteTarget(DeleteTarget body) throws ApiException { - ApiResponse localVarResp = deleteTargetWithHttpInfo(body); + public Item describeItem(DescribeItem body) throws ApiException { + ApiResponse localVarResp = describeItemWithHttpInfo(body); return localVarResp.getData(); } @@ -10014,18 +10811,18 @@ public Object deleteTarget(DeleteTarget body) throws ApiException { * * * @param body (required) - * @return ApiResponse<Object> + * @return ApiResponse<Item> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 deleteTargetResponse wraps response body. -
200 describeItemResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse deleteTargetWithHttpInfo(DeleteTarget body) throws ApiException { - okhttp3.Call localVarCall = deleteTargetValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse describeItemWithHttpInfo(DescribeItem body) throws ApiException { + okhttp3.Call localVarCall = describeItemValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -10039,19 +10836,19 @@ public ApiResponse deleteTargetWithHttpInfo(DeleteTarget body) throws Ap * @http.response.details - +
Status Code Description Response Headers
200 deleteTargetResponse wraps response body. -
200 describeItemResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call deleteTargetAsync(DeleteTarget body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call describeItemAsync(DescribeItem body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = deleteTargetValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = describeItemValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for deleteTargetAssociation + * Build call for describePermissions * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -10059,11 +10856,11 @@ public okhttp3.Call deleteTargetAsync(DeleteTarget body, final ApiCallback Status Code Description Response Headers - 200 deleteTargetAssociationResponse wraps response body. - + 200 DescribePermissionsResponse wraps response body. - 0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. - */ - public okhttp3.Call deleteTargetAssociationCall(DeleteTargetAssociation body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call describePermissionsCall(DescribePermissions body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -10081,7 +10878,7 @@ public okhttp3.Call deleteTargetAssociationCall(DeleteTargetAssociation body, fi Object localVarPostBody = body; // create path and map variables - String localVarPath = "/delete-assoc-target-item"; + String localVarPath = "/describe-permissions"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -10110,15 +10907,15 @@ public okhttp3.Call deleteTargetAssociationCall(DeleteTargetAssociation body, fi } @SuppressWarnings("rawtypes") - private okhttp3.Call deleteTargetAssociationValidateBeforeCall(DeleteTargetAssociation body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call describePermissionsValidateBeforeCall(DescribePermissions body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling deleteTargetAssociation(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling describePermissions(Async)"); } - okhttp3.Call localVarCall = deleteTargetAssociationCall(body, _callback); + okhttp3.Call localVarCall = describePermissionsCall(body, _callback); return localVarCall; } @@ -10127,17 +10924,17 @@ private okhttp3.Call deleteTargetAssociationValidateBeforeCall(DeleteTargetAssoc * * * @param body (required) - * @return Object + * @return DescribePermissionsOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 deleteTargetAssociationResponse wraps response body. -
200 DescribePermissionsResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public Object deleteTargetAssociation(DeleteTargetAssociation body) throws ApiException { - ApiResponse localVarResp = deleteTargetAssociationWithHttpInfo(body); + public DescribePermissionsOutput describePermissions(DescribePermissions body) throws ApiException { + ApiResponse localVarResp = describePermissionsWithHttpInfo(body); return localVarResp.getData(); } @@ -10145,18 +10942,18 @@ public Object deleteTargetAssociation(DeleteTargetAssociation body) throws ApiEx * * * @param body (required) - * @return ApiResponse<Object> + * @return ApiResponse<DescribePermissionsOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 deleteTargetAssociationResponse wraps response body. -
200 DescribePermissionsResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse deleteTargetAssociationWithHttpInfo(DeleteTargetAssociation body) throws ApiException { - okhttp3.Call localVarCall = deleteTargetAssociationValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse describePermissionsWithHttpInfo(DescribePermissions body) throws ApiException { + okhttp3.Call localVarCall = describePermissionsValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -10170,19 +10967,19 @@ public ApiResponse deleteTargetAssociationWithHttpInfo(DeleteTargetAssoc * @http.response.details - +
Status Code Description Response Headers
200 deleteTargetAssociationResponse wraps response body. -
200 DescribePermissionsResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call deleteTargetAssociationAsync(DeleteTargetAssociation body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call describePermissionsAsync(DescribePermissions body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = deleteTargetAssociationValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = describePermissionsValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for deleteTargets + * Build call for describeSubClaims * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -10190,11 +10987,12 @@ public okhttp3.Call deleteTargetAssociationAsync(DeleteTargetAssociation body, f * @http.response.details - + +
Status Code Description Response Headers
200 deleteTargetsResponse wraps response body. -
200 describeSubClaimsResponse wraps response body. -
401 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call deleteTargetsCall(DeleteTargets body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call describeSubClaimsCall(DescribeSubClaims body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -10212,7 +11010,7 @@ public okhttp3.Call deleteTargetsCall(DeleteTargets body, final ApiCallback _cal Object localVarPostBody = body; // create path and map variables - String localVarPath = "/delete-targets"; + String localVarPath = "/describe-sub-claims"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -10241,15 +11039,15 @@ public okhttp3.Call deleteTargetsCall(DeleteTargets body, final ApiCallback _cal } @SuppressWarnings("rawtypes") - private okhttp3.Call deleteTargetsValidateBeforeCall(DeleteTargets body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call describeSubClaimsValidateBeforeCall(DescribeSubClaims body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling deleteTargets(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling describeSubClaims(Async)"); } - okhttp3.Call localVarCall = deleteTargetsCall(body, _callback); + okhttp3.Call localVarCall = describeSubClaimsCall(body, _callback); return localVarCall; } @@ -10258,17 +11056,18 @@ private okhttp3.Call deleteTargetsValidateBeforeCall(DeleteTargets body, final A * * * @param body (required) - * @return Object + * @return DescribeSubClaimsOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - + +
Status Code Description Response Headers
200 deleteTargetsResponse wraps response body. -
200 describeSubClaimsResponse wraps response body. -
401 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public Object deleteTargets(DeleteTargets body) throws ApiException { - ApiResponse localVarResp = deleteTargetsWithHttpInfo(body); + public DescribeSubClaimsOutput describeSubClaims(DescribeSubClaims body) throws ApiException { + ApiResponse localVarResp = describeSubClaimsWithHttpInfo(body); return localVarResp.getData(); } @@ -10276,18 +11075,19 @@ public Object deleteTargets(DeleteTargets body) throws ApiException { * * * @param body (required) - * @return ApiResponse<Object> + * @return ApiResponse<DescribeSubClaimsOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - + +
Status Code Description Response Headers
200 deleteTargetsResponse wraps response body. -
200 describeSubClaimsResponse wraps response body. -
401 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse deleteTargetsWithHttpInfo(DeleteTargets body) throws ApiException { - okhttp3.Call localVarCall = deleteTargetsValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse describeSubClaimsWithHttpInfo(DescribeSubClaims body) throws ApiException { + okhttp3.Call localVarCall = describeSubClaimsValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -10301,19 +11101,20 @@ public ApiResponse deleteTargetsWithHttpInfo(DeleteTargets body) throws * @http.response.details - + +
Status Code Description Response Headers
200 deleteTargetsResponse wraps response body. -
200 describeSubClaimsResponse wraps response body. -
401 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call deleteTargetsAsync(DeleteTargets body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call describeSubClaimsAsync(DescribeSubClaims body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = deleteTargetsValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = describeSubClaimsValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for deriveKey + * Build call for detokenize * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -10321,11 +11122,11 @@ public okhttp3.Call deleteTargetsAsync(DeleteTargets body, final ApiCallback Status Code Description Response Headers - 200 DeriveKeyResponse wraps response body. - + 200 detokenizeResponse wraps response body. - 0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. - */ - public okhttp3.Call deriveKeyCall(DeriveKey body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call detokenizeCall(Detokenize body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -10343,7 +11144,7 @@ public okhttp3.Call deriveKeyCall(DeriveKey body, final ApiCallback _callback) t Object localVarPostBody = body; // create path and map variables - String localVarPath = "/derive-key"; + String localVarPath = "/detokenize"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -10372,15 +11173,15 @@ public okhttp3.Call deriveKeyCall(DeriveKey body, final ApiCallback _callback) t } @SuppressWarnings("rawtypes") - private okhttp3.Call deriveKeyValidateBeforeCall(DeriveKey body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call detokenizeValidateBeforeCall(Detokenize body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling deriveKey(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling detokenize(Async)"); } - okhttp3.Call localVarCall = deriveKeyCall(body, _callback); + okhttp3.Call localVarCall = detokenizeCall(body, _callback); return localVarCall; } @@ -10389,17 +11190,17 @@ private okhttp3.Call deriveKeyValidateBeforeCall(DeriveKey body, final ApiCallba * * * @param body (required) - * @return DeriveKeyOutput + * @return DetokenizeOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 DeriveKeyResponse wraps response body. -
200 detokenizeResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public DeriveKeyOutput deriveKey(DeriveKey body) throws ApiException { - ApiResponse localVarResp = deriveKeyWithHttpInfo(body); + public DetokenizeOutput detokenize(Detokenize body) throws ApiException { + ApiResponse localVarResp = detokenizeWithHttpInfo(body); return localVarResp.getData(); } @@ -10407,18 +11208,18 @@ public DeriveKeyOutput deriveKey(DeriveKey body) throws ApiException { * * * @param body (required) - * @return ApiResponse<DeriveKeyOutput> + * @return ApiResponse<DetokenizeOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 DeriveKeyResponse wraps response body. -
200 detokenizeResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse deriveKeyWithHttpInfo(DeriveKey body) throws ApiException { - okhttp3.Call localVarCall = deriveKeyValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse detokenizeWithHttpInfo(Detokenize body) throws ApiException { + okhttp3.Call localVarCall = detokenizeValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -10432,19 +11233,19 @@ public ApiResponse deriveKeyWithHttpInfo(DeriveKey body) throws * @http.response.details - +
Status Code Description Response Headers
200 DeriveKeyResponse wraps response body. -
200 detokenizeResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call deriveKeyAsync(DeriveKey body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call detokenizeAsync(Detokenize body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = deriveKeyValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = detokenizeValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for describeAssoc + * Build call for encrypt * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -10452,11 +11253,11 @@ public okhttp3.Call deriveKeyAsync(DeriveKey body, final ApiCallback Status Code Description Response Headers - 200 describeAssocResponse wraps response body. - + 200 encryptResponse wraps response body. - 0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. - */ - public okhttp3.Call describeAssocCall(DescribeAssoc body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call encryptCall(Encrypt body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -10474,7 +11275,7 @@ public okhttp3.Call describeAssocCall(DescribeAssoc body, final ApiCallback _cal Object localVarPostBody = body; // create path and map variables - String localVarPath = "/describe-role-am-assoc"; + String localVarPath = "/encrypt"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -10503,15 +11304,15 @@ public okhttp3.Call describeAssocCall(DescribeAssoc body, final ApiCallback _cal } @SuppressWarnings("rawtypes") - private okhttp3.Call describeAssocValidateBeforeCall(DescribeAssoc body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call encryptValidateBeforeCall(Encrypt body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling describeAssoc(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling encrypt(Async)"); } - okhttp3.Call localVarCall = describeAssocCall(body, _callback); + okhttp3.Call localVarCall = encryptCall(body, _callback); return localVarCall; } @@ -10520,17 +11321,17 @@ private okhttp3.Call describeAssocValidateBeforeCall(DescribeAssoc body, final A * * * @param body (required) - * @return RoleAssociationDetails + * @return EncryptOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 describeAssocResponse wraps response body. -
200 encryptResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public RoleAssociationDetails describeAssoc(DescribeAssoc body) throws ApiException { - ApiResponse localVarResp = describeAssocWithHttpInfo(body); + public EncryptOutput encrypt(Encrypt body) throws ApiException { + ApiResponse localVarResp = encryptWithHttpInfo(body); return localVarResp.getData(); } @@ -10538,18 +11339,18 @@ public RoleAssociationDetails describeAssoc(DescribeAssoc body) throws ApiExcept * * * @param body (required) - * @return ApiResponse<RoleAssociationDetails> + * @return ApiResponse<EncryptOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 describeAssocResponse wraps response body. -
200 encryptResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse describeAssocWithHttpInfo(DescribeAssoc body) throws ApiException { - okhttp3.Call localVarCall = describeAssocValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse encryptWithHttpInfo(Encrypt body) throws ApiException { + okhttp3.Call localVarCall = encryptValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -10563,19 +11364,19 @@ public ApiResponse describeAssocWithHttpInfo(DescribeAss * @http.response.details - +
Status Code Description Response Headers
200 describeAssocResponse wraps response body. -
200 encryptResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call describeAssocAsync(DescribeAssoc body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call encryptAsync(Encrypt body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = describeAssocValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = encryptValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for describeItem + * Build call for encryptGPG * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -10583,11 +11384,11 @@ public okhttp3.Call describeAssocAsync(DescribeAssoc body, final ApiCallback Status Code Description Response Headers - 200 describeItemResponse wraps response body. - + 200 encryptGPGResponse wraps response body. - 0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. - */ - public okhttp3.Call describeItemCall(DescribeItem body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call encryptGPGCall(EncryptGPG body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -10605,7 +11406,7 @@ public okhttp3.Call describeItemCall(DescribeItem body, final ApiCallback _callb Object localVarPostBody = body; // create path and map variables - String localVarPath = "/describe-item"; + String localVarPath = "/encrypt-gpg"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -10634,15 +11435,15 @@ public okhttp3.Call describeItemCall(DescribeItem body, final ApiCallback _callb } @SuppressWarnings("rawtypes") - private okhttp3.Call describeItemValidateBeforeCall(DescribeItem body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call encryptGPGValidateBeforeCall(EncryptGPG body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling describeItem(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling encryptGPG(Async)"); } - okhttp3.Call localVarCall = describeItemCall(body, _callback); + okhttp3.Call localVarCall = encryptGPGCall(body, _callback); return localVarCall; } @@ -10651,17 +11452,17 @@ private okhttp3.Call describeItemValidateBeforeCall(DescribeItem body, final Api * * * @param body (required) - * @return Item + * @return EncryptGPGOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 describeItemResponse wraps response body. -
200 encryptGPGResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public Item describeItem(DescribeItem body) throws ApiException { - ApiResponse localVarResp = describeItemWithHttpInfo(body); + public EncryptGPGOutput encryptGPG(EncryptGPG body) throws ApiException { + ApiResponse localVarResp = encryptGPGWithHttpInfo(body); return localVarResp.getData(); } @@ -10669,18 +11470,18 @@ public Item describeItem(DescribeItem body) throws ApiException { * * * @param body (required) - * @return ApiResponse<Item> + * @return ApiResponse<EncryptGPGOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 describeItemResponse wraps response body. -
200 encryptGPGResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse describeItemWithHttpInfo(DescribeItem body) throws ApiException { - okhttp3.Call localVarCall = describeItemValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse encryptGPGWithHttpInfo(EncryptGPG body) throws ApiException { + okhttp3.Call localVarCall = encryptGPGValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -10694,19 +11495,19 @@ public ApiResponse describeItemWithHttpInfo(DescribeItem body) throws ApiE * @http.response.details - +
Status Code Description Response Headers
200 describeItemResponse wraps response body. -
200 encryptGPGResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call describeItemAsync(DescribeItem body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call encryptGPGAsync(EncryptGPG body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = describeItemValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = encryptGPGValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for describePermissions + * Build call for encryptWithClassicKey * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -10714,11 +11515,11 @@ public okhttp3.Call describeItemAsync(DescribeItem body, final ApiCallback * @http.response.details - +
Status Code Description Response Headers
200 DescribePermissionsResponse wraps response body. -
200 encryptResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call describePermissionsCall(DescribePermissions body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call encryptWithClassicKeyCall(EncryptWithClassicKey body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -10736,7 +11537,7 @@ public okhttp3.Call describePermissionsCall(DescribePermissions body, final ApiC Object localVarPostBody = body; // create path and map variables - String localVarPath = "/describe-permissions"; + String localVarPath = "/encrypt-with-classic-key"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -10765,15 +11566,15 @@ public okhttp3.Call describePermissionsCall(DescribePermissions body, final ApiC } @SuppressWarnings("rawtypes") - private okhttp3.Call describePermissionsValidateBeforeCall(DescribePermissions body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call encryptWithClassicKeyValidateBeforeCall(EncryptWithClassicKey body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling describePermissions(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling encryptWithClassicKey(Async)"); } - okhttp3.Call localVarCall = describePermissionsCall(body, _callback); + okhttp3.Call localVarCall = encryptWithClassicKeyCall(body, _callback); return localVarCall; } @@ -10782,17 +11583,17 @@ private okhttp3.Call describePermissionsValidateBeforeCall(DescribePermissions b * * * @param body (required) - * @return DescribePermissionsOutput + * @return EncryptOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 DescribePermissionsResponse wraps response body. -
200 encryptResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public DescribePermissionsOutput describePermissions(DescribePermissions body) throws ApiException { - ApiResponse localVarResp = describePermissionsWithHttpInfo(body); + public EncryptOutput encryptWithClassicKey(EncryptWithClassicKey body) throws ApiException { + ApiResponse localVarResp = encryptWithClassicKeyWithHttpInfo(body); return localVarResp.getData(); } @@ -10800,18 +11601,18 @@ public DescribePermissionsOutput describePermissions(DescribePermissions body) t * * * @param body (required) - * @return ApiResponse<DescribePermissionsOutput> + * @return ApiResponse<EncryptOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 DescribePermissionsResponse wraps response body. -
200 encryptResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse describePermissionsWithHttpInfo(DescribePermissions body) throws ApiException { - okhttp3.Call localVarCall = describePermissionsValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse encryptWithClassicKeyWithHttpInfo(EncryptWithClassicKey body) throws ApiException { + okhttp3.Call localVarCall = encryptWithClassicKeyValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -10825,19 +11626,19 @@ public ApiResponse describePermissionsWithHttpInfo(De * @http.response.details - +
Status Code Description Response Headers
200 DescribePermissionsResponse wraps response body. -
200 encryptResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call describePermissionsAsync(DescribePermissions body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call encryptWithClassicKeyAsync(EncryptWithClassicKey body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = describePermissionsValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = encryptWithClassicKeyValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for describeSubClaims + * Build call for esmCreate * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -10845,12 +11646,11 @@ public okhttp3.Call describePermissionsAsync(DescribePermissions body, final Api * @http.response.details - - +
Status Code Description Response Headers
200 describeSubClaimsResponse wraps response body. -
401 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
200 esmCreateResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call describeSubClaimsCall(DescribeSubClaims body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call esmCreateCall(EsmCreate body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -10868,7 +11668,7 @@ public okhttp3.Call describeSubClaimsCall(DescribeSubClaims body, final ApiCallb Object localVarPostBody = body; // create path and map variables - String localVarPath = "/describe-sub-claims"; + String localVarPath = "/esm-create"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -10897,15 +11697,15 @@ public okhttp3.Call describeSubClaimsCall(DescribeSubClaims body, final ApiCallb } @SuppressWarnings("rawtypes") - private okhttp3.Call describeSubClaimsValidateBeforeCall(DescribeSubClaims body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call esmCreateValidateBeforeCall(EsmCreate body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling describeSubClaims(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling esmCreate(Async)"); } - okhttp3.Call localVarCall = describeSubClaimsCall(body, _callback); + okhttp3.Call localVarCall = esmCreateCall(body, _callback); return localVarCall; } @@ -10914,18 +11714,17 @@ private okhttp3.Call describeSubClaimsValidateBeforeCall(DescribeSubClaims body, * * * @param body (required) - * @return DescribeSubClaimsOutput + * @return EsmCreateSecretOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - - +
Status Code Description Response Headers
200 describeSubClaimsResponse wraps response body. -
401 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
200 esmCreateResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public DescribeSubClaimsOutput describeSubClaims(DescribeSubClaims body) throws ApiException { - ApiResponse localVarResp = describeSubClaimsWithHttpInfo(body); + public EsmCreateSecretOutput esmCreate(EsmCreate body) throws ApiException { + ApiResponse localVarResp = esmCreateWithHttpInfo(body); return localVarResp.getData(); } @@ -10933,19 +11732,18 @@ public DescribeSubClaimsOutput describeSubClaims(DescribeSubClaims body) throws * * * @param body (required) - * @return ApiResponse<DescribeSubClaimsOutput> + * @return ApiResponse<EsmCreateSecretOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - - +
Status Code Description Response Headers
200 describeSubClaimsResponse wraps response body. -
401 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
200 esmCreateResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse describeSubClaimsWithHttpInfo(DescribeSubClaims body) throws ApiException { - okhttp3.Call localVarCall = describeSubClaimsValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse esmCreateWithHttpInfo(EsmCreate body) throws ApiException { + okhttp3.Call localVarCall = esmCreateValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -10959,20 +11757,19 @@ public ApiResponse describeSubClaimsWithHttpInfo(Descri * @http.response.details - - +
Status Code Description Response Headers
200 describeSubClaimsResponse wraps response body. -
401 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
200 esmCreateResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call describeSubClaimsAsync(DescribeSubClaims body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call esmCreateAsync(EsmCreate body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = describeSubClaimsValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = esmCreateValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for detokenize + * Build call for esmDelete * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -10980,11 +11777,11 @@ public okhttp3.Call describeSubClaimsAsync(DescribeSubClaims body, final ApiCall * @http.response.details - +
Status Code Description Response Headers
200 detokenizeResponse wraps response body. -
202 esmDeleteResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call detokenizeCall(Detokenize body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call esmDeleteCall(EsmDelete body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -11002,7 +11799,7 @@ public okhttp3.Call detokenizeCall(Detokenize body, final ApiCallback _callback) Object localVarPostBody = body; // create path and map variables - String localVarPath = "/detokenize"; + String localVarPath = "/esm-delete"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -11031,15 +11828,15 @@ public okhttp3.Call detokenizeCall(Detokenize body, final ApiCallback _callback) } @SuppressWarnings("rawtypes") - private okhttp3.Call detokenizeValidateBeforeCall(Detokenize body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call esmDeleteValidateBeforeCall(EsmDelete body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling detokenize(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling esmDelete(Async)"); } - okhttp3.Call localVarCall = detokenizeCall(body, _callback); + okhttp3.Call localVarCall = esmDeleteCall(body, _callback); return localVarCall; } @@ -11048,17 +11845,17 @@ private okhttp3.Call detokenizeValidateBeforeCall(Detokenize body, final ApiCall * * * @param body (required) - * @return DetokenizeOutput + * @return EsmDeleteSecretOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 detokenizeResponse wraps response body. -
202 esmDeleteResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public DetokenizeOutput detokenize(Detokenize body) throws ApiException { - ApiResponse localVarResp = detokenizeWithHttpInfo(body); + public EsmDeleteSecretOutput esmDelete(EsmDelete body) throws ApiException { + ApiResponse localVarResp = esmDeleteWithHttpInfo(body); return localVarResp.getData(); } @@ -11066,18 +11863,18 @@ public DetokenizeOutput detokenize(Detokenize body) throws ApiException { * * * @param body (required) - * @return ApiResponse<DetokenizeOutput> + * @return ApiResponse<EsmDeleteSecretOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 detokenizeResponse wraps response body. -
202 esmDeleteResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse detokenizeWithHttpInfo(Detokenize body) throws ApiException { - okhttp3.Call localVarCall = detokenizeValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse esmDeleteWithHttpInfo(EsmDelete body) throws ApiException { + okhttp3.Call localVarCall = esmDeleteValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -11091,19 +11888,19 @@ public ApiResponse detokenizeWithHttpInfo(Detokenize body) thr * @http.response.details - +
Status Code Description Response Headers
200 detokenizeResponse wraps response body. -
202 esmDeleteResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call detokenizeAsync(Detokenize body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call esmDeleteAsync(EsmDelete body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = detokenizeValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = esmDeleteValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for encrypt + * Build call for esmGet * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -11111,11 +11908,11 @@ public okhttp3.Call detokenizeAsync(Detokenize body, final ApiCallback Status Code Description Response Headers - 200 encryptResponse wraps response body. - + 200 esmGetResponse wraps response body. - 0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. - */ - public okhttp3.Call encryptCall(Encrypt body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call esmGetCall(EsmGet body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -11133,7 +11930,7 @@ public okhttp3.Call encryptCall(Encrypt body, final ApiCallback _callback) throw Object localVarPostBody = body; // create path and map variables - String localVarPath = "/encrypt"; + String localVarPath = "/esm-get"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -11162,15 +11959,15 @@ public okhttp3.Call encryptCall(Encrypt body, final ApiCallback _callback) throw } @SuppressWarnings("rawtypes") - private okhttp3.Call encryptValidateBeforeCall(Encrypt body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call esmGetValidateBeforeCall(EsmGet body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling encrypt(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling esmGet(Async)"); } - okhttp3.Call localVarCall = encryptCall(body, _callback); + okhttp3.Call localVarCall = esmGetCall(body, _callback); return localVarCall; } @@ -11179,17 +11976,17 @@ private okhttp3.Call encryptValidateBeforeCall(Encrypt body, final ApiCallback _ * * * @param body (required) - * @return EncryptOutput + * @return EsmGetSecretOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 encryptResponse wraps response body. -
200 esmGetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public EncryptOutput encrypt(Encrypt body) throws ApiException { - ApiResponse localVarResp = encryptWithHttpInfo(body); + public EsmGetSecretOutput esmGet(EsmGet body) throws ApiException { + ApiResponse localVarResp = esmGetWithHttpInfo(body); return localVarResp.getData(); } @@ -11197,18 +11994,18 @@ public EncryptOutput encrypt(Encrypt body) throws ApiException { * * * @param body (required) - * @return ApiResponse<EncryptOutput> + * @return ApiResponse<EsmGetSecretOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 encryptResponse wraps response body. -
200 esmGetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse encryptWithHttpInfo(Encrypt body) throws ApiException { - okhttp3.Call localVarCall = encryptValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse esmGetWithHttpInfo(EsmGet body) throws ApiException { + okhttp3.Call localVarCall = esmGetValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -11222,19 +12019,19 @@ public ApiResponse encryptWithHttpInfo(Encrypt body) throws ApiEx * @http.response.details - +
Status Code Description Response Headers
200 encryptResponse wraps response body. -
200 esmGetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call encryptAsync(Encrypt body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call esmGetAsync(EsmGet body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = encryptValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = esmGetValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for encryptGPG + * Build call for esmList * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -11242,11 +12039,11 @@ public okhttp3.Call encryptAsync(Encrypt body, final ApiCallback * @http.response.details - +
Status Code Description Response Headers
200 encryptGPGResponse wraps response body. -
200 esmListResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call encryptGPGCall(EncryptGPG body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call esmListCall(EsmList body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -11264,7 +12061,7 @@ public okhttp3.Call encryptGPGCall(EncryptGPG body, final ApiCallback _callback) Object localVarPostBody = body; // create path and map variables - String localVarPath = "/encrypt-gpg"; + String localVarPath = "/esm-list"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -11293,15 +12090,15 @@ public okhttp3.Call encryptGPGCall(EncryptGPG body, final ApiCallback _callback) } @SuppressWarnings("rawtypes") - private okhttp3.Call encryptGPGValidateBeforeCall(EncryptGPG body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call esmListValidateBeforeCall(EsmList body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling encryptGPG(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling esmList(Async)"); } - okhttp3.Call localVarCall = encryptGPGCall(body, _callback); + okhttp3.Call localVarCall = esmListCall(body, _callback); return localVarCall; } @@ -11310,17 +12107,17 @@ private okhttp3.Call encryptGPGValidateBeforeCall(EncryptGPG body, final ApiCall * * * @param body (required) - * @return EncryptGPGOutput + * @return EsmListSecretsOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 encryptGPGResponse wraps response body. -
200 esmListResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public EncryptGPGOutput encryptGPG(EncryptGPG body) throws ApiException { - ApiResponse localVarResp = encryptGPGWithHttpInfo(body); + public EsmListSecretsOutput esmList(EsmList body) throws ApiException { + ApiResponse localVarResp = esmListWithHttpInfo(body); return localVarResp.getData(); } @@ -11328,18 +12125,18 @@ public EncryptGPGOutput encryptGPG(EncryptGPG body) throws ApiException { * * * @param body (required) - * @return ApiResponse<EncryptGPGOutput> + * @return ApiResponse<EsmListSecretsOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 encryptGPGResponse wraps response body. -
200 esmListResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse encryptGPGWithHttpInfo(EncryptGPG body) throws ApiException { - okhttp3.Call localVarCall = encryptGPGValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse esmListWithHttpInfo(EsmList body) throws ApiException { + okhttp3.Call localVarCall = esmListValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -11353,19 +12150,19 @@ public ApiResponse encryptGPGWithHttpInfo(EncryptGPG body) thr * @http.response.details - +
Status Code Description Response Headers
200 encryptGPGResponse wraps response body. -
200 esmListResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call encryptGPGAsync(EncryptGPG body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call esmListAsync(EsmList body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = encryptGPGValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = esmListValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for encryptWithClassicKey + * Build call for esmUpdate * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -11373,11 +12170,11 @@ public okhttp3.Call encryptGPGAsync(EncryptGPG body, final ApiCallback Status Code Description Response Headers - 200 encryptResponse wraps response body. - + 200 esmUpdateResponse wraps response body. - 0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. - */ - public okhttp3.Call encryptWithClassicKeyCall(EncryptWithClassicKey body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call esmUpdateCall(EsmUpdate body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -11395,7 +12192,7 @@ public okhttp3.Call encryptWithClassicKeyCall(EncryptWithClassicKey body, final Object localVarPostBody = body; // create path and map variables - String localVarPath = "/encrypt-with-classic-key"; + String localVarPath = "/esm-update"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -11424,15 +12221,15 @@ public okhttp3.Call encryptWithClassicKeyCall(EncryptWithClassicKey body, final } @SuppressWarnings("rawtypes") - private okhttp3.Call encryptWithClassicKeyValidateBeforeCall(EncryptWithClassicKey body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call esmUpdateValidateBeforeCall(EsmUpdate body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling encryptWithClassicKey(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling esmUpdate(Async)"); } - okhttp3.Call localVarCall = encryptWithClassicKeyCall(body, _callback); + okhttp3.Call localVarCall = esmUpdateCall(body, _callback); return localVarCall; } @@ -11441,17 +12238,17 @@ private okhttp3.Call encryptWithClassicKeyValidateBeforeCall(EncryptWithClassicK * * * @param body (required) - * @return EncryptOutput + * @return EsmUpdateSecretOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 encryptResponse wraps response body. -
200 esmUpdateResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public EncryptOutput encryptWithClassicKey(EncryptWithClassicKey body) throws ApiException { - ApiResponse localVarResp = encryptWithClassicKeyWithHttpInfo(body); + public EsmUpdateSecretOutput esmUpdate(EsmUpdate body) throws ApiException { + ApiResponse localVarResp = esmUpdateWithHttpInfo(body); return localVarResp.getData(); } @@ -11459,18 +12256,18 @@ public EncryptOutput encryptWithClassicKey(EncryptWithClassicKey body) throws Ap * * * @param body (required) - * @return ApiResponse<EncryptOutput> + * @return ApiResponse<EsmUpdateSecretOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 encryptResponse wraps response body. -
200 esmUpdateResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse encryptWithClassicKeyWithHttpInfo(EncryptWithClassicKey body) throws ApiException { - okhttp3.Call localVarCall = encryptWithClassicKeyValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse esmUpdateWithHttpInfo(EsmUpdate body) throws ApiException { + okhttp3.Call localVarCall = esmUpdateValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -11484,19 +12281,19 @@ public ApiResponse encryptWithClassicKeyWithHttpInfo(EncryptWithC * @http.response.details - +
Status Code Description Response Headers
200 encryptResponse wraps response body. -
200 esmUpdateResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call encryptWithClassicKeyAsync(EncryptWithClassicKey body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call esmUpdateAsync(EsmUpdate body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = encryptWithClassicKeyValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = esmUpdateValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for esmCreate + * Build call for eventAction * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -11504,11 +12301,11 @@ public okhttp3.Call encryptWithClassicKeyAsync(EncryptWithClassicKey body, final * @http.response.details - +
Status Code Description Response Headers
200 esmCreateResponse wraps response body. -
200 eventActionResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call esmCreateCall(EsmCreate body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call eventActionCall(EventAction body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -11526,7 +12323,7 @@ public okhttp3.Call esmCreateCall(EsmCreate body, final ApiCallback _callback) t Object localVarPostBody = body; // create path and map variables - String localVarPath = "/esm-create"; + String localVarPath = "/event-action"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -11555,15 +12352,15 @@ public okhttp3.Call esmCreateCall(EsmCreate body, final ApiCallback _callback) t } @SuppressWarnings("rawtypes") - private okhttp3.Call esmCreateValidateBeforeCall(EsmCreate body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call eventActionValidateBeforeCall(EventAction body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling esmCreate(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling eventAction(Async)"); } - okhttp3.Call localVarCall = esmCreateCall(body, _callback); + okhttp3.Call localVarCall = eventActionCall(body, _callback); return localVarCall; } @@ -11572,17 +12369,17 @@ private okhttp3.Call esmCreateValidateBeforeCall(EsmCreate body, final ApiCallba * * * @param body (required) - * @return EsmCreateSecretOutput + * @return Object * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 esmCreateResponse wraps response body. -
200 eventActionResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public EsmCreateSecretOutput esmCreate(EsmCreate body) throws ApiException { - ApiResponse localVarResp = esmCreateWithHttpInfo(body); + public Object eventAction(EventAction body) throws ApiException { + ApiResponse localVarResp = eventActionWithHttpInfo(body); return localVarResp.getData(); } @@ -11590,18 +12387,18 @@ public EsmCreateSecretOutput esmCreate(EsmCreate body) throws ApiException { * * * @param body (required) - * @return ApiResponse<EsmCreateSecretOutput> + * @return ApiResponse<Object> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 esmCreateResponse wraps response body. -
200 eventActionResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse esmCreateWithHttpInfo(EsmCreate body) throws ApiException { - okhttp3.Call localVarCall = esmCreateValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse eventActionWithHttpInfo(EventAction body) throws ApiException { + okhttp3.Call localVarCall = eventActionValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -11615,19 +12412,19 @@ public ApiResponse esmCreateWithHttpInfo(EsmCreate body) * @http.response.details - +
Status Code Description Response Headers
200 esmCreateResponse wraps response body. -
200 eventActionResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call esmCreateAsync(EsmCreate body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call eventActionAsync(EventAction body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = esmCreateValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = eventActionValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for esmDelete + * Build call for exportClassicKey * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -11635,11 +12432,11 @@ public okhttp3.Call esmCreateAsync(EsmCreate body, final ApiCallback Status Code Description Response Headers - 202 esmDeleteResponse wraps response body. - + 200 ExportClassicKeyResponse wraps response body. - 0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. - */ - public okhttp3.Call esmDeleteCall(EsmDelete body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call exportClassicKeyCall(ExportClassicKey body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -11657,7 +12454,7 @@ public okhttp3.Call esmDeleteCall(EsmDelete body, final ApiCallback _callback) t Object localVarPostBody = body; // create path and map variables - String localVarPath = "/esm-delete"; + String localVarPath = "/export-classic-key"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -11686,15 +12483,15 @@ public okhttp3.Call esmDeleteCall(EsmDelete body, final ApiCallback _callback) t } @SuppressWarnings("rawtypes") - private okhttp3.Call esmDeleteValidateBeforeCall(EsmDelete body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call exportClassicKeyValidateBeforeCall(ExportClassicKey body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling esmDelete(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling exportClassicKey(Async)"); } - okhttp3.Call localVarCall = esmDeleteCall(body, _callback); + okhttp3.Call localVarCall = exportClassicKeyCall(body, _callback); return localVarCall; } @@ -11703,17 +12500,17 @@ private okhttp3.Call esmDeleteValidateBeforeCall(EsmDelete body, final ApiCallba * * * @param body (required) - * @return EsmDeleteSecretOutput + * @return ExportClassicKeyOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
202 esmDeleteResponse wraps response body. -
200 ExportClassicKeyResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public EsmDeleteSecretOutput esmDelete(EsmDelete body) throws ApiException { - ApiResponse localVarResp = esmDeleteWithHttpInfo(body); + public ExportClassicKeyOutput exportClassicKey(ExportClassicKey body) throws ApiException { + ApiResponse localVarResp = exportClassicKeyWithHttpInfo(body); return localVarResp.getData(); } @@ -11721,18 +12518,18 @@ public EsmDeleteSecretOutput esmDelete(EsmDelete body) throws ApiException { * * * @param body (required) - * @return ApiResponse<EsmDeleteSecretOutput> + * @return ApiResponse<ExportClassicKeyOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
202 esmDeleteResponse wraps response body. -
200 ExportClassicKeyResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse esmDeleteWithHttpInfo(EsmDelete body) throws ApiException { - okhttp3.Call localVarCall = esmDeleteValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse exportClassicKeyWithHttpInfo(ExportClassicKey body) throws ApiException { + okhttp3.Call localVarCall = exportClassicKeyValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -11746,19 +12543,19 @@ public ApiResponse esmDeleteWithHttpInfo(EsmDelete body) * @http.response.details - +
Status Code Description Response Headers
202 esmDeleteResponse wraps response body. -
200 ExportClassicKeyResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call esmDeleteAsync(EsmDelete body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call exportClassicKeyAsync(ExportClassicKey body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = esmDeleteValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = exportClassicKeyValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for esmGet + * Build call for gatewayCreateAllowedAccess * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -11766,11 +12563,11 @@ public okhttp3.Call esmDeleteAsync(EsmDelete body, final ApiCallback Status Code Description Response Headers - 200 esmGetResponse wraps response body. - + 200 gatewayCreateAllowedAccessResponse wraps response body. - 0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. - */ - public okhttp3.Call esmGetCall(EsmGet body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayCreateAllowedAccessCall(GatewayCreateAllowedAccess body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -11788,7 +12585,7 @@ public okhttp3.Call esmGetCall(EsmGet body, final ApiCallback _callback) throws Object localVarPostBody = body; // create path and map variables - String localVarPath = "/esm-get"; + String localVarPath = "/gateway-create-allowed-access"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -11817,15 +12614,15 @@ public okhttp3.Call esmGetCall(EsmGet body, final ApiCallback _callback) throws } @SuppressWarnings("rawtypes") - private okhttp3.Call esmGetValidateBeforeCall(EsmGet body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call gatewayCreateAllowedAccessValidateBeforeCall(GatewayCreateAllowedAccess body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling esmGet(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling gatewayCreateAllowedAccess(Async)"); } - okhttp3.Call localVarCall = esmGetCall(body, _callback); + okhttp3.Call localVarCall = gatewayCreateAllowedAccessCall(body, _callback); return localVarCall; } @@ -11834,17 +12631,17 @@ private okhttp3.Call esmGetValidateBeforeCall(EsmGet body, final ApiCallback _ca * * * @param body (required) - * @return EsmGetSecretOutput + * @return AllowedAccess * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 esmGetResponse wraps response body. -
200 gatewayCreateAllowedAccessResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public EsmGetSecretOutput esmGet(EsmGet body) throws ApiException { - ApiResponse localVarResp = esmGetWithHttpInfo(body); + public AllowedAccess gatewayCreateAllowedAccess(GatewayCreateAllowedAccess body) throws ApiException { + ApiResponse localVarResp = gatewayCreateAllowedAccessWithHttpInfo(body); return localVarResp.getData(); } @@ -11852,18 +12649,18 @@ public EsmGetSecretOutput esmGet(EsmGet body) throws ApiException { * * * @param body (required) - * @return ApiResponse<EsmGetSecretOutput> + * @return ApiResponse<AllowedAccess> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 esmGetResponse wraps response body. -
200 gatewayCreateAllowedAccessResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse esmGetWithHttpInfo(EsmGet body) throws ApiException { - okhttp3.Call localVarCall = esmGetValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse gatewayCreateAllowedAccessWithHttpInfo(GatewayCreateAllowedAccess body) throws ApiException { + okhttp3.Call localVarCall = gatewayCreateAllowedAccessValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -11877,19 +12674,19 @@ public ApiResponse esmGetWithHttpInfo(EsmGet body) throws Ap * @http.response.details - +
Status Code Description Response Headers
200 esmGetResponse wraps response body. -
200 gatewayCreateAllowedAccessResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call esmGetAsync(EsmGet body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayCreateAllowedAccessAsync(GatewayCreateAllowedAccess body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = esmGetValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = gatewayCreateAllowedAccessValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for esmList + * Build call for gatewayCreateK8SAuthConfig * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -11897,11 +12694,11 @@ public okhttp3.Call esmGetAsync(EsmGet body, final ApiCallback Status Code Description Response Headers - 200 esmListResponse wraps response body. - + 201 gatewayCreateK8SAuthConfigResponse wraps response body. - 0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. - */ - public okhttp3.Call esmListCall(EsmList body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayCreateK8SAuthConfigCall(GatewayCreateK8SAuthConfig body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -11919,7 +12716,7 @@ public okhttp3.Call esmListCall(EsmList body, final ApiCallback _callback) throw Object localVarPostBody = body; // create path and map variables - String localVarPath = "/esm-list"; + String localVarPath = "/gateway-create-k8s-auth-config"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -11948,15 +12745,15 @@ public okhttp3.Call esmListCall(EsmList body, final ApiCallback _callback) throw } @SuppressWarnings("rawtypes") - private okhttp3.Call esmListValidateBeforeCall(EsmList body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call gatewayCreateK8SAuthConfigValidateBeforeCall(GatewayCreateK8SAuthConfig body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling esmList(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling gatewayCreateK8SAuthConfig(Async)"); } - okhttp3.Call localVarCall = esmListCall(body, _callback); + okhttp3.Call localVarCall = gatewayCreateK8SAuthConfigCall(body, _callback); return localVarCall; } @@ -11965,17 +12762,17 @@ private okhttp3.Call esmListValidateBeforeCall(EsmList body, final ApiCallback _ * * * @param body (required) - * @return EsmListSecretsOutput + * @return GatewayCreateK8SAuthConfigOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 esmListResponse wraps response body. -
201 gatewayCreateK8SAuthConfigResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public EsmListSecretsOutput esmList(EsmList body) throws ApiException { - ApiResponse localVarResp = esmListWithHttpInfo(body); + public GatewayCreateK8SAuthConfigOutput gatewayCreateK8SAuthConfig(GatewayCreateK8SAuthConfig body) throws ApiException { + ApiResponse localVarResp = gatewayCreateK8SAuthConfigWithHttpInfo(body); return localVarResp.getData(); } @@ -11983,18 +12780,18 @@ public EsmListSecretsOutput esmList(EsmList body) throws ApiException { * * * @param body (required) - * @return ApiResponse<EsmListSecretsOutput> + * @return ApiResponse<GatewayCreateK8SAuthConfigOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 esmListResponse wraps response body. -
201 gatewayCreateK8SAuthConfigResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse esmListWithHttpInfo(EsmList body) throws ApiException { - okhttp3.Call localVarCall = esmListValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse gatewayCreateK8SAuthConfigWithHttpInfo(GatewayCreateK8SAuthConfig body) throws ApiException { + okhttp3.Call localVarCall = gatewayCreateK8SAuthConfigValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -12008,19 +12805,19 @@ public ApiResponse esmListWithHttpInfo(EsmList body) throw * @http.response.details - +
Status Code Description Response Headers
200 esmListResponse wraps response body. -
201 gatewayCreateK8SAuthConfigResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call esmListAsync(EsmList body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayCreateK8SAuthConfigAsync(GatewayCreateK8SAuthConfig body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = esmListValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = gatewayCreateK8SAuthConfigValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for esmUpdate + * Build call for gatewayCreateMigration * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -12028,11 +12825,11 @@ public okhttp3.Call esmListAsync(EsmList body, final ApiCallback Status Code Description Response Headers - 200 esmUpdateResponse wraps response body. - + 200 gatewayMigrationCreateResponse wraps response body. - 0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. - */ - public okhttp3.Call esmUpdateCall(EsmUpdate body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayCreateMigrationCall(GatewayCreateMigration body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -12050,7 +12847,7 @@ public okhttp3.Call esmUpdateCall(EsmUpdate body, final ApiCallback _callback) t Object localVarPostBody = body; // create path and map variables - String localVarPath = "/esm-update"; + String localVarPath = "/gateway-create-migration"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -12079,15 +12876,15 @@ public okhttp3.Call esmUpdateCall(EsmUpdate body, final ApiCallback _callback) t } @SuppressWarnings("rawtypes") - private okhttp3.Call esmUpdateValidateBeforeCall(EsmUpdate body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call gatewayCreateMigrationValidateBeforeCall(GatewayCreateMigration body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling esmUpdate(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling gatewayCreateMigration(Async)"); } - okhttp3.Call localVarCall = esmUpdateCall(body, _callback); + okhttp3.Call localVarCall = gatewayCreateMigrationCall(body, _callback); return localVarCall; } @@ -12096,17 +12893,17 @@ private okhttp3.Call esmUpdateValidateBeforeCall(EsmUpdate body, final ApiCallba * * * @param body (required) - * @return EsmUpdateSecretOutput + * @return GatewayMigrationCreateOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 esmUpdateResponse wraps response body. -
200 gatewayMigrationCreateResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public EsmUpdateSecretOutput esmUpdate(EsmUpdate body) throws ApiException { - ApiResponse localVarResp = esmUpdateWithHttpInfo(body); + public GatewayMigrationCreateOutput gatewayCreateMigration(GatewayCreateMigration body) throws ApiException { + ApiResponse localVarResp = gatewayCreateMigrationWithHttpInfo(body); return localVarResp.getData(); } @@ -12114,18 +12911,18 @@ public EsmUpdateSecretOutput esmUpdate(EsmUpdate body) throws ApiException { * * * @param body (required) - * @return ApiResponse<EsmUpdateSecretOutput> + * @return ApiResponse<GatewayMigrationCreateOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 esmUpdateResponse wraps response body. -
200 gatewayMigrationCreateResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse esmUpdateWithHttpInfo(EsmUpdate body) throws ApiException { - okhttp3.Call localVarCall = esmUpdateValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse gatewayCreateMigrationWithHttpInfo(GatewayCreateMigration body) throws ApiException { + okhttp3.Call localVarCall = gatewayCreateMigrationValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -12139,19 +12936,19 @@ public ApiResponse esmUpdateWithHttpInfo(EsmUpdate body) * @http.response.details - +
Status Code Description Response Headers
200 esmUpdateResponse wraps response body. -
200 gatewayMigrationCreateResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call esmUpdateAsync(EsmUpdate body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayCreateMigrationAsync(GatewayCreateMigration body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = esmUpdateValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = gatewayCreateMigrationValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for eventAction + * Build call for gatewayCreateProducerArtifactory * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -12159,11 +12956,11 @@ public okhttp3.Call esmUpdateAsync(EsmUpdate body, final ApiCallback Status Code Description Response Headers - 200 eventActionResponse wraps response body. - + 201 gatewayCreateProducerArtifactoryResponse wraps response body. - 0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. - */ - public okhttp3.Call eventActionCall(EventAction body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayCreateProducerArtifactoryCall(GatewayCreateProducerArtifactory body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -12181,7 +12978,7 @@ public okhttp3.Call eventActionCall(EventAction body, final ApiCallback _callbac Object localVarPostBody = body; // create path and map variables - String localVarPath = "/event-action"; + String localVarPath = "/gateway-create-producer-artifactory"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -12210,15 +13007,15 @@ public okhttp3.Call eventActionCall(EventAction body, final ApiCallback _callbac } @SuppressWarnings("rawtypes") - private okhttp3.Call eventActionValidateBeforeCall(EventAction body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call gatewayCreateProducerArtifactoryValidateBeforeCall(GatewayCreateProducerArtifactory body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling eventAction(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling gatewayCreateProducerArtifactory(Async)"); } - okhttp3.Call localVarCall = eventActionCall(body, _callback); + okhttp3.Call localVarCall = gatewayCreateProducerArtifactoryCall(body, _callback); return localVarCall; } @@ -12227,17 +13024,17 @@ private okhttp3.Call eventActionValidateBeforeCall(EventAction body, final ApiCa * * * @param body (required) - * @return Object + * @return GatewayCreateProducerArtifactoryOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 eventActionResponse wraps response body. -
201 gatewayCreateProducerArtifactoryResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public Object eventAction(EventAction body) throws ApiException { - ApiResponse localVarResp = eventActionWithHttpInfo(body); + public GatewayCreateProducerArtifactoryOutput gatewayCreateProducerArtifactory(GatewayCreateProducerArtifactory body) throws ApiException { + ApiResponse localVarResp = gatewayCreateProducerArtifactoryWithHttpInfo(body); return localVarResp.getData(); } @@ -12245,18 +13042,18 @@ public Object eventAction(EventAction body) throws ApiException { * * * @param body (required) - * @return ApiResponse<Object> + * @return ApiResponse<GatewayCreateProducerArtifactoryOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 eventActionResponse wraps response body. -
201 gatewayCreateProducerArtifactoryResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse eventActionWithHttpInfo(EventAction body) throws ApiException { - okhttp3.Call localVarCall = eventActionValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse gatewayCreateProducerArtifactoryWithHttpInfo(GatewayCreateProducerArtifactory body) throws ApiException { + okhttp3.Call localVarCall = gatewayCreateProducerArtifactoryValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -12270,19 +13067,19 @@ public ApiResponse eventActionWithHttpInfo(EventAction body) throws ApiE * @http.response.details - +
Status Code Description Response Headers
200 eventActionResponse wraps response body. -
201 gatewayCreateProducerArtifactoryResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call eventActionAsync(EventAction body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayCreateProducerArtifactoryAsync(GatewayCreateProducerArtifactory body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = eventActionValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = gatewayCreateProducerArtifactoryValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for exportClassicKey + * Build call for gatewayCreateProducerAws * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -12290,11 +13087,11 @@ public okhttp3.Call eventActionAsync(EventAction body, final ApiCallback * @http.response.details - +
Status Code Description Response Headers
200 ExportClassicKeyResponse wraps response body. -
201 gatewayCreateProducerAwsResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call exportClassicKeyCall(ExportClassicKey body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayCreateProducerAwsCall(GatewayCreateProducerAws body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -12312,7 +13109,7 @@ public okhttp3.Call exportClassicKeyCall(ExportClassicKey body, final ApiCallbac Object localVarPostBody = body; // create path and map variables - String localVarPath = "/export-classic-key"; + String localVarPath = "/gateway-create-producer-aws"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -12341,15 +13138,15 @@ public okhttp3.Call exportClassicKeyCall(ExportClassicKey body, final ApiCallbac } @SuppressWarnings("rawtypes") - private okhttp3.Call exportClassicKeyValidateBeforeCall(ExportClassicKey body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call gatewayCreateProducerAwsValidateBeforeCall(GatewayCreateProducerAws body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling exportClassicKey(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling gatewayCreateProducerAws(Async)"); } - okhttp3.Call localVarCall = exportClassicKeyCall(body, _callback); + okhttp3.Call localVarCall = gatewayCreateProducerAwsCall(body, _callback); return localVarCall; } @@ -12358,17 +13155,17 @@ private okhttp3.Call exportClassicKeyValidateBeforeCall(ExportClassicKey body, f * * * @param body (required) - * @return ExportClassicKeyOutput + * @return GatewayCreateProducerAwsOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 ExportClassicKeyResponse wraps response body. -
201 gatewayCreateProducerAwsResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ExportClassicKeyOutput exportClassicKey(ExportClassicKey body) throws ApiException { - ApiResponse localVarResp = exportClassicKeyWithHttpInfo(body); + public GatewayCreateProducerAwsOutput gatewayCreateProducerAws(GatewayCreateProducerAws body) throws ApiException { + ApiResponse localVarResp = gatewayCreateProducerAwsWithHttpInfo(body); return localVarResp.getData(); } @@ -12376,18 +13173,18 @@ public ExportClassicKeyOutput exportClassicKey(ExportClassicKey body) throws Api * * * @param body (required) - * @return ApiResponse<ExportClassicKeyOutput> + * @return ApiResponse<GatewayCreateProducerAwsOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 ExportClassicKeyResponse wraps response body. -
201 gatewayCreateProducerAwsResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse exportClassicKeyWithHttpInfo(ExportClassicKey body) throws ApiException { - okhttp3.Call localVarCall = exportClassicKeyValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse gatewayCreateProducerAwsWithHttpInfo(GatewayCreateProducerAws body) throws ApiException { + okhttp3.Call localVarCall = gatewayCreateProducerAwsValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -12401,19 +13198,19 @@ public ApiResponse exportClassicKeyWithHttpInfo(ExportCl * @http.response.details - +
Status Code Description Response Headers
200 ExportClassicKeyResponse wraps response body. -
201 gatewayCreateProducerAwsResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call exportClassicKeyAsync(ExportClassicKey body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayCreateProducerAwsAsync(GatewayCreateProducerAws body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = exportClassicKeyValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = gatewayCreateProducerAwsValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for gatewayCreateAllowedAccess + * Build call for gatewayCreateProducerAzure * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -12421,11 +13218,11 @@ public okhttp3.Call exportClassicKeyAsync(ExportClassicKey body, final ApiCallba * @http.response.details - +
Status Code Description Response Headers
200 gatewayCreateAllowedAccessResponse wraps response body. -
201 gatewayCreateProducerAzureResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayCreateAllowedAccessCall(GatewayCreateAllowedAccess body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayCreateProducerAzureCall(GatewayCreateProducerAzure body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -12443,7 +13240,7 @@ public okhttp3.Call gatewayCreateAllowedAccessCall(GatewayCreateAllowedAccess bo Object localVarPostBody = body; // create path and map variables - String localVarPath = "/gateway-create-allowed-access"; + String localVarPath = "/gateway-create-producer-azure"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -12472,15 +13269,15 @@ public okhttp3.Call gatewayCreateAllowedAccessCall(GatewayCreateAllowedAccess bo } @SuppressWarnings("rawtypes") - private okhttp3.Call gatewayCreateAllowedAccessValidateBeforeCall(GatewayCreateAllowedAccess body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call gatewayCreateProducerAzureValidateBeforeCall(GatewayCreateProducerAzure body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling gatewayCreateAllowedAccess(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling gatewayCreateProducerAzure(Async)"); } - okhttp3.Call localVarCall = gatewayCreateAllowedAccessCall(body, _callback); + okhttp3.Call localVarCall = gatewayCreateProducerAzureCall(body, _callback); return localVarCall; } @@ -12489,17 +13286,17 @@ private okhttp3.Call gatewayCreateAllowedAccessValidateBeforeCall(GatewayCreateA * * * @param body (required) - * @return AllowedAccess + * @return GatewayCreateProducerAzureOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 gatewayCreateAllowedAccessResponse wraps response body. -
201 gatewayCreateProducerAzureResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public AllowedAccess gatewayCreateAllowedAccess(GatewayCreateAllowedAccess body) throws ApiException { - ApiResponse localVarResp = gatewayCreateAllowedAccessWithHttpInfo(body); + public GatewayCreateProducerAzureOutput gatewayCreateProducerAzure(GatewayCreateProducerAzure body) throws ApiException { + ApiResponse localVarResp = gatewayCreateProducerAzureWithHttpInfo(body); return localVarResp.getData(); } @@ -12507,18 +13304,18 @@ public AllowedAccess gatewayCreateAllowedAccess(GatewayCreateAllowedAccess body) * * * @param body (required) - * @return ApiResponse<AllowedAccess> + * @return ApiResponse<GatewayCreateProducerAzureOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 gatewayCreateAllowedAccessResponse wraps response body. -
201 gatewayCreateProducerAzureResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse gatewayCreateAllowedAccessWithHttpInfo(GatewayCreateAllowedAccess body) throws ApiException { - okhttp3.Call localVarCall = gatewayCreateAllowedAccessValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse gatewayCreateProducerAzureWithHttpInfo(GatewayCreateProducerAzure body) throws ApiException { + okhttp3.Call localVarCall = gatewayCreateProducerAzureValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -12532,19 +13329,19 @@ public ApiResponse gatewayCreateAllowedAccessWithHttpInfo(Gateway * @http.response.details - +
Status Code Description Response Headers
200 gatewayCreateAllowedAccessResponse wraps response body. -
201 gatewayCreateProducerAzureResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayCreateAllowedAccessAsync(GatewayCreateAllowedAccess body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayCreateProducerAzureAsync(GatewayCreateProducerAzure body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = gatewayCreateAllowedAccessValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = gatewayCreateProducerAzureValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for gatewayCreateK8SAuthConfig + * Build call for gatewayCreateProducerCassandra * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -12552,11 +13349,11 @@ public okhttp3.Call gatewayCreateAllowedAccessAsync(GatewayCreateAllowedAccess b * @http.response.details - +
Status Code Description Response Headers
201 gatewayCreateK8SAuthConfigResponse wraps response body. -
201 gatewayCreateProducerCassandraResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayCreateK8SAuthConfigCall(GatewayCreateK8SAuthConfig body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayCreateProducerCassandraCall(GatewayCreateProducerCassandra body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -12574,7 +13371,7 @@ public okhttp3.Call gatewayCreateK8SAuthConfigCall(GatewayCreateK8SAuthConfig bo Object localVarPostBody = body; // create path and map variables - String localVarPath = "/gateway-create-k8s-auth-config"; + String localVarPath = "/gateway-create-producer-cassandra"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -12603,15 +13400,15 @@ public okhttp3.Call gatewayCreateK8SAuthConfigCall(GatewayCreateK8SAuthConfig bo } @SuppressWarnings("rawtypes") - private okhttp3.Call gatewayCreateK8SAuthConfigValidateBeforeCall(GatewayCreateK8SAuthConfig body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call gatewayCreateProducerCassandraValidateBeforeCall(GatewayCreateProducerCassandra body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling gatewayCreateK8SAuthConfig(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling gatewayCreateProducerCassandra(Async)"); } - okhttp3.Call localVarCall = gatewayCreateK8SAuthConfigCall(body, _callback); + okhttp3.Call localVarCall = gatewayCreateProducerCassandraCall(body, _callback); return localVarCall; } @@ -12620,17 +13417,17 @@ private okhttp3.Call gatewayCreateK8SAuthConfigValidateBeforeCall(GatewayCreateK * * * @param body (required) - * @return GatewayCreateK8SAuthConfigOutput + * @return GatewayCreateProducerCassandraOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayCreateK8SAuthConfigResponse wraps response body. -
201 gatewayCreateProducerCassandraResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public GatewayCreateK8SAuthConfigOutput gatewayCreateK8SAuthConfig(GatewayCreateK8SAuthConfig body) throws ApiException { - ApiResponse localVarResp = gatewayCreateK8SAuthConfigWithHttpInfo(body); + public GatewayCreateProducerCassandraOutput gatewayCreateProducerCassandra(GatewayCreateProducerCassandra body) throws ApiException { + ApiResponse localVarResp = gatewayCreateProducerCassandraWithHttpInfo(body); return localVarResp.getData(); } @@ -12638,18 +13435,18 @@ public GatewayCreateK8SAuthConfigOutput gatewayCreateK8SAuthConfig(GatewayCreate * * * @param body (required) - * @return ApiResponse<GatewayCreateK8SAuthConfigOutput> + * @return ApiResponse<GatewayCreateProducerCassandraOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayCreateK8SAuthConfigResponse wraps response body. -
201 gatewayCreateProducerCassandraResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse gatewayCreateK8SAuthConfigWithHttpInfo(GatewayCreateK8SAuthConfig body) throws ApiException { - okhttp3.Call localVarCall = gatewayCreateK8SAuthConfigValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse gatewayCreateProducerCassandraWithHttpInfo(GatewayCreateProducerCassandra body) throws ApiException { + okhttp3.Call localVarCall = gatewayCreateProducerCassandraValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -12663,19 +13460,19 @@ public ApiResponse gatewayCreateK8SAuthConfigW * @http.response.details - +
Status Code Description Response Headers
201 gatewayCreateK8SAuthConfigResponse wraps response body. -
201 gatewayCreateProducerCassandraResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayCreateK8SAuthConfigAsync(GatewayCreateK8SAuthConfig body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayCreateProducerCassandraAsync(GatewayCreateProducerCassandra body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = gatewayCreateK8SAuthConfigValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = gatewayCreateProducerCassandraValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for gatewayCreateMigration + * Build call for gatewayCreateProducerCertificateAutomation * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -12683,11 +13480,11 @@ public okhttp3.Call gatewayCreateK8SAuthConfigAsync(GatewayCreateK8SAuthConfig b * @http.response.details - +
Status Code Description Response Headers
200 gatewayMigrationCreateResponse wraps response body. -
201 gatewayCreateProducerCertificateAutomationResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayCreateMigrationCall(GatewayCreateMigration body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayCreateProducerCertificateAutomationCall(GatewayCreateProducerCertificateAutomation body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -12705,7 +13502,7 @@ public okhttp3.Call gatewayCreateMigrationCall(GatewayCreateMigration body, fina Object localVarPostBody = body; // create path and map variables - String localVarPath = "/gateway-create-migration"; + String localVarPath = "/gateway-create-producer-certificate-automation"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -12734,15 +13531,15 @@ public okhttp3.Call gatewayCreateMigrationCall(GatewayCreateMigration body, fina } @SuppressWarnings("rawtypes") - private okhttp3.Call gatewayCreateMigrationValidateBeforeCall(GatewayCreateMigration body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call gatewayCreateProducerCertificateAutomationValidateBeforeCall(GatewayCreateProducerCertificateAutomation body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling gatewayCreateMigration(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling gatewayCreateProducerCertificateAutomation(Async)"); } - okhttp3.Call localVarCall = gatewayCreateMigrationCall(body, _callback); + okhttp3.Call localVarCall = gatewayCreateProducerCertificateAutomationCall(body, _callback); return localVarCall; } @@ -12751,17 +13548,17 @@ private okhttp3.Call gatewayCreateMigrationValidateBeforeCall(GatewayCreateMigra * * * @param body (required) - * @return GatewayMigrationCreateOutput + * @return GatewayCreateProducerCertificateAutomationOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 gatewayMigrationCreateResponse wraps response body. -
201 gatewayCreateProducerCertificateAutomationResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public GatewayMigrationCreateOutput gatewayCreateMigration(GatewayCreateMigration body) throws ApiException { - ApiResponse localVarResp = gatewayCreateMigrationWithHttpInfo(body); + public GatewayCreateProducerCertificateAutomationOutput gatewayCreateProducerCertificateAutomation(GatewayCreateProducerCertificateAutomation body) throws ApiException { + ApiResponse localVarResp = gatewayCreateProducerCertificateAutomationWithHttpInfo(body); return localVarResp.getData(); } @@ -12769,18 +13566,18 @@ public GatewayMigrationCreateOutput gatewayCreateMigration(GatewayCreateMigratio * * * @param body (required) - * @return ApiResponse<GatewayMigrationCreateOutput> + * @return ApiResponse<GatewayCreateProducerCertificateAutomationOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 gatewayMigrationCreateResponse wraps response body. -
201 gatewayCreateProducerCertificateAutomationResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse gatewayCreateMigrationWithHttpInfo(GatewayCreateMigration body) throws ApiException { - okhttp3.Call localVarCall = gatewayCreateMigrationValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse gatewayCreateProducerCertificateAutomationWithHttpInfo(GatewayCreateProducerCertificateAutomation body) throws ApiException { + okhttp3.Call localVarCall = gatewayCreateProducerCertificateAutomationValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -12794,31 +13591,31 @@ public ApiResponse gatewayCreateMigrationWithHttpI * @http.response.details - +
Status Code Description Response Headers
200 gatewayMigrationCreateResponse wraps response body. -
201 gatewayCreateProducerCertificateAutomationResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayCreateMigrationAsync(GatewayCreateMigration body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayCreateProducerCertificateAutomationAsync(GatewayCreateProducerCertificateAutomation body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = gatewayCreateMigrationValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = gatewayCreateProducerCertificateAutomationValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for gatewayCreateProducerArtifactory - * @param body (required) + * Build call for gatewayCreateProducerCustom + * @param body (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 - +
Status Code Description Response Headers
201 gatewayCreateProducerArtifactoryResponse wraps response body. -
200 gatewayCreateProducerCustomResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayCreateProducerArtifactoryCall(GatewayCreateProducerArtifactory body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayCreateProducerCustomCall(GatewayCreateProducerCustom body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -12836,7 +13633,7 @@ public okhttp3.Call gatewayCreateProducerArtifactoryCall(GatewayCreateProducerAr Object localVarPostBody = body; // create path and map variables - String localVarPath = "/gateway-create-producer-artifactory"; + String localVarPath = "/gateway-create-producer-custom"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -12865,15 +13662,10 @@ public okhttp3.Call gatewayCreateProducerArtifactoryCall(GatewayCreateProducerAr } @SuppressWarnings("rawtypes") - private okhttp3.Call gatewayCreateProducerArtifactoryValidateBeforeCall(GatewayCreateProducerArtifactory body, final ApiCallback _callback) throws ApiException { - - // verify the required parameter 'body' is set - if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling gatewayCreateProducerArtifactory(Async)"); - } + private okhttp3.Call gatewayCreateProducerCustomValidateBeforeCall(GatewayCreateProducerCustom body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = gatewayCreateProducerArtifactoryCall(body, _callback); + okhttp3.Call localVarCall = gatewayCreateProducerCustomCall(body, _callback); return localVarCall; } @@ -12881,63 +13673,63 @@ private okhttp3.Call gatewayCreateProducerArtifactoryValidateBeforeCall(GatewayC /** * * - * @param body (required) - * @return GatewayCreateProducerArtifactoryOutput + * @param body (optional) + * @return GatewayCreateProducerCustomOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayCreateProducerArtifactoryResponse wraps response body. -
200 gatewayCreateProducerCustomResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public GatewayCreateProducerArtifactoryOutput gatewayCreateProducerArtifactory(GatewayCreateProducerArtifactory body) throws ApiException { - ApiResponse localVarResp = gatewayCreateProducerArtifactoryWithHttpInfo(body); + public GatewayCreateProducerCustomOutput gatewayCreateProducerCustom(GatewayCreateProducerCustom body) throws ApiException { + ApiResponse localVarResp = gatewayCreateProducerCustomWithHttpInfo(body); return localVarResp.getData(); } /** * * - * @param body (required) - * @return ApiResponse<GatewayCreateProducerArtifactoryOutput> + * @param body (optional) + * @return ApiResponse<GatewayCreateProducerCustomOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayCreateProducerArtifactoryResponse wraps response body. -
200 gatewayCreateProducerCustomResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse gatewayCreateProducerArtifactoryWithHttpInfo(GatewayCreateProducerArtifactory body) throws ApiException { - okhttp3.Call localVarCall = gatewayCreateProducerArtifactoryValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse gatewayCreateProducerCustomWithHttpInfo(GatewayCreateProducerCustom body) throws ApiException { + okhttp3.Call localVarCall = gatewayCreateProducerCustomValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } /** * (asynchronously) * - * @param body (required) + * @param body (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 - +
Status Code Description Response Headers
201 gatewayCreateProducerArtifactoryResponse wraps response body. -
200 gatewayCreateProducerCustomResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayCreateProducerArtifactoryAsync(GatewayCreateProducerArtifactory body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayCreateProducerCustomAsync(GatewayCreateProducerCustom body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = gatewayCreateProducerArtifactoryValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = gatewayCreateProducerCustomValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for gatewayCreateProducerAws + * Build call for gatewayCreateProducerDockerhub * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -12945,11 +13737,11 @@ public okhttp3.Call gatewayCreateProducerArtifactoryAsync(GatewayCreateProducerA * @http.response.details - +
Status Code Description Response Headers
201 gatewayCreateProducerAwsResponse wraps response body. -
201 gatewayCreateProducerDockerhubResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayCreateProducerAwsCall(GatewayCreateProducerAws body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayCreateProducerDockerhubCall(GatewayCreateProducerDockerhub body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -12967,7 +13759,7 @@ public okhttp3.Call gatewayCreateProducerAwsCall(GatewayCreateProducerAws body, Object localVarPostBody = body; // create path and map variables - String localVarPath = "/gateway-create-producer-aws"; + String localVarPath = "/gateway-create-producer-dockerhub"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -12996,15 +13788,15 @@ public okhttp3.Call gatewayCreateProducerAwsCall(GatewayCreateProducerAws body, } @SuppressWarnings("rawtypes") - private okhttp3.Call gatewayCreateProducerAwsValidateBeforeCall(GatewayCreateProducerAws body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call gatewayCreateProducerDockerhubValidateBeforeCall(GatewayCreateProducerDockerhub body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling gatewayCreateProducerAws(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling gatewayCreateProducerDockerhub(Async)"); } - okhttp3.Call localVarCall = gatewayCreateProducerAwsCall(body, _callback); + okhttp3.Call localVarCall = gatewayCreateProducerDockerhubCall(body, _callback); return localVarCall; } @@ -13013,17 +13805,17 @@ private okhttp3.Call gatewayCreateProducerAwsValidateBeforeCall(GatewayCreatePro * * * @param body (required) - * @return GatewayCreateProducerAwsOutput + * @return GatewayCreateProducerDockerhubOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayCreateProducerAwsResponse wraps response body. -
201 gatewayCreateProducerDockerhubResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public GatewayCreateProducerAwsOutput gatewayCreateProducerAws(GatewayCreateProducerAws body) throws ApiException { - ApiResponse localVarResp = gatewayCreateProducerAwsWithHttpInfo(body); + public GatewayCreateProducerDockerhubOutput gatewayCreateProducerDockerhub(GatewayCreateProducerDockerhub body) throws ApiException { + ApiResponse localVarResp = gatewayCreateProducerDockerhubWithHttpInfo(body); return localVarResp.getData(); } @@ -13031,18 +13823,18 @@ public GatewayCreateProducerAwsOutput gatewayCreateProducerAws(GatewayCreateProd * * * @param body (required) - * @return ApiResponse<GatewayCreateProducerAwsOutput> + * @return ApiResponse<GatewayCreateProducerDockerhubOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayCreateProducerAwsResponse wraps response body. -
201 gatewayCreateProducerDockerhubResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse gatewayCreateProducerAwsWithHttpInfo(GatewayCreateProducerAws body) throws ApiException { - okhttp3.Call localVarCall = gatewayCreateProducerAwsValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse gatewayCreateProducerDockerhubWithHttpInfo(GatewayCreateProducerDockerhub body) throws ApiException { + okhttp3.Call localVarCall = gatewayCreateProducerDockerhubValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -13056,19 +13848,19 @@ public ApiResponse gatewayCreateProducerAwsWithH * @http.response.details - +
Status Code Description Response Headers
201 gatewayCreateProducerAwsResponse wraps response body. -
201 gatewayCreateProducerDockerhubResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayCreateProducerAwsAsync(GatewayCreateProducerAws body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayCreateProducerDockerhubAsync(GatewayCreateProducerDockerhub body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = gatewayCreateProducerAwsValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = gatewayCreateProducerDockerhubValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for gatewayCreateProducerAzure + * Build call for gatewayCreateProducerEks * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -13076,11 +13868,11 @@ public okhttp3.Call gatewayCreateProducerAwsAsync(GatewayCreateProducerAws body, * @http.response.details - +
Status Code Description Response Headers
201 gatewayCreateProducerAzureResponse wraps response body. -
201 gatewayCreateProducerEksResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayCreateProducerAzureCall(GatewayCreateProducerAzure body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayCreateProducerEksCall(GatewayCreateProducerEks body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -13098,7 +13890,7 @@ public okhttp3.Call gatewayCreateProducerAzureCall(GatewayCreateProducerAzure bo Object localVarPostBody = body; // create path and map variables - String localVarPath = "/gateway-create-producer-azure"; + String localVarPath = "/gateway-create-producer-eks"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -13127,15 +13919,15 @@ public okhttp3.Call gatewayCreateProducerAzureCall(GatewayCreateProducerAzure bo } @SuppressWarnings("rawtypes") - private okhttp3.Call gatewayCreateProducerAzureValidateBeforeCall(GatewayCreateProducerAzure body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call gatewayCreateProducerEksValidateBeforeCall(GatewayCreateProducerEks body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling gatewayCreateProducerAzure(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling gatewayCreateProducerEks(Async)"); } - okhttp3.Call localVarCall = gatewayCreateProducerAzureCall(body, _callback); + okhttp3.Call localVarCall = gatewayCreateProducerEksCall(body, _callback); return localVarCall; } @@ -13144,17 +13936,17 @@ private okhttp3.Call gatewayCreateProducerAzureValidateBeforeCall(GatewayCreateP * * * @param body (required) - * @return GatewayCreateProducerAzureOutput + * @return GatewayCreateProducerEksOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayCreateProducerAzureResponse wraps response body. -
201 gatewayCreateProducerEksResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public GatewayCreateProducerAzureOutput gatewayCreateProducerAzure(GatewayCreateProducerAzure body) throws ApiException { - ApiResponse localVarResp = gatewayCreateProducerAzureWithHttpInfo(body); + public GatewayCreateProducerEksOutput gatewayCreateProducerEks(GatewayCreateProducerEks body) throws ApiException { + ApiResponse localVarResp = gatewayCreateProducerEksWithHttpInfo(body); return localVarResp.getData(); } @@ -13162,18 +13954,18 @@ public GatewayCreateProducerAzureOutput gatewayCreateProducerAzure(GatewayCreate * * * @param body (required) - * @return ApiResponse<GatewayCreateProducerAzureOutput> + * @return ApiResponse<GatewayCreateProducerEksOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayCreateProducerAzureResponse wraps response body. -
201 gatewayCreateProducerEksResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse gatewayCreateProducerAzureWithHttpInfo(GatewayCreateProducerAzure body) throws ApiException { - okhttp3.Call localVarCall = gatewayCreateProducerAzureValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse gatewayCreateProducerEksWithHttpInfo(GatewayCreateProducerEks body) throws ApiException { + okhttp3.Call localVarCall = gatewayCreateProducerEksValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -13187,19 +13979,19 @@ public ApiResponse gatewayCreateProducerAzureW * @http.response.details - +
Status Code Description Response Headers
201 gatewayCreateProducerAzureResponse wraps response body. -
201 gatewayCreateProducerEksResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayCreateProducerAzureAsync(GatewayCreateProducerAzure body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayCreateProducerEksAsync(GatewayCreateProducerEks body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = gatewayCreateProducerAzureValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = gatewayCreateProducerEksValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for gatewayCreateProducerCassandra + * Build call for gatewayCreateProducerGcp * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -13207,11 +13999,11 @@ public okhttp3.Call gatewayCreateProducerAzureAsync(GatewayCreateProducerAzure b * @http.response.details - +
Status Code Description Response Headers
201 gatewayCreateProducerCassandraResponse wraps response body. -
201 gatewayCreateProducerGcpResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayCreateProducerCassandraCall(GatewayCreateProducerCassandra body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayCreateProducerGcpCall(GatewayCreateProducerGcp body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -13229,7 +14021,7 @@ public okhttp3.Call gatewayCreateProducerCassandraCall(GatewayCreateProducerCass Object localVarPostBody = body; // create path and map variables - String localVarPath = "/gateway-create-producer-cassandra"; + String localVarPath = "/gateway-create-producer-gcp"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -13258,15 +14050,15 @@ public okhttp3.Call gatewayCreateProducerCassandraCall(GatewayCreateProducerCass } @SuppressWarnings("rawtypes") - private okhttp3.Call gatewayCreateProducerCassandraValidateBeforeCall(GatewayCreateProducerCassandra body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call gatewayCreateProducerGcpValidateBeforeCall(GatewayCreateProducerGcp body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling gatewayCreateProducerCassandra(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling gatewayCreateProducerGcp(Async)"); } - okhttp3.Call localVarCall = gatewayCreateProducerCassandraCall(body, _callback); + okhttp3.Call localVarCall = gatewayCreateProducerGcpCall(body, _callback); return localVarCall; } @@ -13275,17 +14067,17 @@ private okhttp3.Call gatewayCreateProducerCassandraValidateBeforeCall(GatewayCre * * * @param body (required) - * @return GatewayCreateProducerCassandraOutput + * @return GatewayCreateProducerGcpOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayCreateProducerCassandraResponse wraps response body. -
201 gatewayCreateProducerGcpResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public GatewayCreateProducerCassandraOutput gatewayCreateProducerCassandra(GatewayCreateProducerCassandra body) throws ApiException { - ApiResponse localVarResp = gatewayCreateProducerCassandraWithHttpInfo(body); + public GatewayCreateProducerGcpOutput gatewayCreateProducerGcp(GatewayCreateProducerGcp body) throws ApiException { + ApiResponse localVarResp = gatewayCreateProducerGcpWithHttpInfo(body); return localVarResp.getData(); } @@ -13293,18 +14085,18 @@ public GatewayCreateProducerCassandraOutput gatewayCreateProducerCassandra(Gatew * * * @param body (required) - * @return ApiResponse<GatewayCreateProducerCassandraOutput> + * @return ApiResponse<GatewayCreateProducerGcpOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayCreateProducerCassandraResponse wraps response body. -
201 gatewayCreateProducerGcpResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse gatewayCreateProducerCassandraWithHttpInfo(GatewayCreateProducerCassandra body) throws ApiException { - okhttp3.Call localVarCall = gatewayCreateProducerCassandraValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse gatewayCreateProducerGcpWithHttpInfo(GatewayCreateProducerGcp body) throws ApiException { + okhttp3.Call localVarCall = gatewayCreateProducerGcpValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -13318,19 +14110,19 @@ public ApiResponse gatewayCreateProducerCa * @http.response.details - +
Status Code Description Response Headers
201 gatewayCreateProducerCassandraResponse wraps response body. -
201 gatewayCreateProducerGcpResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayCreateProducerCassandraAsync(GatewayCreateProducerCassandra body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayCreateProducerGcpAsync(GatewayCreateProducerGcp body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = gatewayCreateProducerCassandraValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = gatewayCreateProducerGcpValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for gatewayCreateProducerCertificateAutomation + * Build call for gatewayCreateProducerGithub * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -13338,11 +14130,11 @@ public okhttp3.Call gatewayCreateProducerCassandraAsync(GatewayCreateProducerCas * @http.response.details - +
Status Code Description Response Headers
201 gatewayCreateProducerCertificateAutomationResponse wraps response body. -
201 gatewayCreateProducerGithubResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayCreateProducerCertificateAutomationCall(GatewayCreateProducerCertificateAutomation body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayCreateProducerGithubCall(GatewayCreateProducerGithub body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -13360,7 +14152,7 @@ public okhttp3.Call gatewayCreateProducerCertificateAutomationCall(GatewayCreate Object localVarPostBody = body; // create path and map variables - String localVarPath = "/gateway-create-producer-certificate-automation"; + String localVarPath = "/gateway-create-producer-github"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -13389,15 +14181,15 @@ public okhttp3.Call gatewayCreateProducerCertificateAutomationCall(GatewayCreate } @SuppressWarnings("rawtypes") - private okhttp3.Call gatewayCreateProducerCertificateAutomationValidateBeforeCall(GatewayCreateProducerCertificateAutomation body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call gatewayCreateProducerGithubValidateBeforeCall(GatewayCreateProducerGithub body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling gatewayCreateProducerCertificateAutomation(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling gatewayCreateProducerGithub(Async)"); } - okhttp3.Call localVarCall = gatewayCreateProducerCertificateAutomationCall(body, _callback); + okhttp3.Call localVarCall = gatewayCreateProducerGithubCall(body, _callback); return localVarCall; } @@ -13406,17 +14198,17 @@ private okhttp3.Call gatewayCreateProducerCertificateAutomationValidateBeforeCal * * * @param body (required) - * @return GatewayCreateProducerCertificateAutomationOutput + * @return GatewayCreateProducerGithubOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayCreateProducerCertificateAutomationResponse wraps response body. -
201 gatewayCreateProducerGithubResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public GatewayCreateProducerCertificateAutomationOutput gatewayCreateProducerCertificateAutomation(GatewayCreateProducerCertificateAutomation body) throws ApiException { - ApiResponse localVarResp = gatewayCreateProducerCertificateAutomationWithHttpInfo(body); + public GatewayCreateProducerGithubOutput gatewayCreateProducerGithub(GatewayCreateProducerGithub body) throws ApiException { + ApiResponse localVarResp = gatewayCreateProducerGithubWithHttpInfo(body); return localVarResp.getData(); } @@ -13424,18 +14216,18 @@ public GatewayCreateProducerCertificateAutomationOutput gatewayCreateProducerCer * * * @param body (required) - * @return ApiResponse<GatewayCreateProducerCertificateAutomationOutput> + * @return ApiResponse<GatewayCreateProducerGithubOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayCreateProducerCertificateAutomationResponse wraps response body. -
201 gatewayCreateProducerGithubResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse gatewayCreateProducerCertificateAutomationWithHttpInfo(GatewayCreateProducerCertificateAutomation body) throws ApiException { - okhttp3.Call localVarCall = gatewayCreateProducerCertificateAutomationValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse gatewayCreateProducerGithubWithHttpInfo(GatewayCreateProducerGithub body) throws ApiException { + okhttp3.Call localVarCall = gatewayCreateProducerGithubValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -13449,31 +14241,31 @@ public ApiResponse gatewayCrea * @http.response.details - +
Status Code Description Response Headers
201 gatewayCreateProducerCertificateAutomationResponse wraps response body. -
201 gatewayCreateProducerGithubResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayCreateProducerCertificateAutomationAsync(GatewayCreateProducerCertificateAutomation body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayCreateProducerGithubAsync(GatewayCreateProducerGithub body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = gatewayCreateProducerCertificateAutomationValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = gatewayCreateProducerGithubValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for gatewayCreateProducerCustom - * @param body (optional) + * Build call for gatewayCreateProducerGke + * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object * @http.response.details - +
Status Code Description Response Headers
200 gatewayCreateProducerCustomResponse wraps response body. -
201 gatewayCreateProducerGkeResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayCreateProducerCustomCall(GatewayCreateProducerCustom body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayCreateProducerGkeCall(GatewayCreateProducerGke body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -13491,7 +14283,7 @@ public okhttp3.Call gatewayCreateProducerCustomCall(GatewayCreateProducerCustom Object localVarPostBody = body; // create path and map variables - String localVarPath = "/gateway-create-producer-custom"; + String localVarPath = "/gateway-create-producer-gke"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -13520,10 +14312,15 @@ public okhttp3.Call gatewayCreateProducerCustomCall(GatewayCreateProducerCustom } @SuppressWarnings("rawtypes") - private okhttp3.Call gatewayCreateProducerCustomValidateBeforeCall(GatewayCreateProducerCustom body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call gatewayCreateProducerGkeValidateBeforeCall(GatewayCreateProducerGke body, final ApiCallback _callback) throws ApiException { + + // verify the required parameter 'body' is set + if (body == null) { + throw new ApiException("Missing the required parameter 'body' when calling gatewayCreateProducerGke(Async)"); + } - okhttp3.Call localVarCall = gatewayCreateProducerCustomCall(body, _callback); + okhttp3.Call localVarCall = gatewayCreateProducerGkeCall(body, _callback); return localVarCall; } @@ -13531,63 +14328,63 @@ private okhttp3.Call gatewayCreateProducerCustomValidateBeforeCall(GatewayCreate /** * * - * @param body (optional) - * @return GatewayCreateProducerCustomOutput + * @param body (required) + * @return GatewayCreateProducerGkeOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 gatewayCreateProducerCustomResponse wraps response body. -
201 gatewayCreateProducerGkeResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public GatewayCreateProducerCustomOutput gatewayCreateProducerCustom(GatewayCreateProducerCustom body) throws ApiException { - ApiResponse localVarResp = gatewayCreateProducerCustomWithHttpInfo(body); + public GatewayCreateProducerGkeOutput gatewayCreateProducerGke(GatewayCreateProducerGke body) throws ApiException { + ApiResponse localVarResp = gatewayCreateProducerGkeWithHttpInfo(body); return localVarResp.getData(); } /** * * - * @param body (optional) - * @return ApiResponse<GatewayCreateProducerCustomOutput> + * @param body (required) + * @return ApiResponse<GatewayCreateProducerGkeOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 gatewayCreateProducerCustomResponse wraps response body. -
201 gatewayCreateProducerGkeResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse gatewayCreateProducerCustomWithHttpInfo(GatewayCreateProducerCustom body) throws ApiException { - okhttp3.Call localVarCall = gatewayCreateProducerCustomValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse gatewayCreateProducerGkeWithHttpInfo(GatewayCreateProducerGke body) throws ApiException { + okhttp3.Call localVarCall = gatewayCreateProducerGkeValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } /** * (asynchronously) * - * @param body (optional) + * @param body (required) * @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 - +
Status Code Description Response Headers
200 gatewayCreateProducerCustomResponse wraps response body. -
201 gatewayCreateProducerGkeResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayCreateProducerCustomAsync(GatewayCreateProducerCustom body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayCreateProducerGkeAsync(GatewayCreateProducerGke body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = gatewayCreateProducerCustomValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = gatewayCreateProducerGkeValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for gatewayCreateProducerDockerhub + * Build call for gatewayCreateProducerHanaDb * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -13595,11 +14392,11 @@ public okhttp3.Call gatewayCreateProducerCustomAsync(GatewayCreateProducerCustom * @http.response.details - +
Status Code Description Response Headers
201 gatewayCreateProducerDockerhubResponse wraps response body. -
201 gatewayCreateProducerHanaDbResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayCreateProducerDockerhubCall(GatewayCreateProducerDockerhub body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayCreateProducerHanaDbCall(GatewayCreateProducerHanaDb body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -13617,7 +14414,7 @@ public okhttp3.Call gatewayCreateProducerDockerhubCall(GatewayCreateProducerDock Object localVarPostBody = body; // create path and map variables - String localVarPath = "/gateway-create-producer-dockerhub"; + String localVarPath = "/gateway-create-producer-hanadb"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -13646,15 +14443,15 @@ public okhttp3.Call gatewayCreateProducerDockerhubCall(GatewayCreateProducerDock } @SuppressWarnings("rawtypes") - private okhttp3.Call gatewayCreateProducerDockerhubValidateBeforeCall(GatewayCreateProducerDockerhub body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call gatewayCreateProducerHanaDbValidateBeforeCall(GatewayCreateProducerHanaDb body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling gatewayCreateProducerDockerhub(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling gatewayCreateProducerHanaDb(Async)"); } - okhttp3.Call localVarCall = gatewayCreateProducerDockerhubCall(body, _callback); + okhttp3.Call localVarCall = gatewayCreateProducerHanaDbCall(body, _callback); return localVarCall; } @@ -13663,17 +14460,17 @@ private okhttp3.Call gatewayCreateProducerDockerhubValidateBeforeCall(GatewayCre * * * @param body (required) - * @return GatewayCreateProducerDockerhubOutput + * @return GatewayCreateProducerHanaDbOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayCreateProducerDockerhubResponse wraps response body. -
201 gatewayCreateProducerHanaDbResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public GatewayCreateProducerDockerhubOutput gatewayCreateProducerDockerhub(GatewayCreateProducerDockerhub body) throws ApiException { - ApiResponse localVarResp = gatewayCreateProducerDockerhubWithHttpInfo(body); + public GatewayCreateProducerHanaDbOutput gatewayCreateProducerHanaDb(GatewayCreateProducerHanaDb body) throws ApiException { + ApiResponse localVarResp = gatewayCreateProducerHanaDbWithHttpInfo(body); return localVarResp.getData(); } @@ -13681,18 +14478,18 @@ public GatewayCreateProducerDockerhubOutput gatewayCreateProducerDockerhub(Gatew * * * @param body (required) - * @return ApiResponse<GatewayCreateProducerDockerhubOutput> + * @return ApiResponse<GatewayCreateProducerHanaDbOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayCreateProducerDockerhubResponse wraps response body. -
201 gatewayCreateProducerHanaDbResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse gatewayCreateProducerDockerhubWithHttpInfo(GatewayCreateProducerDockerhub body) throws ApiException { - okhttp3.Call localVarCall = gatewayCreateProducerDockerhubValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse gatewayCreateProducerHanaDbWithHttpInfo(GatewayCreateProducerHanaDb body) throws ApiException { + okhttp3.Call localVarCall = gatewayCreateProducerHanaDbValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -13706,19 +14503,19 @@ public ApiResponse gatewayCreateProducerDo * @http.response.details - +
Status Code Description Response Headers
201 gatewayCreateProducerDockerhubResponse wraps response body. -
201 gatewayCreateProducerHanaDbResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayCreateProducerDockerhubAsync(GatewayCreateProducerDockerhub body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayCreateProducerHanaDbAsync(GatewayCreateProducerHanaDb body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = gatewayCreateProducerDockerhubValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = gatewayCreateProducerHanaDbValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for gatewayCreateProducerEks + * Build call for gatewayCreateProducerLdap * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -13726,11 +14523,11 @@ public okhttp3.Call gatewayCreateProducerDockerhubAsync(GatewayCreateProducerDoc * @http.response.details - +
Status Code Description Response Headers
201 gatewayCreateProducerEksResponse wraps response body. -
201 gatewayCreateProducerLdapResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayCreateProducerEksCall(GatewayCreateProducerEks body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayCreateProducerLdapCall(GatewayCreateProducerLdap body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -13748,7 +14545,7 @@ public okhttp3.Call gatewayCreateProducerEksCall(GatewayCreateProducerEks body, Object localVarPostBody = body; // create path and map variables - String localVarPath = "/gateway-create-producer-eks"; + String localVarPath = "/gateway-create-producer-ldap"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -13777,15 +14574,15 @@ public okhttp3.Call gatewayCreateProducerEksCall(GatewayCreateProducerEks body, } @SuppressWarnings("rawtypes") - private okhttp3.Call gatewayCreateProducerEksValidateBeforeCall(GatewayCreateProducerEks body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call gatewayCreateProducerLdapValidateBeforeCall(GatewayCreateProducerLdap body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling gatewayCreateProducerEks(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling gatewayCreateProducerLdap(Async)"); } - okhttp3.Call localVarCall = gatewayCreateProducerEksCall(body, _callback); + okhttp3.Call localVarCall = gatewayCreateProducerLdapCall(body, _callback); return localVarCall; } @@ -13794,17 +14591,17 @@ private okhttp3.Call gatewayCreateProducerEksValidateBeforeCall(GatewayCreatePro * * * @param body (required) - * @return GatewayCreateProducerEksOutput + * @return GatewayCreateProducerLdapOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayCreateProducerEksResponse wraps response body. -
201 gatewayCreateProducerLdapResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public GatewayCreateProducerEksOutput gatewayCreateProducerEks(GatewayCreateProducerEks body) throws ApiException { - ApiResponse localVarResp = gatewayCreateProducerEksWithHttpInfo(body); + public GatewayCreateProducerLdapOutput gatewayCreateProducerLdap(GatewayCreateProducerLdap body) throws ApiException { + ApiResponse localVarResp = gatewayCreateProducerLdapWithHttpInfo(body); return localVarResp.getData(); } @@ -13812,18 +14609,18 @@ public GatewayCreateProducerEksOutput gatewayCreateProducerEks(GatewayCreateProd * * * @param body (required) - * @return ApiResponse<GatewayCreateProducerEksOutput> + * @return ApiResponse<GatewayCreateProducerLdapOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayCreateProducerEksResponse wraps response body. -
201 gatewayCreateProducerLdapResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse gatewayCreateProducerEksWithHttpInfo(GatewayCreateProducerEks body) throws ApiException { - okhttp3.Call localVarCall = gatewayCreateProducerEksValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse gatewayCreateProducerLdapWithHttpInfo(GatewayCreateProducerLdap body) throws ApiException { + okhttp3.Call localVarCall = gatewayCreateProducerLdapValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -13837,19 +14634,19 @@ public ApiResponse gatewayCreateProducerEksWithH * @http.response.details - +
Status Code Description Response Headers
201 gatewayCreateProducerEksResponse wraps response body. -
201 gatewayCreateProducerLdapResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayCreateProducerEksAsync(GatewayCreateProducerEks body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayCreateProducerLdapAsync(GatewayCreateProducerLdap body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = gatewayCreateProducerEksValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = gatewayCreateProducerLdapValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for gatewayCreateProducerGcp + * Build call for gatewayCreateProducerMSSQL * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -13857,11 +14654,11 @@ public okhttp3.Call gatewayCreateProducerEksAsync(GatewayCreateProducerEks body, * @http.response.details - +
Status Code Description Response Headers
201 gatewayCreateProducerGcpResponse wraps response body. -
201 gatewayCreateProducerMSSQLResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayCreateProducerGcpCall(GatewayCreateProducerGcp body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayCreateProducerMSSQLCall(GatewayCreateProducerMSSQL body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -13879,7 +14676,7 @@ public okhttp3.Call gatewayCreateProducerGcpCall(GatewayCreateProducerGcp body, Object localVarPostBody = body; // create path and map variables - String localVarPath = "/gateway-create-producer-gcp"; + String localVarPath = "/gateway-create-producer-mssql"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -13908,15 +14705,15 @@ public okhttp3.Call gatewayCreateProducerGcpCall(GatewayCreateProducerGcp body, } @SuppressWarnings("rawtypes") - private okhttp3.Call gatewayCreateProducerGcpValidateBeforeCall(GatewayCreateProducerGcp body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call gatewayCreateProducerMSSQLValidateBeforeCall(GatewayCreateProducerMSSQL body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling gatewayCreateProducerGcp(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling gatewayCreateProducerMSSQL(Async)"); } - okhttp3.Call localVarCall = gatewayCreateProducerGcpCall(body, _callback); + okhttp3.Call localVarCall = gatewayCreateProducerMSSQLCall(body, _callback); return localVarCall; } @@ -13925,17 +14722,17 @@ private okhttp3.Call gatewayCreateProducerGcpValidateBeforeCall(GatewayCreatePro * * * @param body (required) - * @return GatewayCreateProducerGcpOutput + * @return GatewayCreateProducerMSSQLOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayCreateProducerGcpResponse wraps response body. -
201 gatewayCreateProducerMSSQLResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public GatewayCreateProducerGcpOutput gatewayCreateProducerGcp(GatewayCreateProducerGcp body) throws ApiException { - ApiResponse localVarResp = gatewayCreateProducerGcpWithHttpInfo(body); + public GatewayCreateProducerMSSQLOutput gatewayCreateProducerMSSQL(GatewayCreateProducerMSSQL body) throws ApiException { + ApiResponse localVarResp = gatewayCreateProducerMSSQLWithHttpInfo(body); return localVarResp.getData(); } @@ -13943,18 +14740,18 @@ public GatewayCreateProducerGcpOutput gatewayCreateProducerGcp(GatewayCreateProd * * * @param body (required) - * @return ApiResponse<GatewayCreateProducerGcpOutput> + * @return ApiResponse<GatewayCreateProducerMSSQLOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayCreateProducerGcpResponse wraps response body. -
201 gatewayCreateProducerMSSQLResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse gatewayCreateProducerGcpWithHttpInfo(GatewayCreateProducerGcp body) throws ApiException { - okhttp3.Call localVarCall = gatewayCreateProducerGcpValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse gatewayCreateProducerMSSQLWithHttpInfo(GatewayCreateProducerMSSQL body) throws ApiException { + okhttp3.Call localVarCall = gatewayCreateProducerMSSQLValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -13968,19 +14765,19 @@ public ApiResponse gatewayCreateProducerGcpWithH * @http.response.details - +
Status Code Description Response Headers
201 gatewayCreateProducerGcpResponse wraps response body. -
201 gatewayCreateProducerMSSQLResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayCreateProducerGcpAsync(GatewayCreateProducerGcp body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayCreateProducerMSSQLAsync(GatewayCreateProducerMSSQL body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = gatewayCreateProducerGcpValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = gatewayCreateProducerMSSQLValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for gatewayCreateProducerGithub + * Build call for gatewayCreateProducerMongo * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -13988,11 +14785,11 @@ public okhttp3.Call gatewayCreateProducerGcpAsync(GatewayCreateProducerGcp body, * @http.response.details - +
Status Code Description Response Headers
201 gatewayCreateProducerGithubResponse wraps response body. -
201 gatewayCreateProducerMongoResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayCreateProducerGithubCall(GatewayCreateProducerGithub body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayCreateProducerMongoCall(GatewayCreateProducerMongo body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -14010,7 +14807,7 @@ public okhttp3.Call gatewayCreateProducerGithubCall(GatewayCreateProducerGithub Object localVarPostBody = body; // create path and map variables - String localVarPath = "/gateway-create-producer-github"; + String localVarPath = "/gateway-create-producer-mongo"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -14039,15 +14836,15 @@ public okhttp3.Call gatewayCreateProducerGithubCall(GatewayCreateProducerGithub } @SuppressWarnings("rawtypes") - private okhttp3.Call gatewayCreateProducerGithubValidateBeforeCall(GatewayCreateProducerGithub body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call gatewayCreateProducerMongoValidateBeforeCall(GatewayCreateProducerMongo body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling gatewayCreateProducerGithub(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling gatewayCreateProducerMongo(Async)"); } - okhttp3.Call localVarCall = gatewayCreateProducerGithubCall(body, _callback); + okhttp3.Call localVarCall = gatewayCreateProducerMongoCall(body, _callback); return localVarCall; } @@ -14056,17 +14853,17 @@ private okhttp3.Call gatewayCreateProducerGithubValidateBeforeCall(GatewayCreate * * * @param body (required) - * @return GatewayCreateProducerGithubOutput + * @return GatewayCreateProducerMongoOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayCreateProducerGithubResponse wraps response body. -
201 gatewayCreateProducerMongoResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public GatewayCreateProducerGithubOutput gatewayCreateProducerGithub(GatewayCreateProducerGithub body) throws ApiException { - ApiResponse localVarResp = gatewayCreateProducerGithubWithHttpInfo(body); + public GatewayCreateProducerMongoOutput gatewayCreateProducerMongo(GatewayCreateProducerMongo body) throws ApiException { + ApiResponse localVarResp = gatewayCreateProducerMongoWithHttpInfo(body); return localVarResp.getData(); } @@ -14074,18 +14871,18 @@ public GatewayCreateProducerGithubOutput gatewayCreateProducerGithub(GatewayCrea * * * @param body (required) - * @return ApiResponse<GatewayCreateProducerGithubOutput> + * @return ApiResponse<GatewayCreateProducerMongoOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayCreateProducerGithubResponse wraps response body. -
201 gatewayCreateProducerMongoResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse gatewayCreateProducerGithubWithHttpInfo(GatewayCreateProducerGithub body) throws ApiException { - okhttp3.Call localVarCall = gatewayCreateProducerGithubValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse gatewayCreateProducerMongoWithHttpInfo(GatewayCreateProducerMongo body) throws ApiException { + okhttp3.Call localVarCall = gatewayCreateProducerMongoValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -14099,19 +14896,19 @@ public ApiResponse gatewayCreateProducerGithu * @http.response.details - +
Status Code Description Response Headers
201 gatewayCreateProducerGithubResponse wraps response body. -
201 gatewayCreateProducerMongoResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayCreateProducerGithubAsync(GatewayCreateProducerGithub body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayCreateProducerMongoAsync(GatewayCreateProducerMongo body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = gatewayCreateProducerGithubValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = gatewayCreateProducerMongoValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for gatewayCreateProducerGke + * Build call for gatewayCreateProducerMySQL * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -14119,11 +14916,11 @@ public okhttp3.Call gatewayCreateProducerGithubAsync(GatewayCreateProducerGithub * @http.response.details - +
Status Code Description Response Headers
201 gatewayCreateProducerGkeResponse wraps response body. -
201 gatewayCreateProducerMySQLResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayCreateProducerGkeCall(GatewayCreateProducerGke body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayCreateProducerMySQLCall(GatewayCreateProducerMySQL body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -14141,7 +14938,7 @@ public okhttp3.Call gatewayCreateProducerGkeCall(GatewayCreateProducerGke body, Object localVarPostBody = body; // create path and map variables - String localVarPath = "/gateway-create-producer-gke"; + String localVarPath = "/gateway-create-producer-mysql"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -14170,15 +14967,15 @@ public okhttp3.Call gatewayCreateProducerGkeCall(GatewayCreateProducerGke body, } @SuppressWarnings("rawtypes") - private okhttp3.Call gatewayCreateProducerGkeValidateBeforeCall(GatewayCreateProducerGke body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call gatewayCreateProducerMySQLValidateBeforeCall(GatewayCreateProducerMySQL body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling gatewayCreateProducerGke(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling gatewayCreateProducerMySQL(Async)"); } - okhttp3.Call localVarCall = gatewayCreateProducerGkeCall(body, _callback); + okhttp3.Call localVarCall = gatewayCreateProducerMySQLCall(body, _callback); return localVarCall; } @@ -14187,17 +14984,17 @@ private okhttp3.Call gatewayCreateProducerGkeValidateBeforeCall(GatewayCreatePro * * * @param body (required) - * @return GatewayCreateProducerGkeOutput + * @return GatewayCreateProducerMySQLOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayCreateProducerGkeResponse wraps response body. -
201 gatewayCreateProducerMySQLResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public GatewayCreateProducerGkeOutput gatewayCreateProducerGke(GatewayCreateProducerGke body) throws ApiException { - ApiResponse localVarResp = gatewayCreateProducerGkeWithHttpInfo(body); + public GatewayCreateProducerMySQLOutput gatewayCreateProducerMySQL(GatewayCreateProducerMySQL body) throws ApiException { + ApiResponse localVarResp = gatewayCreateProducerMySQLWithHttpInfo(body); return localVarResp.getData(); } @@ -14205,18 +15002,18 @@ public GatewayCreateProducerGkeOutput gatewayCreateProducerGke(GatewayCreateProd * * * @param body (required) - * @return ApiResponse<GatewayCreateProducerGkeOutput> + * @return ApiResponse<GatewayCreateProducerMySQLOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayCreateProducerGkeResponse wraps response body. -
201 gatewayCreateProducerMySQLResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse gatewayCreateProducerGkeWithHttpInfo(GatewayCreateProducerGke body) throws ApiException { - okhttp3.Call localVarCall = gatewayCreateProducerGkeValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse gatewayCreateProducerMySQLWithHttpInfo(GatewayCreateProducerMySQL body) throws ApiException { + okhttp3.Call localVarCall = gatewayCreateProducerMySQLValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -14230,19 +15027,19 @@ public ApiResponse gatewayCreateProducerGkeWithH * @http.response.details - +
Status Code Description Response Headers
201 gatewayCreateProducerGkeResponse wraps response body. -
201 gatewayCreateProducerMySQLResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayCreateProducerGkeAsync(GatewayCreateProducerGke body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayCreateProducerMySQLAsync(GatewayCreateProducerMySQL body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = gatewayCreateProducerGkeValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = gatewayCreateProducerMySQLValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for gatewayCreateProducerHanaDb + * Build call for gatewayCreateProducerNativeK8S * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -14250,11 +15047,11 @@ public okhttp3.Call gatewayCreateProducerGkeAsync(GatewayCreateProducerGke body, * @http.response.details - +
Status Code Description Response Headers
201 gatewayCreateProducerHanaDbResponse wraps response body. -
201 gatewayCreateProducerNativeK8SResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayCreateProducerHanaDbCall(GatewayCreateProducerHanaDb body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayCreateProducerNativeK8SCall(GatewayCreateProducerNativeK8S body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -14272,7 +15069,7 @@ public okhttp3.Call gatewayCreateProducerHanaDbCall(GatewayCreateProducerHanaDb Object localVarPostBody = body; // create path and map variables - String localVarPath = "/gateway-create-producer-hanadb"; + String localVarPath = "/gateway-create-producer-k8s"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -14301,15 +15098,15 @@ public okhttp3.Call gatewayCreateProducerHanaDbCall(GatewayCreateProducerHanaDb } @SuppressWarnings("rawtypes") - private okhttp3.Call gatewayCreateProducerHanaDbValidateBeforeCall(GatewayCreateProducerHanaDb body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call gatewayCreateProducerNativeK8SValidateBeforeCall(GatewayCreateProducerNativeK8S body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling gatewayCreateProducerHanaDb(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling gatewayCreateProducerNativeK8S(Async)"); } - okhttp3.Call localVarCall = gatewayCreateProducerHanaDbCall(body, _callback); + okhttp3.Call localVarCall = gatewayCreateProducerNativeK8SCall(body, _callback); return localVarCall; } @@ -14318,17 +15115,17 @@ private okhttp3.Call gatewayCreateProducerHanaDbValidateBeforeCall(GatewayCreate * * * @param body (required) - * @return GatewayCreateProducerHanaDbOutput + * @return GatewayCreateProducerNativeK8SOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayCreateProducerHanaDbResponse wraps response body. -
201 gatewayCreateProducerNativeK8SResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public GatewayCreateProducerHanaDbOutput gatewayCreateProducerHanaDb(GatewayCreateProducerHanaDb body) throws ApiException { - ApiResponse localVarResp = gatewayCreateProducerHanaDbWithHttpInfo(body); + public GatewayCreateProducerNativeK8SOutput gatewayCreateProducerNativeK8S(GatewayCreateProducerNativeK8S body) throws ApiException { + ApiResponse localVarResp = gatewayCreateProducerNativeK8SWithHttpInfo(body); return localVarResp.getData(); } @@ -14336,18 +15133,18 @@ public GatewayCreateProducerHanaDbOutput gatewayCreateProducerHanaDb(GatewayCrea * * * @param body (required) - * @return ApiResponse<GatewayCreateProducerHanaDbOutput> + * @return ApiResponse<GatewayCreateProducerNativeK8SOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayCreateProducerHanaDbResponse wraps response body. -
201 gatewayCreateProducerNativeK8SResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse gatewayCreateProducerHanaDbWithHttpInfo(GatewayCreateProducerHanaDb body) throws ApiException { - okhttp3.Call localVarCall = gatewayCreateProducerHanaDbValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse gatewayCreateProducerNativeK8SWithHttpInfo(GatewayCreateProducerNativeK8S body) throws ApiException { + okhttp3.Call localVarCall = gatewayCreateProducerNativeK8SValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -14361,19 +15158,19 @@ public ApiResponse gatewayCreateProducerHanaD * @http.response.details - +
Status Code Description Response Headers
201 gatewayCreateProducerHanaDbResponse wraps response body. -
201 gatewayCreateProducerNativeK8SResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayCreateProducerHanaDbAsync(GatewayCreateProducerHanaDb body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayCreateProducerNativeK8SAsync(GatewayCreateProducerNativeK8S body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = gatewayCreateProducerHanaDbValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = gatewayCreateProducerNativeK8SValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for gatewayCreateProducerLdap + * Build call for gatewayCreateProducerOracleDb * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -14381,11 +15178,11 @@ public okhttp3.Call gatewayCreateProducerHanaDbAsync(GatewayCreateProducerHanaDb * @http.response.details - +
Status Code Description Response Headers
201 gatewayCreateProducerLdapResponse wraps response body. -
201 gatewayCreateProducerOracleDbResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayCreateProducerLdapCall(GatewayCreateProducerLdap body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayCreateProducerOracleDbCall(GatewayCreateProducerOracleDb body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -14403,7 +15200,7 @@ public okhttp3.Call gatewayCreateProducerLdapCall(GatewayCreateProducerLdap body Object localVarPostBody = body; // create path and map variables - String localVarPath = "/gateway-create-producer-ldap"; + String localVarPath = "/gateway-create-producer-oracle"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -14432,15 +15229,15 @@ public okhttp3.Call gatewayCreateProducerLdapCall(GatewayCreateProducerLdap body } @SuppressWarnings("rawtypes") - private okhttp3.Call gatewayCreateProducerLdapValidateBeforeCall(GatewayCreateProducerLdap body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call gatewayCreateProducerOracleDbValidateBeforeCall(GatewayCreateProducerOracleDb body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling gatewayCreateProducerLdap(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling gatewayCreateProducerOracleDb(Async)"); } - okhttp3.Call localVarCall = gatewayCreateProducerLdapCall(body, _callback); + okhttp3.Call localVarCall = gatewayCreateProducerOracleDbCall(body, _callback); return localVarCall; } @@ -14449,17 +15246,17 @@ private okhttp3.Call gatewayCreateProducerLdapValidateBeforeCall(GatewayCreatePr * * * @param body (required) - * @return GatewayCreateProducerLdapOutput + * @return GatewayCreateProducerOracleDbOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayCreateProducerLdapResponse wraps response body. -
201 gatewayCreateProducerOracleDbResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public GatewayCreateProducerLdapOutput gatewayCreateProducerLdap(GatewayCreateProducerLdap body) throws ApiException { - ApiResponse localVarResp = gatewayCreateProducerLdapWithHttpInfo(body); + public GatewayCreateProducerOracleDbOutput gatewayCreateProducerOracleDb(GatewayCreateProducerOracleDb body) throws ApiException { + ApiResponse localVarResp = gatewayCreateProducerOracleDbWithHttpInfo(body); return localVarResp.getData(); } @@ -14467,18 +15264,18 @@ public GatewayCreateProducerLdapOutput gatewayCreateProducerLdap(GatewayCreatePr * * * @param body (required) - * @return ApiResponse<GatewayCreateProducerLdapOutput> + * @return ApiResponse<GatewayCreateProducerOracleDbOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayCreateProducerLdapResponse wraps response body. -
201 gatewayCreateProducerOracleDbResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse gatewayCreateProducerLdapWithHttpInfo(GatewayCreateProducerLdap body) throws ApiException { - okhttp3.Call localVarCall = gatewayCreateProducerLdapValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse gatewayCreateProducerOracleDbWithHttpInfo(GatewayCreateProducerOracleDb body) throws ApiException { + okhttp3.Call localVarCall = gatewayCreateProducerOracleDbValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -14492,19 +15289,19 @@ public ApiResponse gatewayCreateProducerLdapWit * @http.response.details - +
Status Code Description Response Headers
201 gatewayCreateProducerLdapResponse wraps response body. -
201 gatewayCreateProducerOracleDbResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayCreateProducerLdapAsync(GatewayCreateProducerLdap body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayCreateProducerOracleDbAsync(GatewayCreateProducerOracleDb body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = gatewayCreateProducerLdapValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = gatewayCreateProducerOracleDbValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for gatewayCreateProducerMSSQL + * Build call for gatewayCreateProducerPing * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -14512,11 +15309,11 @@ public okhttp3.Call gatewayCreateProducerLdapAsync(GatewayCreateProducerLdap bod * @http.response.details - +
Status Code Description Response Headers
201 gatewayCreateProducerMSSQLResponse wraps response body. -
201 gatewayCreateProducerPingResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayCreateProducerMSSQLCall(GatewayCreateProducerMSSQL body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayCreateProducerPingCall(GatewayCreateProducerPing body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -14534,7 +15331,7 @@ public okhttp3.Call gatewayCreateProducerMSSQLCall(GatewayCreateProducerMSSQL bo Object localVarPostBody = body; // create path and map variables - String localVarPath = "/gateway-create-producer-mssql"; + String localVarPath = "/gateway-create-producer-ping"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -14563,15 +15360,15 @@ public okhttp3.Call gatewayCreateProducerMSSQLCall(GatewayCreateProducerMSSQL bo } @SuppressWarnings("rawtypes") - private okhttp3.Call gatewayCreateProducerMSSQLValidateBeforeCall(GatewayCreateProducerMSSQL body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call gatewayCreateProducerPingValidateBeforeCall(GatewayCreateProducerPing body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling gatewayCreateProducerMSSQL(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling gatewayCreateProducerPing(Async)"); } - okhttp3.Call localVarCall = gatewayCreateProducerMSSQLCall(body, _callback); + okhttp3.Call localVarCall = gatewayCreateProducerPingCall(body, _callback); return localVarCall; } @@ -14580,17 +15377,17 @@ private okhttp3.Call gatewayCreateProducerMSSQLValidateBeforeCall(GatewayCreateP * * * @param body (required) - * @return GatewayCreateProducerMSSQLOutput + * @return GatewayCreateProducerPingOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayCreateProducerMSSQLResponse wraps response body. -
201 gatewayCreateProducerPingResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public GatewayCreateProducerMSSQLOutput gatewayCreateProducerMSSQL(GatewayCreateProducerMSSQL body) throws ApiException { - ApiResponse localVarResp = gatewayCreateProducerMSSQLWithHttpInfo(body); + public GatewayCreateProducerPingOutput gatewayCreateProducerPing(GatewayCreateProducerPing body) throws ApiException { + ApiResponse localVarResp = gatewayCreateProducerPingWithHttpInfo(body); return localVarResp.getData(); } @@ -14598,18 +15395,18 @@ public GatewayCreateProducerMSSQLOutput gatewayCreateProducerMSSQL(GatewayCreate * * * @param body (required) - * @return ApiResponse<GatewayCreateProducerMSSQLOutput> + * @return ApiResponse<GatewayCreateProducerPingOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayCreateProducerMSSQLResponse wraps response body. -
201 gatewayCreateProducerPingResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse gatewayCreateProducerMSSQLWithHttpInfo(GatewayCreateProducerMSSQL body) throws ApiException { - okhttp3.Call localVarCall = gatewayCreateProducerMSSQLValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse gatewayCreateProducerPingWithHttpInfo(GatewayCreateProducerPing body) throws ApiException { + okhttp3.Call localVarCall = gatewayCreateProducerPingValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -14623,19 +15420,19 @@ public ApiResponse gatewayCreateProducerMSSQLW * @http.response.details - +
Status Code Description Response Headers
201 gatewayCreateProducerMSSQLResponse wraps response body. -
201 gatewayCreateProducerPingResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayCreateProducerMSSQLAsync(GatewayCreateProducerMSSQL body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayCreateProducerPingAsync(GatewayCreateProducerPing body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = gatewayCreateProducerMSSQLValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = gatewayCreateProducerPingValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for gatewayCreateProducerMongo + * Build call for gatewayCreateProducerPostgreSQL * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -14643,11 +15440,11 @@ public okhttp3.Call gatewayCreateProducerMSSQLAsync(GatewayCreateProducerMSSQL b * @http.response.details - +
Status Code Description Response Headers
201 gatewayCreateProducerMongoResponse wraps response body. -
201 gatewayCreateProducerPostgreSQLResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayCreateProducerMongoCall(GatewayCreateProducerMongo body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayCreateProducerPostgreSQLCall(GatewayCreateProducerPostgreSQL body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -14665,7 +15462,7 @@ public okhttp3.Call gatewayCreateProducerMongoCall(GatewayCreateProducerMongo bo Object localVarPostBody = body; // create path and map variables - String localVarPath = "/gateway-create-producer-mongo"; + String localVarPath = "/gateway-create-producer-postgresql"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -14694,15 +15491,15 @@ public okhttp3.Call gatewayCreateProducerMongoCall(GatewayCreateProducerMongo bo } @SuppressWarnings("rawtypes") - private okhttp3.Call gatewayCreateProducerMongoValidateBeforeCall(GatewayCreateProducerMongo body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call gatewayCreateProducerPostgreSQLValidateBeforeCall(GatewayCreateProducerPostgreSQL body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling gatewayCreateProducerMongo(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling gatewayCreateProducerPostgreSQL(Async)"); } - okhttp3.Call localVarCall = gatewayCreateProducerMongoCall(body, _callback); + okhttp3.Call localVarCall = gatewayCreateProducerPostgreSQLCall(body, _callback); return localVarCall; } @@ -14711,17 +15508,17 @@ private okhttp3.Call gatewayCreateProducerMongoValidateBeforeCall(GatewayCreateP * * * @param body (required) - * @return GatewayCreateProducerMongoOutput + * @return GatewayCreateProducerPostgreSQLOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayCreateProducerMongoResponse wraps response body. -
201 gatewayCreateProducerPostgreSQLResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public GatewayCreateProducerMongoOutput gatewayCreateProducerMongo(GatewayCreateProducerMongo body) throws ApiException { - ApiResponse localVarResp = gatewayCreateProducerMongoWithHttpInfo(body); + public GatewayCreateProducerPostgreSQLOutput gatewayCreateProducerPostgreSQL(GatewayCreateProducerPostgreSQL body) throws ApiException { + ApiResponse localVarResp = gatewayCreateProducerPostgreSQLWithHttpInfo(body); return localVarResp.getData(); } @@ -14729,18 +15526,18 @@ public GatewayCreateProducerMongoOutput gatewayCreateProducerMongo(GatewayCreate * * * @param body (required) - * @return ApiResponse<GatewayCreateProducerMongoOutput> + * @return ApiResponse<GatewayCreateProducerPostgreSQLOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayCreateProducerMongoResponse wraps response body. -
201 gatewayCreateProducerPostgreSQLResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse gatewayCreateProducerMongoWithHttpInfo(GatewayCreateProducerMongo body) throws ApiException { - okhttp3.Call localVarCall = gatewayCreateProducerMongoValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse gatewayCreateProducerPostgreSQLWithHttpInfo(GatewayCreateProducerPostgreSQL body) throws ApiException { + okhttp3.Call localVarCall = gatewayCreateProducerPostgreSQLValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -14754,19 +15551,19 @@ public ApiResponse gatewayCreateProducerMongoW * @http.response.details - +
Status Code Description Response Headers
201 gatewayCreateProducerMongoResponse wraps response body. -
201 gatewayCreateProducerPostgreSQLResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayCreateProducerMongoAsync(GatewayCreateProducerMongo body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayCreateProducerPostgreSQLAsync(GatewayCreateProducerPostgreSQL body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = gatewayCreateProducerMongoValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = gatewayCreateProducerPostgreSQLValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for gatewayCreateProducerMySQL + * Build call for gatewayCreateProducerRabbitMQ * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -14774,11 +15571,11 @@ public okhttp3.Call gatewayCreateProducerMongoAsync(GatewayCreateProducerMongo b * @http.response.details - +
Status Code Description Response Headers
201 gatewayCreateProducerMySQLResponse wraps response body. -
201 gatewayCreateProducerRabbitMQResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayCreateProducerMySQLCall(GatewayCreateProducerMySQL body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayCreateProducerRabbitMQCall(GatewayCreateProducerRabbitMQ body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -14796,7 +15593,7 @@ public okhttp3.Call gatewayCreateProducerMySQLCall(GatewayCreateProducerMySQL bo Object localVarPostBody = body; // create path and map variables - String localVarPath = "/gateway-create-producer-mysql"; + String localVarPath = "/gateway-create-producer-rabbitmq"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -14825,15 +15622,15 @@ public okhttp3.Call gatewayCreateProducerMySQLCall(GatewayCreateProducerMySQL bo } @SuppressWarnings("rawtypes") - private okhttp3.Call gatewayCreateProducerMySQLValidateBeforeCall(GatewayCreateProducerMySQL body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call gatewayCreateProducerRabbitMQValidateBeforeCall(GatewayCreateProducerRabbitMQ body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling gatewayCreateProducerMySQL(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling gatewayCreateProducerRabbitMQ(Async)"); } - okhttp3.Call localVarCall = gatewayCreateProducerMySQLCall(body, _callback); + okhttp3.Call localVarCall = gatewayCreateProducerRabbitMQCall(body, _callback); return localVarCall; } @@ -14842,17 +15639,17 @@ private okhttp3.Call gatewayCreateProducerMySQLValidateBeforeCall(GatewayCreateP * * * @param body (required) - * @return GatewayCreateProducerMySQLOutput + * @return GatewayCreateProducerRabbitMQOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayCreateProducerMySQLResponse wraps response body. -
201 gatewayCreateProducerRabbitMQResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public GatewayCreateProducerMySQLOutput gatewayCreateProducerMySQL(GatewayCreateProducerMySQL body) throws ApiException { - ApiResponse localVarResp = gatewayCreateProducerMySQLWithHttpInfo(body); + public GatewayCreateProducerRabbitMQOutput gatewayCreateProducerRabbitMQ(GatewayCreateProducerRabbitMQ body) throws ApiException { + ApiResponse localVarResp = gatewayCreateProducerRabbitMQWithHttpInfo(body); return localVarResp.getData(); } @@ -14860,18 +15657,18 @@ public GatewayCreateProducerMySQLOutput gatewayCreateProducerMySQL(GatewayCreate * * * @param body (required) - * @return ApiResponse<GatewayCreateProducerMySQLOutput> + * @return ApiResponse<GatewayCreateProducerRabbitMQOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayCreateProducerMySQLResponse wraps response body. -
201 gatewayCreateProducerRabbitMQResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse gatewayCreateProducerMySQLWithHttpInfo(GatewayCreateProducerMySQL body) throws ApiException { - okhttp3.Call localVarCall = gatewayCreateProducerMySQLValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse gatewayCreateProducerRabbitMQWithHttpInfo(GatewayCreateProducerRabbitMQ body) throws ApiException { + okhttp3.Call localVarCall = gatewayCreateProducerRabbitMQValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -14885,19 +15682,19 @@ public ApiResponse gatewayCreateProducerMySQLW * @http.response.details - +
Status Code Description Response Headers
201 gatewayCreateProducerMySQLResponse wraps response body. -
201 gatewayCreateProducerRabbitMQResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayCreateProducerMySQLAsync(GatewayCreateProducerMySQL body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayCreateProducerRabbitMQAsync(GatewayCreateProducerRabbitMQ body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = gatewayCreateProducerMySQLValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = gatewayCreateProducerRabbitMQValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for gatewayCreateProducerNativeK8S + * Build call for gatewayCreateProducerRdp * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -14905,11 +15702,11 @@ public okhttp3.Call gatewayCreateProducerMySQLAsync(GatewayCreateProducerMySQL b * @http.response.details - +
Status Code Description Response Headers
201 gatewayCreateProducerNativeK8SResponse wraps response body. -
201 gatewayCreateProducerRdpResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayCreateProducerNativeK8SCall(GatewayCreateProducerNativeK8S body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayCreateProducerRdpCall(GatewayCreateProducerRdp body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -14927,7 +15724,7 @@ public okhttp3.Call gatewayCreateProducerNativeK8SCall(GatewayCreateProducerNati Object localVarPostBody = body; // create path and map variables - String localVarPath = "/gateway-create-producer-k8s"; + String localVarPath = "/gateway-create-producer-rdp"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -14956,15 +15753,15 @@ public okhttp3.Call gatewayCreateProducerNativeK8SCall(GatewayCreateProducerNati } @SuppressWarnings("rawtypes") - private okhttp3.Call gatewayCreateProducerNativeK8SValidateBeforeCall(GatewayCreateProducerNativeK8S body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call gatewayCreateProducerRdpValidateBeforeCall(GatewayCreateProducerRdp body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling gatewayCreateProducerNativeK8S(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling gatewayCreateProducerRdp(Async)"); } - okhttp3.Call localVarCall = gatewayCreateProducerNativeK8SCall(body, _callback); + okhttp3.Call localVarCall = gatewayCreateProducerRdpCall(body, _callback); return localVarCall; } @@ -14973,17 +15770,17 @@ private okhttp3.Call gatewayCreateProducerNativeK8SValidateBeforeCall(GatewayCre * * * @param body (required) - * @return GatewayCreateProducerNativeK8SOutput + * @return GatewayCreateProducerRdpOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayCreateProducerNativeK8SResponse wraps response body. -
201 gatewayCreateProducerRdpResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public GatewayCreateProducerNativeK8SOutput gatewayCreateProducerNativeK8S(GatewayCreateProducerNativeK8S body) throws ApiException { - ApiResponse localVarResp = gatewayCreateProducerNativeK8SWithHttpInfo(body); + public GatewayCreateProducerRdpOutput gatewayCreateProducerRdp(GatewayCreateProducerRdp body) throws ApiException { + ApiResponse localVarResp = gatewayCreateProducerRdpWithHttpInfo(body); return localVarResp.getData(); } @@ -14991,18 +15788,18 @@ public GatewayCreateProducerNativeK8SOutput gatewayCreateProducerNativeK8S(Gatew * * * @param body (required) - * @return ApiResponse<GatewayCreateProducerNativeK8SOutput> + * @return ApiResponse<GatewayCreateProducerRdpOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayCreateProducerNativeK8SResponse wraps response body. -
201 gatewayCreateProducerRdpResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse gatewayCreateProducerNativeK8SWithHttpInfo(GatewayCreateProducerNativeK8S body) throws ApiException { - okhttp3.Call localVarCall = gatewayCreateProducerNativeK8SValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse gatewayCreateProducerRdpWithHttpInfo(GatewayCreateProducerRdp body) throws ApiException { + okhttp3.Call localVarCall = gatewayCreateProducerRdpValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -15016,19 +15813,19 @@ public ApiResponse gatewayCreateProducerNa * @http.response.details - +
Status Code Description Response Headers
201 gatewayCreateProducerNativeK8SResponse wraps response body. -
201 gatewayCreateProducerRdpResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayCreateProducerNativeK8SAsync(GatewayCreateProducerNativeK8S body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayCreateProducerRdpAsync(GatewayCreateProducerRdp body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = gatewayCreateProducerNativeK8SValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = gatewayCreateProducerRdpValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for gatewayCreateProducerOracleDb + * Build call for gatewayCreateProducerRedis * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -15036,11 +15833,11 @@ public okhttp3.Call gatewayCreateProducerNativeK8SAsync(GatewayCreateProducerNat * @http.response.details - +
Status Code Description Response Headers
201 gatewayCreateProducerOracleDbResponse wraps response body. -
201 gatewayCreateProducerRedisResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayCreateProducerOracleDbCall(GatewayCreateProducerOracleDb body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayCreateProducerRedisCall(GatewayCreateProducerRedis body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -15058,7 +15855,7 @@ public okhttp3.Call gatewayCreateProducerOracleDbCall(GatewayCreateProducerOracl Object localVarPostBody = body; // create path and map variables - String localVarPath = "/gateway-create-producer-oracle"; + String localVarPath = "/gateway-create-producer-Redis"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -15087,15 +15884,15 @@ public okhttp3.Call gatewayCreateProducerOracleDbCall(GatewayCreateProducerOracl } @SuppressWarnings("rawtypes") - private okhttp3.Call gatewayCreateProducerOracleDbValidateBeforeCall(GatewayCreateProducerOracleDb body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call gatewayCreateProducerRedisValidateBeforeCall(GatewayCreateProducerRedis body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling gatewayCreateProducerOracleDb(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling gatewayCreateProducerRedis(Async)"); } - okhttp3.Call localVarCall = gatewayCreateProducerOracleDbCall(body, _callback); + okhttp3.Call localVarCall = gatewayCreateProducerRedisCall(body, _callback); return localVarCall; } @@ -15104,17 +15901,17 @@ private okhttp3.Call gatewayCreateProducerOracleDbValidateBeforeCall(GatewayCrea * * * @param body (required) - * @return GatewayCreateProducerOracleDbOutput + * @return GatewayCreateProducerRedisOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayCreateProducerOracleDbResponse wraps response body. -
201 gatewayCreateProducerRedisResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public GatewayCreateProducerOracleDbOutput gatewayCreateProducerOracleDb(GatewayCreateProducerOracleDb body) throws ApiException { - ApiResponse localVarResp = gatewayCreateProducerOracleDbWithHttpInfo(body); + public GatewayCreateProducerRedisOutput gatewayCreateProducerRedis(GatewayCreateProducerRedis body) throws ApiException { + ApiResponse localVarResp = gatewayCreateProducerRedisWithHttpInfo(body); return localVarResp.getData(); } @@ -15122,18 +15919,18 @@ public GatewayCreateProducerOracleDbOutput gatewayCreateProducerOracleDb(Gateway * * * @param body (required) - * @return ApiResponse<GatewayCreateProducerOracleDbOutput> + * @return ApiResponse<GatewayCreateProducerRedisOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayCreateProducerOracleDbResponse wraps response body. -
201 gatewayCreateProducerRedisResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse gatewayCreateProducerOracleDbWithHttpInfo(GatewayCreateProducerOracleDb body) throws ApiException { - okhttp3.Call localVarCall = gatewayCreateProducerOracleDbValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse gatewayCreateProducerRedisWithHttpInfo(GatewayCreateProducerRedis body) throws ApiException { + okhttp3.Call localVarCall = gatewayCreateProducerRedisValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -15147,19 +15944,19 @@ public ApiResponse gatewayCreateProducerOra * @http.response.details - +
Status Code Description Response Headers
201 gatewayCreateProducerOracleDbResponse wraps response body. -
201 gatewayCreateProducerRedisResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayCreateProducerOracleDbAsync(GatewayCreateProducerOracleDb body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayCreateProducerRedisAsync(GatewayCreateProducerRedis body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = gatewayCreateProducerOracleDbValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = gatewayCreateProducerRedisValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for gatewayCreateProducerPing + * Build call for gatewayCreateProducerRedshift * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -15167,11 +15964,11 @@ public okhttp3.Call gatewayCreateProducerOracleDbAsync(GatewayCreateProducerOrac * @http.response.details - +
Status Code Description Response Headers
201 gatewayCreateProducerPingResponse wraps response body. -
201 gatewayCreateProducerRedshiftResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayCreateProducerPingCall(GatewayCreateProducerPing body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayCreateProducerRedshiftCall(GatewayCreateProducerRedshift body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -15189,7 +15986,7 @@ public okhttp3.Call gatewayCreateProducerPingCall(GatewayCreateProducerPing body Object localVarPostBody = body; // create path and map variables - String localVarPath = "/gateway-create-producer-ping"; + String localVarPath = "/gateway-create-producer-redshift"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -15218,15 +16015,15 @@ public okhttp3.Call gatewayCreateProducerPingCall(GatewayCreateProducerPing body } @SuppressWarnings("rawtypes") - private okhttp3.Call gatewayCreateProducerPingValidateBeforeCall(GatewayCreateProducerPing body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call gatewayCreateProducerRedshiftValidateBeforeCall(GatewayCreateProducerRedshift body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling gatewayCreateProducerPing(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling gatewayCreateProducerRedshift(Async)"); } - okhttp3.Call localVarCall = gatewayCreateProducerPingCall(body, _callback); + okhttp3.Call localVarCall = gatewayCreateProducerRedshiftCall(body, _callback); return localVarCall; } @@ -15235,17 +16032,17 @@ private okhttp3.Call gatewayCreateProducerPingValidateBeforeCall(GatewayCreatePr * * * @param body (required) - * @return GatewayCreateProducerPingOutput + * @return GatewayCreateProducerRedshiftOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayCreateProducerPingResponse wraps response body. -
201 gatewayCreateProducerRedshiftResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public GatewayCreateProducerPingOutput gatewayCreateProducerPing(GatewayCreateProducerPing body) throws ApiException { - ApiResponse localVarResp = gatewayCreateProducerPingWithHttpInfo(body); + public GatewayCreateProducerRedshiftOutput gatewayCreateProducerRedshift(GatewayCreateProducerRedshift body) throws ApiException { + ApiResponse localVarResp = gatewayCreateProducerRedshiftWithHttpInfo(body); return localVarResp.getData(); } @@ -15253,18 +16050,18 @@ public GatewayCreateProducerPingOutput gatewayCreateProducerPing(GatewayCreatePr * * * @param body (required) - * @return ApiResponse<GatewayCreateProducerPingOutput> + * @return ApiResponse<GatewayCreateProducerRedshiftOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayCreateProducerPingResponse wraps response body. -
201 gatewayCreateProducerRedshiftResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse gatewayCreateProducerPingWithHttpInfo(GatewayCreateProducerPing body) throws ApiException { - okhttp3.Call localVarCall = gatewayCreateProducerPingValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse gatewayCreateProducerRedshiftWithHttpInfo(GatewayCreateProducerRedshift body) throws ApiException { + okhttp3.Call localVarCall = gatewayCreateProducerRedshiftValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -15278,19 +16075,19 @@ public ApiResponse gatewayCreateProducerPingWit * @http.response.details - +
Status Code Description Response Headers
201 gatewayCreateProducerPingResponse wraps response body. -
201 gatewayCreateProducerRedshiftResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayCreateProducerPingAsync(GatewayCreateProducerPing body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayCreateProducerRedshiftAsync(GatewayCreateProducerRedshift body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = gatewayCreateProducerPingValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = gatewayCreateProducerRedshiftValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for gatewayCreateProducerPostgreSQL + * Build call for gatewayCreateProducerSnowflake * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -15298,11 +16095,11 @@ public okhttp3.Call gatewayCreateProducerPingAsync(GatewayCreateProducerPing bod * @http.response.details - +
Status Code Description Response Headers
201 gatewayCreateProducerPostgreSQLResponse wraps response body. -
201 gatewayCreateProducerSnowflakeResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayCreateProducerPostgreSQLCall(GatewayCreateProducerPostgreSQL body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayCreateProducerSnowflakeCall(GatewayCreateProducerSnowflake body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -15320,7 +16117,7 @@ public okhttp3.Call gatewayCreateProducerPostgreSQLCall(GatewayCreateProducerPos Object localVarPostBody = body; // create path and map variables - String localVarPath = "/gateway-create-producer-postgresql"; + String localVarPath = "/gateway-create-producer-snowflake"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -15349,15 +16146,15 @@ public okhttp3.Call gatewayCreateProducerPostgreSQLCall(GatewayCreateProducerPos } @SuppressWarnings("rawtypes") - private okhttp3.Call gatewayCreateProducerPostgreSQLValidateBeforeCall(GatewayCreateProducerPostgreSQL body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call gatewayCreateProducerSnowflakeValidateBeforeCall(GatewayCreateProducerSnowflake body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling gatewayCreateProducerPostgreSQL(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling gatewayCreateProducerSnowflake(Async)"); } - okhttp3.Call localVarCall = gatewayCreateProducerPostgreSQLCall(body, _callback); + okhttp3.Call localVarCall = gatewayCreateProducerSnowflakeCall(body, _callback); return localVarCall; } @@ -15366,17 +16163,17 @@ private okhttp3.Call gatewayCreateProducerPostgreSQLValidateBeforeCall(GatewayCr * * * @param body (required) - * @return GatewayCreateProducerPostgreSQLOutput + * @return GatewayCreateProducerSnowflakeOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayCreateProducerPostgreSQLResponse wraps response body. -
201 gatewayCreateProducerSnowflakeResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public GatewayCreateProducerPostgreSQLOutput gatewayCreateProducerPostgreSQL(GatewayCreateProducerPostgreSQL body) throws ApiException { - ApiResponse localVarResp = gatewayCreateProducerPostgreSQLWithHttpInfo(body); + public GatewayCreateProducerSnowflakeOutput gatewayCreateProducerSnowflake(GatewayCreateProducerSnowflake body) throws ApiException { + ApiResponse localVarResp = gatewayCreateProducerSnowflakeWithHttpInfo(body); return localVarResp.getData(); } @@ -15384,18 +16181,18 @@ public GatewayCreateProducerPostgreSQLOutput gatewayCreateProducerPostgreSQL(Gat * * * @param body (required) - * @return ApiResponse<GatewayCreateProducerPostgreSQLOutput> + * @return ApiResponse<GatewayCreateProducerSnowflakeOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayCreateProducerPostgreSQLResponse wraps response body. -
201 gatewayCreateProducerSnowflakeResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse gatewayCreateProducerPostgreSQLWithHttpInfo(GatewayCreateProducerPostgreSQL body) throws ApiException { - okhttp3.Call localVarCall = gatewayCreateProducerPostgreSQLValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse gatewayCreateProducerSnowflakeWithHttpInfo(GatewayCreateProducerSnowflake body) throws ApiException { + okhttp3.Call localVarCall = gatewayCreateProducerSnowflakeValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -15409,19 +16206,19 @@ public ApiResponse gatewayCreateProducerP * @http.response.details - +
Status Code Description Response Headers
201 gatewayCreateProducerPostgreSQLResponse wraps response body. -
201 gatewayCreateProducerSnowflakeResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayCreateProducerPostgreSQLAsync(GatewayCreateProducerPostgreSQL body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayCreateProducerSnowflakeAsync(GatewayCreateProducerSnowflake body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = gatewayCreateProducerPostgreSQLValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = gatewayCreateProducerSnowflakeValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for gatewayCreateProducerRabbitMQ + * Build call for gatewayDeleteAllowedAccess * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -15429,11 +16226,11 @@ public okhttp3.Call gatewayCreateProducerPostgreSQLAsync(GatewayCreateProducerPo * @http.response.details - +
Status Code Description Response Headers
201 gatewayCreateProducerRabbitMQResponse wraps response body. -
200 gatewayDeleteAllowedAccessResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayCreateProducerRabbitMQCall(GatewayCreateProducerRabbitMQ body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayDeleteAllowedAccessCall(GatewayDeleteAllowedAccess body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -15451,7 +16248,7 @@ public okhttp3.Call gatewayCreateProducerRabbitMQCall(GatewayCreateProducerRabbi Object localVarPostBody = body; // create path and map variables - String localVarPath = "/gateway-create-producer-rabbitmq"; + String localVarPath = "/gateway-delete-allowed-access"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -15480,15 +16277,15 @@ public okhttp3.Call gatewayCreateProducerRabbitMQCall(GatewayCreateProducerRabbi } @SuppressWarnings("rawtypes") - private okhttp3.Call gatewayCreateProducerRabbitMQValidateBeforeCall(GatewayCreateProducerRabbitMQ body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call gatewayDeleteAllowedAccessValidateBeforeCall(GatewayDeleteAllowedAccess body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling gatewayCreateProducerRabbitMQ(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling gatewayDeleteAllowedAccess(Async)"); } - okhttp3.Call localVarCall = gatewayCreateProducerRabbitMQCall(body, _callback); + okhttp3.Call localVarCall = gatewayDeleteAllowedAccessCall(body, _callback); return localVarCall; } @@ -15497,17 +16294,17 @@ private okhttp3.Call gatewayCreateProducerRabbitMQValidateBeforeCall(GatewayCrea * * * @param body (required) - * @return GatewayCreateProducerRabbitMQOutput + * @return GatewayDeleteAllowedAccessOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayCreateProducerRabbitMQResponse wraps response body. -
200 gatewayDeleteAllowedAccessResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public GatewayCreateProducerRabbitMQOutput gatewayCreateProducerRabbitMQ(GatewayCreateProducerRabbitMQ body) throws ApiException { - ApiResponse localVarResp = gatewayCreateProducerRabbitMQWithHttpInfo(body); + public GatewayDeleteAllowedAccessOutput gatewayDeleteAllowedAccess(GatewayDeleteAllowedAccess body) throws ApiException { + ApiResponse localVarResp = gatewayDeleteAllowedAccessWithHttpInfo(body); return localVarResp.getData(); } @@ -15515,18 +16312,18 @@ public GatewayCreateProducerRabbitMQOutput gatewayCreateProducerRabbitMQ(Gateway * * * @param body (required) - * @return ApiResponse<GatewayCreateProducerRabbitMQOutput> + * @return ApiResponse<GatewayDeleteAllowedAccessOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayCreateProducerRabbitMQResponse wraps response body. -
200 gatewayDeleteAllowedAccessResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse gatewayCreateProducerRabbitMQWithHttpInfo(GatewayCreateProducerRabbitMQ body) throws ApiException { - okhttp3.Call localVarCall = gatewayCreateProducerRabbitMQValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse gatewayDeleteAllowedAccessWithHttpInfo(GatewayDeleteAllowedAccess body) throws ApiException { + okhttp3.Call localVarCall = gatewayDeleteAllowedAccessValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -15540,19 +16337,19 @@ public ApiResponse gatewayCreateProducerRab * @http.response.details - +
Status Code Description Response Headers
201 gatewayCreateProducerRabbitMQResponse wraps response body. -
200 gatewayDeleteAllowedAccessResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayCreateProducerRabbitMQAsync(GatewayCreateProducerRabbitMQ body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayDeleteAllowedAccessAsync(GatewayDeleteAllowedAccess body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = gatewayCreateProducerRabbitMQValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = gatewayDeleteAllowedAccessValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for gatewayCreateProducerRdp + * Build call for gatewayDeleteK8SAuthConfig * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -15560,11 +16357,11 @@ public okhttp3.Call gatewayCreateProducerRabbitMQAsync(GatewayCreateProducerRabb * @http.response.details - +
Status Code Description Response Headers
201 gatewayCreateProducerRdpResponse wraps response body. -
201 gatewayDeleteK8SAuthConfigResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayCreateProducerRdpCall(GatewayCreateProducerRdp body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayDeleteK8SAuthConfigCall(GatewayDeleteK8SAuthConfig body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -15582,7 +16379,7 @@ public okhttp3.Call gatewayCreateProducerRdpCall(GatewayCreateProducerRdp body, Object localVarPostBody = body; // create path and map variables - String localVarPath = "/gateway-create-producer-rdp"; + String localVarPath = "/gateway-delete-k8s-auth-config"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -15611,15 +16408,15 @@ public okhttp3.Call gatewayCreateProducerRdpCall(GatewayCreateProducerRdp body, } @SuppressWarnings("rawtypes") - private okhttp3.Call gatewayCreateProducerRdpValidateBeforeCall(GatewayCreateProducerRdp body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call gatewayDeleteK8SAuthConfigValidateBeforeCall(GatewayDeleteK8SAuthConfig body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling gatewayCreateProducerRdp(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling gatewayDeleteK8SAuthConfig(Async)"); } - okhttp3.Call localVarCall = gatewayCreateProducerRdpCall(body, _callback); + okhttp3.Call localVarCall = gatewayDeleteK8SAuthConfigCall(body, _callback); return localVarCall; } @@ -15628,17 +16425,17 @@ private okhttp3.Call gatewayCreateProducerRdpValidateBeforeCall(GatewayCreatePro * * * @param body (required) - * @return GatewayCreateProducerRdpOutput + * @return GatewayDeleteK8SAuthConfigOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayCreateProducerRdpResponse wraps response body. -
201 gatewayDeleteK8SAuthConfigResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public GatewayCreateProducerRdpOutput gatewayCreateProducerRdp(GatewayCreateProducerRdp body) throws ApiException { - ApiResponse localVarResp = gatewayCreateProducerRdpWithHttpInfo(body); + public GatewayDeleteK8SAuthConfigOutput gatewayDeleteK8SAuthConfig(GatewayDeleteK8SAuthConfig body) throws ApiException { + ApiResponse localVarResp = gatewayDeleteK8SAuthConfigWithHttpInfo(body); return localVarResp.getData(); } @@ -15646,18 +16443,18 @@ public GatewayCreateProducerRdpOutput gatewayCreateProducerRdp(GatewayCreateProd * * * @param body (required) - * @return ApiResponse<GatewayCreateProducerRdpOutput> + * @return ApiResponse<GatewayDeleteK8SAuthConfigOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayCreateProducerRdpResponse wraps response body. -
201 gatewayDeleteK8SAuthConfigResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse gatewayCreateProducerRdpWithHttpInfo(GatewayCreateProducerRdp body) throws ApiException { - okhttp3.Call localVarCall = gatewayCreateProducerRdpValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse gatewayDeleteK8SAuthConfigWithHttpInfo(GatewayDeleteK8SAuthConfig body) throws ApiException { + okhttp3.Call localVarCall = gatewayDeleteK8SAuthConfigValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -15671,19 +16468,19 @@ public ApiResponse gatewayCreateProducerRdpWithH * @http.response.details - +
Status Code Description Response Headers
201 gatewayCreateProducerRdpResponse wraps response body. -
201 gatewayDeleteK8SAuthConfigResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayCreateProducerRdpAsync(GatewayCreateProducerRdp body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayDeleteK8SAuthConfigAsync(GatewayDeleteK8SAuthConfig body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = gatewayCreateProducerRdpValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = gatewayDeleteK8SAuthConfigValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for gatewayCreateProducerRedis + * Build call for gatewayDeleteMigration * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -15691,11 +16488,11 @@ public okhttp3.Call gatewayCreateProducerRdpAsync(GatewayCreateProducerRdp body, * @http.response.details - +
Status Code Description Response Headers
201 gatewayCreateProducerRedisResponse wraps response body. -
200 gatewayMigrationDeleteResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayCreateProducerRedisCall(GatewayCreateProducerRedis body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayDeleteMigrationCall(GatewayDeleteMigration body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -15713,7 +16510,7 @@ public okhttp3.Call gatewayCreateProducerRedisCall(GatewayCreateProducerRedis bo Object localVarPostBody = body; // create path and map variables - String localVarPath = "/gateway-create-producer-Redis"; + String localVarPath = "/gateway-delete-migration"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -15742,15 +16539,15 @@ public okhttp3.Call gatewayCreateProducerRedisCall(GatewayCreateProducerRedis bo } @SuppressWarnings("rawtypes") - private okhttp3.Call gatewayCreateProducerRedisValidateBeforeCall(GatewayCreateProducerRedis body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call gatewayDeleteMigrationValidateBeforeCall(GatewayDeleteMigration body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling gatewayCreateProducerRedis(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling gatewayDeleteMigration(Async)"); } - okhttp3.Call localVarCall = gatewayCreateProducerRedisCall(body, _callback); + okhttp3.Call localVarCall = gatewayDeleteMigrationCall(body, _callback); return localVarCall; } @@ -15759,17 +16556,17 @@ private okhttp3.Call gatewayCreateProducerRedisValidateBeforeCall(GatewayCreateP * * * @param body (required) - * @return GatewayCreateProducerRedisOutput + * @return GatewayMigrationDeleteOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayCreateProducerRedisResponse wraps response body. -
200 gatewayMigrationDeleteResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public GatewayCreateProducerRedisOutput gatewayCreateProducerRedis(GatewayCreateProducerRedis body) throws ApiException { - ApiResponse localVarResp = gatewayCreateProducerRedisWithHttpInfo(body); + public GatewayMigrationDeleteOutput gatewayDeleteMigration(GatewayDeleteMigration body) throws ApiException { + ApiResponse localVarResp = gatewayDeleteMigrationWithHttpInfo(body); return localVarResp.getData(); } @@ -15777,18 +16574,18 @@ public GatewayCreateProducerRedisOutput gatewayCreateProducerRedis(GatewayCreate * * * @param body (required) - * @return ApiResponse<GatewayCreateProducerRedisOutput> + * @return ApiResponse<GatewayMigrationDeleteOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayCreateProducerRedisResponse wraps response body. -
200 gatewayMigrationDeleteResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse gatewayCreateProducerRedisWithHttpInfo(GatewayCreateProducerRedis body) throws ApiException { - okhttp3.Call localVarCall = gatewayCreateProducerRedisValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse gatewayDeleteMigrationWithHttpInfo(GatewayDeleteMigration body) throws ApiException { + okhttp3.Call localVarCall = gatewayDeleteMigrationValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -15802,19 +16599,19 @@ public ApiResponse gatewayCreateProducerRedisW * @http.response.details - +
Status Code Description Response Headers
201 gatewayCreateProducerRedisResponse wraps response body. -
200 gatewayMigrationDeleteResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayCreateProducerRedisAsync(GatewayCreateProducerRedis body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayDeleteMigrationAsync(GatewayDeleteMigration body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = gatewayCreateProducerRedisValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = gatewayDeleteMigrationValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for gatewayCreateProducerRedshift + * Build call for gatewayDeleteProducer * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -15822,11 +16619,11 @@ public okhttp3.Call gatewayCreateProducerRedisAsync(GatewayCreateProducerRedis b * @http.response.details - +
Status Code Description Response Headers
201 gatewayCreateProducerRedshiftResponse wraps response body. -
200 gatewayDeleteProducerResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayCreateProducerRedshiftCall(GatewayCreateProducerRedshift body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayDeleteProducerCall(GatewayDeleteProducer body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -15844,7 +16641,7 @@ public okhttp3.Call gatewayCreateProducerRedshiftCall(GatewayCreateProducerRedsh Object localVarPostBody = body; // create path and map variables - String localVarPath = "/gateway-create-producer-redshift"; + String localVarPath = "/gateway-delete-producer"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -15873,15 +16670,15 @@ public okhttp3.Call gatewayCreateProducerRedshiftCall(GatewayCreateProducerRedsh } @SuppressWarnings("rawtypes") - private okhttp3.Call gatewayCreateProducerRedshiftValidateBeforeCall(GatewayCreateProducerRedshift body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call gatewayDeleteProducerValidateBeforeCall(GatewayDeleteProducer body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling gatewayCreateProducerRedshift(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling gatewayDeleteProducer(Async)"); } - okhttp3.Call localVarCall = gatewayCreateProducerRedshiftCall(body, _callback); + okhttp3.Call localVarCall = gatewayDeleteProducerCall(body, _callback); return localVarCall; } @@ -15890,17 +16687,17 @@ private okhttp3.Call gatewayCreateProducerRedshiftValidateBeforeCall(GatewayCrea * * * @param body (required) - * @return GatewayCreateProducerRedshiftOutput + * @return GatewayDeleteProducerOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayCreateProducerRedshiftResponse wraps response body. -
200 gatewayDeleteProducerResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public GatewayCreateProducerRedshiftOutput gatewayCreateProducerRedshift(GatewayCreateProducerRedshift body) throws ApiException { - ApiResponse localVarResp = gatewayCreateProducerRedshiftWithHttpInfo(body); + public GatewayDeleteProducerOutput gatewayDeleteProducer(GatewayDeleteProducer body) throws ApiException { + ApiResponse localVarResp = gatewayDeleteProducerWithHttpInfo(body); return localVarResp.getData(); } @@ -15908,18 +16705,18 @@ public GatewayCreateProducerRedshiftOutput gatewayCreateProducerRedshift(Gateway * * * @param body (required) - * @return ApiResponse<GatewayCreateProducerRedshiftOutput> + * @return ApiResponse<GatewayDeleteProducerOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayCreateProducerRedshiftResponse wraps response body. -
200 gatewayDeleteProducerResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse gatewayCreateProducerRedshiftWithHttpInfo(GatewayCreateProducerRedshift body) throws ApiException { - okhttp3.Call localVarCall = gatewayCreateProducerRedshiftValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse gatewayDeleteProducerWithHttpInfo(GatewayDeleteProducer body) throws ApiException { + okhttp3.Call localVarCall = gatewayDeleteProducerValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -15933,19 +16730,19 @@ public ApiResponse gatewayCreateProducerRed * @http.response.details - +
Status Code Description Response Headers
201 gatewayCreateProducerRedshiftResponse wraps response body. -
200 gatewayDeleteProducerResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayCreateProducerRedshiftAsync(GatewayCreateProducerRedshift body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayDeleteProducerAsync(GatewayDeleteProducer body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = gatewayCreateProducerRedshiftValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = gatewayDeleteProducerValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for gatewayCreateProducerSnowflake + * Build call for gatewayDownloadCustomerFragments * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -15953,11 +16750,11 @@ public okhttp3.Call gatewayCreateProducerRedshiftAsync(GatewayCreateProducerReds * @http.response.details - +
Status Code Description Response Headers
201 gatewayCreateProducerSnowflakeResponse wraps response body. -
200 gatewayDownloadCustomerFragmentsResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayCreateProducerSnowflakeCall(GatewayCreateProducerSnowflake body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayDownloadCustomerFragmentsCall(GatewayDownloadCustomerFragments body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -15975,7 +16772,7 @@ public okhttp3.Call gatewayCreateProducerSnowflakeCall(GatewayCreateProducerSnow Object localVarPostBody = body; // create path and map variables - String localVarPath = "/gateway-create-producer-snowflake"; + String localVarPath = "/gateway-download-customer-fragments"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -16004,15 +16801,15 @@ public okhttp3.Call gatewayCreateProducerSnowflakeCall(GatewayCreateProducerSnow } @SuppressWarnings("rawtypes") - private okhttp3.Call gatewayCreateProducerSnowflakeValidateBeforeCall(GatewayCreateProducerSnowflake body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call gatewayDownloadCustomerFragmentsValidateBeforeCall(GatewayDownloadCustomerFragments body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling gatewayCreateProducerSnowflake(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling gatewayDownloadCustomerFragments(Async)"); } - okhttp3.Call localVarCall = gatewayCreateProducerSnowflakeCall(body, _callback); + okhttp3.Call localVarCall = gatewayDownloadCustomerFragmentsCall(body, _callback); return localVarCall; } @@ -16021,17 +16818,17 @@ private okhttp3.Call gatewayCreateProducerSnowflakeValidateBeforeCall(GatewayCre * * * @param body (required) - * @return GatewayCreateProducerSnowflakeOutput + * @return GatewayDownloadCustomerFragmentsOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayCreateProducerSnowflakeResponse wraps response body. -
200 gatewayDownloadCustomerFragmentsResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public GatewayCreateProducerSnowflakeOutput gatewayCreateProducerSnowflake(GatewayCreateProducerSnowflake body) throws ApiException { - ApiResponse localVarResp = gatewayCreateProducerSnowflakeWithHttpInfo(body); + public GatewayDownloadCustomerFragmentsOutput gatewayDownloadCustomerFragments(GatewayDownloadCustomerFragments body) throws ApiException { + ApiResponse localVarResp = gatewayDownloadCustomerFragmentsWithHttpInfo(body); return localVarResp.getData(); } @@ -16039,18 +16836,18 @@ public GatewayCreateProducerSnowflakeOutput gatewayCreateProducerSnowflake(Gatew * * * @param body (required) - * @return ApiResponse<GatewayCreateProducerSnowflakeOutput> + * @return ApiResponse<GatewayDownloadCustomerFragmentsOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayCreateProducerSnowflakeResponse wraps response body. -
200 gatewayDownloadCustomerFragmentsResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse gatewayCreateProducerSnowflakeWithHttpInfo(GatewayCreateProducerSnowflake body) throws ApiException { - okhttp3.Call localVarCall = gatewayCreateProducerSnowflakeValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse gatewayDownloadCustomerFragmentsWithHttpInfo(GatewayDownloadCustomerFragments body) throws ApiException { + okhttp3.Call localVarCall = gatewayDownloadCustomerFragmentsValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -16064,19 +16861,19 @@ public ApiResponse gatewayCreateProducerSn * @http.response.details - +
Status Code Description Response Headers
201 gatewayCreateProducerSnowflakeResponse wraps response body. -
200 gatewayDownloadCustomerFragmentsResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayCreateProducerSnowflakeAsync(GatewayCreateProducerSnowflake body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayDownloadCustomerFragmentsAsync(GatewayDownloadCustomerFragments body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = gatewayCreateProducerSnowflakeValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = gatewayDownloadCustomerFragmentsValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for gatewayDeleteAllowedAccess + * Build call for gatewayGetAllowedAccess * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -16084,11 +16881,11 @@ public okhttp3.Call gatewayCreateProducerSnowflakeAsync(GatewayCreateProducerSno * @http.response.details - +
Status Code Description Response Headers
200 gatewayDeleteAllowedAccessResponse wraps response body. -
200 gatewayGetAllowedAccessResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayDeleteAllowedAccessCall(GatewayDeleteAllowedAccess body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayGetAllowedAccessCall(GatewayGetAllowedAccess body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -16106,7 +16903,7 @@ public okhttp3.Call gatewayDeleteAllowedAccessCall(GatewayDeleteAllowedAccess bo Object localVarPostBody = body; // create path and map variables - String localVarPath = "/gateway-delete-allowed-access"; + String localVarPath = "/gateway-get-allowed-access"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -16135,15 +16932,15 @@ public okhttp3.Call gatewayDeleteAllowedAccessCall(GatewayDeleteAllowedAccess bo } @SuppressWarnings("rawtypes") - private okhttp3.Call gatewayDeleteAllowedAccessValidateBeforeCall(GatewayDeleteAllowedAccess body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call gatewayGetAllowedAccessValidateBeforeCall(GatewayGetAllowedAccess body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling gatewayDeleteAllowedAccess(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling gatewayGetAllowedAccess(Async)"); } - okhttp3.Call localVarCall = gatewayDeleteAllowedAccessCall(body, _callback); + okhttp3.Call localVarCall = gatewayGetAllowedAccessCall(body, _callback); return localVarCall; } @@ -16152,17 +16949,17 @@ private okhttp3.Call gatewayDeleteAllowedAccessValidateBeforeCall(GatewayDeleteA * * * @param body (required) - * @return GatewayDeleteAllowedAccessOutput + * @return AllowedAccess * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 gatewayDeleteAllowedAccessResponse wraps response body. -
200 gatewayGetAllowedAccessResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public GatewayDeleteAllowedAccessOutput gatewayDeleteAllowedAccess(GatewayDeleteAllowedAccess body) throws ApiException { - ApiResponse localVarResp = gatewayDeleteAllowedAccessWithHttpInfo(body); + public AllowedAccess gatewayGetAllowedAccess(GatewayGetAllowedAccess body) throws ApiException { + ApiResponse localVarResp = gatewayGetAllowedAccessWithHttpInfo(body); return localVarResp.getData(); } @@ -16170,18 +16967,18 @@ public GatewayDeleteAllowedAccessOutput gatewayDeleteAllowedAccess(GatewayDelete * * * @param body (required) - * @return ApiResponse<GatewayDeleteAllowedAccessOutput> + * @return ApiResponse<AllowedAccess> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 gatewayDeleteAllowedAccessResponse wraps response body. -
200 gatewayGetAllowedAccessResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse gatewayDeleteAllowedAccessWithHttpInfo(GatewayDeleteAllowedAccess body) throws ApiException { - okhttp3.Call localVarCall = gatewayDeleteAllowedAccessValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse gatewayGetAllowedAccessWithHttpInfo(GatewayGetAllowedAccess body) throws ApiException { + okhttp3.Call localVarCall = gatewayGetAllowedAccessValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -16195,19 +16992,19 @@ public ApiResponse gatewayDeleteAllowedAccessW * @http.response.details - +
Status Code Description Response Headers
200 gatewayDeleteAllowedAccessResponse wraps response body. -
200 gatewayGetAllowedAccessResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayDeleteAllowedAccessAsync(GatewayDeleteAllowedAccess body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayGetAllowedAccessAsync(GatewayGetAllowedAccess body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = gatewayDeleteAllowedAccessValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = gatewayGetAllowedAccessValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for gatewayDeleteK8SAuthConfig + * Build call for gatewayGetConfig * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -16215,11 +17012,11 @@ public okhttp3.Call gatewayDeleteAllowedAccessAsync(GatewayDeleteAllowedAccess b * @http.response.details - +
Status Code Description Response Headers
201 gatewayDeleteK8SAuthConfigResponse wraps response body. -
200 gatewayGetConfigResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayDeleteK8SAuthConfigCall(GatewayDeleteK8SAuthConfig body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayGetConfigCall(GatewayGetConfig body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -16237,7 +17034,7 @@ public okhttp3.Call gatewayDeleteK8SAuthConfigCall(GatewayDeleteK8SAuthConfig bo Object localVarPostBody = body; // create path and map variables - String localVarPath = "/gateway-delete-k8s-auth-config"; + String localVarPath = "/gateway-get-config"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -16266,15 +17063,15 @@ public okhttp3.Call gatewayDeleteK8SAuthConfigCall(GatewayDeleteK8SAuthConfig bo } @SuppressWarnings("rawtypes") - private okhttp3.Call gatewayDeleteK8SAuthConfigValidateBeforeCall(GatewayDeleteK8SAuthConfig body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call gatewayGetConfigValidateBeforeCall(GatewayGetConfig body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling gatewayDeleteK8SAuthConfig(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling gatewayGetConfig(Async)"); } - okhttp3.Call localVarCall = gatewayDeleteK8SAuthConfigCall(body, _callback); + okhttp3.Call localVarCall = gatewayGetConfigCall(body, _callback); return localVarCall; } @@ -16283,17 +17080,17 @@ private okhttp3.Call gatewayDeleteK8SAuthConfigValidateBeforeCall(GatewayDeleteK * * * @param body (required) - * @return GatewayDeleteK8SAuthConfigOutput + * @return AkeylessGatewayConfig * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayDeleteK8SAuthConfigResponse wraps response body. -
200 gatewayGetConfigResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public GatewayDeleteK8SAuthConfigOutput gatewayDeleteK8SAuthConfig(GatewayDeleteK8SAuthConfig body) throws ApiException { - ApiResponse localVarResp = gatewayDeleteK8SAuthConfigWithHttpInfo(body); + public AkeylessGatewayConfig gatewayGetConfig(GatewayGetConfig body) throws ApiException { + ApiResponse localVarResp = gatewayGetConfigWithHttpInfo(body); return localVarResp.getData(); } @@ -16301,18 +17098,18 @@ public GatewayDeleteK8SAuthConfigOutput gatewayDeleteK8SAuthConfig(GatewayDelete * * * @param body (required) - * @return ApiResponse<GatewayDeleteK8SAuthConfigOutput> + * @return ApiResponse<AkeylessGatewayConfig> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayDeleteK8SAuthConfigResponse wraps response body. -
200 gatewayGetConfigResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse gatewayDeleteK8SAuthConfigWithHttpInfo(GatewayDeleteK8SAuthConfig body) throws ApiException { - okhttp3.Call localVarCall = gatewayDeleteK8SAuthConfigValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse gatewayGetConfigWithHttpInfo(GatewayGetConfig body) throws ApiException { + okhttp3.Call localVarCall = gatewayGetConfigValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -16326,19 +17123,19 @@ public ApiResponse gatewayDeleteK8SAuthConfigW * @http.response.details - +
Status Code Description Response Headers
201 gatewayDeleteK8SAuthConfigResponse wraps response body. -
200 gatewayGetConfigResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayDeleteK8SAuthConfigAsync(GatewayDeleteK8SAuthConfig body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayGetConfigAsync(GatewayGetConfig body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = gatewayDeleteK8SAuthConfigValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = gatewayGetConfigValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for gatewayDeleteMigration + * Build call for gatewayGetK8SAuthConfig * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -16346,11 +17143,11 @@ public okhttp3.Call gatewayDeleteK8SAuthConfigAsync(GatewayDeleteK8SAuthConfig b * @http.response.details - +
Status Code Description Response Headers
200 gatewayMigrationDeleteResponse wraps response body. -
201 gatewayGetK8SAuthConfigResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayDeleteMigrationCall(GatewayDeleteMigration body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayGetK8SAuthConfigCall(GatewayGetK8SAuthConfig body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -16368,7 +17165,7 @@ public okhttp3.Call gatewayDeleteMigrationCall(GatewayDeleteMigration body, fina Object localVarPostBody = body; // create path and map variables - String localVarPath = "/gateway-delete-migration"; + String localVarPath = "/gateway-get-k8s-auth-config"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -16397,15 +17194,15 @@ public okhttp3.Call gatewayDeleteMigrationCall(GatewayDeleteMigration body, fina } @SuppressWarnings("rawtypes") - private okhttp3.Call gatewayDeleteMigrationValidateBeforeCall(GatewayDeleteMigration body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call gatewayGetK8SAuthConfigValidateBeforeCall(GatewayGetK8SAuthConfig body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling gatewayDeleteMigration(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling gatewayGetK8SAuthConfig(Async)"); } - okhttp3.Call localVarCall = gatewayDeleteMigrationCall(body, _callback); + okhttp3.Call localVarCall = gatewayGetK8SAuthConfigCall(body, _callback); return localVarCall; } @@ -16414,17 +17211,17 @@ private okhttp3.Call gatewayDeleteMigrationValidateBeforeCall(GatewayDeleteMigra * * * @param body (required) - * @return GatewayMigrationDeleteOutput + * @return GatewayGetK8SAuthConfigOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 gatewayMigrationDeleteResponse wraps response body. -
201 gatewayGetK8SAuthConfigResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public GatewayMigrationDeleteOutput gatewayDeleteMigration(GatewayDeleteMigration body) throws ApiException { - ApiResponse localVarResp = gatewayDeleteMigrationWithHttpInfo(body); + public GatewayGetK8SAuthConfigOutput gatewayGetK8SAuthConfig(GatewayGetK8SAuthConfig body) throws ApiException { + ApiResponse localVarResp = gatewayGetK8SAuthConfigWithHttpInfo(body); return localVarResp.getData(); } @@ -16432,18 +17229,18 @@ public GatewayMigrationDeleteOutput gatewayDeleteMigration(GatewayDeleteMigratio * * * @param body (required) - * @return ApiResponse<GatewayMigrationDeleteOutput> + * @return ApiResponse<GatewayGetK8SAuthConfigOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 gatewayMigrationDeleteResponse wraps response body. -
201 gatewayGetK8SAuthConfigResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse gatewayDeleteMigrationWithHttpInfo(GatewayDeleteMigration body) throws ApiException { - okhttp3.Call localVarCall = gatewayDeleteMigrationValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse gatewayGetK8SAuthConfigWithHttpInfo(GatewayGetK8SAuthConfig body) throws ApiException { + okhttp3.Call localVarCall = gatewayGetK8SAuthConfigValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -16457,19 +17254,19 @@ public ApiResponse gatewayDeleteMigrationWithHttpI * @http.response.details - +
Status Code Description Response Headers
200 gatewayMigrationDeleteResponse wraps response body. -
201 gatewayGetK8SAuthConfigResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayDeleteMigrationAsync(GatewayDeleteMigration body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayGetK8SAuthConfigAsync(GatewayGetK8SAuthConfig body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = gatewayDeleteMigrationValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = gatewayGetK8SAuthConfigValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for gatewayDeleteProducer + * Build call for gatewayGetLdapAuthConfig * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -16477,11 +17274,11 @@ public okhttp3.Call gatewayDeleteMigrationAsync(GatewayDeleteMigration body, fin * @http.response.details - +
Status Code Description Response Headers
200 gatewayDeleteProducerResponse wraps response body. -
201 gatewayGetLdapAuthConfigResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayDeleteProducerCall(GatewayDeleteProducer body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayGetLdapAuthConfigCall(GatewayGetLdapAuthConfig body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -16499,7 +17296,7 @@ public okhttp3.Call gatewayDeleteProducerCall(GatewayDeleteProducer body, final Object localVarPostBody = body; // create path and map variables - String localVarPath = "/gateway-delete-producer"; + String localVarPath = "/gateway-get-ldap-auth-config"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -16528,15 +17325,15 @@ public okhttp3.Call gatewayDeleteProducerCall(GatewayDeleteProducer body, final } @SuppressWarnings("rawtypes") - private okhttp3.Call gatewayDeleteProducerValidateBeforeCall(GatewayDeleteProducer body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call gatewayGetLdapAuthConfigValidateBeforeCall(GatewayGetLdapAuthConfig body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling gatewayDeleteProducer(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling gatewayGetLdapAuthConfig(Async)"); } - okhttp3.Call localVarCall = gatewayDeleteProducerCall(body, _callback); + okhttp3.Call localVarCall = gatewayGetLdapAuthConfigCall(body, _callback); return localVarCall; } @@ -16545,17 +17342,17 @@ private okhttp3.Call gatewayDeleteProducerValidateBeforeCall(GatewayDeleteProduc * * * @param body (required) - * @return GatewayDeleteProducerOutput + * @return GatewayGetLdapAuthConfigOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 gatewayDeleteProducerResponse wraps response body. -
201 gatewayGetLdapAuthConfigResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public GatewayDeleteProducerOutput gatewayDeleteProducer(GatewayDeleteProducer body) throws ApiException { - ApiResponse localVarResp = gatewayDeleteProducerWithHttpInfo(body); + public GatewayGetLdapAuthConfigOutput gatewayGetLdapAuthConfig(GatewayGetLdapAuthConfig body) throws ApiException { + ApiResponse localVarResp = gatewayGetLdapAuthConfigWithHttpInfo(body); return localVarResp.getData(); } @@ -16563,18 +17360,18 @@ public GatewayDeleteProducerOutput gatewayDeleteProducer(GatewayDeleteProducer b * * * @param body (required) - * @return ApiResponse<GatewayDeleteProducerOutput> + * @return ApiResponse<GatewayGetLdapAuthConfigOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 gatewayDeleteProducerResponse wraps response body. -
201 gatewayGetLdapAuthConfigResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse gatewayDeleteProducerWithHttpInfo(GatewayDeleteProducer body) throws ApiException { - okhttp3.Call localVarCall = gatewayDeleteProducerValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse gatewayGetLdapAuthConfigWithHttpInfo(GatewayGetLdapAuthConfig body) throws ApiException { + okhttp3.Call localVarCall = gatewayGetLdapAuthConfigValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -16588,19 +17385,19 @@ public ApiResponse gatewayDeleteProducerWithHttpInf * @http.response.details - +
Status Code Description Response Headers
200 gatewayDeleteProducerResponse wraps response body. -
201 gatewayGetLdapAuthConfigResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayDeleteProducerAsync(GatewayDeleteProducer body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayGetLdapAuthConfigAsync(GatewayGetLdapAuthConfig body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = gatewayDeleteProducerValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = gatewayGetLdapAuthConfigValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for gatewayDownloadCustomerFragments + * Build call for gatewayGetMigration * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -16608,11 +17405,11 @@ public okhttp3.Call gatewayDeleteProducerAsync(GatewayDeleteProducer body, final * @http.response.details - +
Status Code Description Response Headers
200 gatewayDownloadCustomerFragmentsResponse wraps response body. -
200 gatewayMigrationGetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayDownloadCustomerFragmentsCall(GatewayDownloadCustomerFragments body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayGetMigrationCall(GatewayGetMigration body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -16630,7 +17427,7 @@ public okhttp3.Call gatewayDownloadCustomerFragmentsCall(GatewayDownloadCustomer Object localVarPostBody = body; // create path and map variables - String localVarPath = "/gateway-download-customer-fragments"; + String localVarPath = "/gateway-get-migration"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -16659,15 +17456,15 @@ public okhttp3.Call gatewayDownloadCustomerFragmentsCall(GatewayDownloadCustomer } @SuppressWarnings("rawtypes") - private okhttp3.Call gatewayDownloadCustomerFragmentsValidateBeforeCall(GatewayDownloadCustomerFragments body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call gatewayGetMigrationValidateBeforeCall(GatewayGetMigration body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling gatewayDownloadCustomerFragments(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling gatewayGetMigration(Async)"); } - okhttp3.Call localVarCall = gatewayDownloadCustomerFragmentsCall(body, _callback); + okhttp3.Call localVarCall = gatewayGetMigrationCall(body, _callback); return localVarCall; } @@ -16676,17 +17473,17 @@ private okhttp3.Call gatewayDownloadCustomerFragmentsValidateBeforeCall(GatewayD * * * @param body (required) - * @return GatewayDownloadCustomerFragmentsOutput + * @return GatewayMigrationGetOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 gatewayDownloadCustomerFragmentsResponse wraps response body. -
200 gatewayMigrationGetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public GatewayDownloadCustomerFragmentsOutput gatewayDownloadCustomerFragments(GatewayDownloadCustomerFragments body) throws ApiException { - ApiResponse localVarResp = gatewayDownloadCustomerFragmentsWithHttpInfo(body); + public GatewayMigrationGetOutput gatewayGetMigration(GatewayGetMigration body) throws ApiException { + ApiResponse localVarResp = gatewayGetMigrationWithHttpInfo(body); return localVarResp.getData(); } @@ -16694,18 +17491,18 @@ public GatewayDownloadCustomerFragmentsOutput gatewayDownloadCustomerFragments(G * * * @param body (required) - * @return ApiResponse<GatewayDownloadCustomerFragmentsOutput> + * @return ApiResponse<GatewayMigrationGetOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 gatewayDownloadCustomerFragmentsResponse wraps response body. -
200 gatewayMigrationGetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse gatewayDownloadCustomerFragmentsWithHttpInfo(GatewayDownloadCustomerFragments body) throws ApiException { - okhttp3.Call localVarCall = gatewayDownloadCustomerFragmentsValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse gatewayGetMigrationWithHttpInfo(GatewayGetMigration body) throws ApiException { + okhttp3.Call localVarCall = gatewayGetMigrationValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -16719,19 +17516,19 @@ public ApiResponse gatewayDownloadCustom * @http.response.details - +
Status Code Description Response Headers
200 gatewayDownloadCustomerFragmentsResponse wraps response body. -
200 gatewayMigrationGetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayDownloadCustomerFragmentsAsync(GatewayDownloadCustomerFragments body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayGetMigrationAsync(GatewayGetMigration body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = gatewayDownloadCustomerFragmentsValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = gatewayGetMigrationValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for gatewayGetAllowedAccess + * Build call for gatewayGetProducer * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -16739,11 +17536,11 @@ public okhttp3.Call gatewayDownloadCustomerFragmentsAsync(GatewayDownloadCustome * @http.response.details - +
Status Code Description Response Headers
200 gatewayGetAllowedAccessResponse wraps response body. -
200 gatewayGetProducerResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayGetAllowedAccessCall(GatewayGetAllowedAccess body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayGetProducerCall(GatewayGetProducer body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -16761,7 +17558,7 @@ public okhttp3.Call gatewayGetAllowedAccessCall(GatewayGetAllowedAccess body, fi Object localVarPostBody = body; // create path and map variables - String localVarPath = "/gateway-get-allowed-access"; + String localVarPath = "/gateway-get-producer"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -16790,15 +17587,15 @@ public okhttp3.Call gatewayGetAllowedAccessCall(GatewayGetAllowedAccess body, fi } @SuppressWarnings("rawtypes") - private okhttp3.Call gatewayGetAllowedAccessValidateBeforeCall(GatewayGetAllowedAccess body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call gatewayGetProducerValidateBeforeCall(GatewayGetProducer body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling gatewayGetAllowedAccess(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling gatewayGetProducer(Async)"); } - okhttp3.Call localVarCall = gatewayGetAllowedAccessCall(body, _callback); + okhttp3.Call localVarCall = gatewayGetProducerCall(body, _callback); return localVarCall; } @@ -16807,17 +17604,17 @@ private okhttp3.Call gatewayGetAllowedAccessValidateBeforeCall(GatewayGetAllowed * * * @param body (required) - * @return AllowedAccess + * @return DSProducerDetails * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 gatewayGetAllowedAccessResponse wraps response body. -
200 gatewayGetProducerResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public AllowedAccess gatewayGetAllowedAccess(GatewayGetAllowedAccess body) throws ApiException { - ApiResponse localVarResp = gatewayGetAllowedAccessWithHttpInfo(body); + public DSProducerDetails gatewayGetProducer(GatewayGetProducer body) throws ApiException { + ApiResponse localVarResp = gatewayGetProducerWithHttpInfo(body); return localVarResp.getData(); } @@ -16825,18 +17622,18 @@ public AllowedAccess gatewayGetAllowedAccess(GatewayGetAllowedAccess body) throw * * * @param body (required) - * @return ApiResponse<AllowedAccess> + * @return ApiResponse<DSProducerDetails> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 gatewayGetAllowedAccessResponse wraps response body. -
200 gatewayGetProducerResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse gatewayGetAllowedAccessWithHttpInfo(GatewayGetAllowedAccess body) throws ApiException { - okhttp3.Call localVarCall = gatewayGetAllowedAccessValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse gatewayGetProducerWithHttpInfo(GatewayGetProducer body) throws ApiException { + okhttp3.Call localVarCall = gatewayGetProducerValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -16850,19 +17647,19 @@ public ApiResponse gatewayGetAllowedAccessWithHttpInfo(GatewayGet * @http.response.details - +
Status Code Description Response Headers
200 gatewayGetAllowedAccessResponse wraps response body. -
200 gatewayGetProducerResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayGetAllowedAccessAsync(GatewayGetAllowedAccess body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayGetProducerAsync(GatewayGetProducer body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = gatewayGetAllowedAccessValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = gatewayGetProducerValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for gatewayGetConfig + * Build call for gatewayGetTmpUsers * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -16870,11 +17667,11 @@ public okhttp3.Call gatewayGetAllowedAccessAsync(GatewayGetAllowedAccess body, f * @http.response.details - +
Status Code Description Response Headers
200 gatewayGetConfigResponse wraps response body. -
200 gatewayGetTmpUsersResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayGetConfigCall(GatewayGetConfig body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayGetTmpUsersCall(GatewayGetTmpUsers body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -16892,7 +17689,7 @@ public okhttp3.Call gatewayGetConfigCall(GatewayGetConfig body, final ApiCallbac Object localVarPostBody = body; // create path and map variables - String localVarPath = "/gateway-get-config"; + String localVarPath = "/gateway-get-producer-tmp-creds"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -16921,15 +17718,15 @@ public okhttp3.Call gatewayGetConfigCall(GatewayGetConfig body, final ApiCallbac } @SuppressWarnings("rawtypes") - private okhttp3.Call gatewayGetConfigValidateBeforeCall(GatewayGetConfig body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call gatewayGetTmpUsersValidateBeforeCall(GatewayGetTmpUsers body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling gatewayGetConfig(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling gatewayGetTmpUsers(Async)"); } - okhttp3.Call localVarCall = gatewayGetConfigCall(body, _callback); + okhttp3.Call localVarCall = gatewayGetTmpUsersCall(body, _callback); return localVarCall; } @@ -16938,17 +17735,17 @@ private okhttp3.Call gatewayGetConfigValidateBeforeCall(GatewayGetConfig body, f * * * @param body (required) - * @return AkeylessGatewayConfig + * @return List<TmpUserData> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 gatewayGetConfigResponse wraps response body. -
200 gatewayGetTmpUsersResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public AkeylessGatewayConfig gatewayGetConfig(GatewayGetConfig body) throws ApiException { - ApiResponse localVarResp = gatewayGetConfigWithHttpInfo(body); + public List gatewayGetTmpUsers(GatewayGetTmpUsers body) throws ApiException { + ApiResponse> localVarResp = gatewayGetTmpUsersWithHttpInfo(body); return localVarResp.getData(); } @@ -16956,18 +17753,18 @@ public AkeylessGatewayConfig gatewayGetConfig(GatewayGetConfig body) throws ApiE * * * @param body (required) - * @return ApiResponse<AkeylessGatewayConfig> + * @return ApiResponse<List<TmpUserData>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 gatewayGetConfigResponse wraps response body. -
200 gatewayGetTmpUsersResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse gatewayGetConfigWithHttpInfo(GatewayGetConfig body) throws ApiException { - okhttp3.Call localVarCall = gatewayGetConfigValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse> gatewayGetTmpUsersWithHttpInfo(GatewayGetTmpUsers body) throws ApiException { + okhttp3.Call localVarCall = gatewayGetTmpUsersValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken>(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -16981,19 +17778,19 @@ public ApiResponse gatewayGetConfigWithHttpInfo(GatewayGe * @http.response.details - +
Status Code Description Response Headers
200 gatewayGetConfigResponse wraps response body. -
200 gatewayGetTmpUsersResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayGetConfigAsync(GatewayGetConfig body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayGetTmpUsersAsync(GatewayGetTmpUsers body, final ApiCallback> _callback) throws ApiException { - okhttp3.Call localVarCall = gatewayGetConfigValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = gatewayGetTmpUsersValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken>(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for gatewayGetK8SAuthConfig + * Build call for gatewayListMigration * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -17001,11 +17798,11 @@ public okhttp3.Call gatewayGetConfigAsync(GatewayGetConfig body, final ApiCallba * @http.response.details - +
Status Code Description Response Headers
201 gatewayGetK8SAuthConfigResponse wraps response body. -
200 gatewayMigrationListResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayGetK8SAuthConfigCall(GatewayGetK8SAuthConfig body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayListMigrationCall(GatewayListMigration body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -17023,7 +17820,7 @@ public okhttp3.Call gatewayGetK8SAuthConfigCall(GatewayGetK8SAuthConfig body, fi Object localVarPostBody = body; // create path and map variables - String localVarPath = "/gateway-get-k8s-auth-config"; + String localVarPath = "/gateway-list-migration"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -17052,15 +17849,15 @@ public okhttp3.Call gatewayGetK8SAuthConfigCall(GatewayGetK8SAuthConfig body, fi } @SuppressWarnings("rawtypes") - private okhttp3.Call gatewayGetK8SAuthConfigValidateBeforeCall(GatewayGetK8SAuthConfig body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call gatewayListMigrationValidateBeforeCall(GatewayListMigration body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling gatewayGetK8SAuthConfig(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling gatewayListMigration(Async)"); } - okhttp3.Call localVarCall = gatewayGetK8SAuthConfigCall(body, _callback); + okhttp3.Call localVarCall = gatewayListMigrationCall(body, _callback); return localVarCall; } @@ -17069,17 +17866,17 @@ private okhttp3.Call gatewayGetK8SAuthConfigValidateBeforeCall(GatewayGetK8SAuth * * * @param body (required) - * @return GatewayGetK8SAuthConfigOutput + * @return GatewayMigrationListOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayGetK8SAuthConfigResponse wraps response body. -
200 gatewayMigrationListResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public GatewayGetK8SAuthConfigOutput gatewayGetK8SAuthConfig(GatewayGetK8SAuthConfig body) throws ApiException { - ApiResponse localVarResp = gatewayGetK8SAuthConfigWithHttpInfo(body); + public GatewayMigrationListOutput gatewayListMigration(GatewayListMigration body) throws ApiException { + ApiResponse localVarResp = gatewayListMigrationWithHttpInfo(body); return localVarResp.getData(); } @@ -17087,18 +17884,18 @@ public GatewayGetK8SAuthConfigOutput gatewayGetK8SAuthConfig(GatewayGetK8SAuthCo * * * @param body (required) - * @return ApiResponse<GatewayGetK8SAuthConfigOutput> + * @return ApiResponse<GatewayMigrationListOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayGetK8SAuthConfigResponse wraps response body. -
200 gatewayMigrationListResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse gatewayGetK8SAuthConfigWithHttpInfo(GatewayGetK8SAuthConfig body) throws ApiException { - okhttp3.Call localVarCall = gatewayGetK8SAuthConfigValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse gatewayListMigrationWithHttpInfo(GatewayListMigration body) throws ApiException { + okhttp3.Call localVarCall = gatewayListMigrationValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -17112,19 +17909,19 @@ public ApiResponse gatewayGetK8SAuthConfigWithHtt * @http.response.details - +
Status Code Description Response Headers
201 gatewayGetK8SAuthConfigResponse wraps response body. -
200 gatewayMigrationListResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayGetK8SAuthConfigAsync(GatewayGetK8SAuthConfig body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayListMigrationAsync(GatewayListMigration body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = gatewayGetK8SAuthConfigValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = gatewayListMigrationValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for gatewayGetLdapAuthConfig + * Build call for gatewayListProducers * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -17132,11 +17929,11 @@ public okhttp3.Call gatewayGetK8SAuthConfigAsync(GatewayGetK8SAuthConfig body, f * @http.response.details - +
Status Code Description Response Headers
201 gatewayGetLdapAuthConfigResponse wraps response body. -
200 gatewayListProducersResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayGetLdapAuthConfigCall(GatewayGetLdapAuthConfig body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayListProducersCall(GatewayListProducers body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -17154,7 +17951,7 @@ public okhttp3.Call gatewayGetLdapAuthConfigCall(GatewayGetLdapAuthConfig body, Object localVarPostBody = body; // create path and map variables - String localVarPath = "/gateway-get-ldap-auth-config"; + String localVarPath = "/gateway-list-producers"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -17183,15 +17980,15 @@ public okhttp3.Call gatewayGetLdapAuthConfigCall(GatewayGetLdapAuthConfig body, } @SuppressWarnings("rawtypes") - private okhttp3.Call gatewayGetLdapAuthConfigValidateBeforeCall(GatewayGetLdapAuthConfig body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call gatewayListProducersValidateBeforeCall(GatewayListProducers body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling gatewayGetLdapAuthConfig(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling gatewayListProducers(Async)"); } - okhttp3.Call localVarCall = gatewayGetLdapAuthConfigCall(body, _callback); + okhttp3.Call localVarCall = gatewayListProducersCall(body, _callback); return localVarCall; } @@ -17200,17 +17997,17 @@ private okhttp3.Call gatewayGetLdapAuthConfigValidateBeforeCall(GatewayGetLdapAu * * * @param body (required) - * @return GatewayGetLdapAuthConfigOutput + * @return GetProducersListReplyObj * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayGetLdapAuthConfigResponse wraps response body. -
200 gatewayListProducersResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public GatewayGetLdapAuthConfigOutput gatewayGetLdapAuthConfig(GatewayGetLdapAuthConfig body) throws ApiException { - ApiResponse localVarResp = gatewayGetLdapAuthConfigWithHttpInfo(body); + public GetProducersListReplyObj gatewayListProducers(GatewayListProducers body) throws ApiException { + ApiResponse localVarResp = gatewayListProducersWithHttpInfo(body); return localVarResp.getData(); } @@ -17218,18 +18015,18 @@ public GatewayGetLdapAuthConfigOutput gatewayGetLdapAuthConfig(GatewayGetLdapAut * * * @param body (required) - * @return ApiResponse<GatewayGetLdapAuthConfigOutput> + * @return ApiResponse<GetProducersListReplyObj> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayGetLdapAuthConfigResponse wraps response body. -
200 gatewayListProducersResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse gatewayGetLdapAuthConfigWithHttpInfo(GatewayGetLdapAuthConfig body) throws ApiException { - okhttp3.Call localVarCall = gatewayGetLdapAuthConfigValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse gatewayListProducersWithHttpInfo(GatewayListProducers body) throws ApiException { + okhttp3.Call localVarCall = gatewayListProducersValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -17243,19 +18040,19 @@ public ApiResponse gatewayGetLdapAuthConfigWithH * @http.response.details - +
Status Code Description Response Headers
201 gatewayGetLdapAuthConfigResponse wraps response body. -
200 gatewayListProducersResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayGetLdapAuthConfigAsync(GatewayGetLdapAuthConfig body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayListProducersAsync(GatewayListProducers body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = gatewayGetLdapAuthConfigValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = gatewayListProducersValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for gatewayGetMigration + * Build call for gatewayListRotatedSecrets * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -17263,11 +18060,11 @@ public okhttp3.Call gatewayGetLdapAuthConfigAsync(GatewayGetLdapAuthConfig body, * @http.response.details - +
Status Code Description Response Headers
200 gatewayMigrationGetResponse wraps response body. -
200 gatewayListRotatedSecretsResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayGetMigrationCall(GatewayGetMigration body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayListRotatedSecretsCall(GatewayListRotatedSecrets body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -17285,7 +18082,7 @@ public okhttp3.Call gatewayGetMigrationCall(GatewayGetMigration body, final ApiC Object localVarPostBody = body; // create path and map variables - String localVarPath = "/gateway-get-migration"; + String localVarPath = "/gateway-list-rotated-secrets"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -17314,15 +18111,15 @@ public okhttp3.Call gatewayGetMigrationCall(GatewayGetMigration body, final ApiC } @SuppressWarnings("rawtypes") - private okhttp3.Call gatewayGetMigrationValidateBeforeCall(GatewayGetMigration body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call gatewayListRotatedSecretsValidateBeforeCall(GatewayListRotatedSecrets body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling gatewayGetMigration(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling gatewayListRotatedSecrets(Async)"); } - okhttp3.Call localVarCall = gatewayGetMigrationCall(body, _callback); + okhttp3.Call localVarCall = gatewayListRotatedSecretsCall(body, _callback); return localVarCall; } @@ -17331,17 +18128,17 @@ private okhttp3.Call gatewayGetMigrationValidateBeforeCall(GatewayGetMigration b * * * @param body (required) - * @return GatewayMigrationGetOutput + * @return ListItemsOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 gatewayMigrationGetResponse wraps response body. -
200 gatewayListRotatedSecretsResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public GatewayMigrationGetOutput gatewayGetMigration(GatewayGetMigration body) throws ApiException { - ApiResponse localVarResp = gatewayGetMigrationWithHttpInfo(body); + public ListItemsOutput gatewayListRotatedSecrets(GatewayListRotatedSecrets body) throws ApiException { + ApiResponse localVarResp = gatewayListRotatedSecretsWithHttpInfo(body); return localVarResp.getData(); } @@ -17349,18 +18146,18 @@ public GatewayMigrationGetOutput gatewayGetMigration(GatewayGetMigration body) t * * * @param body (required) - * @return ApiResponse<GatewayMigrationGetOutput> + * @return ApiResponse<ListItemsOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 gatewayMigrationGetResponse wraps response body. -
200 gatewayListRotatedSecretsResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse gatewayGetMigrationWithHttpInfo(GatewayGetMigration body) throws ApiException { - okhttp3.Call localVarCall = gatewayGetMigrationValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse gatewayListRotatedSecretsWithHttpInfo(GatewayListRotatedSecrets body) throws ApiException { + okhttp3.Call localVarCall = gatewayListRotatedSecretsValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -17374,31 +18171,31 @@ public ApiResponse gatewayGetMigrationWithHttpInfo(Ga * @http.response.details - +
Status Code Description Response Headers
200 gatewayMigrationGetResponse wraps response body. -
200 gatewayListRotatedSecretsResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayGetMigrationAsync(GatewayGetMigration body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayListRotatedSecretsAsync(GatewayListRotatedSecrets body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = gatewayGetMigrationValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = gatewayListRotatedSecretsValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for gatewayGetProducer - * @param body (required) + * Build call for gatewayMigratePersonalItems + * @param body (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 - +
Status Code Description Response Headers
200 gatewayGetProducerResponse wraps response body. -
200 gatewayMigratePersonalItemsResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayGetProducerCall(GatewayGetProducer body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayMigratePersonalItemsCall(GatewayMigratePersonalItems body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -17416,7 +18213,7 @@ public okhttp3.Call gatewayGetProducerCall(GatewayGetProducer body, final ApiCal Object localVarPostBody = body; // create path and map variables - String localVarPath = "/gateway-get-producer"; + String localVarPath = "/gateway-migrate-personal-items"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -17445,15 +18242,10 @@ public okhttp3.Call gatewayGetProducerCall(GatewayGetProducer body, final ApiCal } @SuppressWarnings("rawtypes") - private okhttp3.Call gatewayGetProducerValidateBeforeCall(GatewayGetProducer body, final ApiCallback _callback) throws ApiException { - - // verify the required parameter 'body' is set - if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling gatewayGetProducer(Async)"); - } + private okhttp3.Call gatewayMigratePersonalItemsValidateBeforeCall(GatewayMigratePersonalItems body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = gatewayGetProducerCall(body, _callback); + okhttp3.Call localVarCall = gatewayMigratePersonalItemsCall(body, _callback); return localVarCall; } @@ -17461,63 +18253,63 @@ private okhttp3.Call gatewayGetProducerValidateBeforeCall(GatewayGetProducer bod /** * * - * @param body (required) - * @return DSProducerDetails + * @param body (optional) + * @return GatewayMigratePersonalItemsOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 gatewayGetProducerResponse wraps response body. -
200 gatewayMigratePersonalItemsResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public DSProducerDetails gatewayGetProducer(GatewayGetProducer body) throws ApiException { - ApiResponse localVarResp = gatewayGetProducerWithHttpInfo(body); + public GatewayMigratePersonalItemsOutput gatewayMigratePersonalItems(GatewayMigratePersonalItems body) throws ApiException { + ApiResponse localVarResp = gatewayMigratePersonalItemsWithHttpInfo(body); return localVarResp.getData(); } /** * * - * @param body (required) - * @return ApiResponse<DSProducerDetails> + * @param body (optional) + * @return ApiResponse<GatewayMigratePersonalItemsOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 gatewayGetProducerResponse wraps response body. -
200 gatewayMigratePersonalItemsResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse gatewayGetProducerWithHttpInfo(GatewayGetProducer body) throws ApiException { - okhttp3.Call localVarCall = gatewayGetProducerValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse gatewayMigratePersonalItemsWithHttpInfo(GatewayMigratePersonalItems body) throws ApiException { + okhttp3.Call localVarCall = gatewayMigratePersonalItemsValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } /** * (asynchronously) * - * @param body (required) + * @param body (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 - +
Status Code Description Response Headers
200 gatewayGetProducerResponse wraps response body. -
200 gatewayMigratePersonalItemsResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayGetProducerAsync(GatewayGetProducer body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayMigratePersonalItemsAsync(GatewayMigratePersonalItems body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = gatewayGetProducerValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = gatewayMigratePersonalItemsValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for gatewayGetTmpUsers + * Build call for gatewayRevokeTmpUsers * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -17525,11 +18317,11 @@ public okhttp3.Call gatewayGetProducerAsync(GatewayGetProducer body, final ApiCa * @http.response.details - +
Status Code Description Response Headers
200 gatewayGetTmpUsersResponse wraps response body. -
200 gatewayRevokeTmpUsersResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayGetTmpUsersCall(GatewayGetTmpUsers body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayRevokeTmpUsersCall(GatewayRevokeTmpUsers body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -17547,7 +18339,7 @@ public okhttp3.Call gatewayGetTmpUsersCall(GatewayGetTmpUsers body, final ApiCal Object localVarPostBody = body; // create path and map variables - String localVarPath = "/gateway-get-producer-tmp-creds"; + String localVarPath = "/gateway-revoke-producer-tmp-creds"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -17576,15 +18368,15 @@ public okhttp3.Call gatewayGetTmpUsersCall(GatewayGetTmpUsers body, final ApiCal } @SuppressWarnings("rawtypes") - private okhttp3.Call gatewayGetTmpUsersValidateBeforeCall(GatewayGetTmpUsers body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call gatewayRevokeTmpUsersValidateBeforeCall(GatewayRevokeTmpUsers body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling gatewayGetTmpUsers(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling gatewayRevokeTmpUsers(Async)"); } - okhttp3.Call localVarCall = gatewayGetTmpUsersCall(body, _callback); + okhttp3.Call localVarCall = gatewayRevokeTmpUsersCall(body, _callback); return localVarCall; } @@ -17593,37 +18385,34 @@ private okhttp3.Call gatewayGetTmpUsersValidateBeforeCall(GatewayGetTmpUsers bod * * * @param body (required) - * @return List<TmpUserData> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 gatewayGetTmpUsersResponse wraps response body. -
200 gatewayRevokeTmpUsersResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public List gatewayGetTmpUsers(GatewayGetTmpUsers body) throws ApiException { - ApiResponse> localVarResp = gatewayGetTmpUsersWithHttpInfo(body); - return localVarResp.getData(); + public void gatewayRevokeTmpUsers(GatewayRevokeTmpUsers body) throws ApiException { + gatewayRevokeTmpUsersWithHttpInfo(body); } /** * * * @param body (required) - * @return ApiResponse<List<TmpUserData>> + * @return ApiResponse<Void> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 gatewayGetTmpUsersResponse wraps response body. -
200 gatewayRevokeTmpUsersResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse> gatewayGetTmpUsersWithHttpInfo(GatewayGetTmpUsers body) throws ApiException { - okhttp3.Call localVarCall = gatewayGetTmpUsersValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken>(){}.getType(); - return localVarApiClient.execute(localVarCall, localVarReturnType); + public ApiResponse gatewayRevokeTmpUsersWithHttpInfo(GatewayRevokeTmpUsers body) throws ApiException { + okhttp3.Call localVarCall = gatewayRevokeTmpUsersValidateBeforeCall(body, null); + return localVarApiClient.execute(localVarCall); } /** @@ -17636,19 +18425,18 @@ public ApiResponse> gatewayGetTmpUsersWithHttpInfo(GatewayGetT * @http.response.details - +
Status Code Description Response Headers
200 gatewayGetTmpUsersResponse wraps response body. -
200 gatewayRevokeTmpUsersResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayGetTmpUsersAsync(GatewayGetTmpUsers body, final ApiCallback> _callback) throws ApiException { + public okhttp3.Call gatewayRevokeTmpUsersAsync(GatewayRevokeTmpUsers body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = gatewayGetTmpUsersValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken>(){}.getType(); - localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); + okhttp3.Call localVarCall = gatewayRevokeTmpUsersValidateBeforeCall(body, _callback); + localVarApiClient.executeAsync(localVarCall, _callback); return localVarCall; } /** - * Build call for gatewayListMigration + * Build call for gatewayStartProducer * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -17656,11 +18444,11 @@ public okhttp3.Call gatewayGetTmpUsersAsync(GatewayGetTmpUsers body, final ApiCa * @http.response.details - +
Status Code Description Response Headers
200 gatewayMigrationListResponse wraps response body. -
200 gatewayStartProducerResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayListMigrationCall(GatewayListMigration body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayStartProducerCall(GatewayStartProducer body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -17678,7 +18466,7 @@ public okhttp3.Call gatewayListMigrationCall(GatewayListMigration body, final Ap Object localVarPostBody = body; // create path and map variables - String localVarPath = "/gateway-list-migration"; + String localVarPath = "/gateway-start-producer"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -17707,15 +18495,15 @@ public okhttp3.Call gatewayListMigrationCall(GatewayListMigration body, final Ap } @SuppressWarnings("rawtypes") - private okhttp3.Call gatewayListMigrationValidateBeforeCall(GatewayListMigration body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call gatewayStartProducerValidateBeforeCall(GatewayStartProducer body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling gatewayListMigration(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling gatewayStartProducer(Async)"); } - okhttp3.Call localVarCall = gatewayListMigrationCall(body, _callback); + okhttp3.Call localVarCall = gatewayStartProducerCall(body, _callback); return localVarCall; } @@ -17724,17 +18512,17 @@ private okhttp3.Call gatewayListMigrationValidateBeforeCall(GatewayListMigration * * * @param body (required) - * @return GatewayMigrationListOutput + * @return GatewayStartProducerOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 gatewayMigrationListResponse wraps response body. -
200 gatewayStartProducerResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public GatewayMigrationListOutput gatewayListMigration(GatewayListMigration body) throws ApiException { - ApiResponse localVarResp = gatewayListMigrationWithHttpInfo(body); + public GatewayStartProducerOutput gatewayStartProducer(GatewayStartProducer body) throws ApiException { + ApiResponse localVarResp = gatewayStartProducerWithHttpInfo(body); return localVarResp.getData(); } @@ -17742,18 +18530,18 @@ public GatewayMigrationListOutput gatewayListMigration(GatewayListMigration body * * * @param body (required) - * @return ApiResponse<GatewayMigrationListOutput> + * @return ApiResponse<GatewayStartProducerOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 gatewayMigrationListResponse wraps response body. -
200 gatewayStartProducerResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse gatewayListMigrationWithHttpInfo(GatewayListMigration body) throws ApiException { - okhttp3.Call localVarCall = gatewayListMigrationValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse gatewayStartProducerWithHttpInfo(GatewayStartProducer body) throws ApiException { + okhttp3.Call localVarCall = gatewayStartProducerValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -17767,19 +18555,19 @@ public ApiResponse gatewayListMigrationWithHttpInfo( * @http.response.details - +
Status Code Description Response Headers
200 gatewayMigrationListResponse wraps response body. -
200 gatewayStartProducerResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayListMigrationAsync(GatewayListMigration body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayStartProducerAsync(GatewayStartProducer body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = gatewayListMigrationValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = gatewayStartProducerValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for gatewayListProducers + * Build call for gatewayStatusMigration * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -17787,11 +18575,11 @@ public okhttp3.Call gatewayListMigrationAsync(GatewayListMigration body, final A * @http.response.details - +
Status Code Description Response Headers
200 gatewayListProducersResponse wraps response body. -
200 gatewayMigrationStatusResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayListProducersCall(GatewayListProducers body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayStatusMigrationCall(GatewayStatusMigration body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -17809,7 +18597,7 @@ public okhttp3.Call gatewayListProducersCall(GatewayListProducers body, final Ap Object localVarPostBody = body; // create path and map variables - String localVarPath = "/gateway-list-producers"; + String localVarPath = "/gateway-migration-status"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -17838,15 +18626,15 @@ public okhttp3.Call gatewayListProducersCall(GatewayListProducers body, final Ap } @SuppressWarnings("rawtypes") - private okhttp3.Call gatewayListProducersValidateBeforeCall(GatewayListProducers body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call gatewayStatusMigrationValidateBeforeCall(GatewayStatusMigration body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling gatewayListProducers(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling gatewayStatusMigration(Async)"); } - okhttp3.Call localVarCall = gatewayListProducersCall(body, _callback); + okhttp3.Call localVarCall = gatewayStatusMigrationCall(body, _callback); return localVarCall; } @@ -17855,17 +18643,17 @@ private okhttp3.Call gatewayListProducersValidateBeforeCall(GatewayListProducers * * * @param body (required) - * @return GetProducersListReplyObj + * @return MigrationStatusReplyObj * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 gatewayListProducersResponse wraps response body. -
200 gatewayMigrationStatusResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public GetProducersListReplyObj gatewayListProducers(GatewayListProducers body) throws ApiException { - ApiResponse localVarResp = gatewayListProducersWithHttpInfo(body); + public MigrationStatusReplyObj gatewayStatusMigration(GatewayStatusMigration body) throws ApiException { + ApiResponse localVarResp = gatewayStatusMigrationWithHttpInfo(body); return localVarResp.getData(); } @@ -17873,18 +18661,18 @@ public GetProducersListReplyObj gatewayListProducers(GatewayListProducers body) * * * @param body (required) - * @return ApiResponse<GetProducersListReplyObj> + * @return ApiResponse<MigrationStatusReplyObj> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 gatewayListProducersResponse wraps response body. -
200 gatewayMigrationStatusResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse gatewayListProducersWithHttpInfo(GatewayListProducers body) throws ApiException { - okhttp3.Call localVarCall = gatewayListProducersValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse gatewayStatusMigrationWithHttpInfo(GatewayStatusMigration body) throws ApiException { + okhttp3.Call localVarCall = gatewayStatusMigrationValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -17898,19 +18686,19 @@ public ApiResponse gatewayListProducersWithHttpInfo(Ga * @http.response.details - +
Status Code Description Response Headers
200 gatewayListProducersResponse wraps response body. -
200 gatewayMigrationStatusResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayListProducersAsync(GatewayListProducers body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayStatusMigrationAsync(GatewayStatusMigration body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = gatewayListProducersValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = gatewayStatusMigrationValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for gatewayListRotatedSecrets + * Build call for gatewayStopProducer * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -17918,11 +18706,11 @@ public okhttp3.Call gatewayListProducersAsync(GatewayListProducers body, final A * @http.response.details - +
Status Code Description Response Headers
200 gatewayListRotatedSecretsResponse wraps response body. -
200 gatewayStopProducerResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayListRotatedSecretsCall(GatewayListRotatedSecrets body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayStopProducerCall(GatewayStopProducer body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -17940,7 +18728,7 @@ public okhttp3.Call gatewayListRotatedSecretsCall(GatewayListRotatedSecrets body Object localVarPostBody = body; // create path and map variables - String localVarPath = "/gateway-list-rotated-secrets"; + String localVarPath = "/gateway-stop-producer"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -17969,15 +18757,15 @@ public okhttp3.Call gatewayListRotatedSecretsCall(GatewayListRotatedSecrets body } @SuppressWarnings("rawtypes") - private okhttp3.Call gatewayListRotatedSecretsValidateBeforeCall(GatewayListRotatedSecrets body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call gatewayStopProducerValidateBeforeCall(GatewayStopProducer body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling gatewayListRotatedSecrets(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling gatewayStopProducer(Async)"); } - okhttp3.Call localVarCall = gatewayListRotatedSecretsCall(body, _callback); + okhttp3.Call localVarCall = gatewayStopProducerCall(body, _callback); return localVarCall; } @@ -17986,17 +18774,17 @@ private okhttp3.Call gatewayListRotatedSecretsValidateBeforeCall(GatewayListRota * * * @param body (required) - * @return ListItemsOutput + * @return GatewayStopProducerOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 gatewayListRotatedSecretsResponse wraps response body. -
200 gatewayStopProducerResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ListItemsOutput gatewayListRotatedSecrets(GatewayListRotatedSecrets body) throws ApiException { - ApiResponse localVarResp = gatewayListRotatedSecretsWithHttpInfo(body); + public GatewayStopProducerOutput gatewayStopProducer(GatewayStopProducer body) throws ApiException { + ApiResponse localVarResp = gatewayStopProducerWithHttpInfo(body); return localVarResp.getData(); } @@ -18004,18 +18792,18 @@ public ListItemsOutput gatewayListRotatedSecrets(GatewayListRotatedSecrets body) * * * @param body (required) - * @return ApiResponse<ListItemsOutput> + * @return ApiResponse<GatewayStopProducerOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 gatewayListRotatedSecretsResponse wraps response body. -
200 gatewayStopProducerResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse gatewayListRotatedSecretsWithHttpInfo(GatewayListRotatedSecrets body) throws ApiException { - okhttp3.Call localVarCall = gatewayListRotatedSecretsValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse gatewayStopProducerWithHttpInfo(GatewayStopProducer body) throws ApiException { + okhttp3.Call localVarCall = gatewayStopProducerValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -18029,31 +18817,31 @@ public ApiResponse gatewayListRotatedSecretsWithHttpInfo(Gatewa * @http.response.details - +
Status Code Description Response Headers
200 gatewayListRotatedSecretsResponse wraps response body. -
200 gatewayStopProducerResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayListRotatedSecretsAsync(GatewayListRotatedSecrets body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayStopProducerAsync(GatewayStopProducer body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = gatewayListRotatedSecretsValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = gatewayStopProducerValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for gatewayMigratePersonalItems - * @param body (optional) + * Build call for gatewaySyncMigration + * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object * @http.response.details - +
Status Code Description Response Headers
200 gatewayMigratePersonalItemsResponse wraps response body. -
200 gatewayMigrationSyncResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayMigratePersonalItemsCall(GatewayMigratePersonalItems body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewaySyncMigrationCall(GatewaySyncMigration body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -18071,7 +18859,7 @@ public okhttp3.Call gatewayMigratePersonalItemsCall(GatewayMigratePersonalItems Object localVarPostBody = body; // create path and map variables - String localVarPath = "/gateway-migrate-personal-items"; + String localVarPath = "/gateway-sync-migration"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -18100,10 +18888,15 @@ public okhttp3.Call gatewayMigratePersonalItemsCall(GatewayMigratePersonalItems } @SuppressWarnings("rawtypes") - private okhttp3.Call gatewayMigratePersonalItemsValidateBeforeCall(GatewayMigratePersonalItems body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call gatewaySyncMigrationValidateBeforeCall(GatewaySyncMigration body, final ApiCallback _callback) throws ApiException { + + // verify the required parameter 'body' is set + if (body == null) { + throw new ApiException("Missing the required parameter 'body' when calling gatewaySyncMigration(Async)"); + } - okhttp3.Call localVarCall = gatewayMigratePersonalItemsCall(body, _callback); + okhttp3.Call localVarCall = gatewaySyncMigrationCall(body, _callback); return localVarCall; } @@ -18111,63 +18904,63 @@ private okhttp3.Call gatewayMigratePersonalItemsValidateBeforeCall(GatewayMigrat /** * * - * @param body (optional) - * @return GatewayMigratePersonalItemsOutput + * @param body (required) + * @return GatewayMigrationSyncOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 gatewayMigratePersonalItemsResponse wraps response body. -
200 gatewayMigrationSyncResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public GatewayMigratePersonalItemsOutput gatewayMigratePersonalItems(GatewayMigratePersonalItems body) throws ApiException { - ApiResponse localVarResp = gatewayMigratePersonalItemsWithHttpInfo(body); + public GatewayMigrationSyncOutput gatewaySyncMigration(GatewaySyncMigration body) throws ApiException { + ApiResponse localVarResp = gatewaySyncMigrationWithHttpInfo(body); return localVarResp.getData(); } /** * * - * @param body (optional) - * @return ApiResponse<GatewayMigratePersonalItemsOutput> + * @param body (required) + * @return ApiResponse<GatewayMigrationSyncOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 gatewayMigratePersonalItemsResponse wraps response body. -
200 gatewayMigrationSyncResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse gatewayMigratePersonalItemsWithHttpInfo(GatewayMigratePersonalItems body) throws ApiException { - okhttp3.Call localVarCall = gatewayMigratePersonalItemsValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse gatewaySyncMigrationWithHttpInfo(GatewaySyncMigration body) throws ApiException { + okhttp3.Call localVarCall = gatewaySyncMigrationValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } /** * (asynchronously) * - * @param body (optional) + * @param body (required) * @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 - +
Status Code Description Response Headers
200 gatewayMigratePersonalItemsResponse wraps response body. -
200 gatewayMigrationSyncResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayMigratePersonalItemsAsync(GatewayMigratePersonalItems body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewaySyncMigrationAsync(GatewaySyncMigration body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = gatewayMigratePersonalItemsValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = gatewaySyncMigrationValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for gatewayRevokeTmpUsers + * Build call for gatewayUpdateAllowedAccess * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -18175,11 +18968,11 @@ public okhttp3.Call gatewayMigratePersonalItemsAsync(GatewayMigratePersonalItems * @http.response.details - +
Status Code Description Response Headers
200 gatewayRevokeTmpUsersResponse wraps response body. -
200 gatewayCreateAllowedAccessResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayRevokeTmpUsersCall(GatewayRevokeTmpUsers body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayUpdateAllowedAccessCall(GatewayUpdateAllowedAccess body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -18197,7 +18990,7 @@ public okhttp3.Call gatewayRevokeTmpUsersCall(GatewayRevokeTmpUsers body, final Object localVarPostBody = body; // create path and map variables - String localVarPath = "/gateway-revoke-producer-tmp-creds"; + String localVarPath = "/gateway-update-allowed-access"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -18226,15 +19019,15 @@ public okhttp3.Call gatewayRevokeTmpUsersCall(GatewayRevokeTmpUsers body, final } @SuppressWarnings("rawtypes") - private okhttp3.Call gatewayRevokeTmpUsersValidateBeforeCall(GatewayRevokeTmpUsers body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call gatewayUpdateAllowedAccessValidateBeforeCall(GatewayUpdateAllowedAccess body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling gatewayRevokeTmpUsers(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling gatewayUpdateAllowedAccess(Async)"); } - okhttp3.Call localVarCall = gatewayRevokeTmpUsersCall(body, _callback); + okhttp3.Call localVarCall = gatewayUpdateAllowedAccessCall(body, _callback); return localVarCall; } @@ -18243,34 +19036,37 @@ private okhttp3.Call gatewayRevokeTmpUsersValidateBeforeCall(GatewayRevokeTmpUse * * * @param body (required) + * @return AllowedAccess * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 gatewayRevokeTmpUsersResponse wraps response body. -
200 gatewayCreateAllowedAccessResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public void gatewayRevokeTmpUsers(GatewayRevokeTmpUsers body) throws ApiException { - gatewayRevokeTmpUsersWithHttpInfo(body); + public AllowedAccess gatewayUpdateAllowedAccess(GatewayUpdateAllowedAccess body) throws ApiException { + ApiResponse localVarResp = gatewayUpdateAllowedAccessWithHttpInfo(body); + return localVarResp.getData(); } /** * * * @param body (required) - * @return ApiResponse<Void> + * @return ApiResponse<AllowedAccess> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 gatewayRevokeTmpUsersResponse wraps response body. -
200 gatewayCreateAllowedAccessResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse gatewayRevokeTmpUsersWithHttpInfo(GatewayRevokeTmpUsers body) throws ApiException { - okhttp3.Call localVarCall = gatewayRevokeTmpUsersValidateBeforeCall(body, null); - return localVarApiClient.execute(localVarCall); + public ApiResponse gatewayUpdateAllowedAccessWithHttpInfo(GatewayUpdateAllowedAccess body) throws ApiException { + okhttp3.Call localVarCall = gatewayUpdateAllowedAccessValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); + return localVarApiClient.execute(localVarCall, localVarReturnType); } /** @@ -18283,18 +19079,19 @@ public ApiResponse gatewayRevokeTmpUsersWithHttpInfo(GatewayRevokeTmpUsers * @http.response.details - +
Status Code Description Response Headers
200 gatewayRevokeTmpUsersResponse wraps response body. -
200 gatewayCreateAllowedAccessResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayRevokeTmpUsersAsync(GatewayRevokeTmpUsers body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayUpdateAllowedAccessAsync(GatewayUpdateAllowedAccess body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = gatewayRevokeTmpUsersValidateBeforeCall(body, _callback); - localVarApiClient.executeAsync(localVarCall, _callback); + okhttp3.Call localVarCall = gatewayUpdateAllowedAccessValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); + localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for gatewayStartProducer + * Build call for gatewayUpdateItem * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -18302,11 +19099,11 @@ public okhttp3.Call gatewayRevokeTmpUsersAsync(GatewayRevokeTmpUsers body, final * @http.response.details - +
Status Code Description Response Headers
200 gatewayStartProducerResponse wraps response body. -
201 gatewayUpdateItemResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayStartProducerCall(GatewayStartProducer body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayUpdateItemCall(GatewayUpdateItem body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -18324,7 +19121,7 @@ public okhttp3.Call gatewayStartProducerCall(GatewayStartProducer body, final Ap Object localVarPostBody = body; // create path and map variables - String localVarPath = "/gateway-start-producer"; + String localVarPath = "/gateway-update-item"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -18353,15 +19150,15 @@ public okhttp3.Call gatewayStartProducerCall(GatewayStartProducer body, final Ap } @SuppressWarnings("rawtypes") - private okhttp3.Call gatewayStartProducerValidateBeforeCall(GatewayStartProducer body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call gatewayUpdateItemValidateBeforeCall(GatewayUpdateItem body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling gatewayStartProducer(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling gatewayUpdateItem(Async)"); } - okhttp3.Call localVarCall = gatewayStartProducerCall(body, _callback); + okhttp3.Call localVarCall = gatewayUpdateItemCall(body, _callback); return localVarCall; } @@ -18370,17 +19167,17 @@ private okhttp3.Call gatewayStartProducerValidateBeforeCall(GatewayStartProducer * * * @param body (required) - * @return GatewayStartProducerOutput + * @return GatewayUpdateItemOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 gatewayStartProducerResponse wraps response body. -
201 gatewayUpdateItemResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public GatewayStartProducerOutput gatewayStartProducer(GatewayStartProducer body) throws ApiException { - ApiResponse localVarResp = gatewayStartProducerWithHttpInfo(body); + public GatewayUpdateItemOutput gatewayUpdateItem(GatewayUpdateItem body) throws ApiException { + ApiResponse localVarResp = gatewayUpdateItemWithHttpInfo(body); return localVarResp.getData(); } @@ -18388,18 +19185,18 @@ public GatewayStartProducerOutput gatewayStartProducer(GatewayStartProducer body * * * @param body (required) - * @return ApiResponse<GatewayStartProducerOutput> + * @return ApiResponse<GatewayUpdateItemOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 gatewayStartProducerResponse wraps response body. -
201 gatewayUpdateItemResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse gatewayStartProducerWithHttpInfo(GatewayStartProducer body) throws ApiException { - okhttp3.Call localVarCall = gatewayStartProducerValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse gatewayUpdateItemWithHttpInfo(GatewayUpdateItem body) throws ApiException { + okhttp3.Call localVarCall = gatewayUpdateItemValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -18413,19 +19210,19 @@ public ApiResponse gatewayStartProducerWithHttpInfo( * @http.response.details - +
Status Code Description Response Headers
200 gatewayStartProducerResponse wraps response body. -
201 gatewayUpdateItemResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayStartProducerAsync(GatewayStartProducer body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayUpdateItemAsync(GatewayUpdateItem body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = gatewayStartProducerValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = gatewayUpdateItemValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for gatewayStatusMigration + * Build call for gatewayUpdateK8SAuthConfig * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -18433,11 +19230,11 @@ public okhttp3.Call gatewayStartProducerAsync(GatewayStartProducer body, final A * @http.response.details - +
Status Code Description Response Headers
200 gatewayMigrationStatusResponse wraps response body. -
201 gatewayUpdateK8SAuthConfigResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayStatusMigrationCall(GatewayStatusMigration body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayUpdateK8SAuthConfigCall(GatewayUpdateK8SAuthConfig body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -18455,7 +19252,7 @@ public okhttp3.Call gatewayStatusMigrationCall(GatewayStatusMigration body, fina Object localVarPostBody = body; // create path and map variables - String localVarPath = "/gateway-migration-status"; + String localVarPath = "/gateway-update-k8s-auth-config"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -18484,15 +19281,15 @@ public okhttp3.Call gatewayStatusMigrationCall(GatewayStatusMigration body, fina } @SuppressWarnings("rawtypes") - private okhttp3.Call gatewayStatusMigrationValidateBeforeCall(GatewayStatusMigration body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call gatewayUpdateK8SAuthConfigValidateBeforeCall(GatewayUpdateK8SAuthConfig body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling gatewayStatusMigration(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling gatewayUpdateK8SAuthConfig(Async)"); } - okhttp3.Call localVarCall = gatewayStatusMigrationCall(body, _callback); + okhttp3.Call localVarCall = gatewayUpdateK8SAuthConfigCall(body, _callback); return localVarCall; } @@ -18501,17 +19298,17 @@ private okhttp3.Call gatewayStatusMigrationValidateBeforeCall(GatewayStatusMigra * * * @param body (required) - * @return MigrationStatusReplyObj + * @return GatewayUpdateK8SAuthConfigOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 gatewayMigrationStatusResponse wraps response body. -
201 gatewayUpdateK8SAuthConfigResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public MigrationStatusReplyObj gatewayStatusMigration(GatewayStatusMigration body) throws ApiException { - ApiResponse localVarResp = gatewayStatusMigrationWithHttpInfo(body); + public GatewayUpdateK8SAuthConfigOutput gatewayUpdateK8SAuthConfig(GatewayUpdateK8SAuthConfig body) throws ApiException { + ApiResponse localVarResp = gatewayUpdateK8SAuthConfigWithHttpInfo(body); return localVarResp.getData(); } @@ -18519,18 +19316,18 @@ public MigrationStatusReplyObj gatewayStatusMigration(GatewayStatusMigration bod * * * @param body (required) - * @return ApiResponse<MigrationStatusReplyObj> + * @return ApiResponse<GatewayUpdateK8SAuthConfigOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 gatewayMigrationStatusResponse wraps response body. -
201 gatewayUpdateK8SAuthConfigResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse gatewayStatusMigrationWithHttpInfo(GatewayStatusMigration body) throws ApiException { - okhttp3.Call localVarCall = gatewayStatusMigrationValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse gatewayUpdateK8SAuthConfigWithHttpInfo(GatewayUpdateK8SAuthConfig body) throws ApiException { + okhttp3.Call localVarCall = gatewayUpdateK8SAuthConfigValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -18544,19 +19341,19 @@ public ApiResponse gatewayStatusMigrationWithHttpInfo(G * @http.response.details - +
Status Code Description Response Headers
200 gatewayMigrationStatusResponse wraps response body. -
201 gatewayUpdateK8SAuthConfigResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayStatusMigrationAsync(GatewayStatusMigration body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayUpdateK8SAuthConfigAsync(GatewayUpdateK8SAuthConfig body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = gatewayStatusMigrationValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = gatewayUpdateK8SAuthConfigValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for gatewayStopProducer + * Build call for gatewayUpdateLdapAuthConfig * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -18564,11 +19361,11 @@ public okhttp3.Call gatewayStatusMigrationAsync(GatewayStatusMigration body, fin * @http.response.details - +
Status Code Description Response Headers
200 gatewayStopProducerResponse wraps response body. -
201 GatewayUpdateLdapAuthConfigResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayStopProducerCall(GatewayStopProducer body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayUpdateLdapAuthConfigCall(GatewayUpdateLdapAuthConfig body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -18586,7 +19383,7 @@ public okhttp3.Call gatewayStopProducerCall(GatewayStopProducer body, final ApiC Object localVarPostBody = body; // create path and map variables - String localVarPath = "/gateway-stop-producer"; + String localVarPath = "/gateway-update-ldap-auth-config"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -18615,15 +19412,15 @@ public okhttp3.Call gatewayStopProducerCall(GatewayStopProducer body, final ApiC } @SuppressWarnings("rawtypes") - private okhttp3.Call gatewayStopProducerValidateBeforeCall(GatewayStopProducer body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call gatewayUpdateLdapAuthConfigValidateBeforeCall(GatewayUpdateLdapAuthConfig body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling gatewayStopProducer(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling gatewayUpdateLdapAuthConfig(Async)"); } - okhttp3.Call localVarCall = gatewayStopProducerCall(body, _callback); + okhttp3.Call localVarCall = gatewayUpdateLdapAuthConfigCall(body, _callback); return localVarCall; } @@ -18632,17 +19429,17 @@ private okhttp3.Call gatewayStopProducerValidateBeforeCall(GatewayStopProducer b * * * @param body (required) - * @return GatewayStopProducerOutput + * @return GatewayUpdateLdapAuthConfigOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 gatewayStopProducerResponse wraps response body. -
201 GatewayUpdateLdapAuthConfigResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public GatewayStopProducerOutput gatewayStopProducer(GatewayStopProducer body) throws ApiException { - ApiResponse localVarResp = gatewayStopProducerWithHttpInfo(body); + public GatewayUpdateLdapAuthConfigOutput gatewayUpdateLdapAuthConfig(GatewayUpdateLdapAuthConfig body) throws ApiException { + ApiResponse localVarResp = gatewayUpdateLdapAuthConfigWithHttpInfo(body); return localVarResp.getData(); } @@ -18650,18 +19447,18 @@ public GatewayStopProducerOutput gatewayStopProducer(GatewayStopProducer body) t * * * @param body (required) - * @return ApiResponse<GatewayStopProducerOutput> + * @return ApiResponse<GatewayUpdateLdapAuthConfigOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 gatewayStopProducerResponse wraps response body. -
201 GatewayUpdateLdapAuthConfigResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse gatewayStopProducerWithHttpInfo(GatewayStopProducer body) throws ApiException { - okhttp3.Call localVarCall = gatewayStopProducerValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse gatewayUpdateLdapAuthConfigWithHttpInfo(GatewayUpdateLdapAuthConfig body) throws ApiException { + okhttp3.Call localVarCall = gatewayUpdateLdapAuthConfigValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -18675,19 +19472,19 @@ public ApiResponse gatewayStopProducerWithHttpInfo(Ga * @http.response.details - +
Status Code Description Response Headers
200 gatewayStopProducerResponse wraps response body. -
201 GatewayUpdateLdapAuthConfigResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayStopProducerAsync(GatewayStopProducer body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayUpdateLdapAuthConfigAsync(GatewayUpdateLdapAuthConfig body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = gatewayStopProducerValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = gatewayUpdateLdapAuthConfigValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for gatewaySyncMigration + * Build call for gatewayUpdateMigration * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -18695,11 +19492,11 @@ public okhttp3.Call gatewayStopProducerAsync(GatewayStopProducer body, final Api * @http.response.details - +
Status Code Description Response Headers
200 gatewayMigrationSyncResponse wraps response body. -
200 gatewayMigrationUpdateResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewaySyncMigrationCall(GatewaySyncMigration body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayUpdateMigrationCall(GatewayUpdateMigration body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -18717,7 +19514,7 @@ public okhttp3.Call gatewaySyncMigrationCall(GatewaySyncMigration body, final Ap Object localVarPostBody = body; // create path and map variables - String localVarPath = "/gateway-sync-migration"; + String localVarPath = "/gateway-update-migration"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -18746,15 +19543,15 @@ public okhttp3.Call gatewaySyncMigrationCall(GatewaySyncMigration body, final Ap } @SuppressWarnings("rawtypes") - private okhttp3.Call gatewaySyncMigrationValidateBeforeCall(GatewaySyncMigration body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call gatewayUpdateMigrationValidateBeforeCall(GatewayUpdateMigration body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling gatewaySyncMigration(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling gatewayUpdateMigration(Async)"); } - okhttp3.Call localVarCall = gatewaySyncMigrationCall(body, _callback); + okhttp3.Call localVarCall = gatewayUpdateMigrationCall(body, _callback); return localVarCall; } @@ -18763,17 +19560,17 @@ private okhttp3.Call gatewaySyncMigrationValidateBeforeCall(GatewaySyncMigration * * * @param body (required) - * @return GatewayMigrationSyncOutput + * @return GatewayMigrationUpdateOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 gatewayMigrationSyncResponse wraps response body. -
200 gatewayMigrationUpdateResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public GatewayMigrationSyncOutput gatewaySyncMigration(GatewaySyncMigration body) throws ApiException { - ApiResponse localVarResp = gatewaySyncMigrationWithHttpInfo(body); + public GatewayMigrationUpdateOutput gatewayUpdateMigration(GatewayUpdateMigration body) throws ApiException { + ApiResponse localVarResp = gatewayUpdateMigrationWithHttpInfo(body); return localVarResp.getData(); } @@ -18781,18 +19578,18 @@ public GatewayMigrationSyncOutput gatewaySyncMigration(GatewaySyncMigration body * * * @param body (required) - * @return ApiResponse<GatewayMigrationSyncOutput> + * @return ApiResponse<GatewayMigrationUpdateOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 gatewayMigrationSyncResponse wraps response body. -
200 gatewayMigrationUpdateResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse gatewaySyncMigrationWithHttpInfo(GatewaySyncMigration body) throws ApiException { - okhttp3.Call localVarCall = gatewaySyncMigrationValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse gatewayUpdateMigrationWithHttpInfo(GatewayUpdateMigration body) throws ApiException { + okhttp3.Call localVarCall = gatewayUpdateMigrationValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -18806,19 +19603,19 @@ public ApiResponse gatewaySyncMigrationWithHttpInfo( * @http.response.details - +
Status Code Description Response Headers
200 gatewayMigrationSyncResponse wraps response body. -
200 gatewayMigrationUpdateResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewaySyncMigrationAsync(GatewaySyncMigration body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayUpdateMigrationAsync(GatewayUpdateMigration body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = gatewaySyncMigrationValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = gatewayUpdateMigrationValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for gatewayUpdateAllowedAccess + * Build call for gatewayUpdateProducerArtifactory * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -18826,11 +19623,11 @@ public okhttp3.Call gatewaySyncMigrationAsync(GatewaySyncMigration body, final A * @http.response.details - +
Status Code Description Response Headers
200 gatewayCreateAllowedAccessResponse wraps response body. -
201 gatewayUpdateProducerArtifactoryResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayUpdateAllowedAccessCall(GatewayUpdateAllowedAccess body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayUpdateProducerArtifactoryCall(GatewayUpdateProducerArtifactory body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -18848,7 +19645,7 @@ public okhttp3.Call gatewayUpdateAllowedAccessCall(GatewayUpdateAllowedAccess bo Object localVarPostBody = body; // create path and map variables - String localVarPath = "/gateway-update-allowed-access"; + String localVarPath = "/gateway-update-producer-artifactory"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -18877,15 +19674,15 @@ public okhttp3.Call gatewayUpdateAllowedAccessCall(GatewayUpdateAllowedAccess bo } @SuppressWarnings("rawtypes") - private okhttp3.Call gatewayUpdateAllowedAccessValidateBeforeCall(GatewayUpdateAllowedAccess body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call gatewayUpdateProducerArtifactoryValidateBeforeCall(GatewayUpdateProducerArtifactory body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling gatewayUpdateAllowedAccess(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling gatewayUpdateProducerArtifactory(Async)"); } - okhttp3.Call localVarCall = gatewayUpdateAllowedAccessCall(body, _callback); + okhttp3.Call localVarCall = gatewayUpdateProducerArtifactoryCall(body, _callback); return localVarCall; } @@ -18894,17 +19691,17 @@ private okhttp3.Call gatewayUpdateAllowedAccessValidateBeforeCall(GatewayUpdateA * * * @param body (required) - * @return AllowedAccess + * @return GatewayUpdateProducerArtifactoryOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 gatewayCreateAllowedAccessResponse wraps response body. -
201 gatewayUpdateProducerArtifactoryResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public AllowedAccess gatewayUpdateAllowedAccess(GatewayUpdateAllowedAccess body) throws ApiException { - ApiResponse localVarResp = gatewayUpdateAllowedAccessWithHttpInfo(body); + public GatewayUpdateProducerArtifactoryOutput gatewayUpdateProducerArtifactory(GatewayUpdateProducerArtifactory body) throws ApiException { + ApiResponse localVarResp = gatewayUpdateProducerArtifactoryWithHttpInfo(body); return localVarResp.getData(); } @@ -18912,18 +19709,18 @@ public AllowedAccess gatewayUpdateAllowedAccess(GatewayUpdateAllowedAccess body) * * * @param body (required) - * @return ApiResponse<AllowedAccess> + * @return ApiResponse<GatewayUpdateProducerArtifactoryOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 gatewayCreateAllowedAccessResponse wraps response body. -
201 gatewayUpdateProducerArtifactoryResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse gatewayUpdateAllowedAccessWithHttpInfo(GatewayUpdateAllowedAccess body) throws ApiException { - okhttp3.Call localVarCall = gatewayUpdateAllowedAccessValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse gatewayUpdateProducerArtifactoryWithHttpInfo(GatewayUpdateProducerArtifactory body) throws ApiException { + okhttp3.Call localVarCall = gatewayUpdateProducerArtifactoryValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -18937,19 +19734,19 @@ public ApiResponse gatewayUpdateAllowedAccessWithHttpInfo(Gateway * @http.response.details - +
Status Code Description Response Headers
200 gatewayCreateAllowedAccessResponse wraps response body. -
201 gatewayUpdateProducerArtifactoryResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayUpdateAllowedAccessAsync(GatewayUpdateAllowedAccess body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayUpdateProducerArtifactoryAsync(GatewayUpdateProducerArtifactory body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = gatewayUpdateAllowedAccessValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = gatewayUpdateProducerArtifactoryValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for gatewayUpdateItem + * Build call for gatewayUpdateProducerAws * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -18957,11 +19754,11 @@ public okhttp3.Call gatewayUpdateAllowedAccessAsync(GatewayUpdateAllowedAccess b * @http.response.details - +
Status Code Description Response Headers
201 gatewayUpdateItemResponse wraps response body. -
200 gatewayUpdateProducerAwsResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayUpdateItemCall(GatewayUpdateItem body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayUpdateProducerAwsCall(GatewayUpdateProducerAws body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -18979,7 +19776,7 @@ public okhttp3.Call gatewayUpdateItemCall(GatewayUpdateItem body, final ApiCallb Object localVarPostBody = body; // create path and map variables - String localVarPath = "/gateway-update-item"; + String localVarPath = "/gateway-update-producer-aws"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -19008,15 +19805,15 @@ public okhttp3.Call gatewayUpdateItemCall(GatewayUpdateItem body, final ApiCallb } @SuppressWarnings("rawtypes") - private okhttp3.Call gatewayUpdateItemValidateBeforeCall(GatewayUpdateItem body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call gatewayUpdateProducerAwsValidateBeforeCall(GatewayUpdateProducerAws body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling gatewayUpdateItem(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling gatewayUpdateProducerAws(Async)"); } - okhttp3.Call localVarCall = gatewayUpdateItemCall(body, _callback); + okhttp3.Call localVarCall = gatewayUpdateProducerAwsCall(body, _callback); return localVarCall; } @@ -19025,17 +19822,17 @@ private okhttp3.Call gatewayUpdateItemValidateBeforeCall(GatewayUpdateItem body, * * * @param body (required) - * @return GatewayUpdateItemOutput + * @return GatewayUpdateProducerAwsOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayUpdateItemResponse wraps response body. -
200 gatewayUpdateProducerAwsResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public GatewayUpdateItemOutput gatewayUpdateItem(GatewayUpdateItem body) throws ApiException { - ApiResponse localVarResp = gatewayUpdateItemWithHttpInfo(body); + public GatewayUpdateProducerAwsOutput gatewayUpdateProducerAws(GatewayUpdateProducerAws body) throws ApiException { + ApiResponse localVarResp = gatewayUpdateProducerAwsWithHttpInfo(body); return localVarResp.getData(); } @@ -19043,18 +19840,18 @@ public GatewayUpdateItemOutput gatewayUpdateItem(GatewayUpdateItem body) throws * * * @param body (required) - * @return ApiResponse<GatewayUpdateItemOutput> + * @return ApiResponse<GatewayUpdateProducerAwsOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayUpdateItemResponse wraps response body. -
200 gatewayUpdateProducerAwsResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse gatewayUpdateItemWithHttpInfo(GatewayUpdateItem body) throws ApiException { - okhttp3.Call localVarCall = gatewayUpdateItemValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse gatewayUpdateProducerAwsWithHttpInfo(GatewayUpdateProducerAws body) throws ApiException { + okhttp3.Call localVarCall = gatewayUpdateProducerAwsValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -19068,19 +19865,19 @@ public ApiResponse gatewayUpdateItemWithHttpInfo(Gatewa * @http.response.details - +
Status Code Description Response Headers
201 gatewayUpdateItemResponse wraps response body. -
200 gatewayUpdateProducerAwsResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayUpdateItemAsync(GatewayUpdateItem body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayUpdateProducerAwsAsync(GatewayUpdateProducerAws body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = gatewayUpdateItemValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = gatewayUpdateProducerAwsValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for gatewayUpdateK8SAuthConfig + * Build call for gatewayUpdateProducerAzure * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -19088,11 +19885,11 @@ public okhttp3.Call gatewayUpdateItemAsync(GatewayUpdateItem body, final ApiCall * @http.response.details - +
Status Code Description Response Headers
201 gatewayUpdateK8SAuthConfigResponse wraps response body. -
201 gatewayUpdateProducerAzureResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayUpdateK8SAuthConfigCall(GatewayUpdateK8SAuthConfig body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayUpdateProducerAzureCall(GatewayUpdateProducerAzure body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -19110,7 +19907,7 @@ public okhttp3.Call gatewayUpdateK8SAuthConfigCall(GatewayUpdateK8SAuthConfig bo Object localVarPostBody = body; // create path and map variables - String localVarPath = "/gateway-update-k8s-auth-config"; + String localVarPath = "/gateway-update-producer-azure"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -19139,15 +19936,15 @@ public okhttp3.Call gatewayUpdateK8SAuthConfigCall(GatewayUpdateK8SAuthConfig bo } @SuppressWarnings("rawtypes") - private okhttp3.Call gatewayUpdateK8SAuthConfigValidateBeforeCall(GatewayUpdateK8SAuthConfig body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call gatewayUpdateProducerAzureValidateBeforeCall(GatewayUpdateProducerAzure body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling gatewayUpdateK8SAuthConfig(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling gatewayUpdateProducerAzure(Async)"); } - okhttp3.Call localVarCall = gatewayUpdateK8SAuthConfigCall(body, _callback); + okhttp3.Call localVarCall = gatewayUpdateProducerAzureCall(body, _callback); return localVarCall; } @@ -19156,17 +19953,17 @@ private okhttp3.Call gatewayUpdateK8SAuthConfigValidateBeforeCall(GatewayUpdateK * * * @param body (required) - * @return GatewayUpdateK8SAuthConfigOutput + * @return GatewayUpdateProducerAzureOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayUpdateK8SAuthConfigResponse wraps response body. -
201 gatewayUpdateProducerAzureResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public GatewayUpdateK8SAuthConfigOutput gatewayUpdateK8SAuthConfig(GatewayUpdateK8SAuthConfig body) throws ApiException { - ApiResponse localVarResp = gatewayUpdateK8SAuthConfigWithHttpInfo(body); + public GatewayUpdateProducerAzureOutput gatewayUpdateProducerAzure(GatewayUpdateProducerAzure body) throws ApiException { + ApiResponse localVarResp = gatewayUpdateProducerAzureWithHttpInfo(body); return localVarResp.getData(); } @@ -19174,18 +19971,18 @@ public GatewayUpdateK8SAuthConfigOutput gatewayUpdateK8SAuthConfig(GatewayUpdate * * * @param body (required) - * @return ApiResponse<GatewayUpdateK8SAuthConfigOutput> + * @return ApiResponse<GatewayUpdateProducerAzureOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayUpdateK8SAuthConfigResponse wraps response body. -
201 gatewayUpdateProducerAzureResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse gatewayUpdateK8SAuthConfigWithHttpInfo(GatewayUpdateK8SAuthConfig body) throws ApiException { - okhttp3.Call localVarCall = gatewayUpdateK8SAuthConfigValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse gatewayUpdateProducerAzureWithHttpInfo(GatewayUpdateProducerAzure body) throws ApiException { + okhttp3.Call localVarCall = gatewayUpdateProducerAzureValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -19199,19 +19996,19 @@ public ApiResponse gatewayUpdateK8SAuthConfigW * @http.response.details - +
Status Code Description Response Headers
201 gatewayUpdateK8SAuthConfigResponse wraps response body. -
201 gatewayUpdateProducerAzureResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayUpdateK8SAuthConfigAsync(GatewayUpdateK8SAuthConfig body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayUpdateProducerAzureAsync(GatewayUpdateProducerAzure body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = gatewayUpdateK8SAuthConfigValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = gatewayUpdateProducerAzureValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for gatewayUpdateLdapAuthConfig + * Build call for gatewayUpdateProducerCassandra * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -19219,11 +20016,11 @@ public okhttp3.Call gatewayUpdateK8SAuthConfigAsync(GatewayUpdateK8SAuthConfig b * @http.response.details - +
Status Code Description Response Headers
201 GatewayUpdateLdapAuthConfigResponse wraps response body. -
201 gatewayUpdateProducerCassandraResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayUpdateLdapAuthConfigCall(GatewayUpdateLdapAuthConfig body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayUpdateProducerCassandraCall(GatewayUpdateProducerCassandra body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -19241,7 +20038,7 @@ public okhttp3.Call gatewayUpdateLdapAuthConfigCall(GatewayUpdateLdapAuthConfig Object localVarPostBody = body; // create path and map variables - String localVarPath = "/gateway-update-ldap-auth-config"; + String localVarPath = "/gateway-update-producer-cassandra"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -19270,15 +20067,15 @@ public okhttp3.Call gatewayUpdateLdapAuthConfigCall(GatewayUpdateLdapAuthConfig } @SuppressWarnings("rawtypes") - private okhttp3.Call gatewayUpdateLdapAuthConfigValidateBeforeCall(GatewayUpdateLdapAuthConfig body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call gatewayUpdateProducerCassandraValidateBeforeCall(GatewayUpdateProducerCassandra body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling gatewayUpdateLdapAuthConfig(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling gatewayUpdateProducerCassandra(Async)"); } - okhttp3.Call localVarCall = gatewayUpdateLdapAuthConfigCall(body, _callback); + okhttp3.Call localVarCall = gatewayUpdateProducerCassandraCall(body, _callback); return localVarCall; } @@ -19287,17 +20084,17 @@ private okhttp3.Call gatewayUpdateLdapAuthConfigValidateBeforeCall(GatewayUpdate * * * @param body (required) - * @return GatewayUpdateLdapAuthConfigOutput + * @return GatewayUpdateProducerCassandraOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 GatewayUpdateLdapAuthConfigResponse wraps response body. -
201 gatewayUpdateProducerCassandraResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public GatewayUpdateLdapAuthConfigOutput gatewayUpdateLdapAuthConfig(GatewayUpdateLdapAuthConfig body) throws ApiException { - ApiResponse localVarResp = gatewayUpdateLdapAuthConfigWithHttpInfo(body); + public GatewayUpdateProducerCassandraOutput gatewayUpdateProducerCassandra(GatewayUpdateProducerCassandra body) throws ApiException { + ApiResponse localVarResp = gatewayUpdateProducerCassandraWithHttpInfo(body); return localVarResp.getData(); } @@ -19305,18 +20102,18 @@ public GatewayUpdateLdapAuthConfigOutput gatewayUpdateLdapAuthConfig(GatewayUpda * * * @param body (required) - * @return ApiResponse<GatewayUpdateLdapAuthConfigOutput> + * @return ApiResponse<GatewayUpdateProducerCassandraOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 GatewayUpdateLdapAuthConfigResponse wraps response body. -
201 gatewayUpdateProducerCassandraResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse gatewayUpdateLdapAuthConfigWithHttpInfo(GatewayUpdateLdapAuthConfig body) throws ApiException { - okhttp3.Call localVarCall = gatewayUpdateLdapAuthConfigValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse gatewayUpdateProducerCassandraWithHttpInfo(GatewayUpdateProducerCassandra body) throws ApiException { + okhttp3.Call localVarCall = gatewayUpdateProducerCassandraValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -19330,19 +20127,19 @@ public ApiResponse gatewayUpdateLdapAuthConfi * @http.response.details - +
Status Code Description Response Headers
201 GatewayUpdateLdapAuthConfigResponse wraps response body. -
201 gatewayUpdateProducerCassandraResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayUpdateLdapAuthConfigAsync(GatewayUpdateLdapAuthConfig body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayUpdateProducerCassandraAsync(GatewayUpdateProducerCassandra body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = gatewayUpdateLdapAuthConfigValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = gatewayUpdateProducerCassandraValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for gatewayUpdateMigration + * Build call for gatewayUpdateProducerCertificateAutomation * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -19350,11 +20147,11 @@ public okhttp3.Call gatewayUpdateLdapAuthConfigAsync(GatewayUpdateLdapAuthConfig * @http.response.details - +
Status Code Description Response Headers
200 gatewayMigrationUpdateResponse wraps response body. -
201 gatewayUpdateProducerCertificateAutomationResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayUpdateMigrationCall(GatewayUpdateMigration body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayUpdateProducerCertificateAutomationCall(GatewayUpdateProducerCertificateAutomation body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -19372,7 +20169,7 @@ public okhttp3.Call gatewayUpdateMigrationCall(GatewayUpdateMigration body, fina Object localVarPostBody = body; // create path and map variables - String localVarPath = "/gateway-update-migration"; + String localVarPath = "/gateway-update-producer-certificate-automation"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -19401,15 +20198,15 @@ public okhttp3.Call gatewayUpdateMigrationCall(GatewayUpdateMigration body, fina } @SuppressWarnings("rawtypes") - private okhttp3.Call gatewayUpdateMigrationValidateBeforeCall(GatewayUpdateMigration body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call gatewayUpdateProducerCertificateAutomationValidateBeforeCall(GatewayUpdateProducerCertificateAutomation body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling gatewayUpdateMigration(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling gatewayUpdateProducerCertificateAutomation(Async)"); } - okhttp3.Call localVarCall = gatewayUpdateMigrationCall(body, _callback); + okhttp3.Call localVarCall = gatewayUpdateProducerCertificateAutomationCall(body, _callback); return localVarCall; } @@ -19418,17 +20215,17 @@ private okhttp3.Call gatewayUpdateMigrationValidateBeforeCall(GatewayUpdateMigra * * * @param body (required) - * @return GatewayMigrationUpdateOutput + * @return GatewayUpdateProducerCertificateAutomationOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 gatewayMigrationUpdateResponse wraps response body. -
201 gatewayUpdateProducerCertificateAutomationResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public GatewayMigrationUpdateOutput gatewayUpdateMigration(GatewayUpdateMigration body) throws ApiException { - ApiResponse localVarResp = gatewayUpdateMigrationWithHttpInfo(body); + public GatewayUpdateProducerCertificateAutomationOutput gatewayUpdateProducerCertificateAutomation(GatewayUpdateProducerCertificateAutomation body) throws ApiException { + ApiResponse localVarResp = gatewayUpdateProducerCertificateAutomationWithHttpInfo(body); return localVarResp.getData(); } @@ -19436,18 +20233,18 @@ public GatewayMigrationUpdateOutput gatewayUpdateMigration(GatewayUpdateMigratio * * * @param body (required) - * @return ApiResponse<GatewayMigrationUpdateOutput> + * @return ApiResponse<GatewayUpdateProducerCertificateAutomationOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 gatewayMigrationUpdateResponse wraps response body. -
201 gatewayUpdateProducerCertificateAutomationResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse gatewayUpdateMigrationWithHttpInfo(GatewayUpdateMigration body) throws ApiException { - okhttp3.Call localVarCall = gatewayUpdateMigrationValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse gatewayUpdateProducerCertificateAutomationWithHttpInfo(GatewayUpdateProducerCertificateAutomation body) throws ApiException { + okhttp3.Call localVarCall = gatewayUpdateProducerCertificateAutomationValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -19461,31 +20258,31 @@ public ApiResponse gatewayUpdateMigrationWithHttpI * @http.response.details - +
Status Code Description Response Headers
200 gatewayMigrationUpdateResponse wraps response body. -
201 gatewayUpdateProducerCertificateAutomationResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayUpdateMigrationAsync(GatewayUpdateMigration body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayUpdateProducerCertificateAutomationAsync(GatewayUpdateProducerCertificateAutomation body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = gatewayUpdateMigrationValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = gatewayUpdateProducerCertificateAutomationValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for gatewayUpdateProducerArtifactory - * @param body (required) + * Build call for gatewayUpdateProducerCustom + * @param body (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 - +
Status Code Description Response Headers
201 gatewayUpdateProducerArtifactoryResponse wraps response body. -
200 gatewayUpdateProducerCustomResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayUpdateProducerArtifactoryCall(GatewayUpdateProducerArtifactory body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayUpdateProducerCustomCall(GatewayUpdateProducerCustom body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -19503,7 +20300,7 @@ public okhttp3.Call gatewayUpdateProducerArtifactoryCall(GatewayUpdateProducerAr Object localVarPostBody = body; // create path and map variables - String localVarPath = "/gateway-update-producer-artifactory"; + String localVarPath = "/gateway-update-producer-custom"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -19532,15 +20329,10 @@ public okhttp3.Call gatewayUpdateProducerArtifactoryCall(GatewayUpdateProducerAr } @SuppressWarnings("rawtypes") - private okhttp3.Call gatewayUpdateProducerArtifactoryValidateBeforeCall(GatewayUpdateProducerArtifactory body, final ApiCallback _callback) throws ApiException { - - // verify the required parameter 'body' is set - if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling gatewayUpdateProducerArtifactory(Async)"); - } + private okhttp3.Call gatewayUpdateProducerCustomValidateBeforeCall(GatewayUpdateProducerCustom body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = gatewayUpdateProducerArtifactoryCall(body, _callback); + okhttp3.Call localVarCall = gatewayUpdateProducerCustomCall(body, _callback); return localVarCall; } @@ -19548,63 +20340,63 @@ private okhttp3.Call gatewayUpdateProducerArtifactoryValidateBeforeCall(GatewayU /** * * - * @param body (required) - * @return GatewayUpdateProducerArtifactoryOutput + * @param body (optional) + * @return GatewayUpdateProducerCustomOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayUpdateProducerArtifactoryResponse wraps response body. -
200 gatewayUpdateProducerCustomResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public GatewayUpdateProducerArtifactoryOutput gatewayUpdateProducerArtifactory(GatewayUpdateProducerArtifactory body) throws ApiException { - ApiResponse localVarResp = gatewayUpdateProducerArtifactoryWithHttpInfo(body); + public GatewayUpdateProducerCustomOutput gatewayUpdateProducerCustom(GatewayUpdateProducerCustom body) throws ApiException { + ApiResponse localVarResp = gatewayUpdateProducerCustomWithHttpInfo(body); return localVarResp.getData(); } /** * * - * @param body (required) - * @return ApiResponse<GatewayUpdateProducerArtifactoryOutput> + * @param body (optional) + * @return ApiResponse<GatewayUpdateProducerCustomOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayUpdateProducerArtifactoryResponse wraps response body. -
200 gatewayUpdateProducerCustomResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse gatewayUpdateProducerArtifactoryWithHttpInfo(GatewayUpdateProducerArtifactory body) throws ApiException { - okhttp3.Call localVarCall = gatewayUpdateProducerArtifactoryValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse gatewayUpdateProducerCustomWithHttpInfo(GatewayUpdateProducerCustom body) throws ApiException { + okhttp3.Call localVarCall = gatewayUpdateProducerCustomValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } /** * (asynchronously) * - * @param body (required) + * @param body (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 - +
Status Code Description Response Headers
201 gatewayUpdateProducerArtifactoryResponse wraps response body. -
200 gatewayUpdateProducerCustomResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayUpdateProducerArtifactoryAsync(GatewayUpdateProducerArtifactory body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayUpdateProducerCustomAsync(GatewayUpdateProducerCustom body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = gatewayUpdateProducerArtifactoryValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = gatewayUpdateProducerCustomValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for gatewayUpdateProducerAws + * Build call for gatewayUpdateProducerDockerhub * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -19612,11 +20404,11 @@ public okhttp3.Call gatewayUpdateProducerArtifactoryAsync(GatewayUpdateProducerA * @http.response.details - +
Status Code Description Response Headers
200 gatewayUpdateProducerAwsResponse wraps response body. -
201 gatewayUpdateProducerDockerhubResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayUpdateProducerAwsCall(GatewayUpdateProducerAws body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayUpdateProducerDockerhubCall(GatewayUpdateProducerDockerhub body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -19634,7 +20426,7 @@ public okhttp3.Call gatewayUpdateProducerAwsCall(GatewayUpdateProducerAws body, Object localVarPostBody = body; // create path and map variables - String localVarPath = "/gateway-update-producer-aws"; + String localVarPath = "/gateway-update-producer-dockerhub"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -19663,15 +20455,15 @@ public okhttp3.Call gatewayUpdateProducerAwsCall(GatewayUpdateProducerAws body, } @SuppressWarnings("rawtypes") - private okhttp3.Call gatewayUpdateProducerAwsValidateBeforeCall(GatewayUpdateProducerAws body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call gatewayUpdateProducerDockerhubValidateBeforeCall(GatewayUpdateProducerDockerhub body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling gatewayUpdateProducerAws(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling gatewayUpdateProducerDockerhub(Async)"); } - okhttp3.Call localVarCall = gatewayUpdateProducerAwsCall(body, _callback); + okhttp3.Call localVarCall = gatewayUpdateProducerDockerhubCall(body, _callback); return localVarCall; } @@ -19680,17 +20472,17 @@ private okhttp3.Call gatewayUpdateProducerAwsValidateBeforeCall(GatewayUpdatePro * * * @param body (required) - * @return GatewayUpdateProducerAwsOutput + * @return GatewayUpdateProducerDockerhubOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 gatewayUpdateProducerAwsResponse wraps response body. -
201 gatewayUpdateProducerDockerhubResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public GatewayUpdateProducerAwsOutput gatewayUpdateProducerAws(GatewayUpdateProducerAws body) throws ApiException { - ApiResponse localVarResp = gatewayUpdateProducerAwsWithHttpInfo(body); + public GatewayUpdateProducerDockerhubOutput gatewayUpdateProducerDockerhub(GatewayUpdateProducerDockerhub body) throws ApiException { + ApiResponse localVarResp = gatewayUpdateProducerDockerhubWithHttpInfo(body); return localVarResp.getData(); } @@ -19698,18 +20490,18 @@ public GatewayUpdateProducerAwsOutput gatewayUpdateProducerAws(GatewayUpdateProd * * * @param body (required) - * @return ApiResponse<GatewayUpdateProducerAwsOutput> + * @return ApiResponse<GatewayUpdateProducerDockerhubOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 gatewayUpdateProducerAwsResponse wraps response body. -
201 gatewayUpdateProducerDockerhubResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse gatewayUpdateProducerAwsWithHttpInfo(GatewayUpdateProducerAws body) throws ApiException { - okhttp3.Call localVarCall = gatewayUpdateProducerAwsValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse gatewayUpdateProducerDockerhubWithHttpInfo(GatewayUpdateProducerDockerhub body) throws ApiException { + okhttp3.Call localVarCall = gatewayUpdateProducerDockerhubValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -19723,19 +20515,19 @@ public ApiResponse gatewayUpdateProducerAwsWithH * @http.response.details - +
Status Code Description Response Headers
200 gatewayUpdateProducerAwsResponse wraps response body. -
201 gatewayUpdateProducerDockerhubResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayUpdateProducerAwsAsync(GatewayUpdateProducerAws body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayUpdateProducerDockerhubAsync(GatewayUpdateProducerDockerhub body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = gatewayUpdateProducerAwsValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = gatewayUpdateProducerDockerhubValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for gatewayUpdateProducerAzure + * Build call for gatewayUpdateProducerEks * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -19743,11 +20535,11 @@ public okhttp3.Call gatewayUpdateProducerAwsAsync(GatewayUpdateProducerAws body, * @http.response.details - +
Status Code Description Response Headers
201 gatewayUpdateProducerAzureResponse wraps response body. -
201 gatewayUpdateProducerEksResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayUpdateProducerAzureCall(GatewayUpdateProducerAzure body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayUpdateProducerEksCall(GatewayUpdateProducerEks body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -19765,7 +20557,7 @@ public okhttp3.Call gatewayUpdateProducerAzureCall(GatewayUpdateProducerAzure bo Object localVarPostBody = body; // create path and map variables - String localVarPath = "/gateway-update-producer-azure"; + String localVarPath = "/gateway-update-producer-eks"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -19794,15 +20586,15 @@ public okhttp3.Call gatewayUpdateProducerAzureCall(GatewayUpdateProducerAzure bo } @SuppressWarnings("rawtypes") - private okhttp3.Call gatewayUpdateProducerAzureValidateBeforeCall(GatewayUpdateProducerAzure body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call gatewayUpdateProducerEksValidateBeforeCall(GatewayUpdateProducerEks body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling gatewayUpdateProducerAzure(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling gatewayUpdateProducerEks(Async)"); } - okhttp3.Call localVarCall = gatewayUpdateProducerAzureCall(body, _callback); + okhttp3.Call localVarCall = gatewayUpdateProducerEksCall(body, _callback); return localVarCall; } @@ -19811,17 +20603,17 @@ private okhttp3.Call gatewayUpdateProducerAzureValidateBeforeCall(GatewayUpdateP * * * @param body (required) - * @return GatewayUpdateProducerAzureOutput + * @return GatewayUpdateProducerEksOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayUpdateProducerAzureResponse wraps response body. -
201 gatewayUpdateProducerEksResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public GatewayUpdateProducerAzureOutput gatewayUpdateProducerAzure(GatewayUpdateProducerAzure body) throws ApiException { - ApiResponse localVarResp = gatewayUpdateProducerAzureWithHttpInfo(body); + public GatewayUpdateProducerEksOutput gatewayUpdateProducerEks(GatewayUpdateProducerEks body) throws ApiException { + ApiResponse localVarResp = gatewayUpdateProducerEksWithHttpInfo(body); return localVarResp.getData(); } @@ -19829,18 +20621,18 @@ public GatewayUpdateProducerAzureOutput gatewayUpdateProducerAzure(GatewayUpdate * * * @param body (required) - * @return ApiResponse<GatewayUpdateProducerAzureOutput> + * @return ApiResponse<GatewayUpdateProducerEksOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayUpdateProducerAzureResponse wraps response body. -
201 gatewayUpdateProducerEksResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse gatewayUpdateProducerAzureWithHttpInfo(GatewayUpdateProducerAzure body) throws ApiException { - okhttp3.Call localVarCall = gatewayUpdateProducerAzureValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse gatewayUpdateProducerEksWithHttpInfo(GatewayUpdateProducerEks body) throws ApiException { + okhttp3.Call localVarCall = gatewayUpdateProducerEksValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -19854,19 +20646,19 @@ public ApiResponse gatewayUpdateProducerAzureW * @http.response.details - +
Status Code Description Response Headers
201 gatewayUpdateProducerAzureResponse wraps response body. -
201 gatewayUpdateProducerEksResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayUpdateProducerAzureAsync(GatewayUpdateProducerAzure body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayUpdateProducerEksAsync(GatewayUpdateProducerEks body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = gatewayUpdateProducerAzureValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = gatewayUpdateProducerEksValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for gatewayUpdateProducerCassandra + * Build call for gatewayUpdateProducerGcp * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -19874,11 +20666,11 @@ public okhttp3.Call gatewayUpdateProducerAzureAsync(GatewayUpdateProducerAzure b * @http.response.details - +
Status Code Description Response Headers
201 gatewayUpdateProducerCassandraResponse wraps response body. -
201 gatewayUpdateProducerGcpResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayUpdateProducerCassandraCall(GatewayUpdateProducerCassandra body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayUpdateProducerGcpCall(GatewayUpdateProducerGcp body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -19896,7 +20688,7 @@ public okhttp3.Call gatewayUpdateProducerCassandraCall(GatewayUpdateProducerCass Object localVarPostBody = body; // create path and map variables - String localVarPath = "/gateway-update-producer-cassandra"; + String localVarPath = "/gateway-update-producer-gcp"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -19925,15 +20717,15 @@ public okhttp3.Call gatewayUpdateProducerCassandraCall(GatewayUpdateProducerCass } @SuppressWarnings("rawtypes") - private okhttp3.Call gatewayUpdateProducerCassandraValidateBeforeCall(GatewayUpdateProducerCassandra body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call gatewayUpdateProducerGcpValidateBeforeCall(GatewayUpdateProducerGcp body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling gatewayUpdateProducerCassandra(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling gatewayUpdateProducerGcp(Async)"); } - okhttp3.Call localVarCall = gatewayUpdateProducerCassandraCall(body, _callback); + okhttp3.Call localVarCall = gatewayUpdateProducerGcpCall(body, _callback); return localVarCall; } @@ -19942,17 +20734,17 @@ private okhttp3.Call gatewayUpdateProducerCassandraValidateBeforeCall(GatewayUpd * * * @param body (required) - * @return GatewayUpdateProducerCassandraOutput + * @return GatewayUpdateProducerGcpOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayUpdateProducerCassandraResponse wraps response body. -
201 gatewayUpdateProducerGcpResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public GatewayUpdateProducerCassandraOutput gatewayUpdateProducerCassandra(GatewayUpdateProducerCassandra body) throws ApiException { - ApiResponse localVarResp = gatewayUpdateProducerCassandraWithHttpInfo(body); + public GatewayUpdateProducerGcpOutput gatewayUpdateProducerGcp(GatewayUpdateProducerGcp body) throws ApiException { + ApiResponse localVarResp = gatewayUpdateProducerGcpWithHttpInfo(body); return localVarResp.getData(); } @@ -19960,18 +20752,18 @@ public GatewayUpdateProducerCassandraOutput gatewayUpdateProducerCassandra(Gatew * * * @param body (required) - * @return ApiResponse<GatewayUpdateProducerCassandraOutput> + * @return ApiResponse<GatewayUpdateProducerGcpOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayUpdateProducerCassandraResponse wraps response body. -
201 gatewayUpdateProducerGcpResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse gatewayUpdateProducerCassandraWithHttpInfo(GatewayUpdateProducerCassandra body) throws ApiException { - okhttp3.Call localVarCall = gatewayUpdateProducerCassandraValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse gatewayUpdateProducerGcpWithHttpInfo(GatewayUpdateProducerGcp body) throws ApiException { + okhttp3.Call localVarCall = gatewayUpdateProducerGcpValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -19985,19 +20777,19 @@ public ApiResponse gatewayUpdateProducerCa * @http.response.details - +
Status Code Description Response Headers
201 gatewayUpdateProducerCassandraResponse wraps response body. -
201 gatewayUpdateProducerGcpResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayUpdateProducerCassandraAsync(GatewayUpdateProducerCassandra body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayUpdateProducerGcpAsync(GatewayUpdateProducerGcp body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = gatewayUpdateProducerCassandraValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = gatewayUpdateProducerGcpValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for gatewayUpdateProducerCertificateAutomation + * Build call for gatewayUpdateProducerGithub * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -20005,11 +20797,11 @@ public okhttp3.Call gatewayUpdateProducerCassandraAsync(GatewayUpdateProducerCas * @http.response.details - +
Status Code Description Response Headers
201 gatewayUpdateProducerCertificateAutomationResponse wraps response body. -
201 gatewayUpdateProducerGithubResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayUpdateProducerCertificateAutomationCall(GatewayUpdateProducerCertificateAutomation body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayUpdateProducerGithubCall(GatewayUpdateProducerGithub body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -20027,7 +20819,7 @@ public okhttp3.Call gatewayUpdateProducerCertificateAutomationCall(GatewayUpdate Object localVarPostBody = body; // create path and map variables - String localVarPath = "/gateway-update-producer-certificate-automation"; + String localVarPath = "/gateway-update-producer-github"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -20056,15 +20848,15 @@ public okhttp3.Call gatewayUpdateProducerCertificateAutomationCall(GatewayUpdate } @SuppressWarnings("rawtypes") - private okhttp3.Call gatewayUpdateProducerCertificateAutomationValidateBeforeCall(GatewayUpdateProducerCertificateAutomation body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call gatewayUpdateProducerGithubValidateBeforeCall(GatewayUpdateProducerGithub body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling gatewayUpdateProducerCertificateAutomation(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling gatewayUpdateProducerGithub(Async)"); } - okhttp3.Call localVarCall = gatewayUpdateProducerCertificateAutomationCall(body, _callback); + okhttp3.Call localVarCall = gatewayUpdateProducerGithubCall(body, _callback); return localVarCall; } @@ -20073,17 +20865,17 @@ private okhttp3.Call gatewayUpdateProducerCertificateAutomationValidateBeforeCal * * * @param body (required) - * @return GatewayUpdateProducerCertificateAutomationOutput + * @return GatewayUpdateProducerGithubOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayUpdateProducerCertificateAutomationResponse wraps response body. -
201 gatewayUpdateProducerGithubResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public GatewayUpdateProducerCertificateAutomationOutput gatewayUpdateProducerCertificateAutomation(GatewayUpdateProducerCertificateAutomation body) throws ApiException { - ApiResponse localVarResp = gatewayUpdateProducerCertificateAutomationWithHttpInfo(body); + public GatewayUpdateProducerGithubOutput gatewayUpdateProducerGithub(GatewayUpdateProducerGithub body) throws ApiException { + ApiResponse localVarResp = gatewayUpdateProducerGithubWithHttpInfo(body); return localVarResp.getData(); } @@ -20091,18 +20883,18 @@ public GatewayUpdateProducerCertificateAutomationOutput gatewayUpdateProducerCer * * * @param body (required) - * @return ApiResponse<GatewayUpdateProducerCertificateAutomationOutput> + * @return ApiResponse<GatewayUpdateProducerGithubOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayUpdateProducerCertificateAutomationResponse wraps response body. -
201 gatewayUpdateProducerGithubResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse gatewayUpdateProducerCertificateAutomationWithHttpInfo(GatewayUpdateProducerCertificateAutomation body) throws ApiException { - okhttp3.Call localVarCall = gatewayUpdateProducerCertificateAutomationValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse gatewayUpdateProducerGithubWithHttpInfo(GatewayUpdateProducerGithub body) throws ApiException { + okhttp3.Call localVarCall = gatewayUpdateProducerGithubValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -20116,31 +20908,31 @@ public ApiResponse gatewayUpda * @http.response.details - +
Status Code Description Response Headers
201 gatewayUpdateProducerCertificateAutomationResponse wraps response body. -
201 gatewayUpdateProducerGithubResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayUpdateProducerCertificateAutomationAsync(GatewayUpdateProducerCertificateAutomation body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayUpdateProducerGithubAsync(GatewayUpdateProducerGithub body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = gatewayUpdateProducerCertificateAutomationValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = gatewayUpdateProducerGithubValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for gatewayUpdateProducerCustom - * @param body (optional) + * Build call for gatewayUpdateProducerGke + * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object * @http.response.details - +
Status Code Description Response Headers
200 gatewayUpdateProducerCustomResponse wraps response body. -
201 gatewayUpdateProducerGkeResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayUpdateProducerCustomCall(GatewayUpdateProducerCustom body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayUpdateProducerGkeCall(GatewayUpdateProducerGke body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -20158,7 +20950,7 @@ public okhttp3.Call gatewayUpdateProducerCustomCall(GatewayUpdateProducerCustom Object localVarPostBody = body; // create path and map variables - String localVarPath = "/gateway-update-producer-custom"; + String localVarPath = "/gateway-update-producer-gke"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -20187,10 +20979,15 @@ public okhttp3.Call gatewayUpdateProducerCustomCall(GatewayUpdateProducerCustom } @SuppressWarnings("rawtypes") - private okhttp3.Call gatewayUpdateProducerCustomValidateBeforeCall(GatewayUpdateProducerCustom body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call gatewayUpdateProducerGkeValidateBeforeCall(GatewayUpdateProducerGke body, final ApiCallback _callback) throws ApiException { + + // verify the required parameter 'body' is set + if (body == null) { + throw new ApiException("Missing the required parameter 'body' when calling gatewayUpdateProducerGke(Async)"); + } - okhttp3.Call localVarCall = gatewayUpdateProducerCustomCall(body, _callback); + okhttp3.Call localVarCall = gatewayUpdateProducerGkeCall(body, _callback); return localVarCall; } @@ -20198,63 +20995,63 @@ private okhttp3.Call gatewayUpdateProducerCustomValidateBeforeCall(GatewayUpdate /** * * - * @param body (optional) - * @return GatewayUpdateProducerCustomOutput + * @param body (required) + * @return GatewayUpdateProducerGkeOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 gatewayUpdateProducerCustomResponse wraps response body. -
201 gatewayUpdateProducerGkeResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public GatewayUpdateProducerCustomOutput gatewayUpdateProducerCustom(GatewayUpdateProducerCustom body) throws ApiException { - ApiResponse localVarResp = gatewayUpdateProducerCustomWithHttpInfo(body); + public GatewayUpdateProducerGkeOutput gatewayUpdateProducerGke(GatewayUpdateProducerGke body) throws ApiException { + ApiResponse localVarResp = gatewayUpdateProducerGkeWithHttpInfo(body); return localVarResp.getData(); } /** * * - * @param body (optional) - * @return ApiResponse<GatewayUpdateProducerCustomOutput> + * @param body (required) + * @return ApiResponse<GatewayUpdateProducerGkeOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 gatewayUpdateProducerCustomResponse wraps response body. -
201 gatewayUpdateProducerGkeResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse gatewayUpdateProducerCustomWithHttpInfo(GatewayUpdateProducerCustom body) throws ApiException { - okhttp3.Call localVarCall = gatewayUpdateProducerCustomValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse gatewayUpdateProducerGkeWithHttpInfo(GatewayUpdateProducerGke body) throws ApiException { + okhttp3.Call localVarCall = gatewayUpdateProducerGkeValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } /** * (asynchronously) * - * @param body (optional) + * @param body (required) * @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 - +
Status Code Description Response Headers
200 gatewayUpdateProducerCustomResponse wraps response body. -
201 gatewayUpdateProducerGkeResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayUpdateProducerCustomAsync(GatewayUpdateProducerCustom body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayUpdateProducerGkeAsync(GatewayUpdateProducerGke body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = gatewayUpdateProducerCustomValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = gatewayUpdateProducerGkeValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for gatewayUpdateProducerDockerhub + * Build call for gatewayUpdateProducerHanaDb * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -20262,11 +21059,11 @@ public okhttp3.Call gatewayUpdateProducerCustomAsync(GatewayUpdateProducerCustom * @http.response.details - +
Status Code Description Response Headers
201 gatewayUpdateProducerDockerhubResponse wraps response body. -
201 gatewayUpdateProducerHanaDbResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayUpdateProducerDockerhubCall(GatewayUpdateProducerDockerhub body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayUpdateProducerHanaDbCall(GatewayUpdateProducerHanaDb body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -20284,7 +21081,7 @@ public okhttp3.Call gatewayUpdateProducerDockerhubCall(GatewayUpdateProducerDock Object localVarPostBody = body; // create path and map variables - String localVarPath = "/gateway-update-producer-dockerhub"; + String localVarPath = "/gateway-update-producer-hana"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -20313,15 +21110,15 @@ public okhttp3.Call gatewayUpdateProducerDockerhubCall(GatewayUpdateProducerDock } @SuppressWarnings("rawtypes") - private okhttp3.Call gatewayUpdateProducerDockerhubValidateBeforeCall(GatewayUpdateProducerDockerhub body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call gatewayUpdateProducerHanaDbValidateBeforeCall(GatewayUpdateProducerHanaDb body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling gatewayUpdateProducerDockerhub(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling gatewayUpdateProducerHanaDb(Async)"); } - okhttp3.Call localVarCall = gatewayUpdateProducerDockerhubCall(body, _callback); + okhttp3.Call localVarCall = gatewayUpdateProducerHanaDbCall(body, _callback); return localVarCall; } @@ -20330,17 +21127,17 @@ private okhttp3.Call gatewayUpdateProducerDockerhubValidateBeforeCall(GatewayUpd * * * @param body (required) - * @return GatewayUpdateProducerDockerhubOutput + * @return GatewayUpdateProducerHanaDbOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayUpdateProducerDockerhubResponse wraps response body. -
201 gatewayUpdateProducerHanaDbResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public GatewayUpdateProducerDockerhubOutput gatewayUpdateProducerDockerhub(GatewayUpdateProducerDockerhub body) throws ApiException { - ApiResponse localVarResp = gatewayUpdateProducerDockerhubWithHttpInfo(body); + public GatewayUpdateProducerHanaDbOutput gatewayUpdateProducerHanaDb(GatewayUpdateProducerHanaDb body) throws ApiException { + ApiResponse localVarResp = gatewayUpdateProducerHanaDbWithHttpInfo(body); return localVarResp.getData(); } @@ -20348,18 +21145,18 @@ public GatewayUpdateProducerDockerhubOutput gatewayUpdateProducerDockerhub(Gatew * * * @param body (required) - * @return ApiResponse<GatewayUpdateProducerDockerhubOutput> + * @return ApiResponse<GatewayUpdateProducerHanaDbOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayUpdateProducerDockerhubResponse wraps response body. -
201 gatewayUpdateProducerHanaDbResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse gatewayUpdateProducerDockerhubWithHttpInfo(GatewayUpdateProducerDockerhub body) throws ApiException { - okhttp3.Call localVarCall = gatewayUpdateProducerDockerhubValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse gatewayUpdateProducerHanaDbWithHttpInfo(GatewayUpdateProducerHanaDb body) throws ApiException { + okhttp3.Call localVarCall = gatewayUpdateProducerHanaDbValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -20373,19 +21170,19 @@ public ApiResponse gatewayUpdateProducerDo * @http.response.details - +
Status Code Description Response Headers
201 gatewayUpdateProducerDockerhubResponse wraps response body. -
201 gatewayUpdateProducerHanaDbResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayUpdateProducerDockerhubAsync(GatewayUpdateProducerDockerhub body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayUpdateProducerHanaDbAsync(GatewayUpdateProducerHanaDb body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = gatewayUpdateProducerDockerhubValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = gatewayUpdateProducerHanaDbValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for gatewayUpdateProducerEks + * Build call for gatewayUpdateProducerLdap * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -20393,11 +21190,11 @@ public okhttp3.Call gatewayUpdateProducerDockerhubAsync(GatewayUpdateProducerDoc * @http.response.details - +
Status Code Description Response Headers
201 gatewayUpdateProducerEksResponse wraps response body. -
201 gatewayUpdateProducerLdapResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayUpdateProducerEksCall(GatewayUpdateProducerEks body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayUpdateProducerLdapCall(GatewayUpdateProducerLdap body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -20415,7 +21212,7 @@ public okhttp3.Call gatewayUpdateProducerEksCall(GatewayUpdateProducerEks body, Object localVarPostBody = body; // create path and map variables - String localVarPath = "/gateway-update-producer-eks"; + String localVarPath = "/gateway-update-producer-ldap"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -20444,15 +21241,15 @@ public okhttp3.Call gatewayUpdateProducerEksCall(GatewayUpdateProducerEks body, } @SuppressWarnings("rawtypes") - private okhttp3.Call gatewayUpdateProducerEksValidateBeforeCall(GatewayUpdateProducerEks body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call gatewayUpdateProducerLdapValidateBeforeCall(GatewayUpdateProducerLdap body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling gatewayUpdateProducerEks(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling gatewayUpdateProducerLdap(Async)"); } - okhttp3.Call localVarCall = gatewayUpdateProducerEksCall(body, _callback); + okhttp3.Call localVarCall = gatewayUpdateProducerLdapCall(body, _callback); return localVarCall; } @@ -20461,17 +21258,17 @@ private okhttp3.Call gatewayUpdateProducerEksValidateBeforeCall(GatewayUpdatePro * * * @param body (required) - * @return GatewayUpdateProducerEksOutput + * @return GatewayUpdateProducerLdapOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayUpdateProducerEksResponse wraps response body. -
201 gatewayUpdateProducerLdapResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public GatewayUpdateProducerEksOutput gatewayUpdateProducerEks(GatewayUpdateProducerEks body) throws ApiException { - ApiResponse localVarResp = gatewayUpdateProducerEksWithHttpInfo(body); + public GatewayUpdateProducerLdapOutput gatewayUpdateProducerLdap(GatewayUpdateProducerLdap body) throws ApiException { + ApiResponse localVarResp = gatewayUpdateProducerLdapWithHttpInfo(body); return localVarResp.getData(); } @@ -20479,18 +21276,18 @@ public GatewayUpdateProducerEksOutput gatewayUpdateProducerEks(GatewayUpdateProd * * * @param body (required) - * @return ApiResponse<GatewayUpdateProducerEksOutput> + * @return ApiResponse<GatewayUpdateProducerLdapOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayUpdateProducerEksResponse wraps response body. -
201 gatewayUpdateProducerLdapResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse gatewayUpdateProducerEksWithHttpInfo(GatewayUpdateProducerEks body) throws ApiException { - okhttp3.Call localVarCall = gatewayUpdateProducerEksValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse gatewayUpdateProducerLdapWithHttpInfo(GatewayUpdateProducerLdap body) throws ApiException { + okhttp3.Call localVarCall = gatewayUpdateProducerLdapValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -20504,19 +21301,19 @@ public ApiResponse gatewayUpdateProducerEksWithH * @http.response.details - +
Status Code Description Response Headers
201 gatewayUpdateProducerEksResponse wraps response body. -
201 gatewayUpdateProducerLdapResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayUpdateProducerEksAsync(GatewayUpdateProducerEks body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayUpdateProducerLdapAsync(GatewayUpdateProducerLdap body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = gatewayUpdateProducerEksValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = gatewayUpdateProducerLdapValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for gatewayUpdateProducerGcp + * Build call for gatewayUpdateProducerMSSQL * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -20524,11 +21321,11 @@ public okhttp3.Call gatewayUpdateProducerEksAsync(GatewayUpdateProducerEks body, * @http.response.details - +
Status Code Description Response Headers
201 gatewayUpdateProducerGcpResponse wraps response body. -
201 gatewayUpdateProducerMSSQLResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayUpdateProducerGcpCall(GatewayUpdateProducerGcp body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayUpdateProducerMSSQLCall(GatewayUpdateProducerMSSQL body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -20546,7 +21343,7 @@ public okhttp3.Call gatewayUpdateProducerGcpCall(GatewayUpdateProducerGcp body, Object localVarPostBody = body; // create path and map variables - String localVarPath = "/gateway-update-producer-gcp"; + String localVarPath = "/gateway-update-producer-mssql"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -20575,15 +21372,15 @@ public okhttp3.Call gatewayUpdateProducerGcpCall(GatewayUpdateProducerGcp body, } @SuppressWarnings("rawtypes") - private okhttp3.Call gatewayUpdateProducerGcpValidateBeforeCall(GatewayUpdateProducerGcp body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call gatewayUpdateProducerMSSQLValidateBeforeCall(GatewayUpdateProducerMSSQL body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling gatewayUpdateProducerGcp(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling gatewayUpdateProducerMSSQL(Async)"); } - okhttp3.Call localVarCall = gatewayUpdateProducerGcpCall(body, _callback); + okhttp3.Call localVarCall = gatewayUpdateProducerMSSQLCall(body, _callback); return localVarCall; } @@ -20592,17 +21389,17 @@ private okhttp3.Call gatewayUpdateProducerGcpValidateBeforeCall(GatewayUpdatePro * * * @param body (required) - * @return GatewayUpdateProducerGcpOutput + * @return GatewayUpdateProducerMSSQLOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayUpdateProducerGcpResponse wraps response body. -
201 gatewayUpdateProducerMSSQLResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public GatewayUpdateProducerGcpOutput gatewayUpdateProducerGcp(GatewayUpdateProducerGcp body) throws ApiException { - ApiResponse localVarResp = gatewayUpdateProducerGcpWithHttpInfo(body); + public GatewayUpdateProducerMSSQLOutput gatewayUpdateProducerMSSQL(GatewayUpdateProducerMSSQL body) throws ApiException { + ApiResponse localVarResp = gatewayUpdateProducerMSSQLWithHttpInfo(body); return localVarResp.getData(); } @@ -20610,18 +21407,18 @@ public GatewayUpdateProducerGcpOutput gatewayUpdateProducerGcp(GatewayUpdateProd * * * @param body (required) - * @return ApiResponse<GatewayUpdateProducerGcpOutput> + * @return ApiResponse<GatewayUpdateProducerMSSQLOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayUpdateProducerGcpResponse wraps response body. -
201 gatewayUpdateProducerMSSQLResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse gatewayUpdateProducerGcpWithHttpInfo(GatewayUpdateProducerGcp body) throws ApiException { - okhttp3.Call localVarCall = gatewayUpdateProducerGcpValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse gatewayUpdateProducerMSSQLWithHttpInfo(GatewayUpdateProducerMSSQL body) throws ApiException { + okhttp3.Call localVarCall = gatewayUpdateProducerMSSQLValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -20635,19 +21432,19 @@ public ApiResponse gatewayUpdateProducerGcpWithH * @http.response.details - +
Status Code Description Response Headers
201 gatewayUpdateProducerGcpResponse wraps response body. -
201 gatewayUpdateProducerMSSQLResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayUpdateProducerGcpAsync(GatewayUpdateProducerGcp body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayUpdateProducerMSSQLAsync(GatewayUpdateProducerMSSQL body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = gatewayUpdateProducerGcpValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = gatewayUpdateProducerMSSQLValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for gatewayUpdateProducerGithub + * Build call for gatewayUpdateProducerMongo * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -20655,11 +21452,11 @@ public okhttp3.Call gatewayUpdateProducerGcpAsync(GatewayUpdateProducerGcp body, * @http.response.details - +
Status Code Description Response Headers
201 gatewayUpdateProducerGithubResponse wraps response body. -
201 gatewayUpdateProducerMongoResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayUpdateProducerGithubCall(GatewayUpdateProducerGithub body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayUpdateProducerMongoCall(GatewayUpdateProducerMongo body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -20677,7 +21474,7 @@ public okhttp3.Call gatewayUpdateProducerGithubCall(GatewayUpdateProducerGithub Object localVarPostBody = body; // create path and map variables - String localVarPath = "/gateway-update-producer-github"; + String localVarPath = "/gateway-update-producer-mongo"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -20706,15 +21503,15 @@ public okhttp3.Call gatewayUpdateProducerGithubCall(GatewayUpdateProducerGithub } @SuppressWarnings("rawtypes") - private okhttp3.Call gatewayUpdateProducerGithubValidateBeforeCall(GatewayUpdateProducerGithub body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call gatewayUpdateProducerMongoValidateBeforeCall(GatewayUpdateProducerMongo body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling gatewayUpdateProducerGithub(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling gatewayUpdateProducerMongo(Async)"); } - okhttp3.Call localVarCall = gatewayUpdateProducerGithubCall(body, _callback); + okhttp3.Call localVarCall = gatewayUpdateProducerMongoCall(body, _callback); return localVarCall; } @@ -20723,17 +21520,17 @@ private okhttp3.Call gatewayUpdateProducerGithubValidateBeforeCall(GatewayUpdate * * * @param body (required) - * @return GatewayUpdateProducerGithubOutput + * @return GatewayUpdateProducerMongoOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayUpdateProducerGithubResponse wraps response body. -
201 gatewayUpdateProducerMongoResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public GatewayUpdateProducerGithubOutput gatewayUpdateProducerGithub(GatewayUpdateProducerGithub body) throws ApiException { - ApiResponse localVarResp = gatewayUpdateProducerGithubWithHttpInfo(body); + public GatewayUpdateProducerMongoOutput gatewayUpdateProducerMongo(GatewayUpdateProducerMongo body) throws ApiException { + ApiResponse localVarResp = gatewayUpdateProducerMongoWithHttpInfo(body); return localVarResp.getData(); } @@ -20741,18 +21538,18 @@ public GatewayUpdateProducerGithubOutput gatewayUpdateProducerGithub(GatewayUpda * * * @param body (required) - * @return ApiResponse<GatewayUpdateProducerGithubOutput> + * @return ApiResponse<GatewayUpdateProducerMongoOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayUpdateProducerGithubResponse wraps response body. -
201 gatewayUpdateProducerMongoResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse gatewayUpdateProducerGithubWithHttpInfo(GatewayUpdateProducerGithub body) throws ApiException { - okhttp3.Call localVarCall = gatewayUpdateProducerGithubValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse gatewayUpdateProducerMongoWithHttpInfo(GatewayUpdateProducerMongo body) throws ApiException { + okhttp3.Call localVarCall = gatewayUpdateProducerMongoValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -20766,19 +21563,19 @@ public ApiResponse gatewayUpdateProducerGithu * @http.response.details - +
Status Code Description Response Headers
201 gatewayUpdateProducerGithubResponse wraps response body. -
201 gatewayUpdateProducerMongoResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayUpdateProducerGithubAsync(GatewayUpdateProducerGithub body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayUpdateProducerMongoAsync(GatewayUpdateProducerMongo body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = gatewayUpdateProducerGithubValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = gatewayUpdateProducerMongoValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for gatewayUpdateProducerGke + * Build call for gatewayUpdateProducerMySQL * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -20786,11 +21583,11 @@ public okhttp3.Call gatewayUpdateProducerGithubAsync(GatewayUpdateProducerGithub * @http.response.details - +
Status Code Description Response Headers
201 gatewayUpdateProducerGkeResponse wraps response body. -
201 gatewayUpdateProducerMySQLResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayUpdateProducerGkeCall(GatewayUpdateProducerGke body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayUpdateProducerMySQLCall(GatewayUpdateProducerMySQL body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -20808,7 +21605,7 @@ public okhttp3.Call gatewayUpdateProducerGkeCall(GatewayUpdateProducerGke body, Object localVarPostBody = body; // create path and map variables - String localVarPath = "/gateway-update-producer-gke"; + String localVarPath = "/gateway-update-producer-mysql"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -20837,15 +21634,15 @@ public okhttp3.Call gatewayUpdateProducerGkeCall(GatewayUpdateProducerGke body, } @SuppressWarnings("rawtypes") - private okhttp3.Call gatewayUpdateProducerGkeValidateBeforeCall(GatewayUpdateProducerGke body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call gatewayUpdateProducerMySQLValidateBeforeCall(GatewayUpdateProducerMySQL body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling gatewayUpdateProducerGke(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling gatewayUpdateProducerMySQL(Async)"); } - okhttp3.Call localVarCall = gatewayUpdateProducerGkeCall(body, _callback); + okhttp3.Call localVarCall = gatewayUpdateProducerMySQLCall(body, _callback); return localVarCall; } @@ -20854,17 +21651,17 @@ private okhttp3.Call gatewayUpdateProducerGkeValidateBeforeCall(GatewayUpdatePro * * * @param body (required) - * @return GatewayUpdateProducerGkeOutput + * @return GatewayUpdateProducerMySQLOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayUpdateProducerGkeResponse wraps response body. -
201 gatewayUpdateProducerMySQLResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public GatewayUpdateProducerGkeOutput gatewayUpdateProducerGke(GatewayUpdateProducerGke body) throws ApiException { - ApiResponse localVarResp = gatewayUpdateProducerGkeWithHttpInfo(body); + public GatewayUpdateProducerMySQLOutput gatewayUpdateProducerMySQL(GatewayUpdateProducerMySQL body) throws ApiException { + ApiResponse localVarResp = gatewayUpdateProducerMySQLWithHttpInfo(body); return localVarResp.getData(); } @@ -20872,18 +21669,18 @@ public GatewayUpdateProducerGkeOutput gatewayUpdateProducerGke(GatewayUpdateProd * * * @param body (required) - * @return ApiResponse<GatewayUpdateProducerGkeOutput> + * @return ApiResponse<GatewayUpdateProducerMySQLOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayUpdateProducerGkeResponse wraps response body. -
201 gatewayUpdateProducerMySQLResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse gatewayUpdateProducerGkeWithHttpInfo(GatewayUpdateProducerGke body) throws ApiException { - okhttp3.Call localVarCall = gatewayUpdateProducerGkeValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse gatewayUpdateProducerMySQLWithHttpInfo(GatewayUpdateProducerMySQL body) throws ApiException { + okhttp3.Call localVarCall = gatewayUpdateProducerMySQLValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -20897,19 +21694,19 @@ public ApiResponse gatewayUpdateProducerGkeWithH * @http.response.details - +
Status Code Description Response Headers
201 gatewayUpdateProducerGkeResponse wraps response body. -
201 gatewayUpdateProducerMySQLResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayUpdateProducerGkeAsync(GatewayUpdateProducerGke body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayUpdateProducerMySQLAsync(GatewayUpdateProducerMySQL body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = gatewayUpdateProducerGkeValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = gatewayUpdateProducerMySQLValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for gatewayUpdateProducerHanaDb + * Build call for gatewayUpdateProducerNativeK8S * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -20917,11 +21714,11 @@ public okhttp3.Call gatewayUpdateProducerGkeAsync(GatewayUpdateProducerGke body, * @http.response.details - +
Status Code Description Response Headers
201 gatewayUpdateProducerHanaDbResponse wraps response body. -
201 gatewayUpdateProducerNativeK8SResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayUpdateProducerHanaDbCall(GatewayUpdateProducerHanaDb body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayUpdateProducerNativeK8SCall(GatewayUpdateProducerNativeK8S body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -20939,7 +21736,7 @@ public okhttp3.Call gatewayUpdateProducerHanaDbCall(GatewayUpdateProducerHanaDb Object localVarPostBody = body; // create path and map variables - String localVarPath = "/gateway-update-producer-hana"; + String localVarPath = "/gateway-update-producer-k8s"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -20968,15 +21765,15 @@ public okhttp3.Call gatewayUpdateProducerHanaDbCall(GatewayUpdateProducerHanaDb } @SuppressWarnings("rawtypes") - private okhttp3.Call gatewayUpdateProducerHanaDbValidateBeforeCall(GatewayUpdateProducerHanaDb body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call gatewayUpdateProducerNativeK8SValidateBeforeCall(GatewayUpdateProducerNativeK8S body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling gatewayUpdateProducerHanaDb(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling gatewayUpdateProducerNativeK8S(Async)"); } - okhttp3.Call localVarCall = gatewayUpdateProducerHanaDbCall(body, _callback); + okhttp3.Call localVarCall = gatewayUpdateProducerNativeK8SCall(body, _callback); return localVarCall; } @@ -20985,17 +21782,17 @@ private okhttp3.Call gatewayUpdateProducerHanaDbValidateBeforeCall(GatewayUpdate * * * @param body (required) - * @return GatewayUpdateProducerHanaDbOutput + * @return GatewayUpdateProducerNativeK8SOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayUpdateProducerHanaDbResponse wraps response body. -
201 gatewayUpdateProducerNativeK8SResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public GatewayUpdateProducerHanaDbOutput gatewayUpdateProducerHanaDb(GatewayUpdateProducerHanaDb body) throws ApiException { - ApiResponse localVarResp = gatewayUpdateProducerHanaDbWithHttpInfo(body); + public GatewayUpdateProducerNativeK8SOutput gatewayUpdateProducerNativeK8S(GatewayUpdateProducerNativeK8S body) throws ApiException { + ApiResponse localVarResp = gatewayUpdateProducerNativeK8SWithHttpInfo(body); return localVarResp.getData(); } @@ -21003,18 +21800,18 @@ public GatewayUpdateProducerHanaDbOutput gatewayUpdateProducerHanaDb(GatewayUpda * * * @param body (required) - * @return ApiResponse<GatewayUpdateProducerHanaDbOutput> + * @return ApiResponse<GatewayUpdateProducerNativeK8SOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayUpdateProducerHanaDbResponse wraps response body. -
201 gatewayUpdateProducerNativeK8SResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse gatewayUpdateProducerHanaDbWithHttpInfo(GatewayUpdateProducerHanaDb body) throws ApiException { - okhttp3.Call localVarCall = gatewayUpdateProducerHanaDbValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse gatewayUpdateProducerNativeK8SWithHttpInfo(GatewayUpdateProducerNativeK8S body) throws ApiException { + okhttp3.Call localVarCall = gatewayUpdateProducerNativeK8SValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -21028,19 +21825,19 @@ public ApiResponse gatewayUpdateProducerHanaD * @http.response.details - +
Status Code Description Response Headers
201 gatewayUpdateProducerHanaDbResponse wraps response body. -
201 gatewayUpdateProducerNativeK8SResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayUpdateProducerHanaDbAsync(GatewayUpdateProducerHanaDb body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayUpdateProducerNativeK8SAsync(GatewayUpdateProducerNativeK8S body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = gatewayUpdateProducerHanaDbValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = gatewayUpdateProducerNativeK8SValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for gatewayUpdateProducerLdap + * Build call for gatewayUpdateProducerOracleDb * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -21048,11 +21845,11 @@ public okhttp3.Call gatewayUpdateProducerHanaDbAsync(GatewayUpdateProducerHanaDb * @http.response.details - +
Status Code Description Response Headers
201 gatewayUpdateProducerLdapResponse wraps response body. -
201 gatewayUpdateProducerOracleDbResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayUpdateProducerLdapCall(GatewayUpdateProducerLdap body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayUpdateProducerOracleDbCall(GatewayUpdateProducerOracleDb body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -21070,7 +21867,7 @@ public okhttp3.Call gatewayUpdateProducerLdapCall(GatewayUpdateProducerLdap body Object localVarPostBody = body; // create path and map variables - String localVarPath = "/gateway-update-producer-ldap"; + String localVarPath = "/gateway-update-producer-oracle"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -21099,15 +21896,15 @@ public okhttp3.Call gatewayUpdateProducerLdapCall(GatewayUpdateProducerLdap body } @SuppressWarnings("rawtypes") - private okhttp3.Call gatewayUpdateProducerLdapValidateBeforeCall(GatewayUpdateProducerLdap body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call gatewayUpdateProducerOracleDbValidateBeforeCall(GatewayUpdateProducerOracleDb body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling gatewayUpdateProducerLdap(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling gatewayUpdateProducerOracleDb(Async)"); } - okhttp3.Call localVarCall = gatewayUpdateProducerLdapCall(body, _callback); + okhttp3.Call localVarCall = gatewayUpdateProducerOracleDbCall(body, _callback); return localVarCall; } @@ -21116,17 +21913,17 @@ private okhttp3.Call gatewayUpdateProducerLdapValidateBeforeCall(GatewayUpdatePr * * * @param body (required) - * @return GatewayUpdateProducerLdapOutput + * @return GatewayUpdateProducerOracleDbOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayUpdateProducerLdapResponse wraps response body. -
201 gatewayUpdateProducerOracleDbResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public GatewayUpdateProducerLdapOutput gatewayUpdateProducerLdap(GatewayUpdateProducerLdap body) throws ApiException { - ApiResponse localVarResp = gatewayUpdateProducerLdapWithHttpInfo(body); + public GatewayUpdateProducerOracleDbOutput gatewayUpdateProducerOracleDb(GatewayUpdateProducerOracleDb body) throws ApiException { + ApiResponse localVarResp = gatewayUpdateProducerOracleDbWithHttpInfo(body); return localVarResp.getData(); } @@ -21134,18 +21931,18 @@ public GatewayUpdateProducerLdapOutput gatewayUpdateProducerLdap(GatewayUpdatePr * * * @param body (required) - * @return ApiResponse<GatewayUpdateProducerLdapOutput> + * @return ApiResponse<GatewayUpdateProducerOracleDbOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayUpdateProducerLdapResponse wraps response body. -
201 gatewayUpdateProducerOracleDbResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse gatewayUpdateProducerLdapWithHttpInfo(GatewayUpdateProducerLdap body) throws ApiException { - okhttp3.Call localVarCall = gatewayUpdateProducerLdapValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse gatewayUpdateProducerOracleDbWithHttpInfo(GatewayUpdateProducerOracleDb body) throws ApiException { + okhttp3.Call localVarCall = gatewayUpdateProducerOracleDbValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -21159,19 +21956,19 @@ public ApiResponse gatewayUpdateProducerLdapWit * @http.response.details - +
Status Code Description Response Headers
201 gatewayUpdateProducerLdapResponse wraps response body. -
201 gatewayUpdateProducerOracleDbResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayUpdateProducerLdapAsync(GatewayUpdateProducerLdap body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayUpdateProducerOracleDbAsync(GatewayUpdateProducerOracleDb body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = gatewayUpdateProducerLdapValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = gatewayUpdateProducerOracleDbValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for gatewayUpdateProducerMSSQL + * Build call for gatewayUpdateProducerPing * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -21179,11 +21976,11 @@ public okhttp3.Call gatewayUpdateProducerLdapAsync(GatewayUpdateProducerLdap bod * @http.response.details - +
Status Code Description Response Headers
201 gatewayUpdateProducerMSSQLResponse wraps response body. -
201 gatewayUpdateProducerPingResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayUpdateProducerMSSQLCall(GatewayUpdateProducerMSSQL body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayUpdateProducerPingCall(GatewayUpdateProducerPing body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -21201,7 +21998,7 @@ public okhttp3.Call gatewayUpdateProducerMSSQLCall(GatewayUpdateProducerMSSQL bo Object localVarPostBody = body; // create path and map variables - String localVarPath = "/gateway-update-producer-mssql"; + String localVarPath = "/gateway-update-producer-ping"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -21230,15 +22027,15 @@ public okhttp3.Call gatewayUpdateProducerMSSQLCall(GatewayUpdateProducerMSSQL bo } @SuppressWarnings("rawtypes") - private okhttp3.Call gatewayUpdateProducerMSSQLValidateBeforeCall(GatewayUpdateProducerMSSQL body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call gatewayUpdateProducerPingValidateBeforeCall(GatewayUpdateProducerPing body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling gatewayUpdateProducerMSSQL(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling gatewayUpdateProducerPing(Async)"); } - okhttp3.Call localVarCall = gatewayUpdateProducerMSSQLCall(body, _callback); + okhttp3.Call localVarCall = gatewayUpdateProducerPingCall(body, _callback); return localVarCall; } @@ -21247,17 +22044,17 @@ private okhttp3.Call gatewayUpdateProducerMSSQLValidateBeforeCall(GatewayUpdateP * * * @param body (required) - * @return GatewayUpdateProducerMSSQLOutput + * @return GatewayUpdateProducerPingOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayUpdateProducerMSSQLResponse wraps response body. -
201 gatewayUpdateProducerPingResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public GatewayUpdateProducerMSSQLOutput gatewayUpdateProducerMSSQL(GatewayUpdateProducerMSSQL body) throws ApiException { - ApiResponse localVarResp = gatewayUpdateProducerMSSQLWithHttpInfo(body); + public GatewayUpdateProducerPingOutput gatewayUpdateProducerPing(GatewayUpdateProducerPing body) throws ApiException { + ApiResponse localVarResp = gatewayUpdateProducerPingWithHttpInfo(body); return localVarResp.getData(); } @@ -21265,18 +22062,18 @@ public GatewayUpdateProducerMSSQLOutput gatewayUpdateProducerMSSQL(GatewayUpdate * * * @param body (required) - * @return ApiResponse<GatewayUpdateProducerMSSQLOutput> + * @return ApiResponse<GatewayUpdateProducerPingOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayUpdateProducerMSSQLResponse wraps response body. -
201 gatewayUpdateProducerPingResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse gatewayUpdateProducerMSSQLWithHttpInfo(GatewayUpdateProducerMSSQL body) throws ApiException { - okhttp3.Call localVarCall = gatewayUpdateProducerMSSQLValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse gatewayUpdateProducerPingWithHttpInfo(GatewayUpdateProducerPing body) throws ApiException { + okhttp3.Call localVarCall = gatewayUpdateProducerPingValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -21290,19 +22087,19 @@ public ApiResponse gatewayUpdateProducerMSSQLW * @http.response.details - +
Status Code Description Response Headers
201 gatewayUpdateProducerMSSQLResponse wraps response body. -
201 gatewayUpdateProducerPingResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayUpdateProducerMSSQLAsync(GatewayUpdateProducerMSSQL body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayUpdateProducerPingAsync(GatewayUpdateProducerPing body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = gatewayUpdateProducerMSSQLValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = gatewayUpdateProducerPingValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for gatewayUpdateProducerMongo + * Build call for gatewayUpdateProducerPostgreSQL * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -21310,11 +22107,11 @@ public okhttp3.Call gatewayUpdateProducerMSSQLAsync(GatewayUpdateProducerMSSQL b * @http.response.details - +
Status Code Description Response Headers
201 gatewayUpdateProducerMongoResponse wraps response body. -
201 gatewayUpdateProducerPostgreSQLResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayUpdateProducerMongoCall(GatewayUpdateProducerMongo body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayUpdateProducerPostgreSQLCall(GatewayUpdateProducerPostgreSQL body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -21332,7 +22129,7 @@ public okhttp3.Call gatewayUpdateProducerMongoCall(GatewayUpdateProducerMongo bo Object localVarPostBody = body; // create path and map variables - String localVarPath = "/gateway-update-producer-mongo"; + String localVarPath = "/gateway-update-producer-postgresql"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -21361,15 +22158,15 @@ public okhttp3.Call gatewayUpdateProducerMongoCall(GatewayUpdateProducerMongo bo } @SuppressWarnings("rawtypes") - private okhttp3.Call gatewayUpdateProducerMongoValidateBeforeCall(GatewayUpdateProducerMongo body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call gatewayUpdateProducerPostgreSQLValidateBeforeCall(GatewayUpdateProducerPostgreSQL body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling gatewayUpdateProducerMongo(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling gatewayUpdateProducerPostgreSQL(Async)"); } - okhttp3.Call localVarCall = gatewayUpdateProducerMongoCall(body, _callback); + okhttp3.Call localVarCall = gatewayUpdateProducerPostgreSQLCall(body, _callback); return localVarCall; } @@ -21378,17 +22175,17 @@ private okhttp3.Call gatewayUpdateProducerMongoValidateBeforeCall(GatewayUpdateP * * * @param body (required) - * @return GatewayUpdateProducerMongoOutput + * @return GatewayUpdateProducerPostgreSQLOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayUpdateProducerMongoResponse wraps response body. -
201 gatewayUpdateProducerPostgreSQLResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public GatewayUpdateProducerMongoOutput gatewayUpdateProducerMongo(GatewayUpdateProducerMongo body) throws ApiException { - ApiResponse localVarResp = gatewayUpdateProducerMongoWithHttpInfo(body); + public GatewayUpdateProducerPostgreSQLOutput gatewayUpdateProducerPostgreSQL(GatewayUpdateProducerPostgreSQL body) throws ApiException { + ApiResponse localVarResp = gatewayUpdateProducerPostgreSQLWithHttpInfo(body); return localVarResp.getData(); } @@ -21396,18 +22193,18 @@ public GatewayUpdateProducerMongoOutput gatewayUpdateProducerMongo(GatewayUpdate * * * @param body (required) - * @return ApiResponse<GatewayUpdateProducerMongoOutput> + * @return ApiResponse<GatewayUpdateProducerPostgreSQLOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayUpdateProducerMongoResponse wraps response body. -
201 gatewayUpdateProducerPostgreSQLResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse gatewayUpdateProducerMongoWithHttpInfo(GatewayUpdateProducerMongo body) throws ApiException { - okhttp3.Call localVarCall = gatewayUpdateProducerMongoValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse gatewayUpdateProducerPostgreSQLWithHttpInfo(GatewayUpdateProducerPostgreSQL body) throws ApiException { + okhttp3.Call localVarCall = gatewayUpdateProducerPostgreSQLValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -21421,19 +22218,19 @@ public ApiResponse gatewayUpdateProducerMongoW * @http.response.details - +
Status Code Description Response Headers
201 gatewayUpdateProducerMongoResponse wraps response body. -
201 gatewayUpdateProducerPostgreSQLResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayUpdateProducerMongoAsync(GatewayUpdateProducerMongo body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayUpdateProducerPostgreSQLAsync(GatewayUpdateProducerPostgreSQL body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = gatewayUpdateProducerMongoValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = gatewayUpdateProducerPostgreSQLValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for gatewayUpdateProducerMySQL + * Build call for gatewayUpdateProducerRabbitMQ * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -21441,11 +22238,11 @@ public okhttp3.Call gatewayUpdateProducerMongoAsync(GatewayUpdateProducerMongo b * @http.response.details - +
Status Code Description Response Headers
201 gatewayUpdateProducerMySQLResponse wraps response body. -
201 gatewayUpdateProducerRabbitMQResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayUpdateProducerMySQLCall(GatewayUpdateProducerMySQL body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayUpdateProducerRabbitMQCall(GatewayUpdateProducerRabbitMQ body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -21463,7 +22260,7 @@ public okhttp3.Call gatewayUpdateProducerMySQLCall(GatewayUpdateProducerMySQL bo Object localVarPostBody = body; // create path and map variables - String localVarPath = "/gateway-update-producer-mysql"; + String localVarPath = "/gateway-update-producer-rabbitmq"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -21492,15 +22289,15 @@ public okhttp3.Call gatewayUpdateProducerMySQLCall(GatewayUpdateProducerMySQL bo } @SuppressWarnings("rawtypes") - private okhttp3.Call gatewayUpdateProducerMySQLValidateBeforeCall(GatewayUpdateProducerMySQL body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call gatewayUpdateProducerRabbitMQValidateBeforeCall(GatewayUpdateProducerRabbitMQ body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling gatewayUpdateProducerMySQL(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling gatewayUpdateProducerRabbitMQ(Async)"); } - okhttp3.Call localVarCall = gatewayUpdateProducerMySQLCall(body, _callback); + okhttp3.Call localVarCall = gatewayUpdateProducerRabbitMQCall(body, _callback); return localVarCall; } @@ -21509,17 +22306,17 @@ private okhttp3.Call gatewayUpdateProducerMySQLValidateBeforeCall(GatewayUpdateP * * * @param body (required) - * @return GatewayUpdateProducerMySQLOutput + * @return GatewayUpdateProducerRabbitMQOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayUpdateProducerMySQLResponse wraps response body. -
201 gatewayUpdateProducerRabbitMQResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public GatewayUpdateProducerMySQLOutput gatewayUpdateProducerMySQL(GatewayUpdateProducerMySQL body) throws ApiException { - ApiResponse localVarResp = gatewayUpdateProducerMySQLWithHttpInfo(body); + public GatewayUpdateProducerRabbitMQOutput gatewayUpdateProducerRabbitMQ(GatewayUpdateProducerRabbitMQ body) throws ApiException { + ApiResponse localVarResp = gatewayUpdateProducerRabbitMQWithHttpInfo(body); return localVarResp.getData(); } @@ -21527,18 +22324,18 @@ public GatewayUpdateProducerMySQLOutput gatewayUpdateProducerMySQL(GatewayUpdate * * * @param body (required) - * @return ApiResponse<GatewayUpdateProducerMySQLOutput> + * @return ApiResponse<GatewayUpdateProducerRabbitMQOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayUpdateProducerMySQLResponse wraps response body. -
201 gatewayUpdateProducerRabbitMQResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse gatewayUpdateProducerMySQLWithHttpInfo(GatewayUpdateProducerMySQL body) throws ApiException { - okhttp3.Call localVarCall = gatewayUpdateProducerMySQLValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse gatewayUpdateProducerRabbitMQWithHttpInfo(GatewayUpdateProducerRabbitMQ body) throws ApiException { + okhttp3.Call localVarCall = gatewayUpdateProducerRabbitMQValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -21552,19 +22349,19 @@ public ApiResponse gatewayUpdateProducerMySQLW * @http.response.details - +
Status Code Description Response Headers
201 gatewayUpdateProducerMySQLResponse wraps response body. -
201 gatewayUpdateProducerRabbitMQResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayUpdateProducerMySQLAsync(GatewayUpdateProducerMySQL body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayUpdateProducerRabbitMQAsync(GatewayUpdateProducerRabbitMQ body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = gatewayUpdateProducerMySQLValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = gatewayUpdateProducerRabbitMQValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for gatewayUpdateProducerNativeK8S + * Build call for gatewayUpdateProducerRdp * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -21572,11 +22369,11 @@ public okhttp3.Call gatewayUpdateProducerMySQLAsync(GatewayUpdateProducerMySQL b * @http.response.details - +
Status Code Description Response Headers
201 gatewayUpdateProducerNativeK8SResponse wraps response body. -
201 gatewayUpdateProducerRdpResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayUpdateProducerNativeK8SCall(GatewayUpdateProducerNativeK8S body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayUpdateProducerRdpCall(GatewayUpdateProducerRdp body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -21594,7 +22391,7 @@ public okhttp3.Call gatewayUpdateProducerNativeK8SCall(GatewayUpdateProducerNati Object localVarPostBody = body; // create path and map variables - String localVarPath = "/gateway-update-producer-k8s"; + String localVarPath = "/gateway-update-producer-rdp"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -21623,15 +22420,15 @@ public okhttp3.Call gatewayUpdateProducerNativeK8SCall(GatewayUpdateProducerNati } @SuppressWarnings("rawtypes") - private okhttp3.Call gatewayUpdateProducerNativeK8SValidateBeforeCall(GatewayUpdateProducerNativeK8S body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call gatewayUpdateProducerRdpValidateBeforeCall(GatewayUpdateProducerRdp body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling gatewayUpdateProducerNativeK8S(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling gatewayUpdateProducerRdp(Async)"); } - okhttp3.Call localVarCall = gatewayUpdateProducerNativeK8SCall(body, _callback); + okhttp3.Call localVarCall = gatewayUpdateProducerRdpCall(body, _callback); return localVarCall; } @@ -21640,17 +22437,17 @@ private okhttp3.Call gatewayUpdateProducerNativeK8SValidateBeforeCall(GatewayUpd * * * @param body (required) - * @return GatewayUpdateProducerNativeK8SOutput + * @return GatewayUpdateProducerRdpOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayUpdateProducerNativeK8SResponse wraps response body. -
201 gatewayUpdateProducerRdpResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public GatewayUpdateProducerNativeK8SOutput gatewayUpdateProducerNativeK8S(GatewayUpdateProducerNativeK8S body) throws ApiException { - ApiResponse localVarResp = gatewayUpdateProducerNativeK8SWithHttpInfo(body); + public GatewayUpdateProducerRdpOutput gatewayUpdateProducerRdp(GatewayUpdateProducerRdp body) throws ApiException { + ApiResponse localVarResp = gatewayUpdateProducerRdpWithHttpInfo(body); return localVarResp.getData(); } @@ -21658,18 +22455,18 @@ public GatewayUpdateProducerNativeK8SOutput gatewayUpdateProducerNativeK8S(Gatew * * * @param body (required) - * @return ApiResponse<GatewayUpdateProducerNativeK8SOutput> + * @return ApiResponse<GatewayUpdateProducerRdpOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayUpdateProducerNativeK8SResponse wraps response body. -
201 gatewayUpdateProducerRdpResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse gatewayUpdateProducerNativeK8SWithHttpInfo(GatewayUpdateProducerNativeK8S body) throws ApiException { - okhttp3.Call localVarCall = gatewayUpdateProducerNativeK8SValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse gatewayUpdateProducerRdpWithHttpInfo(GatewayUpdateProducerRdp body) throws ApiException { + okhttp3.Call localVarCall = gatewayUpdateProducerRdpValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -21683,19 +22480,19 @@ public ApiResponse gatewayUpdateProducerNa * @http.response.details - +
Status Code Description Response Headers
201 gatewayUpdateProducerNativeK8SResponse wraps response body. -
201 gatewayUpdateProducerRdpResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayUpdateProducerNativeK8SAsync(GatewayUpdateProducerNativeK8S body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayUpdateProducerRdpAsync(GatewayUpdateProducerRdp body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = gatewayUpdateProducerNativeK8SValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = gatewayUpdateProducerRdpValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for gatewayUpdateProducerOracleDb + * Build call for gatewayUpdateProducerRedis * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -21703,11 +22500,11 @@ public okhttp3.Call gatewayUpdateProducerNativeK8SAsync(GatewayUpdateProducerNat * @http.response.details - +
Status Code Description Response Headers
201 gatewayUpdateProducerOracleDbResponse wraps response body. -
201 gatewayUpdateProducerRedisResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayUpdateProducerOracleDbCall(GatewayUpdateProducerOracleDb body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayUpdateProducerRedisCall(GatewayUpdateProducerRedis body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -21725,7 +22522,7 @@ public okhttp3.Call gatewayUpdateProducerOracleDbCall(GatewayUpdateProducerOracl Object localVarPostBody = body; // create path and map variables - String localVarPath = "/gateway-update-producer-oracle"; + String localVarPath = "/gateway-update-producer-redis"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -21754,15 +22551,15 @@ public okhttp3.Call gatewayUpdateProducerOracleDbCall(GatewayUpdateProducerOracl } @SuppressWarnings("rawtypes") - private okhttp3.Call gatewayUpdateProducerOracleDbValidateBeforeCall(GatewayUpdateProducerOracleDb body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call gatewayUpdateProducerRedisValidateBeforeCall(GatewayUpdateProducerRedis body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling gatewayUpdateProducerOracleDb(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling gatewayUpdateProducerRedis(Async)"); } - okhttp3.Call localVarCall = gatewayUpdateProducerOracleDbCall(body, _callback); + okhttp3.Call localVarCall = gatewayUpdateProducerRedisCall(body, _callback); return localVarCall; } @@ -21771,17 +22568,17 @@ private okhttp3.Call gatewayUpdateProducerOracleDbValidateBeforeCall(GatewayUpda * * * @param body (required) - * @return GatewayUpdateProducerOracleDbOutput + * @return GatewayUpdateProducerRedisOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayUpdateProducerOracleDbResponse wraps response body. -
201 gatewayUpdateProducerRedisResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public GatewayUpdateProducerOracleDbOutput gatewayUpdateProducerOracleDb(GatewayUpdateProducerOracleDb body) throws ApiException { - ApiResponse localVarResp = gatewayUpdateProducerOracleDbWithHttpInfo(body); + public GatewayUpdateProducerRedisOutput gatewayUpdateProducerRedis(GatewayUpdateProducerRedis body) throws ApiException { + ApiResponse localVarResp = gatewayUpdateProducerRedisWithHttpInfo(body); return localVarResp.getData(); } @@ -21789,18 +22586,18 @@ public GatewayUpdateProducerOracleDbOutput gatewayUpdateProducerOracleDb(Gateway * * * @param body (required) - * @return ApiResponse<GatewayUpdateProducerOracleDbOutput> + * @return ApiResponse<GatewayUpdateProducerRedisOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayUpdateProducerOracleDbResponse wraps response body. -
201 gatewayUpdateProducerRedisResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse gatewayUpdateProducerOracleDbWithHttpInfo(GatewayUpdateProducerOracleDb body) throws ApiException { - okhttp3.Call localVarCall = gatewayUpdateProducerOracleDbValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse gatewayUpdateProducerRedisWithHttpInfo(GatewayUpdateProducerRedis body) throws ApiException { + okhttp3.Call localVarCall = gatewayUpdateProducerRedisValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -21814,19 +22611,19 @@ public ApiResponse gatewayUpdateProducerOra * @http.response.details - +
Status Code Description Response Headers
201 gatewayUpdateProducerOracleDbResponse wraps response body. -
201 gatewayUpdateProducerRedisResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayUpdateProducerOracleDbAsync(GatewayUpdateProducerOracleDb body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayUpdateProducerRedisAsync(GatewayUpdateProducerRedis body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = gatewayUpdateProducerOracleDbValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = gatewayUpdateProducerRedisValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for gatewayUpdateProducerPing + * Build call for gatewayUpdateProducerRedshift * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -21834,11 +22631,11 @@ public okhttp3.Call gatewayUpdateProducerOracleDbAsync(GatewayUpdateProducerOrac * @http.response.details - +
Status Code Description Response Headers
201 gatewayUpdateProducerPingResponse wraps response body. -
201 gatewayUpdateProducerRedshiftResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayUpdateProducerPingCall(GatewayUpdateProducerPing body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayUpdateProducerRedshiftCall(GatewayUpdateProducerRedshift body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -21856,7 +22653,7 @@ public okhttp3.Call gatewayUpdateProducerPingCall(GatewayUpdateProducerPing body Object localVarPostBody = body; // create path and map variables - String localVarPath = "/gateway-update-producer-ping"; + String localVarPath = "/gateway-update-producer-redshift"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -21885,15 +22682,15 @@ public okhttp3.Call gatewayUpdateProducerPingCall(GatewayUpdateProducerPing body } @SuppressWarnings("rawtypes") - private okhttp3.Call gatewayUpdateProducerPingValidateBeforeCall(GatewayUpdateProducerPing body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call gatewayUpdateProducerRedshiftValidateBeforeCall(GatewayUpdateProducerRedshift body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling gatewayUpdateProducerPing(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling gatewayUpdateProducerRedshift(Async)"); } - okhttp3.Call localVarCall = gatewayUpdateProducerPingCall(body, _callback); + okhttp3.Call localVarCall = gatewayUpdateProducerRedshiftCall(body, _callback); return localVarCall; } @@ -21902,17 +22699,17 @@ private okhttp3.Call gatewayUpdateProducerPingValidateBeforeCall(GatewayUpdatePr * * * @param body (required) - * @return GatewayUpdateProducerPingOutput + * @return GatewayUpdateProducerRedshiftOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayUpdateProducerPingResponse wraps response body. -
201 gatewayUpdateProducerRedshiftResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public GatewayUpdateProducerPingOutput gatewayUpdateProducerPing(GatewayUpdateProducerPing body) throws ApiException { - ApiResponse localVarResp = gatewayUpdateProducerPingWithHttpInfo(body); + public GatewayUpdateProducerRedshiftOutput gatewayUpdateProducerRedshift(GatewayUpdateProducerRedshift body) throws ApiException { + ApiResponse localVarResp = gatewayUpdateProducerRedshiftWithHttpInfo(body); return localVarResp.getData(); } @@ -21920,18 +22717,18 @@ public GatewayUpdateProducerPingOutput gatewayUpdateProducerPing(GatewayUpdatePr * * * @param body (required) - * @return ApiResponse<GatewayUpdateProducerPingOutput> + * @return ApiResponse<GatewayUpdateProducerRedshiftOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayUpdateProducerPingResponse wraps response body. -
201 gatewayUpdateProducerRedshiftResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse gatewayUpdateProducerPingWithHttpInfo(GatewayUpdateProducerPing body) throws ApiException { - okhttp3.Call localVarCall = gatewayUpdateProducerPingValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse gatewayUpdateProducerRedshiftWithHttpInfo(GatewayUpdateProducerRedshift body) throws ApiException { + okhttp3.Call localVarCall = gatewayUpdateProducerRedshiftValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -21945,19 +22742,19 @@ public ApiResponse gatewayUpdateProducerPingWit * @http.response.details - +
Status Code Description Response Headers
201 gatewayUpdateProducerPingResponse wraps response body. -
201 gatewayUpdateProducerRedshiftResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayUpdateProducerPingAsync(GatewayUpdateProducerPing body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayUpdateProducerRedshiftAsync(GatewayUpdateProducerRedshift body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = gatewayUpdateProducerPingValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = gatewayUpdateProducerRedshiftValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for gatewayUpdateProducerPostgreSQL + * Build call for gatewayUpdateProducerSnowflake * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -21965,11 +22762,11 @@ public okhttp3.Call gatewayUpdateProducerPingAsync(GatewayUpdateProducerPing bod * @http.response.details - +
Status Code Description Response Headers
201 gatewayUpdateProducerPostgreSQLResponse wraps response body. -
201 gatewayUpdateProducerSnowflakeResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayUpdateProducerPostgreSQLCall(GatewayUpdateProducerPostgreSQL body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayUpdateProducerSnowflakeCall(GatewayUpdateProducerSnowflake body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -21987,7 +22784,7 @@ public okhttp3.Call gatewayUpdateProducerPostgreSQLCall(GatewayUpdateProducerPos Object localVarPostBody = body; // create path and map variables - String localVarPath = "/gateway-update-producer-postgresql"; + String localVarPath = "/gateway-update-producer-snowflake"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -22016,15 +22813,15 @@ public okhttp3.Call gatewayUpdateProducerPostgreSQLCall(GatewayUpdateProducerPos } @SuppressWarnings("rawtypes") - private okhttp3.Call gatewayUpdateProducerPostgreSQLValidateBeforeCall(GatewayUpdateProducerPostgreSQL body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call gatewayUpdateProducerSnowflakeValidateBeforeCall(GatewayUpdateProducerSnowflake body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling gatewayUpdateProducerPostgreSQL(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling gatewayUpdateProducerSnowflake(Async)"); } - okhttp3.Call localVarCall = gatewayUpdateProducerPostgreSQLCall(body, _callback); + okhttp3.Call localVarCall = gatewayUpdateProducerSnowflakeCall(body, _callback); return localVarCall; } @@ -22033,17 +22830,17 @@ private okhttp3.Call gatewayUpdateProducerPostgreSQLValidateBeforeCall(GatewayUp * * * @param body (required) - * @return GatewayUpdateProducerPostgreSQLOutput + * @return GatewayUpdateProducerSnowflakeOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayUpdateProducerPostgreSQLResponse wraps response body. -
201 gatewayUpdateProducerSnowflakeResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public GatewayUpdateProducerPostgreSQLOutput gatewayUpdateProducerPostgreSQL(GatewayUpdateProducerPostgreSQL body) throws ApiException { - ApiResponse localVarResp = gatewayUpdateProducerPostgreSQLWithHttpInfo(body); + public GatewayUpdateProducerSnowflakeOutput gatewayUpdateProducerSnowflake(GatewayUpdateProducerSnowflake body) throws ApiException { + ApiResponse localVarResp = gatewayUpdateProducerSnowflakeWithHttpInfo(body); return localVarResp.getData(); } @@ -22051,18 +22848,18 @@ public GatewayUpdateProducerPostgreSQLOutput gatewayUpdateProducerPostgreSQL(Gat * * * @param body (required) - * @return ApiResponse<GatewayUpdateProducerPostgreSQLOutput> + * @return ApiResponse<GatewayUpdateProducerSnowflakeOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayUpdateProducerPostgreSQLResponse wraps response body. -
201 gatewayUpdateProducerSnowflakeResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse gatewayUpdateProducerPostgreSQLWithHttpInfo(GatewayUpdateProducerPostgreSQL body) throws ApiException { - okhttp3.Call localVarCall = gatewayUpdateProducerPostgreSQLValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse gatewayUpdateProducerSnowflakeWithHttpInfo(GatewayUpdateProducerSnowflake body) throws ApiException { + okhttp3.Call localVarCall = gatewayUpdateProducerSnowflakeValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -22076,19 +22873,19 @@ public ApiResponse gatewayUpdateProducerP * @http.response.details - +
Status Code Description Response Headers
201 gatewayUpdateProducerPostgreSQLResponse wraps response body. -
201 gatewayUpdateProducerSnowflakeResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayUpdateProducerPostgreSQLAsync(GatewayUpdateProducerPostgreSQL body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayUpdateProducerSnowflakeAsync(GatewayUpdateProducerSnowflake body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = gatewayUpdateProducerPostgreSQLValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = gatewayUpdateProducerSnowflakeValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for gatewayUpdateProducerRabbitMQ + * Build call for gatewayUpdateTlsCert * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -22096,11 +22893,11 @@ public okhttp3.Call gatewayUpdateProducerPostgreSQLAsync(GatewayUpdateProducerPo * @http.response.details - +
Status Code Description Response Headers
201 gatewayUpdateProducerRabbitMQResponse wraps response body. -
201 GatewayUpdateTlsCertResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayUpdateProducerRabbitMQCall(GatewayUpdateProducerRabbitMQ body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayUpdateTlsCertCall(GatewayUpdateTlsCert body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -22118,7 +22915,7 @@ public okhttp3.Call gatewayUpdateProducerRabbitMQCall(GatewayUpdateProducerRabbi Object localVarPostBody = body; // create path and map variables - String localVarPath = "/gateway-update-producer-rabbitmq"; + String localVarPath = "/gateway-update-tls-cert"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -22147,15 +22944,15 @@ public okhttp3.Call gatewayUpdateProducerRabbitMQCall(GatewayUpdateProducerRabbi } @SuppressWarnings("rawtypes") - private okhttp3.Call gatewayUpdateProducerRabbitMQValidateBeforeCall(GatewayUpdateProducerRabbitMQ body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call gatewayUpdateTlsCertValidateBeforeCall(GatewayUpdateTlsCert body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling gatewayUpdateProducerRabbitMQ(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling gatewayUpdateTlsCert(Async)"); } - okhttp3.Call localVarCall = gatewayUpdateProducerRabbitMQCall(body, _callback); + okhttp3.Call localVarCall = gatewayUpdateTlsCertCall(body, _callback); return localVarCall; } @@ -22164,17 +22961,17 @@ private okhttp3.Call gatewayUpdateProducerRabbitMQValidateBeforeCall(GatewayUpda * * * @param body (required) - * @return GatewayUpdateProducerRabbitMQOutput + * @return GatewayUpdateTlsCertOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayUpdateProducerRabbitMQResponse wraps response body. -
201 GatewayUpdateTlsCertResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public GatewayUpdateProducerRabbitMQOutput gatewayUpdateProducerRabbitMQ(GatewayUpdateProducerRabbitMQ body) throws ApiException { - ApiResponse localVarResp = gatewayUpdateProducerRabbitMQWithHttpInfo(body); + public GatewayUpdateTlsCertOutput gatewayUpdateTlsCert(GatewayUpdateTlsCert body) throws ApiException { + ApiResponse localVarResp = gatewayUpdateTlsCertWithHttpInfo(body); return localVarResp.getData(); } @@ -22182,18 +22979,18 @@ public GatewayUpdateProducerRabbitMQOutput gatewayUpdateProducerRabbitMQ(Gateway * * * @param body (required) - * @return ApiResponse<GatewayUpdateProducerRabbitMQOutput> + * @return ApiResponse<GatewayUpdateTlsCertOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayUpdateProducerRabbitMQResponse wraps response body. -
201 GatewayUpdateTlsCertResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse gatewayUpdateProducerRabbitMQWithHttpInfo(GatewayUpdateProducerRabbitMQ body) throws ApiException { - okhttp3.Call localVarCall = gatewayUpdateProducerRabbitMQValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse gatewayUpdateTlsCertWithHttpInfo(GatewayUpdateTlsCert body) throws ApiException { + okhttp3.Call localVarCall = gatewayUpdateTlsCertValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -22207,19 +23004,19 @@ public ApiResponse gatewayUpdateProducerRab * @http.response.details - +
Status Code Description Response Headers
201 gatewayUpdateProducerRabbitMQResponse wraps response body. -
201 GatewayUpdateTlsCertResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayUpdateProducerRabbitMQAsync(GatewayUpdateProducerRabbitMQ body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayUpdateTlsCertAsync(GatewayUpdateTlsCert body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = gatewayUpdateProducerRabbitMQValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = gatewayUpdateTlsCertValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for gatewayUpdateProducerRdp + * Build call for gatewayUpdateTmpUsers * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -22227,11 +23024,11 @@ public okhttp3.Call gatewayUpdateProducerRabbitMQAsync(GatewayUpdateProducerRabb * @http.response.details - +
Status Code Description Response Headers
201 gatewayUpdateProducerRdpResponse wraps response body. -
200 gatewayUpdateTmpUsersResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayUpdateProducerRdpCall(GatewayUpdateProducerRdp body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayUpdateTmpUsersCall(GatewayUpdateTmpUsers body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -22249,7 +23046,7 @@ public okhttp3.Call gatewayUpdateProducerRdpCall(GatewayUpdateProducerRdp body, Object localVarPostBody = body; // create path and map variables - String localVarPath = "/gateway-update-producer-rdp"; + String localVarPath = "/gateway-update-producer-tmp-creds"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -22278,15 +23075,15 @@ public okhttp3.Call gatewayUpdateProducerRdpCall(GatewayUpdateProducerRdp body, } @SuppressWarnings("rawtypes") - private okhttp3.Call gatewayUpdateProducerRdpValidateBeforeCall(GatewayUpdateProducerRdp body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call gatewayUpdateTmpUsersValidateBeforeCall(GatewayUpdateTmpUsers body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling gatewayUpdateProducerRdp(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling gatewayUpdateTmpUsers(Async)"); } - okhttp3.Call localVarCall = gatewayUpdateProducerRdpCall(body, _callback); + okhttp3.Call localVarCall = gatewayUpdateTmpUsersCall(body, _callback); return localVarCall; } @@ -22295,37 +23092,34 @@ private okhttp3.Call gatewayUpdateProducerRdpValidateBeforeCall(GatewayUpdatePro * * * @param body (required) - * @return GatewayUpdateProducerRdpOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayUpdateProducerRdpResponse wraps response body. -
200 gatewayUpdateTmpUsersResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public GatewayUpdateProducerRdpOutput gatewayUpdateProducerRdp(GatewayUpdateProducerRdp body) throws ApiException { - ApiResponse localVarResp = gatewayUpdateProducerRdpWithHttpInfo(body); - return localVarResp.getData(); + public void gatewayUpdateTmpUsers(GatewayUpdateTmpUsers body) throws ApiException { + gatewayUpdateTmpUsersWithHttpInfo(body); } /** * * * @param body (required) - * @return ApiResponse<GatewayUpdateProducerRdpOutput> + * @return ApiResponse<Void> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayUpdateProducerRdpResponse wraps response body. -
200 gatewayUpdateTmpUsersResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse gatewayUpdateProducerRdpWithHttpInfo(GatewayUpdateProducerRdp body) throws ApiException { - okhttp3.Call localVarCall = gatewayUpdateProducerRdpValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); - return localVarApiClient.execute(localVarCall, localVarReturnType); + public ApiResponse gatewayUpdateTmpUsersWithHttpInfo(GatewayUpdateTmpUsers body) throws ApiException { + okhttp3.Call localVarCall = gatewayUpdateTmpUsersValidateBeforeCall(body, null); + return localVarApiClient.execute(localVarCall); } /** @@ -22338,19 +23132,18 @@ public ApiResponse gatewayUpdateProducerRdpWithH * @http.response.details - +
Status Code Description Response Headers
201 gatewayUpdateProducerRdpResponse wraps response body. -
200 gatewayUpdateTmpUsersResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayUpdateProducerRdpAsync(GatewayUpdateProducerRdp body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call gatewayUpdateTmpUsersAsync(GatewayUpdateTmpUsers body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = gatewayUpdateProducerRdpValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); - localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); + okhttp3.Call localVarCall = gatewayUpdateTmpUsersValidateBeforeCall(body, _callback); + localVarApiClient.executeAsync(localVarCall, _callback); return localVarCall; } /** - * Build call for gatewayUpdateProducerRedis + * Build call for generateCsr * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -22358,11 +23151,11 @@ public okhttp3.Call gatewayUpdateProducerRdpAsync(GatewayUpdateProducerRdp body, * @http.response.details - +
Status Code Description Response Headers
201 gatewayUpdateProducerRedisResponse wraps response body. -
200 generateCsrResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayUpdateProducerRedisCall(GatewayUpdateProducerRedis body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call generateCsrCall(GenerateCsr body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -22380,7 +23173,7 @@ public okhttp3.Call gatewayUpdateProducerRedisCall(GatewayUpdateProducerRedis bo Object localVarPostBody = body; // create path and map variables - String localVarPath = "/gateway-update-producer-redis"; + String localVarPath = "/generate-csr"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -22409,15 +23202,15 @@ public okhttp3.Call gatewayUpdateProducerRedisCall(GatewayUpdateProducerRedis bo } @SuppressWarnings("rawtypes") - private okhttp3.Call gatewayUpdateProducerRedisValidateBeforeCall(GatewayUpdateProducerRedis body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call generateCsrValidateBeforeCall(GenerateCsr body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling gatewayUpdateProducerRedis(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling generateCsr(Async)"); } - okhttp3.Call localVarCall = gatewayUpdateProducerRedisCall(body, _callback); + okhttp3.Call localVarCall = generateCsrCall(body, _callback); return localVarCall; } @@ -22426,17 +23219,17 @@ private okhttp3.Call gatewayUpdateProducerRedisValidateBeforeCall(GatewayUpdateP * * * @param body (required) - * @return GatewayUpdateProducerRedisOutput + * @return GenerateCsrOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayUpdateProducerRedisResponse wraps response body. -
200 generateCsrResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public GatewayUpdateProducerRedisOutput gatewayUpdateProducerRedis(GatewayUpdateProducerRedis body) throws ApiException { - ApiResponse localVarResp = gatewayUpdateProducerRedisWithHttpInfo(body); + public GenerateCsrOutput generateCsr(GenerateCsr body) throws ApiException { + ApiResponse localVarResp = generateCsrWithHttpInfo(body); return localVarResp.getData(); } @@ -22444,18 +23237,18 @@ public GatewayUpdateProducerRedisOutput gatewayUpdateProducerRedis(GatewayUpdate * * * @param body (required) - * @return ApiResponse<GatewayUpdateProducerRedisOutput> + * @return ApiResponse<GenerateCsrOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayUpdateProducerRedisResponse wraps response body. -
200 generateCsrResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse gatewayUpdateProducerRedisWithHttpInfo(GatewayUpdateProducerRedis body) throws ApiException { - okhttp3.Call localVarCall = gatewayUpdateProducerRedisValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse generateCsrWithHttpInfo(GenerateCsr body) throws ApiException { + okhttp3.Call localVarCall = generateCsrValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -22469,31 +23262,30 @@ public ApiResponse gatewayUpdateProducerRedisW * @http.response.details - +
Status Code Description Response Headers
201 gatewayUpdateProducerRedisResponse wraps response body. -
200 generateCsrResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayUpdateProducerRedisAsync(GatewayUpdateProducerRedis body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call generateCsrAsync(GenerateCsr body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = gatewayUpdateProducerRedisValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = generateCsrValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for gatewayUpdateProducerRedshift - * @param body (required) + * Build call for getAccountLogo * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object * @http.response.details - +
Status Code Description Response Headers
201 gatewayUpdateProducerRedshiftResponse wraps response body. -
200 getAccountLogoResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayUpdateProducerRedshiftCall(GatewayUpdateProducerRedshift body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getAccountLogoCall(final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -22508,10 +23300,10 @@ public okhttp3.Call gatewayUpdateProducerRedshiftCall(GatewayUpdateProducerRedsh basePath = null; } - Object localVarPostBody = body; + Object localVarPostBody = null; // create path and map variables - String localVarPath = "/gateway-update-producer-redshift"; + String localVarPath = "/get-account-logo"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -22528,7 +23320,7 @@ public okhttp3.Call gatewayUpdateProducerRedshiftCall(GatewayUpdateProducerRedsh } final String[] localVarContentTypes = { - "application/json" + }; final String localVarContentType = localVarApiClient.selectHeaderContentType(localVarContentTypes); if (localVarContentType != null) { @@ -22540,15 +23332,10 @@ public okhttp3.Call gatewayUpdateProducerRedshiftCall(GatewayUpdateProducerRedsh } @SuppressWarnings("rawtypes") - private okhttp3.Call gatewayUpdateProducerRedshiftValidateBeforeCall(GatewayUpdateProducerRedshift body, final ApiCallback _callback) throws ApiException { - - // verify the required parameter 'body' is set - if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling gatewayUpdateProducerRedshift(Async)"); - } + private okhttp3.Call getAccountLogoValidateBeforeCall(final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = gatewayUpdateProducerRedshiftCall(body, _callback); + okhttp3.Call localVarCall = getAccountLogoCall(_callback); return localVarCall; } @@ -22556,63 +23343,60 @@ private okhttp3.Call gatewayUpdateProducerRedshiftValidateBeforeCall(GatewayUpda /** * * - * @param body (required) - * @return GatewayUpdateProducerRedshiftOutput + * @return Map<String, String> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayUpdateProducerRedshiftResponse wraps response body. -
200 getAccountLogoResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public GatewayUpdateProducerRedshiftOutput gatewayUpdateProducerRedshift(GatewayUpdateProducerRedshift body) throws ApiException { - ApiResponse localVarResp = gatewayUpdateProducerRedshiftWithHttpInfo(body); + public Map getAccountLogo() throws ApiException { + ApiResponse> localVarResp = getAccountLogoWithHttpInfo(); return localVarResp.getData(); } /** * * - * @param body (required) - * @return ApiResponse<GatewayUpdateProducerRedshiftOutput> + * @return ApiResponse<Map<String, String>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayUpdateProducerRedshiftResponse wraps response body. -
200 getAccountLogoResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse gatewayUpdateProducerRedshiftWithHttpInfo(GatewayUpdateProducerRedshift body) throws ApiException { - okhttp3.Call localVarCall = gatewayUpdateProducerRedshiftValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse> getAccountLogoWithHttpInfo() throws ApiException { + okhttp3.Call localVarCall = getAccountLogoValidateBeforeCall(null); + Type localVarReturnType = new TypeToken>(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } /** * (asynchronously) * - * @param body (required) * @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 - +
Status Code Description Response Headers
201 gatewayUpdateProducerRedshiftResponse wraps response body. -
200 getAccountLogoResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayUpdateProducerRedshiftAsync(GatewayUpdateProducerRedshift body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getAccountLogoAsync(final ApiCallback> _callback) throws ApiException { - okhttp3.Call localVarCall = gatewayUpdateProducerRedshiftValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = getAccountLogoValidateBeforeCall(_callback); + Type localVarReturnType = new TypeToken>(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for gatewayUpdateProducerSnowflake + * Build call for getAccountSettings * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -22620,11 +23404,11 @@ public okhttp3.Call gatewayUpdateProducerRedshiftAsync(GatewayUpdateProducerReds * @http.response.details - +
Status Code Description Response Headers
201 gatewayUpdateProducerSnowflakeResponse wraps response body. -
200 getAccountSettingsResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayUpdateProducerSnowflakeCall(GatewayUpdateProducerSnowflake body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getAccountSettingsCall(GetAccountSettings body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -22642,7 +23426,7 @@ public okhttp3.Call gatewayUpdateProducerSnowflakeCall(GatewayUpdateProducerSnow Object localVarPostBody = body; // create path and map variables - String localVarPath = "/gateway-update-producer-snowflake"; + String localVarPath = "/get-account-settings"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -22671,15 +23455,15 @@ public okhttp3.Call gatewayUpdateProducerSnowflakeCall(GatewayUpdateProducerSnow } @SuppressWarnings("rawtypes") - private okhttp3.Call gatewayUpdateProducerSnowflakeValidateBeforeCall(GatewayUpdateProducerSnowflake body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call getAccountSettingsValidateBeforeCall(GetAccountSettings body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling gatewayUpdateProducerSnowflake(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling getAccountSettings(Async)"); } - okhttp3.Call localVarCall = gatewayUpdateProducerSnowflakeCall(body, _callback); + okhttp3.Call localVarCall = getAccountSettingsCall(body, _callback); return localVarCall; } @@ -22688,17 +23472,17 @@ private okhttp3.Call gatewayUpdateProducerSnowflakeValidateBeforeCall(GatewayUpd * * * @param body (required) - * @return GatewayUpdateProducerSnowflakeOutput + * @return GetAccountSettingsCommandOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayUpdateProducerSnowflakeResponse wraps response body. -
200 getAccountSettingsResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public GatewayUpdateProducerSnowflakeOutput gatewayUpdateProducerSnowflake(GatewayUpdateProducerSnowflake body) throws ApiException { - ApiResponse localVarResp = gatewayUpdateProducerSnowflakeWithHttpInfo(body); + public GetAccountSettingsCommandOutput getAccountSettings(GetAccountSettings body) throws ApiException { + ApiResponse localVarResp = getAccountSettingsWithHttpInfo(body); return localVarResp.getData(); } @@ -22706,18 +23490,18 @@ public GatewayUpdateProducerSnowflakeOutput gatewayUpdateProducerSnowflake(Gatew * * * @param body (required) - * @return ApiResponse<GatewayUpdateProducerSnowflakeOutput> + * @return ApiResponse<GetAccountSettingsCommandOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 gatewayUpdateProducerSnowflakeResponse wraps response body. -
200 getAccountSettingsResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse gatewayUpdateProducerSnowflakeWithHttpInfo(GatewayUpdateProducerSnowflake body) throws ApiException { - okhttp3.Call localVarCall = gatewayUpdateProducerSnowflakeValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse getAccountSettingsWithHttpInfo(GetAccountSettings body) throws ApiException { + okhttp3.Call localVarCall = getAccountSettingsValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -22731,19 +23515,19 @@ public ApiResponse gatewayUpdateProducerSn * @http.response.details - +
Status Code Description Response Headers
201 gatewayUpdateProducerSnowflakeResponse wraps response body. -
200 getAccountSettingsResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayUpdateProducerSnowflakeAsync(GatewayUpdateProducerSnowflake body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getAccountSettingsAsync(GetAccountSettings body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = gatewayUpdateProducerSnowflakeValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = getAccountSettingsValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for gatewayUpdateTlsCert + * Build call for getAuthMethod * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -22751,11 +23535,11 @@ public okhttp3.Call gatewayUpdateProducerSnowflakeAsync(GatewayUpdateProducerSno * @http.response.details - +
Status Code Description Response Headers
201 GatewayUpdateTlsCertResponse wraps response body. -
200 getAuthMethodResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayUpdateTlsCertCall(GatewayUpdateTlsCert body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getAuthMethodCall(GetAuthMethod body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -22773,7 +23557,7 @@ public okhttp3.Call gatewayUpdateTlsCertCall(GatewayUpdateTlsCert body, final Ap Object localVarPostBody = body; // create path and map variables - String localVarPath = "/gateway-update-tls-cert"; + String localVarPath = "/get-auth-method"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -22802,15 +23586,15 @@ public okhttp3.Call gatewayUpdateTlsCertCall(GatewayUpdateTlsCert body, final Ap } @SuppressWarnings("rawtypes") - private okhttp3.Call gatewayUpdateTlsCertValidateBeforeCall(GatewayUpdateTlsCert body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call getAuthMethodValidateBeforeCall(GetAuthMethod body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling gatewayUpdateTlsCert(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling getAuthMethod(Async)"); } - okhttp3.Call localVarCall = gatewayUpdateTlsCertCall(body, _callback); + okhttp3.Call localVarCall = getAuthMethodCall(body, _callback); return localVarCall; } @@ -22819,17 +23603,17 @@ private okhttp3.Call gatewayUpdateTlsCertValidateBeforeCall(GatewayUpdateTlsCert * * * @param body (required) - * @return GatewayUpdateTlsCertOutput + * @return AuthMethod * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 GatewayUpdateTlsCertResponse wraps response body. -
200 getAuthMethodResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public GatewayUpdateTlsCertOutput gatewayUpdateTlsCert(GatewayUpdateTlsCert body) throws ApiException { - ApiResponse localVarResp = gatewayUpdateTlsCertWithHttpInfo(body); + public AuthMethod getAuthMethod(GetAuthMethod body) throws ApiException { + ApiResponse localVarResp = getAuthMethodWithHttpInfo(body); return localVarResp.getData(); } @@ -22837,18 +23621,18 @@ public GatewayUpdateTlsCertOutput gatewayUpdateTlsCert(GatewayUpdateTlsCert body * * * @param body (required) - * @return ApiResponse<GatewayUpdateTlsCertOutput> + * @return ApiResponse<AuthMethod> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
201 GatewayUpdateTlsCertResponse wraps response body. -
200 getAuthMethodResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse gatewayUpdateTlsCertWithHttpInfo(GatewayUpdateTlsCert body) throws ApiException { - okhttp3.Call localVarCall = gatewayUpdateTlsCertValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse getAuthMethodWithHttpInfo(GetAuthMethod body) throws ApiException { + okhttp3.Call localVarCall = getAuthMethodValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -22862,19 +23646,19 @@ public ApiResponse gatewayUpdateTlsCertWithHttpInfo( * @http.response.details - +
Status Code Description Response Headers
201 GatewayUpdateTlsCertResponse wraps response body. -
200 getAuthMethodResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayUpdateTlsCertAsync(GatewayUpdateTlsCert body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getAuthMethodAsync(GetAuthMethod body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = gatewayUpdateTlsCertValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = getAuthMethodValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for gatewayUpdateTmpUsers + * Build call for getCertificateValue * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -22882,11 +23666,11 @@ public okhttp3.Call gatewayUpdateTlsCertAsync(GatewayUpdateTlsCert body, final A * @http.response.details - +
Status Code Description Response Headers
200 gatewayUpdateTmpUsersResponse wraps response body. -
200 getCertificateValueResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayUpdateTmpUsersCall(GatewayUpdateTmpUsers body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getCertificateValueCall(GetCertificateValue body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -22904,7 +23688,7 @@ public okhttp3.Call gatewayUpdateTmpUsersCall(GatewayUpdateTmpUsers body, final Object localVarPostBody = body; // create path and map variables - String localVarPath = "/gateway-update-producer-tmp-creds"; + String localVarPath = "/get-certificate-value"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -22933,15 +23717,15 @@ public okhttp3.Call gatewayUpdateTmpUsersCall(GatewayUpdateTmpUsers body, final } @SuppressWarnings("rawtypes") - private okhttp3.Call gatewayUpdateTmpUsersValidateBeforeCall(GatewayUpdateTmpUsers body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call getCertificateValueValidateBeforeCall(GetCertificateValue body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling gatewayUpdateTmpUsers(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling getCertificateValue(Async)"); } - okhttp3.Call localVarCall = gatewayUpdateTmpUsersCall(body, _callback); + okhttp3.Call localVarCall = getCertificateValueCall(body, _callback); return localVarCall; } @@ -22950,34 +23734,37 @@ private okhttp3.Call gatewayUpdateTmpUsersValidateBeforeCall(GatewayUpdateTmpUse * * * @param body (required) + * @return GetCertificateValueOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 gatewayUpdateTmpUsersResponse wraps response body. -
200 getCertificateValueResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public void gatewayUpdateTmpUsers(GatewayUpdateTmpUsers body) throws ApiException { - gatewayUpdateTmpUsersWithHttpInfo(body); + public GetCertificateValueOutput getCertificateValue(GetCertificateValue body) throws ApiException { + ApiResponse localVarResp = getCertificateValueWithHttpInfo(body); + return localVarResp.getData(); } /** * * * @param body (required) - * @return ApiResponse<Void> + * @return ApiResponse<GetCertificateValueOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 gatewayUpdateTmpUsersResponse wraps response body. -
200 getCertificateValueResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse gatewayUpdateTmpUsersWithHttpInfo(GatewayUpdateTmpUsers body) throws ApiException { - okhttp3.Call localVarCall = gatewayUpdateTmpUsersValidateBeforeCall(body, null); - return localVarApiClient.execute(localVarCall); + public ApiResponse getCertificateValueWithHttpInfo(GetCertificateValue body) throws ApiException { + okhttp3.Call localVarCall = getCertificateValueValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); + return localVarApiClient.execute(localVarCall, localVarReturnType); } /** @@ -22990,18 +23777,19 @@ public ApiResponse gatewayUpdateTmpUsersWithHttpInfo(GatewayUpdateTmpUsers * @http.response.details - +
Status Code Description Response Headers
200 gatewayUpdateTmpUsersResponse wraps response body. -
200 getCertificateValueResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call gatewayUpdateTmpUsersAsync(GatewayUpdateTmpUsers body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getCertificateValueAsync(GetCertificateValue body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = gatewayUpdateTmpUsersValidateBeforeCall(body, _callback); - localVarApiClient.executeAsync(localVarCall, _callback); + okhttp3.Call localVarCall = getCertificateValueValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); + localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for generateCsr + * Build call for getDynamicSecretValue * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -23009,11 +23797,11 @@ public okhttp3.Call gatewayUpdateTmpUsersAsync(GatewayUpdateTmpUsers body, final * @http.response.details - +
Status Code Description Response Headers
200 generateCsrResponse wraps response body. -
200 getDynamicSecretValueResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call generateCsrCall(GenerateCsr body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getDynamicSecretValueCall(GetDynamicSecretValue body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -23031,7 +23819,7 @@ public okhttp3.Call generateCsrCall(GenerateCsr body, final ApiCallback _callbac Object localVarPostBody = body; // create path and map variables - String localVarPath = "/generate-csr"; + String localVarPath = "/get-dynamic-secret-value"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -23060,15 +23848,15 @@ public okhttp3.Call generateCsrCall(GenerateCsr body, final ApiCallback _callbac } @SuppressWarnings("rawtypes") - private okhttp3.Call generateCsrValidateBeforeCall(GenerateCsr body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call getDynamicSecretValueValidateBeforeCall(GetDynamicSecretValue body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling generateCsr(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling getDynamicSecretValue(Async)"); } - okhttp3.Call localVarCall = generateCsrCall(body, _callback); + okhttp3.Call localVarCall = getDynamicSecretValueCall(body, _callback); return localVarCall; } @@ -23077,17 +23865,17 @@ private okhttp3.Call generateCsrValidateBeforeCall(GenerateCsr body, final ApiCa * * * @param body (required) - * @return GenerateCsrOutput + * @return Map<String, String> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 generateCsrResponse wraps response body. -
200 getDynamicSecretValueResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public GenerateCsrOutput generateCsr(GenerateCsr body) throws ApiException { - ApiResponse localVarResp = generateCsrWithHttpInfo(body); + public Map getDynamicSecretValue(GetDynamicSecretValue body) throws ApiException { + ApiResponse> localVarResp = getDynamicSecretValueWithHttpInfo(body); return localVarResp.getData(); } @@ -23095,18 +23883,18 @@ public GenerateCsrOutput generateCsr(GenerateCsr body) throws ApiException { * * * @param body (required) - * @return ApiResponse<GenerateCsrOutput> + * @return ApiResponse<Map<String, String>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 generateCsrResponse wraps response body. -
200 getDynamicSecretValueResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse generateCsrWithHttpInfo(GenerateCsr body) throws ApiException { - okhttp3.Call localVarCall = generateCsrValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse> getDynamicSecretValueWithHttpInfo(GetDynamicSecretValue body) throws ApiException { + okhttp3.Call localVarCall = getDynamicSecretValueValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken>(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -23120,30 +23908,31 @@ public ApiResponse generateCsrWithHttpInfo(GenerateCsr body) * @http.response.details - +
Status Code Description Response Headers
200 generateCsrResponse wraps response body. -
200 getDynamicSecretValueResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call generateCsrAsync(GenerateCsr body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getDynamicSecretValueAsync(GetDynamicSecretValue body, final ApiCallback> _callback) throws ApiException { - okhttp3.Call localVarCall = generateCsrValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = getDynamicSecretValueValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken>(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for getAccountLogo + * Build call for getEventForwarder + * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object * @http.response.details - +
Status Code Description Response Headers
200 getAccountLogoResponse wraps response body. -
200 getEventForwarderResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call getAccountLogoCall(final ApiCallback _callback) throws ApiException { + public okhttp3.Call getEventForwarderCall(GetEventForwarder body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -23158,10 +23947,10 @@ public okhttp3.Call getAccountLogoCall(final ApiCallback _callback) throws ApiEx basePath = null; } - Object localVarPostBody = null; + Object localVarPostBody = body; // create path and map variables - String localVarPath = "/get-account-logo"; + String localVarPath = "/get-event-forwarder"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -23178,7 +23967,7 @@ public okhttp3.Call getAccountLogoCall(final ApiCallback _callback) throws ApiEx } final String[] localVarContentTypes = { - + "application/json" }; final String localVarContentType = localVarApiClient.selectHeaderContentType(localVarContentTypes); if (localVarContentType != null) { @@ -23190,10 +23979,15 @@ public okhttp3.Call getAccountLogoCall(final ApiCallback _callback) throws ApiEx } @SuppressWarnings("rawtypes") - private okhttp3.Call getAccountLogoValidateBeforeCall(final ApiCallback _callback) throws ApiException { + private okhttp3.Call getEventForwarderValidateBeforeCall(GetEventForwarder body, final ApiCallback _callback) throws ApiException { + + // verify the required parameter 'body' is set + if (body == null) { + throw new ApiException("Missing the required parameter 'body' when calling getEventForwarder(Async)"); + } - okhttp3.Call localVarCall = getAccountLogoCall(_callback); + okhttp3.Call localVarCall = getEventForwarderCall(body, _callback); return localVarCall; } @@ -23201,60 +23995,63 @@ private okhttp3.Call getAccountLogoValidateBeforeCall(final ApiCallback _callbac /** * * - * @return Map<String, String> + * @param body (required) + * @return GetEventForwarderOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 getAccountLogoResponse wraps response body. -
200 getEventForwarderResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public Map getAccountLogo() throws ApiException { - ApiResponse> localVarResp = getAccountLogoWithHttpInfo(); + public GetEventForwarderOutput getEventForwarder(GetEventForwarder body) throws ApiException { + ApiResponse localVarResp = getEventForwarderWithHttpInfo(body); return localVarResp.getData(); } /** * * - * @return ApiResponse<Map<String, String>> + * @param body (required) + * @return ApiResponse<GetEventForwarderOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 getAccountLogoResponse wraps response body. -
200 getEventForwarderResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse> getAccountLogoWithHttpInfo() throws ApiException { - okhttp3.Call localVarCall = getAccountLogoValidateBeforeCall(null); - Type localVarReturnType = new TypeToken>(){}.getType(); + public ApiResponse getEventForwarderWithHttpInfo(GetEventForwarder body) throws ApiException { + okhttp3.Call localVarCall = getEventForwarderValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } /** * (asynchronously) * + * @param body (required) * @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 - +
Status Code Description Response Headers
200 getAccountLogoResponse wraps response body. -
200 getEventForwarderResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call getAccountLogoAsync(final ApiCallback> _callback) throws ApiException { + public okhttp3.Call getEventForwarderAsync(GetEventForwarder body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = getAccountLogoValidateBeforeCall(_callback); - Type localVarReturnType = new TypeToken>(){}.getType(); + okhttp3.Call localVarCall = getEventForwarderValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for getAccountSettings + * Build call for getGroup * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -23262,11 +24059,11 @@ public okhttp3.Call getAccountLogoAsync(final ApiCallback> _ * @http.response.details - +
Status Code Description Response Headers
200 getAccountSettingsResponse wraps response body. -
200 getGroupResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call getAccountSettingsCall(GetAccountSettings body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getGroupCall(GetGroup body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -23284,7 +24081,7 @@ public okhttp3.Call getAccountSettingsCall(GetAccountSettings body, final ApiCal Object localVarPostBody = body; // create path and map variables - String localVarPath = "/get-account-settings"; + String localVarPath = "/get-group"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -23313,15 +24110,15 @@ public okhttp3.Call getAccountSettingsCall(GetAccountSettings body, final ApiCal } @SuppressWarnings("rawtypes") - private okhttp3.Call getAccountSettingsValidateBeforeCall(GetAccountSettings body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call getGroupValidateBeforeCall(GetGroup body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling getAccountSettings(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling getGroup(Async)"); } - okhttp3.Call localVarCall = getAccountSettingsCall(body, _callback); + okhttp3.Call localVarCall = getGroupCall(body, _callback); return localVarCall; } @@ -23330,17 +24127,17 @@ private okhttp3.Call getAccountSettingsValidateBeforeCall(GetAccountSettings bod * * * @param body (required) - * @return GetAccountSettingsCommandOutput + * @return GetGroupOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 getAccountSettingsResponse wraps response body. -
200 getGroupResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public GetAccountSettingsCommandOutput getAccountSettings(GetAccountSettings body) throws ApiException { - ApiResponse localVarResp = getAccountSettingsWithHttpInfo(body); + public GetGroupOutput getGroup(GetGroup body) throws ApiException { + ApiResponse localVarResp = getGroupWithHttpInfo(body); return localVarResp.getData(); } @@ -23348,18 +24145,18 @@ public GetAccountSettingsCommandOutput getAccountSettings(GetAccountSettings bod * * * @param body (required) - * @return ApiResponse<GetAccountSettingsCommandOutput> + * @return ApiResponse<GetGroupOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 getAccountSettingsResponse wraps response body. -
200 getGroupResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse getAccountSettingsWithHttpInfo(GetAccountSettings body) throws ApiException { - okhttp3.Call localVarCall = getAccountSettingsValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse getGroupWithHttpInfo(GetGroup body) throws ApiException { + okhttp3.Call localVarCall = getGroupValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -23373,19 +24170,19 @@ public ApiResponse getAccountSettingsWithHttpIn * @http.response.details - +
Status Code Description Response Headers
200 getAccountSettingsResponse wraps response body. -
200 getGroupResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call getAccountSettingsAsync(GetAccountSettings body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getGroupAsync(GetGroup body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = getAccountSettingsValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = getGroupValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for getAuthMethod + * Build call for getKubeExecCreds * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -23393,11 +24190,11 @@ public okhttp3.Call getAccountSettingsAsync(GetAccountSettings body, final ApiCa * @http.response.details - +
Status Code Description Response Headers
200 getAuthMethodResponse wraps response body. -
200 getKubeExecCredsResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call getAuthMethodCall(GetAuthMethod body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getKubeExecCredsCall(GetKubeExecCreds body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -23415,7 +24212,7 @@ public okhttp3.Call getAuthMethodCall(GetAuthMethod body, final ApiCallback _cal Object localVarPostBody = body; // create path and map variables - String localVarPath = "/get-auth-method"; + String localVarPath = "/get-kube-exec-creds"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -23444,15 +24241,15 @@ public okhttp3.Call getAuthMethodCall(GetAuthMethod body, final ApiCallback _cal } @SuppressWarnings("rawtypes") - private okhttp3.Call getAuthMethodValidateBeforeCall(GetAuthMethod body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call getKubeExecCredsValidateBeforeCall(GetKubeExecCreds body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling getAuthMethod(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling getKubeExecCreds(Async)"); } - okhttp3.Call localVarCall = getAuthMethodCall(body, _callback); + okhttp3.Call localVarCall = getKubeExecCredsCall(body, _callback); return localVarCall; } @@ -23461,17 +24258,17 @@ private okhttp3.Call getAuthMethodValidateBeforeCall(GetAuthMethod body, final A * * * @param body (required) - * @return AuthMethod + * @return GetKubeExecCredsOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 getAuthMethodResponse wraps response body. -
200 getKubeExecCredsResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public AuthMethod getAuthMethod(GetAuthMethod body) throws ApiException { - ApiResponse localVarResp = getAuthMethodWithHttpInfo(body); + public GetKubeExecCredsOutput getKubeExecCreds(GetKubeExecCreds body) throws ApiException { + ApiResponse localVarResp = getKubeExecCredsWithHttpInfo(body); return localVarResp.getData(); } @@ -23479,18 +24276,18 @@ public AuthMethod getAuthMethod(GetAuthMethod body) throws ApiException { * * * @param body (required) - * @return ApiResponse<AuthMethod> + * @return ApiResponse<GetKubeExecCredsOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 getAuthMethodResponse wraps response body. -
200 getKubeExecCredsResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse getAuthMethodWithHttpInfo(GetAuthMethod body) throws ApiException { - okhttp3.Call localVarCall = getAuthMethodValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse getKubeExecCredsWithHttpInfo(GetKubeExecCreds body) throws ApiException { + okhttp3.Call localVarCall = getKubeExecCredsValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -23504,19 +24301,19 @@ public ApiResponse getAuthMethodWithHttpInfo(GetAuthMethod body) thr * @http.response.details - +
Status Code Description Response Headers
200 getAuthMethodResponse wraps response body. -
200 getKubeExecCredsResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call getAuthMethodAsync(GetAuthMethod body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getKubeExecCredsAsync(GetKubeExecCreds body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = getAuthMethodValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = getKubeExecCredsValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for getCertificateValue + * Build call for getLastUserEventStatus * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -23524,11 +24321,11 @@ public okhttp3.Call getAuthMethodAsync(GetAuthMethod body, final ApiCallback Status Code Description Response Headers - 200 getCertificateValueResponse wraps response body. - + 200 getLastUserEventStatusResponse wraps response body. - 0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. - */ - public okhttp3.Call getCertificateValueCall(GetCertificateValue body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getLastUserEventStatusCall(GetLastUserEventStatus body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -23546,7 +24343,7 @@ public okhttp3.Call getCertificateValueCall(GetCertificateValue body, final ApiC Object localVarPostBody = body; // create path and map variables - String localVarPath = "/get-certificate-value"; + String localVarPath = "/user-event-last-status"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -23575,15 +24372,15 @@ public okhttp3.Call getCertificateValueCall(GetCertificateValue body, final ApiC } @SuppressWarnings("rawtypes") - private okhttp3.Call getCertificateValueValidateBeforeCall(GetCertificateValue body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call getLastUserEventStatusValidateBeforeCall(GetLastUserEventStatus body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling getCertificateValue(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling getLastUserEventStatus(Async)"); } - okhttp3.Call localVarCall = getCertificateValueCall(body, _callback); + okhttp3.Call localVarCall = getLastUserEventStatusCall(body, _callback); return localVarCall; } @@ -23592,17 +24389,17 @@ private okhttp3.Call getCertificateValueValidateBeforeCall(GetCertificateValue b * * * @param body (required) - * @return GetCertificateValueOutput + * @return GetUserEventStatusOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 getCertificateValueResponse wraps response body. -
200 getLastUserEventStatusResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public GetCertificateValueOutput getCertificateValue(GetCertificateValue body) throws ApiException { - ApiResponse localVarResp = getCertificateValueWithHttpInfo(body); + public GetUserEventStatusOutput getLastUserEventStatus(GetLastUserEventStatus body) throws ApiException { + ApiResponse localVarResp = getLastUserEventStatusWithHttpInfo(body); return localVarResp.getData(); } @@ -23610,18 +24407,18 @@ public GetCertificateValueOutput getCertificateValue(GetCertificateValue body) t * * * @param body (required) - * @return ApiResponse<GetCertificateValueOutput> + * @return ApiResponse<GetUserEventStatusOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 getCertificateValueResponse wraps response body. -
200 getLastUserEventStatusResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse getCertificateValueWithHttpInfo(GetCertificateValue body) throws ApiException { - okhttp3.Call localVarCall = getCertificateValueValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse getLastUserEventStatusWithHttpInfo(GetLastUserEventStatus body) throws ApiException { + okhttp3.Call localVarCall = getLastUserEventStatusValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -23635,19 +24432,19 @@ public ApiResponse getCertificateValueWithHttpInfo(Ge * @http.response.details - +
Status Code Description Response Headers
200 getCertificateValueResponse wraps response body. -
200 getLastUserEventStatusResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call getCertificateValueAsync(GetCertificateValue body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getLastUserEventStatusAsync(GetLastUserEventStatus body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = getCertificateValueValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = getLastUserEventStatusValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for getDynamicSecretValue + * Build call for getPKICertificate * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -23655,11 +24452,11 @@ public okhttp3.Call getCertificateValueAsync(GetCertificateValue body, final Api * @http.response.details - +
Status Code Description Response Headers
200 getDynamicSecretValueResponse wraps response body. -
200 getPKICertificateResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call getDynamicSecretValueCall(GetDynamicSecretValue body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getPKICertificateCall(GetPKICertificate body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -23677,7 +24474,7 @@ public okhttp3.Call getDynamicSecretValueCall(GetDynamicSecretValue body, final Object localVarPostBody = body; // create path and map variables - String localVarPath = "/get-dynamic-secret-value"; + String localVarPath = "/get-pki-certificate"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -23706,15 +24503,15 @@ public okhttp3.Call getDynamicSecretValueCall(GetDynamicSecretValue body, final } @SuppressWarnings("rawtypes") - private okhttp3.Call getDynamicSecretValueValidateBeforeCall(GetDynamicSecretValue body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call getPKICertificateValidateBeforeCall(GetPKICertificate body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling getDynamicSecretValue(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling getPKICertificate(Async)"); } - okhttp3.Call localVarCall = getDynamicSecretValueCall(body, _callback); + okhttp3.Call localVarCall = getPKICertificateCall(body, _callback); return localVarCall; } @@ -23723,17 +24520,17 @@ private okhttp3.Call getDynamicSecretValueValidateBeforeCall(GetDynamicSecretVal * * * @param body (required) - * @return Map<String, String> + * @return GetPKICertificateOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 getDynamicSecretValueResponse wraps response body. -
200 getPKICertificateResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public Map getDynamicSecretValue(GetDynamicSecretValue body) throws ApiException { - ApiResponse> localVarResp = getDynamicSecretValueWithHttpInfo(body); + public GetPKICertificateOutput getPKICertificate(GetPKICertificate body) throws ApiException { + ApiResponse localVarResp = getPKICertificateWithHttpInfo(body); return localVarResp.getData(); } @@ -23741,18 +24538,18 @@ public Map getDynamicSecretValue(GetDynamicSecretValue body) thr * * * @param body (required) - * @return ApiResponse<Map<String, String>> + * @return ApiResponse<GetPKICertificateOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 getDynamicSecretValueResponse wraps response body. -
200 getPKICertificateResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse> getDynamicSecretValueWithHttpInfo(GetDynamicSecretValue body) throws ApiException { - okhttp3.Call localVarCall = getDynamicSecretValueValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken>(){}.getType(); + public ApiResponse getPKICertificateWithHttpInfo(GetPKICertificate body) throws ApiException { + okhttp3.Call localVarCall = getPKICertificateValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -23766,19 +24563,19 @@ public ApiResponse> getDynamicSecretValueWithHttpInfo(GetDyn * @http.response.details - +
Status Code Description Response Headers
200 getDynamicSecretValueResponse wraps response body. -
200 getPKICertificateResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call getDynamicSecretValueAsync(GetDynamicSecretValue body, final ApiCallback> _callback) throws ApiException { + public okhttp3.Call getPKICertificateAsync(GetPKICertificate body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = getDynamicSecretValueValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken>(){}.getType(); + okhttp3.Call localVarCall = getPKICertificateValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for getEventForwarder + * Build call for getRSAPublic * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -23786,11 +24583,11 @@ public okhttp3.Call getDynamicSecretValueAsync(GetDynamicSecretValue body, final * @http.response.details - +
Status Code Description Response Headers
200 getEventForwarderResponse wraps response body. -
200 getRSAPublicResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call getEventForwarderCall(GetEventForwarder body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getRSAPublicCall(GetRSAPublic body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -23808,7 +24605,7 @@ public okhttp3.Call getEventForwarderCall(GetEventForwarder body, final ApiCallb Object localVarPostBody = body; // create path and map variables - String localVarPath = "/get-event-forwarder"; + String localVarPath = "/get-rsa-public"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -23837,15 +24634,15 @@ public okhttp3.Call getEventForwarderCall(GetEventForwarder body, final ApiCallb } @SuppressWarnings("rawtypes") - private okhttp3.Call getEventForwarderValidateBeforeCall(GetEventForwarder body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call getRSAPublicValidateBeforeCall(GetRSAPublic body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling getEventForwarder(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling getRSAPublic(Async)"); } - okhttp3.Call localVarCall = getEventForwarderCall(body, _callback); + okhttp3.Call localVarCall = getRSAPublicCall(body, _callback); return localVarCall; } @@ -23854,17 +24651,17 @@ private okhttp3.Call getEventForwarderValidateBeforeCall(GetEventForwarder body, * * * @param body (required) - * @return GetEventForwarderOutput + * @return GetRSAPublicOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 getEventForwarderResponse wraps response body. -
200 getRSAPublicResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public GetEventForwarderOutput getEventForwarder(GetEventForwarder body) throws ApiException { - ApiResponse localVarResp = getEventForwarderWithHttpInfo(body); + public GetRSAPublicOutput getRSAPublic(GetRSAPublic body) throws ApiException { + ApiResponse localVarResp = getRSAPublicWithHttpInfo(body); return localVarResp.getData(); } @@ -23872,18 +24669,18 @@ public GetEventForwarderOutput getEventForwarder(GetEventForwarder body) throws * * * @param body (required) - * @return ApiResponse<GetEventForwarderOutput> + * @return ApiResponse<GetRSAPublicOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 getEventForwarderResponse wraps response body. -
200 getRSAPublicResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse getEventForwarderWithHttpInfo(GetEventForwarder body) throws ApiException { - okhttp3.Call localVarCall = getEventForwarderValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse getRSAPublicWithHttpInfo(GetRSAPublic body) throws ApiException { + okhttp3.Call localVarCall = getRSAPublicValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -23897,19 +24694,19 @@ public ApiResponse getEventForwarderWithHttpInfo(GetEve * @http.response.details - +
Status Code Description Response Headers
200 getEventForwarderResponse wraps response body. -
200 getRSAPublicResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call getEventForwarderAsync(GetEventForwarder body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getRSAPublicAsync(GetRSAPublic body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = getEventForwarderValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = getRSAPublicValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for getGroup + * Build call for getRole * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -23917,11 +24714,11 @@ public okhttp3.Call getEventForwarderAsync(GetEventForwarder body, final ApiCall * @http.response.details - +
Status Code Description Response Headers
200 getGroupResponse wraps response body. -
200 getRoleResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call getGroupCall(GetGroup body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getRoleCall(GetRole body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -23939,7 +24736,7 @@ public okhttp3.Call getGroupCall(GetGroup body, final ApiCallback _callback) thr Object localVarPostBody = body; // create path and map variables - String localVarPath = "/get-group"; + String localVarPath = "/get-role"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -23968,15 +24765,15 @@ public okhttp3.Call getGroupCall(GetGroup body, final ApiCallback _callback) thr } @SuppressWarnings("rawtypes") - private okhttp3.Call getGroupValidateBeforeCall(GetGroup body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call getRoleValidateBeforeCall(GetRole body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling getGroup(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling getRole(Async)"); } - okhttp3.Call localVarCall = getGroupCall(body, _callback); + okhttp3.Call localVarCall = getRoleCall(body, _callback); return localVarCall; } @@ -23985,17 +24782,17 @@ private okhttp3.Call getGroupValidateBeforeCall(GetGroup body, final ApiCallback * * * @param body (required) - * @return GetGroupOutput + * @return Role * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 getGroupResponse wraps response body. -
200 getRoleResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public GetGroupOutput getGroup(GetGroup body) throws ApiException { - ApiResponse localVarResp = getGroupWithHttpInfo(body); + public Role getRole(GetRole body) throws ApiException { + ApiResponse localVarResp = getRoleWithHttpInfo(body); return localVarResp.getData(); } @@ -24003,18 +24800,18 @@ public GetGroupOutput getGroup(GetGroup body) throws ApiException { * * * @param body (required) - * @return ApiResponse<GetGroupOutput> + * @return ApiResponse<Role> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 getGroupResponse wraps response body. -
200 getRoleResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse getGroupWithHttpInfo(GetGroup body) throws ApiException { - okhttp3.Call localVarCall = getGroupValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse getRoleWithHttpInfo(GetRole body) throws ApiException { + okhttp3.Call localVarCall = getRoleValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -24028,19 +24825,19 @@ public ApiResponse getGroupWithHttpInfo(GetGroup body) throws Ap * @http.response.details - +
Status Code Description Response Headers
200 getGroupResponse wraps response body. -
200 getRoleResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call getGroupAsync(GetGroup body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getRoleAsync(GetRole body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = getGroupValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = getRoleValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for getKubeExecCreds + * Build call for getRotatedSecretValue * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -24048,11 +24845,11 @@ public okhttp3.Call getGroupAsync(GetGroup body, final ApiCallback Status Code Description Response Headers - 200 getKubeExecCredsResponse wraps response body. - + 200 getRotatedSecretValueResponse wraps response body. - 0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. - */ - public okhttp3.Call getKubeExecCredsCall(GetKubeExecCreds body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getRotatedSecretValueCall(GetRotatedSecretValue body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -24070,7 +24867,7 @@ public okhttp3.Call getKubeExecCredsCall(GetKubeExecCreds body, final ApiCallbac Object localVarPostBody = body; // create path and map variables - String localVarPath = "/get-kube-exec-creds"; + String localVarPath = "/get-rotated-secret-value"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -24099,15 +24896,15 @@ public okhttp3.Call getKubeExecCredsCall(GetKubeExecCreds body, final ApiCallbac } @SuppressWarnings("rawtypes") - private okhttp3.Call getKubeExecCredsValidateBeforeCall(GetKubeExecCreds body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call getRotatedSecretValueValidateBeforeCall(GetRotatedSecretValue body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling getKubeExecCreds(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling getRotatedSecretValue(Async)"); } - okhttp3.Call localVarCall = getKubeExecCredsCall(body, _callback); + okhttp3.Call localVarCall = getRotatedSecretValueCall(body, _callback); return localVarCall; } @@ -24116,17 +24913,17 @@ private okhttp3.Call getKubeExecCredsValidateBeforeCall(GetKubeExecCreds body, f * * * @param body (required) - * @return GetKubeExecCredsOutput + * @return Map<String, Object> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 getKubeExecCredsResponse wraps response body. -
200 getRotatedSecretValueResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public GetKubeExecCredsOutput getKubeExecCreds(GetKubeExecCreds body) throws ApiException { - ApiResponse localVarResp = getKubeExecCredsWithHttpInfo(body); + public Map getRotatedSecretValue(GetRotatedSecretValue body) throws ApiException { + ApiResponse> localVarResp = getRotatedSecretValueWithHttpInfo(body); return localVarResp.getData(); } @@ -24134,18 +24931,18 @@ public GetKubeExecCredsOutput getKubeExecCreds(GetKubeExecCreds body) throws Api * * * @param body (required) - * @return ApiResponse<GetKubeExecCredsOutput> + * @return ApiResponse<Map<String, Object>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 getKubeExecCredsResponse wraps response body. -
200 getRotatedSecretValueResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse getKubeExecCredsWithHttpInfo(GetKubeExecCreds body) throws ApiException { - okhttp3.Call localVarCall = getKubeExecCredsValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse> getRotatedSecretValueWithHttpInfo(GetRotatedSecretValue body) throws ApiException { + okhttp3.Call localVarCall = getRotatedSecretValueValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken>(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -24159,19 +24956,19 @@ public ApiResponse getKubeExecCredsWithHttpInfo(GetKubeE * @http.response.details - +
Status Code Description Response Headers
200 getKubeExecCredsResponse wraps response body. -
200 getRotatedSecretValueResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call getKubeExecCredsAsync(GetKubeExecCreds body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getRotatedSecretValueAsync(GetRotatedSecretValue body, final ApiCallback> _callback) throws ApiException { - okhttp3.Call localVarCall = getKubeExecCredsValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = getRotatedSecretValueValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken>(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for getLastUserEventStatus + * Build call for getSSHCertificate * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -24179,11 +24976,11 @@ public okhttp3.Call getKubeExecCredsAsync(GetKubeExecCreds body, final ApiCallba * @http.response.details - +
Status Code Description Response Headers
200 getLastUserEventStatusResponse wraps response body. -
200 getSSHCertificateResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call getLastUserEventStatusCall(GetLastUserEventStatus body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getSSHCertificateCall(GetSSHCertificate body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -24201,7 +24998,7 @@ public okhttp3.Call getLastUserEventStatusCall(GetLastUserEventStatus body, fina Object localVarPostBody = body; // create path and map variables - String localVarPath = "/user-event-last-status"; + String localVarPath = "/get-ssh-certificate"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -24230,15 +25027,15 @@ public okhttp3.Call getLastUserEventStatusCall(GetLastUserEventStatus body, fina } @SuppressWarnings("rawtypes") - private okhttp3.Call getLastUserEventStatusValidateBeforeCall(GetLastUserEventStatus body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call getSSHCertificateValidateBeforeCall(GetSSHCertificate body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling getLastUserEventStatus(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling getSSHCertificate(Async)"); } - okhttp3.Call localVarCall = getLastUserEventStatusCall(body, _callback); + okhttp3.Call localVarCall = getSSHCertificateCall(body, _callback); return localVarCall; } @@ -24247,17 +25044,17 @@ private okhttp3.Call getLastUserEventStatusValidateBeforeCall(GetLastUserEventSt * * * @param body (required) - * @return GetUserEventStatusOutput + * @return GetSSHCertificateOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 getLastUserEventStatusResponse wraps response body. -
200 getSSHCertificateResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public GetUserEventStatusOutput getLastUserEventStatus(GetLastUserEventStatus body) throws ApiException { - ApiResponse localVarResp = getLastUserEventStatusWithHttpInfo(body); + public GetSSHCertificateOutput getSSHCertificate(GetSSHCertificate body) throws ApiException { + ApiResponse localVarResp = getSSHCertificateWithHttpInfo(body); return localVarResp.getData(); } @@ -24265,18 +25062,18 @@ public GetUserEventStatusOutput getLastUserEventStatus(GetLastUserEventStatus bo * * * @param body (required) - * @return ApiResponse<GetUserEventStatusOutput> + * @return ApiResponse<GetSSHCertificateOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 getLastUserEventStatusResponse wraps response body. -
200 getSSHCertificateResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse getLastUserEventStatusWithHttpInfo(GetLastUserEventStatus body) throws ApiException { - okhttp3.Call localVarCall = getLastUserEventStatusValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse getSSHCertificateWithHttpInfo(GetSSHCertificate body) throws ApiException { + okhttp3.Call localVarCall = getSSHCertificateValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -24290,19 +25087,19 @@ public ApiResponse getLastUserEventStatusWithHttpInfo( * @http.response.details - +
Status Code Description Response Headers
200 getLastUserEventStatusResponse wraps response body. -
200 getSSHCertificateResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call getLastUserEventStatusAsync(GetLastUserEventStatus body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getSSHCertificateAsync(GetSSHCertificate body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = getLastUserEventStatusValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = getSSHCertificateValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for getPKICertificate + * Build call for getSecretValue * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -24310,11 +25107,11 @@ public okhttp3.Call getLastUserEventStatusAsync(GetLastUserEventStatus body, fin * @http.response.details - +
Status Code Description Response Headers
200 getPKICertificateResponse wraps response body. -
200 getSecretValueResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call getPKICertificateCall(GetPKICertificate body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getSecretValueCall(GetSecretValue body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -24332,7 +25129,7 @@ public okhttp3.Call getPKICertificateCall(GetPKICertificate body, final ApiCallb Object localVarPostBody = body; // create path and map variables - String localVarPath = "/get-pki-certificate"; + String localVarPath = "/get-secret-value"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -24361,15 +25158,15 @@ public okhttp3.Call getPKICertificateCall(GetPKICertificate body, final ApiCallb } @SuppressWarnings("rawtypes") - private okhttp3.Call getPKICertificateValidateBeforeCall(GetPKICertificate body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call getSecretValueValidateBeforeCall(GetSecretValue body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling getPKICertificate(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling getSecretValue(Async)"); } - okhttp3.Call localVarCall = getPKICertificateCall(body, _callback); + okhttp3.Call localVarCall = getSecretValueCall(body, _callback); return localVarCall; } @@ -24378,17 +25175,17 @@ private okhttp3.Call getPKICertificateValidateBeforeCall(GetPKICertificate body, * * * @param body (required) - * @return GetPKICertificateOutput + * @return Map<String, String> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 getPKICertificateResponse wraps response body. -
200 getSecretValueResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public GetPKICertificateOutput getPKICertificate(GetPKICertificate body) throws ApiException { - ApiResponse localVarResp = getPKICertificateWithHttpInfo(body); + public Map getSecretValue(GetSecretValue body) throws ApiException { + ApiResponse> localVarResp = getSecretValueWithHttpInfo(body); return localVarResp.getData(); } @@ -24396,18 +25193,18 @@ public GetPKICertificateOutput getPKICertificate(GetPKICertificate body) throws * * * @param body (required) - * @return ApiResponse<GetPKICertificateOutput> + * @return ApiResponse<Map<String, String>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 getPKICertificateResponse wraps response body. -
200 getSecretValueResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse getPKICertificateWithHttpInfo(GetPKICertificate body) throws ApiException { - okhttp3.Call localVarCall = getPKICertificateValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse> getSecretValueWithHttpInfo(GetSecretValue body) throws ApiException { + okhttp3.Call localVarCall = getSecretValueValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken>(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -24421,19 +25218,19 @@ public ApiResponse getPKICertificateWithHttpInfo(GetPKI * @http.response.details - +
Status Code Description Response Headers
200 getPKICertificateResponse wraps response body. -
200 getSecretValueResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call getPKICertificateAsync(GetPKICertificate body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getSecretValueAsync(GetSecretValue body, final ApiCallback> _callback) throws ApiException { - okhttp3.Call localVarCall = getPKICertificateValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = getSecretValueValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken>(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for getRSAPublic + * Build call for getTags * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -24441,11 +25238,11 @@ public okhttp3.Call getPKICertificateAsync(GetPKICertificate body, final ApiCall * @http.response.details - +
Status Code Description Response Headers
200 getRSAPublicResponse wraps response body. -
200 getTagsResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call getRSAPublicCall(GetRSAPublic body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getTagsCall(GetTags body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -24463,7 +25260,7 @@ public okhttp3.Call getRSAPublicCall(GetRSAPublic body, final ApiCallback _callb Object localVarPostBody = body; // create path and map variables - String localVarPath = "/get-rsa-public"; + String localVarPath = "/get-tags"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -24492,15 +25289,15 @@ public okhttp3.Call getRSAPublicCall(GetRSAPublic body, final ApiCallback _callb } @SuppressWarnings("rawtypes") - private okhttp3.Call getRSAPublicValidateBeforeCall(GetRSAPublic body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call getTagsValidateBeforeCall(GetTags body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling getRSAPublic(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling getTags(Async)"); } - okhttp3.Call localVarCall = getRSAPublicCall(body, _callback); + okhttp3.Call localVarCall = getTagsCall(body, _callback); return localVarCall; } @@ -24509,17 +25306,17 @@ private okhttp3.Call getRSAPublicValidateBeforeCall(GetRSAPublic body, final Api * * * @param body (required) - * @return GetRSAPublicOutput + * @return List<String> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 getRSAPublicResponse wraps response body. -
200 getTagsResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public GetRSAPublicOutput getRSAPublic(GetRSAPublic body) throws ApiException { - ApiResponse localVarResp = getRSAPublicWithHttpInfo(body); + public List getTags(GetTags body) throws ApiException { + ApiResponse> localVarResp = getTagsWithHttpInfo(body); return localVarResp.getData(); } @@ -24527,18 +25324,18 @@ public GetRSAPublicOutput getRSAPublic(GetRSAPublic body) throws ApiException { * * * @param body (required) - * @return ApiResponse<GetRSAPublicOutput> + * @return ApiResponse<List<String>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 getRSAPublicResponse wraps response body. -
200 getTagsResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse getRSAPublicWithHttpInfo(GetRSAPublic body) throws ApiException { - okhttp3.Call localVarCall = getRSAPublicValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse> getTagsWithHttpInfo(GetTags body) throws ApiException { + okhttp3.Call localVarCall = getTagsValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken>(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -24552,19 +25349,19 @@ public ApiResponse getRSAPublicWithHttpInfo(GetRSAPublic bod * @http.response.details - +
Status Code Description Response Headers
200 getRSAPublicResponse wraps response body. -
200 getTagsResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call getRSAPublicAsync(GetRSAPublic body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getTagsAsync(GetTags body, final ApiCallback> _callback) throws ApiException { - okhttp3.Call localVarCall = getRSAPublicValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = getTagsValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken>(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for getRole + * Build call for getTarget * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -24572,11 +25369,11 @@ public okhttp3.Call getRSAPublicAsync(GetRSAPublic body, final ApiCallback Status Code Description Response Headers - 200 getRoleResponse wraps response body. - + 200 getTargetResponse wraps response body. - 0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. - */ - public okhttp3.Call getRoleCall(GetRole body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getTargetCall(GetTarget body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -24594,7 +25391,7 @@ public okhttp3.Call getRoleCall(GetRole body, final ApiCallback _callback) throw Object localVarPostBody = body; // create path and map variables - String localVarPath = "/get-role"; + String localVarPath = "/get-target"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -24623,15 +25420,15 @@ public okhttp3.Call getRoleCall(GetRole body, final ApiCallback _callback) throw } @SuppressWarnings("rawtypes") - private okhttp3.Call getRoleValidateBeforeCall(GetRole body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call getTargetValidateBeforeCall(GetTarget body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling getRole(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling getTarget(Async)"); } - okhttp3.Call localVarCall = getRoleCall(body, _callback); + okhttp3.Call localVarCall = getTargetCall(body, _callback); return localVarCall; } @@ -24640,17 +25437,17 @@ private okhttp3.Call getRoleValidateBeforeCall(GetRole body, final ApiCallback _ * * * @param body (required) - * @return Role + * @return Target * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 getRoleResponse wraps response body. -
200 getTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public Role getRole(GetRole body) throws ApiException { - ApiResponse localVarResp = getRoleWithHttpInfo(body); + public Target getTarget(GetTarget body) throws ApiException { + ApiResponse localVarResp = getTargetWithHttpInfo(body); return localVarResp.getData(); } @@ -24658,18 +25455,18 @@ public Role getRole(GetRole body) throws ApiException { * * * @param body (required) - * @return ApiResponse<Role> + * @return ApiResponse<Target> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 getRoleResponse wraps response body. -
200 getTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse getRoleWithHttpInfo(GetRole body) throws ApiException { - okhttp3.Call localVarCall = getRoleValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse getTargetWithHttpInfo(GetTarget body) throws ApiException { + okhttp3.Call localVarCall = getTargetValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -24683,19 +25480,19 @@ public ApiResponse getRoleWithHttpInfo(GetRole body) throws ApiException { * @http.response.details - +
Status Code Description Response Headers
200 getRoleResponse wraps response body. -
200 getTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call getRoleAsync(GetRole body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getTargetAsync(GetTarget body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = getRoleValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = getTargetValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for getRotatedSecretValue + * Build call for getTargetDetails * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -24703,11 +25500,11 @@ public okhttp3.Call getRoleAsync(GetRole body, final ApiCallback _callback * @http.response.details - +
Status Code Description Response Headers
200 getRotatedSecretValueResponse wraps response body. -
200 getTargetDetailsResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call getRotatedSecretValueCall(GetRotatedSecretValue body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call getTargetDetailsCall(GetTargetDetails body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -24725,7 +25522,7 @@ public okhttp3.Call getRotatedSecretValueCall(GetRotatedSecretValue body, final Object localVarPostBody = body; // create path and map variables - String localVarPath = "/get-rotated-secret-value"; + String localVarPath = "/get-target-details"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -24754,15 +25551,15 @@ public okhttp3.Call getRotatedSecretValueCall(GetRotatedSecretValue body, final } @SuppressWarnings("rawtypes") - private okhttp3.Call getRotatedSecretValueValidateBeforeCall(GetRotatedSecretValue body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call getTargetDetailsValidateBeforeCall(GetTargetDetails body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling getRotatedSecretValue(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling getTargetDetails(Async)"); } - okhttp3.Call localVarCall = getRotatedSecretValueCall(body, _callback); + okhttp3.Call localVarCall = getTargetDetailsCall(body, _callback); return localVarCall; } @@ -24771,17 +25568,17 @@ private okhttp3.Call getRotatedSecretValueValidateBeforeCall(GetRotatedSecretVal * * * @param body (required) - * @return Map<String, Object> + * @return GetTargetDetailsOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 getRotatedSecretValueResponse wraps response body. -
200 getTargetDetailsResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public Map getRotatedSecretValue(GetRotatedSecretValue body) throws ApiException { - ApiResponse> localVarResp = getRotatedSecretValueWithHttpInfo(body); + public GetTargetDetailsOutput getTargetDetails(GetTargetDetails body) throws ApiException { + ApiResponse localVarResp = getTargetDetailsWithHttpInfo(body); return localVarResp.getData(); } @@ -24789,18 +25586,18 @@ public Map getRotatedSecretValue(GetRotatedSecretValue body) thr * * * @param body (required) - * @return ApiResponse<Map<String, Object>> + * @return ApiResponse<GetTargetDetailsOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 getRotatedSecretValueResponse wraps response body. -
200 getTargetDetailsResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse> getRotatedSecretValueWithHttpInfo(GetRotatedSecretValue body) throws ApiException { - okhttp3.Call localVarCall = getRotatedSecretValueValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken>(){}.getType(); + public ApiResponse getTargetDetailsWithHttpInfo(GetTargetDetails body) throws ApiException { + okhttp3.Call localVarCall = getTargetDetailsValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -24814,19 +25611,19 @@ public ApiResponse> getRotatedSecretValueWithHttpInfo(GetRot * @http.response.details - +
Status Code Description Response Headers
200 getRotatedSecretValueResponse wraps response body. -
200 getTargetDetailsResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call getRotatedSecretValueAsync(GetRotatedSecretValue body, final ApiCallback> _callback) throws ApiException { + public okhttp3.Call getTargetDetailsAsync(GetTargetDetails body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = getRotatedSecretValueValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken>(){}.getType(); + okhttp3.Call localVarCall = getTargetDetailsValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for getSSHCertificate + * Build call for hmac * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -24834,11 +25631,11 @@ public okhttp3.Call getRotatedSecretValueAsync(GetRotatedSecretValue body, final * @http.response.details - +
Status Code Description Response Headers
200 getSSHCertificateResponse wraps response body. -
200 hmacResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call getSSHCertificateCall(GetSSHCertificate body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call hmacCall(Hmac body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -24856,7 +25653,7 @@ public okhttp3.Call getSSHCertificateCall(GetSSHCertificate body, final ApiCallb Object localVarPostBody = body; // create path and map variables - String localVarPath = "/get-ssh-certificate"; + String localVarPath = "/hmac"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -24885,15 +25682,15 @@ public okhttp3.Call getSSHCertificateCall(GetSSHCertificate body, final ApiCallb } @SuppressWarnings("rawtypes") - private okhttp3.Call getSSHCertificateValidateBeforeCall(GetSSHCertificate body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call hmacValidateBeforeCall(Hmac body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling getSSHCertificate(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling hmac(Async)"); } - okhttp3.Call localVarCall = getSSHCertificateCall(body, _callback); + okhttp3.Call localVarCall = hmacCall(body, _callback); return localVarCall; } @@ -24902,17 +25699,17 @@ private okhttp3.Call getSSHCertificateValidateBeforeCall(GetSSHCertificate body, * * * @param body (required) - * @return GetSSHCertificateOutput + * @return HmacOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 getSSHCertificateResponse wraps response body. -
200 hmacResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public GetSSHCertificateOutput getSSHCertificate(GetSSHCertificate body) throws ApiException { - ApiResponse localVarResp = getSSHCertificateWithHttpInfo(body); + public HmacOutput hmac(Hmac body) throws ApiException { + ApiResponse localVarResp = hmacWithHttpInfo(body); return localVarResp.getData(); } @@ -24920,18 +25717,18 @@ public GetSSHCertificateOutput getSSHCertificate(GetSSHCertificate body) throws * * * @param body (required) - * @return ApiResponse<GetSSHCertificateOutput> + * @return ApiResponse<HmacOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 getSSHCertificateResponse wraps response body. -
200 hmacResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse getSSHCertificateWithHttpInfo(GetSSHCertificate body) throws ApiException { - okhttp3.Call localVarCall = getSSHCertificateValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse hmacWithHttpInfo(Hmac body) throws ApiException { + okhttp3.Call localVarCall = hmacValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -24945,19 +25742,19 @@ public ApiResponse getSSHCertificateWithHttpInfo(GetSSH * @http.response.details - +
Status Code Description Response Headers
200 getSSHCertificateResponse wraps response body. -
200 hmacResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call getSSHCertificateAsync(GetSSHCertificate body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call hmacAsync(Hmac body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = getSSHCertificateValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = hmacValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for getSecretValue + * Build call for importPasswords * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -24965,11 +25762,11 @@ public okhttp3.Call getSSHCertificateAsync(GetSSHCertificate body, final ApiCall * @http.response.details - +
Status Code Description Response Headers
200 getSecretValueResponse wraps response body. -
200 importPasswordsResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call getSecretValueCall(GetSecretValue body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call importPasswordsCall(ImportPasswords body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -24987,7 +25784,7 @@ public okhttp3.Call getSecretValueCall(GetSecretValue body, final ApiCallback _c Object localVarPostBody = body; // create path and map variables - String localVarPath = "/get-secret-value"; + String localVarPath = "/import-passwords"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -25016,15 +25813,15 @@ public okhttp3.Call getSecretValueCall(GetSecretValue body, final ApiCallback _c } @SuppressWarnings("rawtypes") - private okhttp3.Call getSecretValueValidateBeforeCall(GetSecretValue body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call importPasswordsValidateBeforeCall(ImportPasswords body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling getSecretValue(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling importPasswords(Async)"); } - okhttp3.Call localVarCall = getSecretValueCall(body, _callback); + okhttp3.Call localVarCall = importPasswordsCall(body, _callback); return localVarCall; } @@ -25033,17 +25830,17 @@ private okhttp3.Call getSecretValueValidateBeforeCall(GetSecretValue body, final * * * @param body (required) - * @return Map<String, String> + * @return ImportPasswordsOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 getSecretValueResponse wraps response body. -
200 importPasswordsResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public Map getSecretValue(GetSecretValue body) throws ApiException { - ApiResponse> localVarResp = getSecretValueWithHttpInfo(body); + public ImportPasswordsOutput importPasswords(ImportPasswords body) throws ApiException { + ApiResponse localVarResp = importPasswordsWithHttpInfo(body); return localVarResp.getData(); } @@ -25051,18 +25848,18 @@ public Map getSecretValue(GetSecretValue body) throws ApiExcepti * * * @param body (required) - * @return ApiResponse<Map<String, String>> + * @return ApiResponse<ImportPasswordsOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 getSecretValueResponse wraps response body. -
200 importPasswordsResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse> getSecretValueWithHttpInfo(GetSecretValue body) throws ApiException { - okhttp3.Call localVarCall = getSecretValueValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken>(){}.getType(); + public ApiResponse importPasswordsWithHttpInfo(ImportPasswords body) throws ApiException { + okhttp3.Call localVarCall = importPasswordsValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -25076,31 +25873,31 @@ public ApiResponse> getSecretValueWithHttpInfo(GetSecretValu * @http.response.details - +
Status Code Description Response Headers
200 getSecretValueResponse wraps response body. -
200 importPasswordsResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call getSecretValueAsync(GetSecretValue body, final ApiCallback> _callback) throws ApiException { + public okhttp3.Call importPasswordsAsync(ImportPasswords body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = getSecretValueValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken>(){}.getType(); + okhttp3.Call localVarCall = importPasswordsValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for getTags - * @param body (required) + * Build call for kmipClientDeleteRule + * @param body (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 - +
Status Code Description Response Headers
200 getTagsResponse wraps response body. -
200 kmipClientDeleteRuleResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call getTagsCall(GetTags body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call kmipClientDeleteRuleCall(KmipClientDeleteRule body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -25118,7 +25915,7 @@ public okhttp3.Call getTagsCall(GetTags body, final ApiCallback _callback) throw Object localVarPostBody = body; // create path and map variables - String localVarPath = "/get-tags"; + String localVarPath = "/kmip-client-delete-rule"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -25147,15 +25944,10 @@ public okhttp3.Call getTagsCall(GetTags body, final ApiCallback _callback) throw } @SuppressWarnings("rawtypes") - private okhttp3.Call getTagsValidateBeforeCall(GetTags body, final ApiCallback _callback) throws ApiException { - - // verify the required parameter 'body' is set - if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling getTags(Async)"); - } + private okhttp3.Call kmipClientDeleteRuleValidateBeforeCall(KmipClientDeleteRule body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = getTagsCall(body, _callback); + okhttp3.Call localVarCall = kmipClientDeleteRuleCall(body, _callback); return localVarCall; } @@ -25163,75 +25955,75 @@ private okhttp3.Call getTagsValidateBeforeCall(GetTags body, final ApiCallback _ /** * * - * @param body (required) - * @return List<String> + * @param body (optional) + * @return KMIPClientUpdateResponse * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 getTagsResponse wraps response body. -
200 kmipClientDeleteRuleResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public List getTags(GetTags body) throws ApiException { - ApiResponse> localVarResp = getTagsWithHttpInfo(body); + public KMIPClientUpdateResponse kmipClientDeleteRule(KmipClientDeleteRule body) throws ApiException { + ApiResponse localVarResp = kmipClientDeleteRuleWithHttpInfo(body); return localVarResp.getData(); } /** * * - * @param body (required) - * @return ApiResponse<List<String>> + * @param body (optional) + * @return ApiResponse<KMIPClientUpdateResponse> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 getTagsResponse wraps response body. -
200 kmipClientDeleteRuleResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse> getTagsWithHttpInfo(GetTags body) throws ApiException { - okhttp3.Call localVarCall = getTagsValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken>(){}.getType(); + public ApiResponse kmipClientDeleteRuleWithHttpInfo(KmipClientDeleteRule body) throws ApiException { + okhttp3.Call localVarCall = kmipClientDeleteRuleValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } /** * (asynchronously) * - * @param body (required) + * @param body (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 - +
Status Code Description Response Headers
200 getTagsResponse wraps response body. -
200 kmipClientDeleteRuleResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call getTagsAsync(GetTags body, final ApiCallback> _callback) throws ApiException { + public okhttp3.Call kmipClientDeleteRuleAsync(KmipClientDeleteRule body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = getTagsValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken>(){}.getType(); + okhttp3.Call localVarCall = kmipClientDeleteRuleValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for getTarget - * @param body (required) + * Build call for kmipClientSetRule + * @param body (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 - +
Status Code Description Response Headers
200 getTargetResponse wraps response body. -
200 kmipClientSetRuleResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call getTargetCall(GetTarget body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call kmipClientSetRuleCall(KmipClientSetRule body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -25249,7 +26041,7 @@ public okhttp3.Call getTargetCall(GetTarget body, final ApiCallback _callback) t Object localVarPostBody = body; // create path and map variables - String localVarPath = "/get-target"; + String localVarPath = "/kmip-client-set-rule"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -25278,15 +26070,10 @@ public okhttp3.Call getTargetCall(GetTarget body, final ApiCallback _callback) t } @SuppressWarnings("rawtypes") - private okhttp3.Call getTargetValidateBeforeCall(GetTarget body, final ApiCallback _callback) throws ApiException { - - // verify the required parameter 'body' is set - if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling getTarget(Async)"); - } + private okhttp3.Call kmipClientSetRuleValidateBeforeCall(KmipClientSetRule body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = getTargetCall(body, _callback); + okhttp3.Call localVarCall = kmipClientSetRuleCall(body, _callback); return localVarCall; } @@ -25294,75 +26081,75 @@ private okhttp3.Call getTargetValidateBeforeCall(GetTarget body, final ApiCallba /** * * - * @param body (required) - * @return Target + * @param body (optional) + * @return KMIPClientUpdateResponse * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 getTargetResponse wraps response body. -
200 kmipClientSetRuleResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public Target getTarget(GetTarget body) throws ApiException { - ApiResponse localVarResp = getTargetWithHttpInfo(body); + public KMIPClientUpdateResponse kmipClientSetRule(KmipClientSetRule body) throws ApiException { + ApiResponse localVarResp = kmipClientSetRuleWithHttpInfo(body); return localVarResp.getData(); } /** * * - * @param body (required) - * @return ApiResponse<Target> + * @param body (optional) + * @return ApiResponse<KMIPClientUpdateResponse> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 getTargetResponse wraps response body. -
200 kmipClientSetRuleResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse getTargetWithHttpInfo(GetTarget body) throws ApiException { - okhttp3.Call localVarCall = getTargetValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse kmipClientSetRuleWithHttpInfo(KmipClientSetRule body) throws ApiException { + okhttp3.Call localVarCall = kmipClientSetRuleValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } /** * (asynchronously) * - * @param body (required) + * @param body (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 - +
Status Code Description Response Headers
200 getTargetResponse wraps response body. -
200 kmipClientSetRuleResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call getTargetAsync(GetTarget body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call kmipClientSetRuleAsync(KmipClientSetRule body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = getTargetValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = kmipClientSetRuleValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for getTargetDetails - * @param body (required) + * Build call for kmipCreateClient + * @param body (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 - +
Status Code Description Response Headers
200 getTargetDetailsResponse wraps response body. -
200 kmipCreateClientResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call getTargetDetailsCall(GetTargetDetails body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call kmipCreateClientCall(KmipCreateClient body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -25380,7 +26167,7 @@ public okhttp3.Call getTargetDetailsCall(GetTargetDetails body, final ApiCallbac Object localVarPostBody = body; // create path and map variables - String localVarPath = "/get-target-details"; + String localVarPath = "/kmip-create-client"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -25409,15 +26196,10 @@ public okhttp3.Call getTargetDetailsCall(GetTargetDetails body, final ApiCallbac } @SuppressWarnings("rawtypes") - private okhttp3.Call getTargetDetailsValidateBeforeCall(GetTargetDetails body, final ApiCallback _callback) throws ApiException { - - // verify the required parameter 'body' is set - if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling getTargetDetails(Async)"); - } + private okhttp3.Call kmipCreateClientValidateBeforeCall(KmipCreateClient body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = getTargetDetailsCall(body, _callback); + okhttp3.Call localVarCall = kmipCreateClientCall(body, _callback); return localVarCall; } @@ -25425,75 +26207,75 @@ private okhttp3.Call getTargetDetailsValidateBeforeCall(GetTargetDetails body, f /** * * - * @param body (required) - * @return GetTargetDetailsOutput + * @param body (optional) + * @return KmipCreateClientOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 getTargetDetailsResponse wraps response body. -
200 kmipCreateClientResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public GetTargetDetailsOutput getTargetDetails(GetTargetDetails body) throws ApiException { - ApiResponse localVarResp = getTargetDetailsWithHttpInfo(body); + public KmipCreateClientOutput kmipCreateClient(KmipCreateClient body) throws ApiException { + ApiResponse localVarResp = kmipCreateClientWithHttpInfo(body); return localVarResp.getData(); } /** * * - * @param body (required) - * @return ApiResponse<GetTargetDetailsOutput> + * @param body (optional) + * @return ApiResponse<KmipCreateClientOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 getTargetDetailsResponse wraps response body. -
200 kmipCreateClientResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse getTargetDetailsWithHttpInfo(GetTargetDetails body) throws ApiException { - okhttp3.Call localVarCall = getTargetDetailsValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse kmipCreateClientWithHttpInfo(KmipCreateClient body) throws ApiException { + okhttp3.Call localVarCall = kmipCreateClientValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } /** * (asynchronously) * - * @param body (required) + * @param body (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 - +
Status Code Description Response Headers
200 getTargetDetailsResponse wraps response body. -
200 kmipCreateClientResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call getTargetDetailsAsync(GetTargetDetails body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call kmipCreateClientAsync(KmipCreateClient body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = getTargetDetailsValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = kmipCreateClientValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for hmac - * @param body (required) + * Build call for kmipDeleteClient + * @param body (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 - +
Status Code Description Response Headers
200 hmacResponse wraps response body. -
200 kmipDeleteClientResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call hmacCall(Hmac body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call kmipDeleteClientCall(KmipDeleteClient body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -25511,7 +26293,7 @@ public okhttp3.Call hmacCall(Hmac body, final ApiCallback _callback) throws ApiE Object localVarPostBody = body; // create path and map variables - String localVarPath = "/hmac"; + String localVarPath = "/kmip-delete-client"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -25540,15 +26322,10 @@ public okhttp3.Call hmacCall(Hmac body, final ApiCallback _callback) throws ApiE } @SuppressWarnings("rawtypes") - private okhttp3.Call hmacValidateBeforeCall(Hmac body, final ApiCallback _callback) throws ApiException { - - // verify the required parameter 'body' is set - if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling hmac(Async)"); - } + private okhttp3.Call kmipDeleteClientValidateBeforeCall(KmipDeleteClient body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = hmacCall(body, _callback); + okhttp3.Call localVarCall = kmipDeleteClientCall(body, _callback); return localVarCall; } @@ -25556,75 +26333,75 @@ private okhttp3.Call hmacValidateBeforeCall(Hmac body, final ApiCallback _callba /** * * - * @param body (required) - * @return HmacOutput + * @param body (optional) + * @return Object * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 hmacResponse wraps response body. -
200 kmipDeleteClientResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public HmacOutput hmac(Hmac body) throws ApiException { - ApiResponse localVarResp = hmacWithHttpInfo(body); + public Object kmipDeleteClient(KmipDeleteClient body) throws ApiException { + ApiResponse localVarResp = kmipDeleteClientWithHttpInfo(body); return localVarResp.getData(); } /** * * - * @param body (required) - * @return ApiResponse<HmacOutput> + * @param body (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 - +
Status Code Description Response Headers
200 hmacResponse wraps response body. -
200 kmipDeleteClientResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse hmacWithHttpInfo(Hmac body) throws ApiException { - okhttp3.Call localVarCall = hmacValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse kmipDeleteClientWithHttpInfo(KmipDeleteClient body) throws ApiException { + okhttp3.Call localVarCall = kmipDeleteClientValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } /** * (asynchronously) * - * @param body (required) + * @param body (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 - +
Status Code Description Response Headers
200 hmacResponse wraps response body. -
200 kmipDeleteClientResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call hmacAsync(Hmac body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call kmipDeleteClientAsync(KmipDeleteClient body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = hmacValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = kmipDeleteClientValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for importPasswords - * @param body (required) + * Build call for kmipDeleteServer + * @param body (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 - +
Status Code Description Response Headers
200 importPasswordsResponse wraps response body. -
200 kmipDeleteServerResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call importPasswordsCall(ImportPasswords body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call kmipDeleteServerCall(KmipDeleteServer body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -25642,7 +26419,7 @@ public okhttp3.Call importPasswordsCall(ImportPasswords body, final ApiCallback Object localVarPostBody = body; // create path and map variables - String localVarPath = "/import-passwords"; + String localVarPath = "/kmip-delete-environment"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -25667,19 +26444,14 @@ public okhttp3.Call importPasswordsCall(ImportPasswords body, final ApiCallback } String[] localVarAuthNames = new String[] { }; - return localVarApiClient.buildCall(basePath, localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); + return localVarApiClient.buildCall(basePath, localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call importPasswordsValidateBeforeCall(ImportPasswords body, final ApiCallback _callback) throws ApiException { - - // verify the required parameter 'body' is set - if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling importPasswords(Async)"); - } + private okhttp3.Call kmipDeleteServerValidateBeforeCall(KmipDeleteServer body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = importPasswordsCall(body, _callback); + okhttp3.Call localVarCall = kmipDeleteServerCall(body, _callback); return localVarCall; } @@ -25687,63 +26459,63 @@ private okhttp3.Call importPasswordsValidateBeforeCall(ImportPasswords body, fin /** * * - * @param body (required) - * @return ImportPasswordsOutput + * @param body (optional) + * @return Object * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 importPasswordsResponse wraps response body. -
200 kmipDeleteServerResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ImportPasswordsOutput importPasswords(ImportPasswords body) throws ApiException { - ApiResponse localVarResp = importPasswordsWithHttpInfo(body); + public Object kmipDeleteServer(KmipDeleteServer body) throws ApiException { + ApiResponse localVarResp = kmipDeleteServerWithHttpInfo(body); return localVarResp.getData(); } /** * * - * @param body (required) - * @return ApiResponse<ImportPasswordsOutput> + * @param body (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 - +
Status Code Description Response Headers
200 importPasswordsResponse wraps response body. -
200 kmipDeleteServerResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse importPasswordsWithHttpInfo(ImportPasswords body) throws ApiException { - okhttp3.Call localVarCall = importPasswordsValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse kmipDeleteServerWithHttpInfo(KmipDeleteServer body) throws ApiException { + okhttp3.Call localVarCall = kmipDeleteServerValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } /** * (asynchronously) * - * @param body (required) + * @param body (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 - +
Status Code Description Response Headers
200 importPasswordsResponse wraps response body. -
200 kmipDeleteServerResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call importPasswordsAsync(ImportPasswords body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call kmipDeleteServerAsync(KmipDeleteServer body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = importPasswordsValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = kmipDeleteServerValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for kmipClientDeleteRule + * Build call for kmipDescribeClient * @param body (optional) * @param _callback Callback for upload/download progress * @return Call to execute @@ -25751,11 +26523,11 @@ public okhttp3.Call importPasswordsAsync(ImportPasswords body, final ApiCallback * @http.response.details - +
Status Code Description Response Headers
200 kmipClientDeleteRuleResponse wraps response body. -
200 kmipDescribeClientResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call kmipClientDeleteRuleCall(KmipClientDeleteRule body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call kmipDescribeClientCall(KmipDescribeClient body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -25773,7 +26545,7 @@ public okhttp3.Call kmipClientDeleteRuleCall(KmipClientDeleteRule body, final Ap Object localVarPostBody = body; // create path and map variables - String localVarPath = "/kmip-client-delete-rule"; + String localVarPath = "/kmip-get-client"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -25802,10 +26574,10 @@ public okhttp3.Call kmipClientDeleteRuleCall(KmipClientDeleteRule body, final Ap } @SuppressWarnings("rawtypes") - private okhttp3.Call kmipClientDeleteRuleValidateBeforeCall(KmipClientDeleteRule body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call kmipDescribeClientValidateBeforeCall(KmipDescribeClient body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = kmipClientDeleteRuleCall(body, _callback); + okhttp3.Call localVarCall = kmipDescribeClientCall(body, _callback); return localVarCall; } @@ -25814,17 +26586,17 @@ private okhttp3.Call kmipClientDeleteRuleValidateBeforeCall(KmipClientDeleteRule * * * @param body (optional) - * @return KMIPClientUpdateResponse + * @return KMIPClientGetResponse * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 kmipClientDeleteRuleResponse wraps response body. -
200 kmipDescribeClientResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public KMIPClientUpdateResponse kmipClientDeleteRule(KmipClientDeleteRule body) throws ApiException { - ApiResponse localVarResp = kmipClientDeleteRuleWithHttpInfo(body); + public KMIPClientGetResponse kmipDescribeClient(KmipDescribeClient body) throws ApiException { + ApiResponse localVarResp = kmipDescribeClientWithHttpInfo(body); return localVarResp.getData(); } @@ -25832,18 +26604,18 @@ public KMIPClientUpdateResponse kmipClientDeleteRule(KmipClientDeleteRule body) * * * @param body (optional) - * @return ApiResponse<KMIPClientUpdateResponse> + * @return ApiResponse<KMIPClientGetResponse> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 kmipClientDeleteRuleResponse wraps response body. -
200 kmipDescribeClientResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse kmipClientDeleteRuleWithHttpInfo(KmipClientDeleteRule body) throws ApiException { - okhttp3.Call localVarCall = kmipClientDeleteRuleValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse kmipDescribeClientWithHttpInfo(KmipDescribeClient body) throws ApiException { + okhttp3.Call localVarCall = kmipDescribeClientValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -25857,19 +26629,19 @@ public ApiResponse kmipClientDeleteRuleWithHttpInfo(Km * @http.response.details - +
Status Code Description Response Headers
200 kmipClientDeleteRuleResponse wraps response body. -
200 kmipDescribeClientResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call kmipClientDeleteRuleAsync(KmipClientDeleteRule body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call kmipDescribeClientAsync(KmipDescribeClient body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = kmipClientDeleteRuleValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = kmipDescribeClientValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for kmipClientSetRule + * Build call for kmipDescribeServer * @param body (optional) * @param _callback Callback for upload/download progress * @return Call to execute @@ -25877,11 +26649,11 @@ public okhttp3.Call kmipClientDeleteRuleAsync(KmipClientDeleteRule body, final A * @http.response.details - +
Status Code Description Response Headers
200 kmipClientSetRuleResponse wraps response body. -
200 kmipDescribeServerResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call kmipClientSetRuleCall(KmipClientSetRule body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call kmipDescribeServerCall(KmipDescribeServer body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -25899,7 +26671,7 @@ public okhttp3.Call kmipClientSetRuleCall(KmipClientSetRule body, final ApiCallb Object localVarPostBody = body; // create path and map variables - String localVarPath = "/kmip-client-set-rule"; + String localVarPath = "/kmip-get-environment"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -25928,10 +26700,10 @@ public okhttp3.Call kmipClientSetRuleCall(KmipClientSetRule body, final ApiCallb } @SuppressWarnings("rawtypes") - private okhttp3.Call kmipClientSetRuleValidateBeforeCall(KmipClientSetRule body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call kmipDescribeServerValidateBeforeCall(KmipDescribeServer body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = kmipClientSetRuleCall(body, _callback); + okhttp3.Call localVarCall = kmipDescribeServerCall(body, _callback); return localVarCall; } @@ -25940,17 +26712,17 @@ private okhttp3.Call kmipClientSetRuleValidateBeforeCall(KmipClientSetRule body, * * * @param body (optional) - * @return KMIPClientUpdateResponse + * @return KmipDescribeServerOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 kmipClientSetRuleResponse wraps response body. -
200 kmipDescribeServerResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public KMIPClientUpdateResponse kmipClientSetRule(KmipClientSetRule body) throws ApiException { - ApiResponse localVarResp = kmipClientSetRuleWithHttpInfo(body); + public KmipDescribeServerOutput kmipDescribeServer(KmipDescribeServer body) throws ApiException { + ApiResponse localVarResp = kmipDescribeServerWithHttpInfo(body); return localVarResp.getData(); } @@ -25958,18 +26730,18 @@ public KMIPClientUpdateResponse kmipClientSetRule(KmipClientSetRule body) throws * * * @param body (optional) - * @return ApiResponse<KMIPClientUpdateResponse> + * @return ApiResponse<KmipDescribeServerOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 kmipClientSetRuleResponse wraps response body. -
200 kmipDescribeServerResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse kmipClientSetRuleWithHttpInfo(KmipClientSetRule body) throws ApiException { - okhttp3.Call localVarCall = kmipClientSetRuleValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse kmipDescribeServerWithHttpInfo(KmipDescribeServer body) throws ApiException { + okhttp3.Call localVarCall = kmipDescribeServerValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -25983,19 +26755,19 @@ public ApiResponse kmipClientSetRuleWithHttpInfo(KmipC * @http.response.details - +
Status Code Description Response Headers
200 kmipClientSetRuleResponse wraps response body. -
200 kmipDescribeServerResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call kmipClientSetRuleAsync(KmipClientSetRule body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call kmipDescribeServerAsync(KmipDescribeServer body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = kmipClientSetRuleValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = kmipDescribeServerValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for kmipCreateClient + * Build call for kmipListClients * @param body (optional) * @param _callback Callback for upload/download progress * @return Call to execute @@ -26003,11 +26775,11 @@ public okhttp3.Call kmipClientSetRuleAsync(KmipClientSetRule body, final ApiCall * @http.response.details - +
Status Code Description Response Headers
200 kmipCreateClientResponse wraps response body. -
200 kmipListClientsResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call kmipCreateClientCall(KmipCreateClient body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call kmipListClientsCall(KmipListClients body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -26025,7 +26797,7 @@ public okhttp3.Call kmipCreateClientCall(KmipCreateClient body, final ApiCallbac Object localVarPostBody = body; // create path and map variables - String localVarPath = "/kmip-create-client"; + String localVarPath = "/kmip-list-clients"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -26054,10 +26826,10 @@ public okhttp3.Call kmipCreateClientCall(KmipCreateClient body, final ApiCallbac } @SuppressWarnings("rawtypes") - private okhttp3.Call kmipCreateClientValidateBeforeCall(KmipCreateClient body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call kmipListClientsValidateBeforeCall(KmipListClients body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = kmipCreateClientCall(body, _callback); + okhttp3.Call localVarCall = kmipListClientsCall(body, _callback); return localVarCall; } @@ -26066,17 +26838,17 @@ private okhttp3.Call kmipCreateClientValidateBeforeCall(KmipCreateClient body, f * * * @param body (optional) - * @return KmipCreateClientOutput + * @return KMIPClientListResponse * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 kmipCreateClientResponse wraps response body. -
200 kmipListClientsResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public KmipCreateClientOutput kmipCreateClient(KmipCreateClient body) throws ApiException { - ApiResponse localVarResp = kmipCreateClientWithHttpInfo(body); + public KMIPClientListResponse kmipListClients(KmipListClients body) throws ApiException { + ApiResponse localVarResp = kmipListClientsWithHttpInfo(body); return localVarResp.getData(); } @@ -26084,18 +26856,18 @@ public KmipCreateClientOutput kmipCreateClient(KmipCreateClient body) throws Api * * * @param body (optional) - * @return ApiResponse<KmipCreateClientOutput> + * @return ApiResponse<KMIPClientListResponse> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 kmipCreateClientResponse wraps response body. -
200 kmipListClientsResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse kmipCreateClientWithHttpInfo(KmipCreateClient body) throws ApiException { - okhttp3.Call localVarCall = kmipCreateClientValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse kmipListClientsWithHttpInfo(KmipListClients body) throws ApiException { + okhttp3.Call localVarCall = kmipListClientsValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -26109,19 +26881,19 @@ public ApiResponse kmipCreateClientWithHttpInfo(KmipCrea * @http.response.details - +
Status Code Description Response Headers
200 kmipCreateClientResponse wraps response body. -
200 kmipListClientsResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call kmipCreateClientAsync(KmipCreateClient body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call kmipListClientsAsync(KmipListClients body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = kmipCreateClientValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = kmipListClientsValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for kmipDeleteClient + * Build call for kmipMoveServer * @param body (optional) * @param _callback Callback for upload/download progress * @return Call to execute @@ -26129,11 +26901,11 @@ public okhttp3.Call kmipCreateClientAsync(KmipCreateClient body, final ApiCallba * @http.response.details - +
Status Code Description Response Headers
200 kmipDeleteClientResponse wraps response body. -
200 kmipMoveServerResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call kmipDeleteClientCall(KmipDeleteClient body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call kmipMoveServerCall(KmipMoveServer body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -26151,7 +26923,7 @@ public okhttp3.Call kmipDeleteClientCall(KmipDeleteClient body, final ApiCallbac Object localVarPostBody = body; // create path and map variables - String localVarPath = "/kmip-delete-client"; + String localVarPath = "/kmip-move-environment"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -26180,10 +26952,10 @@ public okhttp3.Call kmipDeleteClientCall(KmipDeleteClient body, final ApiCallbac } @SuppressWarnings("rawtypes") - private okhttp3.Call kmipDeleteClientValidateBeforeCall(KmipDeleteClient body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call kmipMoveServerValidateBeforeCall(KmipMoveServer body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = kmipDeleteClientCall(body, _callback); + okhttp3.Call localVarCall = kmipMoveServerCall(body, _callback); return localVarCall; } @@ -26192,17 +26964,17 @@ private okhttp3.Call kmipDeleteClientValidateBeforeCall(KmipDeleteClient body, f * * * @param body (optional) - * @return Object + * @return KmipMoveServerOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 kmipDeleteClientResponse wraps response body. -
200 kmipMoveServerResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public Object kmipDeleteClient(KmipDeleteClient body) throws ApiException { - ApiResponse localVarResp = kmipDeleteClientWithHttpInfo(body); + public KmipMoveServerOutput kmipMoveServer(KmipMoveServer body) throws ApiException { + ApiResponse localVarResp = kmipMoveServerWithHttpInfo(body); return localVarResp.getData(); } @@ -26210,18 +26982,18 @@ public Object kmipDeleteClient(KmipDeleteClient body) throws ApiException { * * * @param body (optional) - * @return ApiResponse<Object> + * @return ApiResponse<KmipMoveServerOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 kmipDeleteClientResponse wraps response body. -
200 kmipMoveServerResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse kmipDeleteClientWithHttpInfo(KmipDeleteClient body) throws ApiException { - okhttp3.Call localVarCall = kmipDeleteClientValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse kmipMoveServerWithHttpInfo(KmipMoveServer body) throws ApiException { + okhttp3.Call localVarCall = kmipMoveServerValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -26235,19 +27007,19 @@ public ApiResponse kmipDeleteClientWithHttpInfo(KmipDeleteClient body) t * @http.response.details - +
Status Code Description Response Headers
200 kmipDeleteClientResponse wraps response body. -
200 kmipMoveServerResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call kmipDeleteClientAsync(KmipDeleteClient body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call kmipMoveServerAsync(KmipMoveServer body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = kmipDeleteClientValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = kmipMoveServerValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for kmipDeleteServer + * Build call for kmipRenewClientCertificate * @param body (optional) * @param _callback Callback for upload/download progress * @return Call to execute @@ -26255,11 +27027,11 @@ public okhttp3.Call kmipDeleteClientAsync(KmipDeleteClient body, final ApiCallba * @http.response.details - +
Status Code Description Response Headers
200 kmipDeleteServerResponse wraps response body. -
200 kmipRenewClientCertificateResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call kmipDeleteServerCall(KmipDeleteServer body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call kmipRenewClientCertificateCall(KmipRenewClientCertificate body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -26277,7 +27049,7 @@ public okhttp3.Call kmipDeleteServerCall(KmipDeleteServer body, final ApiCallbac Object localVarPostBody = body; // create path and map variables - String localVarPath = "/kmip-delete-environment"; + String localVarPath = "/kmip-renew-client"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -26302,14 +27074,14 @@ public okhttp3.Call kmipDeleteServerCall(KmipDeleteServer body, final ApiCallbac } String[] localVarAuthNames = new String[] { }; - return localVarApiClient.buildCall(basePath, localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); + return localVarApiClient.buildCall(basePath, localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") - private okhttp3.Call kmipDeleteServerValidateBeforeCall(KmipDeleteServer body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call kmipRenewClientCertificateValidateBeforeCall(KmipRenewClientCertificate body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = kmipDeleteServerCall(body, _callback); + okhttp3.Call localVarCall = kmipRenewClientCertificateCall(body, _callback); return localVarCall; } @@ -26318,17 +27090,17 @@ private okhttp3.Call kmipDeleteServerValidateBeforeCall(KmipDeleteServer body, f * * * @param body (optional) - * @return Object + * @return KmipRenewClientCertificateOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 kmipDeleteServerResponse wraps response body. -
200 kmipRenewClientCertificateResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public Object kmipDeleteServer(KmipDeleteServer body) throws ApiException { - ApiResponse localVarResp = kmipDeleteServerWithHttpInfo(body); + public KmipRenewClientCertificateOutput kmipRenewClientCertificate(KmipRenewClientCertificate body) throws ApiException { + ApiResponse localVarResp = kmipRenewClientCertificateWithHttpInfo(body); return localVarResp.getData(); } @@ -26336,18 +27108,18 @@ public Object kmipDeleteServer(KmipDeleteServer body) throws ApiException { * * * @param body (optional) - * @return ApiResponse<Object> + * @return ApiResponse<KmipRenewClientCertificateOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 kmipDeleteServerResponse wraps response body. -
200 kmipRenewClientCertificateResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse kmipDeleteServerWithHttpInfo(KmipDeleteServer body) throws ApiException { - okhttp3.Call localVarCall = kmipDeleteServerValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse kmipRenewClientCertificateWithHttpInfo(KmipRenewClientCertificate body) throws ApiException { + okhttp3.Call localVarCall = kmipRenewClientCertificateValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -26361,19 +27133,19 @@ public ApiResponse kmipDeleteServerWithHttpInfo(KmipDeleteServer body) t * @http.response.details - +
Status Code Description Response Headers
200 kmipDeleteServerResponse wraps response body. -
200 kmipRenewClientCertificateResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call kmipDeleteServerAsync(KmipDeleteServer body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call kmipRenewClientCertificateAsync(KmipRenewClientCertificate body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = kmipDeleteServerValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = kmipRenewClientCertificateValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for kmipDescribeClient + * Build call for kmipRenewServerCertificate * @param body (optional) * @param _callback Callback for upload/download progress * @return Call to execute @@ -26381,11 +27153,11 @@ public okhttp3.Call kmipDeleteServerAsync(KmipDeleteServer body, final ApiCallba * @http.response.details - +
Status Code Description Response Headers
200 kmipDescribeClientResponse wraps response body. -
200 kmipRenewServerCertificateResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call kmipDescribeClientCall(KmipDescribeClient body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call kmipRenewServerCertificateCall(KmipRenewServerCertificate body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -26403,7 +27175,7 @@ public okhttp3.Call kmipDescribeClientCall(KmipDescribeClient body, final ApiCal Object localVarPostBody = body; // create path and map variables - String localVarPath = "/kmip-get-client"; + String localVarPath = "/kmip-renew-environment"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -26432,10 +27204,10 @@ public okhttp3.Call kmipDescribeClientCall(KmipDescribeClient body, final ApiCal } @SuppressWarnings("rawtypes") - private okhttp3.Call kmipDescribeClientValidateBeforeCall(KmipDescribeClient body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call kmipRenewServerCertificateValidateBeforeCall(KmipRenewServerCertificate body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = kmipDescribeClientCall(body, _callback); + okhttp3.Call localVarCall = kmipRenewServerCertificateCall(body, _callback); return localVarCall; } @@ -26444,17 +27216,17 @@ private okhttp3.Call kmipDescribeClientValidateBeforeCall(KmipDescribeClient bod * * * @param body (optional) - * @return KMIPClientGetResponse + * @return KmipRenewServerCertificateOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 kmipDescribeClientResponse wraps response body. -
200 kmipRenewServerCertificateResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public KMIPClientGetResponse kmipDescribeClient(KmipDescribeClient body) throws ApiException { - ApiResponse localVarResp = kmipDescribeClientWithHttpInfo(body); + public KmipRenewServerCertificateOutput kmipRenewServerCertificate(KmipRenewServerCertificate body) throws ApiException { + ApiResponse localVarResp = kmipRenewServerCertificateWithHttpInfo(body); return localVarResp.getData(); } @@ -26462,18 +27234,18 @@ public KMIPClientGetResponse kmipDescribeClient(KmipDescribeClient body) throws * * * @param body (optional) - * @return ApiResponse<KMIPClientGetResponse> + * @return ApiResponse<KmipRenewServerCertificateOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 kmipDescribeClientResponse wraps response body. -
200 kmipRenewServerCertificateResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse kmipDescribeClientWithHttpInfo(KmipDescribeClient body) throws ApiException { - okhttp3.Call localVarCall = kmipDescribeClientValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse kmipRenewServerCertificateWithHttpInfo(KmipRenewServerCertificate body) throws ApiException { + okhttp3.Call localVarCall = kmipRenewServerCertificateValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -26487,19 +27259,19 @@ public ApiResponse kmipDescribeClientWithHttpInfo(KmipDes * @http.response.details - +
Status Code Description Response Headers
200 kmipDescribeClientResponse wraps response body. -
200 kmipRenewServerCertificateResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call kmipDescribeClientAsync(KmipDescribeClient body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call kmipRenewServerCertificateAsync(KmipRenewServerCertificate body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = kmipDescribeClientValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = kmipRenewServerCertificateValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for kmipDescribeServer + * Build call for kmipServerSetup * @param body (optional) * @param _callback Callback for upload/download progress * @return Call to execute @@ -26507,11 +27279,11 @@ public okhttp3.Call kmipDescribeClientAsync(KmipDescribeClient body, final ApiCa * @http.response.details - +
Status Code Description Response Headers
200 kmipDescribeServerResponse wraps response body. -
200 kmipServerSetupResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call kmipDescribeServerCall(KmipDescribeServer body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call kmipServerSetupCall(KmipServerSetup body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -26529,7 +27301,7 @@ public okhttp3.Call kmipDescribeServerCall(KmipDescribeServer body, final ApiCal Object localVarPostBody = body; // create path and map variables - String localVarPath = "/kmip-get-environment"; + String localVarPath = "/kmip-create-environment"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -26558,10 +27330,10 @@ public okhttp3.Call kmipDescribeServerCall(KmipDescribeServer body, final ApiCal } @SuppressWarnings("rawtypes") - private okhttp3.Call kmipDescribeServerValidateBeforeCall(KmipDescribeServer body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call kmipServerSetupValidateBeforeCall(KmipServerSetup body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = kmipDescribeServerCall(body, _callback); + okhttp3.Call localVarCall = kmipServerSetupCall(body, _callback); return localVarCall; } @@ -26570,17 +27342,17 @@ private okhttp3.Call kmipDescribeServerValidateBeforeCall(KmipDescribeServer bod * * * @param body (optional) - * @return KmipDescribeServerOutput + * @return KMIPEnvironmentCreateResponse * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 kmipDescribeServerResponse wraps response body. -
200 kmipServerSetupResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public KmipDescribeServerOutput kmipDescribeServer(KmipDescribeServer body) throws ApiException { - ApiResponse localVarResp = kmipDescribeServerWithHttpInfo(body); + public KMIPEnvironmentCreateResponse kmipServerSetup(KmipServerSetup body) throws ApiException { + ApiResponse localVarResp = kmipServerSetupWithHttpInfo(body); return localVarResp.getData(); } @@ -26588,18 +27360,18 @@ public KmipDescribeServerOutput kmipDescribeServer(KmipDescribeServer body) thro * * * @param body (optional) - * @return ApiResponse<KmipDescribeServerOutput> + * @return ApiResponse<KMIPEnvironmentCreateResponse> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 kmipDescribeServerResponse wraps response body. -
200 kmipServerSetupResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse kmipDescribeServerWithHttpInfo(KmipDescribeServer body) throws ApiException { - okhttp3.Call localVarCall = kmipDescribeServerValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse kmipServerSetupWithHttpInfo(KmipServerSetup body) throws ApiException { + okhttp3.Call localVarCall = kmipServerSetupValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -26613,19 +27385,19 @@ public ApiResponse kmipDescribeServerWithHttpInfo(Kmip * @http.response.details - +
Status Code Description Response Headers
200 kmipDescribeServerResponse wraps response body. -
200 kmipServerSetupResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call kmipDescribeServerAsync(KmipDescribeServer body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call kmipServerSetupAsync(KmipServerSetup body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = kmipDescribeServerValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = kmipServerSetupValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for kmipListClients + * Build call for kmipSetServerState * @param body (optional) * @param _callback Callback for upload/download progress * @return Call to execute @@ -26633,11 +27405,11 @@ public okhttp3.Call kmipDescribeServerAsync(KmipDescribeServer body, final ApiCa * @http.response.details - +
Status Code Description Response Headers
200 kmipListClientsResponse wraps response body. -
200 kmipSetServerStateResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call kmipListClientsCall(KmipListClients body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call kmipSetServerStateCall(KmipSetServerState body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -26655,7 +27427,7 @@ public okhttp3.Call kmipListClientsCall(KmipListClients body, final ApiCallback Object localVarPostBody = body; // create path and map variables - String localVarPath = "/kmip-list-clients"; + String localVarPath = "/kmip-set-environment-state"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -26684,10 +27456,10 @@ public okhttp3.Call kmipListClientsCall(KmipListClients body, final ApiCallback } @SuppressWarnings("rawtypes") - private okhttp3.Call kmipListClientsValidateBeforeCall(KmipListClients body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call kmipSetServerStateValidateBeforeCall(KmipSetServerState body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = kmipListClientsCall(body, _callback); + okhttp3.Call localVarCall = kmipSetServerStateCall(body, _callback); return localVarCall; } @@ -26696,17 +27468,17 @@ private okhttp3.Call kmipListClientsValidateBeforeCall(KmipListClients body, fin * * * @param body (optional) - * @return KMIPClientListResponse + * @return KmipSetServerStateOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 kmipListClientsResponse wraps response body. -
200 kmipSetServerStateResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public KMIPClientListResponse kmipListClients(KmipListClients body) throws ApiException { - ApiResponse localVarResp = kmipListClientsWithHttpInfo(body); + public KmipSetServerStateOutput kmipSetServerState(KmipSetServerState body) throws ApiException { + ApiResponse localVarResp = kmipSetServerStateWithHttpInfo(body); return localVarResp.getData(); } @@ -26714,18 +27486,18 @@ public KMIPClientListResponse kmipListClients(KmipListClients body) throws ApiEx * * * @param body (optional) - * @return ApiResponse<KMIPClientListResponse> + * @return ApiResponse<KmipSetServerStateOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 kmipListClientsResponse wraps response body. -
200 kmipSetServerStateResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse kmipListClientsWithHttpInfo(KmipListClients body) throws ApiException { - okhttp3.Call localVarCall = kmipListClientsValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse kmipSetServerStateWithHttpInfo(KmipSetServerState body) throws ApiException { + okhttp3.Call localVarCall = kmipSetServerStateValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -26739,31 +27511,31 @@ public ApiResponse kmipListClientsWithHttpInfo(KmipListC * @http.response.details - +
Status Code Description Response Headers
200 kmipListClientsResponse wraps response body. -
200 kmipSetServerStateResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call kmipListClientsAsync(KmipListClients body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call kmipSetServerStateAsync(KmipSetServerState body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = kmipListClientsValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = kmipSetServerStateValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for kmipMoveServer - * @param body (optional) + * Build call for listAuthMethods + * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object * @http.response.details - +
Status Code Description Response Headers
200 kmipMoveServerResponse wraps response body. -
200 listAuthMethodsResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call kmipMoveServerCall(KmipMoveServer body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call listAuthMethodsCall(ListAuthMethods body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -26781,7 +27553,7 @@ public okhttp3.Call kmipMoveServerCall(KmipMoveServer body, final ApiCallback _c Object localVarPostBody = body; // create path and map variables - String localVarPath = "/kmip-move-environment"; + String localVarPath = "/list-auth-methods"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -26810,10 +27582,15 @@ public okhttp3.Call kmipMoveServerCall(KmipMoveServer body, final ApiCallback _c } @SuppressWarnings("rawtypes") - private okhttp3.Call kmipMoveServerValidateBeforeCall(KmipMoveServer body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call listAuthMethodsValidateBeforeCall(ListAuthMethods body, final ApiCallback _callback) throws ApiException { + + // verify the required parameter 'body' is set + if (body == null) { + throw new ApiException("Missing the required parameter 'body' when calling listAuthMethods(Async)"); + } - okhttp3.Call localVarCall = kmipMoveServerCall(body, _callback); + okhttp3.Call localVarCall = listAuthMethodsCall(body, _callback); return localVarCall; } @@ -26821,75 +27598,75 @@ private okhttp3.Call kmipMoveServerValidateBeforeCall(KmipMoveServer body, final /** * * - * @param body (optional) - * @return KmipMoveServerOutput + * @param body (required) + * @return ListAuthMethodsOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 kmipMoveServerResponse wraps response body. -
200 listAuthMethodsResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public KmipMoveServerOutput kmipMoveServer(KmipMoveServer body) throws ApiException { - ApiResponse localVarResp = kmipMoveServerWithHttpInfo(body); + public ListAuthMethodsOutput listAuthMethods(ListAuthMethods body) throws ApiException { + ApiResponse localVarResp = listAuthMethodsWithHttpInfo(body); return localVarResp.getData(); } /** * * - * @param body (optional) - * @return ApiResponse<KmipMoveServerOutput> + * @param body (required) + * @return ApiResponse<ListAuthMethodsOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 kmipMoveServerResponse wraps response body. -
200 listAuthMethodsResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse kmipMoveServerWithHttpInfo(KmipMoveServer body) throws ApiException { - okhttp3.Call localVarCall = kmipMoveServerValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse listAuthMethodsWithHttpInfo(ListAuthMethods body) throws ApiException { + okhttp3.Call localVarCall = listAuthMethodsValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } /** * (asynchronously) * - * @param body (optional) + * @param body (required) * @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 - +
Status Code Description Response Headers
200 kmipMoveServerResponse wraps response body. -
200 listAuthMethodsResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call kmipMoveServerAsync(KmipMoveServer body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call listAuthMethodsAsync(ListAuthMethods body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = kmipMoveServerValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = listAuthMethodsValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for kmipRenewClientCertificate - * @param body (optional) + * Build call for listGateways + * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object * @http.response.details - +
Status Code Description Response Headers
200 kmipRenewClientCertificateResponse wraps response body. -
200 listGatewaysResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call kmipRenewClientCertificateCall(KmipRenewClientCertificate body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call listGatewaysCall(ListGateways body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -26907,7 +27684,7 @@ public okhttp3.Call kmipRenewClientCertificateCall(KmipRenewClientCertificate bo Object localVarPostBody = body; // create path and map variables - String localVarPath = "/kmip-renew-client"; + String localVarPath = "/list-gateways"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -26936,10 +27713,15 @@ public okhttp3.Call kmipRenewClientCertificateCall(KmipRenewClientCertificate bo } @SuppressWarnings("rawtypes") - private okhttp3.Call kmipRenewClientCertificateValidateBeforeCall(KmipRenewClientCertificate body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call listGatewaysValidateBeforeCall(ListGateways body, final ApiCallback _callback) throws ApiException { + + // verify the required parameter 'body' is set + if (body == null) { + throw new ApiException("Missing the required parameter 'body' when calling listGateways(Async)"); + } - okhttp3.Call localVarCall = kmipRenewClientCertificateCall(body, _callback); + okhttp3.Call localVarCall = listGatewaysCall(body, _callback); return localVarCall; } @@ -26947,75 +27729,75 @@ private okhttp3.Call kmipRenewClientCertificateValidateBeforeCall(KmipRenewClien /** * * - * @param body (optional) - * @return KmipRenewClientCertificateOutput + * @param body (required) + * @return GatewaysListResponse * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 kmipRenewClientCertificateResponse wraps response body. -
200 listGatewaysResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public KmipRenewClientCertificateOutput kmipRenewClientCertificate(KmipRenewClientCertificate body) throws ApiException { - ApiResponse localVarResp = kmipRenewClientCertificateWithHttpInfo(body); + public GatewaysListResponse listGateways(ListGateways body) throws ApiException { + ApiResponse localVarResp = listGatewaysWithHttpInfo(body); return localVarResp.getData(); } /** * * - * @param body (optional) - * @return ApiResponse<KmipRenewClientCertificateOutput> + * @param body (required) + * @return ApiResponse<GatewaysListResponse> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 kmipRenewClientCertificateResponse wraps response body. -
200 listGatewaysResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse kmipRenewClientCertificateWithHttpInfo(KmipRenewClientCertificate body) throws ApiException { - okhttp3.Call localVarCall = kmipRenewClientCertificateValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse listGatewaysWithHttpInfo(ListGateways body) throws ApiException { + okhttp3.Call localVarCall = listGatewaysValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } /** * (asynchronously) * - * @param body (optional) + * @param body (required) * @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 - +
Status Code Description Response Headers
200 kmipRenewClientCertificateResponse wraps response body. -
200 listGatewaysResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call kmipRenewClientCertificateAsync(KmipRenewClientCertificate body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call listGatewaysAsync(ListGateways body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = kmipRenewClientCertificateValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = listGatewaysValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for kmipRenewServerCertificate - * @param body (optional) + * Build call for listGroups + * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object * @http.response.details - +
Status Code Description Response Headers
200 kmipRenewServerCertificateResponse wraps response body. -
200 listGroupsResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call kmipRenewServerCertificateCall(KmipRenewServerCertificate body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call listGroupsCall(ListGroups body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -27033,7 +27815,7 @@ public okhttp3.Call kmipRenewServerCertificateCall(KmipRenewServerCertificate bo Object localVarPostBody = body; // create path and map variables - String localVarPath = "/kmip-renew-environment"; + String localVarPath = "/list-group"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -27062,10 +27844,15 @@ public okhttp3.Call kmipRenewServerCertificateCall(KmipRenewServerCertificate bo } @SuppressWarnings("rawtypes") - private okhttp3.Call kmipRenewServerCertificateValidateBeforeCall(KmipRenewServerCertificate body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call listGroupsValidateBeforeCall(ListGroups body, final ApiCallback _callback) throws ApiException { + + // verify the required parameter 'body' is set + if (body == null) { + throw new ApiException("Missing the required parameter 'body' when calling listGroups(Async)"); + } - okhttp3.Call localVarCall = kmipRenewServerCertificateCall(body, _callback); + okhttp3.Call localVarCall = listGroupsCall(body, _callback); return localVarCall; } @@ -27073,75 +27860,75 @@ private okhttp3.Call kmipRenewServerCertificateValidateBeforeCall(KmipRenewServe /** * * - * @param body (optional) - * @return KmipRenewServerCertificateOutput + * @param body (required) + * @return ListGroupsOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 kmipRenewServerCertificateResponse wraps response body. -
200 listGroupsResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public KmipRenewServerCertificateOutput kmipRenewServerCertificate(KmipRenewServerCertificate body) throws ApiException { - ApiResponse localVarResp = kmipRenewServerCertificateWithHttpInfo(body); + public ListGroupsOutput listGroups(ListGroups body) throws ApiException { + ApiResponse localVarResp = listGroupsWithHttpInfo(body); return localVarResp.getData(); } /** * * - * @param body (optional) - * @return ApiResponse<KmipRenewServerCertificateOutput> + * @param body (required) + * @return ApiResponse<ListGroupsOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 kmipRenewServerCertificateResponse wraps response body. -
200 listGroupsResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse kmipRenewServerCertificateWithHttpInfo(KmipRenewServerCertificate body) throws ApiException { - okhttp3.Call localVarCall = kmipRenewServerCertificateValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse listGroupsWithHttpInfo(ListGroups body) throws ApiException { + okhttp3.Call localVarCall = listGroupsValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } /** * (asynchronously) * - * @param body (optional) + * @param body (required) * @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 - +
Status Code Description Response Headers
200 kmipRenewServerCertificateResponse wraps response body. -
200 listGroupsResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call kmipRenewServerCertificateAsync(KmipRenewServerCertificate body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call listGroupsAsync(ListGroups body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = kmipRenewServerCertificateValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = listGroupsValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for kmipServerSetup - * @param body (optional) + * Build call for listItems + * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object * @http.response.details - +
Status Code Description Response Headers
200 kmipServerSetupResponse wraps response body. -
200 listItemsResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call kmipServerSetupCall(KmipServerSetup body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call listItemsCall(ListItems body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -27159,7 +27946,7 @@ public okhttp3.Call kmipServerSetupCall(KmipServerSetup body, final ApiCallback Object localVarPostBody = body; // create path and map variables - String localVarPath = "/kmip-create-environment"; + String localVarPath = "/list-items"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -27188,10 +27975,15 @@ public okhttp3.Call kmipServerSetupCall(KmipServerSetup body, final ApiCallback } @SuppressWarnings("rawtypes") - private okhttp3.Call kmipServerSetupValidateBeforeCall(KmipServerSetup body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call listItemsValidateBeforeCall(ListItems body, final ApiCallback _callback) throws ApiException { + + // verify the required parameter 'body' is set + if (body == null) { + throw new ApiException("Missing the required parameter 'body' when calling listItems(Async)"); + } - okhttp3.Call localVarCall = kmipServerSetupCall(body, _callback); + okhttp3.Call localVarCall = listItemsCall(body, _callback); return localVarCall; } @@ -27199,75 +27991,75 @@ private okhttp3.Call kmipServerSetupValidateBeforeCall(KmipServerSetup body, fin /** * * - * @param body (optional) - * @return KMIPEnvironmentCreateResponse + * @param body (required) + * @return ListItemsInPathOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 kmipServerSetupResponse wraps response body. -
200 listItemsResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public KMIPEnvironmentCreateResponse kmipServerSetup(KmipServerSetup body) throws ApiException { - ApiResponse localVarResp = kmipServerSetupWithHttpInfo(body); + public ListItemsInPathOutput listItems(ListItems body) throws ApiException { + ApiResponse localVarResp = listItemsWithHttpInfo(body); return localVarResp.getData(); } /** * * - * @param body (optional) - * @return ApiResponse<KMIPEnvironmentCreateResponse> + * @param body (required) + * @return ApiResponse<ListItemsInPathOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 kmipServerSetupResponse wraps response body. -
200 listItemsResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse kmipServerSetupWithHttpInfo(KmipServerSetup body) throws ApiException { - okhttp3.Call localVarCall = kmipServerSetupValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse listItemsWithHttpInfo(ListItems body) throws ApiException { + okhttp3.Call localVarCall = listItemsValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } /** * (asynchronously) * - * @param body (optional) + * @param body (required) * @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 - +
Status Code Description Response Headers
200 kmipServerSetupResponse wraps response body. -
200 listItemsResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call kmipServerSetupAsync(KmipServerSetup body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call listItemsAsync(ListItems body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = kmipServerSetupValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = listItemsValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for kmipSetServerState - * @param body (optional) + * Build call for listRoles + * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object * @http.response.details - +
Status Code Description Response Headers
200 kmipSetServerStateResponse wraps response body. -
200 listRolesResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call kmipSetServerStateCall(KmipSetServerState body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call listRolesCall(ListRoles body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -27285,7 +28077,7 @@ public okhttp3.Call kmipSetServerStateCall(KmipSetServerState body, final ApiCal Object localVarPostBody = body; // create path and map variables - String localVarPath = "/kmip-set-environment-state"; + String localVarPath = "/list-roles"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -27314,10 +28106,15 @@ public okhttp3.Call kmipSetServerStateCall(KmipSetServerState body, final ApiCal } @SuppressWarnings("rawtypes") - private okhttp3.Call kmipSetServerStateValidateBeforeCall(KmipSetServerState body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call listRolesValidateBeforeCall(ListRoles body, final ApiCallback _callback) throws ApiException { + + // verify the required parameter 'body' is set + if (body == null) { + throw new ApiException("Missing the required parameter 'body' when calling listRoles(Async)"); + } - okhttp3.Call localVarCall = kmipSetServerStateCall(body, _callback); + okhttp3.Call localVarCall = listRolesCall(body, _callback); return localVarCall; } @@ -27325,63 +28122,63 @@ private okhttp3.Call kmipSetServerStateValidateBeforeCall(KmipSetServerState bod /** * * - * @param body (optional) - * @return KmipSetServerStateOutput + * @param body (required) + * @return ListRolesOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 kmipSetServerStateResponse wraps response body. -
200 listRolesResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public KmipSetServerStateOutput kmipSetServerState(KmipSetServerState body) throws ApiException { - ApiResponse localVarResp = kmipSetServerStateWithHttpInfo(body); + public ListRolesOutput listRoles(ListRoles body) throws ApiException { + ApiResponse localVarResp = listRolesWithHttpInfo(body); return localVarResp.getData(); } /** * * - * @param body (optional) - * @return ApiResponse<KmipSetServerStateOutput> + * @param body (required) + * @return ApiResponse<ListRolesOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 kmipSetServerStateResponse wraps response body. -
200 listRolesResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse kmipSetServerStateWithHttpInfo(KmipSetServerState body) throws ApiException { - okhttp3.Call localVarCall = kmipSetServerStateValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse listRolesWithHttpInfo(ListRoles body) throws ApiException { + okhttp3.Call localVarCall = listRolesValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } /** * (asynchronously) * - * @param body (optional) + * @param body (required) * @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 - +
Status Code Description Response Headers
200 kmipSetServerStateResponse wraps response body. -
200 listRolesResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call kmipSetServerStateAsync(KmipSetServerState body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call listRolesAsync(ListRoles body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = kmipSetServerStateValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = listRolesValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for listAuthMethods + * Build call for listSRABastions * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -27389,11 +28186,11 @@ public okhttp3.Call kmipSetServerStateAsync(KmipSetServerState body, final ApiCa * @http.response.details - +
Status Code Description Response Headers
200 listAuthMethodsResponse wraps response body. -
200 listSRABastionsResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call listAuthMethodsCall(ListAuthMethods body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call listSRABastionsCall(ListSRABastions body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -27411,7 +28208,7 @@ public okhttp3.Call listAuthMethodsCall(ListAuthMethods body, final ApiCallback Object localVarPostBody = body; // create path and map variables - String localVarPath = "/list-auth-methods"; + String localVarPath = "/list-sra-bastions"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -27440,15 +28237,15 @@ public okhttp3.Call listAuthMethodsCall(ListAuthMethods body, final ApiCallback } @SuppressWarnings("rawtypes") - private okhttp3.Call listAuthMethodsValidateBeforeCall(ListAuthMethods body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call listSRABastionsValidateBeforeCall(ListSRABastions body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling listAuthMethods(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling listSRABastions(Async)"); } - okhttp3.Call localVarCall = listAuthMethodsCall(body, _callback); + okhttp3.Call localVarCall = listSRABastionsCall(body, _callback); return localVarCall; } @@ -27457,17 +28254,17 @@ private okhttp3.Call listAuthMethodsValidateBeforeCall(ListAuthMethods body, fin * * * @param body (required) - * @return ListAuthMethodsOutput + * @return BastionsList * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 listAuthMethodsResponse wraps response body. -
200 listSRABastionsResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ListAuthMethodsOutput listAuthMethods(ListAuthMethods body) throws ApiException { - ApiResponse localVarResp = listAuthMethodsWithHttpInfo(body); + public BastionsList listSRABastions(ListSRABastions body) throws ApiException { + ApiResponse localVarResp = listSRABastionsWithHttpInfo(body); return localVarResp.getData(); } @@ -27475,18 +28272,18 @@ public ListAuthMethodsOutput listAuthMethods(ListAuthMethods body) throws ApiExc * * * @param body (required) - * @return ApiResponse<ListAuthMethodsOutput> + * @return ApiResponse<BastionsList> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 listAuthMethodsResponse wraps response body. -
200 listSRABastionsResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse listAuthMethodsWithHttpInfo(ListAuthMethods body) throws ApiException { - okhttp3.Call localVarCall = listAuthMethodsValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse listSRABastionsWithHttpInfo(ListSRABastions body) throws ApiException { + okhttp3.Call localVarCall = listSRABastionsValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -27500,19 +28297,19 @@ public ApiResponse listAuthMethodsWithHttpInfo(ListAuthMe * @http.response.details - +
Status Code Description Response Headers
200 listAuthMethodsResponse wraps response body. -
200 listSRABastionsResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call listAuthMethodsAsync(ListAuthMethods body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call listSRABastionsAsync(ListSRABastions body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = listAuthMethodsValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = listSRABastionsValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for listGateways + * Build call for listSharedItems * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -27520,11 +28317,11 @@ public okhttp3.Call listAuthMethodsAsync(ListAuthMethods body, final ApiCallback * @http.response.details - +
Status Code Description Response Headers
200 listGatewaysResponse wraps response body. -
200 -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call listGatewaysCall(ListGateways body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call listSharedItemsCall(ListSharedItems body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -27542,7 +28339,7 @@ public okhttp3.Call listGatewaysCall(ListGateways body, final ApiCallback _callb Object localVarPostBody = body; // create path and map variables - String localVarPath = "/list-gateways"; + String localVarPath = "/list-shared-items"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -27571,15 +28368,15 @@ public okhttp3.Call listGatewaysCall(ListGateways body, final ApiCallback _callb } @SuppressWarnings("rawtypes") - private okhttp3.Call listGatewaysValidateBeforeCall(ListGateways body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call listSharedItemsValidateBeforeCall(ListSharedItems body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling listGateways(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling listSharedItems(Async)"); } - okhttp3.Call localVarCall = listGatewaysCall(body, _callback); + okhttp3.Call localVarCall = listSharedItemsCall(body, _callback); return localVarCall; } @@ -27588,37 +28385,34 @@ private okhttp3.Call listGatewaysValidateBeforeCall(ListGateways body, final Api * * * @param body (required) - * @return GatewaysListResponse * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 listGatewaysResponse wraps response body. -
200 -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public GatewaysListResponse listGateways(ListGateways body) throws ApiException { - ApiResponse localVarResp = listGatewaysWithHttpInfo(body); - return localVarResp.getData(); + public void listSharedItems(ListSharedItems body) throws ApiException { + listSharedItemsWithHttpInfo(body); } /** * * * @param body (required) - * @return ApiResponse<GatewaysListResponse> + * @return ApiResponse<Void> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 listGatewaysResponse wraps response body. -
200 -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse listGatewaysWithHttpInfo(ListGateways body) throws ApiException { - okhttp3.Call localVarCall = listGatewaysValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); - return localVarApiClient.execute(localVarCall, localVarReturnType); + public ApiResponse listSharedItemsWithHttpInfo(ListSharedItems body) throws ApiException { + okhttp3.Call localVarCall = listSharedItemsValidateBeforeCall(body, null); + return localVarApiClient.execute(localVarCall); } /** @@ -27631,19 +28425,18 @@ public ApiResponse listGatewaysWithHttpInfo(ListGateways b * @http.response.details - +
Status Code Description Response Headers
200 listGatewaysResponse wraps response body. -
200 -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call listGatewaysAsync(ListGateways body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call listSharedItemsAsync(ListSharedItems body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = listGatewaysValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); - localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); + okhttp3.Call localVarCall = listSharedItemsValidateBeforeCall(body, _callback); + localVarApiClient.executeAsync(localVarCall, _callback); return localVarCall; } /** - * Build call for listGroups + * Build call for listTargets * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -27651,11 +28444,11 @@ public okhttp3.Call listGatewaysAsync(ListGateways body, final ApiCallback Status Code Description Response Headers - 200 listGroupsResponse wraps response body. - + 200 listTargetsResponse wraps response body. - 0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. - */ - public okhttp3.Call listGroupsCall(ListGroups body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call listTargetsCall(ListTargets body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -27673,7 +28466,7 @@ public okhttp3.Call listGroupsCall(ListGroups body, final ApiCallback _callback) Object localVarPostBody = body; // create path and map variables - String localVarPath = "/list-group"; + String localVarPath = "/list-targets"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -27702,15 +28495,15 @@ public okhttp3.Call listGroupsCall(ListGroups body, final ApiCallback _callback) } @SuppressWarnings("rawtypes") - private okhttp3.Call listGroupsValidateBeforeCall(ListGroups body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call listTargetsValidateBeforeCall(ListTargets body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling listGroups(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling listTargets(Async)"); } - okhttp3.Call localVarCall = listGroupsCall(body, _callback); + okhttp3.Call localVarCall = listTargetsCall(body, _callback); return localVarCall; } @@ -27719,17 +28512,17 @@ private okhttp3.Call listGroupsValidateBeforeCall(ListGroups body, final ApiCall * * * @param body (required) - * @return ListGroupsOutput + * @return ListTargetsOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 listGroupsResponse wraps response body. -
200 listTargetsResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ListGroupsOutput listGroups(ListGroups body) throws ApiException { - ApiResponse localVarResp = listGroupsWithHttpInfo(body); + public ListTargetsOutput listTargets(ListTargets body) throws ApiException { + ApiResponse localVarResp = listTargetsWithHttpInfo(body); return localVarResp.getData(); } @@ -27737,18 +28530,18 @@ public ListGroupsOutput listGroups(ListGroups body) throws ApiException { * * * @param body (required) - * @return ApiResponse<ListGroupsOutput> + * @return ApiResponse<ListTargetsOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 listGroupsResponse wraps response body. -
200 listTargetsResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse listGroupsWithHttpInfo(ListGroups body) throws ApiException { - okhttp3.Call localVarCall = listGroupsValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse listTargetsWithHttpInfo(ListTargets body) throws ApiException { + okhttp3.Call localVarCall = listTargetsValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -27762,19 +28555,19 @@ public ApiResponse listGroupsWithHttpInfo(ListGroups body) thr * @http.response.details - +
Status Code Description Response Headers
200 listGroupsResponse wraps response body. -
200 listTargetsResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call listGroupsAsync(ListGroups body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call listTargetsAsync(ListTargets body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = listGroupsValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = listTargetsValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for listItems + * Build call for moveObjects * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -27782,11 +28575,11 @@ public okhttp3.Call listGroupsAsync(ListGroups body, final ApiCallback Status Code Description Response Headers - 200 listItemsResponse wraps response body. - + 200 moveObjectsResponse wraps response body. - 0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. - */ - public okhttp3.Call listItemsCall(ListItems body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call moveObjectsCall(MoveObjects body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -27804,7 +28597,7 @@ public okhttp3.Call listItemsCall(ListItems body, final ApiCallback _callback) t Object localVarPostBody = body; // create path and map variables - String localVarPath = "/list-items"; + String localVarPath = "/move-objects"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -27833,15 +28626,15 @@ public okhttp3.Call listItemsCall(ListItems body, final ApiCallback _callback) t } @SuppressWarnings("rawtypes") - private okhttp3.Call listItemsValidateBeforeCall(ListItems body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call moveObjectsValidateBeforeCall(MoveObjects body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling listItems(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling moveObjects(Async)"); } - okhttp3.Call localVarCall = listItemsCall(body, _callback); + okhttp3.Call localVarCall = moveObjectsCall(body, _callback); return localVarCall; } @@ -27850,17 +28643,17 @@ private okhttp3.Call listItemsValidateBeforeCall(ListItems body, final ApiCallba * * * @param body (required) - * @return ListItemsInPathOutput + * @return Object * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 listItemsResponse wraps response body. -
200 moveObjectsResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ListItemsInPathOutput listItems(ListItems body) throws ApiException { - ApiResponse localVarResp = listItemsWithHttpInfo(body); + public Object moveObjects(MoveObjects body) throws ApiException { + ApiResponse localVarResp = moveObjectsWithHttpInfo(body); return localVarResp.getData(); } @@ -27868,18 +28661,18 @@ public ListItemsInPathOutput listItems(ListItems body) throws ApiException { * * * @param body (required) - * @return ApiResponse<ListItemsInPathOutput> + * @return ApiResponse<Object> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 listItemsResponse wraps response body. -
200 moveObjectsResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse listItemsWithHttpInfo(ListItems body) throws ApiException { - okhttp3.Call localVarCall = listItemsValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse moveObjectsWithHttpInfo(MoveObjects body) throws ApiException { + okhttp3.Call localVarCall = moveObjectsValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -27893,31 +28686,31 @@ public ApiResponse listItemsWithHttpInfo(ListItems body) * @http.response.details - +
Status Code Description Response Headers
200 listItemsResponse wraps response body. -
200 moveObjectsResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call listItemsAsync(ListItems body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call moveObjectsAsync(MoveObjects body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = listItemsValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = moveObjectsValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for listRoles - * @param body (required) + * Build call for rawCreds + * @param body (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 - +
Status Code Description Response Headers
200 listRolesResponse wraps response body. -
200 rawCredsResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call listRolesCall(ListRoles body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call rawCredsCall(RawCreds body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -27935,7 +28728,7 @@ public okhttp3.Call listRolesCall(ListRoles body, final ApiCallback _callback) t Object localVarPostBody = body; // create path and map variables - String localVarPath = "/list-roles"; + String localVarPath = "/raw-creds"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -27964,15 +28757,10 @@ public okhttp3.Call listRolesCall(ListRoles body, final ApiCallback _callback) t } @SuppressWarnings("rawtypes") - private okhttp3.Call listRolesValidateBeforeCall(ListRoles body, final ApiCallback _callback) throws ApiException { - - // verify the required parameter 'body' is set - if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling listRoles(Async)"); - } + private okhttp3.Call rawCredsValidateBeforeCall(RawCreds body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = listRolesCall(body, _callback); + okhttp3.Call localVarCall = rawCredsCall(body, _callback); return localVarCall; } @@ -27980,63 +28768,63 @@ private okhttp3.Call listRolesValidateBeforeCall(ListRoles body, final ApiCallba /** * * - * @param body (required) - * @return ListRolesOutput + * @param body (optional) + * @return SystemAccessCredentialsReplyObj * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 listRolesResponse wraps response body. -
200 rawCredsResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ListRolesOutput listRoles(ListRoles body) throws ApiException { - ApiResponse localVarResp = listRolesWithHttpInfo(body); + public SystemAccessCredentialsReplyObj rawCreds(RawCreds body) throws ApiException { + ApiResponse localVarResp = rawCredsWithHttpInfo(body); return localVarResp.getData(); } /** * * - * @param body (required) - * @return ApiResponse<ListRolesOutput> + * @param body (optional) + * @return ApiResponse<SystemAccessCredentialsReplyObj> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 listRolesResponse wraps response body. -
200 rawCredsResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse listRolesWithHttpInfo(ListRoles body) throws ApiException { - okhttp3.Call localVarCall = listRolesValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse rawCredsWithHttpInfo(RawCreds body) throws ApiException { + okhttp3.Call localVarCall = rawCredsValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } /** * (asynchronously) * - * @param body (required) + * @param body (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 - +
Status Code Description Response Headers
200 listRolesResponse wraps response body. -
200 rawCredsResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call listRolesAsync(ListRoles body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call rawCredsAsync(RawCreds body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = listRolesValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = rawCredsValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for listSRABastions + * Build call for refreshKey * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -28044,11 +28832,11 @@ public okhttp3.Call listRolesAsync(ListRoles body, final ApiCallback Status Code Description Response Headers - 200 listSRABastionsResponse wraps response body. - + 200 refreshKeyResponse wraps response body. - 0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. - */ - public okhttp3.Call listSRABastionsCall(ListSRABastions body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call refreshKeyCall(RefreshKey body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -28066,7 +28854,7 @@ public okhttp3.Call listSRABastionsCall(ListSRABastions body, final ApiCallback Object localVarPostBody = body; // create path and map variables - String localVarPath = "/list-sra-bastions"; + String localVarPath = "/refresh-key"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -28095,15 +28883,15 @@ public okhttp3.Call listSRABastionsCall(ListSRABastions body, final ApiCallback } @SuppressWarnings("rawtypes") - private okhttp3.Call listSRABastionsValidateBeforeCall(ListSRABastions body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call refreshKeyValidateBeforeCall(RefreshKey body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling listSRABastions(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling refreshKey(Async)"); } - okhttp3.Call localVarCall = listSRABastionsCall(body, _callback); + okhttp3.Call localVarCall = refreshKeyCall(body, _callback); return localVarCall; } @@ -28112,17 +28900,17 @@ private okhttp3.Call listSRABastionsValidateBeforeCall(ListSRABastions body, fin * * * @param body (required) - * @return BastionsList + * @return RefreshKeyOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 listSRABastionsResponse wraps response body. -
200 refreshKeyResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public BastionsList listSRABastions(ListSRABastions body) throws ApiException { - ApiResponse localVarResp = listSRABastionsWithHttpInfo(body); + public RefreshKeyOutput refreshKey(RefreshKey body) throws ApiException { + ApiResponse localVarResp = refreshKeyWithHttpInfo(body); return localVarResp.getData(); } @@ -28130,18 +28918,18 @@ public BastionsList listSRABastions(ListSRABastions body) throws ApiException { * * * @param body (required) - * @return ApiResponse<BastionsList> + * @return ApiResponse<RefreshKeyOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 listSRABastionsResponse wraps response body. -
200 refreshKeyResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse listSRABastionsWithHttpInfo(ListSRABastions body) throws ApiException { - okhttp3.Call localVarCall = listSRABastionsValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse refreshKeyWithHttpInfo(RefreshKey body) throws ApiException { + okhttp3.Call localVarCall = refreshKeyValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -28155,19 +28943,19 @@ public ApiResponse listSRABastionsWithHttpInfo(ListSRABastions bod * @http.response.details - +
Status Code Description Response Headers
200 listSRABastionsResponse wraps response body. -
200 refreshKeyResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call listSRABastionsAsync(ListSRABastions body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call refreshKeyAsync(RefreshKey body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = listSRABastionsValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = refreshKeyValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for listSharedItems + * Build call for requestAccess * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -28175,11 +28963,11 @@ public okhttp3.Call listSRABastionsAsync(ListSRABastions body, final ApiCallback * @http.response.details - +
Status Code Description Response Headers
200 -
200 requestAccessResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call listSharedItemsCall(ListSharedItems body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call requestAccessCall(RequestAccess body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -28197,7 +28985,7 @@ public okhttp3.Call listSharedItemsCall(ListSharedItems body, final ApiCallback Object localVarPostBody = body; // create path and map variables - String localVarPath = "/list-shared-items"; + String localVarPath = "/request-access"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -28226,15 +29014,15 @@ public okhttp3.Call listSharedItemsCall(ListSharedItems body, final ApiCallback } @SuppressWarnings("rawtypes") - private okhttp3.Call listSharedItemsValidateBeforeCall(ListSharedItems body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call requestAccessValidateBeforeCall(RequestAccess body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling listSharedItems(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling requestAccess(Async)"); } - okhttp3.Call localVarCall = listSharedItemsCall(body, _callback); + okhttp3.Call localVarCall = requestAccessCall(body, _callback); return localVarCall; } @@ -28243,34 +29031,37 @@ private okhttp3.Call listSharedItemsValidateBeforeCall(ListSharedItems body, fin * * * @param body (required) + * @return RequestAccessOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 -
200 requestAccessResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public void listSharedItems(ListSharedItems body) throws ApiException { - listSharedItemsWithHttpInfo(body); + public RequestAccessOutput requestAccess(RequestAccess body) throws ApiException { + ApiResponse localVarResp = requestAccessWithHttpInfo(body); + return localVarResp.getData(); } /** * * * @param body (required) - * @return ApiResponse<Void> + * @return ApiResponse<RequestAccessOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 -
200 requestAccessResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse listSharedItemsWithHttpInfo(ListSharedItems body) throws ApiException { - okhttp3.Call localVarCall = listSharedItemsValidateBeforeCall(body, null); - return localVarApiClient.execute(localVarCall); + public ApiResponse requestAccessWithHttpInfo(RequestAccess body) throws ApiException { + okhttp3.Call localVarCall = requestAccessValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); + return localVarApiClient.execute(localVarCall, localVarReturnType); } /** @@ -28283,18 +29074,19 @@ public ApiResponse listSharedItemsWithHttpInfo(ListSharedItems body) throw * @http.response.details - +
Status Code Description Response Headers
200 -
200 requestAccessResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call listSharedItemsAsync(ListSharedItems body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call requestAccessAsync(RequestAccess body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = listSharedItemsValidateBeforeCall(body, _callback); - localVarApiClient.executeAsync(localVarCall, _callback); + okhttp3.Call localVarCall = requestAccessValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); + localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for listTargets + * Build call for reverseRBAC * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -28302,11 +29094,11 @@ public okhttp3.Call listSharedItemsAsync(ListSharedItems body, final ApiCallback * @http.response.details - +
Status Code Description Response Headers
200 listTargetsResponse wraps response body. -
200 reverseRBACResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call listTargetsCall(ListTargets body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call reverseRBACCall(ReverseRBAC body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -28324,7 +29116,7 @@ public okhttp3.Call listTargetsCall(ListTargets body, final ApiCallback _callbac Object localVarPostBody = body; // create path and map variables - String localVarPath = "/list-targets"; + String localVarPath = "/reverse-rbac"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -28353,15 +29145,15 @@ public okhttp3.Call listTargetsCall(ListTargets body, final ApiCallback _callbac } @SuppressWarnings("rawtypes") - private okhttp3.Call listTargetsValidateBeforeCall(ListTargets body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call reverseRBACValidateBeforeCall(ReverseRBAC body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling listTargets(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling reverseRBAC(Async)"); } - okhttp3.Call localVarCall = listTargetsCall(body, _callback); + okhttp3.Call localVarCall = reverseRBACCall(body, _callback); return localVarCall; } @@ -28370,17 +29162,17 @@ private okhttp3.Call listTargetsValidateBeforeCall(ListTargets body, final ApiCa * * * @param body (required) - * @return ListTargetsOutput + * @return ReverseRBACOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 listTargetsResponse wraps response body. -
200 reverseRBACResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ListTargetsOutput listTargets(ListTargets body) throws ApiException { - ApiResponse localVarResp = listTargetsWithHttpInfo(body); + public ReverseRBACOutput reverseRBAC(ReverseRBAC body) throws ApiException { + ApiResponse localVarResp = reverseRBACWithHttpInfo(body); return localVarResp.getData(); } @@ -28388,18 +29180,18 @@ public ListTargetsOutput listTargets(ListTargets body) throws ApiException { * * * @param body (required) - * @return ApiResponse<ListTargetsOutput> + * @return ApiResponse<ReverseRBACOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 listTargetsResponse wraps response body. -
200 reverseRBACResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse listTargetsWithHttpInfo(ListTargets body) throws ApiException { - okhttp3.Call localVarCall = listTargetsValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse reverseRBACWithHttpInfo(ReverseRBAC body) throws ApiException { + okhttp3.Call localVarCall = reverseRBACValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -28413,31 +29205,30 @@ public ApiResponse listTargetsWithHttpInfo(ListTargets body) * @http.response.details - +
Status Code Description Response Headers
200 listTargetsResponse wraps response body. -
200 reverseRBACResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call listTargetsAsync(ListTargets body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call reverseRBACAsync(ReverseRBAC body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = listTargetsValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = reverseRBACValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for moveObjects - * @param body (required) + * Build call for revokeCreds * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object * @http.response.details - +
Status Code Description Response Headers
200 moveObjectsResponse wraps response body. -
200 revokeCredsResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call moveObjectsCall(MoveObjects body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call revokeCredsCall(final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -28452,10 +29243,10 @@ public okhttp3.Call moveObjectsCall(MoveObjects body, final ApiCallback _callbac basePath = null; } - Object localVarPostBody = body; + Object localVarPostBody = null; // create path and map variables - String localVarPath = "/move-objects"; + String localVarPath = "/revoke-creds"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -28472,7 +29263,7 @@ public okhttp3.Call moveObjectsCall(MoveObjects body, final ApiCallback _callbac } final String[] localVarContentTypes = { - "application/json" + }; final String localVarContentType = localVarApiClient.selectHeaderContentType(localVarContentTypes); if (localVarContentType != null) { @@ -28484,15 +29275,10 @@ public okhttp3.Call moveObjectsCall(MoveObjects body, final ApiCallback _callbac } @SuppressWarnings("rawtypes") - private okhttp3.Call moveObjectsValidateBeforeCall(MoveObjects body, final ApiCallback _callback) throws ApiException { - - // verify the required parameter 'body' is set - if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling moveObjects(Async)"); - } + private okhttp3.Call revokeCredsValidateBeforeCall(final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = moveObjectsCall(body, _callback); + okhttp3.Call localVarCall = revokeCredsCall(_callback); return localVarCall; } @@ -28500,36 +29286,34 @@ private okhttp3.Call moveObjectsValidateBeforeCall(MoveObjects body, final ApiCa /** * * - * @param body (required) * @return Object * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 moveObjectsResponse wraps response body. -
200 revokeCredsResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public Object moveObjects(MoveObjects body) throws ApiException { - ApiResponse localVarResp = moveObjectsWithHttpInfo(body); + public Object revokeCreds() throws ApiException { + ApiResponse localVarResp = revokeCredsWithHttpInfo(); return localVarResp.getData(); } /** * * - * @param body (required) * @return ApiResponse<Object> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 moveObjectsResponse wraps response body. -
200 revokeCredsResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse moveObjectsWithHttpInfo(MoveObjects body) throws ApiException { - okhttp3.Call localVarCall = moveObjectsValidateBeforeCall(body, null); + public ApiResponse revokeCredsWithHttpInfo() throws ApiException { + okhttp3.Call localVarCall = revokeCredsValidateBeforeCall(null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -28537,38 +29321,37 @@ public ApiResponse moveObjectsWithHttpInfo(MoveObjects body) throws ApiE /** * (asynchronously) * - * @param body (required) * @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 - +
Status Code Description Response Headers
200 moveObjectsResponse wraps response body. -
200 revokeCredsResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call moveObjectsAsync(MoveObjects body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call revokeCredsAsync(final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = moveObjectsValidateBeforeCall(body, _callback); + okhttp3.Call localVarCall = revokeCredsValidateBeforeCall(_callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for rawCreds - * @param body (optional) + * Build call for rollbackSecret + * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object * @http.response.details - +
Status Code Description Response Headers
200 rawCredsResponse wraps response body. -
200 rollbackSecretResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call rawCredsCall(RawCreds body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call rollbackSecretCall(RollbackSecret body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -28586,7 +29369,7 @@ public okhttp3.Call rawCredsCall(RawCreds body, final ApiCallback _callback) thr Object localVarPostBody = body; // create path and map variables - String localVarPath = "/raw-creds"; + String localVarPath = "/rollback-secret"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -28615,10 +29398,15 @@ public okhttp3.Call rawCredsCall(RawCreds body, final ApiCallback _callback) thr } @SuppressWarnings("rawtypes") - private okhttp3.Call rawCredsValidateBeforeCall(RawCreds body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call rollbackSecretValidateBeforeCall(RollbackSecret body, final ApiCallback _callback) throws ApiException { + + // verify the required parameter 'body' is set + if (body == null) { + throw new ApiException("Missing the required parameter 'body' when calling rollbackSecret(Async)"); + } - okhttp3.Call localVarCall = rawCredsCall(body, _callback); + okhttp3.Call localVarCall = rollbackSecretCall(body, _callback); return localVarCall; } @@ -28626,63 +29414,63 @@ private okhttp3.Call rawCredsValidateBeforeCall(RawCreds body, final ApiCallback /** * * - * @param body (optional) - * @return SystemAccessCredentialsReplyObj + * @param body (required) + * @return RollbackSecretOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 rawCredsResponse wraps response body. -
200 rollbackSecretResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public SystemAccessCredentialsReplyObj rawCreds(RawCreds body) throws ApiException { - ApiResponse localVarResp = rawCredsWithHttpInfo(body); + public RollbackSecretOutput rollbackSecret(RollbackSecret body) throws ApiException { + ApiResponse localVarResp = rollbackSecretWithHttpInfo(body); return localVarResp.getData(); } /** * * - * @param body (optional) - * @return ApiResponse<SystemAccessCredentialsReplyObj> + * @param body (required) + * @return ApiResponse<RollbackSecretOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 rawCredsResponse wraps response body. -
200 rollbackSecretResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse rawCredsWithHttpInfo(RawCreds body) throws ApiException { - okhttp3.Call localVarCall = rawCredsValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse rollbackSecretWithHttpInfo(RollbackSecret body) throws ApiException { + okhttp3.Call localVarCall = rollbackSecretValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } /** * (asynchronously) * - * @param body (optional) + * @param body (required) * @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 - +
Status Code Description Response Headers
200 rawCredsResponse wraps response body. -
200 rollbackSecretResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call rawCredsAsync(RawCreds body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call rollbackSecretAsync(RollbackSecret body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = rawCredsValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = rollbackSecretValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for refreshKey + * Build call for rotateKey * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -28690,11 +29478,11 @@ public okhttp3.Call rawCredsAsync(RawCreds body, final ApiCallback Status Code Description Response Headers - 200 refreshKeyResponse wraps response body. - + 200 rotateKeyResponse wraps response body. - 0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. - */ - public okhttp3.Call refreshKeyCall(RefreshKey body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call rotateKeyCall(UpdateRotationSettings body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -28712,7 +29500,7 @@ public okhttp3.Call refreshKeyCall(RefreshKey body, final ApiCallback _callback) Object localVarPostBody = body; // create path and map variables - String localVarPath = "/refresh-key"; + String localVarPath = "/rotate-key"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -28741,15 +29529,15 @@ public okhttp3.Call refreshKeyCall(RefreshKey body, final ApiCallback _callback) } @SuppressWarnings("rawtypes") - private okhttp3.Call refreshKeyValidateBeforeCall(RefreshKey body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call rotateKeyValidateBeforeCall(UpdateRotationSettings body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling refreshKey(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling rotateKey(Async)"); } - okhttp3.Call localVarCall = refreshKeyCall(body, _callback); + okhttp3.Call localVarCall = rotateKeyCall(body, _callback); return localVarCall; } @@ -28758,17 +29546,17 @@ private okhttp3.Call refreshKeyValidateBeforeCall(RefreshKey body, final ApiCall * * * @param body (required) - * @return RefreshKeyOutput + * @return RotateKeyOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 refreshKeyResponse wraps response body. -
200 rotateKeyResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public RefreshKeyOutput refreshKey(RefreshKey body) throws ApiException { - ApiResponse localVarResp = refreshKeyWithHttpInfo(body); + public RotateKeyOutput rotateKey(UpdateRotationSettings body) throws ApiException { + ApiResponse localVarResp = rotateKeyWithHttpInfo(body); return localVarResp.getData(); } @@ -28776,18 +29564,18 @@ public RefreshKeyOutput refreshKey(RefreshKey body) throws ApiException { * * * @param body (required) - * @return ApiResponse<RefreshKeyOutput> + * @return ApiResponse<RotateKeyOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 refreshKeyResponse wraps response body. -
200 rotateKeyResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse refreshKeyWithHttpInfo(RefreshKey body) throws ApiException { - okhttp3.Call localVarCall = refreshKeyValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse rotateKeyWithHttpInfo(UpdateRotationSettings body) throws ApiException { + okhttp3.Call localVarCall = rotateKeyValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -28801,19 +29589,19 @@ public ApiResponse refreshKeyWithHttpInfo(RefreshKey body) thr * @http.response.details - +
Status Code Description Response Headers
200 refreshKeyResponse wraps response body. -
200 rotateKeyResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call refreshKeyAsync(RefreshKey body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call rotateKeyAsync(UpdateRotationSettings body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = refreshKeyValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = rotateKeyValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for requestAccess + * Build call for rotateOidcClientSecret * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -28821,11 +29609,11 @@ public okhttp3.Call refreshKeyAsync(RefreshKey body, final ApiCallback Status Code Description Response Headers - 200 requestAccessResponse wraps response body. - + 200 rotateOidcClientResponse wraps response body. - 0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. - */ - public okhttp3.Call requestAccessCall(RequestAccess body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call rotateOidcClientSecretCall(RotateOidcClientSecret body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -28843,7 +29631,7 @@ public okhttp3.Call requestAccessCall(RequestAccess body, final ApiCallback _cal Object localVarPostBody = body; // create path and map variables - String localVarPath = "/request-access"; + String localVarPath = "/rotate-oidc-client-secret"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -28872,15 +29660,15 @@ public okhttp3.Call requestAccessCall(RequestAccess body, final ApiCallback _cal } @SuppressWarnings("rawtypes") - private okhttp3.Call requestAccessValidateBeforeCall(RequestAccess body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call rotateOidcClientSecretValidateBeforeCall(RotateOidcClientSecret body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling requestAccess(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling rotateOidcClientSecret(Async)"); } - okhttp3.Call localVarCall = requestAccessCall(body, _callback); + okhttp3.Call localVarCall = rotateOidcClientSecretCall(body, _callback); return localVarCall; } @@ -28889,17 +29677,17 @@ private okhttp3.Call requestAccessValidateBeforeCall(RequestAccess body, final A * * * @param body (required) - * @return RequestAccessOutput + * @return RotateOidcClientOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 requestAccessResponse wraps response body. -
200 rotateOidcClientResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public RequestAccessOutput requestAccess(RequestAccess body) throws ApiException { - ApiResponse localVarResp = requestAccessWithHttpInfo(body); + public RotateOidcClientOutput rotateOidcClientSecret(RotateOidcClientSecret body) throws ApiException { + ApiResponse localVarResp = rotateOidcClientSecretWithHttpInfo(body); return localVarResp.getData(); } @@ -28907,18 +29695,18 @@ public RequestAccessOutput requestAccess(RequestAccess body) throws ApiException * * * @param body (required) - * @return ApiResponse<RequestAccessOutput> + * @return ApiResponse<RotateOidcClientOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 requestAccessResponse wraps response body. -
200 rotateOidcClientResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse requestAccessWithHttpInfo(RequestAccess body) throws ApiException { - okhttp3.Call localVarCall = requestAccessValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse rotateOidcClientSecretWithHttpInfo(RotateOidcClientSecret body) throws ApiException { + okhttp3.Call localVarCall = rotateOidcClientSecretValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -28932,19 +29720,19 @@ public ApiResponse requestAccessWithHttpInfo(RequestAccess * @http.response.details - +
Status Code Description Response Headers
200 requestAccessResponse wraps response body. -
200 rotateOidcClientResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call requestAccessAsync(RequestAccess body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call rotateOidcClientSecretAsync(RotateOidcClientSecret body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = requestAccessValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = rotateOidcClientSecretValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for reverseRBAC + * Build call for rotateSecret * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -28952,11 +29740,11 @@ public okhttp3.Call requestAccessAsync(RequestAccess body, final ApiCallback Status Code Description Response Headers - 200 reverseRBACResponse wraps response body. - + 200 rotateSecretResponse wraps response body. - 0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. - */ - public okhttp3.Call reverseRBACCall(ReverseRBAC body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call rotateSecretCall(RotateSecret body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -28974,7 +29762,7 @@ public okhttp3.Call reverseRBACCall(ReverseRBAC body, final ApiCallback _callbac Object localVarPostBody = body; // create path and map variables - String localVarPath = "/reverse-rbac"; + String localVarPath = "/gateway-rotate-secret"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -29003,15 +29791,15 @@ public okhttp3.Call reverseRBACCall(ReverseRBAC body, final ApiCallback _callbac } @SuppressWarnings("rawtypes") - private okhttp3.Call reverseRBACValidateBeforeCall(ReverseRBAC body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call rotateSecretValidateBeforeCall(RotateSecret body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling reverseRBAC(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling rotateSecret(Async)"); } - okhttp3.Call localVarCall = reverseRBACCall(body, _callback); + okhttp3.Call localVarCall = rotateSecretCall(body, _callback); return localVarCall; } @@ -29020,17 +29808,17 @@ private okhttp3.Call reverseRBACValidateBeforeCall(ReverseRBAC body, final ApiCa * * * @param body (required) - * @return ReverseRBACOutput + * @return RotatedSecretOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 reverseRBACResponse wraps response body. -
200 rotateSecretResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ReverseRBACOutput reverseRBAC(ReverseRBAC body) throws ApiException { - ApiResponse localVarResp = reverseRBACWithHttpInfo(body); + public RotatedSecretOutput rotateSecret(RotateSecret body) throws ApiException { + ApiResponse localVarResp = rotateSecretWithHttpInfo(body); return localVarResp.getData(); } @@ -29038,18 +29826,18 @@ public ReverseRBACOutput reverseRBAC(ReverseRBAC body) throws ApiException { * * * @param body (required) - * @return ApiResponse<ReverseRBACOutput> + * @return ApiResponse<RotatedSecretOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 reverseRBACResponse wraps response body. -
200 rotateSecretResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse reverseRBACWithHttpInfo(ReverseRBAC body) throws ApiException { - okhttp3.Call localVarCall = reverseRBACValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse rotateSecretWithHttpInfo(RotateSecret body) throws ApiException { + okhttp3.Call localVarCall = rotateSecretValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -29063,30 +29851,31 @@ public ApiResponse reverseRBACWithHttpInfo(ReverseRBAC body) * @http.response.details - +
Status Code Description Response Headers
200 reverseRBACResponse wraps response body. -
200 rotateSecretResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call reverseRBACAsync(ReverseRBAC body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call rotateSecretAsync(RotateSecret body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = reverseRBACValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = rotateSecretValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for revokeCreds + * Build call for setItemState + * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object * @http.response.details - +
Status Code Description Response Headers
200 revokeCredsResponse wraps response body. -
200 setItemStateResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call revokeCredsCall(final ApiCallback _callback) throws ApiException { + public okhttp3.Call setItemStateCall(SetItemState body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -29101,10 +29890,10 @@ public okhttp3.Call revokeCredsCall(final ApiCallback _callback) throws ApiExcep basePath = null; } - Object localVarPostBody = null; + Object localVarPostBody = body; // create path and map variables - String localVarPath = "/revoke-creds"; + String localVarPath = "/set-item-state"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -29121,7 +29910,7 @@ public okhttp3.Call revokeCredsCall(final ApiCallback _callback) throws ApiExcep } final String[] localVarContentTypes = { - + "application/json" }; final String localVarContentType = localVarApiClient.selectHeaderContentType(localVarContentTypes); if (localVarContentType != null) { @@ -29133,10 +29922,15 @@ public okhttp3.Call revokeCredsCall(final ApiCallback _callback) throws ApiExcep } @SuppressWarnings("rawtypes") - private okhttp3.Call revokeCredsValidateBeforeCall(final ApiCallback _callback) throws ApiException { + private okhttp3.Call setItemStateValidateBeforeCall(SetItemState body, final ApiCallback _callback) throws ApiException { + + // verify the required parameter 'body' is set + if (body == null) { + throw new ApiException("Missing the required parameter 'body' when calling setItemState(Async)"); + } - okhttp3.Call localVarCall = revokeCredsCall(_callback); + okhttp3.Call localVarCall = setItemStateCall(body, _callback); return localVarCall; } @@ -29144,34 +29938,36 @@ private okhttp3.Call revokeCredsValidateBeforeCall(final ApiCallback _callback) /** * * + * @param body (required) * @return Object * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 revokeCredsResponse wraps response body. -
200 setItemStateResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public Object revokeCreds() throws ApiException { - ApiResponse localVarResp = revokeCredsWithHttpInfo(); + public Object setItemState(SetItemState body) throws ApiException { + ApiResponse localVarResp = setItemStateWithHttpInfo(body); return localVarResp.getData(); } /** * * + * @param body (required) * @return ApiResponse<Object> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 revokeCredsResponse wraps response body. -
200 setItemStateResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse revokeCredsWithHttpInfo() throws ApiException { - okhttp3.Call localVarCall = revokeCredsValidateBeforeCall(null); + public ApiResponse setItemStateWithHttpInfo(SetItemState body) throws ApiException { + okhttp3.Call localVarCall = setItemStateValidateBeforeCall(body, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -29179,25 +29975,26 @@ public ApiResponse revokeCredsWithHttpInfo() throws ApiException { /** * (asynchronously) * + * @param body (required) * @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 - +
Status Code Description Response Headers
200 revokeCredsResponse wraps response body. -
200 setItemStateResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call revokeCredsAsync(final ApiCallback _callback) throws ApiException { + public okhttp3.Call setItemStateAsync(SetItemState body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = revokeCredsValidateBeforeCall(_callback); + okhttp3.Call localVarCall = setItemStateValidateBeforeCall(body, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for rollbackSecret + * Build call for setRoleRule * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -29205,11 +30002,11 @@ public okhttp3.Call revokeCredsAsync(final ApiCallback _callback) throws * @http.response.details - +
Status Code Description Response Headers
200 rollbackSecretResponse wraps response body. -
200 setRoleRuleResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call rollbackSecretCall(RollbackSecret body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call setRoleRuleCall(SetRoleRule body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -29227,7 +30024,7 @@ public okhttp3.Call rollbackSecretCall(RollbackSecret body, final ApiCallback _c Object localVarPostBody = body; // create path and map variables - String localVarPath = "/rollback-secret"; + String localVarPath = "/set-role-rule"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -29256,15 +30053,15 @@ public okhttp3.Call rollbackSecretCall(RollbackSecret body, final ApiCallback _c } @SuppressWarnings("rawtypes") - private okhttp3.Call rollbackSecretValidateBeforeCall(RollbackSecret body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call setRoleRuleValidateBeforeCall(SetRoleRule body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling rollbackSecret(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling setRoleRule(Async)"); } - okhttp3.Call localVarCall = rollbackSecretCall(body, _callback); + okhttp3.Call localVarCall = setRoleRuleCall(body, _callback); return localVarCall; } @@ -29273,17 +30070,17 @@ private okhttp3.Call rollbackSecretValidateBeforeCall(RollbackSecret body, final * * * @param body (required) - * @return RollbackSecretOutput + * @return Object * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 rollbackSecretResponse wraps response body. -
200 setRoleRuleResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public RollbackSecretOutput rollbackSecret(RollbackSecret body) throws ApiException { - ApiResponse localVarResp = rollbackSecretWithHttpInfo(body); + public Object setRoleRule(SetRoleRule body) throws ApiException { + ApiResponse localVarResp = setRoleRuleWithHttpInfo(body); return localVarResp.getData(); } @@ -29291,18 +30088,18 @@ public RollbackSecretOutput rollbackSecret(RollbackSecret body) throws ApiExcept * * * @param body (required) - * @return ApiResponse<RollbackSecretOutput> + * @return ApiResponse<Object> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 rollbackSecretResponse wraps response body. -
200 setRoleRuleResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse rollbackSecretWithHttpInfo(RollbackSecret body) throws ApiException { - okhttp3.Call localVarCall = rollbackSecretValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse setRoleRuleWithHttpInfo(SetRoleRule body) throws ApiException { + okhttp3.Call localVarCall = setRoleRuleValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -29316,19 +30113,19 @@ public ApiResponse rollbackSecretWithHttpInfo(RollbackSecr * @http.response.details - +
Status Code Description Response Headers
200 rollbackSecretResponse wraps response body. -
200 setRoleRuleResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call rollbackSecretAsync(RollbackSecret body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call setRoleRuleAsync(SetRoleRule body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = rollbackSecretValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = setRoleRuleValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for rotateKey + * Build call for shareItem * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -29336,11 +30133,11 @@ public okhttp3.Call rollbackSecretAsync(RollbackSecret body, final ApiCallback Status Code Description Response Headers - 200 rotateKeyResponse wraps response body. - + 200 - 0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. - */ - public okhttp3.Call rotateKeyCall(UpdateRotationSettings body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call shareItemCall(ShareItem body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -29358,7 +30155,7 @@ public okhttp3.Call rotateKeyCall(UpdateRotationSettings body, final ApiCallback Object localVarPostBody = body; // create path and map variables - String localVarPath = "/rotate-key"; + String localVarPath = "/share-item"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -29387,15 +30184,15 @@ public okhttp3.Call rotateKeyCall(UpdateRotationSettings body, final ApiCallback } @SuppressWarnings("rawtypes") - private okhttp3.Call rotateKeyValidateBeforeCall(UpdateRotationSettings body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call shareItemValidateBeforeCall(ShareItem body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling rotateKey(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling shareItem(Async)"); } - okhttp3.Call localVarCall = rotateKeyCall(body, _callback); + okhttp3.Call localVarCall = shareItemCall(body, _callback); return localVarCall; } @@ -29404,37 +30201,34 @@ private okhttp3.Call rotateKeyValidateBeforeCall(UpdateRotationSettings body, fi * * * @param body (required) - * @return RotateKeyOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 rotateKeyResponse wraps response body. -
200 -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public RotateKeyOutput rotateKey(UpdateRotationSettings body) throws ApiException { - ApiResponse localVarResp = rotateKeyWithHttpInfo(body); - return localVarResp.getData(); + public void shareItem(ShareItem body) throws ApiException { + shareItemWithHttpInfo(body); } /** * * * @param body (required) - * @return ApiResponse<RotateKeyOutput> + * @return ApiResponse<Void> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 rotateKeyResponse wraps response body. -
200 -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse rotateKeyWithHttpInfo(UpdateRotationSettings body) throws ApiException { - okhttp3.Call localVarCall = rotateKeyValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); - return localVarApiClient.execute(localVarCall, localVarReturnType); + public ApiResponse shareItemWithHttpInfo(ShareItem body) throws ApiException { + okhttp3.Call localVarCall = shareItemValidateBeforeCall(body, null); + return localVarApiClient.execute(localVarCall); } /** @@ -29447,19 +30241,18 @@ public ApiResponse rotateKeyWithHttpInfo(UpdateRotationSettings * @http.response.details - +
Status Code Description Response Headers
200 rotateKeyResponse wraps response body. -
200 -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call rotateKeyAsync(UpdateRotationSettings body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call shareItemAsync(ShareItem body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = rotateKeyValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); - localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); + okhttp3.Call localVarCall = shareItemValidateBeforeCall(body, _callback); + localVarApiClient.executeAsync(localVarCall, _callback); return localVarCall; } /** - * Build call for rotateOidcClientSecret + * Build call for signDataWithClassicKey * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -29467,11 +30260,11 @@ public okhttp3.Call rotateKeyAsync(UpdateRotationSettings body, final ApiCallbac * @http.response.details - +
Status Code Description Response Headers
200 rotateOidcClientResponse wraps response body. -
200 signDataWithClassicKeyResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call rotateOidcClientSecretCall(RotateOidcClientSecret body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call signDataWithClassicKeyCall(SignDataWithClassicKey body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -29489,7 +30282,7 @@ public okhttp3.Call rotateOidcClientSecretCall(RotateOidcClientSecret body, fina Object localVarPostBody = body; // create path and map variables - String localVarPath = "/rotate-oidc-client-secret"; + String localVarPath = "/sign-data-with-classic-key"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -29518,15 +30311,15 @@ public okhttp3.Call rotateOidcClientSecretCall(RotateOidcClientSecret body, fina } @SuppressWarnings("rawtypes") - private okhttp3.Call rotateOidcClientSecretValidateBeforeCall(RotateOidcClientSecret body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call signDataWithClassicKeyValidateBeforeCall(SignDataWithClassicKey body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling rotateOidcClientSecret(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling signDataWithClassicKey(Async)"); } - okhttp3.Call localVarCall = rotateOidcClientSecretCall(body, _callback); + okhttp3.Call localVarCall = signDataWithClassicKeyCall(body, _callback); return localVarCall; } @@ -29535,17 +30328,17 @@ private okhttp3.Call rotateOidcClientSecretValidateBeforeCall(RotateOidcClientSe * * * @param body (required) - * @return RotateOidcClientOutput + * @return SignOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 rotateOidcClientResponse wraps response body. -
200 signDataWithClassicKeyResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public RotateOidcClientOutput rotateOidcClientSecret(RotateOidcClientSecret body) throws ApiException { - ApiResponse localVarResp = rotateOidcClientSecretWithHttpInfo(body); + public SignOutput signDataWithClassicKey(SignDataWithClassicKey body) throws ApiException { + ApiResponse localVarResp = signDataWithClassicKeyWithHttpInfo(body); return localVarResp.getData(); } @@ -29553,18 +30346,18 @@ public RotateOidcClientOutput rotateOidcClientSecret(RotateOidcClientSecret body * * * @param body (required) - * @return ApiResponse<RotateOidcClientOutput> + * @return ApiResponse<SignOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 rotateOidcClientResponse wraps response body. -
200 signDataWithClassicKeyResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse rotateOidcClientSecretWithHttpInfo(RotateOidcClientSecret body) throws ApiException { - okhttp3.Call localVarCall = rotateOidcClientSecretValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse signDataWithClassicKeyWithHttpInfo(SignDataWithClassicKey body) throws ApiException { + okhttp3.Call localVarCall = signDataWithClassicKeyValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -29578,19 +30371,19 @@ public ApiResponse rotateOidcClientSecretWithHttpInfo(Ro * @http.response.details - +
Status Code Description Response Headers
200 rotateOidcClientResponse wraps response body. -
200 signDataWithClassicKeyResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call rotateOidcClientSecretAsync(RotateOidcClientSecret body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call signDataWithClassicKeyAsync(SignDataWithClassicKey body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = rotateOidcClientSecretValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = signDataWithClassicKeyValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for rotateSecret + * Build call for signEcDsa * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -29598,11 +30391,11 @@ public okhttp3.Call rotateOidcClientSecretAsync(RotateOidcClientSecret body, fin * @http.response.details - +
Status Code Description Response Headers
200 rotateSecretResponse wraps response body. -
200 signEcDsaResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call rotateSecretCall(RotateSecret body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call signEcDsaCall(SignEcDsa body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -29620,7 +30413,7 @@ public okhttp3.Call rotateSecretCall(RotateSecret body, final ApiCallback _callb Object localVarPostBody = body; // create path and map variables - String localVarPath = "/gateway-rotate-secret"; + String localVarPath = "/sign-ecdsa"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -29649,15 +30442,15 @@ public okhttp3.Call rotateSecretCall(RotateSecret body, final ApiCallback _callb } @SuppressWarnings("rawtypes") - private okhttp3.Call rotateSecretValidateBeforeCall(RotateSecret body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call signEcDsaValidateBeforeCall(SignEcDsa body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling rotateSecret(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling signEcDsa(Async)"); } - okhttp3.Call localVarCall = rotateSecretCall(body, _callback); + okhttp3.Call localVarCall = signEcDsaCall(body, _callback); return localVarCall; } @@ -29666,17 +30459,17 @@ private okhttp3.Call rotateSecretValidateBeforeCall(RotateSecret body, final Api * * * @param body (required) - * @return RotatedSecretOutput + * @return SignEcDsaOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 rotateSecretResponse wraps response body. -
200 signEcDsaResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public RotatedSecretOutput rotateSecret(RotateSecret body) throws ApiException { - ApiResponse localVarResp = rotateSecretWithHttpInfo(body); + public SignEcDsaOutput signEcDsa(SignEcDsa body) throws ApiException { + ApiResponse localVarResp = signEcDsaWithHttpInfo(body); return localVarResp.getData(); } @@ -29684,18 +30477,18 @@ public RotatedSecretOutput rotateSecret(RotateSecret body) throws ApiException { * * * @param body (required) - * @return ApiResponse<RotatedSecretOutput> + * @return ApiResponse<SignEcDsaOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 rotateSecretResponse wraps response body. -
200 signEcDsaResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse rotateSecretWithHttpInfo(RotateSecret body) throws ApiException { - okhttp3.Call localVarCall = rotateSecretValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse signEcDsaWithHttpInfo(SignEcDsa body) throws ApiException { + okhttp3.Call localVarCall = signEcDsaValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -29709,19 +30502,19 @@ public ApiResponse rotateSecretWithHttpInfo(RotateSecret bo * @http.response.details - +
Status Code Description Response Headers
200 rotateSecretResponse wraps response body. -
200 signEcDsaResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call rotateSecretAsync(RotateSecret body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call signEcDsaAsync(SignEcDsa body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = rotateSecretValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = signEcDsaValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for setItemState + * Build call for signGPG * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -29729,11 +30522,11 @@ public okhttp3.Call rotateSecretAsync(RotateSecret body, final ApiCallback Status Code Description Response Headers - 200 setItemStateResponse wraps response body. - + 200 signGPGResponse wraps response body. - 0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. - */ - public okhttp3.Call setItemStateCall(SetItemState body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call signGPGCall(SignGPG body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -29751,7 +30544,7 @@ public okhttp3.Call setItemStateCall(SetItemState body, final ApiCallback _callb Object localVarPostBody = body; // create path and map variables - String localVarPath = "/set-item-state"; + String localVarPath = "/sign-gpg"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -29780,15 +30573,15 @@ public okhttp3.Call setItemStateCall(SetItemState body, final ApiCallback _callb } @SuppressWarnings("rawtypes") - private okhttp3.Call setItemStateValidateBeforeCall(SetItemState body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call signGPGValidateBeforeCall(SignGPG body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling setItemState(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling signGPG(Async)"); } - okhttp3.Call localVarCall = setItemStateCall(body, _callback); + okhttp3.Call localVarCall = signGPGCall(body, _callback); return localVarCall; } @@ -29797,17 +30590,17 @@ private okhttp3.Call setItemStateValidateBeforeCall(SetItemState body, final Api * * * @param body (required) - * @return Object + * @return SignGPGOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 setItemStateResponse wraps response body. -
200 signGPGResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public Object setItemState(SetItemState body) throws ApiException { - ApiResponse localVarResp = setItemStateWithHttpInfo(body); + public SignGPGOutput signGPG(SignGPG body) throws ApiException { + ApiResponse localVarResp = signGPGWithHttpInfo(body); return localVarResp.getData(); } @@ -29815,18 +30608,18 @@ public Object setItemState(SetItemState body) throws ApiException { * * * @param body (required) - * @return ApiResponse<Object> + * @return ApiResponse<SignGPGOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 setItemStateResponse wraps response body. -
200 signGPGResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse setItemStateWithHttpInfo(SetItemState body) throws ApiException { - okhttp3.Call localVarCall = setItemStateValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse signGPGWithHttpInfo(SignGPG body) throws ApiException { + okhttp3.Call localVarCall = signGPGValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -29840,19 +30633,19 @@ public ApiResponse setItemStateWithHttpInfo(SetItemState body) throws Ap * @http.response.details - +
Status Code Description Response Headers
200 setItemStateResponse wraps response body. -
200 signGPGResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call setItemStateAsync(SetItemState body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call signGPGAsync(SignGPG body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = setItemStateValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = signGPGValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for setRoleRule + * Build call for signJWTWithClassicKey * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -29860,11 +30653,11 @@ public okhttp3.Call setItemStateAsync(SetItemState body, final ApiCallback Status Code Description Response Headers - 200 setRoleRuleResponse wraps response body. - + 200 signJWTWithClassicKeyResponse wraps response body. - 0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. - */ - public okhttp3.Call setRoleRuleCall(SetRoleRule body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call signJWTWithClassicKeyCall(SignJWTWithClassicKey body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -29882,7 +30675,7 @@ public okhttp3.Call setRoleRuleCall(SetRoleRule body, final ApiCallback _callbac Object localVarPostBody = body; // create path and map variables - String localVarPath = "/set-role-rule"; + String localVarPath = "/sign-jwt-with-classic-key"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -29911,15 +30704,15 @@ public okhttp3.Call setRoleRuleCall(SetRoleRule body, final ApiCallback _callbac } @SuppressWarnings("rawtypes") - private okhttp3.Call setRoleRuleValidateBeforeCall(SetRoleRule body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call signJWTWithClassicKeyValidateBeforeCall(SignJWTWithClassicKey body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling setRoleRule(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling signJWTWithClassicKey(Async)"); } - okhttp3.Call localVarCall = setRoleRuleCall(body, _callback); + okhttp3.Call localVarCall = signJWTWithClassicKeyCall(body, _callback); return localVarCall; } @@ -29928,17 +30721,17 @@ private okhttp3.Call setRoleRuleValidateBeforeCall(SetRoleRule body, final ApiCa * * * @param body (required) - * @return Object + * @return SignJWTOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 setRoleRuleResponse wraps response body. -
200 signJWTWithClassicKeyResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public Object setRoleRule(SetRoleRule body) throws ApiException { - ApiResponse localVarResp = setRoleRuleWithHttpInfo(body); + public SignJWTOutput signJWTWithClassicKey(SignJWTWithClassicKey body) throws ApiException { + ApiResponse localVarResp = signJWTWithClassicKeyWithHttpInfo(body); return localVarResp.getData(); } @@ -29946,18 +30739,18 @@ public Object setRoleRule(SetRoleRule body) throws ApiException { * * * @param body (required) - * @return ApiResponse<Object> + * @return ApiResponse<SignJWTOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 setRoleRuleResponse wraps response body. -
200 signJWTWithClassicKeyResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse setRoleRuleWithHttpInfo(SetRoleRule body) throws ApiException { - okhttp3.Call localVarCall = setRoleRuleValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse signJWTWithClassicKeyWithHttpInfo(SignJWTWithClassicKey body) throws ApiException { + okhttp3.Call localVarCall = signJWTWithClassicKeyValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -29971,19 +30764,19 @@ public ApiResponse setRoleRuleWithHttpInfo(SetRoleRule body) throws ApiE * @http.response.details - +
Status Code Description Response Headers
200 setRoleRuleResponse wraps response body. -
200 signJWTWithClassicKeyResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call setRoleRuleAsync(SetRoleRule body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call signJWTWithClassicKeyAsync(SignJWTWithClassicKey body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = setRoleRuleValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = signJWTWithClassicKeyValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for shareItem + * Build call for signPKCS1 * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -29991,11 +30784,11 @@ public okhttp3.Call setRoleRuleAsync(SetRoleRule body, final ApiCallback * @http.response.details - +
Status Code Description Response Headers
200 -
200 signPKCS1Response wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call shareItemCall(ShareItem body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call signPKCS1Call(SignPKCS1 body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -30013,7 +30806,7 @@ public okhttp3.Call shareItemCall(ShareItem body, final ApiCallback _callback) t Object localVarPostBody = body; // create path and map variables - String localVarPath = "/share-item"; + String localVarPath = "/sign-pkcs1"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -30042,15 +30835,15 @@ public okhttp3.Call shareItemCall(ShareItem body, final ApiCallback _callback) t } @SuppressWarnings("rawtypes") - private okhttp3.Call shareItemValidateBeforeCall(ShareItem body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call signPKCS1ValidateBeforeCall(SignPKCS1 body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling shareItem(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling signPKCS1(Async)"); } - okhttp3.Call localVarCall = shareItemCall(body, _callback); + okhttp3.Call localVarCall = signPKCS1Call(body, _callback); return localVarCall; } @@ -30059,34 +30852,37 @@ private okhttp3.Call shareItemValidateBeforeCall(ShareItem body, final ApiCallba * * * @param body (required) + * @return SignPKCS1Output * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 -
200 signPKCS1Response wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public void shareItem(ShareItem body) throws ApiException { - shareItemWithHttpInfo(body); + public SignPKCS1Output signPKCS1(SignPKCS1 body) throws ApiException { + ApiResponse localVarResp = signPKCS1WithHttpInfo(body); + return localVarResp.getData(); } /** * * * @param body (required) - * @return ApiResponse<Void> + * @return ApiResponse<SignPKCS1Output> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 -
200 signPKCS1Response wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse shareItemWithHttpInfo(ShareItem body) throws ApiException { - okhttp3.Call localVarCall = shareItemValidateBeforeCall(body, null); - return localVarApiClient.execute(localVarCall); + public ApiResponse signPKCS1WithHttpInfo(SignPKCS1 body) throws ApiException { + okhttp3.Call localVarCall = signPKCS1ValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); + return localVarApiClient.execute(localVarCall, localVarReturnType); } /** @@ -30099,18 +30895,19 @@ public ApiResponse shareItemWithHttpInfo(ShareItem body) throws ApiExcepti * @http.response.details - +
Status Code Description Response Headers
200 -
200 signPKCS1Response wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call shareItemAsync(ShareItem body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call signPKCS1Async(SignPKCS1 body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = shareItemValidateBeforeCall(body, _callback); - localVarApiClient.executeAsync(localVarCall, _callback); + okhttp3.Call localVarCall = signPKCS1ValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); + localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for signDataWithClassicKey + * Build call for signPKICertWithClassicKey * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -30118,11 +30915,11 @@ public okhttp3.Call shareItemAsync(ShareItem body, final ApiCallback _call * @http.response.details - +
Status Code Description Response Headers
200 signDataWithClassicKeyResponse wraps response body. -
200 signPKICertWithClassicKeyResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call signDataWithClassicKeyCall(SignDataWithClassicKey body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call signPKICertWithClassicKeyCall(SignPKICertWithClassicKey body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -30140,7 +30937,7 @@ public okhttp3.Call signDataWithClassicKeyCall(SignDataWithClassicKey body, fina Object localVarPostBody = body; // create path and map variables - String localVarPath = "/sign-data-with-classic-key"; + String localVarPath = "/sign-pki-cert-with-classic-key"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -30169,15 +30966,15 @@ public okhttp3.Call signDataWithClassicKeyCall(SignDataWithClassicKey body, fina } @SuppressWarnings("rawtypes") - private okhttp3.Call signDataWithClassicKeyValidateBeforeCall(SignDataWithClassicKey body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call signPKICertWithClassicKeyValidateBeforeCall(SignPKICertWithClassicKey body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling signDataWithClassicKey(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling signPKICertWithClassicKey(Async)"); } - okhttp3.Call localVarCall = signDataWithClassicKeyCall(body, _callback); + okhttp3.Call localVarCall = signPKICertWithClassicKeyCall(body, _callback); return localVarCall; } @@ -30186,17 +30983,17 @@ private okhttp3.Call signDataWithClassicKeyValidateBeforeCall(SignDataWithClassi * * * @param body (required) - * @return SignOutput + * @return SignPKICertOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 signDataWithClassicKeyResponse wraps response body. -
200 signPKICertWithClassicKeyResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public SignOutput signDataWithClassicKey(SignDataWithClassicKey body) throws ApiException { - ApiResponse localVarResp = signDataWithClassicKeyWithHttpInfo(body); + public SignPKICertOutput signPKICertWithClassicKey(SignPKICertWithClassicKey body) throws ApiException { + ApiResponse localVarResp = signPKICertWithClassicKeyWithHttpInfo(body); return localVarResp.getData(); } @@ -30204,18 +31001,18 @@ public SignOutput signDataWithClassicKey(SignDataWithClassicKey body) throws Api * * * @param body (required) - * @return ApiResponse<SignOutput> + * @return ApiResponse<SignPKICertOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 signDataWithClassicKeyResponse wraps response body. -
200 signPKICertWithClassicKeyResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse signDataWithClassicKeyWithHttpInfo(SignDataWithClassicKey body) throws ApiException { - okhttp3.Call localVarCall = signDataWithClassicKeyValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse signPKICertWithClassicKeyWithHttpInfo(SignPKICertWithClassicKey body) throws ApiException { + okhttp3.Call localVarCall = signPKICertWithClassicKeyValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -30229,19 +31026,19 @@ public ApiResponse signDataWithClassicKeyWithHttpInfo(SignDataWithCl * @http.response.details - +
Status Code Description Response Headers
200 signDataWithClassicKeyResponse wraps response body. -
200 signPKICertWithClassicKeyResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call signDataWithClassicKeyAsync(SignDataWithClassicKey body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call signPKICertWithClassicKeyAsync(SignPKICertWithClassicKey body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = signDataWithClassicKeyValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = signPKICertWithClassicKeyValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for signEcDsa + * Build call for signRsaSsaPss * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -30249,11 +31046,11 @@ public okhttp3.Call signDataWithClassicKeyAsync(SignDataWithClassicKey body, fin * @http.response.details - +
Status Code Description Response Headers
200 signEcDsaResponse wraps response body. -
200 signRsaSsaPssResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call signEcDsaCall(SignEcDsa body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call signRsaSsaPssCall(SignRsaSsaPss body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -30271,7 +31068,7 @@ public okhttp3.Call signEcDsaCall(SignEcDsa body, final ApiCallback _callback) t Object localVarPostBody = body; // create path and map variables - String localVarPath = "/sign-ecdsa"; + String localVarPath = "/sign-rsassa-pss"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -30300,15 +31097,15 @@ public okhttp3.Call signEcDsaCall(SignEcDsa body, final ApiCallback _callback) t } @SuppressWarnings("rawtypes") - private okhttp3.Call signEcDsaValidateBeforeCall(SignEcDsa body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call signRsaSsaPssValidateBeforeCall(SignRsaSsaPss body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling signEcDsa(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling signRsaSsaPss(Async)"); } - okhttp3.Call localVarCall = signEcDsaCall(body, _callback); + okhttp3.Call localVarCall = signRsaSsaPssCall(body, _callback); return localVarCall; } @@ -30317,17 +31114,17 @@ private okhttp3.Call signEcDsaValidateBeforeCall(SignEcDsa body, final ApiCallba * * * @param body (required) - * @return SignEcDsaOutput + * @return SignRsaSsaPssOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 signEcDsaResponse wraps response body. -
200 signRsaSsaPssResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public SignEcDsaOutput signEcDsa(SignEcDsa body) throws ApiException { - ApiResponse localVarResp = signEcDsaWithHttpInfo(body); + public SignRsaSsaPssOutput signRsaSsaPss(SignRsaSsaPss body) throws ApiException { + ApiResponse localVarResp = signRsaSsaPssWithHttpInfo(body); return localVarResp.getData(); } @@ -30335,18 +31132,18 @@ public SignEcDsaOutput signEcDsa(SignEcDsa body) throws ApiException { * * * @param body (required) - * @return ApiResponse<SignEcDsaOutput> + * @return ApiResponse<SignRsaSsaPssOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 signEcDsaResponse wraps response body. -
200 signRsaSsaPssResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse signEcDsaWithHttpInfo(SignEcDsa body) throws ApiException { - okhttp3.Call localVarCall = signEcDsaValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse signRsaSsaPssWithHttpInfo(SignRsaSsaPss body) throws ApiException { + okhttp3.Call localVarCall = signRsaSsaPssValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -30360,19 +31157,19 @@ public ApiResponse signEcDsaWithHttpInfo(SignEcDsa body) throws * @http.response.details - +
Status Code Description Response Headers
200 signEcDsaResponse wraps response body. -
200 signRsaSsaPssResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call signEcDsaAsync(SignEcDsa body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call signRsaSsaPssAsync(SignRsaSsaPss body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = signEcDsaValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = signRsaSsaPssValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for signGPG + * Build call for staticCredsAuth * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -30380,11 +31177,11 @@ public okhttp3.Call signEcDsaAsync(SignEcDsa body, final ApiCallback Status Code Description Response Headers - 200 signGPGResponse wraps response body. - + 200 staticCredsAuthResponse wraps response body. - 0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. - */ - public okhttp3.Call signGPGCall(SignGPG body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call staticCredsAuthCall(StaticCredsAuth body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -30402,7 +31199,7 @@ public okhttp3.Call signGPGCall(SignGPG body, final ApiCallback _callback) throw Object localVarPostBody = body; // create path and map variables - String localVarPath = "/sign-gpg"; + String localVarPath = "/static-creds-auth"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -30431,15 +31228,15 @@ public okhttp3.Call signGPGCall(SignGPG body, final ApiCallback _callback) throw } @SuppressWarnings("rawtypes") - private okhttp3.Call signGPGValidateBeforeCall(SignGPG body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call staticCredsAuthValidateBeforeCall(StaticCredsAuth body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling signGPG(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling staticCredsAuth(Async)"); } - okhttp3.Call localVarCall = signGPGCall(body, _callback); + okhttp3.Call localVarCall = staticCredsAuthCall(body, _callback); return localVarCall; } @@ -30448,17 +31245,17 @@ private okhttp3.Call signGPGValidateBeforeCall(SignGPG body, final ApiCallback _ * * * @param body (required) - * @return SignGPGOutput + * @return StaticCredsAuthOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 signGPGResponse wraps response body. -
200 staticCredsAuthResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public SignGPGOutput signGPG(SignGPG body) throws ApiException { - ApiResponse localVarResp = signGPGWithHttpInfo(body); + public StaticCredsAuthOutput staticCredsAuth(StaticCredsAuth body) throws ApiException { + ApiResponse localVarResp = staticCredsAuthWithHttpInfo(body); return localVarResp.getData(); } @@ -30466,18 +31263,18 @@ public SignGPGOutput signGPG(SignGPG body) throws ApiException { * * * @param body (required) - * @return ApiResponse<SignGPGOutput> + * @return ApiResponse<StaticCredsAuthOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 signGPGResponse wraps response body. -
200 staticCredsAuthResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse signGPGWithHttpInfo(SignGPG body) throws ApiException { - okhttp3.Call localVarCall = signGPGValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse staticCredsAuthWithHttpInfo(StaticCredsAuth body) throws ApiException { + okhttp3.Call localVarCall = staticCredsAuthValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -30491,19 +31288,19 @@ public ApiResponse signGPGWithHttpInfo(SignGPG body) throws ApiEx * @http.response.details - +
Status Code Description Response Headers
200 signGPGResponse wraps response body. -
200 staticCredsAuthResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call signGPGAsync(SignGPG body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call staticCredsAuthAsync(StaticCredsAuth body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = signGPGValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = staticCredsAuthValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for signJWTWithClassicKey + * Build call for tokenize * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -30511,11 +31308,11 @@ public okhttp3.Call signGPGAsync(SignGPG body, final ApiCallback * @http.response.details - +
Status Code Description Response Headers
200 signJWTWithClassicKeyResponse wraps response body. -
200 tokenizeResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call signJWTWithClassicKeyCall(SignJWTWithClassicKey body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call tokenizeCall(Tokenize body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -30533,7 +31330,7 @@ public okhttp3.Call signJWTWithClassicKeyCall(SignJWTWithClassicKey body, final Object localVarPostBody = body; // create path and map variables - String localVarPath = "/sign-jwt-with-classic-key"; + String localVarPath = "/tokenize"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -30562,15 +31359,15 @@ public okhttp3.Call signJWTWithClassicKeyCall(SignJWTWithClassicKey body, final } @SuppressWarnings("rawtypes") - private okhttp3.Call signJWTWithClassicKeyValidateBeforeCall(SignJWTWithClassicKey body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call tokenizeValidateBeforeCall(Tokenize body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling signJWTWithClassicKey(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling tokenize(Async)"); } - okhttp3.Call localVarCall = signJWTWithClassicKeyCall(body, _callback); + okhttp3.Call localVarCall = tokenizeCall(body, _callback); return localVarCall; } @@ -30579,17 +31376,17 @@ private okhttp3.Call signJWTWithClassicKeyValidateBeforeCall(SignJWTWithClassicK * * * @param body (required) - * @return SignJWTOutput + * @return TokenizeOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 signJWTWithClassicKeyResponse wraps response body. -
200 tokenizeResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public SignJWTOutput signJWTWithClassicKey(SignJWTWithClassicKey body) throws ApiException { - ApiResponse localVarResp = signJWTWithClassicKeyWithHttpInfo(body); + public TokenizeOutput tokenize(Tokenize body) throws ApiException { + ApiResponse localVarResp = tokenizeWithHttpInfo(body); return localVarResp.getData(); } @@ -30597,18 +31394,18 @@ public SignJWTOutput signJWTWithClassicKey(SignJWTWithClassicKey body) throws Ap * * * @param body (required) - * @return ApiResponse<SignJWTOutput> + * @return ApiResponse<TokenizeOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 signJWTWithClassicKeyResponse wraps response body. -
200 tokenizeResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse signJWTWithClassicKeyWithHttpInfo(SignJWTWithClassicKey body) throws ApiException { - okhttp3.Call localVarCall = signJWTWithClassicKeyValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse tokenizeWithHttpInfo(Tokenize body) throws ApiException { + okhttp3.Call localVarCall = tokenizeValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -30622,19 +31419,19 @@ public ApiResponse signJWTWithClassicKeyWithHttpInfo(SignJWTWithC * @http.response.details - +
Status Code Description Response Headers
200 signJWTWithClassicKeyResponse wraps response body. -
200 tokenizeResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call signJWTWithClassicKeyAsync(SignJWTWithClassicKey body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call tokenizeAsync(Tokenize body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = signJWTWithClassicKeyValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = tokenizeValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for signPKCS1 + * Build call for uidCreateChildToken * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -30642,11 +31439,11 @@ public okhttp3.Call signJWTWithClassicKeyAsync(SignJWTWithClassicKey body, final * @http.response.details - +
Status Code Description Response Headers
200 signPKCS1Response wraps response body. -
200 uidCreateChildTokenResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call signPKCS1Call(SignPKCS1 body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call uidCreateChildTokenCall(UidCreateChildToken body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -30664,7 +31461,7 @@ public okhttp3.Call signPKCS1Call(SignPKCS1 body, final ApiCallback _callback) t Object localVarPostBody = body; // create path and map variables - String localVarPath = "/sign-pkcs1"; + String localVarPath = "/uid-create-child-token"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -30693,15 +31490,15 @@ public okhttp3.Call signPKCS1Call(SignPKCS1 body, final ApiCallback _callback) t } @SuppressWarnings("rawtypes") - private okhttp3.Call signPKCS1ValidateBeforeCall(SignPKCS1 body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call uidCreateChildTokenValidateBeforeCall(UidCreateChildToken body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling signPKCS1(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling uidCreateChildToken(Async)"); } - okhttp3.Call localVarCall = signPKCS1Call(body, _callback); + okhttp3.Call localVarCall = uidCreateChildTokenCall(body, _callback); return localVarCall; } @@ -30710,17 +31507,17 @@ private okhttp3.Call signPKCS1ValidateBeforeCall(SignPKCS1 body, final ApiCallba * * * @param body (required) - * @return SignPKCS1Output + * @return UidCreateChildTokenOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 signPKCS1Response wraps response body. -
200 uidCreateChildTokenResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public SignPKCS1Output signPKCS1(SignPKCS1 body) throws ApiException { - ApiResponse localVarResp = signPKCS1WithHttpInfo(body); + public UidCreateChildTokenOutput uidCreateChildToken(UidCreateChildToken body) throws ApiException { + ApiResponse localVarResp = uidCreateChildTokenWithHttpInfo(body); return localVarResp.getData(); } @@ -30728,18 +31525,18 @@ public SignPKCS1Output signPKCS1(SignPKCS1 body) throws ApiException { * * * @param body (required) - * @return ApiResponse<SignPKCS1Output> + * @return ApiResponse<UidCreateChildTokenOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 signPKCS1Response wraps response body. -
200 uidCreateChildTokenResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse signPKCS1WithHttpInfo(SignPKCS1 body) throws ApiException { - okhttp3.Call localVarCall = signPKCS1ValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse uidCreateChildTokenWithHttpInfo(UidCreateChildToken body) throws ApiException { + okhttp3.Call localVarCall = uidCreateChildTokenValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -30753,19 +31550,19 @@ public ApiResponse signPKCS1WithHttpInfo(SignPKCS1 body) throws * @http.response.details - +
Status Code Description Response Headers
200 signPKCS1Response wraps response body. -
200 uidCreateChildTokenResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call signPKCS1Async(SignPKCS1 body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call uidCreateChildTokenAsync(UidCreateChildToken body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = signPKCS1ValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = uidCreateChildTokenValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for signPKICertWithClassicKey + * Build call for uidGenerateToken * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -30773,11 +31570,11 @@ public okhttp3.Call signPKCS1Async(SignPKCS1 body, final ApiCallback Status Code Description Response Headers - 200 signPKICertWithClassicKeyResponse wraps response body. - + 200 uidGenerateTokenResponse wraps response body. - 0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. - */ - public okhttp3.Call signPKICertWithClassicKeyCall(SignPKICertWithClassicKey body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call uidGenerateTokenCall(UidGenerateToken body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -30795,7 +31592,7 @@ public okhttp3.Call signPKICertWithClassicKeyCall(SignPKICertWithClassicKey body Object localVarPostBody = body; // create path and map variables - String localVarPath = "/sign-pki-cert-with-classic-key"; + String localVarPath = "/uid-generate-token"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -30824,15 +31621,15 @@ public okhttp3.Call signPKICertWithClassicKeyCall(SignPKICertWithClassicKey body } @SuppressWarnings("rawtypes") - private okhttp3.Call signPKICertWithClassicKeyValidateBeforeCall(SignPKICertWithClassicKey body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call uidGenerateTokenValidateBeforeCall(UidGenerateToken body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling signPKICertWithClassicKey(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling uidGenerateToken(Async)"); } - okhttp3.Call localVarCall = signPKICertWithClassicKeyCall(body, _callback); + okhttp3.Call localVarCall = uidGenerateTokenCall(body, _callback); return localVarCall; } @@ -30841,17 +31638,17 @@ private okhttp3.Call signPKICertWithClassicKeyValidateBeforeCall(SignPKICertWith * * * @param body (required) - * @return SignPKICertOutput + * @return UidGenerateTokenOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 signPKICertWithClassicKeyResponse wraps response body. -
200 uidGenerateTokenResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public SignPKICertOutput signPKICertWithClassicKey(SignPKICertWithClassicKey body) throws ApiException { - ApiResponse localVarResp = signPKICertWithClassicKeyWithHttpInfo(body); + public UidGenerateTokenOutput uidGenerateToken(UidGenerateToken body) throws ApiException { + ApiResponse localVarResp = uidGenerateTokenWithHttpInfo(body); return localVarResp.getData(); } @@ -30859,18 +31656,18 @@ public SignPKICertOutput signPKICertWithClassicKey(SignPKICertWithClassicKey bod * * * @param body (required) - * @return ApiResponse<SignPKICertOutput> + * @return ApiResponse<UidGenerateTokenOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 signPKICertWithClassicKeyResponse wraps response body. -
200 uidGenerateTokenResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse signPKICertWithClassicKeyWithHttpInfo(SignPKICertWithClassicKey body) throws ApiException { - okhttp3.Call localVarCall = signPKICertWithClassicKeyValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse uidGenerateTokenWithHttpInfo(UidGenerateToken body) throws ApiException { + okhttp3.Call localVarCall = uidGenerateTokenValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -30884,19 +31681,19 @@ public ApiResponse signPKICertWithClassicKeyWithHttpInfo(Sign * @http.response.details - +
Status Code Description Response Headers
200 signPKICertWithClassicKeyResponse wraps response body. -
200 uidGenerateTokenResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call signPKICertWithClassicKeyAsync(SignPKICertWithClassicKey body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call uidGenerateTokenAsync(UidGenerateToken body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = signPKICertWithClassicKeyValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = uidGenerateTokenValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for signRsaSsaPss + * Build call for uidListChildren * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -30904,11 +31701,11 @@ public okhttp3.Call signPKICertWithClassicKeyAsync(SignPKICertWithClassicKey bod * @http.response.details - +
Status Code Description Response Headers
200 signRsaSsaPssResponse wraps response body. -
200 uidListChildrenResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call signRsaSsaPssCall(SignRsaSsaPss body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call uidListChildrenCall(UidListChildren body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -30926,7 +31723,7 @@ public okhttp3.Call signRsaSsaPssCall(SignRsaSsaPss body, final ApiCallback _cal Object localVarPostBody = body; // create path and map variables - String localVarPath = "/sign-rsassa-pss"; + String localVarPath = "/uid-list-children"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -30955,15 +31752,15 @@ public okhttp3.Call signRsaSsaPssCall(SignRsaSsaPss body, final ApiCallback _cal } @SuppressWarnings("rawtypes") - private okhttp3.Call signRsaSsaPssValidateBeforeCall(SignRsaSsaPss body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call uidListChildrenValidateBeforeCall(UidListChildren body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling signRsaSsaPss(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling uidListChildren(Async)"); } - okhttp3.Call localVarCall = signRsaSsaPssCall(body, _callback); + okhttp3.Call localVarCall = uidListChildrenCall(body, _callback); return localVarCall; } @@ -30972,17 +31769,17 @@ private okhttp3.Call signRsaSsaPssValidateBeforeCall(SignRsaSsaPss body, final A * * * @param body (required) - * @return SignRsaSsaPssOutput + * @return UniversalIdentityDetails * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 signRsaSsaPssResponse wraps response body. -
200 uidListChildrenResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public SignRsaSsaPssOutput signRsaSsaPss(SignRsaSsaPss body) throws ApiException { - ApiResponse localVarResp = signRsaSsaPssWithHttpInfo(body); + public UniversalIdentityDetails uidListChildren(UidListChildren body) throws ApiException { + ApiResponse localVarResp = uidListChildrenWithHttpInfo(body); return localVarResp.getData(); } @@ -30990,18 +31787,18 @@ public SignRsaSsaPssOutput signRsaSsaPss(SignRsaSsaPss body) throws ApiException * * * @param body (required) - * @return ApiResponse<SignRsaSsaPssOutput> + * @return ApiResponse<UniversalIdentityDetails> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 signRsaSsaPssResponse wraps response body. -
200 uidListChildrenResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse signRsaSsaPssWithHttpInfo(SignRsaSsaPss body) throws ApiException { - okhttp3.Call localVarCall = signRsaSsaPssValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse uidListChildrenWithHttpInfo(UidListChildren body) throws ApiException { + okhttp3.Call localVarCall = uidListChildrenValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -31015,19 +31812,19 @@ public ApiResponse signRsaSsaPssWithHttpInfo(SignRsaSsaPss * @http.response.details - +
Status Code Description Response Headers
200 signRsaSsaPssResponse wraps response body. -
200 uidListChildrenResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call signRsaSsaPssAsync(SignRsaSsaPss body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call uidListChildrenAsync(UidListChildren body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = signRsaSsaPssValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = uidListChildrenValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for staticCredsAuth + * Build call for uidRevokeToken * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -31035,11 +31832,11 @@ public okhttp3.Call signRsaSsaPssAsync(SignRsaSsaPss body, final ApiCallback Status Code Description Response Headers - 200 staticCredsAuthResponse wraps response body. - + 200 uidRevokeTokenResponse wraps response body. - 0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. - */ - public okhttp3.Call staticCredsAuthCall(StaticCredsAuth body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call uidRevokeTokenCall(UidRevokeToken body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -31057,7 +31854,7 @@ public okhttp3.Call staticCredsAuthCall(StaticCredsAuth body, final ApiCallback Object localVarPostBody = body; // create path and map variables - String localVarPath = "/static-creds-auth"; + String localVarPath = "/uid-revoke-token"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -31086,15 +31883,15 @@ public okhttp3.Call staticCredsAuthCall(StaticCredsAuth body, final ApiCallback } @SuppressWarnings("rawtypes") - private okhttp3.Call staticCredsAuthValidateBeforeCall(StaticCredsAuth body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call uidRevokeTokenValidateBeforeCall(UidRevokeToken body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling staticCredsAuth(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling uidRevokeToken(Async)"); } - okhttp3.Call localVarCall = staticCredsAuthCall(body, _callback); + okhttp3.Call localVarCall = uidRevokeTokenCall(body, _callback); return localVarCall; } @@ -31103,17 +31900,17 @@ private okhttp3.Call staticCredsAuthValidateBeforeCall(StaticCredsAuth body, fin * * * @param body (required) - * @return StaticCredsAuthOutput + * @return Object * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 staticCredsAuthResponse wraps response body. -
200 uidRevokeTokenResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public StaticCredsAuthOutput staticCredsAuth(StaticCredsAuth body) throws ApiException { - ApiResponse localVarResp = staticCredsAuthWithHttpInfo(body); + public Object uidRevokeToken(UidRevokeToken body) throws ApiException { + ApiResponse localVarResp = uidRevokeTokenWithHttpInfo(body); return localVarResp.getData(); } @@ -31121,18 +31918,18 @@ public StaticCredsAuthOutput staticCredsAuth(StaticCredsAuth body) throws ApiExc * * * @param body (required) - * @return ApiResponse<StaticCredsAuthOutput> + * @return ApiResponse<Object> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 staticCredsAuthResponse wraps response body. -
200 uidRevokeTokenResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse staticCredsAuthWithHttpInfo(StaticCredsAuth body) throws ApiException { - okhttp3.Call localVarCall = staticCredsAuthValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse uidRevokeTokenWithHttpInfo(UidRevokeToken body) throws ApiException { + okhttp3.Call localVarCall = uidRevokeTokenValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -31146,19 +31943,19 @@ public ApiResponse staticCredsAuthWithHttpInfo(StaticCred * @http.response.details - +
Status Code Description Response Headers
200 staticCredsAuthResponse wraps response body. -
200 uidRevokeTokenResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call staticCredsAuthAsync(StaticCredsAuth body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call uidRevokeTokenAsync(UidRevokeToken body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = staticCredsAuthValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = uidRevokeTokenValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for tokenize + * Build call for uidRotateToken * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -31166,11 +31963,11 @@ public okhttp3.Call staticCredsAuthAsync(StaticCredsAuth body, final ApiCallback * @http.response.details - +
Status Code Description Response Headers
200 tokenizeResponse wraps response body. -
200 uidRotateTokenResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call tokenizeCall(Tokenize body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call uidRotateTokenCall(UidRotateToken body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -31188,7 +31985,7 @@ public okhttp3.Call tokenizeCall(Tokenize body, final ApiCallback _callback) thr Object localVarPostBody = body; // create path and map variables - String localVarPath = "/tokenize"; + String localVarPath = "/uid-rotate-token"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -31217,15 +32014,15 @@ public okhttp3.Call tokenizeCall(Tokenize body, final ApiCallback _callback) thr } @SuppressWarnings("rawtypes") - private okhttp3.Call tokenizeValidateBeforeCall(Tokenize body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call uidRotateTokenValidateBeforeCall(UidRotateToken body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling tokenize(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling uidRotateToken(Async)"); } - okhttp3.Call localVarCall = tokenizeCall(body, _callback); + okhttp3.Call localVarCall = uidRotateTokenCall(body, _callback); return localVarCall; } @@ -31234,17 +32031,17 @@ private okhttp3.Call tokenizeValidateBeforeCall(Tokenize body, final ApiCallback * * * @param body (required) - * @return TokenizeOutput + * @return UidRotateTokenOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 tokenizeResponse wraps response body. -
200 uidRotateTokenResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public TokenizeOutput tokenize(Tokenize body) throws ApiException { - ApiResponse localVarResp = tokenizeWithHttpInfo(body); + public UidRotateTokenOutput uidRotateToken(UidRotateToken body) throws ApiException { + ApiResponse localVarResp = uidRotateTokenWithHttpInfo(body); return localVarResp.getData(); } @@ -31252,18 +32049,18 @@ public TokenizeOutput tokenize(Tokenize body) throws ApiException { * * * @param body (required) - * @return ApiResponse<TokenizeOutput> + * @return ApiResponse<UidRotateTokenOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 tokenizeResponse wraps response body. -
200 uidRotateTokenResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse tokenizeWithHttpInfo(Tokenize body) throws ApiException { - okhttp3.Call localVarCall = tokenizeValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse uidRotateTokenWithHttpInfo(UidRotateToken body) throws ApiException { + okhttp3.Call localVarCall = uidRotateTokenValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -31277,19 +32074,19 @@ public ApiResponse tokenizeWithHttpInfo(Tokenize body) throws Ap * @http.response.details - +
Status Code Description Response Headers
200 tokenizeResponse wraps response body. -
200 uidRotateTokenResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call tokenizeAsync(Tokenize body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call uidRotateTokenAsync(UidRotateToken body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = tokenizeValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = uidRotateTokenValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for uidCreateChildToken + * Build call for updateAWSTarget * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -31297,11 +32094,11 @@ public okhttp3.Call tokenizeAsync(Tokenize body, final ApiCallback Status Code Description Response Headers - 200 uidCreateChildTokenResponse wraps response body. - + 200 updateAWSTargetResponse wraps response body. - 0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. - */ - public okhttp3.Call uidCreateChildTokenCall(UidCreateChildToken body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateAWSTargetCall(UpdateAWSTarget body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -31319,7 +32116,7 @@ public okhttp3.Call uidCreateChildTokenCall(UidCreateChildToken body, final ApiC Object localVarPostBody = body; // create path and map variables - String localVarPath = "/uid-create-child-token"; + String localVarPath = "/update-aws-target"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -31348,15 +32145,15 @@ public okhttp3.Call uidCreateChildTokenCall(UidCreateChildToken body, final ApiC } @SuppressWarnings("rawtypes") - private okhttp3.Call uidCreateChildTokenValidateBeforeCall(UidCreateChildToken body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call updateAWSTargetValidateBeforeCall(UpdateAWSTarget body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling uidCreateChildToken(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling updateAWSTarget(Async)"); } - okhttp3.Call localVarCall = uidCreateChildTokenCall(body, _callback); + okhttp3.Call localVarCall = updateAWSTargetCall(body, _callback); return localVarCall; } @@ -31365,17 +32162,17 @@ private okhttp3.Call uidCreateChildTokenValidateBeforeCall(UidCreateChildToken b * * * @param body (required) - * @return UidCreateChildTokenOutput + * @return Object * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 uidCreateChildTokenResponse wraps response body. -
200 updateAWSTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public UidCreateChildTokenOutput uidCreateChildToken(UidCreateChildToken body) throws ApiException { - ApiResponse localVarResp = uidCreateChildTokenWithHttpInfo(body); + public Object updateAWSTarget(UpdateAWSTarget body) throws ApiException { + ApiResponse localVarResp = updateAWSTargetWithHttpInfo(body); return localVarResp.getData(); } @@ -31383,18 +32180,18 @@ public UidCreateChildTokenOutput uidCreateChildToken(UidCreateChildToken body) t * * * @param body (required) - * @return ApiResponse<UidCreateChildTokenOutput> + * @return ApiResponse<Object> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 uidCreateChildTokenResponse wraps response body. -
200 updateAWSTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse uidCreateChildTokenWithHttpInfo(UidCreateChildToken body) throws ApiException { - okhttp3.Call localVarCall = uidCreateChildTokenValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse updateAWSTargetWithHttpInfo(UpdateAWSTarget body) throws ApiException { + okhttp3.Call localVarCall = updateAWSTargetValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -31408,19 +32205,19 @@ public ApiResponse uidCreateChildTokenWithHttpInfo(Ui * @http.response.details - +
Status Code Description Response Headers
200 uidCreateChildTokenResponse wraps response body. -
200 updateAWSTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call uidCreateChildTokenAsync(UidCreateChildToken body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateAWSTargetAsync(UpdateAWSTarget body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = uidCreateChildTokenValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = updateAWSTargetValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for uidGenerateToken + * Build call for updateAWSTargetDetails * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -31428,11 +32225,11 @@ public okhttp3.Call uidCreateChildTokenAsync(UidCreateChildToken body, final Api * @http.response.details - +
Status Code Description Response Headers
200 uidGenerateTokenResponse wraps response body. -
200 updateTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call uidGenerateTokenCall(UidGenerateToken body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateAWSTargetDetailsCall(UpdateAWSTargetDetails body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -31450,7 +32247,7 @@ public okhttp3.Call uidGenerateTokenCall(UidGenerateToken body, final ApiCallbac Object localVarPostBody = body; // create path and map variables - String localVarPath = "/uid-generate-token"; + String localVarPath = "/update-aws-target-details"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -31479,15 +32276,15 @@ public okhttp3.Call uidGenerateTokenCall(UidGenerateToken body, final ApiCallbac } @SuppressWarnings("rawtypes") - private okhttp3.Call uidGenerateTokenValidateBeforeCall(UidGenerateToken body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call updateAWSTargetDetailsValidateBeforeCall(UpdateAWSTargetDetails body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling uidGenerateToken(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling updateAWSTargetDetails(Async)"); } - okhttp3.Call localVarCall = uidGenerateTokenCall(body, _callback); + okhttp3.Call localVarCall = updateAWSTargetDetailsCall(body, _callback); return localVarCall; } @@ -31496,17 +32293,17 @@ private okhttp3.Call uidGenerateTokenValidateBeforeCall(UidGenerateToken body, f * * * @param body (required) - * @return UidGenerateTokenOutput + * @return UpdateTargetOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 uidGenerateTokenResponse wraps response body. -
200 updateTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public UidGenerateTokenOutput uidGenerateToken(UidGenerateToken body) throws ApiException { - ApiResponse localVarResp = uidGenerateTokenWithHttpInfo(body); + public UpdateTargetOutput updateAWSTargetDetails(UpdateAWSTargetDetails body) throws ApiException { + ApiResponse localVarResp = updateAWSTargetDetailsWithHttpInfo(body); return localVarResp.getData(); } @@ -31514,18 +32311,18 @@ public UidGenerateTokenOutput uidGenerateToken(UidGenerateToken body) throws Api * * * @param body (required) - * @return ApiResponse<UidGenerateTokenOutput> + * @return ApiResponse<UpdateTargetOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 uidGenerateTokenResponse wraps response body. -
200 updateTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse uidGenerateTokenWithHttpInfo(UidGenerateToken body) throws ApiException { - okhttp3.Call localVarCall = uidGenerateTokenValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse updateAWSTargetDetailsWithHttpInfo(UpdateAWSTargetDetails body) throws ApiException { + okhttp3.Call localVarCall = updateAWSTargetDetailsValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -31539,19 +32336,19 @@ public ApiResponse uidGenerateTokenWithHttpInfo(UidGener * @http.response.details - +
Status Code Description Response Headers
200 uidGenerateTokenResponse wraps response body. -
200 updateTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call uidGenerateTokenAsync(UidGenerateToken body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateAWSTargetDetailsAsync(UpdateAWSTargetDetails body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = uidGenerateTokenValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = updateAWSTargetDetailsValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for uidListChildren + * Build call for updateAccountSettings * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -31559,11 +32356,11 @@ public okhttp3.Call uidGenerateTokenAsync(UidGenerateToken body, final ApiCallba * @http.response.details - +
Status Code Description Response Headers
200 uidListChildrenResponse wraps response body. -
200 updateAccountSettingsResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call uidListChildrenCall(UidListChildren body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateAccountSettingsCall(UpdateAccountSettings body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -31581,7 +32378,7 @@ public okhttp3.Call uidListChildrenCall(UidListChildren body, final ApiCallback Object localVarPostBody = body; // create path and map variables - String localVarPath = "/uid-list-children"; + String localVarPath = "/update-account-settings"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -31610,15 +32407,15 @@ public okhttp3.Call uidListChildrenCall(UidListChildren body, final ApiCallback } @SuppressWarnings("rawtypes") - private okhttp3.Call uidListChildrenValidateBeforeCall(UidListChildren body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call updateAccountSettingsValidateBeforeCall(UpdateAccountSettings body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling uidListChildren(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling updateAccountSettings(Async)"); } - okhttp3.Call localVarCall = uidListChildrenCall(body, _callback); + okhttp3.Call localVarCall = updateAccountSettingsCall(body, _callback); return localVarCall; } @@ -31627,17 +32424,17 @@ private okhttp3.Call uidListChildrenValidateBeforeCall(UidListChildren body, fin * * * @param body (required) - * @return UniversalIdentityDetails + * @return UpdateAccountSettingsOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 uidListChildrenResponse wraps response body. -
200 updateAccountSettingsResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public UniversalIdentityDetails uidListChildren(UidListChildren body) throws ApiException { - ApiResponse localVarResp = uidListChildrenWithHttpInfo(body); + public UpdateAccountSettingsOutput updateAccountSettings(UpdateAccountSettings body) throws ApiException { + ApiResponse localVarResp = updateAccountSettingsWithHttpInfo(body); return localVarResp.getData(); } @@ -31645,18 +32442,18 @@ public UniversalIdentityDetails uidListChildren(UidListChildren body) throws Api * * * @param body (required) - * @return ApiResponse<UniversalIdentityDetails> + * @return ApiResponse<UpdateAccountSettingsOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 uidListChildrenResponse wraps response body. -
200 updateAccountSettingsResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse uidListChildrenWithHttpInfo(UidListChildren body) throws ApiException { - okhttp3.Call localVarCall = uidListChildrenValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse updateAccountSettingsWithHttpInfo(UpdateAccountSettings body) throws ApiException { + okhttp3.Call localVarCall = updateAccountSettingsValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -31670,19 +32467,19 @@ public ApiResponse uidListChildrenWithHttpInfo(UidList * @http.response.details - +
Status Code Description Response Headers
200 uidListChildrenResponse wraps response body. -
200 updateAccountSettingsResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call uidListChildrenAsync(UidListChildren body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateAccountSettingsAsync(UpdateAccountSettings body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = uidListChildrenValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = updateAccountSettingsValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for uidRevokeToken + * Build call for updateArtifactoryTarget * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -31690,11 +32487,11 @@ public okhttp3.Call uidListChildrenAsync(UidListChildren body, final ApiCallback * @http.response.details - +
Status Code Description Response Headers
200 uidRevokeTokenResponse wraps response body. -
200 updateArtifactoryTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call uidRevokeTokenCall(UidRevokeToken body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateArtifactoryTargetCall(UpdateArtifactoryTarget body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -31712,7 +32509,7 @@ public okhttp3.Call uidRevokeTokenCall(UidRevokeToken body, final ApiCallback _c Object localVarPostBody = body; // create path and map variables - String localVarPath = "/uid-revoke-token"; + String localVarPath = "/update-artifactory-target"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -31741,15 +32538,15 @@ public okhttp3.Call uidRevokeTokenCall(UidRevokeToken body, final ApiCallback _c } @SuppressWarnings("rawtypes") - private okhttp3.Call uidRevokeTokenValidateBeforeCall(UidRevokeToken body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call updateArtifactoryTargetValidateBeforeCall(UpdateArtifactoryTarget body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling uidRevokeToken(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling updateArtifactoryTarget(Async)"); } - okhttp3.Call localVarCall = uidRevokeTokenCall(body, _callback); + okhttp3.Call localVarCall = updateArtifactoryTargetCall(body, _callback); return localVarCall; } @@ -31758,17 +32555,17 @@ private okhttp3.Call uidRevokeTokenValidateBeforeCall(UidRevokeToken body, final * * * @param body (required) - * @return Object + * @return UpdateArtifactoryTargetOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 uidRevokeTokenResponse wraps response body. -
200 updateArtifactoryTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public Object uidRevokeToken(UidRevokeToken body) throws ApiException { - ApiResponse localVarResp = uidRevokeTokenWithHttpInfo(body); + public UpdateArtifactoryTargetOutput updateArtifactoryTarget(UpdateArtifactoryTarget body) throws ApiException { + ApiResponse localVarResp = updateArtifactoryTargetWithHttpInfo(body); return localVarResp.getData(); } @@ -31776,18 +32573,18 @@ public Object uidRevokeToken(UidRevokeToken body) throws ApiException { * * * @param body (required) - * @return ApiResponse<Object> + * @return ApiResponse<UpdateArtifactoryTargetOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 uidRevokeTokenResponse wraps response body. -
200 updateArtifactoryTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse uidRevokeTokenWithHttpInfo(UidRevokeToken body) throws ApiException { - okhttp3.Call localVarCall = uidRevokeTokenValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse updateArtifactoryTargetWithHttpInfo(UpdateArtifactoryTarget body) throws ApiException { + okhttp3.Call localVarCall = updateArtifactoryTargetValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -31801,19 +32598,19 @@ public ApiResponse uidRevokeTokenWithHttpInfo(UidRevokeToken body) throw * @http.response.details - +
Status Code Description Response Headers
200 uidRevokeTokenResponse wraps response body. -
200 updateArtifactoryTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call uidRevokeTokenAsync(UidRevokeToken body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateArtifactoryTargetAsync(UpdateArtifactoryTarget body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = uidRevokeTokenValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = updateArtifactoryTargetValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for uidRotateToken + * Build call for updateAssoc * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -31821,11 +32618,11 @@ public okhttp3.Call uidRevokeTokenAsync(UidRevokeToken body, final ApiCallback Status Code Description Response Headers - 200 uidRotateTokenResponse wraps response body. - + 200 updateAssocResponse wraps response body. - 0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. - */ - public okhttp3.Call uidRotateTokenCall(UidRotateToken body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateAssocCall(UpdateAssoc body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -31843,7 +32640,7 @@ public okhttp3.Call uidRotateTokenCall(UidRotateToken body, final ApiCallback _c Object localVarPostBody = body; // create path and map variables - String localVarPath = "/uid-rotate-token"; + String localVarPath = "/update-assoc"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -31872,15 +32669,15 @@ public okhttp3.Call uidRotateTokenCall(UidRotateToken body, final ApiCallback _c } @SuppressWarnings("rawtypes") - private okhttp3.Call uidRotateTokenValidateBeforeCall(UidRotateToken body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call updateAssocValidateBeforeCall(UpdateAssoc body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling uidRotateToken(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling updateAssoc(Async)"); } - okhttp3.Call localVarCall = uidRotateTokenCall(body, _callback); + okhttp3.Call localVarCall = updateAssocCall(body, _callback); return localVarCall; } @@ -31889,17 +32686,17 @@ private okhttp3.Call uidRotateTokenValidateBeforeCall(UidRotateToken body, final * * * @param body (required) - * @return UidRotateTokenOutput + * @return Object * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 uidRotateTokenResponse wraps response body. -
200 updateAssocResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public UidRotateTokenOutput uidRotateToken(UidRotateToken body) throws ApiException { - ApiResponse localVarResp = uidRotateTokenWithHttpInfo(body); + public Object updateAssoc(UpdateAssoc body) throws ApiException { + ApiResponse localVarResp = updateAssocWithHttpInfo(body); return localVarResp.getData(); } @@ -31907,18 +32704,18 @@ public UidRotateTokenOutput uidRotateToken(UidRotateToken body) throws ApiExcept * * * @param body (required) - * @return ApiResponse<UidRotateTokenOutput> + * @return ApiResponse<Object> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 uidRotateTokenResponse wraps response body. -
200 updateAssocResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse uidRotateTokenWithHttpInfo(UidRotateToken body) throws ApiException { - okhttp3.Call localVarCall = uidRotateTokenValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse updateAssocWithHttpInfo(UpdateAssoc body) throws ApiException { + okhttp3.Call localVarCall = updateAssocValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -31932,19 +32729,19 @@ public ApiResponse uidRotateTokenWithHttpInfo(UidRotateTok * @http.response.details - +
Status Code Description Response Headers
200 uidRotateTokenResponse wraps response body. -
200 updateAssocResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call uidRotateTokenAsync(UidRotateToken body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateAssocAsync(UpdateAssoc body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = uidRotateTokenValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = updateAssocValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for updateAWSTarget + * Build call for updateAuthMethod * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -31952,11 +32749,11 @@ public okhttp3.Call uidRotateTokenAsync(UidRotateToken body, final ApiCallback Status Code Description Response Headers - 200 updateAWSTargetResponse wraps response body. - + 200 updateAuthMethodResponse wraps response body. - 0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. - */ - public okhttp3.Call updateAWSTargetCall(UpdateAWSTarget body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateAuthMethodCall(UpdateAuthMethod body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -31974,7 +32771,7 @@ public okhttp3.Call updateAWSTargetCall(UpdateAWSTarget body, final ApiCallback Object localVarPostBody = body; // create path and map variables - String localVarPath = "/update-aws-target"; + String localVarPath = "/update-auth-method"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -32003,15 +32800,15 @@ public okhttp3.Call updateAWSTargetCall(UpdateAWSTarget body, final ApiCallback } @SuppressWarnings("rawtypes") - private okhttp3.Call updateAWSTargetValidateBeforeCall(UpdateAWSTarget body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call updateAuthMethodValidateBeforeCall(UpdateAuthMethod body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling updateAWSTarget(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling updateAuthMethod(Async)"); } - okhttp3.Call localVarCall = updateAWSTargetCall(body, _callback); + okhttp3.Call localVarCall = updateAuthMethodCall(body, _callback); return localVarCall; } @@ -32020,17 +32817,17 @@ private okhttp3.Call updateAWSTargetValidateBeforeCall(UpdateAWSTarget body, fin * * * @param body (required) - * @return Object + * @return UpdateAuthMethodOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 updateAWSTargetResponse wraps response body. -
200 updateAuthMethodResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public Object updateAWSTarget(UpdateAWSTarget body) throws ApiException { - ApiResponse localVarResp = updateAWSTargetWithHttpInfo(body); + public UpdateAuthMethodOutput updateAuthMethod(UpdateAuthMethod body) throws ApiException { + ApiResponse localVarResp = updateAuthMethodWithHttpInfo(body); return localVarResp.getData(); } @@ -32038,18 +32835,18 @@ public Object updateAWSTarget(UpdateAWSTarget body) throws ApiException { * * * @param body (required) - * @return ApiResponse<Object> + * @return ApiResponse<UpdateAuthMethodOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 updateAWSTargetResponse wraps response body. -
200 updateAuthMethodResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse updateAWSTargetWithHttpInfo(UpdateAWSTarget body) throws ApiException { - okhttp3.Call localVarCall = updateAWSTargetValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse updateAuthMethodWithHttpInfo(UpdateAuthMethod body) throws ApiException { + okhttp3.Call localVarCall = updateAuthMethodValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -32063,19 +32860,19 @@ public ApiResponse updateAWSTargetWithHttpInfo(UpdateAWSTarget body) thr * @http.response.details - +
Status Code Description Response Headers
200 updateAWSTargetResponse wraps response body. -
200 updateAuthMethodResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call updateAWSTargetAsync(UpdateAWSTarget body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateAuthMethodAsync(UpdateAuthMethod body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = updateAWSTargetValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = updateAuthMethodValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for updateAWSTargetDetails + * Build call for updateAuthMethodAWSIAM * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -32083,11 +32880,11 @@ public okhttp3.Call updateAWSTargetAsync(UpdateAWSTarget body, final ApiCallback * @http.response.details - +
Status Code Description Response Headers
200 updateTargetResponse wraps response body. -
200 updateAuthMethodAWSIAMResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call updateAWSTargetDetailsCall(UpdateAWSTargetDetails body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateAuthMethodAWSIAMCall(UpdateAuthMethodAWSIAM body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -32105,7 +32902,7 @@ public okhttp3.Call updateAWSTargetDetailsCall(UpdateAWSTargetDetails body, fina Object localVarPostBody = body; // create path and map variables - String localVarPath = "/update-aws-target-details"; + String localVarPath = "/update-auth-method-aws-iam"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -32134,15 +32931,15 @@ public okhttp3.Call updateAWSTargetDetailsCall(UpdateAWSTargetDetails body, fina } @SuppressWarnings("rawtypes") - private okhttp3.Call updateAWSTargetDetailsValidateBeforeCall(UpdateAWSTargetDetails body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call updateAuthMethodAWSIAMValidateBeforeCall(UpdateAuthMethodAWSIAM body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling updateAWSTargetDetails(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling updateAuthMethodAWSIAM(Async)"); } - okhttp3.Call localVarCall = updateAWSTargetDetailsCall(body, _callback); + okhttp3.Call localVarCall = updateAuthMethodAWSIAMCall(body, _callback); return localVarCall; } @@ -32151,17 +32948,17 @@ private okhttp3.Call updateAWSTargetDetailsValidateBeforeCall(UpdateAWSTargetDet * * * @param body (required) - * @return UpdateTargetOutput + * @return Object * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 updateTargetResponse wraps response body. -
200 updateAuthMethodAWSIAMResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public UpdateTargetOutput updateAWSTargetDetails(UpdateAWSTargetDetails body) throws ApiException { - ApiResponse localVarResp = updateAWSTargetDetailsWithHttpInfo(body); + public Object updateAuthMethodAWSIAM(UpdateAuthMethodAWSIAM body) throws ApiException { + ApiResponse localVarResp = updateAuthMethodAWSIAMWithHttpInfo(body); return localVarResp.getData(); } @@ -32169,18 +32966,18 @@ public UpdateTargetOutput updateAWSTargetDetails(UpdateAWSTargetDetails body) th * * * @param body (required) - * @return ApiResponse<UpdateTargetOutput> + * @return ApiResponse<Object> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 updateTargetResponse wraps response body. -
200 updateAuthMethodAWSIAMResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse updateAWSTargetDetailsWithHttpInfo(UpdateAWSTargetDetails body) throws ApiException { - okhttp3.Call localVarCall = updateAWSTargetDetailsValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse updateAuthMethodAWSIAMWithHttpInfo(UpdateAuthMethodAWSIAM body) throws ApiException { + okhttp3.Call localVarCall = updateAuthMethodAWSIAMValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -32194,19 +32991,19 @@ public ApiResponse updateAWSTargetDetailsWithHttpInfo(Update * @http.response.details - +
Status Code Description Response Headers
200 updateTargetResponse wraps response body. -
200 updateAuthMethodAWSIAMResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call updateAWSTargetDetailsAsync(UpdateAWSTargetDetails body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateAuthMethodAWSIAMAsync(UpdateAuthMethodAWSIAM body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = updateAWSTargetDetailsValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = updateAuthMethodAWSIAMValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for updateAccountSettings + * Build call for updateAuthMethodAzureAD * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -32214,11 +33011,11 @@ public okhttp3.Call updateAWSTargetDetailsAsync(UpdateAWSTargetDetails body, fin * @http.response.details - +
Status Code Description Response Headers
200 updateAccountSettingsResponse wraps response body. -
200 updateAuthMethodAzureADResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call updateAccountSettingsCall(UpdateAccountSettings body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateAuthMethodAzureADCall(UpdateAuthMethodAzureAD body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -32236,7 +33033,7 @@ public okhttp3.Call updateAccountSettingsCall(UpdateAccountSettings body, final Object localVarPostBody = body; // create path and map variables - String localVarPath = "/update-account-settings"; + String localVarPath = "/update-auth-method-azure-ad"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -32265,15 +33062,15 @@ public okhttp3.Call updateAccountSettingsCall(UpdateAccountSettings body, final } @SuppressWarnings("rawtypes") - private okhttp3.Call updateAccountSettingsValidateBeforeCall(UpdateAccountSettings body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call updateAuthMethodAzureADValidateBeforeCall(UpdateAuthMethodAzureAD body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling updateAccountSettings(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling updateAuthMethodAzureAD(Async)"); } - okhttp3.Call localVarCall = updateAccountSettingsCall(body, _callback); + okhttp3.Call localVarCall = updateAuthMethodAzureADCall(body, _callback); return localVarCall; } @@ -32282,17 +33079,17 @@ private okhttp3.Call updateAccountSettingsValidateBeforeCall(UpdateAccountSettin * * * @param body (required) - * @return UpdateAccountSettingsOutput + * @return Object * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 updateAccountSettingsResponse wraps response body. -
200 updateAuthMethodAzureADResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public UpdateAccountSettingsOutput updateAccountSettings(UpdateAccountSettings body) throws ApiException { - ApiResponse localVarResp = updateAccountSettingsWithHttpInfo(body); + public Object updateAuthMethodAzureAD(UpdateAuthMethodAzureAD body) throws ApiException { + ApiResponse localVarResp = updateAuthMethodAzureADWithHttpInfo(body); return localVarResp.getData(); } @@ -32300,18 +33097,18 @@ public UpdateAccountSettingsOutput updateAccountSettings(UpdateAccountSettings b * * * @param body (required) - * @return ApiResponse<UpdateAccountSettingsOutput> + * @return ApiResponse<Object> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 updateAccountSettingsResponse wraps response body. -
200 updateAuthMethodAzureADResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse updateAccountSettingsWithHttpInfo(UpdateAccountSettings body) throws ApiException { - okhttp3.Call localVarCall = updateAccountSettingsValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse updateAuthMethodAzureADWithHttpInfo(UpdateAuthMethodAzureAD body) throws ApiException { + okhttp3.Call localVarCall = updateAuthMethodAzureADValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -32325,19 +33122,19 @@ public ApiResponse updateAccountSettingsWithHttpInf * @http.response.details - +
Status Code Description Response Headers
200 updateAccountSettingsResponse wraps response body. -
200 updateAuthMethodAzureADResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call updateAccountSettingsAsync(UpdateAccountSettings body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateAuthMethodAzureADAsync(UpdateAuthMethodAzureAD body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = updateAccountSettingsValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = updateAuthMethodAzureADValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for updateArtifactoryTarget + * Build call for updateAuthMethodCert * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -32345,11 +33142,11 @@ public okhttp3.Call updateAccountSettingsAsync(UpdateAccountSettings body, final * @http.response.details - +
Status Code Description Response Headers
200 updateArtifactoryTargetResponse wraps response body. -
200 updateAuthMethodCertResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call updateArtifactoryTargetCall(UpdateArtifactoryTarget body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateAuthMethodCertCall(UpdateAuthMethodCert body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -32367,7 +33164,7 @@ public okhttp3.Call updateArtifactoryTargetCall(UpdateArtifactoryTarget body, fi Object localVarPostBody = body; // create path and map variables - String localVarPath = "/update-artifactory-target"; + String localVarPath = "/update-auth-method-cert"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -32396,15 +33193,15 @@ public okhttp3.Call updateArtifactoryTargetCall(UpdateArtifactoryTarget body, fi } @SuppressWarnings("rawtypes") - private okhttp3.Call updateArtifactoryTargetValidateBeforeCall(UpdateArtifactoryTarget body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call updateAuthMethodCertValidateBeforeCall(UpdateAuthMethodCert body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling updateArtifactoryTarget(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling updateAuthMethodCert(Async)"); } - okhttp3.Call localVarCall = updateArtifactoryTargetCall(body, _callback); + okhttp3.Call localVarCall = updateAuthMethodCertCall(body, _callback); return localVarCall; } @@ -32413,17 +33210,17 @@ private okhttp3.Call updateArtifactoryTargetValidateBeforeCall(UpdateArtifactory * * * @param body (required) - * @return UpdateArtifactoryTargetOutput + * @return UpdateAuthMethodCertOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 updateArtifactoryTargetResponse wraps response body. -
200 updateAuthMethodCertResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public UpdateArtifactoryTargetOutput updateArtifactoryTarget(UpdateArtifactoryTarget body) throws ApiException { - ApiResponse localVarResp = updateArtifactoryTargetWithHttpInfo(body); + public UpdateAuthMethodCertOutput updateAuthMethodCert(UpdateAuthMethodCert body) throws ApiException { + ApiResponse localVarResp = updateAuthMethodCertWithHttpInfo(body); return localVarResp.getData(); } @@ -32431,18 +33228,18 @@ public UpdateArtifactoryTargetOutput updateArtifactoryTarget(UpdateArtifactoryTa * * * @param body (required) - * @return ApiResponse<UpdateArtifactoryTargetOutput> + * @return ApiResponse<UpdateAuthMethodCertOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 updateArtifactoryTargetResponse wraps response body. -
200 updateAuthMethodCertResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse updateArtifactoryTargetWithHttpInfo(UpdateArtifactoryTarget body) throws ApiException { - okhttp3.Call localVarCall = updateArtifactoryTargetValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse updateAuthMethodCertWithHttpInfo(UpdateAuthMethodCert body) throws ApiException { + okhttp3.Call localVarCall = updateAuthMethodCertValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -32456,19 +33253,19 @@ public ApiResponse updateArtifactoryTargetWithHtt * @http.response.details - +
Status Code Description Response Headers
200 updateArtifactoryTargetResponse wraps response body. -
200 updateAuthMethodCertResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call updateArtifactoryTargetAsync(UpdateArtifactoryTarget body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateAuthMethodCertAsync(UpdateAuthMethodCert body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = updateArtifactoryTargetValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = updateAuthMethodCertValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for updateAssoc + * Build call for updateAuthMethodGCP * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -32476,11 +33273,11 @@ public okhttp3.Call updateArtifactoryTargetAsync(UpdateArtifactoryTarget body, f * @http.response.details - +
Status Code Description Response Headers
200 updateAssocResponse wraps response body. -
200 updateAuthMethodGCPResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call updateAssocCall(UpdateAssoc body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateAuthMethodGCPCall(UpdateAuthMethodGCP body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -32498,7 +33295,7 @@ public okhttp3.Call updateAssocCall(UpdateAssoc body, final ApiCallback _callbac Object localVarPostBody = body; // create path and map variables - String localVarPath = "/update-assoc"; + String localVarPath = "/update-auth-method-gcp"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -32527,15 +33324,15 @@ public okhttp3.Call updateAssocCall(UpdateAssoc body, final ApiCallback _callbac } @SuppressWarnings("rawtypes") - private okhttp3.Call updateAssocValidateBeforeCall(UpdateAssoc body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call updateAuthMethodGCPValidateBeforeCall(UpdateAuthMethodGCP body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling updateAssoc(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling updateAuthMethodGCP(Async)"); } - okhttp3.Call localVarCall = updateAssocCall(body, _callback); + okhttp3.Call localVarCall = updateAuthMethodGCPCall(body, _callback); return localVarCall; } @@ -32549,12 +33346,12 @@ private okhttp3.Call updateAssocValidateBeforeCall(UpdateAssoc body, final ApiCa * @http.response.details - +
Status Code Description Response Headers
200 updateAssocResponse wraps response body. -
200 updateAuthMethodGCPResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public Object updateAssoc(UpdateAssoc body) throws ApiException { - ApiResponse localVarResp = updateAssocWithHttpInfo(body); + public Object updateAuthMethodGCP(UpdateAuthMethodGCP body) throws ApiException { + ApiResponse localVarResp = updateAuthMethodGCPWithHttpInfo(body); return localVarResp.getData(); } @@ -32567,12 +33364,12 @@ public Object updateAssoc(UpdateAssoc body) throws ApiException { * @http.response.details - +
Status Code Description Response Headers
200 updateAssocResponse wraps response body. -
200 updateAuthMethodGCPResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse updateAssocWithHttpInfo(UpdateAssoc body) throws ApiException { - okhttp3.Call localVarCall = updateAssocValidateBeforeCall(body, null); + public ApiResponse updateAuthMethodGCPWithHttpInfo(UpdateAuthMethodGCP body) throws ApiException { + okhttp3.Call localVarCall = updateAuthMethodGCPValidateBeforeCall(body, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -32587,19 +33384,19 @@ public ApiResponse updateAssocWithHttpInfo(UpdateAssoc body) throws ApiE * @http.response.details - +
Status Code Description Response Headers
200 updateAssocResponse wraps response body. -
200 updateAuthMethodGCPResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call updateAssocAsync(UpdateAssoc body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateAuthMethodGCPAsync(UpdateAuthMethodGCP body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = updateAssocValidateBeforeCall(body, _callback); + okhttp3.Call localVarCall = updateAuthMethodGCPValidateBeforeCall(body, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for updateAuthMethod + * Build call for updateAuthMethodK8S * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -32607,11 +33404,11 @@ public okhttp3.Call updateAssocAsync(UpdateAssoc body, final ApiCallback * @http.response.details - +
Status Code Description Response Headers
200 updateAuthMethodResponse wraps response body. -
200 updateAuthMethodK8SResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call updateAuthMethodCall(UpdateAuthMethod body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateAuthMethodK8SCall(UpdateAuthMethodK8S body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -32629,7 +33426,7 @@ public okhttp3.Call updateAuthMethodCall(UpdateAuthMethod body, final ApiCallbac Object localVarPostBody = body; // create path and map variables - String localVarPath = "/update-auth-method"; + String localVarPath = "/update-auth-method-k8s"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -32658,15 +33455,15 @@ public okhttp3.Call updateAuthMethodCall(UpdateAuthMethod body, final ApiCallbac } @SuppressWarnings("rawtypes") - private okhttp3.Call updateAuthMethodValidateBeforeCall(UpdateAuthMethod body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call updateAuthMethodK8SValidateBeforeCall(UpdateAuthMethodK8S body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling updateAuthMethod(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling updateAuthMethodK8S(Async)"); } - okhttp3.Call localVarCall = updateAuthMethodCall(body, _callback); + okhttp3.Call localVarCall = updateAuthMethodK8SCall(body, _callback); return localVarCall; } @@ -32675,17 +33472,17 @@ private okhttp3.Call updateAuthMethodValidateBeforeCall(UpdateAuthMethod body, f * * * @param body (required) - * @return UpdateAuthMethodOutput + * @return UpdateAuthMethodK8SOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 updateAuthMethodResponse wraps response body. -
200 updateAuthMethodK8SResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public UpdateAuthMethodOutput updateAuthMethod(UpdateAuthMethod body) throws ApiException { - ApiResponse localVarResp = updateAuthMethodWithHttpInfo(body); + public UpdateAuthMethodK8SOutput updateAuthMethodK8S(UpdateAuthMethodK8S body) throws ApiException { + ApiResponse localVarResp = updateAuthMethodK8SWithHttpInfo(body); return localVarResp.getData(); } @@ -32693,18 +33490,18 @@ public UpdateAuthMethodOutput updateAuthMethod(UpdateAuthMethod body) throws Api * * * @param body (required) - * @return ApiResponse<UpdateAuthMethodOutput> + * @return ApiResponse<UpdateAuthMethodK8SOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 updateAuthMethodResponse wraps response body. -
200 updateAuthMethodK8SResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse updateAuthMethodWithHttpInfo(UpdateAuthMethod body) throws ApiException { - okhttp3.Call localVarCall = updateAuthMethodValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse updateAuthMethodK8SWithHttpInfo(UpdateAuthMethodK8S body) throws ApiException { + okhttp3.Call localVarCall = updateAuthMethodK8SValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -32718,19 +33515,19 @@ public ApiResponse updateAuthMethodWithHttpInfo(UpdateAu * @http.response.details - +
Status Code Description Response Headers
200 updateAuthMethodResponse wraps response body. -
200 updateAuthMethodK8SResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call updateAuthMethodAsync(UpdateAuthMethod body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateAuthMethodK8SAsync(UpdateAuthMethodK8S body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = updateAuthMethodValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = updateAuthMethodK8SValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for updateAuthMethodAWSIAM + * Build call for updateAuthMethodLDAP * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -32738,11 +33535,11 @@ public okhttp3.Call updateAuthMethodAsync(UpdateAuthMethod body, final ApiCallba * @http.response.details - +
Status Code Description Response Headers
200 updateAuthMethodAWSIAMResponse wraps response body. -
200 updateAuthMethodLDAPResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call updateAuthMethodAWSIAMCall(UpdateAuthMethodAWSIAM body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateAuthMethodLDAPCall(UpdateAuthMethodLDAP body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -32760,7 +33557,7 @@ public okhttp3.Call updateAuthMethodAWSIAMCall(UpdateAuthMethodAWSIAM body, fina Object localVarPostBody = body; // create path and map variables - String localVarPath = "/update-auth-method-aws-iam"; + String localVarPath = "/update-auth-method-ldap"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -32789,15 +33586,15 @@ public okhttp3.Call updateAuthMethodAWSIAMCall(UpdateAuthMethodAWSIAM body, fina } @SuppressWarnings("rawtypes") - private okhttp3.Call updateAuthMethodAWSIAMValidateBeforeCall(UpdateAuthMethodAWSIAM body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call updateAuthMethodLDAPValidateBeforeCall(UpdateAuthMethodLDAP body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling updateAuthMethodAWSIAM(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling updateAuthMethodLDAP(Async)"); } - okhttp3.Call localVarCall = updateAuthMethodAWSIAMCall(body, _callback); + okhttp3.Call localVarCall = updateAuthMethodLDAPCall(body, _callback); return localVarCall; } @@ -32806,17 +33603,17 @@ private okhttp3.Call updateAuthMethodAWSIAMValidateBeforeCall(UpdateAuthMethodAW * * * @param body (required) - * @return Object + * @return UpdateAuthMethodLDAPOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 updateAuthMethodAWSIAMResponse wraps response body. -
200 updateAuthMethodLDAPResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public Object updateAuthMethodAWSIAM(UpdateAuthMethodAWSIAM body) throws ApiException { - ApiResponse localVarResp = updateAuthMethodAWSIAMWithHttpInfo(body); + public UpdateAuthMethodLDAPOutput updateAuthMethodLDAP(UpdateAuthMethodLDAP body) throws ApiException { + ApiResponse localVarResp = updateAuthMethodLDAPWithHttpInfo(body); return localVarResp.getData(); } @@ -32824,18 +33621,18 @@ public Object updateAuthMethodAWSIAM(UpdateAuthMethodAWSIAM body) throws ApiExce * * * @param body (required) - * @return ApiResponse<Object> + * @return ApiResponse<UpdateAuthMethodLDAPOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 updateAuthMethodAWSIAMResponse wraps response body. -
200 updateAuthMethodLDAPResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse updateAuthMethodAWSIAMWithHttpInfo(UpdateAuthMethodAWSIAM body) throws ApiException { - okhttp3.Call localVarCall = updateAuthMethodAWSIAMValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse updateAuthMethodLDAPWithHttpInfo(UpdateAuthMethodLDAP body) throws ApiException { + okhttp3.Call localVarCall = updateAuthMethodLDAPValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -32849,19 +33646,19 @@ public ApiResponse updateAuthMethodAWSIAMWithHttpInfo(UpdateAuthMethodAW * @http.response.details - +
Status Code Description Response Headers
200 updateAuthMethodAWSIAMResponse wraps response body. -
200 updateAuthMethodLDAPResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call updateAuthMethodAWSIAMAsync(UpdateAuthMethodAWSIAM body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateAuthMethodLDAPAsync(UpdateAuthMethodLDAP body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = updateAuthMethodAWSIAMValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = updateAuthMethodLDAPValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for updateAuthMethodAzureAD + * Build call for updateAuthMethodOAuth2 * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -32869,11 +33666,11 @@ public okhttp3.Call updateAuthMethodAWSIAMAsync(UpdateAuthMethodAWSIAM body, fin * @http.response.details - +
Status Code Description Response Headers
200 updateAuthMethodAzureADResponse wraps response body. -
200 updateAuthMethodOAuth2Response wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call updateAuthMethodAzureADCall(UpdateAuthMethodAzureAD body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateAuthMethodOAuth2Call(UpdateAuthMethodOAuth2 body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -32891,7 +33688,7 @@ public okhttp3.Call updateAuthMethodAzureADCall(UpdateAuthMethodAzureAD body, fi Object localVarPostBody = body; // create path and map variables - String localVarPath = "/update-auth-method-azure-ad"; + String localVarPath = "/update-auth-method-oauth2"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -32920,15 +33717,15 @@ public okhttp3.Call updateAuthMethodAzureADCall(UpdateAuthMethodAzureAD body, fi } @SuppressWarnings("rawtypes") - private okhttp3.Call updateAuthMethodAzureADValidateBeforeCall(UpdateAuthMethodAzureAD body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call updateAuthMethodOAuth2ValidateBeforeCall(UpdateAuthMethodOAuth2 body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling updateAuthMethodAzureAD(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling updateAuthMethodOAuth2(Async)"); } - okhttp3.Call localVarCall = updateAuthMethodAzureADCall(body, _callback); + okhttp3.Call localVarCall = updateAuthMethodOAuth2Call(body, _callback); return localVarCall; } @@ -32942,12 +33739,12 @@ private okhttp3.Call updateAuthMethodAzureADValidateBeforeCall(UpdateAuthMethodA * @http.response.details - +
Status Code Description Response Headers
200 updateAuthMethodAzureADResponse wraps response body. -
200 updateAuthMethodOAuth2Response wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public Object updateAuthMethodAzureAD(UpdateAuthMethodAzureAD body) throws ApiException { - ApiResponse localVarResp = updateAuthMethodAzureADWithHttpInfo(body); + public Object updateAuthMethodOAuth2(UpdateAuthMethodOAuth2 body) throws ApiException { + ApiResponse localVarResp = updateAuthMethodOAuth2WithHttpInfo(body); return localVarResp.getData(); } @@ -32960,12 +33757,12 @@ public Object updateAuthMethodAzureAD(UpdateAuthMethodAzureAD body) throws ApiEx * @http.response.details - +
Status Code Description Response Headers
200 updateAuthMethodAzureADResponse wraps response body. -
200 updateAuthMethodOAuth2Response wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse updateAuthMethodAzureADWithHttpInfo(UpdateAuthMethodAzureAD body) throws ApiException { - okhttp3.Call localVarCall = updateAuthMethodAzureADValidateBeforeCall(body, null); + public ApiResponse updateAuthMethodOAuth2WithHttpInfo(UpdateAuthMethodOAuth2 body) throws ApiException { + okhttp3.Call localVarCall = updateAuthMethodOAuth2ValidateBeforeCall(body, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -32980,19 +33777,19 @@ public ApiResponse updateAuthMethodAzureADWithHttpInfo(UpdateAuthMethodA * @http.response.details - +
Status Code Description Response Headers
200 updateAuthMethodAzureADResponse wraps response body. -
200 updateAuthMethodOAuth2Response wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call updateAuthMethodAzureADAsync(UpdateAuthMethodAzureAD body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateAuthMethodOAuth2Async(UpdateAuthMethodOAuth2 body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = updateAuthMethodAzureADValidateBeforeCall(body, _callback); + okhttp3.Call localVarCall = updateAuthMethodOAuth2ValidateBeforeCall(body, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for updateAuthMethodCert + * Build call for updateAuthMethodOIDC * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -33000,11 +33797,11 @@ public okhttp3.Call updateAuthMethodAzureADAsync(UpdateAuthMethodAzureAD body, f * @http.response.details - +
Status Code Description Response Headers
200 updateAuthMethodCertResponse wraps response body. -
200 updateAuthMethodOIDCResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call updateAuthMethodCertCall(UpdateAuthMethodCert body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateAuthMethodOIDCCall(UpdateAuthMethodOIDC body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -33022,7 +33819,7 @@ public okhttp3.Call updateAuthMethodCertCall(UpdateAuthMethodCert body, final Ap Object localVarPostBody = body; // create path and map variables - String localVarPath = "/update-auth-method-cert"; + String localVarPath = "/update-auth-method-oidc"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -33051,15 +33848,15 @@ public okhttp3.Call updateAuthMethodCertCall(UpdateAuthMethodCert body, final Ap } @SuppressWarnings("rawtypes") - private okhttp3.Call updateAuthMethodCertValidateBeforeCall(UpdateAuthMethodCert body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call updateAuthMethodOIDCValidateBeforeCall(UpdateAuthMethodOIDC body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling updateAuthMethodCert(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling updateAuthMethodOIDC(Async)"); } - okhttp3.Call localVarCall = updateAuthMethodCertCall(body, _callback); + okhttp3.Call localVarCall = updateAuthMethodOIDCCall(body, _callback); return localVarCall; } @@ -33068,17 +33865,17 @@ private okhttp3.Call updateAuthMethodCertValidateBeforeCall(UpdateAuthMethodCert * * * @param body (required) - * @return UpdateAuthMethodCertOutput + * @return Object * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 updateAuthMethodCertResponse wraps response body. -
200 updateAuthMethodOIDCResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public UpdateAuthMethodCertOutput updateAuthMethodCert(UpdateAuthMethodCert body) throws ApiException { - ApiResponse localVarResp = updateAuthMethodCertWithHttpInfo(body); + public Object updateAuthMethodOIDC(UpdateAuthMethodOIDC body) throws ApiException { + ApiResponse localVarResp = updateAuthMethodOIDCWithHttpInfo(body); return localVarResp.getData(); } @@ -33086,18 +33883,18 @@ public UpdateAuthMethodCertOutput updateAuthMethodCert(UpdateAuthMethodCert body * * * @param body (required) - * @return ApiResponse<UpdateAuthMethodCertOutput> + * @return ApiResponse<Object> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 updateAuthMethodCertResponse wraps response body. -
200 updateAuthMethodOIDCResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse updateAuthMethodCertWithHttpInfo(UpdateAuthMethodCert body) throws ApiException { - okhttp3.Call localVarCall = updateAuthMethodCertValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse updateAuthMethodOIDCWithHttpInfo(UpdateAuthMethodOIDC body) throws ApiException { + okhttp3.Call localVarCall = updateAuthMethodOIDCValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -33111,19 +33908,19 @@ public ApiResponse updateAuthMethodCertWithHttpInfo( * @http.response.details - +
Status Code Description Response Headers
200 updateAuthMethodCertResponse wraps response body. -
200 updateAuthMethodOIDCResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call updateAuthMethodCertAsync(UpdateAuthMethodCert body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateAuthMethodOIDCAsync(UpdateAuthMethodOIDC body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = updateAuthMethodCertValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = updateAuthMethodOIDCValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for updateAuthMethodGCP + * Build call for updateAuthMethodSAML * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -33131,11 +33928,11 @@ public okhttp3.Call updateAuthMethodCertAsync(UpdateAuthMethodCert body, final A * @http.response.details - +
Status Code Description Response Headers
200 updateAuthMethodGCPResponse wraps response body. -
200 updateAuthMethodSAMLResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call updateAuthMethodGCPCall(UpdateAuthMethodGCP body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateAuthMethodSAMLCall(UpdateAuthMethodSAML body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -33153,7 +33950,7 @@ public okhttp3.Call updateAuthMethodGCPCall(UpdateAuthMethodGCP body, final ApiC Object localVarPostBody = body; // create path and map variables - String localVarPath = "/update-auth-method-gcp"; + String localVarPath = "/update-auth-method-saml"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -33182,15 +33979,15 @@ public okhttp3.Call updateAuthMethodGCPCall(UpdateAuthMethodGCP body, final ApiC } @SuppressWarnings("rawtypes") - private okhttp3.Call updateAuthMethodGCPValidateBeforeCall(UpdateAuthMethodGCP body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call updateAuthMethodSAMLValidateBeforeCall(UpdateAuthMethodSAML body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling updateAuthMethodGCP(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling updateAuthMethodSAML(Async)"); } - okhttp3.Call localVarCall = updateAuthMethodGCPCall(body, _callback); + okhttp3.Call localVarCall = updateAuthMethodSAMLCall(body, _callback); return localVarCall; } @@ -33204,12 +34001,12 @@ private okhttp3.Call updateAuthMethodGCPValidateBeforeCall(UpdateAuthMethodGCP b * @http.response.details - +
Status Code Description Response Headers
200 updateAuthMethodGCPResponse wraps response body. -
200 updateAuthMethodSAMLResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public Object updateAuthMethodGCP(UpdateAuthMethodGCP body) throws ApiException { - ApiResponse localVarResp = updateAuthMethodGCPWithHttpInfo(body); + public Object updateAuthMethodSAML(UpdateAuthMethodSAML body) throws ApiException { + ApiResponse localVarResp = updateAuthMethodSAMLWithHttpInfo(body); return localVarResp.getData(); } @@ -33222,12 +34019,12 @@ public Object updateAuthMethodGCP(UpdateAuthMethodGCP body) throws ApiException * @http.response.details - +
Status Code Description Response Headers
200 updateAuthMethodGCPResponse wraps response body. -
200 updateAuthMethodSAMLResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse updateAuthMethodGCPWithHttpInfo(UpdateAuthMethodGCP body) throws ApiException { - okhttp3.Call localVarCall = updateAuthMethodGCPValidateBeforeCall(body, null); + public ApiResponse updateAuthMethodSAMLWithHttpInfo(UpdateAuthMethodSAML body) throws ApiException { + okhttp3.Call localVarCall = updateAuthMethodSAMLValidateBeforeCall(body, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -33242,19 +34039,19 @@ public ApiResponse updateAuthMethodGCPWithHttpInfo(UpdateAuthMethodGCP b * @http.response.details - +
Status Code Description Response Headers
200 updateAuthMethodGCPResponse wraps response body. -
200 updateAuthMethodSAMLResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call updateAuthMethodGCPAsync(UpdateAuthMethodGCP body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateAuthMethodSAMLAsync(UpdateAuthMethodSAML body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = updateAuthMethodGCPValidateBeforeCall(body, _callback); + okhttp3.Call localVarCall = updateAuthMethodSAMLValidateBeforeCall(body, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for updateAuthMethodK8S + * Build call for updateAuthMethodUniversalIdentity * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -33262,11 +34059,11 @@ public okhttp3.Call updateAuthMethodGCPAsync(UpdateAuthMethodGCP body, final Api * @http.response.details - +
Status Code Description Response Headers
200 updateAuthMethodK8SResponse wraps response body. -
200 updateAuthMethodUniversalIdentityResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call updateAuthMethodK8SCall(UpdateAuthMethodK8S body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateAuthMethodUniversalIdentityCall(UpdateAuthMethodUniversalIdentity body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -33284,7 +34081,7 @@ public okhttp3.Call updateAuthMethodK8SCall(UpdateAuthMethodK8S body, final ApiC Object localVarPostBody = body; // create path and map variables - String localVarPath = "/update-auth-method-k8s"; + String localVarPath = "/update-auth-method-universal-identity"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -33313,15 +34110,15 @@ public okhttp3.Call updateAuthMethodK8SCall(UpdateAuthMethodK8S body, final ApiC } @SuppressWarnings("rawtypes") - private okhttp3.Call updateAuthMethodK8SValidateBeforeCall(UpdateAuthMethodK8S body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call updateAuthMethodUniversalIdentityValidateBeforeCall(UpdateAuthMethodUniversalIdentity body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling updateAuthMethodK8S(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling updateAuthMethodUniversalIdentity(Async)"); } - okhttp3.Call localVarCall = updateAuthMethodK8SCall(body, _callback); + okhttp3.Call localVarCall = updateAuthMethodUniversalIdentityCall(body, _callback); return localVarCall; } @@ -33330,17 +34127,17 @@ private okhttp3.Call updateAuthMethodK8SValidateBeforeCall(UpdateAuthMethodK8S b * * * @param body (required) - * @return UpdateAuthMethodK8SOutput + * @return Object * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 updateAuthMethodK8SResponse wraps response body. -
200 updateAuthMethodUniversalIdentityResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public UpdateAuthMethodK8SOutput updateAuthMethodK8S(UpdateAuthMethodK8S body) throws ApiException { - ApiResponse localVarResp = updateAuthMethodK8SWithHttpInfo(body); + public Object updateAuthMethodUniversalIdentity(UpdateAuthMethodUniversalIdentity body) throws ApiException { + ApiResponse localVarResp = updateAuthMethodUniversalIdentityWithHttpInfo(body); return localVarResp.getData(); } @@ -33348,18 +34145,18 @@ public UpdateAuthMethodK8SOutput updateAuthMethodK8S(UpdateAuthMethodK8S body) t * * * @param body (required) - * @return ApiResponse<UpdateAuthMethodK8SOutput> + * @return ApiResponse<Object> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 updateAuthMethodK8SResponse wraps response body. -
200 updateAuthMethodUniversalIdentityResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse updateAuthMethodK8SWithHttpInfo(UpdateAuthMethodK8S body) throws ApiException { - okhttp3.Call localVarCall = updateAuthMethodK8SValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse updateAuthMethodUniversalIdentityWithHttpInfo(UpdateAuthMethodUniversalIdentity body) throws ApiException { + okhttp3.Call localVarCall = updateAuthMethodUniversalIdentityValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -33373,19 +34170,19 @@ public ApiResponse updateAuthMethodK8SWithHttpInfo(Up * @http.response.details - +
Status Code Description Response Headers
200 updateAuthMethodK8SResponse wraps response body. -
200 updateAuthMethodUniversalIdentityResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call updateAuthMethodK8SAsync(UpdateAuthMethodK8S body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateAuthMethodUniversalIdentityAsync(UpdateAuthMethodUniversalIdentity body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = updateAuthMethodK8SValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = updateAuthMethodUniversalIdentityValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for updateAuthMethodLDAP + * Build call for updateAzureTarget * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -33393,11 +34190,11 @@ public okhttp3.Call updateAuthMethodK8SAsync(UpdateAuthMethodK8S body, final Api * @http.response.details - +
Status Code Description Response Headers
200 updateAuthMethodLDAPResponse wraps response body. -
200 updateAzureTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call updateAuthMethodLDAPCall(UpdateAuthMethodLDAP body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateAzureTargetCall(UpdateAzureTarget body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -33415,7 +34212,7 @@ public okhttp3.Call updateAuthMethodLDAPCall(UpdateAuthMethodLDAP body, final Ap Object localVarPostBody = body; // create path and map variables - String localVarPath = "/update-auth-method-ldap"; + String localVarPath = "/update-azure-target"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -33444,15 +34241,15 @@ public okhttp3.Call updateAuthMethodLDAPCall(UpdateAuthMethodLDAP body, final Ap } @SuppressWarnings("rawtypes") - private okhttp3.Call updateAuthMethodLDAPValidateBeforeCall(UpdateAuthMethodLDAP body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call updateAzureTargetValidateBeforeCall(UpdateAzureTarget body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling updateAuthMethodLDAP(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling updateAzureTarget(Async)"); } - okhttp3.Call localVarCall = updateAuthMethodLDAPCall(body, _callback); + okhttp3.Call localVarCall = updateAzureTargetCall(body, _callback); return localVarCall; } @@ -33461,17 +34258,17 @@ private okhttp3.Call updateAuthMethodLDAPValidateBeforeCall(UpdateAuthMethodLDAP * * * @param body (required) - * @return UpdateAuthMethodLDAPOutput + * @return UpdateAzureTargetOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 updateAuthMethodLDAPResponse wraps response body. -
200 updateAzureTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public UpdateAuthMethodLDAPOutput updateAuthMethodLDAP(UpdateAuthMethodLDAP body) throws ApiException { - ApiResponse localVarResp = updateAuthMethodLDAPWithHttpInfo(body); + public UpdateAzureTargetOutput updateAzureTarget(UpdateAzureTarget body) throws ApiException { + ApiResponse localVarResp = updateAzureTargetWithHttpInfo(body); return localVarResp.getData(); } @@ -33479,18 +34276,18 @@ public UpdateAuthMethodLDAPOutput updateAuthMethodLDAP(UpdateAuthMethodLDAP body * * * @param body (required) - * @return ApiResponse<UpdateAuthMethodLDAPOutput> + * @return ApiResponse<UpdateAzureTargetOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 updateAuthMethodLDAPResponse wraps response body. -
200 updateAzureTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse updateAuthMethodLDAPWithHttpInfo(UpdateAuthMethodLDAP body) throws ApiException { - okhttp3.Call localVarCall = updateAuthMethodLDAPValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse updateAzureTargetWithHttpInfo(UpdateAzureTarget body) throws ApiException { + okhttp3.Call localVarCall = updateAzureTargetValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -33504,19 +34301,19 @@ public ApiResponse updateAuthMethodLDAPWithHttpInfo( * @http.response.details - +
Status Code Description Response Headers
200 updateAuthMethodLDAPResponse wraps response body. -
200 updateAzureTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call updateAuthMethodLDAPAsync(UpdateAuthMethodLDAP body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateAzureTargetAsync(UpdateAzureTarget body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = updateAuthMethodLDAPValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = updateAzureTargetValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for updateAuthMethodOAuth2 + * Build call for updateCertificateValue * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -33524,11 +34321,11 @@ public okhttp3.Call updateAuthMethodLDAPAsync(UpdateAuthMethodLDAP body, final A * @http.response.details - +
Status Code Description Response Headers
200 updateAuthMethodOAuth2Response wraps response body. -
200 updateCertificateValueResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call updateAuthMethodOAuth2Call(UpdateAuthMethodOAuth2 body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateCertificateValueCall(UpdateCertificateValue body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -33546,7 +34343,7 @@ public okhttp3.Call updateAuthMethodOAuth2Call(UpdateAuthMethodOAuth2 body, fina Object localVarPostBody = body; // create path and map variables - String localVarPath = "/update-auth-method-oauth2"; + String localVarPath = "/update-certificate-value"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -33575,15 +34372,15 @@ public okhttp3.Call updateAuthMethodOAuth2Call(UpdateAuthMethodOAuth2 body, fina } @SuppressWarnings("rawtypes") - private okhttp3.Call updateAuthMethodOAuth2ValidateBeforeCall(UpdateAuthMethodOAuth2 body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call updateCertificateValueValidateBeforeCall(UpdateCertificateValue body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling updateAuthMethodOAuth2(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling updateCertificateValue(Async)"); } - okhttp3.Call localVarCall = updateAuthMethodOAuth2Call(body, _callback); + okhttp3.Call localVarCall = updateCertificateValueCall(body, _callback); return localVarCall; } @@ -33592,17 +34389,17 @@ private okhttp3.Call updateAuthMethodOAuth2ValidateBeforeCall(UpdateAuthMethodOA * * * @param body (required) - * @return Object + * @return UpdateCertificateOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 updateAuthMethodOAuth2Response wraps response body. -
200 updateCertificateValueResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public Object updateAuthMethodOAuth2(UpdateAuthMethodOAuth2 body) throws ApiException { - ApiResponse localVarResp = updateAuthMethodOAuth2WithHttpInfo(body); + public UpdateCertificateOutput updateCertificateValue(UpdateCertificateValue body) throws ApiException { + ApiResponse localVarResp = updateCertificateValueWithHttpInfo(body); return localVarResp.getData(); } @@ -33610,18 +34407,18 @@ public Object updateAuthMethodOAuth2(UpdateAuthMethodOAuth2 body) throws ApiExce * * * @param body (required) - * @return ApiResponse<Object> + * @return ApiResponse<UpdateCertificateOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 updateAuthMethodOAuth2Response wraps response body. -
200 updateCertificateValueResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse updateAuthMethodOAuth2WithHttpInfo(UpdateAuthMethodOAuth2 body) throws ApiException { - okhttp3.Call localVarCall = updateAuthMethodOAuth2ValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse updateCertificateValueWithHttpInfo(UpdateCertificateValue body) throws ApiException { + okhttp3.Call localVarCall = updateCertificateValueValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -33635,19 +34432,19 @@ public ApiResponse updateAuthMethodOAuth2WithHttpInfo(UpdateAuthMethodOA * @http.response.details - +
Status Code Description Response Headers
200 updateAuthMethodOAuth2Response wraps response body. -
200 updateCertificateValueResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call updateAuthMethodOAuth2Async(UpdateAuthMethodOAuth2 body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateCertificateValueAsync(UpdateCertificateValue body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = updateAuthMethodOAuth2ValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = updateCertificateValueValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for updateAuthMethodOIDC + * Build call for updateClassicKeyCertificate * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -33655,11 +34452,11 @@ public okhttp3.Call updateAuthMethodOAuth2Async(UpdateAuthMethodOAuth2 body, fin * @http.response.details - +
Status Code Description Response Headers
200 updateAuthMethodOIDCResponse wraps response body. -
200 UpdateClassicKeyCertificateResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call updateAuthMethodOIDCCall(UpdateAuthMethodOIDC body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateClassicKeyCertificateCall(UpdateClassicKeyCertificate body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -33677,7 +34474,7 @@ public okhttp3.Call updateAuthMethodOIDCCall(UpdateAuthMethodOIDC body, final Ap Object localVarPostBody = body; // create path and map variables - String localVarPath = "/update-auth-method-oidc"; + String localVarPath = "/update-classic-key-certificate"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -33706,15 +34503,15 @@ public okhttp3.Call updateAuthMethodOIDCCall(UpdateAuthMethodOIDC body, final Ap } @SuppressWarnings("rawtypes") - private okhttp3.Call updateAuthMethodOIDCValidateBeforeCall(UpdateAuthMethodOIDC body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call updateClassicKeyCertificateValidateBeforeCall(UpdateClassicKeyCertificate body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling updateAuthMethodOIDC(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling updateClassicKeyCertificate(Async)"); } - okhttp3.Call localVarCall = updateAuthMethodOIDCCall(body, _callback); + okhttp3.Call localVarCall = updateClassicKeyCertificateCall(body, _callback); return localVarCall; } @@ -33728,12 +34525,12 @@ private okhttp3.Call updateAuthMethodOIDCValidateBeforeCall(UpdateAuthMethodOIDC * @http.response.details - +
Status Code Description Response Headers
200 updateAuthMethodOIDCResponse wraps response body. -
200 UpdateClassicKeyCertificateResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public Object updateAuthMethodOIDC(UpdateAuthMethodOIDC body) throws ApiException { - ApiResponse localVarResp = updateAuthMethodOIDCWithHttpInfo(body); + public Object updateClassicKeyCertificate(UpdateClassicKeyCertificate body) throws ApiException { + ApiResponse localVarResp = updateClassicKeyCertificateWithHttpInfo(body); return localVarResp.getData(); } @@ -33746,12 +34543,12 @@ public Object updateAuthMethodOIDC(UpdateAuthMethodOIDC body) throws ApiExceptio * @http.response.details - +
Status Code Description Response Headers
200 updateAuthMethodOIDCResponse wraps response body. -
200 UpdateClassicKeyCertificateResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse updateAuthMethodOIDCWithHttpInfo(UpdateAuthMethodOIDC body) throws ApiException { - okhttp3.Call localVarCall = updateAuthMethodOIDCValidateBeforeCall(body, null); + public ApiResponse updateClassicKeyCertificateWithHttpInfo(UpdateClassicKeyCertificate body) throws ApiException { + okhttp3.Call localVarCall = updateClassicKeyCertificateValidateBeforeCall(body, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -33766,19 +34563,19 @@ public ApiResponse updateAuthMethodOIDCWithHttpInfo(UpdateAuthMethodOIDC * @http.response.details - +
Status Code Description Response Headers
200 updateAuthMethodOIDCResponse wraps response body. -
200 UpdateClassicKeyCertificateResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call updateAuthMethodOIDCAsync(UpdateAuthMethodOIDC body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateClassicKeyCertificateAsync(UpdateClassicKeyCertificate body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = updateAuthMethodOIDCValidateBeforeCall(body, _callback); + okhttp3.Call localVarCall = updateClassicKeyCertificateValidateBeforeCall(body, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for updateAuthMethodSAML + * Build call for updateDBTarget * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -33786,11 +34583,11 @@ public okhttp3.Call updateAuthMethodOIDCAsync(UpdateAuthMethodOIDC body, final A * @http.response.details - +
Status Code Description Response Headers
200 updateAuthMethodSAMLResponse wraps response body. -
200 updateDBTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call updateAuthMethodSAMLCall(UpdateAuthMethodSAML body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateDBTargetCall(UpdateDBTarget body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -33808,7 +34605,7 @@ public okhttp3.Call updateAuthMethodSAMLCall(UpdateAuthMethodSAML body, final Ap Object localVarPostBody = body; // create path and map variables - String localVarPath = "/update-auth-method-saml"; + String localVarPath = "/update-db-target"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -33837,15 +34634,15 @@ public okhttp3.Call updateAuthMethodSAMLCall(UpdateAuthMethodSAML body, final Ap } @SuppressWarnings("rawtypes") - private okhttp3.Call updateAuthMethodSAMLValidateBeforeCall(UpdateAuthMethodSAML body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call updateDBTargetValidateBeforeCall(UpdateDBTarget body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling updateAuthMethodSAML(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling updateDBTarget(Async)"); } - okhttp3.Call localVarCall = updateAuthMethodSAMLCall(body, _callback); + okhttp3.Call localVarCall = updateDBTargetCall(body, _callback); return localVarCall; } @@ -33854,17 +34651,17 @@ private okhttp3.Call updateAuthMethodSAMLValidateBeforeCall(UpdateAuthMethodSAML * * * @param body (required) - * @return Object + * @return UpdateDBTargetOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 updateAuthMethodSAMLResponse wraps response body. -
200 updateDBTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public Object updateAuthMethodSAML(UpdateAuthMethodSAML body) throws ApiException { - ApiResponse localVarResp = updateAuthMethodSAMLWithHttpInfo(body); + public UpdateDBTargetOutput updateDBTarget(UpdateDBTarget body) throws ApiException { + ApiResponse localVarResp = updateDBTargetWithHttpInfo(body); return localVarResp.getData(); } @@ -33872,18 +34669,18 @@ public Object updateAuthMethodSAML(UpdateAuthMethodSAML body) throws ApiExceptio * * * @param body (required) - * @return ApiResponse<Object> + * @return ApiResponse<UpdateDBTargetOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 updateAuthMethodSAMLResponse wraps response body. -
200 updateDBTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse updateAuthMethodSAMLWithHttpInfo(UpdateAuthMethodSAML body) throws ApiException { - okhttp3.Call localVarCall = updateAuthMethodSAMLValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse updateDBTargetWithHttpInfo(UpdateDBTarget body) throws ApiException { + okhttp3.Call localVarCall = updateDBTargetValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -33897,19 +34694,19 @@ public ApiResponse updateAuthMethodSAMLWithHttpInfo(UpdateAuthMethodSAML * @http.response.details - +
Status Code Description Response Headers
200 updateAuthMethodSAMLResponse wraps response body. -
200 updateDBTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call updateAuthMethodSAMLAsync(UpdateAuthMethodSAML body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateDBTargetAsync(UpdateDBTarget body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = updateAuthMethodSAMLValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = updateDBTargetValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for updateAuthMethodUniversalIdentity + * Build call for updateDBTargetDetails * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -33917,11 +34714,11 @@ public okhttp3.Call updateAuthMethodSAMLAsync(UpdateAuthMethodSAML body, final A * @http.response.details - +
Status Code Description Response Headers
200 updateAuthMethodUniversalIdentityResponse wraps response body. -
200 updateTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call updateAuthMethodUniversalIdentityCall(UpdateAuthMethodUniversalIdentity body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateDBTargetDetailsCall(UpdateDBTargetDetails body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -33939,7 +34736,7 @@ public okhttp3.Call updateAuthMethodUniversalIdentityCall(UpdateAuthMethodUniver Object localVarPostBody = body; // create path and map variables - String localVarPath = "/update-auth-method-universal-identity"; + String localVarPath = "/update-db-target-details"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -33968,15 +34765,15 @@ public okhttp3.Call updateAuthMethodUniversalIdentityCall(UpdateAuthMethodUniver } @SuppressWarnings("rawtypes") - private okhttp3.Call updateAuthMethodUniversalIdentityValidateBeforeCall(UpdateAuthMethodUniversalIdentity body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call updateDBTargetDetailsValidateBeforeCall(UpdateDBTargetDetails body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling updateAuthMethodUniversalIdentity(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling updateDBTargetDetails(Async)"); } - okhttp3.Call localVarCall = updateAuthMethodUniversalIdentityCall(body, _callback); + okhttp3.Call localVarCall = updateDBTargetDetailsCall(body, _callback); return localVarCall; } @@ -33985,17 +34782,17 @@ private okhttp3.Call updateAuthMethodUniversalIdentityValidateBeforeCall(UpdateA * * * @param body (required) - * @return Object + * @return UpdateTargetOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 updateAuthMethodUniversalIdentityResponse wraps response body. -
200 updateTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public Object updateAuthMethodUniversalIdentity(UpdateAuthMethodUniversalIdentity body) throws ApiException { - ApiResponse localVarResp = updateAuthMethodUniversalIdentityWithHttpInfo(body); + public UpdateTargetOutput updateDBTargetDetails(UpdateDBTargetDetails body) throws ApiException { + ApiResponse localVarResp = updateDBTargetDetailsWithHttpInfo(body); return localVarResp.getData(); } @@ -34003,18 +34800,18 @@ public Object updateAuthMethodUniversalIdentity(UpdateAuthMethodUniversalIdentit * * * @param body (required) - * @return ApiResponse<Object> + * @return ApiResponse<UpdateTargetOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 updateAuthMethodUniversalIdentityResponse wraps response body. -
200 updateTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse updateAuthMethodUniversalIdentityWithHttpInfo(UpdateAuthMethodUniversalIdentity body) throws ApiException { - okhttp3.Call localVarCall = updateAuthMethodUniversalIdentityValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse updateDBTargetDetailsWithHttpInfo(UpdateDBTargetDetails body) throws ApiException { + okhttp3.Call localVarCall = updateDBTargetDetailsValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -34028,19 +34825,19 @@ public ApiResponse updateAuthMethodUniversalIdentityWithHttpInfo(UpdateA * @http.response.details - +
Status Code Description Response Headers
200 updateAuthMethodUniversalIdentityResponse wraps response body. -
200 updateTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call updateAuthMethodUniversalIdentityAsync(UpdateAuthMethodUniversalIdentity body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateDBTargetDetailsAsync(UpdateDBTargetDetails body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = updateAuthMethodUniversalIdentityValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = updateDBTargetDetailsValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for updateAzureTarget + * Build call for updateDockerhubTarget * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -34048,11 +34845,11 @@ public okhttp3.Call updateAuthMethodUniversalIdentityAsync(UpdateAuthMethodUnive * @http.response.details - +
Status Code Description Response Headers
200 updateAzureTargetResponse wraps response body. -
200 updateDockerhubTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call updateAzureTargetCall(UpdateAzureTarget body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateDockerhubTargetCall(UpdateDockerhubTarget body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -34070,7 +34867,7 @@ public okhttp3.Call updateAzureTargetCall(UpdateAzureTarget body, final ApiCallb Object localVarPostBody = body; // create path and map variables - String localVarPath = "/update-azure-target"; + String localVarPath = "/update-dockerhub-target"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -34099,15 +34896,15 @@ public okhttp3.Call updateAzureTargetCall(UpdateAzureTarget body, final ApiCallb } @SuppressWarnings("rawtypes") - private okhttp3.Call updateAzureTargetValidateBeforeCall(UpdateAzureTarget body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call updateDockerhubTargetValidateBeforeCall(UpdateDockerhubTarget body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling updateAzureTarget(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling updateDockerhubTarget(Async)"); } - okhttp3.Call localVarCall = updateAzureTargetCall(body, _callback); + okhttp3.Call localVarCall = updateDockerhubTargetCall(body, _callback); return localVarCall; } @@ -34116,17 +34913,17 @@ private okhttp3.Call updateAzureTargetValidateBeforeCall(UpdateAzureTarget body, * * * @param body (required) - * @return UpdateAzureTargetOutput + * @return UpdateDockerhubTargetOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 updateAzureTargetResponse wraps response body. -
200 updateDockerhubTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public UpdateAzureTargetOutput updateAzureTarget(UpdateAzureTarget body) throws ApiException { - ApiResponse localVarResp = updateAzureTargetWithHttpInfo(body); + public UpdateDockerhubTargetOutput updateDockerhubTarget(UpdateDockerhubTarget body) throws ApiException { + ApiResponse localVarResp = updateDockerhubTargetWithHttpInfo(body); return localVarResp.getData(); } @@ -34134,18 +34931,18 @@ public UpdateAzureTargetOutput updateAzureTarget(UpdateAzureTarget body) throws * * * @param body (required) - * @return ApiResponse<UpdateAzureTargetOutput> + * @return ApiResponse<UpdateDockerhubTargetOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 updateAzureTargetResponse wraps response body. -
200 updateDockerhubTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse updateAzureTargetWithHttpInfo(UpdateAzureTarget body) throws ApiException { - okhttp3.Call localVarCall = updateAzureTargetValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse updateDockerhubTargetWithHttpInfo(UpdateDockerhubTarget body) throws ApiException { + okhttp3.Call localVarCall = updateDockerhubTargetValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -34159,19 +34956,19 @@ public ApiResponse updateAzureTargetWithHttpInfo(Update * @http.response.details - +
Status Code Description Response Headers
200 updateAzureTargetResponse wraps response body. -
200 updateDockerhubTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call updateAzureTargetAsync(UpdateAzureTarget body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateDockerhubTargetAsync(UpdateDockerhubTarget body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = updateAzureTargetValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = updateDockerhubTargetValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for updateCertificateValue + * Build call for updateEKSTarget * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -34179,11 +34976,11 @@ public okhttp3.Call updateAzureTargetAsync(UpdateAzureTarget body, final ApiCall * @http.response.details - +
Status Code Description Response Headers
200 updateCertificateValueResponse wraps response body. -
200 updateEKSTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call updateCertificateValueCall(UpdateCertificateValue body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateEKSTargetCall(UpdateEKSTarget body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -34201,7 +34998,7 @@ public okhttp3.Call updateCertificateValueCall(UpdateCertificateValue body, fina Object localVarPostBody = body; // create path and map variables - String localVarPath = "/update-certificate-value"; + String localVarPath = "/update-eks-target"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -34230,15 +35027,15 @@ public okhttp3.Call updateCertificateValueCall(UpdateCertificateValue body, fina } @SuppressWarnings("rawtypes") - private okhttp3.Call updateCertificateValueValidateBeforeCall(UpdateCertificateValue body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call updateEKSTargetValidateBeforeCall(UpdateEKSTarget body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling updateCertificateValue(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling updateEKSTarget(Async)"); } - okhttp3.Call localVarCall = updateCertificateValueCall(body, _callback); + okhttp3.Call localVarCall = updateEKSTargetCall(body, _callback); return localVarCall; } @@ -34247,17 +35044,17 @@ private okhttp3.Call updateCertificateValueValidateBeforeCall(UpdateCertificateV * * * @param body (required) - * @return UpdateCertificateOutput + * @return UpdateEKSTargetOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 updateCertificateValueResponse wraps response body. -
200 updateEKSTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public UpdateCertificateOutput updateCertificateValue(UpdateCertificateValue body) throws ApiException { - ApiResponse localVarResp = updateCertificateValueWithHttpInfo(body); + public UpdateEKSTargetOutput updateEKSTarget(UpdateEKSTarget body) throws ApiException { + ApiResponse localVarResp = updateEKSTargetWithHttpInfo(body); return localVarResp.getData(); } @@ -34265,18 +35062,18 @@ public UpdateCertificateOutput updateCertificateValue(UpdateCertificateValue bod * * * @param body (required) - * @return ApiResponse<UpdateCertificateOutput> + * @return ApiResponse<UpdateEKSTargetOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 updateCertificateValueResponse wraps response body. -
200 updateEKSTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse updateCertificateValueWithHttpInfo(UpdateCertificateValue body) throws ApiException { - okhttp3.Call localVarCall = updateCertificateValueValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse updateEKSTargetWithHttpInfo(UpdateEKSTarget body) throws ApiException { + okhttp3.Call localVarCall = updateEKSTargetValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -34290,19 +35087,19 @@ public ApiResponse updateCertificateValueWithHttpInfo(U * @http.response.details - +
Status Code Description Response Headers
200 updateCertificateValueResponse wraps response body. -
200 updateEKSTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call updateCertificateValueAsync(UpdateCertificateValue body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateEKSTargetAsync(UpdateEKSTarget body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = updateCertificateValueValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = updateEKSTargetValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for updateClassicKeyCertificate + * Build call for updateEventForwarder * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -34310,11 +35107,11 @@ public okhttp3.Call updateCertificateValueAsync(UpdateCertificateValue body, fin * @http.response.details - +
Status Code Description Response Headers
200 UpdateClassicKeyCertificateResponse wraps response body. -
200 updateEventForwarderResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call updateClassicKeyCertificateCall(UpdateClassicKeyCertificate body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateEventForwarderCall(UpdateEventForwarder body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -34332,7 +35129,7 @@ public okhttp3.Call updateClassicKeyCertificateCall(UpdateClassicKeyCertificate Object localVarPostBody = body; // create path and map variables - String localVarPath = "/update-classic-key-certificate"; + String localVarPath = "/update-event-forwarder"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -34361,15 +35158,15 @@ public okhttp3.Call updateClassicKeyCertificateCall(UpdateClassicKeyCertificate } @SuppressWarnings("rawtypes") - private okhttp3.Call updateClassicKeyCertificateValidateBeforeCall(UpdateClassicKeyCertificate body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call updateEventForwarderValidateBeforeCall(UpdateEventForwarder body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling updateClassicKeyCertificate(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling updateEventForwarder(Async)"); } - okhttp3.Call localVarCall = updateClassicKeyCertificateCall(body, _callback); + okhttp3.Call localVarCall = updateEventForwarderCall(body, _callback); return localVarCall; } @@ -34383,12 +35180,12 @@ private okhttp3.Call updateClassicKeyCertificateValidateBeforeCall(UpdateClassic * @http.response.details - +
Status Code Description Response Headers
200 UpdateClassicKeyCertificateResponse wraps response body. -
200 updateEventForwarderResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public Object updateClassicKeyCertificate(UpdateClassicKeyCertificate body) throws ApiException { - ApiResponse localVarResp = updateClassicKeyCertificateWithHttpInfo(body); + public Object updateEventForwarder(UpdateEventForwarder body) throws ApiException { + ApiResponse localVarResp = updateEventForwarderWithHttpInfo(body); return localVarResp.getData(); } @@ -34401,12 +35198,12 @@ public Object updateClassicKeyCertificate(UpdateClassicKeyCertificate body) thro * @http.response.details - +
Status Code Description Response Headers
200 UpdateClassicKeyCertificateResponse wraps response body. -
200 updateEventForwarderResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse updateClassicKeyCertificateWithHttpInfo(UpdateClassicKeyCertificate body) throws ApiException { - okhttp3.Call localVarCall = updateClassicKeyCertificateValidateBeforeCall(body, null); + public ApiResponse updateEventForwarderWithHttpInfo(UpdateEventForwarder body) throws ApiException { + okhttp3.Call localVarCall = updateEventForwarderValidateBeforeCall(body, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -34421,19 +35218,19 @@ public ApiResponse updateClassicKeyCertificateWithHttpInfo(UpdateClassic * @http.response.details - +
Status Code Description Response Headers
200 UpdateClassicKeyCertificateResponse wraps response body. -
200 updateEventForwarderResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call updateClassicKeyCertificateAsync(UpdateClassicKeyCertificate body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateEventForwarderAsync(UpdateEventForwarder body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = updateClassicKeyCertificateValidateBeforeCall(body, _callback); + okhttp3.Call localVarCall = updateEventForwarderValidateBeforeCall(body, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for updateDBTarget + * Build call for updateGKETarget * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -34441,11 +35238,11 @@ public okhttp3.Call updateClassicKeyCertificateAsync(UpdateClassicKeyCertificate * @http.response.details - +
Status Code Description Response Headers
200 updateDBTargetResponse wraps response body. -
200 updateGKETargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call updateDBTargetCall(UpdateDBTarget body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateGKETargetCall(UpdateGKETarget body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -34463,7 +35260,7 @@ public okhttp3.Call updateDBTargetCall(UpdateDBTarget body, final ApiCallback _c Object localVarPostBody = body; // create path and map variables - String localVarPath = "/update-db-target"; + String localVarPath = "/update-gke-target"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -34492,15 +35289,15 @@ public okhttp3.Call updateDBTargetCall(UpdateDBTarget body, final ApiCallback _c } @SuppressWarnings("rawtypes") - private okhttp3.Call updateDBTargetValidateBeforeCall(UpdateDBTarget body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call updateGKETargetValidateBeforeCall(UpdateGKETarget body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling updateDBTarget(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling updateGKETarget(Async)"); } - okhttp3.Call localVarCall = updateDBTargetCall(body, _callback); + okhttp3.Call localVarCall = updateGKETargetCall(body, _callback); return localVarCall; } @@ -34509,17 +35306,17 @@ private okhttp3.Call updateDBTargetValidateBeforeCall(UpdateDBTarget body, final * * * @param body (required) - * @return UpdateDBTargetOutput + * @return UpdateGKETargetOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 updateDBTargetResponse wraps response body. -
200 updateGKETargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public UpdateDBTargetOutput updateDBTarget(UpdateDBTarget body) throws ApiException { - ApiResponse localVarResp = updateDBTargetWithHttpInfo(body); + public UpdateGKETargetOutput updateGKETarget(UpdateGKETarget body) throws ApiException { + ApiResponse localVarResp = updateGKETargetWithHttpInfo(body); return localVarResp.getData(); } @@ -34527,18 +35324,18 @@ public UpdateDBTargetOutput updateDBTarget(UpdateDBTarget body) throws ApiExcept * * * @param body (required) - * @return ApiResponse<UpdateDBTargetOutput> + * @return ApiResponse<UpdateGKETargetOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 updateDBTargetResponse wraps response body. -
200 updateGKETargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse updateDBTargetWithHttpInfo(UpdateDBTarget body) throws ApiException { - okhttp3.Call localVarCall = updateDBTargetValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse updateGKETargetWithHttpInfo(UpdateGKETarget body) throws ApiException { + okhttp3.Call localVarCall = updateGKETargetValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -34552,19 +35349,19 @@ public ApiResponse updateDBTargetWithHttpInfo(UpdateDBTarg * @http.response.details - +
Status Code Description Response Headers
200 updateDBTargetResponse wraps response body. -
200 updateGKETargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call updateDBTargetAsync(UpdateDBTarget body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateGKETargetAsync(UpdateGKETarget body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = updateDBTargetValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = updateGKETargetValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for updateDBTargetDetails + * Build call for updateGcpTarget * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -34572,11 +35369,11 @@ public okhttp3.Call updateDBTargetAsync(UpdateDBTarget body, final ApiCallback Status Code Description Response Headers - 200 updateTargetResponse wraps response body. - + 200 updateGcpTargetResponse wraps response body. - 0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. - */ - public okhttp3.Call updateDBTargetDetailsCall(UpdateDBTargetDetails body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateGcpTargetCall(UpdateGcpTarget body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -34594,7 +35391,7 @@ public okhttp3.Call updateDBTargetDetailsCall(UpdateDBTargetDetails body, final Object localVarPostBody = body; // create path and map variables - String localVarPath = "/update-db-target-details"; + String localVarPath = "/update-gcp-target"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -34623,15 +35420,15 @@ public okhttp3.Call updateDBTargetDetailsCall(UpdateDBTargetDetails body, final } @SuppressWarnings("rawtypes") - private okhttp3.Call updateDBTargetDetailsValidateBeforeCall(UpdateDBTargetDetails body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call updateGcpTargetValidateBeforeCall(UpdateGcpTarget body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling updateDBTargetDetails(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling updateGcpTarget(Async)"); } - okhttp3.Call localVarCall = updateDBTargetDetailsCall(body, _callback); + okhttp3.Call localVarCall = updateGcpTargetCall(body, _callback); return localVarCall; } @@ -34640,17 +35437,17 @@ private okhttp3.Call updateDBTargetDetailsValidateBeforeCall(UpdateDBTargetDetai * * * @param body (required) - * @return UpdateTargetOutput + * @return UpdateGcpTargetOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 updateTargetResponse wraps response body. -
200 updateGcpTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public UpdateTargetOutput updateDBTargetDetails(UpdateDBTargetDetails body) throws ApiException { - ApiResponse localVarResp = updateDBTargetDetailsWithHttpInfo(body); + public UpdateGcpTargetOutput updateGcpTarget(UpdateGcpTarget body) throws ApiException { + ApiResponse localVarResp = updateGcpTargetWithHttpInfo(body); return localVarResp.getData(); } @@ -34658,18 +35455,18 @@ public UpdateTargetOutput updateDBTargetDetails(UpdateDBTargetDetails body) thro * * * @param body (required) - * @return ApiResponse<UpdateTargetOutput> + * @return ApiResponse<UpdateGcpTargetOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 updateTargetResponse wraps response body. -
200 updateGcpTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse updateDBTargetDetailsWithHttpInfo(UpdateDBTargetDetails body) throws ApiException { - okhttp3.Call localVarCall = updateDBTargetDetailsValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse updateGcpTargetWithHttpInfo(UpdateGcpTarget body) throws ApiException { + okhttp3.Call localVarCall = updateGcpTargetValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -34683,19 +35480,19 @@ public ApiResponse updateDBTargetDetailsWithHttpInfo(UpdateD * @http.response.details - +
Status Code Description Response Headers
200 updateTargetResponse wraps response body. -
200 updateGcpTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call updateDBTargetDetailsAsync(UpdateDBTargetDetails body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateGcpTargetAsync(UpdateGcpTarget body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = updateDBTargetDetailsValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = updateGcpTargetValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for updateDockerhubTarget + * Build call for updateGithubTarget * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -34703,11 +35500,11 @@ public okhttp3.Call updateDBTargetDetailsAsync(UpdateDBTargetDetails body, final * @http.response.details - +
Status Code Description Response Headers
200 updateDockerhubTargetResponse wraps response body. -
200 updateGithubTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call updateDockerhubTargetCall(UpdateDockerhubTarget body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateGithubTargetCall(UpdateGithubTarget body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -34725,7 +35522,7 @@ public okhttp3.Call updateDockerhubTargetCall(UpdateDockerhubTarget body, final Object localVarPostBody = body; // create path and map variables - String localVarPath = "/update-dockerhub-target"; + String localVarPath = "/update-github-target"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -34754,15 +35551,15 @@ public okhttp3.Call updateDockerhubTargetCall(UpdateDockerhubTarget body, final } @SuppressWarnings("rawtypes") - private okhttp3.Call updateDockerhubTargetValidateBeforeCall(UpdateDockerhubTarget body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call updateGithubTargetValidateBeforeCall(UpdateGithubTarget body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling updateDockerhubTarget(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling updateGithubTarget(Async)"); } - okhttp3.Call localVarCall = updateDockerhubTargetCall(body, _callback); + okhttp3.Call localVarCall = updateGithubTargetCall(body, _callback); return localVarCall; } @@ -34771,17 +35568,17 @@ private okhttp3.Call updateDockerhubTargetValidateBeforeCall(UpdateDockerhubTarg * * * @param body (required) - * @return UpdateDockerhubTargetOutput + * @return UpdateGithubTargetOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 updateDockerhubTargetResponse wraps response body. -
200 updateGithubTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public UpdateDockerhubTargetOutput updateDockerhubTarget(UpdateDockerhubTarget body) throws ApiException { - ApiResponse localVarResp = updateDockerhubTargetWithHttpInfo(body); + public UpdateGithubTargetOutput updateGithubTarget(UpdateGithubTarget body) throws ApiException { + ApiResponse localVarResp = updateGithubTargetWithHttpInfo(body); return localVarResp.getData(); } @@ -34789,18 +35586,18 @@ public UpdateDockerhubTargetOutput updateDockerhubTarget(UpdateDockerhubTarget b * * * @param body (required) - * @return ApiResponse<UpdateDockerhubTargetOutput> + * @return ApiResponse<UpdateGithubTargetOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 updateDockerhubTargetResponse wraps response body. -
200 updateGithubTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse updateDockerhubTargetWithHttpInfo(UpdateDockerhubTarget body) throws ApiException { - okhttp3.Call localVarCall = updateDockerhubTargetValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse updateGithubTargetWithHttpInfo(UpdateGithubTarget body) throws ApiException { + okhttp3.Call localVarCall = updateGithubTargetValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -34814,19 +35611,19 @@ public ApiResponse updateDockerhubTargetWithHttpInf * @http.response.details - +
Status Code Description Response Headers
200 updateDockerhubTargetResponse wraps response body. -
200 updateGithubTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call updateDockerhubTargetAsync(UpdateDockerhubTarget body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateGithubTargetAsync(UpdateGithubTarget body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = updateDockerhubTargetValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = updateGithubTargetValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for updateEKSTarget + * Build call for updateGlobalSignAtlasTarget * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -34834,11 +35631,11 @@ public okhttp3.Call updateDockerhubTargetAsync(UpdateDockerhubTarget body, final * @http.response.details - +
Status Code Description Response Headers
200 updateEKSTargetResponse wraps response body. -
200 updateGlobalSignAtlasTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call updateEKSTargetCall(UpdateEKSTarget body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateGlobalSignAtlasTargetCall(UpdateGlobalSignAtlasTarget body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -34856,7 +35653,7 @@ public okhttp3.Call updateEKSTargetCall(UpdateEKSTarget body, final ApiCallback Object localVarPostBody = body; // create path and map variables - String localVarPath = "/update-eks-target"; + String localVarPath = "/update-globalsign-atlas-target"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -34885,15 +35682,15 @@ public okhttp3.Call updateEKSTargetCall(UpdateEKSTarget body, final ApiCallback } @SuppressWarnings("rawtypes") - private okhttp3.Call updateEKSTargetValidateBeforeCall(UpdateEKSTarget body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call updateGlobalSignAtlasTargetValidateBeforeCall(UpdateGlobalSignAtlasTarget body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling updateEKSTarget(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling updateGlobalSignAtlasTarget(Async)"); } - okhttp3.Call localVarCall = updateEKSTargetCall(body, _callback); + okhttp3.Call localVarCall = updateGlobalSignAtlasTargetCall(body, _callback); return localVarCall; } @@ -34902,17 +35699,17 @@ private okhttp3.Call updateEKSTargetValidateBeforeCall(UpdateEKSTarget body, fin * * * @param body (required) - * @return UpdateEKSTargetOutput + * @return UpdateGlobalSignAtlasTargetOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 updateEKSTargetResponse wraps response body. -
200 updateGlobalSignAtlasTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public UpdateEKSTargetOutput updateEKSTarget(UpdateEKSTarget body) throws ApiException { - ApiResponse localVarResp = updateEKSTargetWithHttpInfo(body); + public UpdateGlobalSignAtlasTargetOutput updateGlobalSignAtlasTarget(UpdateGlobalSignAtlasTarget body) throws ApiException { + ApiResponse localVarResp = updateGlobalSignAtlasTargetWithHttpInfo(body); return localVarResp.getData(); } @@ -34920,18 +35717,18 @@ public UpdateEKSTargetOutput updateEKSTarget(UpdateEKSTarget body) throws ApiExc * * * @param body (required) - * @return ApiResponse<UpdateEKSTargetOutput> + * @return ApiResponse<UpdateGlobalSignAtlasTargetOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 updateEKSTargetResponse wraps response body. -
200 updateGlobalSignAtlasTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse updateEKSTargetWithHttpInfo(UpdateEKSTarget body) throws ApiException { - okhttp3.Call localVarCall = updateEKSTargetValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse updateGlobalSignAtlasTargetWithHttpInfo(UpdateGlobalSignAtlasTarget body) throws ApiException { + okhttp3.Call localVarCall = updateGlobalSignAtlasTargetValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -34945,19 +35742,19 @@ public ApiResponse updateEKSTargetWithHttpInfo(UpdateEKST * @http.response.details - +
Status Code Description Response Headers
200 updateEKSTargetResponse wraps response body. -
200 updateGlobalSignAtlasTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call updateEKSTargetAsync(UpdateEKSTarget body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateGlobalSignAtlasTargetAsync(UpdateGlobalSignAtlasTarget body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = updateEKSTargetValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = updateGlobalSignAtlasTargetValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for updateEventForwarder + * Build call for updateGlobalSignTarget * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -34965,11 +35762,11 @@ public okhttp3.Call updateEKSTargetAsync(UpdateEKSTarget body, final ApiCallback * @http.response.details - +
Status Code Description Response Headers
200 updateEventForwarderResponse wraps response body. -
200 updateGlobalSignTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call updateEventForwarderCall(UpdateEventForwarder body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateGlobalSignTargetCall(UpdateGlobalSignTarget body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -34987,7 +35784,7 @@ public okhttp3.Call updateEventForwarderCall(UpdateEventForwarder body, final Ap Object localVarPostBody = body; // create path and map variables - String localVarPath = "/update-event-forwarder"; + String localVarPath = "/update-globalsign-target"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -35016,15 +35813,15 @@ public okhttp3.Call updateEventForwarderCall(UpdateEventForwarder body, final Ap } @SuppressWarnings("rawtypes") - private okhttp3.Call updateEventForwarderValidateBeforeCall(UpdateEventForwarder body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call updateGlobalSignTargetValidateBeforeCall(UpdateGlobalSignTarget body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling updateEventForwarder(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling updateGlobalSignTarget(Async)"); } - okhttp3.Call localVarCall = updateEventForwarderCall(body, _callback); + okhttp3.Call localVarCall = updateGlobalSignTargetCall(body, _callback); return localVarCall; } @@ -35033,17 +35830,17 @@ private okhttp3.Call updateEventForwarderValidateBeforeCall(UpdateEventForwarder * * * @param body (required) - * @return Object + * @return UpdateGlobalSignTargetOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 updateEventForwarderResponse wraps response body. -
200 updateGlobalSignTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public Object updateEventForwarder(UpdateEventForwarder body) throws ApiException { - ApiResponse localVarResp = updateEventForwarderWithHttpInfo(body); + public UpdateGlobalSignTargetOutput updateGlobalSignTarget(UpdateGlobalSignTarget body) throws ApiException { + ApiResponse localVarResp = updateGlobalSignTargetWithHttpInfo(body); return localVarResp.getData(); } @@ -35051,18 +35848,18 @@ public Object updateEventForwarder(UpdateEventForwarder body) throws ApiExceptio * * * @param body (required) - * @return ApiResponse<Object> + * @return ApiResponse<UpdateGlobalSignTargetOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 updateEventForwarderResponse wraps response body. -
200 updateGlobalSignTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse updateEventForwarderWithHttpInfo(UpdateEventForwarder body) throws ApiException { - okhttp3.Call localVarCall = updateEventForwarderValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse updateGlobalSignTargetWithHttpInfo(UpdateGlobalSignTarget body) throws ApiException { + okhttp3.Call localVarCall = updateGlobalSignTargetValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -35076,19 +35873,19 @@ public ApiResponse updateEventForwarderWithHttpInfo(UpdateEventForwarder * @http.response.details - +
Status Code Description Response Headers
200 updateEventForwarderResponse wraps response body. -
200 updateGlobalSignTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call updateEventForwarderAsync(UpdateEventForwarder body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateGlobalSignTargetAsync(UpdateGlobalSignTarget body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = updateEventForwarderValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = updateGlobalSignTargetValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for updateGKETarget + * Build call for updateGroup * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -35096,11 +35893,11 @@ public okhttp3.Call updateEventForwarderAsync(UpdateEventForwarder body, final A * @http.response.details - +
Status Code Description Response Headers
200 updateGKETargetResponse wraps response body. -
200 updateGroupResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call updateGKETargetCall(UpdateGKETarget body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateGroupCall(UpdateGroup body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -35118,7 +35915,7 @@ public okhttp3.Call updateGKETargetCall(UpdateGKETarget body, final ApiCallback Object localVarPostBody = body; // create path and map variables - String localVarPath = "/update-gke-target"; + String localVarPath = "/update-group"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -35147,15 +35944,15 @@ public okhttp3.Call updateGKETargetCall(UpdateGKETarget body, final ApiCallback } @SuppressWarnings("rawtypes") - private okhttp3.Call updateGKETargetValidateBeforeCall(UpdateGKETarget body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call updateGroupValidateBeforeCall(UpdateGroup body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling updateGKETarget(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling updateGroup(Async)"); } - okhttp3.Call localVarCall = updateGKETargetCall(body, _callback); + okhttp3.Call localVarCall = updateGroupCall(body, _callback); return localVarCall; } @@ -35164,17 +35961,17 @@ private okhttp3.Call updateGKETargetValidateBeforeCall(UpdateGKETarget body, fin * * * @param body (required) - * @return UpdateGKETargetOutput + * @return UpdateGroupOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 updateGKETargetResponse wraps response body. -
200 updateGroupResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public UpdateGKETargetOutput updateGKETarget(UpdateGKETarget body) throws ApiException { - ApiResponse localVarResp = updateGKETargetWithHttpInfo(body); + public UpdateGroupOutput updateGroup(UpdateGroup body) throws ApiException { + ApiResponse localVarResp = updateGroupWithHttpInfo(body); return localVarResp.getData(); } @@ -35182,18 +35979,18 @@ public UpdateGKETargetOutput updateGKETarget(UpdateGKETarget body) throws ApiExc * * * @param body (required) - * @return ApiResponse<UpdateGKETargetOutput> + * @return ApiResponse<UpdateGroupOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 updateGKETargetResponse wraps response body. -
200 updateGroupResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse updateGKETargetWithHttpInfo(UpdateGKETarget body) throws ApiException { - okhttp3.Call localVarCall = updateGKETargetValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse updateGroupWithHttpInfo(UpdateGroup body) throws ApiException { + okhttp3.Call localVarCall = updateGroupValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -35207,19 +36004,19 @@ public ApiResponse updateGKETargetWithHttpInfo(UpdateGKET * @http.response.details - +
Status Code Description Response Headers
200 updateGKETargetResponse wraps response body. -
200 updateGroupResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call updateGKETargetAsync(UpdateGKETarget body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateGroupAsync(UpdateGroup body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = updateGKETargetValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = updateGroupValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for updateGcpTarget + * Build call for updateItem * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -35227,11 +36024,11 @@ public okhttp3.Call updateGKETargetAsync(UpdateGKETarget body, final ApiCallback * @http.response.details - +
Status Code Description Response Headers
200 updateGcpTargetResponse wraps response body. -
200 updateItemResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call updateGcpTargetCall(UpdateGcpTarget body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateItemCall(UpdateItem body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -35249,7 +36046,7 @@ public okhttp3.Call updateGcpTargetCall(UpdateGcpTarget body, final ApiCallback Object localVarPostBody = body; // create path and map variables - String localVarPath = "/update-gcp-target"; + String localVarPath = "/update-item"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -35278,15 +36075,15 @@ public okhttp3.Call updateGcpTargetCall(UpdateGcpTarget body, final ApiCallback } @SuppressWarnings("rawtypes") - private okhttp3.Call updateGcpTargetValidateBeforeCall(UpdateGcpTarget body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call updateItemValidateBeforeCall(UpdateItem body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling updateGcpTarget(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling updateItem(Async)"); } - okhttp3.Call localVarCall = updateGcpTargetCall(body, _callback); + okhttp3.Call localVarCall = updateItemCall(body, _callback); return localVarCall; } @@ -35295,17 +36092,17 @@ private okhttp3.Call updateGcpTargetValidateBeforeCall(UpdateGcpTarget body, fin * * * @param body (required) - * @return UpdateGcpTargetOutput + * @return UpdateItemOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 updateGcpTargetResponse wraps response body. -
200 updateItemResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public UpdateGcpTargetOutput updateGcpTarget(UpdateGcpTarget body) throws ApiException { - ApiResponse localVarResp = updateGcpTargetWithHttpInfo(body); + public UpdateItemOutput updateItem(UpdateItem body) throws ApiException { + ApiResponse localVarResp = updateItemWithHttpInfo(body); return localVarResp.getData(); } @@ -35313,18 +36110,18 @@ public UpdateGcpTargetOutput updateGcpTarget(UpdateGcpTarget body) throws ApiExc * * * @param body (required) - * @return ApiResponse<UpdateGcpTargetOutput> + * @return ApiResponse<UpdateItemOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 updateGcpTargetResponse wraps response body. -
200 updateItemResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse updateGcpTargetWithHttpInfo(UpdateGcpTarget body) throws ApiException { - okhttp3.Call localVarCall = updateGcpTargetValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse updateItemWithHttpInfo(UpdateItem body) throws ApiException { + okhttp3.Call localVarCall = updateItemValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -35338,19 +36135,19 @@ public ApiResponse updateGcpTargetWithHttpInfo(UpdateGcpT * @http.response.details - +
Status Code Description Response Headers
200 updateGcpTargetResponse wraps response body. -
200 updateItemResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call updateGcpTargetAsync(UpdateGcpTarget body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateItemAsync(UpdateItem body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = updateGcpTargetValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = updateItemValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for updateGithubTarget + * Build call for updateLdapTarget * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -35358,11 +36155,11 @@ public okhttp3.Call updateGcpTargetAsync(UpdateGcpTarget body, final ApiCallback * @http.response.details - +
Status Code Description Response Headers
200 updateGithubTargetResponse wraps response body. -
200 updateLdapTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call updateGithubTargetCall(UpdateGithubTarget body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateLdapTargetCall(UpdateLdapTarget body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -35380,7 +36177,7 @@ public okhttp3.Call updateGithubTargetCall(UpdateGithubTarget body, final ApiCal Object localVarPostBody = body; // create path and map variables - String localVarPath = "/update-github-target"; + String localVarPath = "/update-ldap-target"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -35409,15 +36206,15 @@ public okhttp3.Call updateGithubTargetCall(UpdateGithubTarget body, final ApiCal } @SuppressWarnings("rawtypes") - private okhttp3.Call updateGithubTargetValidateBeforeCall(UpdateGithubTarget body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call updateLdapTargetValidateBeforeCall(UpdateLdapTarget body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling updateGithubTarget(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling updateLdapTarget(Async)"); } - okhttp3.Call localVarCall = updateGithubTargetCall(body, _callback); + okhttp3.Call localVarCall = updateLdapTargetCall(body, _callback); return localVarCall; } @@ -35426,17 +36223,17 @@ private okhttp3.Call updateGithubTargetValidateBeforeCall(UpdateGithubTarget bod * * * @param body (required) - * @return UpdateGithubTargetOutput + * @return UpdateLdapTargetOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 updateGithubTargetResponse wraps response body. -
200 updateLdapTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public UpdateGithubTargetOutput updateGithubTarget(UpdateGithubTarget body) throws ApiException { - ApiResponse localVarResp = updateGithubTargetWithHttpInfo(body); + public UpdateLdapTargetOutput updateLdapTarget(UpdateLdapTarget body) throws ApiException { + ApiResponse localVarResp = updateLdapTargetWithHttpInfo(body); return localVarResp.getData(); } @@ -35444,18 +36241,18 @@ public UpdateGithubTargetOutput updateGithubTarget(UpdateGithubTarget body) thro * * * @param body (required) - * @return ApiResponse<UpdateGithubTargetOutput> + * @return ApiResponse<UpdateLdapTargetOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 updateGithubTargetResponse wraps response body. -
200 updateLdapTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse updateGithubTargetWithHttpInfo(UpdateGithubTarget body) throws ApiException { - okhttp3.Call localVarCall = updateGithubTargetValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse updateLdapTargetWithHttpInfo(UpdateLdapTarget body) throws ApiException { + okhttp3.Call localVarCall = updateLdapTargetValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -35469,19 +36266,19 @@ public ApiResponse updateGithubTargetWithHttpInfo(Upda * @http.response.details - +
Status Code Description Response Headers
200 updateGithubTargetResponse wraps response body. -
200 updateLdapTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call updateGithubTargetAsync(UpdateGithubTarget body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateLdapTargetAsync(UpdateLdapTarget body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = updateGithubTargetValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = updateLdapTargetValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for updateGlobalSignAtlasTarget + * Build call for updateLdapTargetDetails * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -35489,11 +36286,11 @@ public okhttp3.Call updateGithubTargetAsync(UpdateGithubTarget body, final ApiCa * @http.response.details - +
Status Code Description Response Headers
200 updateGlobalSignAtlasTargetResponse wraps response body. -
200 updateTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call updateGlobalSignAtlasTargetCall(UpdateGlobalSignAtlasTarget body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateLdapTargetDetailsCall(UpdateLdapTargetDetails body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -35511,7 +36308,7 @@ public okhttp3.Call updateGlobalSignAtlasTargetCall(UpdateGlobalSignAtlasTarget Object localVarPostBody = body; // create path and map variables - String localVarPath = "/update-globalsign-atlas-target"; + String localVarPath = "/update-ldap-target-details"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -35540,15 +36337,15 @@ public okhttp3.Call updateGlobalSignAtlasTargetCall(UpdateGlobalSignAtlasTarget } @SuppressWarnings("rawtypes") - private okhttp3.Call updateGlobalSignAtlasTargetValidateBeforeCall(UpdateGlobalSignAtlasTarget body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call updateLdapTargetDetailsValidateBeforeCall(UpdateLdapTargetDetails body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling updateGlobalSignAtlasTarget(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling updateLdapTargetDetails(Async)"); } - okhttp3.Call localVarCall = updateGlobalSignAtlasTargetCall(body, _callback); + okhttp3.Call localVarCall = updateLdapTargetDetailsCall(body, _callback); return localVarCall; } @@ -35557,17 +36354,17 @@ private okhttp3.Call updateGlobalSignAtlasTargetValidateBeforeCall(UpdateGlobalS * * * @param body (required) - * @return UpdateGlobalSignAtlasTargetOutput + * @return UpdateTargetOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 updateGlobalSignAtlasTargetResponse wraps response body. -
200 updateTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public UpdateGlobalSignAtlasTargetOutput updateGlobalSignAtlasTarget(UpdateGlobalSignAtlasTarget body) throws ApiException { - ApiResponse localVarResp = updateGlobalSignAtlasTargetWithHttpInfo(body); + public UpdateTargetOutput updateLdapTargetDetails(UpdateLdapTargetDetails body) throws ApiException { + ApiResponse localVarResp = updateLdapTargetDetailsWithHttpInfo(body); return localVarResp.getData(); } @@ -35575,18 +36372,18 @@ public UpdateGlobalSignAtlasTargetOutput updateGlobalSignAtlasTarget(UpdateGloba * * * @param body (required) - * @return ApiResponse<UpdateGlobalSignAtlasTargetOutput> + * @return ApiResponse<UpdateTargetOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 updateGlobalSignAtlasTargetResponse wraps response body. -
200 updateTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse updateGlobalSignAtlasTargetWithHttpInfo(UpdateGlobalSignAtlasTarget body) throws ApiException { - okhttp3.Call localVarCall = updateGlobalSignAtlasTargetValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse updateLdapTargetDetailsWithHttpInfo(UpdateLdapTargetDetails body) throws ApiException { + okhttp3.Call localVarCall = updateLdapTargetDetailsValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -35600,19 +36397,19 @@ public ApiResponse updateGlobalSignAtlasTarge * @http.response.details - +
Status Code Description Response Headers
200 updateGlobalSignAtlasTargetResponse wraps response body. -
200 updateTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call updateGlobalSignAtlasTargetAsync(UpdateGlobalSignAtlasTarget body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateLdapTargetDetailsAsync(UpdateLdapTargetDetails body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = updateGlobalSignAtlasTargetValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = updateLdapTargetDetailsValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for updateGlobalSignTarget + * Build call for updateLinkedTarget * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -35620,11 +36417,11 @@ public okhttp3.Call updateGlobalSignAtlasTargetAsync(UpdateGlobalSignAtlasTarget * @http.response.details - +
Status Code Description Response Headers
200 updateGlobalSignTargetResponse wraps response body. -
200 updateLinkedTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call updateGlobalSignTargetCall(UpdateGlobalSignTarget body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateLinkedTargetCall(UpdateLinkedTarget body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -35642,7 +36439,7 @@ public okhttp3.Call updateGlobalSignTargetCall(UpdateGlobalSignTarget body, fina Object localVarPostBody = body; // create path and map variables - String localVarPath = "/update-globalsign-target"; + String localVarPath = "/update-linked-target"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -35671,15 +36468,15 @@ public okhttp3.Call updateGlobalSignTargetCall(UpdateGlobalSignTarget body, fina } @SuppressWarnings("rawtypes") - private okhttp3.Call updateGlobalSignTargetValidateBeforeCall(UpdateGlobalSignTarget body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call updateLinkedTargetValidateBeforeCall(UpdateLinkedTarget body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling updateGlobalSignTarget(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling updateLinkedTarget(Async)"); } - okhttp3.Call localVarCall = updateGlobalSignTargetCall(body, _callback); + okhttp3.Call localVarCall = updateLinkedTargetCall(body, _callback); return localVarCall; } @@ -35688,17 +36485,17 @@ private okhttp3.Call updateGlobalSignTargetValidateBeforeCall(UpdateGlobalSignTa * * * @param body (required) - * @return UpdateGlobalSignTargetOutput + * @return Object * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 updateGlobalSignTargetResponse wraps response body. -
200 updateLinkedTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public UpdateGlobalSignTargetOutput updateGlobalSignTarget(UpdateGlobalSignTarget body) throws ApiException { - ApiResponse localVarResp = updateGlobalSignTargetWithHttpInfo(body); + public Object updateLinkedTarget(UpdateLinkedTarget body) throws ApiException { + ApiResponse localVarResp = updateLinkedTargetWithHttpInfo(body); return localVarResp.getData(); } @@ -35706,18 +36503,18 @@ public UpdateGlobalSignTargetOutput updateGlobalSignTarget(UpdateGlobalSignTarge * * * @param body (required) - * @return ApiResponse<UpdateGlobalSignTargetOutput> + * @return ApiResponse<Object> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 updateGlobalSignTargetResponse wraps response body. -
200 updateLinkedTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse updateGlobalSignTargetWithHttpInfo(UpdateGlobalSignTarget body) throws ApiException { - okhttp3.Call localVarCall = updateGlobalSignTargetValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse updateLinkedTargetWithHttpInfo(UpdateLinkedTarget body) throws ApiException { + okhttp3.Call localVarCall = updateLinkedTargetValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -35731,19 +36528,19 @@ public ApiResponse updateGlobalSignTargetWithHttpI * @http.response.details - +
Status Code Description Response Headers
200 updateGlobalSignTargetResponse wraps response body. -
200 updateLinkedTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call updateGlobalSignTargetAsync(UpdateGlobalSignTarget body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateLinkedTargetAsync(UpdateLinkedTarget body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = updateGlobalSignTargetValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = updateLinkedTargetValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for updateGroup + * Build call for updateNativeK8STarget * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -35751,11 +36548,11 @@ public okhttp3.Call updateGlobalSignTargetAsync(UpdateGlobalSignTarget body, fin * @http.response.details - +
Status Code Description Response Headers
200 updateGroupResponse wraps response body. -
200 updateNativeK8STargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call updateGroupCall(UpdateGroup body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateNativeK8STargetCall(UpdateNativeK8STarget body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -35773,7 +36570,7 @@ public okhttp3.Call updateGroupCall(UpdateGroup body, final ApiCallback _callbac Object localVarPostBody = body; // create path and map variables - String localVarPath = "/update-group"; + String localVarPath = "/update-k8s-target"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -35802,15 +36599,15 @@ public okhttp3.Call updateGroupCall(UpdateGroup body, final ApiCallback _callbac } @SuppressWarnings("rawtypes") - private okhttp3.Call updateGroupValidateBeforeCall(UpdateGroup body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call updateNativeK8STargetValidateBeforeCall(UpdateNativeK8STarget body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling updateGroup(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling updateNativeK8STarget(Async)"); } - okhttp3.Call localVarCall = updateGroupCall(body, _callback); + okhttp3.Call localVarCall = updateNativeK8STargetCall(body, _callback); return localVarCall; } @@ -35819,17 +36616,17 @@ private okhttp3.Call updateGroupValidateBeforeCall(UpdateGroup body, final ApiCa * * * @param body (required) - * @return UpdateGroupOutput + * @return UpdateNativeK8STargetOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 updateGroupResponse wraps response body. -
200 updateNativeK8STargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public UpdateGroupOutput updateGroup(UpdateGroup body) throws ApiException { - ApiResponse localVarResp = updateGroupWithHttpInfo(body); + public UpdateNativeK8STargetOutput updateNativeK8STarget(UpdateNativeK8STarget body) throws ApiException { + ApiResponse localVarResp = updateNativeK8STargetWithHttpInfo(body); return localVarResp.getData(); } @@ -35837,18 +36634,18 @@ public UpdateGroupOutput updateGroup(UpdateGroup body) throws ApiException { * * * @param body (required) - * @return ApiResponse<UpdateGroupOutput> + * @return ApiResponse<UpdateNativeK8STargetOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 updateGroupResponse wraps response body. -
200 updateNativeK8STargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse updateGroupWithHttpInfo(UpdateGroup body) throws ApiException { - okhttp3.Call localVarCall = updateGroupValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse updateNativeK8STargetWithHttpInfo(UpdateNativeK8STarget body) throws ApiException { + okhttp3.Call localVarCall = updateNativeK8STargetValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -35862,19 +36659,19 @@ public ApiResponse updateGroupWithHttpInfo(UpdateGroup body) * @http.response.details - +
Status Code Description Response Headers
200 updateGroupResponse wraps response body. -
200 updateNativeK8STargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call updateGroupAsync(UpdateGroup body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateNativeK8STargetAsync(UpdateNativeK8STarget body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = updateGroupValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = updateNativeK8STargetValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for updateItem + * Build call for updateOidcApp * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -35882,11 +36679,11 @@ public okhttp3.Call updateGroupAsync(UpdateGroup body, final ApiCallback Status Code Description Response Headers - 200 updateItemResponse wraps response body. - + 200 updateOidcAppResponse wraps response body. - 0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. - */ - public okhttp3.Call updateItemCall(UpdateItem body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateOidcAppCall(UpdateOidcApp body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -35904,7 +36701,7 @@ public okhttp3.Call updateItemCall(UpdateItem body, final ApiCallback _callback) Object localVarPostBody = body; // create path and map variables - String localVarPath = "/update-item"; + String localVarPath = "/update-oidc-app"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -35933,15 +36730,15 @@ public okhttp3.Call updateItemCall(UpdateItem body, final ApiCallback _callback) } @SuppressWarnings("rawtypes") - private okhttp3.Call updateItemValidateBeforeCall(UpdateItem body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call updateOidcAppValidateBeforeCall(UpdateOidcApp body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling updateItem(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling updateOidcApp(Async)"); } - okhttp3.Call localVarCall = updateItemCall(body, _callback); + okhttp3.Call localVarCall = updateOidcAppCall(body, _callback); return localVarCall; } @@ -35950,17 +36747,17 @@ private okhttp3.Call updateItemValidateBeforeCall(UpdateItem body, final ApiCall * * * @param body (required) - * @return UpdateItemOutput + * @return Object * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 updateItemResponse wraps response body. -
200 updateOidcAppResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public UpdateItemOutput updateItem(UpdateItem body) throws ApiException { - ApiResponse localVarResp = updateItemWithHttpInfo(body); + public Object updateOidcApp(UpdateOidcApp body) throws ApiException { + ApiResponse localVarResp = updateOidcAppWithHttpInfo(body); return localVarResp.getData(); } @@ -35968,18 +36765,18 @@ public UpdateItemOutput updateItem(UpdateItem body) throws ApiException { * * * @param body (required) - * @return ApiResponse<UpdateItemOutput> + * @return ApiResponse<Object> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 updateItemResponse wraps response body. -
200 updateOidcAppResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse updateItemWithHttpInfo(UpdateItem body) throws ApiException { - okhttp3.Call localVarCall = updateItemValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse updateOidcAppWithHttpInfo(UpdateOidcApp body) throws ApiException { + okhttp3.Call localVarCall = updateOidcAppValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -35993,19 +36790,19 @@ public ApiResponse updateItemWithHttpInfo(UpdateItem body) thr * @http.response.details - +
Status Code Description Response Headers
200 updateItemResponse wraps response body. -
200 updateOidcAppResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call updateItemAsync(UpdateItem body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateOidcAppAsync(UpdateOidcApp body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = updateItemValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = updateOidcAppValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for updateLdapTarget + * Build call for updatePKICertIssuer * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -36013,11 +36810,11 @@ public okhttp3.Call updateItemAsync(UpdateItem body, final ApiCallback Status Code Description Response Headers - 200 updateLdapTargetResponse wraps response body. - + 200 updatePKICertIssuerResponse wraps response body. - 0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. - */ - public okhttp3.Call updateLdapTargetCall(UpdateLdapTarget body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updatePKICertIssuerCall(UpdatePKICertIssuer body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -36035,7 +36832,7 @@ public okhttp3.Call updateLdapTargetCall(UpdateLdapTarget body, final ApiCallbac Object localVarPostBody = body; // create path and map variables - String localVarPath = "/update-ldap-target"; + String localVarPath = "/update-pki-cert-issuer"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -36064,15 +36861,15 @@ public okhttp3.Call updateLdapTargetCall(UpdateLdapTarget body, final ApiCallbac } @SuppressWarnings("rawtypes") - private okhttp3.Call updateLdapTargetValidateBeforeCall(UpdateLdapTarget body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call updatePKICertIssuerValidateBeforeCall(UpdatePKICertIssuer body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling updateLdapTarget(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling updatePKICertIssuer(Async)"); } - okhttp3.Call localVarCall = updateLdapTargetCall(body, _callback); + okhttp3.Call localVarCall = updatePKICertIssuerCall(body, _callback); return localVarCall; } @@ -36081,17 +36878,17 @@ private okhttp3.Call updateLdapTargetValidateBeforeCall(UpdateLdapTarget body, f * * * @param body (required) - * @return UpdateLdapTargetOutput + * @return UpdatePKICertIssuerOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 updateLdapTargetResponse wraps response body. -
200 updatePKICertIssuerResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public UpdateLdapTargetOutput updateLdapTarget(UpdateLdapTarget body) throws ApiException { - ApiResponse localVarResp = updateLdapTargetWithHttpInfo(body); + public UpdatePKICertIssuerOutput updatePKICertIssuer(UpdatePKICertIssuer body) throws ApiException { + ApiResponse localVarResp = updatePKICertIssuerWithHttpInfo(body); return localVarResp.getData(); } @@ -36099,18 +36896,18 @@ public UpdateLdapTargetOutput updateLdapTarget(UpdateLdapTarget body) throws Api * * * @param body (required) - * @return ApiResponse<UpdateLdapTargetOutput> + * @return ApiResponse<UpdatePKICertIssuerOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 updateLdapTargetResponse wraps response body. -
200 updatePKICertIssuerResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse updateLdapTargetWithHttpInfo(UpdateLdapTarget body) throws ApiException { - okhttp3.Call localVarCall = updateLdapTargetValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse updatePKICertIssuerWithHttpInfo(UpdatePKICertIssuer body) throws ApiException { + okhttp3.Call localVarCall = updatePKICertIssuerValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -36124,19 +36921,19 @@ public ApiResponse updateLdapTargetWithHttpInfo(UpdateLd * @http.response.details - +
Status Code Description Response Headers
200 updateLdapTargetResponse wraps response body. -
200 updatePKICertIssuerResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call updateLdapTargetAsync(UpdateLdapTarget body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updatePKICertIssuerAsync(UpdatePKICertIssuer body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = updateLdapTargetValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = updatePKICertIssuerValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for updateLdapTargetDetails + * Build call for updatePingTarget * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -36144,11 +36941,11 @@ public okhttp3.Call updateLdapTargetAsync(UpdateLdapTarget body, final ApiCallba * @http.response.details - +
Status Code Description Response Headers
200 updateTargetResponse wraps response body. -
200 updatePingTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call updateLdapTargetDetailsCall(UpdateLdapTargetDetails body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updatePingTargetCall(UpdatePingTarget body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -36166,7 +36963,7 @@ public okhttp3.Call updateLdapTargetDetailsCall(UpdateLdapTargetDetails body, fi Object localVarPostBody = body; // create path and map variables - String localVarPath = "/update-ldap-target-details"; + String localVarPath = "/update-ping-target"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -36195,15 +36992,15 @@ public okhttp3.Call updateLdapTargetDetailsCall(UpdateLdapTargetDetails body, fi } @SuppressWarnings("rawtypes") - private okhttp3.Call updateLdapTargetDetailsValidateBeforeCall(UpdateLdapTargetDetails body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call updatePingTargetValidateBeforeCall(UpdatePingTarget body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling updateLdapTargetDetails(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling updatePingTarget(Async)"); } - okhttp3.Call localVarCall = updateLdapTargetDetailsCall(body, _callback); + okhttp3.Call localVarCall = updatePingTargetCall(body, _callback); return localVarCall; } @@ -36212,17 +37009,17 @@ private okhttp3.Call updateLdapTargetDetailsValidateBeforeCall(UpdateLdapTargetD * * * @param body (required) - * @return UpdateTargetOutput + * @return Object * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 updateTargetResponse wraps response body. -
200 updatePingTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public UpdateTargetOutput updateLdapTargetDetails(UpdateLdapTargetDetails body) throws ApiException { - ApiResponse localVarResp = updateLdapTargetDetailsWithHttpInfo(body); + public Object updatePingTarget(UpdatePingTarget body) throws ApiException { + ApiResponse localVarResp = updatePingTargetWithHttpInfo(body); return localVarResp.getData(); } @@ -36230,18 +37027,18 @@ public UpdateTargetOutput updateLdapTargetDetails(UpdateLdapTargetDetails body) * * * @param body (required) - * @return ApiResponse<UpdateTargetOutput> + * @return ApiResponse<Object> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 updateTargetResponse wraps response body. -
200 updatePingTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse updateLdapTargetDetailsWithHttpInfo(UpdateLdapTargetDetails body) throws ApiException { - okhttp3.Call localVarCall = updateLdapTargetDetailsValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse updatePingTargetWithHttpInfo(UpdatePingTarget body) throws ApiException { + okhttp3.Call localVarCall = updatePingTargetValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -36255,19 +37052,19 @@ public ApiResponse updateLdapTargetDetailsWithHttpInfo(Updat * @http.response.details - +
Status Code Description Response Headers
200 updateTargetResponse wraps response body. -
200 updatePingTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call updateLdapTargetDetailsAsync(UpdateLdapTargetDetails body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updatePingTargetAsync(UpdatePingTarget body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = updateLdapTargetDetailsValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = updatePingTargetValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for updateLinkedTarget + * Build call for updateRDPTargetDetails * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -36275,11 +37072,11 @@ public okhttp3.Call updateLdapTargetDetailsAsync(UpdateLdapTargetDetails body, f * @http.response.details - +
Status Code Description Response Headers
200 updateLinkedTargetResponse wraps response body. -
200 updateTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call updateLinkedTargetCall(UpdateLinkedTarget body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateRDPTargetDetailsCall(UpdateRDPTargetDetails body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -36297,7 +37094,7 @@ public okhttp3.Call updateLinkedTargetCall(UpdateLinkedTarget body, final ApiCal Object localVarPostBody = body; // create path and map variables - String localVarPath = "/update-linked-target"; + String localVarPath = "/update-rdp-target-details"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -36326,15 +37123,15 @@ public okhttp3.Call updateLinkedTargetCall(UpdateLinkedTarget body, final ApiCal } @SuppressWarnings("rawtypes") - private okhttp3.Call updateLinkedTargetValidateBeforeCall(UpdateLinkedTarget body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call updateRDPTargetDetailsValidateBeforeCall(UpdateRDPTargetDetails body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling updateLinkedTarget(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling updateRDPTargetDetails(Async)"); } - okhttp3.Call localVarCall = updateLinkedTargetCall(body, _callback); + okhttp3.Call localVarCall = updateRDPTargetDetailsCall(body, _callback); return localVarCall; } @@ -36343,17 +37140,17 @@ private okhttp3.Call updateLinkedTargetValidateBeforeCall(UpdateLinkedTarget bod * * * @param body (required) - * @return Object + * @return UpdateTargetOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 updateLinkedTargetResponse wraps response body. -
200 updateTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public Object updateLinkedTarget(UpdateLinkedTarget body) throws ApiException { - ApiResponse localVarResp = updateLinkedTargetWithHttpInfo(body); + public UpdateTargetOutput updateRDPTargetDetails(UpdateRDPTargetDetails body) throws ApiException { + ApiResponse localVarResp = updateRDPTargetDetailsWithHttpInfo(body); return localVarResp.getData(); } @@ -36361,18 +37158,18 @@ public Object updateLinkedTarget(UpdateLinkedTarget body) throws ApiException { * * * @param body (required) - * @return ApiResponse<Object> + * @return ApiResponse<UpdateTargetOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 updateLinkedTargetResponse wraps response body. -
200 updateTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse updateLinkedTargetWithHttpInfo(UpdateLinkedTarget body) throws ApiException { - okhttp3.Call localVarCall = updateLinkedTargetValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse updateRDPTargetDetailsWithHttpInfo(UpdateRDPTargetDetails body) throws ApiException { + okhttp3.Call localVarCall = updateRDPTargetDetailsValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -36386,19 +37183,19 @@ public ApiResponse updateLinkedTargetWithHttpInfo(UpdateLinkedTarget bod * @http.response.details - +
Status Code Description Response Headers
200 updateLinkedTargetResponse wraps response body. -
200 updateTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call updateLinkedTargetAsync(UpdateLinkedTarget body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateRDPTargetDetailsAsync(UpdateRDPTargetDetails body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = updateLinkedTargetValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = updateRDPTargetDetailsValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for updateNativeK8STarget + * Build call for updateRabbitMQTarget * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -36406,11 +37203,11 @@ public okhttp3.Call updateLinkedTargetAsync(UpdateLinkedTarget body, final ApiCa * @http.response.details - +
Status Code Description Response Headers
200 updateNativeK8STargetResponse wraps response body. -
200 updateRabbitMQTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call updateNativeK8STargetCall(UpdateNativeK8STarget body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateRabbitMQTargetCall(UpdateRabbitMQTarget body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -36428,7 +37225,7 @@ public okhttp3.Call updateNativeK8STargetCall(UpdateNativeK8STarget body, final Object localVarPostBody = body; // create path and map variables - String localVarPath = "/update-k8s-target"; + String localVarPath = "/update-rabbitmq-target"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -36457,15 +37254,15 @@ public okhttp3.Call updateNativeK8STargetCall(UpdateNativeK8STarget body, final } @SuppressWarnings("rawtypes") - private okhttp3.Call updateNativeK8STargetValidateBeforeCall(UpdateNativeK8STarget body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call updateRabbitMQTargetValidateBeforeCall(UpdateRabbitMQTarget body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling updateNativeK8STarget(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling updateRabbitMQTarget(Async)"); } - okhttp3.Call localVarCall = updateNativeK8STargetCall(body, _callback); + okhttp3.Call localVarCall = updateRabbitMQTargetCall(body, _callback); return localVarCall; } @@ -36474,17 +37271,17 @@ private okhttp3.Call updateNativeK8STargetValidateBeforeCall(UpdateNativeK8STarg * * * @param body (required) - * @return UpdateNativeK8STargetOutput + * @return UpdateRabbitMQTargetOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 updateNativeK8STargetResponse wraps response body. -
200 updateRabbitMQTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public UpdateNativeK8STargetOutput updateNativeK8STarget(UpdateNativeK8STarget body) throws ApiException { - ApiResponse localVarResp = updateNativeK8STargetWithHttpInfo(body); + public UpdateRabbitMQTargetOutput updateRabbitMQTarget(UpdateRabbitMQTarget body) throws ApiException { + ApiResponse localVarResp = updateRabbitMQTargetWithHttpInfo(body); return localVarResp.getData(); } @@ -36492,18 +37289,18 @@ public UpdateNativeK8STargetOutput updateNativeK8STarget(UpdateNativeK8STarget b * * * @param body (required) - * @return ApiResponse<UpdateNativeK8STargetOutput> + * @return ApiResponse<UpdateRabbitMQTargetOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 updateNativeK8STargetResponse wraps response body. -
200 updateRabbitMQTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse updateNativeK8STargetWithHttpInfo(UpdateNativeK8STarget body) throws ApiException { - okhttp3.Call localVarCall = updateNativeK8STargetValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse updateRabbitMQTargetWithHttpInfo(UpdateRabbitMQTarget body) throws ApiException { + okhttp3.Call localVarCall = updateRabbitMQTargetValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -36517,19 +37314,19 @@ public ApiResponse updateNativeK8STargetWithHttpInf * @http.response.details - +
Status Code Description Response Headers
200 updateNativeK8STargetResponse wraps response body. -
200 updateRabbitMQTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call updateNativeK8STargetAsync(UpdateNativeK8STarget body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateRabbitMQTargetAsync(UpdateRabbitMQTarget body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = updateNativeK8STargetValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = updateRabbitMQTargetValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for updateOidcApp + * Build call for updateRabbitMQTargetDetails * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -36537,11 +37334,11 @@ public okhttp3.Call updateNativeK8STargetAsync(UpdateNativeK8STarget body, final * @http.response.details - +
Status Code Description Response Headers
200 updateOidcAppResponse wraps response body. -
200 updateTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call updateOidcAppCall(UpdateOidcApp body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateRabbitMQTargetDetailsCall(UpdateRabbitMQTargetDetails body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -36559,7 +37356,7 @@ public okhttp3.Call updateOidcAppCall(UpdateOidcApp body, final ApiCallback _cal Object localVarPostBody = body; // create path and map variables - String localVarPath = "/update-oidc-app"; + String localVarPath = "/update-rabbitmq-target-details"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -36588,15 +37385,15 @@ public okhttp3.Call updateOidcAppCall(UpdateOidcApp body, final ApiCallback _cal } @SuppressWarnings("rawtypes") - private okhttp3.Call updateOidcAppValidateBeforeCall(UpdateOidcApp body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call updateRabbitMQTargetDetailsValidateBeforeCall(UpdateRabbitMQTargetDetails body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling updateOidcApp(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling updateRabbitMQTargetDetails(Async)"); } - okhttp3.Call localVarCall = updateOidcAppCall(body, _callback); + okhttp3.Call localVarCall = updateRabbitMQTargetDetailsCall(body, _callback); return localVarCall; } @@ -36605,17 +37402,17 @@ private okhttp3.Call updateOidcAppValidateBeforeCall(UpdateOidcApp body, final A * * * @param body (required) - * @return Object + * @return UpdateTargetOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 updateOidcAppResponse wraps response body. -
200 updateTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public Object updateOidcApp(UpdateOidcApp body) throws ApiException { - ApiResponse localVarResp = updateOidcAppWithHttpInfo(body); + public UpdateTargetOutput updateRabbitMQTargetDetails(UpdateRabbitMQTargetDetails body) throws ApiException { + ApiResponse localVarResp = updateRabbitMQTargetDetailsWithHttpInfo(body); return localVarResp.getData(); } @@ -36623,18 +37420,18 @@ public Object updateOidcApp(UpdateOidcApp body) throws ApiException { * * * @param body (required) - * @return ApiResponse<Object> + * @return ApiResponse<UpdateTargetOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 updateOidcAppResponse wraps response body. -
200 updateTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse updateOidcAppWithHttpInfo(UpdateOidcApp body) throws ApiException { - okhttp3.Call localVarCall = updateOidcAppValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse updateRabbitMQTargetDetailsWithHttpInfo(UpdateRabbitMQTargetDetails body) throws ApiException { + okhttp3.Call localVarCall = updateRabbitMQTargetDetailsValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -36648,19 +37445,19 @@ public ApiResponse updateOidcAppWithHttpInfo(UpdateOidcApp body) throws * @http.response.details - +
Status Code Description Response Headers
200 updateOidcAppResponse wraps response body. -
200 updateTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call updateOidcAppAsync(UpdateOidcApp body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateRabbitMQTargetDetailsAsync(UpdateRabbitMQTargetDetails body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = updateOidcAppValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = updateRabbitMQTargetDetailsValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for updatePKICertIssuer + * Build call for updateRole * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -36668,11 +37465,11 @@ public okhttp3.Call updateOidcAppAsync(UpdateOidcApp body, final ApiCallback Status Code Description Response Headers - 200 updatePKICertIssuerResponse wraps response body. - + 200 updateRoleResponse wraps response body. - 0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. - */ - public okhttp3.Call updatePKICertIssuerCall(UpdatePKICertIssuer body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateRoleCall(UpdateRole body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -36690,7 +37487,7 @@ public okhttp3.Call updatePKICertIssuerCall(UpdatePKICertIssuer body, final ApiC Object localVarPostBody = body; // create path and map variables - String localVarPath = "/update-pki-cert-issuer"; + String localVarPath = "/update-role"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -36719,15 +37516,15 @@ public okhttp3.Call updatePKICertIssuerCall(UpdatePKICertIssuer body, final ApiC } @SuppressWarnings("rawtypes") - private okhttp3.Call updatePKICertIssuerValidateBeforeCall(UpdatePKICertIssuer body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call updateRoleValidateBeforeCall(UpdateRole body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling updatePKICertIssuer(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling updateRole(Async)"); } - okhttp3.Call localVarCall = updatePKICertIssuerCall(body, _callback); + okhttp3.Call localVarCall = updateRoleCall(body, _callback); return localVarCall; } @@ -36736,17 +37533,17 @@ private okhttp3.Call updatePKICertIssuerValidateBeforeCall(UpdatePKICertIssuer b * * * @param body (required) - * @return UpdatePKICertIssuerOutput + * @return UpdateRoleOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 updatePKICertIssuerResponse wraps response body. -
200 updateRoleResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public UpdatePKICertIssuerOutput updatePKICertIssuer(UpdatePKICertIssuer body) throws ApiException { - ApiResponse localVarResp = updatePKICertIssuerWithHttpInfo(body); + public UpdateRoleOutput updateRole(UpdateRole body) throws ApiException { + ApiResponse localVarResp = updateRoleWithHttpInfo(body); return localVarResp.getData(); } @@ -36754,18 +37551,18 @@ public UpdatePKICertIssuerOutput updatePKICertIssuer(UpdatePKICertIssuer body) t * * * @param body (required) - * @return ApiResponse<UpdatePKICertIssuerOutput> + * @return ApiResponse<UpdateRoleOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 updatePKICertIssuerResponse wraps response body. -
200 updateRoleResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse updatePKICertIssuerWithHttpInfo(UpdatePKICertIssuer body) throws ApiException { - okhttp3.Call localVarCall = updatePKICertIssuerValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse updateRoleWithHttpInfo(UpdateRole body) throws ApiException { + okhttp3.Call localVarCall = updateRoleValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -36779,19 +37576,19 @@ public ApiResponse updatePKICertIssuerWithHttpInfo(Up * @http.response.details - +
Status Code Description Response Headers
200 updatePKICertIssuerResponse wraps response body. -
200 updateRoleResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call updatePKICertIssuerAsync(UpdatePKICertIssuer body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateRoleAsync(UpdateRole body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = updatePKICertIssuerValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = updateRoleValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for updatePingTarget + * Build call for updateRotatedSecret * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -36799,11 +37596,11 @@ public okhttp3.Call updatePKICertIssuerAsync(UpdatePKICertIssuer body, final Api * @http.response.details - +
Status Code Description Response Headers
200 updatePingTargetResponse wraps response body. -
200 updateRotatedSecretResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call updatePingTargetCall(UpdatePingTarget body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateRotatedSecretCall(UpdateRotatedSecret body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -36821,7 +37618,7 @@ public okhttp3.Call updatePingTargetCall(UpdatePingTarget body, final ApiCallbac Object localVarPostBody = body; // create path and map variables - String localVarPath = "/update-ping-target"; + String localVarPath = "/update-rotated-secret"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -36850,15 +37647,15 @@ public okhttp3.Call updatePingTargetCall(UpdatePingTarget body, final ApiCallbac } @SuppressWarnings("rawtypes") - private okhttp3.Call updatePingTargetValidateBeforeCall(UpdatePingTarget body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call updateRotatedSecretValidateBeforeCall(UpdateRotatedSecret body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling updatePingTarget(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling updateRotatedSecret(Async)"); } - okhttp3.Call localVarCall = updatePingTargetCall(body, _callback); + okhttp3.Call localVarCall = updateRotatedSecretCall(body, _callback); return localVarCall; } @@ -36867,17 +37664,17 @@ private okhttp3.Call updatePingTargetValidateBeforeCall(UpdatePingTarget body, f * * * @param body (required) - * @return Object + * @return UpdateRotatedSecretOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 updatePingTargetResponse wraps response body. -
200 updateRotatedSecretResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public Object updatePingTarget(UpdatePingTarget body) throws ApiException { - ApiResponse localVarResp = updatePingTargetWithHttpInfo(body); + public UpdateRotatedSecretOutput updateRotatedSecret(UpdateRotatedSecret body) throws ApiException { + ApiResponse localVarResp = updateRotatedSecretWithHttpInfo(body); return localVarResp.getData(); } @@ -36885,18 +37682,18 @@ public Object updatePingTarget(UpdatePingTarget body) throws ApiException { * * * @param body (required) - * @return ApiResponse<Object> + * @return ApiResponse<UpdateRotatedSecretOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 updatePingTargetResponse wraps response body. -
200 updateRotatedSecretResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse updatePingTargetWithHttpInfo(UpdatePingTarget body) throws ApiException { - okhttp3.Call localVarCall = updatePingTargetValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse updateRotatedSecretWithHttpInfo(UpdateRotatedSecret body) throws ApiException { + okhttp3.Call localVarCall = updateRotatedSecretValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -36910,31 +37707,30 @@ public ApiResponse updatePingTargetWithHttpInfo(UpdatePingTarget body) t * @http.response.details - +
Status Code Description Response Headers
200 updatePingTargetResponse wraps response body. -
200 updateRotatedSecretResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call updatePingTargetAsync(UpdatePingTarget body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateRotatedSecretAsync(UpdateRotatedSecret body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = updatePingTargetValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = updateRotatedSecretValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for updateRDPTargetDetails - * @param body (required) + * Build call for updateRotationSettings * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object * @http.response.details - +
Status Code Description Response Headers
200 updateTargetResponse wraps response body. -
200 rotateKeyResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call updateRDPTargetDetailsCall(UpdateRDPTargetDetails body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateRotationSettingsCall(final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -36949,10 +37745,10 @@ public okhttp3.Call updateRDPTargetDetailsCall(UpdateRDPTargetDetails body, fina basePath = null; } - Object localVarPostBody = body; + Object localVarPostBody = null; // create path and map variables - String localVarPath = "/update-rdp-target-details"; + String localVarPath = "/update-rotation-settingsrotate-key"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -36969,7 +37765,7 @@ public okhttp3.Call updateRDPTargetDetailsCall(UpdateRDPTargetDetails body, fina } final String[] localVarContentTypes = { - "application/json" + }; final String localVarContentType = localVarApiClient.selectHeaderContentType(localVarContentTypes); if (localVarContentType != null) { @@ -36981,15 +37777,10 @@ public okhttp3.Call updateRDPTargetDetailsCall(UpdateRDPTargetDetails body, fina } @SuppressWarnings("rawtypes") - private okhttp3.Call updateRDPTargetDetailsValidateBeforeCall(UpdateRDPTargetDetails body, final ApiCallback _callback) throws ApiException { - - // verify the required parameter 'body' is set - if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling updateRDPTargetDetails(Async)"); - } + private okhttp3.Call updateRotationSettingsValidateBeforeCall(final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = updateRDPTargetDetailsCall(body, _callback); + okhttp3.Call localVarCall = updateRotationSettingsCall(_callback); return localVarCall; } @@ -36997,63 +37788,60 @@ private okhttp3.Call updateRDPTargetDetailsValidateBeforeCall(UpdateRDPTargetDet /** * * - * @param body (required) - * @return UpdateTargetOutput + * @return RotateKeyOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 updateTargetResponse wraps response body. -
200 rotateKeyResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public UpdateTargetOutput updateRDPTargetDetails(UpdateRDPTargetDetails body) throws ApiException { - ApiResponse localVarResp = updateRDPTargetDetailsWithHttpInfo(body); + public RotateKeyOutput updateRotationSettings() throws ApiException { + ApiResponse localVarResp = updateRotationSettingsWithHttpInfo(); return localVarResp.getData(); } /** * * - * @param body (required) - * @return ApiResponse<UpdateTargetOutput> + * @return ApiResponse<RotateKeyOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 updateTargetResponse wraps response body. -
200 rotateKeyResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse updateRDPTargetDetailsWithHttpInfo(UpdateRDPTargetDetails body) throws ApiException { - okhttp3.Call localVarCall = updateRDPTargetDetailsValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse updateRotationSettingsWithHttpInfo() throws ApiException { + okhttp3.Call localVarCall = updateRotationSettingsValidateBeforeCall(null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } /** * (asynchronously) * - * @param body (required) * @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 - +
Status Code Description Response Headers
200 updateTargetResponse wraps response body. -
200 rotateKeyResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call updateRDPTargetDetailsAsync(UpdateRDPTargetDetails body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateRotationSettingsAsync(final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = updateRDPTargetDetailsValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = updateRotationSettingsValidateBeforeCall(_callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for updateRabbitMQTarget + * Build call for updateSSHCertIssuer * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -37061,11 +37849,11 @@ public okhttp3.Call updateRDPTargetDetailsAsync(UpdateRDPTargetDetails body, fin * @http.response.details - +
Status Code Description Response Headers
200 updateRabbitMQTargetResponse wraps response body. -
200 updateSSHCertIssuerResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call updateRabbitMQTargetCall(UpdateRabbitMQTarget body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateSSHCertIssuerCall(UpdateSSHCertIssuer body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -37083,7 +37871,7 @@ public okhttp3.Call updateRabbitMQTargetCall(UpdateRabbitMQTarget body, final Ap Object localVarPostBody = body; // create path and map variables - String localVarPath = "/update-rabbitmq-target"; + String localVarPath = "/update-ssh-cert-issuer"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -37112,15 +37900,15 @@ public okhttp3.Call updateRabbitMQTargetCall(UpdateRabbitMQTarget body, final Ap } @SuppressWarnings("rawtypes") - private okhttp3.Call updateRabbitMQTargetValidateBeforeCall(UpdateRabbitMQTarget body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call updateSSHCertIssuerValidateBeforeCall(UpdateSSHCertIssuer body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling updateRabbitMQTarget(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling updateSSHCertIssuer(Async)"); } - okhttp3.Call localVarCall = updateRabbitMQTargetCall(body, _callback); + okhttp3.Call localVarCall = updateSSHCertIssuerCall(body, _callback); return localVarCall; } @@ -37129,17 +37917,17 @@ private okhttp3.Call updateRabbitMQTargetValidateBeforeCall(UpdateRabbitMQTarget * * * @param body (required) - * @return UpdateRabbitMQTargetOutput + * @return UpdateSSHCertIssuerOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 updateRabbitMQTargetResponse wraps response body. -
200 updateSSHCertIssuerResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public UpdateRabbitMQTargetOutput updateRabbitMQTarget(UpdateRabbitMQTarget body) throws ApiException { - ApiResponse localVarResp = updateRabbitMQTargetWithHttpInfo(body); + public UpdateSSHCertIssuerOutput updateSSHCertIssuer(UpdateSSHCertIssuer body) throws ApiException { + ApiResponse localVarResp = updateSSHCertIssuerWithHttpInfo(body); return localVarResp.getData(); } @@ -37147,18 +37935,18 @@ public UpdateRabbitMQTargetOutput updateRabbitMQTarget(UpdateRabbitMQTarget body * * * @param body (required) - * @return ApiResponse<UpdateRabbitMQTargetOutput> + * @return ApiResponse<UpdateSSHCertIssuerOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 updateRabbitMQTargetResponse wraps response body. -
200 updateSSHCertIssuerResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse updateRabbitMQTargetWithHttpInfo(UpdateRabbitMQTarget body) throws ApiException { - okhttp3.Call localVarCall = updateRabbitMQTargetValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse updateSSHCertIssuerWithHttpInfo(UpdateSSHCertIssuer body) throws ApiException { + okhttp3.Call localVarCall = updateSSHCertIssuerValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -37172,19 +37960,19 @@ public ApiResponse updateRabbitMQTargetWithHttpInfo( * @http.response.details - +
Status Code Description Response Headers
200 updateRabbitMQTargetResponse wraps response body. -
200 updateSSHCertIssuerResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call updateRabbitMQTargetAsync(UpdateRabbitMQTarget body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateSSHCertIssuerAsync(UpdateSSHCertIssuer body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = updateRabbitMQTargetValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = updateSSHCertIssuerValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for updateRabbitMQTargetDetails + * Build call for updateSSHTarget * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -37192,11 +37980,11 @@ public okhttp3.Call updateRabbitMQTargetAsync(UpdateRabbitMQTarget body, final A * @http.response.details - +
Status Code Description Response Headers
200 updateTargetResponse wraps response body. -
200 updateSSHTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call updateRabbitMQTargetDetailsCall(UpdateRabbitMQTargetDetails body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateSSHTargetCall(UpdateSSHTarget body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -37214,7 +38002,7 @@ public okhttp3.Call updateRabbitMQTargetDetailsCall(UpdateRabbitMQTargetDetails Object localVarPostBody = body; // create path and map variables - String localVarPath = "/update-rabbitmq-target-details"; + String localVarPath = "/update-ssh-target"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -37243,15 +38031,15 @@ public okhttp3.Call updateRabbitMQTargetDetailsCall(UpdateRabbitMQTargetDetails } @SuppressWarnings("rawtypes") - private okhttp3.Call updateRabbitMQTargetDetailsValidateBeforeCall(UpdateRabbitMQTargetDetails body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call updateSSHTargetValidateBeforeCall(UpdateSSHTarget body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling updateRabbitMQTargetDetails(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling updateSSHTarget(Async)"); } - okhttp3.Call localVarCall = updateRabbitMQTargetDetailsCall(body, _callback); + okhttp3.Call localVarCall = updateSSHTargetCall(body, _callback); return localVarCall; } @@ -37260,17 +38048,17 @@ private okhttp3.Call updateRabbitMQTargetDetailsValidateBeforeCall(UpdateRabbitM * * * @param body (required) - * @return UpdateTargetOutput + * @return UpdateSSHTargetOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 updateTargetResponse wraps response body. -
200 updateSSHTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public UpdateTargetOutput updateRabbitMQTargetDetails(UpdateRabbitMQTargetDetails body) throws ApiException { - ApiResponse localVarResp = updateRabbitMQTargetDetailsWithHttpInfo(body); + public UpdateSSHTargetOutput updateSSHTarget(UpdateSSHTarget body) throws ApiException { + ApiResponse localVarResp = updateSSHTargetWithHttpInfo(body); return localVarResp.getData(); } @@ -37278,18 +38066,18 @@ public UpdateTargetOutput updateRabbitMQTargetDetails(UpdateRabbitMQTargetDetail * * * @param body (required) - * @return ApiResponse<UpdateTargetOutput> + * @return ApiResponse<UpdateSSHTargetOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 updateTargetResponse wraps response body. -
200 updateSSHTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse updateRabbitMQTargetDetailsWithHttpInfo(UpdateRabbitMQTargetDetails body) throws ApiException { - okhttp3.Call localVarCall = updateRabbitMQTargetDetailsValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse updateSSHTargetWithHttpInfo(UpdateSSHTarget body) throws ApiException { + okhttp3.Call localVarCall = updateSSHTargetValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -37303,19 +38091,19 @@ public ApiResponse updateRabbitMQTargetDetailsWithHttpInfo(U * @http.response.details - +
Status Code Description Response Headers
200 updateTargetResponse wraps response body. -
200 updateSSHTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call updateRabbitMQTargetDetailsAsync(UpdateRabbitMQTargetDetails body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateSSHTargetAsync(UpdateSSHTarget body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = updateRabbitMQTargetDetailsValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = updateSSHTargetValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for updateRole + * Build call for updateSSHTargetDetails * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -37323,11 +38111,11 @@ public okhttp3.Call updateRabbitMQTargetDetailsAsync(UpdateRabbitMQTargetDetails * @http.response.details - +
Status Code Description Response Headers
200 updateRoleResponse wraps response body. -
200 updateTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call updateRoleCall(UpdateRole body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateSSHTargetDetailsCall(UpdateSSHTargetDetails body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -37345,7 +38133,7 @@ public okhttp3.Call updateRoleCall(UpdateRole body, final ApiCallback _callback) Object localVarPostBody = body; // create path and map variables - String localVarPath = "/update-role"; + String localVarPath = "/update-ssh-target-details"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -37374,15 +38162,15 @@ public okhttp3.Call updateRoleCall(UpdateRole body, final ApiCallback _callback) } @SuppressWarnings("rawtypes") - private okhttp3.Call updateRoleValidateBeforeCall(UpdateRole body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call updateSSHTargetDetailsValidateBeforeCall(UpdateSSHTargetDetails body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling updateRole(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling updateSSHTargetDetails(Async)"); } - okhttp3.Call localVarCall = updateRoleCall(body, _callback); + okhttp3.Call localVarCall = updateSSHTargetDetailsCall(body, _callback); return localVarCall; } @@ -37391,17 +38179,17 @@ private okhttp3.Call updateRoleValidateBeforeCall(UpdateRole body, final ApiCall * * * @param body (required) - * @return UpdateRoleOutput + * @return UpdateTargetOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 updateRoleResponse wraps response body. -
200 updateTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public UpdateRoleOutput updateRole(UpdateRole body) throws ApiException { - ApiResponse localVarResp = updateRoleWithHttpInfo(body); + public UpdateTargetOutput updateSSHTargetDetails(UpdateSSHTargetDetails body) throws ApiException { + ApiResponse localVarResp = updateSSHTargetDetailsWithHttpInfo(body); return localVarResp.getData(); } @@ -37409,18 +38197,18 @@ public UpdateRoleOutput updateRole(UpdateRole body) throws ApiException { * * * @param body (required) - * @return ApiResponse<UpdateRoleOutput> + * @return ApiResponse<UpdateTargetOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 updateRoleResponse wraps response body. -
200 updateTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse updateRoleWithHttpInfo(UpdateRole body) throws ApiException { - okhttp3.Call localVarCall = updateRoleValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse updateSSHTargetDetailsWithHttpInfo(UpdateSSHTargetDetails body) throws ApiException { + okhttp3.Call localVarCall = updateSSHTargetDetailsValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -37434,19 +38222,19 @@ public ApiResponse updateRoleWithHttpInfo(UpdateRole body) thr * @http.response.details - +
Status Code Description Response Headers
200 updateRoleResponse wraps response body. -
200 updateTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call updateRoleAsync(UpdateRole body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateSSHTargetDetailsAsync(UpdateSSHTargetDetails body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = updateRoleValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = updateSSHTargetDetailsValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for updateRotatedSecret + * Build call for updateSalesforceTarget * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -37454,11 +38242,11 @@ public okhttp3.Call updateRoleAsync(UpdateRole body, final ApiCallback Status Code Description Response Headers - 200 updateRotatedSecretResponse wraps response body. - + 200 updateSalesforceTargetResponse wraps response body. - 0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. - */ - public okhttp3.Call updateRotatedSecretCall(UpdateRotatedSecret body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateSalesforceTargetCall(UpdateSalesforceTarget body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -37476,7 +38264,7 @@ public okhttp3.Call updateRotatedSecretCall(UpdateRotatedSecret body, final ApiC Object localVarPostBody = body; // create path and map variables - String localVarPath = "/update-rotated-secret"; + String localVarPath = "/update-salesforce-target"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -37505,15 +38293,15 @@ public okhttp3.Call updateRotatedSecretCall(UpdateRotatedSecret body, final ApiC } @SuppressWarnings("rawtypes") - private okhttp3.Call updateRotatedSecretValidateBeforeCall(UpdateRotatedSecret body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call updateSalesforceTargetValidateBeforeCall(UpdateSalesforceTarget body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling updateRotatedSecret(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling updateSalesforceTarget(Async)"); } - okhttp3.Call localVarCall = updateRotatedSecretCall(body, _callback); + okhttp3.Call localVarCall = updateSalesforceTargetCall(body, _callback); return localVarCall; } @@ -37522,17 +38310,17 @@ private okhttp3.Call updateRotatedSecretValidateBeforeCall(UpdateRotatedSecret b * * * @param body (required) - * @return UpdateRotatedSecretOutput + * @return UpdateSalesforceTargetOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 updateRotatedSecretResponse wraps response body. -
200 updateSalesforceTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public UpdateRotatedSecretOutput updateRotatedSecret(UpdateRotatedSecret body) throws ApiException { - ApiResponse localVarResp = updateRotatedSecretWithHttpInfo(body); + public UpdateSalesforceTargetOutput updateSalesforceTarget(UpdateSalesforceTarget body) throws ApiException { + ApiResponse localVarResp = updateSalesforceTargetWithHttpInfo(body); return localVarResp.getData(); } @@ -37540,18 +38328,18 @@ public UpdateRotatedSecretOutput updateRotatedSecret(UpdateRotatedSecret body) t * * * @param body (required) - * @return ApiResponse<UpdateRotatedSecretOutput> + * @return ApiResponse<UpdateSalesforceTargetOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 updateRotatedSecretResponse wraps response body. -
200 updateSalesforceTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse updateRotatedSecretWithHttpInfo(UpdateRotatedSecret body) throws ApiException { - okhttp3.Call localVarCall = updateRotatedSecretValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse updateSalesforceTargetWithHttpInfo(UpdateSalesforceTarget body) throws ApiException { + okhttp3.Call localVarCall = updateSalesforceTargetValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -37565,30 +38353,31 @@ public ApiResponse updateRotatedSecretWithHttpInfo(Up * @http.response.details - +
Status Code Description Response Headers
200 updateRotatedSecretResponse wraps response body. -
200 updateSalesforceTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call updateRotatedSecretAsync(UpdateRotatedSecret body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateSalesforceTargetAsync(UpdateSalesforceTarget body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = updateRotatedSecretValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = updateSalesforceTargetValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for updateRotationSettings + * Build call for updateSecretVal + * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object * @http.response.details - +
Status Code Description Response Headers
200 rotateKeyResponse wraps response body. -
200 updateSecretValResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call updateRotationSettingsCall(final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateSecretValCall(UpdateSecretVal body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -37603,10 +38392,10 @@ public okhttp3.Call updateRotationSettingsCall(final ApiCallback _callback) thro basePath = null; } - Object localVarPostBody = null; + Object localVarPostBody = body; // create path and map variables - String localVarPath = "/update-rotation-settingsrotate-key"; + String localVarPath = "/update-secret-val"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -37623,7 +38412,7 @@ public okhttp3.Call updateRotationSettingsCall(final ApiCallback _callback) thro } final String[] localVarContentTypes = { - + "application/json" }; final String localVarContentType = localVarApiClient.selectHeaderContentType(localVarContentTypes); if (localVarContentType != null) { @@ -37635,10 +38424,15 @@ public okhttp3.Call updateRotationSettingsCall(final ApiCallback _callback) thro } @SuppressWarnings("rawtypes") - private okhttp3.Call updateRotationSettingsValidateBeforeCall(final ApiCallback _callback) throws ApiException { + private okhttp3.Call updateSecretValValidateBeforeCall(UpdateSecretVal body, final ApiCallback _callback) throws ApiException { + + // verify the required parameter 'body' is set + if (body == null) { + throw new ApiException("Missing the required parameter 'body' when calling updateSecretVal(Async)"); + } - okhttp3.Call localVarCall = updateRotationSettingsCall(_callback); + okhttp3.Call localVarCall = updateSecretValCall(body, _callback); return localVarCall; } @@ -37646,60 +38440,63 @@ private okhttp3.Call updateRotationSettingsValidateBeforeCall(final ApiCallback /** * * - * @return RotateKeyOutput + * @param body (required) + * @return UpdateSecretValOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 rotateKeyResponse wraps response body. -
200 updateSecretValResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public RotateKeyOutput updateRotationSettings() throws ApiException { - ApiResponse localVarResp = updateRotationSettingsWithHttpInfo(); + public UpdateSecretValOutput updateSecretVal(UpdateSecretVal body) throws ApiException { + ApiResponse localVarResp = updateSecretValWithHttpInfo(body); return localVarResp.getData(); } /** * * - * @return ApiResponse<RotateKeyOutput> + * @param body (required) + * @return ApiResponse<UpdateSecretValOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 rotateKeyResponse wraps response body. -
200 updateSecretValResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse updateRotationSettingsWithHttpInfo() throws ApiException { - okhttp3.Call localVarCall = updateRotationSettingsValidateBeforeCall(null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse updateSecretValWithHttpInfo(UpdateSecretVal body) throws ApiException { + okhttp3.Call localVarCall = updateSecretValValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } /** * (asynchronously) * + * @param body (required) * @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 - +
Status Code Description Response Headers
200 rotateKeyResponse wraps response body. -
200 updateSecretValResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call updateRotationSettingsAsync(final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateSecretValAsync(UpdateSecretVal body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = updateRotationSettingsValidateBeforeCall(_callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = updateSecretValValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for updateSSHCertIssuer + * Build call for updateTarget * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -37707,11 +38504,11 @@ public okhttp3.Call updateRotationSettingsAsync(final ApiCallback Status Code Description Response Headers - 200 updateSSHCertIssuerResponse wraps response body. - + 200 updateTargetResponse wraps response body. - 0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. - */ - public okhttp3.Call updateSSHCertIssuerCall(UpdateSSHCertIssuer body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateTargetCall(UpdateTarget body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -37729,7 +38526,7 @@ public okhttp3.Call updateSSHCertIssuerCall(UpdateSSHCertIssuer body, final ApiC Object localVarPostBody = body; // create path and map variables - String localVarPath = "/update-ssh-cert-issuer"; + String localVarPath = "/update-target"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -37758,15 +38555,15 @@ public okhttp3.Call updateSSHCertIssuerCall(UpdateSSHCertIssuer body, final ApiC } @SuppressWarnings("rawtypes") - private okhttp3.Call updateSSHCertIssuerValidateBeforeCall(UpdateSSHCertIssuer body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call updateTargetValidateBeforeCall(UpdateTarget body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling updateSSHCertIssuer(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling updateTarget(Async)"); } - okhttp3.Call localVarCall = updateSSHCertIssuerCall(body, _callback); + okhttp3.Call localVarCall = updateTargetCall(body, _callback); return localVarCall; } @@ -37775,17 +38572,17 @@ private okhttp3.Call updateSSHCertIssuerValidateBeforeCall(UpdateSSHCertIssuer b * * * @param body (required) - * @return UpdateSSHCertIssuerOutput + * @return UpdateTargetOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 updateSSHCertIssuerResponse wraps response body. -
200 updateTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public UpdateSSHCertIssuerOutput updateSSHCertIssuer(UpdateSSHCertIssuer body) throws ApiException { - ApiResponse localVarResp = updateSSHCertIssuerWithHttpInfo(body); + public UpdateTargetOutput updateTarget(UpdateTarget body) throws ApiException { + ApiResponse localVarResp = updateTargetWithHttpInfo(body); return localVarResp.getData(); } @@ -37793,18 +38590,18 @@ public UpdateSSHCertIssuerOutput updateSSHCertIssuer(UpdateSSHCertIssuer body) t * * * @param body (required) - * @return ApiResponse<UpdateSSHCertIssuerOutput> + * @return ApiResponse<UpdateTargetOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 updateSSHCertIssuerResponse wraps response body. -
200 updateTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse updateSSHCertIssuerWithHttpInfo(UpdateSSHCertIssuer body) throws ApiException { - okhttp3.Call localVarCall = updateSSHCertIssuerValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse updateTargetWithHttpInfo(UpdateTarget body) throws ApiException { + okhttp3.Call localVarCall = updateTargetValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -37818,19 +38615,19 @@ public ApiResponse updateSSHCertIssuerWithHttpInfo(Up * @http.response.details - +
Status Code Description Response Headers
200 updateSSHCertIssuerResponse wraps response body. -
200 updateTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call updateSSHCertIssuerAsync(UpdateSSHCertIssuer body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateTargetAsync(UpdateTarget body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = updateSSHCertIssuerValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = updateTargetValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for updateSSHTarget + * Build call for updateTargetDetails * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -37838,11 +38635,11 @@ public okhttp3.Call updateSSHCertIssuerAsync(UpdateSSHCertIssuer body, final Api * @http.response.details - +
Status Code Description Response Headers
200 updateSSHTargetResponse wraps response body. -
200 updateTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call updateSSHTargetCall(UpdateSSHTarget body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateTargetDetailsCall(UpdateTargetDetails body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -37860,7 +38657,7 @@ public okhttp3.Call updateSSHTargetCall(UpdateSSHTarget body, final ApiCallback Object localVarPostBody = body; // create path and map variables - String localVarPath = "/update-ssh-target"; + String localVarPath = "/update-target-details"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -37889,15 +38686,15 @@ public okhttp3.Call updateSSHTargetCall(UpdateSSHTarget body, final ApiCallback } @SuppressWarnings("rawtypes") - private okhttp3.Call updateSSHTargetValidateBeforeCall(UpdateSSHTarget body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call updateTargetDetailsValidateBeforeCall(UpdateTargetDetails body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling updateSSHTarget(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling updateTargetDetails(Async)"); } - okhttp3.Call localVarCall = updateSSHTargetCall(body, _callback); + okhttp3.Call localVarCall = updateTargetDetailsCall(body, _callback); return localVarCall; } @@ -37906,17 +38703,17 @@ private okhttp3.Call updateSSHTargetValidateBeforeCall(UpdateSSHTarget body, fin * * * @param body (required) - * @return UpdateSSHTargetOutput + * @return UpdateTargetOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 updateSSHTargetResponse wraps response body. -
200 updateTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public UpdateSSHTargetOutput updateSSHTarget(UpdateSSHTarget body) throws ApiException { - ApiResponse localVarResp = updateSSHTargetWithHttpInfo(body); + public UpdateTargetOutput updateTargetDetails(UpdateTargetDetails body) throws ApiException { + ApiResponse localVarResp = updateTargetDetailsWithHttpInfo(body); return localVarResp.getData(); } @@ -37924,18 +38721,18 @@ public UpdateSSHTargetOutput updateSSHTarget(UpdateSSHTarget body) throws ApiExc * * * @param body (required) - * @return ApiResponse<UpdateSSHTargetOutput> + * @return ApiResponse<UpdateTargetOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 updateSSHTargetResponse wraps response body. -
200 updateTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse updateSSHTargetWithHttpInfo(UpdateSSHTarget body) throws ApiException { - okhttp3.Call localVarCall = updateSSHTargetValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse updateTargetDetailsWithHttpInfo(UpdateTargetDetails body) throws ApiException { + okhttp3.Call localVarCall = updateTargetDetailsValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -37949,19 +38746,19 @@ public ApiResponse updateSSHTargetWithHttpInfo(UpdateSSHT * @http.response.details - +
Status Code Description Response Headers
200 updateSSHTargetResponse wraps response body. -
200 updateTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call updateSSHTargetAsync(UpdateSSHTarget body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateTargetDetailsAsync(UpdateTargetDetails body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = updateSSHTargetValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = updateTargetDetailsValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for updateSSHTargetDetails + * Build call for updateWebTarget * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -37969,11 +38766,11 @@ public okhttp3.Call updateSSHTargetAsync(UpdateSSHTarget body, final ApiCallback * @http.response.details - +
Status Code Description Response Headers
200 updateTargetResponse wraps response body. -
200 updateWebTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call updateSSHTargetDetailsCall(UpdateSSHTargetDetails body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateWebTargetCall(UpdateWebTarget body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -37991,7 +38788,7 @@ public okhttp3.Call updateSSHTargetDetailsCall(UpdateSSHTargetDetails body, fina Object localVarPostBody = body; // create path and map variables - String localVarPath = "/update-ssh-target-details"; + String localVarPath = "/update-web-target"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -38020,15 +38817,15 @@ public okhttp3.Call updateSSHTargetDetailsCall(UpdateSSHTargetDetails body, fina } @SuppressWarnings("rawtypes") - private okhttp3.Call updateSSHTargetDetailsValidateBeforeCall(UpdateSSHTargetDetails body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call updateWebTargetValidateBeforeCall(UpdateWebTarget body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling updateSSHTargetDetails(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling updateWebTarget(Async)"); } - okhttp3.Call localVarCall = updateSSHTargetDetailsCall(body, _callback); + okhttp3.Call localVarCall = updateWebTargetCall(body, _callback); return localVarCall; } @@ -38037,17 +38834,17 @@ private okhttp3.Call updateSSHTargetDetailsValidateBeforeCall(UpdateSSHTargetDet * * * @param body (required) - * @return UpdateTargetOutput + * @return UpdateWebTargetOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 updateTargetResponse wraps response body. -
200 updateWebTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public UpdateTargetOutput updateSSHTargetDetails(UpdateSSHTargetDetails body) throws ApiException { - ApiResponse localVarResp = updateSSHTargetDetailsWithHttpInfo(body); + public UpdateWebTargetOutput updateWebTarget(UpdateWebTarget body) throws ApiException { + ApiResponse localVarResp = updateWebTargetWithHttpInfo(body); return localVarResp.getData(); } @@ -38055,18 +38852,18 @@ public UpdateTargetOutput updateSSHTargetDetails(UpdateSSHTargetDetails body) th * * * @param body (required) - * @return ApiResponse<UpdateTargetOutput> + * @return ApiResponse<UpdateWebTargetOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 updateTargetResponse wraps response body. -
200 updateWebTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse updateSSHTargetDetailsWithHttpInfo(UpdateSSHTargetDetails body) throws ApiException { - okhttp3.Call localVarCall = updateSSHTargetDetailsValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse updateWebTargetWithHttpInfo(UpdateWebTarget body) throws ApiException { + okhttp3.Call localVarCall = updateWebTargetValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -38080,19 +38877,19 @@ public ApiResponse updateSSHTargetDetailsWithHttpInfo(Update * @http.response.details - +
Status Code Description Response Headers
200 updateTargetResponse wraps response body. -
200 updateWebTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call updateSSHTargetDetailsAsync(UpdateSSHTargetDetails body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateWebTargetAsync(UpdateWebTarget body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = updateSSHTargetDetailsValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = updateWebTargetValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for updateSalesforceTarget + * Build call for updateWebTargetDetails * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -38100,11 +38897,11 @@ public okhttp3.Call updateSSHTargetDetailsAsync(UpdateSSHTargetDetails body, fin * @http.response.details - +
Status Code Description Response Headers
200 updateSalesforceTargetResponse wraps response body. -
200 updateTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call updateSalesforceTargetCall(UpdateSalesforceTarget body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateWebTargetDetailsCall(UpdateWebTargetDetails body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -38122,7 +38919,7 @@ public okhttp3.Call updateSalesforceTargetCall(UpdateSalesforceTarget body, fina Object localVarPostBody = body; // create path and map variables - String localVarPath = "/update-salesforce-target"; + String localVarPath = "/update-web-target-details"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -38151,15 +38948,15 @@ public okhttp3.Call updateSalesforceTargetCall(UpdateSalesforceTarget body, fina } @SuppressWarnings("rawtypes") - private okhttp3.Call updateSalesforceTargetValidateBeforeCall(UpdateSalesforceTarget body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call updateWebTargetDetailsValidateBeforeCall(UpdateWebTargetDetails body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling updateSalesforceTarget(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling updateWebTargetDetails(Async)"); } - okhttp3.Call localVarCall = updateSalesforceTargetCall(body, _callback); + okhttp3.Call localVarCall = updateWebTargetDetailsCall(body, _callback); return localVarCall; } @@ -38168,17 +38965,17 @@ private okhttp3.Call updateSalesforceTargetValidateBeforeCall(UpdateSalesforceTa * * * @param body (required) - * @return UpdateSalesforceTargetOutput + * @return UpdateTargetOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 updateSalesforceTargetResponse wraps response body. -
200 updateTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public UpdateSalesforceTargetOutput updateSalesforceTarget(UpdateSalesforceTarget body) throws ApiException { - ApiResponse localVarResp = updateSalesforceTargetWithHttpInfo(body); + public UpdateTargetOutput updateWebTargetDetails(UpdateWebTargetDetails body) throws ApiException { + ApiResponse localVarResp = updateWebTargetDetailsWithHttpInfo(body); return localVarResp.getData(); } @@ -38186,18 +38983,18 @@ public UpdateSalesforceTargetOutput updateSalesforceTarget(UpdateSalesforceTarge * * * @param body (required) - * @return ApiResponse<UpdateSalesforceTargetOutput> + * @return ApiResponse<UpdateTargetOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 updateSalesforceTargetResponse wraps response body. -
200 updateTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse updateSalesforceTargetWithHttpInfo(UpdateSalesforceTarget body) throws ApiException { - okhttp3.Call localVarCall = updateSalesforceTargetValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse updateWebTargetDetailsWithHttpInfo(UpdateWebTargetDetails body) throws ApiException { + okhttp3.Call localVarCall = updateWebTargetDetailsValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -38211,19 +39008,19 @@ public ApiResponse updateSalesforceTargetWithHttpI * @http.response.details - +
Status Code Description Response Headers
200 updateSalesforceTargetResponse wraps response body. -
200 updateTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call updateSalesforceTargetAsync(UpdateSalesforceTarget body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateWebTargetDetailsAsync(UpdateWebTargetDetails body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = updateSalesforceTargetValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = updateWebTargetDetailsValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for updateSecretVal + * Build call for updateWindowsTarget * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -38231,11 +39028,11 @@ public okhttp3.Call updateSalesforceTargetAsync(UpdateSalesforceTarget body, fin * @http.response.details - +
Status Code Description Response Headers
200 updateSecretValResponse wraps response body. -
200 updateWindowsTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call updateSecretValCall(UpdateSecretVal body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateWindowsTargetCall(UpdateWindowsTarget body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -38253,7 +39050,7 @@ public okhttp3.Call updateSecretValCall(UpdateSecretVal body, final ApiCallback Object localVarPostBody = body; // create path and map variables - String localVarPath = "/update-secret-val"; + String localVarPath = "/update-windows-target"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -38282,15 +39079,15 @@ public okhttp3.Call updateSecretValCall(UpdateSecretVal body, final ApiCallback } @SuppressWarnings("rawtypes") - private okhttp3.Call updateSecretValValidateBeforeCall(UpdateSecretVal body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call updateWindowsTargetValidateBeforeCall(UpdateWindowsTarget body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling updateSecretVal(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling updateWindowsTarget(Async)"); } - okhttp3.Call localVarCall = updateSecretValCall(body, _callback); + okhttp3.Call localVarCall = updateWindowsTargetCall(body, _callback); return localVarCall; } @@ -38299,17 +39096,17 @@ private okhttp3.Call updateSecretValValidateBeforeCall(UpdateSecretVal body, fin * * * @param body (required) - * @return UpdateSecretValOutput + * @return Object * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 updateSecretValResponse wraps response body. -
200 updateWindowsTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public UpdateSecretValOutput updateSecretVal(UpdateSecretVal body) throws ApiException { - ApiResponse localVarResp = updateSecretValWithHttpInfo(body); + public Object updateWindowsTarget(UpdateWindowsTarget body) throws ApiException { + ApiResponse localVarResp = updateWindowsTargetWithHttpInfo(body); return localVarResp.getData(); } @@ -38317,18 +39114,18 @@ public UpdateSecretValOutput updateSecretVal(UpdateSecretVal body) throws ApiExc * * * @param body (required) - * @return ApiResponse<UpdateSecretValOutput> + * @return ApiResponse<Object> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 updateSecretValResponse wraps response body. -
200 updateWindowsTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse updateSecretValWithHttpInfo(UpdateSecretVal body) throws ApiException { - okhttp3.Call localVarCall = updateSecretValValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse updateWindowsTargetWithHttpInfo(UpdateWindowsTarget body) throws ApiException { + okhttp3.Call localVarCall = updateWindowsTargetValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -38342,19 +39139,19 @@ public ApiResponse updateSecretValWithHttpInfo(UpdateSecr * @http.response.details - +
Status Code Description Response Headers
200 updateSecretValResponse wraps response body. -
200 updateWindowsTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call updateSecretValAsync(UpdateSecretVal body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateWindowsTargetAsync(UpdateWindowsTarget body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = updateSecretValValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = updateWindowsTargetValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for updateTarget + * Build call for updateZeroSSLTarget * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -38362,11 +39159,11 @@ public okhttp3.Call updateSecretValAsync(UpdateSecretVal body, final ApiCallback * @http.response.details - +
Status Code Description Response Headers
200 updateTargetResponse wraps response body. -
200 updateZeroSSLTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call updateTargetCall(UpdateTarget body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateZeroSSLTargetCall(UpdateZeroSSLTarget body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -38384,7 +39181,7 @@ public okhttp3.Call updateTargetCall(UpdateTarget body, final ApiCallback _callb Object localVarPostBody = body; // create path and map variables - String localVarPath = "/update-target"; + String localVarPath = "/update-zerossl-target"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -38413,15 +39210,15 @@ public okhttp3.Call updateTargetCall(UpdateTarget body, final ApiCallback _callb } @SuppressWarnings("rawtypes") - private okhttp3.Call updateTargetValidateBeforeCall(UpdateTarget body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call updateZeroSSLTargetValidateBeforeCall(UpdateZeroSSLTarget body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling updateTarget(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling updateZeroSSLTarget(Async)"); } - okhttp3.Call localVarCall = updateTargetCall(body, _callback); + okhttp3.Call localVarCall = updateZeroSSLTargetCall(body, _callback); return localVarCall; } @@ -38430,17 +39227,17 @@ private okhttp3.Call updateTargetValidateBeforeCall(UpdateTarget body, final Api * * * @param body (required) - * @return UpdateTargetOutput + * @return UpdateZeroSSLTargetOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 updateTargetResponse wraps response body. -
200 updateZeroSSLTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public UpdateTargetOutput updateTarget(UpdateTarget body) throws ApiException { - ApiResponse localVarResp = updateTargetWithHttpInfo(body); + public UpdateZeroSSLTargetOutput updateZeroSSLTarget(UpdateZeroSSLTarget body) throws ApiException { + ApiResponse localVarResp = updateZeroSSLTargetWithHttpInfo(body); return localVarResp.getData(); } @@ -38448,18 +39245,18 @@ public UpdateTargetOutput updateTarget(UpdateTarget body) throws ApiException { * * * @param body (required) - * @return ApiResponse<UpdateTargetOutput> + * @return ApiResponse<UpdateZeroSSLTargetOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 updateTargetResponse wraps response body. -
200 updateZeroSSLTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse updateTargetWithHttpInfo(UpdateTarget body) throws ApiException { - okhttp3.Call localVarCall = updateTargetValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse updateZeroSSLTargetWithHttpInfo(UpdateZeroSSLTarget body) throws ApiException { + okhttp3.Call localVarCall = updateZeroSSLTargetValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -38473,19 +39270,19 @@ public ApiResponse updateTargetWithHttpInfo(UpdateTarget bod * @http.response.details - +
Status Code Description Response Headers
200 updateTargetResponse wraps response body. -
200 updateZeroSSLTargetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call updateTargetAsync(UpdateTarget body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call updateZeroSSLTargetAsync(UpdateZeroSSLTarget body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = updateTargetValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = updateZeroSSLTargetValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for updateTargetDetails + * Build call for uploadRSA * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -38493,11 +39290,11 @@ public okhttp3.Call updateTargetAsync(UpdateTarget body, final ApiCallback Status Code Description Response Headers - 200 updateTargetResponse wraps response body. - + 200 uploadRSAResponse wraps response body. - 0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. - */ - public okhttp3.Call updateTargetDetailsCall(UpdateTargetDetails body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call uploadRSACall(UploadRSA body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -38515,7 +39312,7 @@ public okhttp3.Call updateTargetDetailsCall(UpdateTargetDetails body, final ApiC Object localVarPostBody = body; // create path and map variables - String localVarPath = "/update-target-details"; + String localVarPath = "/upload-rsa"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -38544,15 +39341,15 @@ public okhttp3.Call updateTargetDetailsCall(UpdateTargetDetails body, final ApiC } @SuppressWarnings("rawtypes") - private okhttp3.Call updateTargetDetailsValidateBeforeCall(UpdateTargetDetails body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call uploadRSAValidateBeforeCall(UploadRSA body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling updateTargetDetails(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling uploadRSA(Async)"); } - okhttp3.Call localVarCall = updateTargetDetailsCall(body, _callback); + okhttp3.Call localVarCall = uploadRSACall(body, _callback); return localVarCall; } @@ -38561,17 +39358,17 @@ private okhttp3.Call updateTargetDetailsValidateBeforeCall(UpdateTargetDetails b * * * @param body (required) - * @return UpdateTargetOutput + * @return Object * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 updateTargetResponse wraps response body. -
200 uploadRSAResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public UpdateTargetOutput updateTargetDetails(UpdateTargetDetails body) throws ApiException { - ApiResponse localVarResp = updateTargetDetailsWithHttpInfo(body); + public Object uploadRSA(UploadRSA body) throws ApiException { + ApiResponse localVarResp = uploadRSAWithHttpInfo(body); return localVarResp.getData(); } @@ -38579,18 +39376,18 @@ public UpdateTargetOutput updateTargetDetails(UpdateTargetDetails body) throws A * * * @param body (required) - * @return ApiResponse<UpdateTargetOutput> + * @return ApiResponse<Object> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 updateTargetResponse wraps response body. -
200 uploadRSAResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse updateTargetDetailsWithHttpInfo(UpdateTargetDetails body) throws ApiException { - okhttp3.Call localVarCall = updateTargetDetailsValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse uploadRSAWithHttpInfo(UploadRSA body) throws ApiException { + okhttp3.Call localVarCall = uploadRSAValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -38604,19 +39401,19 @@ public ApiResponse updateTargetDetailsWithHttpInfo(UpdateTar * @http.response.details - +
Status Code Description Response Headers
200 updateTargetResponse wraps response body. -
200 uploadRSAResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call updateTargetDetailsAsync(UpdateTargetDetails body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call uploadRSAAsync(UploadRSA body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = updateTargetDetailsValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = uploadRSAValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for updateWebTarget + * Build call for uscCreate * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -38624,11 +39421,11 @@ public okhttp3.Call updateTargetDetailsAsync(UpdateTargetDetails body, final Api * @http.response.details - +
Status Code Description Response Headers
200 updateWebTargetResponse wraps response body. -
200 uscCreateResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call updateWebTargetCall(UpdateWebTarget body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call uscCreateCall(UscUpdate body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -38646,7 +39443,7 @@ public okhttp3.Call updateWebTargetCall(UpdateWebTarget body, final ApiCallback Object localVarPostBody = body; // create path and map variables - String localVarPath = "/update-web-target"; + String localVarPath = "/usc-create"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -38675,15 +39472,15 @@ public okhttp3.Call updateWebTargetCall(UpdateWebTarget body, final ApiCallback } @SuppressWarnings("rawtypes") - private okhttp3.Call updateWebTargetValidateBeforeCall(UpdateWebTarget body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call uscCreateValidateBeforeCall(UscUpdate body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling updateWebTarget(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling uscCreate(Async)"); } - okhttp3.Call localVarCall = updateWebTargetCall(body, _callback); + okhttp3.Call localVarCall = uscCreateCall(body, _callback); return localVarCall; } @@ -38692,17 +39489,17 @@ private okhttp3.Call updateWebTargetValidateBeforeCall(UpdateWebTarget body, fin * * * @param body (required) - * @return UpdateWebTargetOutput + * @return UscCreateSecretOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 updateWebTargetResponse wraps response body. -
200 uscCreateResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public UpdateWebTargetOutput updateWebTarget(UpdateWebTarget body) throws ApiException { - ApiResponse localVarResp = updateWebTargetWithHttpInfo(body); + public UscCreateSecretOutput uscCreate(UscUpdate body) throws ApiException { + ApiResponse localVarResp = uscCreateWithHttpInfo(body); return localVarResp.getData(); } @@ -38710,18 +39507,18 @@ public UpdateWebTargetOutput updateWebTarget(UpdateWebTarget body) throws ApiExc * * * @param body (required) - * @return ApiResponse<UpdateWebTargetOutput> + * @return ApiResponse<UscCreateSecretOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 updateWebTargetResponse wraps response body. -
200 uscCreateResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse updateWebTargetWithHttpInfo(UpdateWebTarget body) throws ApiException { - okhttp3.Call localVarCall = updateWebTargetValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse uscCreateWithHttpInfo(UscUpdate body) throws ApiException { + okhttp3.Call localVarCall = uscCreateValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -38735,19 +39532,19 @@ public ApiResponse updateWebTargetWithHttpInfo(UpdateWebT * @http.response.details - +
Status Code Description Response Headers
200 updateWebTargetResponse wraps response body. -
200 uscCreateResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call updateWebTargetAsync(UpdateWebTarget body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call uscCreateAsync(UscUpdate body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = updateWebTargetValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = uscCreateValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for updateWebTargetDetails + * Build call for uscDelete * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -38755,11 +39552,11 @@ public okhttp3.Call updateWebTargetAsync(UpdateWebTarget body, final ApiCallback * @http.response.details - +
Status Code Description Response Headers
200 updateTargetResponse wraps response body. -
202 uscDeleteResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call updateWebTargetDetailsCall(UpdateWebTargetDetails body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call uscDeleteCall(UscDelete body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -38777,7 +39574,7 @@ public okhttp3.Call updateWebTargetDetailsCall(UpdateWebTargetDetails body, fina Object localVarPostBody = body; // create path and map variables - String localVarPath = "/update-web-target-details"; + String localVarPath = "/usc-delete"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -38806,15 +39603,15 @@ public okhttp3.Call updateWebTargetDetailsCall(UpdateWebTargetDetails body, fina } @SuppressWarnings("rawtypes") - private okhttp3.Call updateWebTargetDetailsValidateBeforeCall(UpdateWebTargetDetails body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call uscDeleteValidateBeforeCall(UscDelete body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling updateWebTargetDetails(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling uscDelete(Async)"); } - okhttp3.Call localVarCall = updateWebTargetDetailsCall(body, _callback); + okhttp3.Call localVarCall = uscDeleteCall(body, _callback); return localVarCall; } @@ -38823,17 +39620,17 @@ private okhttp3.Call updateWebTargetDetailsValidateBeforeCall(UpdateWebTargetDet * * * @param body (required) - * @return UpdateTargetOutput + * @return UscDeleteSecretOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 updateTargetResponse wraps response body. -
202 uscDeleteResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public UpdateTargetOutput updateWebTargetDetails(UpdateWebTargetDetails body) throws ApiException { - ApiResponse localVarResp = updateWebTargetDetailsWithHttpInfo(body); + public UscDeleteSecretOutput uscDelete(UscDelete body) throws ApiException { + ApiResponse localVarResp = uscDeleteWithHttpInfo(body); return localVarResp.getData(); } @@ -38841,18 +39638,18 @@ public UpdateTargetOutput updateWebTargetDetails(UpdateWebTargetDetails body) th * * * @param body (required) - * @return ApiResponse<UpdateTargetOutput> + * @return ApiResponse<UscDeleteSecretOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 updateTargetResponse wraps response body. -
202 uscDeleteResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse updateWebTargetDetailsWithHttpInfo(UpdateWebTargetDetails body) throws ApiException { - okhttp3.Call localVarCall = updateWebTargetDetailsValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse uscDeleteWithHttpInfo(UscDelete body) throws ApiException { + okhttp3.Call localVarCall = uscDeleteValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -38866,19 +39663,19 @@ public ApiResponse updateWebTargetDetailsWithHttpInfo(Update * @http.response.details - +
Status Code Description Response Headers
200 updateTargetResponse wraps response body. -
202 uscDeleteResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call updateWebTargetDetailsAsync(UpdateWebTargetDetails body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call uscDeleteAsync(UscDelete body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = updateWebTargetDetailsValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = uscDeleteValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for updateWindowsTarget + * Build call for uscGet * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -38886,11 +39683,11 @@ public okhttp3.Call updateWebTargetDetailsAsync(UpdateWebTargetDetails body, fin * @http.response.details - +
Status Code Description Response Headers
200 updateWindowsTargetResponse wraps response body. -
200 uscGetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call updateWindowsTargetCall(UpdateWindowsTarget body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call uscGetCall(UscGet body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -38908,7 +39705,7 @@ public okhttp3.Call updateWindowsTargetCall(UpdateWindowsTarget body, final ApiC Object localVarPostBody = body; // create path and map variables - String localVarPath = "/update-windows-target"; + String localVarPath = "/usc-get"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -38937,15 +39734,15 @@ public okhttp3.Call updateWindowsTargetCall(UpdateWindowsTarget body, final ApiC } @SuppressWarnings("rawtypes") - private okhttp3.Call updateWindowsTargetValidateBeforeCall(UpdateWindowsTarget body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call uscGetValidateBeforeCall(UscGet body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling updateWindowsTarget(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling uscGet(Async)"); } - okhttp3.Call localVarCall = updateWindowsTargetCall(body, _callback); + okhttp3.Call localVarCall = uscGetCall(body, _callback); return localVarCall; } @@ -38954,17 +39751,17 @@ private okhttp3.Call updateWindowsTargetValidateBeforeCall(UpdateWindowsTarget b * * * @param body (required) - * @return Object + * @return UscGetSecretOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 updateWindowsTargetResponse wraps response body. -
200 uscGetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public Object updateWindowsTarget(UpdateWindowsTarget body) throws ApiException { - ApiResponse localVarResp = updateWindowsTargetWithHttpInfo(body); + public UscGetSecretOutput uscGet(UscGet body) throws ApiException { + ApiResponse localVarResp = uscGetWithHttpInfo(body); return localVarResp.getData(); } @@ -38972,18 +39769,18 @@ public Object updateWindowsTarget(UpdateWindowsTarget body) throws ApiException * * * @param body (required) - * @return ApiResponse<Object> + * @return ApiResponse<UscGetSecretOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 updateWindowsTargetResponse wraps response body. -
200 uscGetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse updateWindowsTargetWithHttpInfo(UpdateWindowsTarget body) throws ApiException { - okhttp3.Call localVarCall = updateWindowsTargetValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse uscGetWithHttpInfo(UscGet body) throws ApiException { + okhttp3.Call localVarCall = uscGetValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -38997,19 +39794,19 @@ public ApiResponse updateWindowsTargetWithHttpInfo(UpdateWindowsTarget b * @http.response.details - +
Status Code Description Response Headers
200 updateWindowsTargetResponse wraps response body. -
200 uscGetResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call updateWindowsTargetAsync(UpdateWindowsTarget body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call uscGetAsync(UscGet body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = updateWindowsTargetValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = uscGetValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for updateZeroSSLTarget + * Build call for uscList * @param body (required) * @param _callback Callback for upload/download progress * @return Call to execute @@ -39017,11 +39814,11 @@ public okhttp3.Call updateWindowsTargetAsync(UpdateWindowsTarget body, final Api * @http.response.details - +
Status Code Description Response Headers
200 updateZeroSSLTargetResponse wraps response body. -
200 uscListResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call updateZeroSSLTargetCall(UpdateZeroSSLTarget body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call uscListCall(UscList body, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -39039,7 +39836,7 @@ public okhttp3.Call updateZeroSSLTargetCall(UpdateZeroSSLTarget body, final ApiC Object localVarPostBody = body; // create path and map variables - String localVarPath = "/update-zerossl-target"; + String localVarPath = "/usc-list"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -39068,15 +39865,15 @@ public okhttp3.Call updateZeroSSLTargetCall(UpdateZeroSSLTarget body, final ApiC } @SuppressWarnings("rawtypes") - private okhttp3.Call updateZeroSSLTargetValidateBeforeCall(UpdateZeroSSLTarget body, final ApiCallback _callback) throws ApiException { + private okhttp3.Call uscListValidateBeforeCall(UscList body, final ApiCallback _callback) throws ApiException { // verify the required parameter 'body' is set if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling updateZeroSSLTarget(Async)"); + throw new ApiException("Missing the required parameter 'body' when calling uscList(Async)"); } - okhttp3.Call localVarCall = updateZeroSSLTargetCall(body, _callback); + okhttp3.Call localVarCall = uscListCall(body, _callback); return localVarCall; } @@ -39085,17 +39882,17 @@ private okhttp3.Call updateZeroSSLTargetValidateBeforeCall(UpdateZeroSSLTarget b * * * @param body (required) - * @return UpdateZeroSSLTargetOutput + * @return UscListSecretsOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 updateZeroSSLTargetResponse wraps response body. -
200 uscListResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public UpdateZeroSSLTargetOutput updateZeroSSLTarget(UpdateZeroSSLTarget body) throws ApiException { - ApiResponse localVarResp = updateZeroSSLTargetWithHttpInfo(body); + public UscListSecretsOutput uscList(UscList body) throws ApiException { + ApiResponse localVarResp = uscListWithHttpInfo(body); return localVarResp.getData(); } @@ -39103,18 +39900,18 @@ public UpdateZeroSSLTargetOutput updateZeroSSLTarget(UpdateZeroSSLTarget body) t * * * @param body (required) - * @return ApiResponse<UpdateZeroSSLTargetOutput> + * @return ApiResponse<UscListSecretsOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 updateZeroSSLTargetResponse wraps response body. -
200 uscListResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse updateZeroSSLTargetWithHttpInfo(UpdateZeroSSLTarget body) throws ApiException { - okhttp3.Call localVarCall = updateZeroSSLTargetValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse uscListWithHttpInfo(UscList body) throws ApiException { + okhttp3.Call localVarCall = uscListValidateBeforeCall(body, null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -39128,31 +39925,30 @@ public ApiResponse updateZeroSSLTargetWithHttpInfo(Up * @http.response.details - +
Status Code Description Response Headers
200 updateZeroSSLTargetResponse wraps response body. -
200 uscListResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call updateZeroSSLTargetAsync(UpdateZeroSSLTarget body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call uscListAsync(UscList body, final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = updateZeroSSLTargetValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = uscListValidateBeforeCall(body, _callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** - * Build call for uploadRSA - * @param body (required) + * Build call for uscUpdate * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object * @http.response.details - +
Status Code Description Response Headers
200 uploadRSAResponse wraps response body. -
200 uscUpdateResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call uploadRSACall(UploadRSA body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call uscUpdateCall(final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers @@ -39167,10 +39963,10 @@ public okhttp3.Call uploadRSACall(UploadRSA body, final ApiCallback _callback) t basePath = null; } - Object localVarPostBody = body; + Object localVarPostBody = null; // create path and map variables - String localVarPath = "/upload-rsa"; + String localVarPath = "/usc-update"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); @@ -39187,7 +39983,7 @@ public okhttp3.Call uploadRSACall(UploadRSA body, final ApiCallback _callback) t } final String[] localVarContentTypes = { - "application/json" + }; final String localVarContentType = localVarApiClient.selectHeaderContentType(localVarContentTypes); if (localVarContentType != null) { @@ -39199,15 +39995,10 @@ public okhttp3.Call uploadRSACall(UploadRSA body, final ApiCallback _callback) t } @SuppressWarnings("rawtypes") - private okhttp3.Call uploadRSAValidateBeforeCall(UploadRSA body, final ApiCallback _callback) throws ApiException { - - // verify the required parameter 'body' is set - if (body == null) { - throw new ApiException("Missing the required parameter 'body' when calling uploadRSA(Async)"); - } + private okhttp3.Call uscUpdateValidateBeforeCall(final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = uploadRSACall(body, _callback); + okhttp3.Call localVarCall = uscUpdateCall(_callback); return localVarCall; } @@ -39215,58 +40006,55 @@ private okhttp3.Call uploadRSAValidateBeforeCall(UploadRSA body, final ApiCallba /** * * - * @param body (required) - * @return Object + * @return UscUpdateSecretOutput * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 uploadRSAResponse wraps response body. -
200 uscUpdateResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public Object uploadRSA(UploadRSA body) throws ApiException { - ApiResponse localVarResp = uploadRSAWithHttpInfo(body); + public UscUpdateSecretOutput uscUpdate() throws ApiException { + ApiResponse localVarResp = uscUpdateWithHttpInfo(); return localVarResp.getData(); } /** * * - * @param body (required) - * @return ApiResponse<Object> + * @return ApiResponse<UscUpdateSecretOutput> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details - +
Status Code Description Response Headers
200 uploadRSAResponse wraps response body. -
200 uscUpdateResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public ApiResponse uploadRSAWithHttpInfo(UploadRSA body) throws ApiException { - okhttp3.Call localVarCall = uploadRSAValidateBeforeCall(body, null); - Type localVarReturnType = new TypeToken(){}.getType(); + public ApiResponse uscUpdateWithHttpInfo() throws ApiException { + okhttp3.Call localVarCall = uscUpdateValidateBeforeCall(null); + Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } /** * (asynchronously) * - * @param body (required) * @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 - +
Status Code Description Response Headers
200 uploadRSAResponse wraps response body. -
200 uscUpdateResponse wraps response body. -
0 errorResponse wraps any error to return it as a JSON object with one \"error\" field. -
*/ - public okhttp3.Call uploadRSAAsync(UploadRSA body, final ApiCallback _callback) throws ApiException { + public okhttp3.Call uscUpdateAsync(final ApiCallback _callback) throws ApiException { - okhttp3.Call localVarCall = uploadRSAValidateBeforeCall(body, _callback); - Type localVarReturnType = new TypeToken(){}.getType(); + okhttp3.Call localVarCall = uscUpdateValidateBeforeCall(_callback); + Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } diff --git a/src/main/java/io/akeyless/client/model/AllowedAccess.java b/src/main/java/io/akeyless/client/model/AllowedAccess.java index 2a378be5..bdecf174 100644 --- a/src/main/java/io/akeyless/client/model/AllowedAccess.java +++ b/src/main/java/io/akeyless/client/model/AllowedAccess.java @@ -82,6 +82,10 @@ public class AllowedAccess { @SerializedName(SERIALIZED_NAME_SUB_CLAIMS) private Map> subClaims = null; + public static final String SERIALIZED_NAME_SUB_CLAIMS_CASE_INSENSITIVE = "sub_claims_case_insensitive"; + @SerializedName(SERIALIZED_NAME_SUB_CLAIMS_CASE_INSENSITIVE) + private Boolean subClaimsCaseInsensitive; + public static final String SERIALIZED_NAME_UPDATED_AT = "updated_at"; @SerializedName(SERIALIZED_NAME_UPDATED_AT) private OffsetDateTime updatedAt; @@ -381,6 +385,29 @@ public void setSubClaims(Map> subClaims) { } + public AllowedAccess subClaimsCaseInsensitive(Boolean subClaimsCaseInsensitive) { + + this.subClaimsCaseInsensitive = subClaimsCaseInsensitive; + return this; + } + + /** + * Get subClaimsCaseInsensitive + * @return subClaimsCaseInsensitive + **/ + @javax.annotation.Nullable + @ApiModelProperty(value = "") + + public Boolean getSubClaimsCaseInsensitive() { + return subClaimsCaseInsensitive; + } + + + public void setSubClaimsCaseInsensitive(Boolean subClaimsCaseInsensitive) { + this.subClaimsCaseInsensitive = subClaimsCaseInsensitive; + } + + public AllowedAccess updatedAt(OffsetDateTime updatedAt) { this.updatedAt = updatedAt; @@ -425,12 +452,13 @@ public boolean equals(Object o) { Objects.equals(this.name, allowedAccess.name) && Objects.equals(this.permissions, allowedAccess.permissions) && Objects.equals(this.subClaims, allowedAccess.subClaims) && + Objects.equals(this.subClaimsCaseInsensitive, allowedAccess.subClaimsCaseInsensitive) && Objects.equals(this.updatedAt, allowedAccess.updatedAt); } @Override public int hashCode() { - return Objects.hash(accessId, accessType, clusterId, createdAt, description, editable, error, id, isValid, name, permissions, subClaims, updatedAt); + return Objects.hash(accessId, accessType, clusterId, createdAt, description, editable, error, id, isValid, name, permissions, subClaims, subClaimsCaseInsensitive, updatedAt); } @Override @@ -449,6 +477,7 @@ public String toString() { sb.append(" name: ").append(toIndentedString(name)).append("\n"); sb.append(" permissions: ").append(toIndentedString(permissions)).append("\n"); sb.append(" subClaims: ").append(toIndentedString(subClaims)).append("\n"); + sb.append(" subClaimsCaseInsensitive: ").append(toIndentedString(subClaimsCaseInsensitive)).append("\n"); sb.append(" updatedAt: ").append(toIndentedString(updatedAt)).append("\n"); sb.append("}"); return sb.toString(); diff --git a/src/main/java/io/akeyless/client/model/CreateESM.java b/src/main/java/io/akeyless/client/model/CreateESM.java index 916644c5..4ef0a55f 100644 --- a/src/main/java/io/akeyless/client/model/CreateESM.java +++ b/src/main/java/io/akeyless/client/model/CreateESM.java @@ -27,9 +27,9 @@ import java.util.List; /** - * CreateESM is a command that creates an External Secrets Manager + * CreateESM is a command that creates an External Secrets Manager. [Deprecated: Use command create-usc] */ -@ApiModel(description = "CreateESM is a command that creates an External Secrets Manager") +@ApiModel(description = "CreateESM is a command that creates an External Secrets Manager. [Deprecated: Use command create-usc]") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class CreateESM { public static final String SERIALIZED_NAME_AZURE_KV_NAME = "azure-kv-name"; diff --git a/src/main/java/io/akeyless/client/model/CreateEventForwarder.java b/src/main/java/io/akeyless/client/model/CreateEventForwarder.java index 6dfb1aed..58977d05 100644 --- a/src/main/java/io/akeyless/client/model/CreateEventForwarder.java +++ b/src/main/java/io/akeyless/client/model/CreateEventForwarder.java @@ -364,11 +364,11 @@ public CreateEventForwarder eventSourceType(String eventSourceType) { } /** - * Event Source type [item, target, auth_method] + * Event Source type [item, target, auth_method, gateway] * @return eventSourceType **/ @javax.annotation.Nullable - @ApiModelProperty(value = "Event Source type [item, target, auth_method]") + @ApiModelProperty(value = "Event Source type [item, target, auth_method, gateway]") public String getEventSourceType() { return eventSourceType; diff --git a/src/main/java/io/akeyless/client/model/CreateUSC.java b/src/main/java/io/akeyless/client/model/CreateUSC.java new file mode 100644 index 00000000..04500ab5 --- /dev/null +++ b/src/main/java/io/akeyless/client/model/CreateUSC.java @@ -0,0 +1,372 @@ +/* + * Akeyless API + * The purpose of this application is to provide access to Akeyless API. + * + * The version of the OpenAPI document: 2.0 + * Contact: support@akeyless.io + * + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). + * https://openapi-generator.tech + * Do not edit the class manually. + */ + + +package io.akeyless.client.model; + +import java.util.Objects; +import java.util.Arrays; +import com.google.gson.TypeAdapter; +import com.google.gson.annotations.JsonAdapter; +import com.google.gson.annotations.SerializedName; +import com.google.gson.stream.JsonReader; +import com.google.gson.stream.JsonWriter; +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import java.io.IOException; +import java.util.ArrayList; +import java.util.List; + +/** + * CreateUSC is a command that creates a Universal Secrets Connector + */ +@ApiModel(description = "CreateUSC is a command that creates a Universal Secrets Connector") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") +public class CreateUSC { + public static final String SERIALIZED_NAME_AZURE_KV_NAME = "azure-kv-name"; + @SerializedName(SERIALIZED_NAME_AZURE_KV_NAME) + private String azureKvName; + + public static final String SERIALIZED_NAME_DELETE_PROTECTION = "delete_protection"; + @SerializedName(SERIALIZED_NAME_DELETE_PROTECTION) + private String deleteProtection; + + public static final String SERIALIZED_NAME_DESCRIPTION = "description"; + @SerializedName(SERIALIZED_NAME_DESCRIPTION) + private String description; + + public static final String SERIALIZED_NAME_JSON = "json"; + @SerializedName(SERIALIZED_NAME_JSON) + private Boolean json = false; + + public static final String SERIALIZED_NAME_K8S_NAMESPACE = "k8s-namespace"; + @SerializedName(SERIALIZED_NAME_K8S_NAMESPACE) + private String k8sNamespace; + + public static final String SERIALIZED_NAME_NAME = "name"; + @SerializedName(SERIALIZED_NAME_NAME) + private String name; + + public static final String SERIALIZED_NAME_TAGS = "tags"; + @SerializedName(SERIALIZED_NAME_TAGS) + private List tags = null; + + public static final String SERIALIZED_NAME_TARGET_TO_ASSOCIATE = "target-to-associate"; + @SerializedName(SERIALIZED_NAME_TARGET_TO_ASSOCIATE) + private String targetToAssociate; + + public static final String SERIALIZED_NAME_TOKEN = "token"; + @SerializedName(SERIALIZED_NAME_TOKEN) + private String token; + + public static final String SERIALIZED_NAME_UID_TOKEN = "uid-token"; + @SerializedName(SERIALIZED_NAME_UID_TOKEN) + private String uidToken; + + public CreateUSC() { + } + + public CreateUSC azureKvName(String azureKvName) { + + this.azureKvName = azureKvName; + return this; + } + + /** + * Azure Key Vault name (Relevant only for Azure targets) + * @return azureKvName + **/ + @javax.annotation.Nullable + @ApiModelProperty(value = "Azure Key Vault name (Relevant only for Azure targets)") + + public String getAzureKvName() { + return azureKvName; + } + + + public void setAzureKvName(String azureKvName) { + this.azureKvName = azureKvName; + } + + + public CreateUSC deleteProtection(String deleteProtection) { + + this.deleteProtection = deleteProtection; + return this; + } + + /** + * Protection from accidental deletion of this item [true/false] + * @return deleteProtection + **/ + @javax.annotation.Nullable + @ApiModelProperty(value = "Protection from accidental deletion of this item [true/false]") + + public String getDeleteProtection() { + return deleteProtection; + } + + + public void setDeleteProtection(String deleteProtection) { + this.deleteProtection = deleteProtection; + } + + + public CreateUSC description(String description) { + + this.description = description; + return this; + } + + /** + * Description of the Universal Secrets Connector + * @return description + **/ + @javax.annotation.Nullable + @ApiModelProperty(value = "Description of the Universal Secrets Connector") + + public String getDescription() { + return description; + } + + + public void setDescription(String description) { + this.description = description; + } + + + public CreateUSC json(Boolean json) { + + this.json = json; + return this; + } + + /** + * Set output format to JSON + * @return json + **/ + @javax.annotation.Nullable + @ApiModelProperty(value = "Set output format to JSON") + + public Boolean getJson() { + return json; + } + + + public void setJson(Boolean json) { + this.json = json; + } + + + public CreateUSC k8sNamespace(String k8sNamespace) { + + this.k8sNamespace = k8sNamespace; + return this; + } + + /** + * K8s namespace (Relevant to Kubernetes targets) + * @return k8sNamespace + **/ + @javax.annotation.Nullable + @ApiModelProperty(value = "K8s namespace (Relevant to Kubernetes targets)") + + public String getK8sNamespace() { + return k8sNamespace; + } + + + public void setK8sNamespace(String k8sNamespace) { + this.k8sNamespace = k8sNamespace; + } + + + public CreateUSC name(String name) { + + this.name = name; + return this; + } + + /** + * Universal Secrets Connector name + * @return name + **/ + @javax.annotation.Nonnull + @ApiModelProperty(required = true, value = "Universal Secrets Connector name") + + public String getName() { + return name; + } + + + public void setName(String name) { + this.name = name; + } + + + public CreateUSC tags(List tags) { + + this.tags = tags; + return this; + } + + public CreateUSC addTagsItem(String tagsItem) { + if (this.tags == null) { + this.tags = new ArrayList(); + } + this.tags.add(tagsItem); + return this; + } + + /** + * List of the tags attached to this Universal Secrets Connector + * @return tags + **/ + @javax.annotation.Nullable + @ApiModelProperty(value = "List of the tags attached to this Universal Secrets Connector") + + public List getTags() { + return tags; + } + + + public void setTags(List tags) { + this.tags = tags; + } + + + public CreateUSC targetToAssociate(String targetToAssociate) { + + this.targetToAssociate = targetToAssociate; + return this; + } + + /** + * Target Universal Secrets Connector to connect + * @return targetToAssociate + **/ + @javax.annotation.Nonnull + @ApiModelProperty(required = true, value = "Target Universal Secrets Connector to connect") + + public String getTargetToAssociate() { + return targetToAssociate; + } + + + public void setTargetToAssociate(String targetToAssociate) { + this.targetToAssociate = targetToAssociate; + } + + + public CreateUSC token(String token) { + + this.token = token; + return this; + } + + /** + * Authentication token (see `/auth` and `/configure`) + * @return token + **/ + @javax.annotation.Nullable + @ApiModelProperty(value = "Authentication token (see `/auth` and `/configure`)") + + public String getToken() { + return token; + } + + + public void setToken(String token) { + this.token = token; + } + + + public CreateUSC uidToken(String uidToken) { + + this.uidToken = uidToken; + return this; + } + + /** + * The universal identity token, Required only for universal_identity authentication + * @return uidToken + **/ + @javax.annotation.Nullable + @ApiModelProperty(value = "The universal identity token, Required only for universal_identity authentication") + + public String getUidToken() { + return uidToken; + } + + + public void setUidToken(String uidToken) { + this.uidToken = uidToken; + } + + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (o == null || getClass() != o.getClass()) { + return false; + } + CreateUSC createUSC = (CreateUSC) o; + return Objects.equals(this.azureKvName, createUSC.azureKvName) && + Objects.equals(this.deleteProtection, createUSC.deleteProtection) && + Objects.equals(this.description, createUSC.description) && + Objects.equals(this.json, createUSC.json) && + Objects.equals(this.k8sNamespace, createUSC.k8sNamespace) && + Objects.equals(this.name, createUSC.name) && + Objects.equals(this.tags, createUSC.tags) && + Objects.equals(this.targetToAssociate, createUSC.targetToAssociate) && + Objects.equals(this.token, createUSC.token) && + Objects.equals(this.uidToken, createUSC.uidToken); + } + + @Override + public int hashCode() { + return Objects.hash(azureKvName, deleteProtection, description, json, k8sNamespace, name, tags, targetToAssociate, token, uidToken); + } + + @Override + public String toString() { + StringBuilder sb = new StringBuilder(); + sb.append("class CreateUSC {\n"); + sb.append(" azureKvName: ").append(toIndentedString(azureKvName)).append("\n"); + sb.append(" deleteProtection: ").append(toIndentedString(deleteProtection)).append("\n"); + sb.append(" description: ").append(toIndentedString(description)).append("\n"); + sb.append(" json: ").append(toIndentedString(json)).append("\n"); + sb.append(" k8sNamespace: ").append(toIndentedString(k8sNamespace)).append("\n"); + sb.append(" name: ").append(toIndentedString(name)).append("\n"); + sb.append(" tags: ").append(toIndentedString(tags)).append("\n"); + sb.append(" targetToAssociate: ").append(toIndentedString(targetToAssociate)).append("\n"); + sb.append(" token: ").append(toIndentedString(token)).append("\n"); + sb.append(" uidToken: ").append(toIndentedString(uidToken)).append("\n"); + sb.append("}"); + return sb.toString(); + } + + /** + * Convert the given object to string with each line indented by 4 spaces + * (except the first line). + */ + private String toIndentedString(Object o) { + if (o == null) { + return "null"; + } + return o.toString().replace("\n", "\n "); + } + +} + diff --git a/src/main/java/io/akeyless/client/model/CreateUSCOutput.java b/src/main/java/io/akeyless/client/model/CreateUSCOutput.java new file mode 100644 index 00000000..ec7bb207 --- /dev/null +++ b/src/main/java/io/akeyless/client/model/CreateUSCOutput.java @@ -0,0 +1,129 @@ +/* + * Akeyless API + * The purpose of this application is to provide access to Akeyless API. + * + * The version of the OpenAPI document: 2.0 + * Contact: support@akeyless.io + * + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). + * https://openapi-generator.tech + * Do not edit the class manually. + */ + + +package io.akeyless.client.model; + +import java.util.Objects; +import java.util.Arrays; +import com.google.gson.TypeAdapter; +import com.google.gson.annotations.JsonAdapter; +import com.google.gson.annotations.SerializedName; +import com.google.gson.stream.JsonReader; +import com.google.gson.stream.JsonWriter; +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import java.io.IOException; + +/** + * CreateUSCOutput + */ +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") +public class CreateUSCOutput { + public static final String SERIALIZED_NAME_UNIVERSAL_SECRETS_CONNECTOR_ID = "universal_secrets_connector_id"; + @SerializedName(SERIALIZED_NAME_UNIVERSAL_SECRETS_CONNECTOR_ID) + private Long universalSecretsConnectorId; + + public static final String SERIALIZED_NAME_UNIVERSAL_SECRETS_CONNECTOR_NAME = "universal_secrets_connector_name"; + @SerializedName(SERIALIZED_NAME_UNIVERSAL_SECRETS_CONNECTOR_NAME) + private String universalSecretsConnectorName; + + public CreateUSCOutput() { + } + + public CreateUSCOutput universalSecretsConnectorId(Long universalSecretsConnectorId) { + + this.universalSecretsConnectorId = universalSecretsConnectorId; + return this; + } + + /** + * Get universalSecretsConnectorId + * @return universalSecretsConnectorId + **/ + @javax.annotation.Nullable + @ApiModelProperty(value = "") + + public Long getUniversalSecretsConnectorId() { + return universalSecretsConnectorId; + } + + + public void setUniversalSecretsConnectorId(Long universalSecretsConnectorId) { + this.universalSecretsConnectorId = universalSecretsConnectorId; + } + + + public CreateUSCOutput universalSecretsConnectorName(String universalSecretsConnectorName) { + + this.universalSecretsConnectorName = universalSecretsConnectorName; + return this; + } + + /** + * Get universalSecretsConnectorName + * @return universalSecretsConnectorName + **/ + @javax.annotation.Nullable + @ApiModelProperty(value = "") + + public String getUniversalSecretsConnectorName() { + return universalSecretsConnectorName; + } + + + public void setUniversalSecretsConnectorName(String universalSecretsConnectorName) { + this.universalSecretsConnectorName = universalSecretsConnectorName; + } + + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (o == null || getClass() != o.getClass()) { + return false; + } + CreateUSCOutput createUSCOutput = (CreateUSCOutput) o; + return Objects.equals(this.universalSecretsConnectorId, createUSCOutput.universalSecretsConnectorId) && + Objects.equals(this.universalSecretsConnectorName, createUSCOutput.universalSecretsConnectorName); + } + + @Override + public int hashCode() { + return Objects.hash(universalSecretsConnectorId, universalSecretsConnectorName); + } + + @Override + public String toString() { + StringBuilder sb = new StringBuilder(); + sb.append("class CreateUSCOutput {\n"); + sb.append(" universalSecretsConnectorId: ").append(toIndentedString(universalSecretsConnectorId)).append("\n"); + sb.append(" universalSecretsConnectorName: ").append(toIndentedString(universalSecretsConnectorName)).append("\n"); + sb.append("}"); + return sb.toString(); + } + + /** + * Convert the given object to string with each line indented by 4 spaces + * (except the first line). + */ + private String toIndentedString(Object o) { + if (o == null) { + return "null"; + } + return o.toString().replace("\n", "\n "); + } + +} + diff --git a/src/main/java/io/akeyless/client/model/DSProducerDetails.java b/src/main/java/io/akeyless/client/model/DSProducerDetails.java index 40b532c4..5a9cac53 100644 --- a/src/main/java/io/akeyless/client/model/DSProducerDetails.java +++ b/src/main/java/io/akeyless/client/model/DSProducerDetails.java @@ -671,6 +671,10 @@ public class DSProducerDetails { @SerializedName(SERIALIZED_NAME_ORACLE_CREATION_STATEMENTS) private String oracleCreationStatements; + public static final String SERIALIZED_NAME_ORACLE_REVOCATION_STATEMENTS = "oracle_revocation_statements"; + @SerializedName(SERIALIZED_NAME_ORACLE_REVOCATION_STATEMENTS) + private String oracleRevocationStatements; + public static final String SERIALIZED_NAME_PASSWORD = "password"; @SerializedName(SERIALIZED_NAME_PASSWORD) private String password; @@ -4631,6 +4635,29 @@ public void setOracleCreationStatements(String oracleCreationStatements) { } + public DSProducerDetails oracleRevocationStatements(String oracleRevocationStatements) { + + this.oracleRevocationStatements = oracleRevocationStatements; + return this; + } + + /** + * Get oracleRevocationStatements + * @return oracleRevocationStatements + **/ + @javax.annotation.Nullable + @ApiModelProperty(value = "") + + public String getOracleRevocationStatements() { + return oracleRevocationStatements; + } + + + public void setOracleRevocationStatements(String oracleRevocationStatements) { + this.oracleRevocationStatements = oracleRevocationStatements; + } + + public DSProducerDetails password(String password) { this.password = password; @@ -6196,6 +6223,7 @@ public boolean equals(Object o) { Objects.equals(this.mysqlCreationStatements, dsProducerDetails.mysqlCreationStatements) && Objects.equals(this.mysqlRevocationStatements, dsProducerDetails.mysqlRevocationStatements) && Objects.equals(this.oracleCreationStatements, dsProducerDetails.oracleCreationStatements) && + Objects.equals(this.oracleRevocationStatements, dsProducerDetails.oracleRevocationStatements) && Objects.equals(this.password, dsProducerDetails.password) && Objects.equals(this.passwordLength, dsProducerDetails.passwordLength) && Objects.equals(this.passwordPolicy, dsProducerDetails.passwordPolicy) && @@ -6259,7 +6287,7 @@ public boolean equals(Object o) { @Override public int hashCode() { - return Objects.hash(accessTokenManagerId, aclRules, active, adminName, adminPwd, adminRotationIntervalDays, administrativePort, artifactoryAdminApikey, artifactoryAdminUsername, artifactoryBaseUrl, artifactoryTokenAudience, artifactoryTokenScope, authorizationPort, awsAccessKeyId, awsAccessMode, awsRegion, awsRoleArns, awsSecretAccessKey, awsSessionToken, awsUserConsoleAccess, awsUserGroups, awsUserPolicies, awsUserProgrammaticAccess, azureAppObjectId, azureClientId, azureClientSecret, azureFixedUserNameSubClaimKey, azureFixedUserOnly, azureResourceGroupName, azureResourceName, azureSubscriptionId, azureTenantId, azureUserGroupsObjId, azureUserPortalAccess, azureUserProgrammaticAccess, azureUserRolesTemplateId, cassandraCreationStatements, chefOrganizations, chefServerAccessMode, chefServerHostName, chefServerKey, chefServerPort, chefServerUrl, chefServerUsername, chefSkipSsl, clientAuthenticationType, cloudServiceProvider, connectionType, createSyncUrl, dbClientId, dbClientSecret, dbHostName, dbIsolationLevel, dbMaxIdleConns, dbMaxOpenConns, dbName, dbPort, dbPrivateKey, dbPrivateKeyPassphrase, dbPwd, dbServerCertificates, dbServerName, dbTenantId, dbUserName, deleteProtection, dynamicSecretId, dynamicSecretKey, dynamicSecretName, dynamicSecretType, eksAccessKeyId, eksAssumeRole, eksClusterCaCertificate, eksClusterEndpoint, eksClusterName, eksRegion, eksSecretAccessKey, enableAdminRotation, enforceReplayPrevention, externallyProvidedUser, failureMessage, fixedUserOnly, gcpKeyAlgo, gcpRoleBindings, gcpServiceAccountEmail, gcpServiceAccountKey, gcpServiceAccountKeyBase64, gcpServiceAccountKeyId, gcpServiceAccountType, gcpTmpServiceAccountName, gcpTokenLifetime, gcpTokenScope, gcpTokenType, githubAppId, githubAppPrivateKey, githubBaseUrl, githubInstallationId, githubInstallationTokenPermissions, githubInstallationTokenRepositories, githubInstallationTokenRepositoriesIds, githubRepositoryPath, gkeClusterCaCertificate, gkeClusterEndpoint, gkeClusterName, gkeServiceAccountKey, gkeServiceAccountName, grantTypes, groups, hanadbCreationStatements, hanadbRevocationStatements, hostName, hostPort, implementationType, isFixedUser, issuer, itemTargetsAssoc, jwks, jwksUrl, k8sAllowedNamespaces, k8sAuthType, k8sBearerToken, k8sClientCertData, k8sClientKeyData, k8sClusterCaCertificate, k8sClusterEndpoint, k8sDynamicMode, k8sMultipleDocYamlTempDefinition, k8sNamespace, k8sRoleName, k8sRoleType, k8sServiceAccount, lastAdminRotation, ldapAudience, ldapBindDn, ldapBindPassword, ldapCertificate, ldapGroupDn, ldapTokenExpiration, ldapUrl, ldapUserAttr, ldapUserDn, metadata, mongodbAtlasApiPrivateKey, mongodbAtlasApiPublicKey, mongodbAtlasProjectId, mongodbCustomData, mongodbDbName, mongodbDefaultAuthDb, mongodbHostPort, mongodbIsAtlas, mongodbPassword, mongodbRoles, mongodbUriConnection, mongodbUriOptions, mongodbUsername, mssqlCreationStatements, mssqlRevocationStatements, mysqlCreationStatements, mysqlRevocationStatements, oracleCreationStatements, password, passwordLength, passwordPolicy, payload, pingUrl, postgresCreationStatements, postgresRevocationStatements, privilegedUser, rabbitmqServerPassword, rabbitmqServerUri, rabbitmqServerUser, rabbitmqUserConfPermission, rabbitmqUserReadPermission, rabbitmqUserTags, rabbitmqUserVhost, rabbitmqUserWritePermission, redirectUris, redshiftCreationStatements, restrictedScopes, revokeSyncUrl, rotateSyncUrl, scopes, secureRemoteAccessDetails, sessionExtensionWarnIntervalMin, sfAccount, sfUserRole, sfWarehouseName, shouldStop, signingAlgorithm, sslConnectionCertificate, sslConnectionMode, subjectDn, tags, timeoutSeconds, useGwCloudIdentity, useGwServiceAccount, userName, userPassword, userPrincipalName, userTtl, usernameLength, usernamePolicy, venafiAllowSubdomains, venafiAllowedDomains, venafiApiKey, venafiAutoGeneratedFolder, venafiBaseUrl, venafiRootFirstInChain, venafiSignUsingAkeylessPki, venafiSignerKeyName, venafiStorePrivateKey, venafiTppAccessToken, venafiTppClientId, venafiTppPassword, venafiTppRefreshToken, venafiTppUsername, venafiUseTpp, venafiZone, warnBeforeUserExpirationMin); + return Objects.hash(accessTokenManagerId, aclRules, active, adminName, adminPwd, adminRotationIntervalDays, administrativePort, artifactoryAdminApikey, artifactoryAdminUsername, artifactoryBaseUrl, artifactoryTokenAudience, artifactoryTokenScope, authorizationPort, awsAccessKeyId, awsAccessMode, awsRegion, awsRoleArns, awsSecretAccessKey, awsSessionToken, awsUserConsoleAccess, awsUserGroups, awsUserPolicies, awsUserProgrammaticAccess, azureAppObjectId, azureClientId, azureClientSecret, azureFixedUserNameSubClaimKey, azureFixedUserOnly, azureResourceGroupName, azureResourceName, azureSubscriptionId, azureTenantId, azureUserGroupsObjId, azureUserPortalAccess, azureUserProgrammaticAccess, azureUserRolesTemplateId, cassandraCreationStatements, chefOrganizations, chefServerAccessMode, chefServerHostName, chefServerKey, chefServerPort, chefServerUrl, chefServerUsername, chefSkipSsl, clientAuthenticationType, cloudServiceProvider, connectionType, createSyncUrl, dbClientId, dbClientSecret, dbHostName, dbIsolationLevel, dbMaxIdleConns, dbMaxOpenConns, dbName, dbPort, dbPrivateKey, dbPrivateKeyPassphrase, dbPwd, dbServerCertificates, dbServerName, dbTenantId, dbUserName, deleteProtection, dynamicSecretId, dynamicSecretKey, dynamicSecretName, dynamicSecretType, eksAccessKeyId, eksAssumeRole, eksClusterCaCertificate, eksClusterEndpoint, eksClusterName, eksRegion, eksSecretAccessKey, enableAdminRotation, enforceReplayPrevention, externallyProvidedUser, failureMessage, fixedUserOnly, gcpKeyAlgo, gcpRoleBindings, gcpServiceAccountEmail, gcpServiceAccountKey, gcpServiceAccountKeyBase64, gcpServiceAccountKeyId, gcpServiceAccountType, gcpTmpServiceAccountName, gcpTokenLifetime, gcpTokenScope, gcpTokenType, githubAppId, githubAppPrivateKey, githubBaseUrl, githubInstallationId, githubInstallationTokenPermissions, githubInstallationTokenRepositories, githubInstallationTokenRepositoriesIds, githubRepositoryPath, gkeClusterCaCertificate, gkeClusterEndpoint, gkeClusterName, gkeServiceAccountKey, gkeServiceAccountName, grantTypes, groups, hanadbCreationStatements, hanadbRevocationStatements, hostName, hostPort, implementationType, isFixedUser, issuer, itemTargetsAssoc, jwks, jwksUrl, k8sAllowedNamespaces, k8sAuthType, k8sBearerToken, k8sClientCertData, k8sClientKeyData, k8sClusterCaCertificate, k8sClusterEndpoint, k8sDynamicMode, k8sMultipleDocYamlTempDefinition, k8sNamespace, k8sRoleName, k8sRoleType, k8sServiceAccount, lastAdminRotation, ldapAudience, ldapBindDn, ldapBindPassword, ldapCertificate, ldapGroupDn, ldapTokenExpiration, ldapUrl, ldapUserAttr, ldapUserDn, metadata, mongodbAtlasApiPrivateKey, mongodbAtlasApiPublicKey, mongodbAtlasProjectId, mongodbCustomData, mongodbDbName, mongodbDefaultAuthDb, mongodbHostPort, mongodbIsAtlas, mongodbPassword, mongodbRoles, mongodbUriConnection, mongodbUriOptions, mongodbUsername, mssqlCreationStatements, mssqlRevocationStatements, mysqlCreationStatements, mysqlRevocationStatements, oracleCreationStatements, oracleRevocationStatements, password, passwordLength, passwordPolicy, payload, pingUrl, postgresCreationStatements, postgresRevocationStatements, privilegedUser, rabbitmqServerPassword, rabbitmqServerUri, rabbitmqServerUser, rabbitmqUserConfPermission, rabbitmqUserReadPermission, rabbitmqUserTags, rabbitmqUserVhost, rabbitmqUserWritePermission, redirectUris, redshiftCreationStatements, restrictedScopes, revokeSyncUrl, rotateSyncUrl, scopes, secureRemoteAccessDetails, sessionExtensionWarnIntervalMin, sfAccount, sfUserRole, sfWarehouseName, shouldStop, signingAlgorithm, sslConnectionCertificate, sslConnectionMode, subjectDn, tags, timeoutSeconds, useGwCloudIdentity, useGwServiceAccount, userName, userPassword, userPrincipalName, userTtl, usernameLength, usernamePolicy, venafiAllowSubdomains, venafiAllowedDomains, venafiApiKey, venafiAutoGeneratedFolder, venafiBaseUrl, venafiRootFirstInChain, venafiSignUsingAkeylessPki, venafiSignerKeyName, venafiStorePrivateKey, venafiTppAccessToken, venafiTppClientId, venafiTppPassword, venafiTppRefreshToken, venafiTppUsername, venafiUseTpp, venafiZone, warnBeforeUserExpirationMin); } @Override @@ -6425,6 +6453,7 @@ public String toString() { sb.append(" mysqlCreationStatements: ").append(toIndentedString(mysqlCreationStatements)).append("\n"); sb.append(" mysqlRevocationStatements: ").append(toIndentedString(mysqlRevocationStatements)).append("\n"); sb.append(" oracleCreationStatements: ").append(toIndentedString(oracleCreationStatements)).append("\n"); + sb.append(" oracleRevocationStatements: ").append(toIndentedString(oracleRevocationStatements)).append("\n"); sb.append(" password: ").append(toIndentedString(password)).append("\n"); sb.append(" passwordLength: ").append(toIndentedString(passwordLength)).append("\n"); sb.append(" passwordPolicy: ").append(toIndentedString(passwordPolicy)).append("\n"); diff --git a/src/main/java/io/akeyless/client/model/GatewayCreateAllowedAccess.java b/src/main/java/io/akeyless/client/model/GatewayCreateAllowedAccess.java index c49c7a69..85aa8e0a 100644 --- a/src/main/java/io/akeyless/client/model/GatewayCreateAllowedAccess.java +++ b/src/main/java/io/akeyless/client/model/GatewayCreateAllowedAccess.java @@ -33,10 +33,18 @@ @ApiModel(description = "gatewayCreateAllowedAccess is a command that creates allowed access in Gator") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class GatewayCreateAllowedAccess { + public static final String SERIALIZED_NAME_SUB_CLAIMS_CASE_INSENSITIVE = "SubClaimsCaseInsensitive"; + @SerializedName(SERIALIZED_NAME_SUB_CLAIMS_CASE_INSENSITIVE) + private Boolean subClaimsCaseInsensitive; + public static final String SERIALIZED_NAME_ACCESS_ID = "access-id"; @SerializedName(SERIALIZED_NAME_ACCESS_ID) private String accessId; + public static final String SERIALIZED_NAME_CASE_SENSITIVE = "case-sensitive"; + @SerializedName(SERIALIZED_NAME_CASE_SENSITIVE) + private String caseSensitive = "true"; + public static final String SERIALIZED_NAME_DESCRIPTION = "description"; @SerializedName(SERIALIZED_NAME_DESCRIPTION) private String description; @@ -68,6 +76,29 @@ public class GatewayCreateAllowedAccess { public GatewayCreateAllowedAccess() { } + public GatewayCreateAllowedAccess subClaimsCaseInsensitive(Boolean subClaimsCaseInsensitive) { + + this.subClaimsCaseInsensitive = subClaimsCaseInsensitive; + return this; + } + + /** + * Get subClaimsCaseInsensitive + * @return subClaimsCaseInsensitive + **/ + @javax.annotation.Nullable + @ApiModelProperty(value = "") + + public Boolean getSubClaimsCaseInsensitive() { + return subClaimsCaseInsensitive; + } + + + public void setSubClaimsCaseInsensitive(Boolean subClaimsCaseInsensitive) { + this.subClaimsCaseInsensitive = subClaimsCaseInsensitive; + } + + public GatewayCreateAllowedAccess accessId(String accessId) { this.accessId = accessId; @@ -91,6 +122,29 @@ public void setAccessId(String accessId) { } + public GatewayCreateAllowedAccess caseSensitive(String caseSensitive) { + + this.caseSensitive = caseSensitive; + return this; + } + + /** + * Treat sub claims as case-sensitive [true/false] + * @return caseSensitive + **/ + @javax.annotation.Nullable + @ApiModelProperty(value = "Treat sub claims as case-sensitive [true/false]") + + public String getCaseSensitive() { + return caseSensitive; + } + + + public void setCaseSensitive(String caseSensitive) { + this.caseSensitive = caseSensitive; + } + + public GatewayCreateAllowedAccess description(String description) { this.description = description; @@ -269,7 +323,9 @@ public boolean equals(Object o) { return false; } GatewayCreateAllowedAccess gatewayCreateAllowedAccess = (GatewayCreateAllowedAccess) o; - return Objects.equals(this.accessId, gatewayCreateAllowedAccess.accessId) && + return Objects.equals(this.subClaimsCaseInsensitive, gatewayCreateAllowedAccess.subClaimsCaseInsensitive) && + Objects.equals(this.accessId, gatewayCreateAllowedAccess.accessId) && + Objects.equals(this.caseSensitive, gatewayCreateAllowedAccess.caseSensitive) && Objects.equals(this.description, gatewayCreateAllowedAccess.description) && Objects.equals(this.json, gatewayCreateAllowedAccess.json) && Objects.equals(this.name, gatewayCreateAllowedAccess.name) && @@ -281,14 +337,16 @@ public boolean equals(Object o) { @Override public int hashCode() { - return Objects.hash(accessId, description, json, name, permissions, subClaims, token, uidToken); + return Objects.hash(subClaimsCaseInsensitive, accessId, caseSensitive, description, json, name, permissions, subClaims, token, uidToken); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class GatewayCreateAllowedAccess {\n"); + sb.append(" subClaimsCaseInsensitive: ").append(toIndentedString(subClaimsCaseInsensitive)).append("\n"); sb.append(" accessId: ").append(toIndentedString(accessId)).append("\n"); + sb.append(" caseSensitive: ").append(toIndentedString(caseSensitive)).append("\n"); sb.append(" description: ").append(toIndentedString(description)).append("\n"); sb.append(" json: ").append(toIndentedString(json)).append("\n"); sb.append(" name: ").append(toIndentedString(name)).append("\n"); diff --git a/src/main/java/io/akeyless/client/model/GatewayCreateProducerOracleDb.java b/src/main/java/io/akeyless/client/model/GatewayCreateProducerOracleDb.java index 07578d34..a306cecd 100644 --- a/src/main/java/io/akeyless/client/model/GatewayCreateProducerOracleDb.java +++ b/src/main/java/io/akeyless/client/model/GatewayCreateProducerOracleDb.java @@ -64,6 +64,10 @@ public class GatewayCreateProducerOracleDb { @SerializedName(SERIALIZED_NAME_ORACLE_PORT) private String oraclePort = "1521"; + public static final String SERIALIZED_NAME_ORACLE_REVOCATION_STATEMENTS = "oracle-revocation-statements"; + @SerializedName(SERIALIZED_NAME_ORACLE_REVOCATION_STATEMENTS) + private String oracleRevocationStatements; + public static final String SERIALIZED_NAME_ORACLE_SCREATION_STATEMENTS = "oracle-screation-statements"; @SerializedName(SERIALIZED_NAME_ORACLE_SCREATION_STATEMENTS) private String oracleScreationStatements; @@ -303,6 +307,29 @@ public void setOraclePort(String oraclePort) { } + public GatewayCreateProducerOracleDb oracleRevocationStatements(String oracleRevocationStatements) { + + this.oracleRevocationStatements = oracleRevocationStatements; + return this; + } + + /** + * Oracle Revocation statements + * @return oracleRevocationStatements + **/ + @javax.annotation.Nullable + @ApiModelProperty(value = "Oracle Revocation statements") + + public String getOracleRevocationStatements() { + return oracleRevocationStatements; + } + + + public void setOracleRevocationStatements(String oracleRevocationStatements) { + this.oracleRevocationStatements = oracleRevocationStatements; + } + + public GatewayCreateProducerOracleDb oracleScreationStatements(String oracleScreationStatements) { this.oracleScreationStatements = oracleScreationStatements; @@ -635,6 +662,7 @@ public boolean equals(Object o) { Objects.equals(this.oracleHost, gatewayCreateProducerOracleDb.oracleHost) && Objects.equals(this.oraclePassword, gatewayCreateProducerOracleDb.oraclePassword) && Objects.equals(this.oraclePort, gatewayCreateProducerOracleDb.oraclePort) && + Objects.equals(this.oracleRevocationStatements, gatewayCreateProducerOracleDb.oracleRevocationStatements) && Objects.equals(this.oracleScreationStatements, gatewayCreateProducerOracleDb.oracleScreationStatements) && Objects.equals(this.oracleServiceName, gatewayCreateProducerOracleDb.oracleServiceName) && Objects.equals(this.oracleUsername, gatewayCreateProducerOracleDb.oracleUsername) && @@ -652,7 +680,7 @@ public boolean equals(Object o) { @Override public int hashCode() { - return Objects.hash(dbServerCertificates, dbServerName, deleteProtection, json, name, oracleHost, oraclePassword, oraclePort, oracleScreationStatements, oracleServiceName, oracleUsername, producerEncryptionKeyName, secureAccessBastionIssuer, secureAccessEnable, secureAccessHost, secureAccessWeb, tags, targetName, token, uidToken, userTtl); + return Objects.hash(dbServerCertificates, dbServerName, deleteProtection, json, name, oracleHost, oraclePassword, oraclePort, oracleRevocationStatements, oracleScreationStatements, oracleServiceName, oracleUsername, producerEncryptionKeyName, secureAccessBastionIssuer, secureAccessEnable, secureAccessHost, secureAccessWeb, tags, targetName, token, uidToken, userTtl); } @Override @@ -667,6 +695,7 @@ public String toString() { sb.append(" oracleHost: ").append(toIndentedString(oracleHost)).append("\n"); sb.append(" oraclePassword: ").append(toIndentedString(oraclePassword)).append("\n"); sb.append(" oraclePort: ").append(toIndentedString(oraclePort)).append("\n"); + sb.append(" oracleRevocationStatements: ").append(toIndentedString(oracleRevocationStatements)).append("\n"); sb.append(" oracleScreationStatements: ").append(toIndentedString(oracleScreationStatements)).append("\n"); sb.append(" oracleServiceName: ").append(toIndentedString(oracleServiceName)).append("\n"); sb.append(" oracleUsername: ").append(toIndentedString(oracleUsername)).append("\n"); diff --git a/src/main/java/io/akeyless/client/model/GatewayUpdateAllowedAccess.java b/src/main/java/io/akeyless/client/model/GatewayUpdateAllowedAccess.java index 46b9f32a..bd080238 100644 --- a/src/main/java/io/akeyless/client/model/GatewayUpdateAllowedAccess.java +++ b/src/main/java/io/akeyless/client/model/GatewayUpdateAllowedAccess.java @@ -33,10 +33,18 @@ @ApiModel(description = "gatewayUpdateAllowedAccess is a command that update allowed access in Gator") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") public class GatewayUpdateAllowedAccess { + public static final String SERIALIZED_NAME_SUB_CLAIMS_CASE_INSENSITIVE = "SubClaimsCaseInsensitive"; + @SerializedName(SERIALIZED_NAME_SUB_CLAIMS_CASE_INSENSITIVE) + private Boolean subClaimsCaseInsensitive; + public static final String SERIALIZED_NAME_ACCESS_ID = "access-id"; @SerializedName(SERIALIZED_NAME_ACCESS_ID) private String accessId; + public static final String SERIALIZED_NAME_CASE_SENSITIVE = "case-sensitive"; + @SerializedName(SERIALIZED_NAME_CASE_SENSITIVE) + private String caseSensitive = "true"; + public static final String SERIALIZED_NAME_DESCRIPTION = "description"; @SerializedName(SERIALIZED_NAME_DESCRIPTION) private String description; @@ -72,6 +80,29 @@ public class GatewayUpdateAllowedAccess { public GatewayUpdateAllowedAccess() { } + public GatewayUpdateAllowedAccess subClaimsCaseInsensitive(Boolean subClaimsCaseInsensitive) { + + this.subClaimsCaseInsensitive = subClaimsCaseInsensitive; + return this; + } + + /** + * Get subClaimsCaseInsensitive + * @return subClaimsCaseInsensitive + **/ + @javax.annotation.Nullable + @ApiModelProperty(value = "") + + public Boolean getSubClaimsCaseInsensitive() { + return subClaimsCaseInsensitive; + } + + + public void setSubClaimsCaseInsensitive(Boolean subClaimsCaseInsensitive) { + this.subClaimsCaseInsensitive = subClaimsCaseInsensitive; + } + + public GatewayUpdateAllowedAccess accessId(String accessId) { this.accessId = accessId; @@ -95,6 +126,29 @@ public void setAccessId(String accessId) { } + public GatewayUpdateAllowedAccess caseSensitive(String caseSensitive) { + + this.caseSensitive = caseSensitive; + return this; + } + + /** + * Treat sub claims as case-sensitive [true/false] + * @return caseSensitive + **/ + @javax.annotation.Nullable + @ApiModelProperty(value = "Treat sub claims as case-sensitive [true/false]") + + public String getCaseSensitive() { + return caseSensitive; + } + + + public void setCaseSensitive(String caseSensitive) { + this.caseSensitive = caseSensitive; + } + + public GatewayUpdateAllowedAccess description(String description) { this.description = description; @@ -296,7 +350,9 @@ public boolean equals(Object o) { return false; } GatewayUpdateAllowedAccess gatewayUpdateAllowedAccess = (GatewayUpdateAllowedAccess) o; - return Objects.equals(this.accessId, gatewayUpdateAllowedAccess.accessId) && + return Objects.equals(this.subClaimsCaseInsensitive, gatewayUpdateAllowedAccess.subClaimsCaseInsensitive) && + Objects.equals(this.accessId, gatewayUpdateAllowedAccess.accessId) && + Objects.equals(this.caseSensitive, gatewayUpdateAllowedAccess.caseSensitive) && Objects.equals(this.description, gatewayUpdateAllowedAccess.description) && Objects.equals(this.json, gatewayUpdateAllowedAccess.json) && Objects.equals(this.name, gatewayUpdateAllowedAccess.name) && @@ -309,14 +365,16 @@ public boolean equals(Object o) { @Override public int hashCode() { - return Objects.hash(accessId, description, json, name, newName, permissions, subClaims, token, uidToken); + return Objects.hash(subClaimsCaseInsensitive, accessId, caseSensitive, description, json, name, newName, permissions, subClaims, token, uidToken); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class GatewayUpdateAllowedAccess {\n"); + sb.append(" subClaimsCaseInsensitive: ").append(toIndentedString(subClaimsCaseInsensitive)).append("\n"); sb.append(" accessId: ").append(toIndentedString(accessId)).append("\n"); + sb.append(" caseSensitive: ").append(toIndentedString(caseSensitive)).append("\n"); sb.append(" description: ").append(toIndentedString(description)).append("\n"); sb.append(" json: ").append(toIndentedString(json)).append("\n"); sb.append(" name: ").append(toIndentedString(name)).append("\n"); diff --git a/src/main/java/io/akeyless/client/model/GatewayUpdateProducerOracleDb.java b/src/main/java/io/akeyless/client/model/GatewayUpdateProducerOracleDb.java index 5a49f7d2..066d1bcd 100644 --- a/src/main/java/io/akeyless/client/model/GatewayUpdateProducerOracleDb.java +++ b/src/main/java/io/akeyless/client/model/GatewayUpdateProducerOracleDb.java @@ -68,6 +68,10 @@ public class GatewayUpdateProducerOracleDb { @SerializedName(SERIALIZED_NAME_ORACLE_PORT) private String oraclePort = "1521"; + public static final String SERIALIZED_NAME_ORACLE_REVOCATION_STATEMENTS = "oracle-revocation-statements"; + @SerializedName(SERIALIZED_NAME_ORACLE_REVOCATION_STATEMENTS) + private String oracleRevocationStatements; + public static final String SERIALIZED_NAME_ORACLE_SCREATION_STATEMENTS = "oracle-screation-statements"; @SerializedName(SERIALIZED_NAME_ORACLE_SCREATION_STATEMENTS) private String oracleScreationStatements; @@ -330,6 +334,29 @@ public void setOraclePort(String oraclePort) { } + public GatewayUpdateProducerOracleDb oracleRevocationStatements(String oracleRevocationStatements) { + + this.oracleRevocationStatements = oracleRevocationStatements; + return this; + } + + /** + * Oracle Revocation statements + * @return oracleRevocationStatements + **/ + @javax.annotation.Nullable + @ApiModelProperty(value = "Oracle Revocation statements") + + public String getOracleRevocationStatements() { + return oracleRevocationStatements; + } + + + public void setOracleRevocationStatements(String oracleRevocationStatements) { + this.oracleRevocationStatements = oracleRevocationStatements; + } + + public GatewayUpdateProducerOracleDb oracleScreationStatements(String oracleScreationStatements) { this.oracleScreationStatements = oracleScreationStatements; @@ -663,6 +690,7 @@ public boolean equals(Object o) { Objects.equals(this.oracleHost, gatewayUpdateProducerOracleDb.oracleHost) && Objects.equals(this.oraclePassword, gatewayUpdateProducerOracleDb.oraclePassword) && Objects.equals(this.oraclePort, gatewayUpdateProducerOracleDb.oraclePort) && + Objects.equals(this.oracleRevocationStatements, gatewayUpdateProducerOracleDb.oracleRevocationStatements) && Objects.equals(this.oracleScreationStatements, gatewayUpdateProducerOracleDb.oracleScreationStatements) && Objects.equals(this.oracleServiceName, gatewayUpdateProducerOracleDb.oracleServiceName) && Objects.equals(this.oracleUsername, gatewayUpdateProducerOracleDb.oracleUsername) && @@ -680,7 +708,7 @@ public boolean equals(Object o) { @Override public int hashCode() { - return Objects.hash(dbServerCertificates, dbServerName, deleteProtection, json, name, newName, oracleHost, oraclePassword, oraclePort, oracleScreationStatements, oracleServiceName, oracleUsername, producerEncryptionKeyName, secureAccessBastionIssuer, secureAccessEnable, secureAccessHost, secureAccessWeb, tags, targetName, token, uidToken, userTtl); + return Objects.hash(dbServerCertificates, dbServerName, deleteProtection, json, name, newName, oracleHost, oraclePassword, oraclePort, oracleRevocationStatements, oracleScreationStatements, oracleServiceName, oracleUsername, producerEncryptionKeyName, secureAccessBastionIssuer, secureAccessEnable, secureAccessHost, secureAccessWeb, tags, targetName, token, uidToken, userTtl); } @Override @@ -696,6 +724,7 @@ public String toString() { sb.append(" oracleHost: ").append(toIndentedString(oracleHost)).append("\n"); sb.append(" oraclePassword: ").append(toIndentedString(oraclePassword)).append("\n"); sb.append(" oraclePort: ").append(toIndentedString(oraclePort)).append("\n"); + sb.append(" oracleRevocationStatements: ").append(toIndentedString(oracleRevocationStatements)).append("\n"); sb.append(" oracleScreationStatements: ").append(toIndentedString(oracleScreationStatements)).append("\n"); sb.append(" oracleServiceName: ").append(toIndentedString(oracleServiceName)).append("\n"); sb.append(" oracleUsername: ").append(toIndentedString(oracleUsername)).append("\n"); diff --git a/src/main/java/io/akeyless/client/model/ListItems.java b/src/main/java/io/akeyless/client/model/ListItems.java index 4426a50c..144b67fb 100644 --- a/src/main/java/io/akeyless/client/model/ListItems.java +++ b/src/main/java/io/akeyless/client/model/ListItems.java @@ -55,6 +55,10 @@ public class ListItems { @SerializedName(SERIALIZED_NAME_MINIMAL_VIEW) private Boolean minimalView; + public static final String SERIALIZED_NAME_MODIFIED_AFTER = "modified-after"; + @SerializedName(SERIALIZED_NAME_MODIFIED_AFTER) + private Long modifiedAfter; + public static final String SERIALIZED_NAME_PAGINATION_TOKEN = "pagination-token"; @SerializedName(SERIALIZED_NAME_PAGINATION_TOKEN) private String paginationToken; @@ -212,11 +216,11 @@ public ListItems minimalView(Boolean minimalView) { } /** - * Get minimalView + * Show only basic information of the items * @return minimalView **/ @javax.annotation.Nullable - @ApiModelProperty(value = "") + @ApiModelProperty(value = "Show only basic information of the items") public Boolean getMinimalView() { return minimalView; @@ -228,6 +232,29 @@ public void setMinimalView(Boolean minimalView) { } + public ListItems modifiedAfter(Long modifiedAfter) { + + this.modifiedAfter = modifiedAfter; + return this; + } + + /** + * List only secrets modified after specified date (in unix time) + * @return modifiedAfter + **/ + @javax.annotation.Nullable + @ApiModelProperty(value = "List only secrets modified after specified date (in unix time)") + + public Long getModifiedAfter() { + return modifiedAfter; + } + + + public void setModifiedAfter(Long modifiedAfter) { + this.modifiedAfter = modifiedAfter; + } + + public ListItems paginationToken(String paginationToken) { this.paginationToken = paginationToken; @@ -443,6 +470,7 @@ public boolean equals(Object o) { Objects.equals(this.filter, listItems.filter) && Objects.equals(this.json, listItems.json) && Objects.equals(this.minimalView, listItems.minimalView) && + Objects.equals(this.modifiedAfter, listItems.modifiedAfter) && Objects.equals(this.paginationToken, listItems.paginationToken) && Objects.equals(this.path, listItems.path) && Objects.equals(this.sraOnly, listItems.sraOnly) && @@ -455,7 +483,7 @@ public boolean equals(Object o) { @Override public int hashCode() { - return Objects.hash(accessibility, advancedFilter, autoPagination, filter, json, minimalView, paginationToken, path, sraOnly, subTypes, tag, token, type, uidToken); + return Objects.hash(accessibility, advancedFilter, autoPagination, filter, json, minimalView, modifiedAfter, paginationToken, path, sraOnly, subTypes, tag, token, type, uidToken); } @Override @@ -468,6 +496,7 @@ public String toString() { sb.append(" filter: ").append(toIndentedString(filter)).append("\n"); sb.append(" json: ").append(toIndentedString(json)).append("\n"); sb.append(" minimalView: ").append(toIndentedString(minimalView)).append("\n"); + sb.append(" modifiedAfter: ").append(toIndentedString(modifiedAfter)).append("\n"); sb.append(" paginationToken: ").append(toIndentedString(paginationToken)).append("\n"); sb.append(" path: ").append(toIndentedString(path)).append("\n"); sb.append(" sraOnly: ").append(toIndentedString(sraOnly)).append("\n"); diff --git a/src/main/java/io/akeyless/client/model/UscCreate.java b/src/main/java/io/akeyless/client/model/UscCreate.java new file mode 100644 index 00000000..d7b48450 --- /dev/null +++ b/src/main/java/io/akeyless/client/model/UscCreate.java @@ -0,0 +1,344 @@ +/* + * Akeyless API + * The purpose of this application is to provide access to Akeyless API. + * + * The version of the OpenAPI document: 2.0 + * Contact: support@akeyless.io + * + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). + * https://openapi-generator.tech + * Do not edit the class manually. + */ + + +package io.akeyless.client.model; + +import java.util.Objects; +import java.util.Arrays; +import com.google.gson.TypeAdapter; +import com.google.gson.annotations.JsonAdapter; +import com.google.gson.annotations.SerializedName; +import com.google.gson.stream.JsonReader; +import com.google.gson.stream.JsonWriter; +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import java.io.IOException; +import java.util.HashMap; +import java.util.List; +import java.util.Map; + +/** + * uscCreate is a command that creates a new secret in a Universal Secrets Connector + */ +@ApiModel(description = "uscCreate is a command that creates a new secret in a Universal Secrets Connector") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") +public class UscCreate { + public static final String SERIALIZED_NAME_BINARY_VALUE = "binary-value"; + @SerializedName(SERIALIZED_NAME_BINARY_VALUE) + private Boolean binaryValue; + + public static final String SERIALIZED_NAME_DESCRIPTION = "description"; + @SerializedName(SERIALIZED_NAME_DESCRIPTION) + private String description; + + public static final String SERIALIZED_NAME_JSON = "json"; + @SerializedName(SERIALIZED_NAME_JSON) + private Boolean json = false; + + public static final String SERIALIZED_NAME_SECRET_NAME = "secret-name"; + @SerializedName(SERIALIZED_NAME_SECRET_NAME) + private String secretName; + + public static final String SERIALIZED_NAME_TAGS = "tags"; + @SerializedName(SERIALIZED_NAME_TAGS) + private Map tags = null; + + public static final String SERIALIZED_NAME_TOKEN = "token"; + @SerializedName(SERIALIZED_NAME_TOKEN) + private String token; + + public static final String SERIALIZED_NAME_UID_TOKEN = "uid-token"; + @SerializedName(SERIALIZED_NAME_UID_TOKEN) + private String uidToken; + + public static final String SERIALIZED_NAME_USC_NAME = "usc-name"; + @SerializedName(SERIALIZED_NAME_USC_NAME) + private String uscName; + + public static final String SERIALIZED_NAME_VALUE = "value"; + @SerializedName(SERIALIZED_NAME_VALUE) + private String value; + + public UscCreate() { + } + + public UscCreate binaryValue(Boolean binaryValue) { + + this.binaryValue = binaryValue; + return this; + } + + /** + * Use this option if the universal secrets value is a base64 encoded binary + * @return binaryValue + **/ + @javax.annotation.Nullable + @ApiModelProperty(value = "Use this option if the universal secrets value is a base64 encoded binary") + + public Boolean getBinaryValue() { + return binaryValue; + } + + + public void setBinaryValue(Boolean binaryValue) { + this.binaryValue = binaryValue; + } + + + public UscCreate description(String description) { + + this.description = description; + return this; + } + + /** + * Description of the universal secrets + * @return description + **/ + @javax.annotation.Nullable + @ApiModelProperty(value = "Description of the universal secrets") + + public String getDescription() { + return description; + } + + + public void setDescription(String description) { + this.description = description; + } + + + public UscCreate json(Boolean json) { + + this.json = json; + return this; + } + + /** + * Set output format to JSON + * @return json + **/ + @javax.annotation.Nullable + @ApiModelProperty(value = "Set output format to JSON") + + public Boolean getJson() { + return json; + } + + + public void setJson(Boolean json) { + this.json = json; + } + + + public UscCreate secretName(String secretName) { + + this.secretName = secretName; + return this; + } + + /** + * Name for the new universal secrets + * @return secretName + **/ + @javax.annotation.Nonnull + @ApiModelProperty(required = true, value = "Name for the new universal secrets") + + public String getSecretName() { + return secretName; + } + + + public void setSecretName(String secretName) { + this.secretName = secretName; + } + + + public UscCreate tags(Map tags) { + + this.tags = tags; + return this; + } + + public UscCreate putTagsItem(String key, String tagsItem) { + if (this.tags == null) { + this.tags = new HashMap(); + } + this.tags.put(key, tagsItem); + return this; + } + + /** + * Tags for the universal secrets + * @return tags + **/ + @javax.annotation.Nullable + @ApiModelProperty(value = "Tags for the universal secrets") + + public Map getTags() { + return tags; + } + + + public void setTags(Map tags) { + this.tags = tags; + } + + + public UscCreate token(String token) { + + this.token = token; + return this; + } + + /** + * Authentication token (see `/auth` and `/configure`) + * @return token + **/ + @javax.annotation.Nullable + @ApiModelProperty(value = "Authentication token (see `/auth` and `/configure`)") + + public String getToken() { + return token; + } + + + public void setToken(String token) { + this.token = token; + } + + + public UscCreate uidToken(String uidToken) { + + this.uidToken = uidToken; + return this; + } + + /** + * The universal identity token, Required only for universal_identity authentication + * @return uidToken + **/ + @javax.annotation.Nullable + @ApiModelProperty(value = "The universal identity token, Required only for universal_identity authentication") + + public String getUidToken() { + return uidToken; + } + + + public void setUidToken(String uidToken) { + this.uidToken = uidToken; + } + + + public UscCreate uscName(String uscName) { + + this.uscName = uscName; + return this; + } + + /** + * Name of the Universal Secrets Connector item + * @return uscName + **/ + @javax.annotation.Nonnull + @ApiModelProperty(required = true, value = "Name of the Universal Secrets Connector item") + + public String getUscName() { + return uscName; + } + + + public void setUscName(String uscName) { + this.uscName = uscName; + } + + + public UscCreate value(String value) { + + this.value = value; + return this; + } + + /** + * Value of the universal secrets item, either text or base64 encoded binary + * @return value + **/ + @javax.annotation.Nonnull + @ApiModelProperty(required = true, value = "Value of the universal secrets item, either text or base64 encoded binary") + + public String getValue() { + return value; + } + + + public void setValue(String value) { + this.value = value; + } + + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (o == null || getClass() != o.getClass()) { + return false; + } + UscCreate uscCreate = (UscCreate) o; + return Objects.equals(this.binaryValue, uscCreate.binaryValue) && + Objects.equals(this.description, uscCreate.description) && + Objects.equals(this.json, uscCreate.json) && + Objects.equals(this.secretName, uscCreate.secretName) && + Objects.equals(this.tags, uscCreate.tags) && + Objects.equals(this.token, uscCreate.token) && + Objects.equals(this.uidToken, uscCreate.uidToken) && + Objects.equals(this.uscName, uscCreate.uscName) && + Objects.equals(this.value, uscCreate.value); + } + + @Override + public int hashCode() { + return Objects.hash(binaryValue, description, json, secretName, tags, token, uidToken, uscName, value); + } + + @Override + public String toString() { + StringBuilder sb = new StringBuilder(); + sb.append("class UscCreate {\n"); + sb.append(" binaryValue: ").append(toIndentedString(binaryValue)).append("\n"); + sb.append(" description: ").append(toIndentedString(description)).append("\n"); + sb.append(" json: ").append(toIndentedString(json)).append("\n"); + sb.append(" secretName: ").append(toIndentedString(secretName)).append("\n"); + sb.append(" tags: ").append(toIndentedString(tags)).append("\n"); + sb.append(" token: ").append(toIndentedString(token)).append("\n"); + sb.append(" uidToken: ").append(toIndentedString(uidToken)).append("\n"); + sb.append(" uscName: ").append(toIndentedString(uscName)).append("\n"); + sb.append(" value: ").append(toIndentedString(value)).append("\n"); + sb.append("}"); + return sb.toString(); + } + + /** + * Convert the given object to string with each line indented by 4 spaces + * (except the first line). + */ + private String toIndentedString(Object o) { + if (o == null) { + return "null"; + } + return o.toString().replace("\n", "\n "); + } + +} + diff --git a/src/main/java/io/akeyless/client/model/UscCreateSecretOutput.java b/src/main/java/io/akeyless/client/model/UscCreateSecretOutput.java new file mode 100644 index 00000000..8fb4f751 --- /dev/null +++ b/src/main/java/io/akeyless/client/model/UscCreateSecretOutput.java @@ -0,0 +1,129 @@ +/* + * Akeyless API + * The purpose of this application is to provide access to Akeyless API. + * + * The version of the OpenAPI document: 2.0 + * Contact: support@akeyless.io + * + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). + * https://openapi-generator.tech + * Do not edit the class manually. + */ + + +package io.akeyless.client.model; + +import java.util.Objects; +import java.util.Arrays; +import com.google.gson.TypeAdapter; +import com.google.gson.annotations.JsonAdapter; +import com.google.gson.annotations.SerializedName; +import com.google.gson.stream.JsonReader; +import com.google.gson.stream.JsonWriter; +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import java.io.IOException; + +/** + * UscCreateSecretOutput + */ +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") +public class UscCreateSecretOutput { + public static final String SERIALIZED_NAME_SECRET_ID = "secret_id"; + @SerializedName(SERIALIZED_NAME_SECRET_ID) + private String secretId; + + public static final String SERIALIZED_NAME_VERSION_ID = "version_id"; + @SerializedName(SERIALIZED_NAME_VERSION_ID) + private String versionId; + + public UscCreateSecretOutput() { + } + + public UscCreateSecretOutput secretId(String secretId) { + + this.secretId = secretId; + return this; + } + + /** + * Get secretId + * @return secretId + **/ + @javax.annotation.Nullable + @ApiModelProperty(value = "") + + public String getSecretId() { + return secretId; + } + + + public void setSecretId(String secretId) { + this.secretId = secretId; + } + + + public UscCreateSecretOutput versionId(String versionId) { + + this.versionId = versionId; + return this; + } + + /** + * Get versionId + * @return versionId + **/ + @javax.annotation.Nullable + @ApiModelProperty(value = "") + + public String getVersionId() { + return versionId; + } + + + public void setVersionId(String versionId) { + this.versionId = versionId; + } + + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (o == null || getClass() != o.getClass()) { + return false; + } + UscCreateSecretOutput uscCreateSecretOutput = (UscCreateSecretOutput) o; + return Objects.equals(this.secretId, uscCreateSecretOutput.secretId) && + Objects.equals(this.versionId, uscCreateSecretOutput.versionId); + } + + @Override + public int hashCode() { + return Objects.hash(secretId, versionId); + } + + @Override + public String toString() { + StringBuilder sb = new StringBuilder(); + sb.append("class UscCreateSecretOutput {\n"); + sb.append(" secretId: ").append(toIndentedString(secretId)).append("\n"); + sb.append(" versionId: ").append(toIndentedString(versionId)).append("\n"); + sb.append("}"); + return sb.toString(); + } + + /** + * Convert the given object to string with each line indented by 4 spaces + * (except the first line). + */ + private String toIndentedString(Object o) { + if (o == null) { + return "null"; + } + return o.toString().replace("\n", "\n "); + } + +} + diff --git a/src/main/java/io/akeyless/client/model/UscDelete.java b/src/main/java/io/akeyless/client/model/UscDelete.java new file mode 100644 index 00000000..a3969b67 --- /dev/null +++ b/src/main/java/io/akeyless/client/model/UscDelete.java @@ -0,0 +1,217 @@ +/* + * Akeyless API + * The purpose of this application is to provide access to Akeyless API. + * + * The version of the OpenAPI document: 2.0 + * Contact: support@akeyless.io + * + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). + * https://openapi-generator.tech + * Do not edit the class manually. + */ + + +package io.akeyless.client.model; + +import java.util.Objects; +import java.util.Arrays; +import com.google.gson.TypeAdapter; +import com.google.gson.annotations.JsonAdapter; +import com.google.gson.annotations.SerializedName; +import com.google.gson.stream.JsonReader; +import com.google.gson.stream.JsonWriter; +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import java.io.IOException; + +/** + * uscDelete is a command that deletes a secret from a Universal Secrets Connector + */ +@ApiModel(description = "uscDelete is a command that deletes a secret from a Universal Secrets Connector") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") +public class UscDelete { + public static final String SERIALIZED_NAME_JSON = "json"; + @SerializedName(SERIALIZED_NAME_JSON) + private Boolean json = false; + + public static final String SERIALIZED_NAME_SECRET_ID = "secret-id"; + @SerializedName(SERIALIZED_NAME_SECRET_ID) + private String secretId; + + public static final String SERIALIZED_NAME_TOKEN = "token"; + @SerializedName(SERIALIZED_NAME_TOKEN) + private String token; + + public static final String SERIALIZED_NAME_UID_TOKEN = "uid-token"; + @SerializedName(SERIALIZED_NAME_UID_TOKEN) + private String uidToken; + + public static final String SERIALIZED_NAME_USC_NAME = "usc-name"; + @SerializedName(SERIALIZED_NAME_USC_NAME) + private String uscName; + + public UscDelete() { + } + + public UscDelete json(Boolean json) { + + this.json = json; + return this; + } + + /** + * Set output format to JSON + * @return json + **/ + @javax.annotation.Nullable + @ApiModelProperty(value = "Set output format to JSON") + + public Boolean getJson() { + return json; + } + + + public void setJson(Boolean json) { + this.json = json; + } + + + public UscDelete secretId(String secretId) { + + this.secretId = secretId; + return this; + } + + /** + * The universal secrets id (or name, for AWS, Azure or K8s targets) to delete + * @return secretId + **/ + @javax.annotation.Nonnull + @ApiModelProperty(required = true, value = "The universal secrets id (or name, for AWS, Azure or K8s targets) to delete") + + public String getSecretId() { + return secretId; + } + + + public void setSecretId(String secretId) { + this.secretId = secretId; + } + + + public UscDelete token(String token) { + + this.token = token; + return this; + } + + /** + * Authentication token (see `/auth` and `/configure`) + * @return token + **/ + @javax.annotation.Nullable + @ApiModelProperty(value = "Authentication token (see `/auth` and `/configure`)") + + public String getToken() { + return token; + } + + + public void setToken(String token) { + this.token = token; + } + + + public UscDelete uidToken(String uidToken) { + + this.uidToken = uidToken; + return this; + } + + /** + * The universal identity token, Required only for universal_identity authentication + * @return uidToken + **/ + @javax.annotation.Nullable + @ApiModelProperty(value = "The universal identity token, Required only for universal_identity authentication") + + public String getUidToken() { + return uidToken; + } + + + public void setUidToken(String uidToken) { + this.uidToken = uidToken; + } + + + public UscDelete uscName(String uscName) { + + this.uscName = uscName; + return this; + } + + /** + * Name of the Universal Secrets Connector item + * @return uscName + **/ + @javax.annotation.Nonnull + @ApiModelProperty(required = true, value = "Name of the Universal Secrets Connector item") + + public String getUscName() { + return uscName; + } + + + public void setUscName(String uscName) { + this.uscName = uscName; + } + + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (o == null || getClass() != o.getClass()) { + return false; + } + UscDelete uscDelete = (UscDelete) o; + return Objects.equals(this.json, uscDelete.json) && + Objects.equals(this.secretId, uscDelete.secretId) && + Objects.equals(this.token, uscDelete.token) && + Objects.equals(this.uidToken, uscDelete.uidToken) && + Objects.equals(this.uscName, uscDelete.uscName); + } + + @Override + public int hashCode() { + return Objects.hash(json, secretId, token, uidToken, uscName); + } + + @Override + public String toString() { + StringBuilder sb = new StringBuilder(); + sb.append("class UscDelete {\n"); + sb.append(" json: ").append(toIndentedString(json)).append("\n"); + sb.append(" secretId: ").append(toIndentedString(secretId)).append("\n"); + sb.append(" token: ").append(toIndentedString(token)).append("\n"); + sb.append(" uidToken: ").append(toIndentedString(uidToken)).append("\n"); + sb.append(" uscName: ").append(toIndentedString(uscName)).append("\n"); + sb.append("}"); + return sb.toString(); + } + + /** + * Convert the given object to string with each line indented by 4 spaces + * (except the first line). + */ + private String toIndentedString(Object o) { + if (o == null) { + return "null"; + } + return o.toString().replace("\n", "\n "); + } + +} + diff --git a/src/main/java/io/akeyless/client/model/UscDeleteSecretOutput.java b/src/main/java/io/akeyless/client/model/UscDeleteSecretOutput.java new file mode 100644 index 00000000..79d175f0 --- /dev/null +++ b/src/main/java/io/akeyless/client/model/UscDeleteSecretOutput.java @@ -0,0 +1,100 @@ +/* + * Akeyless API + * The purpose of this application is to provide access to Akeyless API. + * + * The version of the OpenAPI document: 2.0 + * Contact: support@akeyless.io + * + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). + * https://openapi-generator.tech + * Do not edit the class manually. + */ + + +package io.akeyless.client.model; + +import java.util.Objects; +import java.util.Arrays; +import com.google.gson.TypeAdapter; +import com.google.gson.annotations.JsonAdapter; +import com.google.gson.annotations.SerializedName; +import com.google.gson.stream.JsonReader; +import com.google.gson.stream.JsonWriter; +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import java.io.IOException; + +/** + * UscDeleteSecretOutput + */ +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") +public class UscDeleteSecretOutput { + public static final String SERIALIZED_NAME_NAME = "name"; + @SerializedName(SERIALIZED_NAME_NAME) + private String name; + + public UscDeleteSecretOutput() { + } + + public UscDeleteSecretOutput name(String name) { + + this.name = name; + return this; + } + + /** + * Get name + * @return name + **/ + @javax.annotation.Nullable + @ApiModelProperty(value = "") + + public String getName() { + return name; + } + + + public void setName(String name) { + this.name = name; + } + + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (o == null || getClass() != o.getClass()) { + return false; + } + UscDeleteSecretOutput uscDeleteSecretOutput = (UscDeleteSecretOutput) o; + return Objects.equals(this.name, uscDeleteSecretOutput.name); + } + + @Override + public int hashCode() { + return Objects.hash(name); + } + + @Override + public String toString() { + StringBuilder sb = new StringBuilder(); + sb.append("class UscDeleteSecretOutput {\n"); + sb.append(" name: ").append(toIndentedString(name)).append("\n"); + sb.append("}"); + return sb.toString(); + } + + /** + * Convert the given object to string with each line indented by 4 spaces + * (except the first line). + */ + private String toIndentedString(Object o) { + if (o == null) { + return "null"; + } + return o.toString().replace("\n", "\n "); + } + +} + diff --git a/src/main/java/io/akeyless/client/model/UscGet.java b/src/main/java/io/akeyless/client/model/UscGet.java new file mode 100644 index 00000000..d257598b --- /dev/null +++ b/src/main/java/io/akeyless/client/model/UscGet.java @@ -0,0 +1,217 @@ +/* + * Akeyless API + * The purpose of this application is to provide access to Akeyless API. + * + * The version of the OpenAPI document: 2.0 + * Contact: support@akeyless.io + * + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). + * https://openapi-generator.tech + * Do not edit the class manually. + */ + + +package io.akeyless.client.model; + +import java.util.Objects; +import java.util.Arrays; +import com.google.gson.TypeAdapter; +import com.google.gson.annotations.JsonAdapter; +import com.google.gson.annotations.SerializedName; +import com.google.gson.stream.JsonReader; +import com.google.gson.stream.JsonWriter; +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import java.io.IOException; + +/** + * uscGet is a command that gets the value and internal details of a secret from a Universal Secrets Connector + */ +@ApiModel(description = "uscGet is a command that gets the value and internal details of a secret from a Universal Secrets Connector") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") +public class UscGet { + public static final String SERIALIZED_NAME_JSON = "json"; + @SerializedName(SERIALIZED_NAME_JSON) + private Boolean json = false; + + public static final String SERIALIZED_NAME_SECRET_ID = "secret-id"; + @SerializedName(SERIALIZED_NAME_SECRET_ID) + private String secretId; + + public static final String SERIALIZED_NAME_TOKEN = "token"; + @SerializedName(SERIALIZED_NAME_TOKEN) + private String token; + + public static final String SERIALIZED_NAME_UID_TOKEN = "uid-token"; + @SerializedName(SERIALIZED_NAME_UID_TOKEN) + private String uidToken; + + public static final String SERIALIZED_NAME_USC_NAME = "usc-name"; + @SerializedName(SERIALIZED_NAME_USC_NAME) + private String uscName; + + public UscGet() { + } + + public UscGet json(Boolean json) { + + this.json = json; + return this; + } + + /** + * Set output format to JSON + * @return json + **/ + @javax.annotation.Nullable + @ApiModelProperty(value = "Set output format to JSON") + + public Boolean getJson() { + return json; + } + + + public void setJson(Boolean json) { + this.json = json; + } + + + public UscGet secretId(String secretId) { + + this.secretId = secretId; + return this; + } + + /** + * The secret id (or name, for AWS, Azure or K8s targets) to get from the Universal Secrets Connector + * @return secretId + **/ + @javax.annotation.Nonnull + @ApiModelProperty(required = true, value = "The secret id (or name, for AWS, Azure or K8s targets) to get from the Universal Secrets Connector") + + public String getSecretId() { + return secretId; + } + + + public void setSecretId(String secretId) { + this.secretId = secretId; + } + + + public UscGet token(String token) { + + this.token = token; + return this; + } + + /** + * Authentication token (see `/auth` and `/configure`) + * @return token + **/ + @javax.annotation.Nullable + @ApiModelProperty(value = "Authentication token (see `/auth` and `/configure`)") + + public String getToken() { + return token; + } + + + public void setToken(String token) { + this.token = token; + } + + + public UscGet uidToken(String uidToken) { + + this.uidToken = uidToken; + return this; + } + + /** + * The universal identity token, Required only for universal_identity authentication + * @return uidToken + **/ + @javax.annotation.Nullable + @ApiModelProperty(value = "The universal identity token, Required only for universal_identity authentication") + + public String getUidToken() { + return uidToken; + } + + + public void setUidToken(String uidToken) { + this.uidToken = uidToken; + } + + + public UscGet uscName(String uscName) { + + this.uscName = uscName; + return this; + } + + /** + * Name of the Universal Secrets Connector item + * @return uscName + **/ + @javax.annotation.Nonnull + @ApiModelProperty(required = true, value = "Name of the Universal Secrets Connector item") + + public String getUscName() { + return uscName; + } + + + public void setUscName(String uscName) { + this.uscName = uscName; + } + + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (o == null || getClass() != o.getClass()) { + return false; + } + UscGet uscGet = (UscGet) o; + return Objects.equals(this.json, uscGet.json) && + Objects.equals(this.secretId, uscGet.secretId) && + Objects.equals(this.token, uscGet.token) && + Objects.equals(this.uidToken, uscGet.uidToken) && + Objects.equals(this.uscName, uscGet.uscName); + } + + @Override + public int hashCode() { + return Objects.hash(json, secretId, token, uidToken, uscName); + } + + @Override + public String toString() { + StringBuilder sb = new StringBuilder(); + sb.append("class UscGet {\n"); + sb.append(" json: ").append(toIndentedString(json)).append("\n"); + sb.append(" secretId: ").append(toIndentedString(secretId)).append("\n"); + sb.append(" token: ").append(toIndentedString(token)).append("\n"); + sb.append(" uidToken: ").append(toIndentedString(uidToken)).append("\n"); + sb.append(" uscName: ").append(toIndentedString(uscName)).append("\n"); + sb.append("}"); + return sb.toString(); + } + + /** + * Convert the given object to string with each line indented by 4 spaces + * (except the first line). + */ + private String toIndentedString(Object o) { + if (o == null) { + return "null"; + } + return o.toString().replace("\n", "\n "); + } + +} + diff --git a/src/main/java/io/akeyless/client/model/UscGetSecretOutput.java b/src/main/java/io/akeyless/client/model/UscGetSecretOutput.java new file mode 100644 index 00000000..39664d27 --- /dev/null +++ b/src/main/java/io/akeyless/client/model/UscGetSecretOutput.java @@ -0,0 +1,187 @@ +/* + * Akeyless API + * The purpose of this application is to provide access to Akeyless API. + * + * The version of the OpenAPI document: 2.0 + * Contact: support@akeyless.io + * + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). + * https://openapi-generator.tech + * Do not edit the class manually. + */ + + +package io.akeyless.client.model; + +import java.util.Objects; +import java.util.Arrays; +import com.google.gson.TypeAdapter; +import com.google.gson.annotations.JsonAdapter; +import com.google.gson.annotations.SerializedName; +import com.google.gson.stream.JsonReader; +import com.google.gson.stream.JsonWriter; +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import java.io.IOException; + +/** + * UscGetSecretOutput + */ +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") +public class UscGetSecretOutput { + public static final String SERIALIZED_NAME_BINARY_VALUE = "binary_value"; + @SerializedName(SERIALIZED_NAME_BINARY_VALUE) + private Boolean binaryValue; + + public static final String SERIALIZED_NAME_METADATA = "metadata"; + @SerializedName(SERIALIZED_NAME_METADATA) + private Object metadata; + + public static final String SERIALIZED_NAME_NAME = "name"; + @SerializedName(SERIALIZED_NAME_NAME) + private String name; + + public static final String SERIALIZED_NAME_VALUE = "value"; + @SerializedName(SERIALIZED_NAME_VALUE) + private String value; + + public UscGetSecretOutput() { + } + + public UscGetSecretOutput binaryValue(Boolean binaryValue) { + + this.binaryValue = binaryValue; + return this; + } + + /** + * Get binaryValue + * @return binaryValue + **/ + @javax.annotation.Nullable + @ApiModelProperty(value = "") + + public Boolean getBinaryValue() { + return binaryValue; + } + + + public void setBinaryValue(Boolean binaryValue) { + this.binaryValue = binaryValue; + } + + + public UscGetSecretOutput metadata(Object metadata) { + + this.metadata = metadata; + return this; + } + + /** + * Get metadata + * @return metadata + **/ + @javax.annotation.Nullable + @ApiModelProperty(value = "") + + public Object getMetadata() { + return metadata; + } + + + public void setMetadata(Object metadata) { + this.metadata = metadata; + } + + + public UscGetSecretOutput name(String name) { + + this.name = name; + return this; + } + + /** + * Get name + * @return name + **/ + @javax.annotation.Nullable + @ApiModelProperty(value = "") + + public String getName() { + return name; + } + + + public void setName(String name) { + this.name = name; + } + + + public UscGetSecretOutput value(String value) { + + this.value = value; + return this; + } + + /** + * Get value + * @return value + **/ + @javax.annotation.Nullable + @ApiModelProperty(value = "") + + public String getValue() { + return value; + } + + + public void setValue(String value) { + this.value = value; + } + + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (o == null || getClass() != o.getClass()) { + return false; + } + UscGetSecretOutput uscGetSecretOutput = (UscGetSecretOutput) o; + return Objects.equals(this.binaryValue, uscGetSecretOutput.binaryValue) && + Objects.equals(this.metadata, uscGetSecretOutput.metadata) && + Objects.equals(this.name, uscGetSecretOutput.name) && + Objects.equals(this.value, uscGetSecretOutput.value); + } + + @Override + public int hashCode() { + return Objects.hash(binaryValue, metadata, name, value); + } + + @Override + public String toString() { + StringBuilder sb = new StringBuilder(); + sb.append("class UscGetSecretOutput {\n"); + sb.append(" binaryValue: ").append(toIndentedString(binaryValue)).append("\n"); + sb.append(" metadata: ").append(toIndentedString(metadata)).append("\n"); + sb.append(" name: ").append(toIndentedString(name)).append("\n"); + sb.append(" value: ").append(toIndentedString(value)).append("\n"); + sb.append("}"); + return sb.toString(); + } + + /** + * Convert the given object to string with each line indented by 4 spaces + * (except the first line). + */ + private String toIndentedString(Object o) { + if (o == null) { + return "null"; + } + return o.toString().replace("\n", "\n "); + } + +} + diff --git a/src/main/java/io/akeyless/client/model/UscList.java b/src/main/java/io/akeyless/client/model/UscList.java new file mode 100644 index 00000000..896f2abd --- /dev/null +++ b/src/main/java/io/akeyless/client/model/UscList.java @@ -0,0 +1,188 @@ +/* + * Akeyless API + * The purpose of this application is to provide access to Akeyless API. + * + * The version of the OpenAPI document: 2.0 + * Contact: support@akeyless.io + * + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). + * https://openapi-generator.tech + * Do not edit the class manually. + */ + + +package io.akeyless.client.model; + +import java.util.Objects; +import java.util.Arrays; +import com.google.gson.TypeAdapter; +import com.google.gson.annotations.JsonAdapter; +import com.google.gson.annotations.SerializedName; +import com.google.gson.stream.JsonReader; +import com.google.gson.stream.JsonWriter; +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import java.io.IOException; + +/** + * uscList is a command that lists the secrets of a Universal Secrets Connector + */ +@ApiModel(description = "uscList is a command that lists the secrets of a Universal Secrets Connector") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") +public class UscList { + public static final String SERIALIZED_NAME_JSON = "json"; + @SerializedName(SERIALIZED_NAME_JSON) + private Boolean json = false; + + public static final String SERIALIZED_NAME_TOKEN = "token"; + @SerializedName(SERIALIZED_NAME_TOKEN) + private String token; + + public static final String SERIALIZED_NAME_UID_TOKEN = "uid-token"; + @SerializedName(SERIALIZED_NAME_UID_TOKEN) + private String uidToken; + + public static final String SERIALIZED_NAME_USC_NAME = "usc-name"; + @SerializedName(SERIALIZED_NAME_USC_NAME) + private String uscName; + + public UscList() { + } + + public UscList json(Boolean json) { + + this.json = json; + return this; + } + + /** + * Set output format to JSON + * @return json + **/ + @javax.annotation.Nullable + @ApiModelProperty(value = "Set output format to JSON") + + public Boolean getJson() { + return json; + } + + + public void setJson(Boolean json) { + this.json = json; + } + + + public UscList token(String token) { + + this.token = token; + return this; + } + + /** + * Authentication token (see `/auth` and `/configure`) + * @return token + **/ + @javax.annotation.Nullable + @ApiModelProperty(value = "Authentication token (see `/auth` and `/configure`)") + + public String getToken() { + return token; + } + + + public void setToken(String token) { + this.token = token; + } + + + public UscList uidToken(String uidToken) { + + this.uidToken = uidToken; + return this; + } + + /** + * The universal identity token, Required only for universal_identity authentication + * @return uidToken + **/ + @javax.annotation.Nullable + @ApiModelProperty(value = "The universal identity token, Required only for universal_identity authentication") + + public String getUidToken() { + return uidToken; + } + + + public void setUidToken(String uidToken) { + this.uidToken = uidToken; + } + + + public UscList uscName(String uscName) { + + this.uscName = uscName; + return this; + } + + /** + * Name of the Universal Secrets Connector item + * @return uscName + **/ + @javax.annotation.Nonnull + @ApiModelProperty(required = true, value = "Name of the Universal Secrets Connector item") + + public String getUscName() { + return uscName; + } + + + public void setUscName(String uscName) { + this.uscName = uscName; + } + + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (o == null || getClass() != o.getClass()) { + return false; + } + UscList uscList = (UscList) o; + return Objects.equals(this.json, uscList.json) && + Objects.equals(this.token, uscList.token) && + Objects.equals(this.uidToken, uscList.uidToken) && + Objects.equals(this.uscName, uscList.uscName); + } + + @Override + public int hashCode() { + return Objects.hash(json, token, uidToken, uscName); + } + + @Override + public String toString() { + StringBuilder sb = new StringBuilder(); + sb.append("class UscList {\n"); + sb.append(" json: ").append(toIndentedString(json)).append("\n"); + sb.append(" token: ").append(toIndentedString(token)).append("\n"); + sb.append(" uidToken: ").append(toIndentedString(uidToken)).append("\n"); + sb.append(" uscName: ").append(toIndentedString(uscName)).append("\n"); + sb.append("}"); + return sb.toString(); + } + + /** + * Convert the given object to string with each line indented by 4 spaces + * (except the first line). + */ + private String toIndentedString(Object o) { + if (o == null) { + return "null"; + } + return o.toString().replace("\n", "\n "); + } + +} + diff --git a/src/main/java/io/akeyless/client/model/UscListSecretsOutput.java b/src/main/java/io/akeyless/client/model/UscListSecretsOutput.java new file mode 100644 index 00000000..1b243904 --- /dev/null +++ b/src/main/java/io/akeyless/client/model/UscListSecretsOutput.java @@ -0,0 +1,111 @@ +/* + * Akeyless API + * The purpose of this application is to provide access to Akeyless API. + * + * The version of the OpenAPI document: 2.0 + * Contact: support@akeyless.io + * + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). + * https://openapi-generator.tech + * Do not edit the class manually. + */ + + +package io.akeyless.client.model; + +import java.util.Objects; +import java.util.Arrays; +import com.google.gson.TypeAdapter; +import com.google.gson.annotations.JsonAdapter; +import com.google.gson.annotations.SerializedName; +import com.google.gson.stream.JsonReader; +import com.google.gson.stream.JsonWriter; +import io.akeyless.client.model.SecretInfo; +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import java.io.IOException; +import java.util.ArrayList; +import java.util.List; + +/** + * UscListSecretsOutput + */ +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") +public class UscListSecretsOutput { + public static final String SERIALIZED_NAME_SECRETS_LIST = "secrets_list"; + @SerializedName(SERIALIZED_NAME_SECRETS_LIST) + private List secretsList = null; + + public UscListSecretsOutput() { + } + + public UscListSecretsOutput secretsList(List secretsList) { + + this.secretsList = secretsList; + return this; + } + + public UscListSecretsOutput addSecretsListItem(SecretInfo secretsListItem) { + if (this.secretsList == null) { + this.secretsList = new ArrayList(); + } + this.secretsList.add(secretsListItem); + return this; + } + + /** + * Get secretsList + * @return secretsList + **/ + @javax.annotation.Nullable + @ApiModelProperty(value = "") + + public List getSecretsList() { + return secretsList; + } + + + public void setSecretsList(List secretsList) { + this.secretsList = secretsList; + } + + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (o == null || getClass() != o.getClass()) { + return false; + } + UscListSecretsOutput uscListSecretsOutput = (UscListSecretsOutput) o; + return Objects.equals(this.secretsList, uscListSecretsOutput.secretsList); + } + + @Override + public int hashCode() { + return Objects.hash(secretsList); + } + + @Override + public String toString() { + StringBuilder sb = new StringBuilder(); + sb.append("class UscListSecretsOutput {\n"); + sb.append(" secretsList: ").append(toIndentedString(secretsList)).append("\n"); + sb.append("}"); + return sb.toString(); + } + + /** + * Convert the given object to string with each line indented by 4 spaces + * (except the first line). + */ + private String toIndentedString(Object o) { + if (o == null) { + return "null"; + } + return o.toString().replace("\n", "\n "); + } + +} + diff --git a/src/main/java/io/akeyless/client/model/UscUpdate.java b/src/main/java/io/akeyless/client/model/UscUpdate.java new file mode 100644 index 00000000..404fce78 --- /dev/null +++ b/src/main/java/io/akeyless/client/model/UscUpdate.java @@ -0,0 +1,344 @@ +/* + * Akeyless API + * The purpose of this application is to provide access to Akeyless API. + * + * The version of the OpenAPI document: 2.0 + * Contact: support@akeyless.io + * + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). + * https://openapi-generator.tech + * Do not edit the class manually. + */ + + +package io.akeyless.client.model; + +import java.util.Objects; +import java.util.Arrays; +import com.google.gson.TypeAdapter; +import com.google.gson.annotations.JsonAdapter; +import com.google.gson.annotations.SerializedName; +import com.google.gson.stream.JsonReader; +import com.google.gson.stream.JsonWriter; +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import java.io.IOException; +import java.util.HashMap; +import java.util.List; +import java.util.Map; + +/** + * uscUpdate is a command that updates a secret in a Universal Secrets Connector + */ +@ApiModel(description = "uscUpdate is a command that updates a secret in a Universal Secrets Connector") +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") +public class UscUpdate { + public static final String SERIALIZED_NAME_BINARY_VALUE = "binary-value"; + @SerializedName(SERIALIZED_NAME_BINARY_VALUE) + private Boolean binaryValue; + + public static final String SERIALIZED_NAME_DESCRIPTION = "description"; + @SerializedName(SERIALIZED_NAME_DESCRIPTION) + private String description; + + public static final String SERIALIZED_NAME_JSON = "json"; + @SerializedName(SERIALIZED_NAME_JSON) + private Boolean json = false; + + public static final String SERIALIZED_NAME_SECRET_ID = "secret-id"; + @SerializedName(SERIALIZED_NAME_SECRET_ID) + private String secretId; + + public static final String SERIALIZED_NAME_TAGS = "tags"; + @SerializedName(SERIALIZED_NAME_TAGS) + private Map tags = null; + + public static final String SERIALIZED_NAME_TOKEN = "token"; + @SerializedName(SERIALIZED_NAME_TOKEN) + private String token; + + public static final String SERIALIZED_NAME_UID_TOKEN = "uid-token"; + @SerializedName(SERIALIZED_NAME_UID_TOKEN) + private String uidToken; + + public static final String SERIALIZED_NAME_USC_NAME = "usc-name"; + @SerializedName(SERIALIZED_NAME_USC_NAME) + private String uscName; + + public static final String SERIALIZED_NAME_VALUE = "value"; + @SerializedName(SERIALIZED_NAME_VALUE) + private String value; + + public UscUpdate() { + } + + public UscUpdate binaryValue(Boolean binaryValue) { + + this.binaryValue = binaryValue; + return this; + } + + /** + * Use this option if the universal secrets value is a base64 encoded binary + * @return binaryValue + **/ + @javax.annotation.Nullable + @ApiModelProperty(value = "Use this option if the universal secrets value is a base64 encoded binary") + + public Boolean getBinaryValue() { + return binaryValue; + } + + + public void setBinaryValue(Boolean binaryValue) { + this.binaryValue = binaryValue; + } + + + public UscUpdate description(String description) { + + this.description = description; + return this; + } + + /** + * Description of the universal secrets + * @return description + **/ + @javax.annotation.Nullable + @ApiModelProperty(value = "Description of the universal secrets") + + public String getDescription() { + return description; + } + + + public void setDescription(String description) { + this.description = description; + } + + + public UscUpdate json(Boolean json) { + + this.json = json; + return this; + } + + /** + * Set output format to JSON + * @return json + **/ + @javax.annotation.Nullable + @ApiModelProperty(value = "Set output format to JSON") + + public Boolean getJson() { + return json; + } + + + public void setJson(Boolean json) { + this.json = json; + } + + + public UscUpdate secretId(String secretId) { + + this.secretId = secretId; + return this; + } + + /** + * The universal secrets id (or name, for AWS, Azure or K8s targets) to update + * @return secretId + **/ + @javax.annotation.Nonnull + @ApiModelProperty(required = true, value = "The universal secrets id (or name, for AWS, Azure or K8s targets) to update") + + public String getSecretId() { + return secretId; + } + + + public void setSecretId(String secretId) { + this.secretId = secretId; + } + + + public UscUpdate tags(Map tags) { + + this.tags = tags; + return this; + } + + public UscUpdate putTagsItem(String key, String tagsItem) { + if (this.tags == null) { + this.tags = new HashMap(); + } + this.tags.put(key, tagsItem); + return this; + } + + /** + * Tags for the universal secrets + * @return tags + **/ + @javax.annotation.Nullable + @ApiModelProperty(value = "Tags for the universal secrets") + + public Map getTags() { + return tags; + } + + + public void setTags(Map tags) { + this.tags = tags; + } + + + public UscUpdate token(String token) { + + this.token = token; + return this; + } + + /** + * Authentication token (see `/auth` and `/configure`) + * @return token + **/ + @javax.annotation.Nullable + @ApiModelProperty(value = "Authentication token (see `/auth` and `/configure`)") + + public String getToken() { + return token; + } + + + public void setToken(String token) { + this.token = token; + } + + + public UscUpdate uidToken(String uidToken) { + + this.uidToken = uidToken; + return this; + } + + /** + * The universal identity token, Required only for universal_identity authentication + * @return uidToken + **/ + @javax.annotation.Nullable + @ApiModelProperty(value = "The universal identity token, Required only for universal_identity authentication") + + public String getUidToken() { + return uidToken; + } + + + public void setUidToken(String uidToken) { + this.uidToken = uidToken; + } + + + public UscUpdate uscName(String uscName) { + + this.uscName = uscName; + return this; + } + + /** + * Name of the Universal Secrets Connector item + * @return uscName + **/ + @javax.annotation.Nonnull + @ApiModelProperty(required = true, value = "Name of the Universal Secrets Connector item") + + public String getUscName() { + return uscName; + } + + + public void setUscName(String uscName) { + this.uscName = uscName; + } + + + public UscUpdate value(String value) { + + this.value = value; + return this; + } + + /** + * Value of the universal secrets item, either text or base64 encoded binary + * @return value + **/ + @javax.annotation.Nonnull + @ApiModelProperty(required = true, value = "Value of the universal secrets item, either text or base64 encoded binary") + + public String getValue() { + return value; + } + + + public void setValue(String value) { + this.value = value; + } + + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (o == null || getClass() != o.getClass()) { + return false; + } + UscUpdate uscUpdate = (UscUpdate) o; + return Objects.equals(this.binaryValue, uscUpdate.binaryValue) && + Objects.equals(this.description, uscUpdate.description) && + Objects.equals(this.json, uscUpdate.json) && + Objects.equals(this.secretId, uscUpdate.secretId) && + Objects.equals(this.tags, uscUpdate.tags) && + Objects.equals(this.token, uscUpdate.token) && + Objects.equals(this.uidToken, uscUpdate.uidToken) && + Objects.equals(this.uscName, uscUpdate.uscName) && + Objects.equals(this.value, uscUpdate.value); + } + + @Override + public int hashCode() { + return Objects.hash(binaryValue, description, json, secretId, tags, token, uidToken, uscName, value); + } + + @Override + public String toString() { + StringBuilder sb = new StringBuilder(); + sb.append("class UscUpdate {\n"); + sb.append(" binaryValue: ").append(toIndentedString(binaryValue)).append("\n"); + sb.append(" description: ").append(toIndentedString(description)).append("\n"); + sb.append(" json: ").append(toIndentedString(json)).append("\n"); + sb.append(" secretId: ").append(toIndentedString(secretId)).append("\n"); + sb.append(" tags: ").append(toIndentedString(tags)).append("\n"); + sb.append(" token: ").append(toIndentedString(token)).append("\n"); + sb.append(" uidToken: ").append(toIndentedString(uidToken)).append("\n"); + sb.append(" uscName: ").append(toIndentedString(uscName)).append("\n"); + sb.append(" value: ").append(toIndentedString(value)).append("\n"); + sb.append("}"); + return sb.toString(); + } + + /** + * Convert the given object to string with each line indented by 4 spaces + * (except the first line). + */ + private String toIndentedString(Object o) { + if (o == null) { + return "null"; + } + return o.toString().replace("\n", "\n "); + } + +} + diff --git a/src/main/java/io/akeyless/client/model/UscUpdateSecretOutput.java b/src/main/java/io/akeyless/client/model/UscUpdateSecretOutput.java new file mode 100644 index 00000000..03f63db1 --- /dev/null +++ b/src/main/java/io/akeyless/client/model/UscUpdateSecretOutput.java @@ -0,0 +1,158 @@ +/* + * Akeyless API + * The purpose of this application is to provide access to Akeyless API. + * + * The version of the OpenAPI document: 2.0 + * Contact: support@akeyless.io + * + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). + * https://openapi-generator.tech + * Do not edit the class manually. + */ + + +package io.akeyless.client.model; + +import java.util.Objects; +import java.util.Arrays; +import com.google.gson.TypeAdapter; +import com.google.gson.annotations.JsonAdapter; +import com.google.gson.annotations.SerializedName; +import com.google.gson.stream.JsonReader; +import com.google.gson.stream.JsonWriter; +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import java.io.IOException; + +/** + * UscUpdateSecretOutput + */ +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") +public class UscUpdateSecretOutput { + public static final String SERIALIZED_NAME_NAME = "name"; + @SerializedName(SERIALIZED_NAME_NAME) + private String name; + + public static final String SERIALIZED_NAME_SECRET_ID = "secret_id"; + @SerializedName(SERIALIZED_NAME_SECRET_ID) + private String secretId; + + public static final String SERIALIZED_NAME_VERSION_ID = "version_id"; + @SerializedName(SERIALIZED_NAME_VERSION_ID) + private String versionId; + + public UscUpdateSecretOutput() { + } + + public UscUpdateSecretOutput name(String name) { + + this.name = name; + return this; + } + + /** + * Get name + * @return name + **/ + @javax.annotation.Nullable + @ApiModelProperty(value = "") + + public String getName() { + return name; + } + + + public void setName(String name) { + this.name = name; + } + + + public UscUpdateSecretOutput secretId(String secretId) { + + this.secretId = secretId; + return this; + } + + /** + * Get secretId + * @return secretId + **/ + @javax.annotation.Nullable + @ApiModelProperty(value = "") + + public String getSecretId() { + return secretId; + } + + + public void setSecretId(String secretId) { + this.secretId = secretId; + } + + + public UscUpdateSecretOutput versionId(String versionId) { + + this.versionId = versionId; + return this; + } + + /** + * Get versionId + * @return versionId + **/ + @javax.annotation.Nullable + @ApiModelProperty(value = "") + + public String getVersionId() { + return versionId; + } + + + public void setVersionId(String versionId) { + this.versionId = versionId; + } + + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (o == null || getClass() != o.getClass()) { + return false; + } + UscUpdateSecretOutput uscUpdateSecretOutput = (UscUpdateSecretOutput) o; + return Objects.equals(this.name, uscUpdateSecretOutput.name) && + Objects.equals(this.secretId, uscUpdateSecretOutput.secretId) && + Objects.equals(this.versionId, uscUpdateSecretOutput.versionId); + } + + @Override + public int hashCode() { + return Objects.hash(name, secretId, versionId); + } + + @Override + public String toString() { + StringBuilder sb = new StringBuilder(); + sb.append("class UscUpdateSecretOutput {\n"); + sb.append(" name: ").append(toIndentedString(name)).append("\n"); + sb.append(" secretId: ").append(toIndentedString(secretId)).append("\n"); + sb.append(" versionId: ").append(toIndentedString(versionId)).append("\n"); + sb.append("}"); + return sb.toString(); + } + + /** + * Convert the given object to string with each line indented by 4 spaces + * (except the first line). + */ + private String toIndentedString(Object o) { + if (o == null) { + return "null"; + } + return o.toString().replace("\n", "\n "); + } + +} + diff --git a/src/test/java/io/akeyless/client/model/CreateUSCOutputTest.java b/src/test/java/io/akeyless/client/model/CreateUSCOutputTest.java new file mode 100644 index 00000000..536f98f5 --- /dev/null +++ b/src/test/java/io/akeyless/client/model/CreateUSCOutputTest.java @@ -0,0 +1,59 @@ +/* + * Akeyless API + * The purpose of this application is to provide access to Akeyless API. + * + * The version of the OpenAPI document: 2.0 + * Contact: support@akeyless.io + * + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). + * https://openapi-generator.tech + * Do not edit the class manually. + */ + + +package io.akeyless.client.model; + +import com.google.gson.TypeAdapter; +import com.google.gson.annotations.JsonAdapter; +import com.google.gson.annotations.SerializedName; +import com.google.gson.stream.JsonReader; +import com.google.gson.stream.JsonWriter; +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import java.io.IOException; +import org.junit.Assert; +import org.junit.Ignore; +import org.junit.Test; + + +/** + * Model tests for CreateUSCOutput + */ +public class CreateUSCOutputTest { + private final CreateUSCOutput model = new CreateUSCOutput(); + + /** + * Model tests for CreateUSCOutput + */ + @Test + public void testCreateUSCOutput() { + // TODO: test CreateUSCOutput + } + + /** + * Test the property 'universalSecretsConnectorId' + */ + @Test + public void universalSecretsConnectorIdTest() { + // TODO: test universalSecretsConnectorId + } + + /** + * Test the property 'universalSecretsConnectorName' + */ + @Test + public void universalSecretsConnectorNameTest() { + // TODO: test universalSecretsConnectorName + } + +} diff --git a/src/test/java/io/akeyless/client/model/CreateUSCTest.java b/src/test/java/io/akeyless/client/model/CreateUSCTest.java new file mode 100644 index 00000000..1d9ba09a --- /dev/null +++ b/src/test/java/io/akeyless/client/model/CreateUSCTest.java @@ -0,0 +1,125 @@ +/* + * Akeyless API + * The purpose of this application is to provide access to Akeyless API. + * + * The version of the OpenAPI document: 2.0 + * Contact: support@akeyless.io + * + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). + * https://openapi-generator.tech + * Do not edit the class manually. + */ + + +package io.akeyless.client.model; + +import com.google.gson.TypeAdapter; +import com.google.gson.annotations.JsonAdapter; +import com.google.gson.annotations.SerializedName; +import com.google.gson.stream.JsonReader; +import com.google.gson.stream.JsonWriter; +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import java.io.IOException; +import java.util.ArrayList; +import java.util.List; +import org.junit.Assert; +import org.junit.Ignore; +import org.junit.Test; + + +/** + * Model tests for CreateUSC + */ +public class CreateUSCTest { + private final CreateUSC model = new CreateUSC(); + + /** + * Model tests for CreateUSC + */ + @Test + public void testCreateUSC() { + // TODO: test CreateUSC + } + + /** + * Test the property 'azureKvName' + */ + @Test + public void azureKvNameTest() { + // TODO: test azureKvName + } + + /** + * Test the property 'deleteProtection' + */ + @Test + public void deleteProtectionTest() { + // TODO: test deleteProtection + } + + /** + * Test the property 'description' + */ + @Test + public void descriptionTest() { + // TODO: test description + } + + /** + * Test the property 'json' + */ + @Test + public void jsonTest() { + // TODO: test json + } + + /** + * Test the property 'k8sNamespace' + */ + @Test + public void k8sNamespaceTest() { + // TODO: test k8sNamespace + } + + /** + * Test the property 'name' + */ + @Test + public void nameTest() { + // TODO: test name + } + + /** + * Test the property 'tags' + */ + @Test + public void tagsTest() { + // TODO: test tags + } + + /** + * Test the property 'targetToAssociate' + */ + @Test + public void targetToAssociateTest() { + // TODO: test targetToAssociate + } + + /** + * Test the property 'token' + */ + @Test + public void tokenTest() { + // TODO: test token + } + + /** + * Test the property 'uidToken' + */ + @Test + public void uidTokenTest() { + // TODO: test uidToken + } + +} diff --git a/src/test/java/io/akeyless/client/model/UscCreateSecretOutputTest.java b/src/test/java/io/akeyless/client/model/UscCreateSecretOutputTest.java new file mode 100644 index 00000000..15a25857 --- /dev/null +++ b/src/test/java/io/akeyless/client/model/UscCreateSecretOutputTest.java @@ -0,0 +1,59 @@ +/* + * Akeyless API + * The purpose of this application is to provide access to Akeyless API. + * + * The version of the OpenAPI document: 2.0 + * Contact: support@akeyless.io + * + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). + * https://openapi-generator.tech + * Do not edit the class manually. + */ + + +package io.akeyless.client.model; + +import com.google.gson.TypeAdapter; +import com.google.gson.annotations.JsonAdapter; +import com.google.gson.annotations.SerializedName; +import com.google.gson.stream.JsonReader; +import com.google.gson.stream.JsonWriter; +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import java.io.IOException; +import org.junit.Assert; +import org.junit.Ignore; +import org.junit.Test; + + +/** + * Model tests for UscCreateSecretOutput + */ +public class UscCreateSecretOutputTest { + private final UscCreateSecretOutput model = new UscCreateSecretOutput(); + + /** + * Model tests for UscCreateSecretOutput + */ + @Test + public void testUscCreateSecretOutput() { + // TODO: test UscCreateSecretOutput + } + + /** + * Test the property 'secretId' + */ + @Test + public void secretIdTest() { + // TODO: test secretId + } + + /** + * Test the property 'versionId' + */ + @Test + public void versionIdTest() { + // TODO: test versionId + } + +} diff --git a/src/test/java/io/akeyless/client/model/UscCreateTest.java b/src/test/java/io/akeyless/client/model/UscCreateTest.java new file mode 100644 index 00000000..96102c89 --- /dev/null +++ b/src/test/java/io/akeyless/client/model/UscCreateTest.java @@ -0,0 +1,118 @@ +/* + * Akeyless API + * The purpose of this application is to provide access to Akeyless API. + * + * The version of the OpenAPI document: 2.0 + * Contact: support@akeyless.io + * + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). + * https://openapi-generator.tech + * Do not edit the class manually. + */ + + +package io.akeyless.client.model; + +import com.google.gson.TypeAdapter; +import com.google.gson.annotations.JsonAdapter; +import com.google.gson.annotations.SerializedName; +import com.google.gson.stream.JsonReader; +import com.google.gson.stream.JsonWriter; +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import java.io.IOException; +import java.util.HashMap; +import java.util.List; +import java.util.Map; +import org.junit.Assert; +import org.junit.Ignore; +import org.junit.Test; + + +/** + * Model tests for UscCreate + */ +public class UscCreateTest { + private final UscCreate model = new UscCreate(); + + /** + * Model tests for UscCreate + */ + @Test + public void testUscCreate() { + // TODO: test UscCreate + } + + /** + * Test the property 'binaryValue' + */ + @Test + public void binaryValueTest() { + // TODO: test binaryValue + } + + /** + * Test the property 'description' + */ + @Test + public void descriptionTest() { + // TODO: test description + } + + /** + * Test the property 'json' + */ + @Test + public void jsonTest() { + // TODO: test json + } + + /** + * Test the property 'secretName' + */ + @Test + public void secretNameTest() { + // TODO: test secretName + } + + /** + * Test the property 'tags' + */ + @Test + public void tagsTest() { + // TODO: test tags + } + + /** + * Test the property 'token' + */ + @Test + public void tokenTest() { + // TODO: test token + } + + /** + * Test the property 'uidToken' + */ + @Test + public void uidTokenTest() { + // TODO: test uidToken + } + + /** + * Test the property 'uscName' + */ + @Test + public void uscNameTest() { + // TODO: test uscName + } + + /** + * Test the property 'value' + */ + @Test + public void valueTest() { + // TODO: test value + } + +} diff --git a/src/test/java/io/akeyless/client/model/UscDeleteSecretOutputTest.java b/src/test/java/io/akeyless/client/model/UscDeleteSecretOutputTest.java new file mode 100644 index 00000000..b6aa60d4 --- /dev/null +++ b/src/test/java/io/akeyless/client/model/UscDeleteSecretOutputTest.java @@ -0,0 +1,51 @@ +/* + * Akeyless API + * The purpose of this application is to provide access to Akeyless API. + * + * The version of the OpenAPI document: 2.0 + * Contact: support@akeyless.io + * + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). + * https://openapi-generator.tech + * Do not edit the class manually. + */ + + +package io.akeyless.client.model; + +import com.google.gson.TypeAdapter; +import com.google.gson.annotations.JsonAdapter; +import com.google.gson.annotations.SerializedName; +import com.google.gson.stream.JsonReader; +import com.google.gson.stream.JsonWriter; +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import java.io.IOException; +import org.junit.Assert; +import org.junit.Ignore; +import org.junit.Test; + + +/** + * Model tests for UscDeleteSecretOutput + */ +public class UscDeleteSecretOutputTest { + private final UscDeleteSecretOutput model = new UscDeleteSecretOutput(); + + /** + * Model tests for UscDeleteSecretOutput + */ + @Test + public void testUscDeleteSecretOutput() { + // TODO: test UscDeleteSecretOutput + } + + /** + * Test the property 'name' + */ + @Test + public void nameTest() { + // TODO: test name + } + +} diff --git a/src/test/java/io/akeyless/client/model/UscDeleteTest.java b/src/test/java/io/akeyless/client/model/UscDeleteTest.java new file mode 100644 index 00000000..dd8cf177 --- /dev/null +++ b/src/test/java/io/akeyless/client/model/UscDeleteTest.java @@ -0,0 +1,83 @@ +/* + * Akeyless API + * The purpose of this application is to provide access to Akeyless API. + * + * The version of the OpenAPI document: 2.0 + * Contact: support@akeyless.io + * + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). + * https://openapi-generator.tech + * Do not edit the class manually. + */ + + +package io.akeyless.client.model; + +import com.google.gson.TypeAdapter; +import com.google.gson.annotations.JsonAdapter; +import com.google.gson.annotations.SerializedName; +import com.google.gson.stream.JsonReader; +import com.google.gson.stream.JsonWriter; +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import java.io.IOException; +import org.junit.Assert; +import org.junit.Ignore; +import org.junit.Test; + + +/** + * Model tests for UscDelete + */ +public class UscDeleteTest { + private final UscDelete model = new UscDelete(); + + /** + * Model tests for UscDelete + */ + @Test + public void testUscDelete() { + // TODO: test UscDelete + } + + /** + * Test the property 'json' + */ + @Test + public void jsonTest() { + // TODO: test json + } + + /** + * Test the property 'secretId' + */ + @Test + public void secretIdTest() { + // TODO: test secretId + } + + /** + * Test the property 'token' + */ + @Test + public void tokenTest() { + // TODO: test token + } + + /** + * Test the property 'uidToken' + */ + @Test + public void uidTokenTest() { + // TODO: test uidToken + } + + /** + * Test the property 'uscName' + */ + @Test + public void uscNameTest() { + // TODO: test uscName + } + +} diff --git a/src/test/java/io/akeyless/client/model/UscGetSecretOutputTest.java b/src/test/java/io/akeyless/client/model/UscGetSecretOutputTest.java new file mode 100644 index 00000000..e9042d09 --- /dev/null +++ b/src/test/java/io/akeyless/client/model/UscGetSecretOutputTest.java @@ -0,0 +1,75 @@ +/* + * Akeyless API + * The purpose of this application is to provide access to Akeyless API. + * + * The version of the OpenAPI document: 2.0 + * Contact: support@akeyless.io + * + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). + * https://openapi-generator.tech + * Do not edit the class manually. + */ + + +package io.akeyless.client.model; + +import com.google.gson.TypeAdapter; +import com.google.gson.annotations.JsonAdapter; +import com.google.gson.annotations.SerializedName; +import com.google.gson.stream.JsonReader; +import com.google.gson.stream.JsonWriter; +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import java.io.IOException; +import org.junit.Assert; +import org.junit.Ignore; +import org.junit.Test; + + +/** + * Model tests for UscGetSecretOutput + */ +public class UscGetSecretOutputTest { + private final UscGetSecretOutput model = new UscGetSecretOutput(); + + /** + * Model tests for UscGetSecretOutput + */ + @Test + public void testUscGetSecretOutput() { + // TODO: test UscGetSecretOutput + } + + /** + * Test the property 'binaryValue' + */ + @Test + public void binaryValueTest() { + // TODO: test binaryValue + } + + /** + * Test the property 'metadata' + */ + @Test + public void metadataTest() { + // TODO: test metadata + } + + /** + * Test the property 'name' + */ + @Test + public void nameTest() { + // TODO: test name + } + + /** + * Test the property 'value' + */ + @Test + public void valueTest() { + // TODO: test value + } + +} diff --git a/src/test/java/io/akeyless/client/model/UscGetTest.java b/src/test/java/io/akeyless/client/model/UscGetTest.java new file mode 100644 index 00000000..df4d0140 --- /dev/null +++ b/src/test/java/io/akeyless/client/model/UscGetTest.java @@ -0,0 +1,83 @@ +/* + * Akeyless API + * The purpose of this application is to provide access to Akeyless API. + * + * The version of the OpenAPI document: 2.0 + * Contact: support@akeyless.io + * + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). + * https://openapi-generator.tech + * Do not edit the class manually. + */ + + +package io.akeyless.client.model; + +import com.google.gson.TypeAdapter; +import com.google.gson.annotations.JsonAdapter; +import com.google.gson.annotations.SerializedName; +import com.google.gson.stream.JsonReader; +import com.google.gson.stream.JsonWriter; +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import java.io.IOException; +import org.junit.Assert; +import org.junit.Ignore; +import org.junit.Test; + + +/** + * Model tests for UscGet + */ +public class UscGetTest { + private final UscGet model = new UscGet(); + + /** + * Model tests for UscGet + */ + @Test + public void testUscGet() { + // TODO: test UscGet + } + + /** + * Test the property 'json' + */ + @Test + public void jsonTest() { + // TODO: test json + } + + /** + * Test the property 'secretId' + */ + @Test + public void secretIdTest() { + // TODO: test secretId + } + + /** + * Test the property 'token' + */ + @Test + public void tokenTest() { + // TODO: test token + } + + /** + * Test the property 'uidToken' + */ + @Test + public void uidTokenTest() { + // TODO: test uidToken + } + + /** + * Test the property 'uscName' + */ + @Test + public void uscNameTest() { + // TODO: test uscName + } + +} diff --git a/src/test/java/io/akeyless/client/model/UscListSecretsOutputTest.java b/src/test/java/io/akeyless/client/model/UscListSecretsOutputTest.java new file mode 100644 index 00000000..ea9b65ff --- /dev/null +++ b/src/test/java/io/akeyless/client/model/UscListSecretsOutputTest.java @@ -0,0 +1,54 @@ +/* + * Akeyless API + * The purpose of this application is to provide access to Akeyless API. + * + * The version of the OpenAPI document: 2.0 + * Contact: support@akeyless.io + * + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). + * https://openapi-generator.tech + * Do not edit the class manually. + */ + + +package io.akeyless.client.model; + +import com.google.gson.TypeAdapter; +import com.google.gson.annotations.JsonAdapter; +import com.google.gson.annotations.SerializedName; +import com.google.gson.stream.JsonReader; +import com.google.gson.stream.JsonWriter; +import io.akeyless.client.model.SecretInfo; +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import java.io.IOException; +import java.util.ArrayList; +import java.util.List; +import org.junit.Assert; +import org.junit.Ignore; +import org.junit.Test; + + +/** + * Model tests for UscListSecretsOutput + */ +public class UscListSecretsOutputTest { + private final UscListSecretsOutput model = new UscListSecretsOutput(); + + /** + * Model tests for UscListSecretsOutput + */ + @Test + public void testUscListSecretsOutput() { + // TODO: test UscListSecretsOutput + } + + /** + * Test the property 'secretsList' + */ + @Test + public void secretsListTest() { + // TODO: test secretsList + } + +} diff --git a/src/test/java/io/akeyless/client/model/UscListTest.java b/src/test/java/io/akeyless/client/model/UscListTest.java new file mode 100644 index 00000000..8395fdcf --- /dev/null +++ b/src/test/java/io/akeyless/client/model/UscListTest.java @@ -0,0 +1,75 @@ +/* + * Akeyless API + * The purpose of this application is to provide access to Akeyless API. + * + * The version of the OpenAPI document: 2.0 + * Contact: support@akeyless.io + * + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). + * https://openapi-generator.tech + * Do not edit the class manually. + */ + + +package io.akeyless.client.model; + +import com.google.gson.TypeAdapter; +import com.google.gson.annotations.JsonAdapter; +import com.google.gson.annotations.SerializedName; +import com.google.gson.stream.JsonReader; +import com.google.gson.stream.JsonWriter; +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import java.io.IOException; +import org.junit.Assert; +import org.junit.Ignore; +import org.junit.Test; + + +/** + * Model tests for UscList + */ +public class UscListTest { + private final UscList model = new UscList(); + + /** + * Model tests for UscList + */ + @Test + public void testUscList() { + // TODO: test UscList + } + + /** + * Test the property 'json' + */ + @Test + public void jsonTest() { + // TODO: test json + } + + /** + * Test the property 'token' + */ + @Test + public void tokenTest() { + // TODO: test token + } + + /** + * Test the property 'uidToken' + */ + @Test + public void uidTokenTest() { + // TODO: test uidToken + } + + /** + * Test the property 'uscName' + */ + @Test + public void uscNameTest() { + // TODO: test uscName + } + +} diff --git a/src/test/java/io/akeyless/client/model/UscUpdateSecretOutputTest.java b/src/test/java/io/akeyless/client/model/UscUpdateSecretOutputTest.java new file mode 100644 index 00000000..5706e135 --- /dev/null +++ b/src/test/java/io/akeyless/client/model/UscUpdateSecretOutputTest.java @@ -0,0 +1,67 @@ +/* + * Akeyless API + * The purpose of this application is to provide access to Akeyless API. + * + * The version of the OpenAPI document: 2.0 + * Contact: support@akeyless.io + * + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). + * https://openapi-generator.tech + * Do not edit the class manually. + */ + + +package io.akeyless.client.model; + +import com.google.gson.TypeAdapter; +import com.google.gson.annotations.JsonAdapter; +import com.google.gson.annotations.SerializedName; +import com.google.gson.stream.JsonReader; +import com.google.gson.stream.JsonWriter; +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import java.io.IOException; +import org.junit.Assert; +import org.junit.Ignore; +import org.junit.Test; + + +/** + * Model tests for UscUpdateSecretOutput + */ +public class UscUpdateSecretOutputTest { + private final UscUpdateSecretOutput model = new UscUpdateSecretOutput(); + + /** + * Model tests for UscUpdateSecretOutput + */ + @Test + public void testUscUpdateSecretOutput() { + // TODO: test UscUpdateSecretOutput + } + + /** + * Test the property 'name' + */ + @Test + public void nameTest() { + // TODO: test name + } + + /** + * Test the property 'secretId' + */ + @Test + public void secretIdTest() { + // TODO: test secretId + } + + /** + * Test the property 'versionId' + */ + @Test + public void versionIdTest() { + // TODO: test versionId + } + +} diff --git a/src/test/java/io/akeyless/client/model/UscUpdateTest.java b/src/test/java/io/akeyless/client/model/UscUpdateTest.java new file mode 100644 index 00000000..5bf0e80c --- /dev/null +++ b/src/test/java/io/akeyless/client/model/UscUpdateTest.java @@ -0,0 +1,118 @@ +/* + * Akeyless API + * The purpose of this application is to provide access to Akeyless API. + * + * The version of the OpenAPI document: 2.0 + * Contact: support@akeyless.io + * + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). + * https://openapi-generator.tech + * Do not edit the class manually. + */ + + +package io.akeyless.client.model; + +import com.google.gson.TypeAdapter; +import com.google.gson.annotations.JsonAdapter; +import com.google.gson.annotations.SerializedName; +import com.google.gson.stream.JsonReader; +import com.google.gson.stream.JsonWriter; +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import java.io.IOException; +import java.util.HashMap; +import java.util.List; +import java.util.Map; +import org.junit.Assert; +import org.junit.Ignore; +import org.junit.Test; + + +/** + * Model tests for UscUpdate + */ +public class UscUpdateTest { + private final UscUpdate model = new UscUpdate(); + + /** + * Model tests for UscUpdate + */ + @Test + public void testUscUpdate() { + // TODO: test UscUpdate + } + + /** + * Test the property 'binaryValue' + */ + @Test + public void binaryValueTest() { + // TODO: test binaryValue + } + + /** + * Test the property 'description' + */ + @Test + public void descriptionTest() { + // TODO: test description + } + + /** + * Test the property 'json' + */ + @Test + public void jsonTest() { + // TODO: test json + } + + /** + * Test the property 'secretId' + */ + @Test + public void secretIdTest() { + // TODO: test secretId + } + + /** + * Test the property 'tags' + */ + @Test + public void tagsTest() { + // TODO: test tags + } + + /** + * Test the property 'token' + */ + @Test + public void tokenTest() { + // TODO: test token + } + + /** + * Test the property 'uidToken' + */ + @Test + public void uidTokenTest() { + // TODO: test uidToken + } + + /** + * Test the property 'uscName' + */ + @Test + public void uscNameTest() { + // TODO: test uscName + } + + /** + * Test the property 'value' + */ + @Test + public void valueTest() { + // TODO: test value + } + +}