Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PR for release-0.99201.1475 #107

Merged
merged 1 commit into from
Sep 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 10 additions & 12 deletions res/administration-apis.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ info:
license:
name: Apache License, Version 2.0
url: https://www.apache.org/licenses/LICENSE-2.0
version: 0.99201.1474
version: 0.99201.1475
paths:
/v1/admin/capabilities:
get:
Expand Down Expand Up @@ -2625,8 +2625,7 @@ paths:
- Projects
summary: Import committed changes into a project
description: |-
*
Import a ZIP file that contains a list of committed changes into a draft project. The file must be an export from `POST /v1alpha/admin/production-versions`. Use this API after making changes in a development environment to copy the changes to a draft project in your production environment.
Import a ZIP file that contains a list of committed changes into a draft project. The file must be an export from `POST /v1alpha/admin/production-versions`. Use this API after making changes in a development environment to copy the changes to a draft project in your production environment.

<br>**Note:** <em>This API is in **alpha**. While in alpha, APIs may change in a breaking way without notice; functionality may be removed, and no deprecation notices will be issued.
If you are interested in using this API, please contact your Customer Success Manager (CSM).</em>
Expand Down Expand Up @@ -2661,18 +2660,17 @@ paths:
put:
tags:
- Sources
summary: Import a ZIP file that contains a list of sources
summary: Import a list of sources
description: |-
*
Import a ZIP file that contains a list of sources. The file must be an export from `POST /v1alpha/admin/sources`. Use this API after making changes in a development environment to copy the changes to a draft project in your production environment.
Import a list of sources in ZIP format. The file must be an export from `POST /v1alpha/admin/sources`. Use this API after making changes in a development environment to copy the changes to a draft project in your production environment.

<br>**Note:** <em>This API is in **alpha**. While in alpha, APIs may change in a breaking way without notice; functionality may be removed, and no deprecation notices will be issued.
If you are interested in using this API, please contact your Customer Success Manager (CSM).</em>
operationId: Sources_PutSources
parameters:
- name: replaceAllExistingSources
in: query
description: '`false` if the sources from the ZIP archive should be added to the sources in the target tenant. `true` if all sources in the target tenant should be removed while importing the ZIP archive.'
description: If `false`, adds the sources from the ZIP to the sources in the target tenant. If `true`, removes all sources in the target tenant and adds the sources from the ZIP. Default is `false`.
schema:
type: boolean
requestBody:
Expand All @@ -2695,9 +2693,9 @@ paths:
post:
tags:
- Sources
summary: Perform an operation on the collection of all sources
summary: Perform an operation on all sources
description: |-
Perform operations on the collection of sources. The following operations are supported:
Perform operations on all sources. The following operations are supported:
* `exportSources`: Export a ZIP file that contains a list of all sources in the application.

<br>**Note:** <em>This API is in **alpha**. While in alpha, APIs may change in a breaking way without notice; functionality may be removed, and no deprecation notices will be issued.
Expand Down Expand Up @@ -4940,11 +4938,11 @@ components:
format: int32
ignored:
type: integer
description: The number of imported sources that already existed and were ignored in the target tenant.
description: The number of imported sources that already existed and were unchanged in the target tenant.
format: int32
deleted:
type: integer
description: The number of imported sources that existed in the target tenant prior to the import, and were deleted during the import.
description: The number of imported sources that existed in the target tenant prior to the import and were deleted during the import.
format: int32
SourcesAPIOperationRequestDTO:
type: object
Expand All @@ -4964,7 +4962,7 @@ components:
summary:
allOf:
- $ref: '#/components/schemas/SourceImportResultSummaryDTO'
description: A summary of the changes made to the sources during the PUT operation.
description: The changes made to the sources during the operation.
StaticDimensionFilterDTO:
type: object
properties:
Expand Down
2 changes: 1 addition & 1 deletion res/analytic-model-apis.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ info:
license:
name: Apache License, Version 2.0
url: https://www.apache.org/licenses/LICENSE-2.0
version: 0.99201.1474
version: 0.99201.1475
paths:
/v1/admin/calculation-concepts:
get:
Expand Down
2 changes: 1 addition & 1 deletion res/authentication-apis.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ info:
license:
name: Apache License, Version 2.0
url: https://www.apache.org/licenses/LICENSE-2.0
version: 0.99201.1474
version: 0.99201.1475
paths:
/v1/auth/oauth2/userinfo:
get:
Expand Down
33 changes: 21 additions & 12 deletions res/data-in-apis.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ info:
license:
name: Apache License, Version 2.0
url: https://www.apache.org/licenses/LICENSE-2.0
version: 0.99201.1474
version: 0.99201.1475
paths:
/v1/data/directloads/{draftId}/configs:
get:
Expand Down Expand Up @@ -101,7 +101,7 @@ paths:
content:
application/json:
schema:
$ref: '#/components/schemas/DirectDataSchemaFieldDTO'
$ref: '#/components/schemas/DirectDataSchemaDTO'
default:
description: Default error response
content:
Expand Down Expand Up @@ -1381,16 +1381,16 @@ paths:
required: true
schema:
type: string
requestBody:
content:
multipart/form-data:
schema:
type: object
properties:
file:
type: string
format: binary
description: The file to upload
requestBody:
content:
multipart/form-data:
schema:
type: object
properties:
file:
type: string
format: binary
description: The file to upload
responses:
"200":
description: OK
Expand Down Expand Up @@ -1989,6 +1989,15 @@ components:
- $ref: '#/components/schemas/DirectDataJobConfigDTO'
description: The direct data intake job configuration.
description: The configuration for the direct data intake, such as the direct data intake job type.
DirectDataSchemaDTO:
type: object
properties:
schema:
type: array
items:
$ref: '#/components/schemas/DirectDataSchemaFieldDTO'
description: The schema definition for loading a specific object
description: Public API Direct Intake schema response object
DirectDataSchemaFieldDTO:
type: object
properties:
Expand Down
4 changes: 2 additions & 2 deletions res/data-out-apis.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ info:
license:
name: Apache License, Version 2.0
url: https://www.apache.org/licenses/LICENSE-2.0
version: 0.99201.1474
version: 0.99201.1475
paths:
/v1/data/query/aggregate:
post:
Expand Down Expand Up @@ -237,7 +237,7 @@ paths:
content:
application/json:
schema:
$ref: '#/components/schemas/DataVersionExportsDTO'
$ref: '#/components/schemas/DataVersionExportDTO'
default:
description: Default error response
content:
Expand Down