@coscine/api-client 3.6.0 → 3.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +1281 -993
- package/dist/types/Coscine.Api/@coscine/api/admin-api.d.ts +63 -0
- package/dist/types/Coscine.Api/@coscine/api/application-profile-api.d.ts +16 -16
- package/dist/types/Coscine.Api/@coscine/api/blob-api.d.ts +16 -16
- package/dist/types/Coscine.Api/@coscine/api/discipline-api.d.ts +8 -8
- package/dist/types/Coscine.Api/@coscine/api/handle-api.d.ts +4 -4
- package/dist/types/Coscine.Api/@coscine/api/language-api.d.ts +8 -8
- package/dist/types/Coscine.Api/@coscine/api/license-api.d.ts +8 -8
- package/dist/types/Coscine.Api/@coscine/api/maintenance-api.d.ts +4 -4
- package/dist/types/Coscine.Api/@coscine/api/organization-api.d.ts +8 -8
- package/dist/types/Coscine.Api/@coscine/api/pid-api.d.ts +8 -8
- package/dist/types/Coscine.Api/@coscine/api/project-api.d.ts +30 -22
- package/dist/types/Coscine.Api/@coscine/api/project-invitation-api.d.ts +16 -16
- package/dist/types/Coscine.Api/@coscine/api/project-member-api.d.ts +20 -20
- package/dist/types/Coscine.Api/@coscine/api/project-publication-request-api.d.ts +4 -4
- package/dist/types/Coscine.Api/@coscine/api/project-quota-api.d.ts +12 -12
- package/dist/types/Coscine.Api/@coscine/api/project-resource-api.d.ts +20 -20
- package/dist/types/Coscine.Api/@coscine/api/project-resource-quota-api.d.ts +4 -4
- package/dist/types/Coscine.Api/@coscine/api/project-resource-type-api.d.ts +4 -4
- package/dist/types/Coscine.Api/@coscine/api/provenance-api.d.ts +228 -0
- package/dist/types/Coscine.Api/@coscine/api/resource-api.d.ts +4 -4
- package/dist/types/Coscine.Api/@coscine/api/resource-type-api.d.ts +20 -20
- package/dist/types/Coscine.Api/@coscine/api/role-api.d.ts +8 -8
- package/dist/types/Coscine.Api/@coscine/api/search-api.d.ts +4 -4
- package/dist/types/Coscine.Api/@coscine/api/self-api-token-api.d.ts +16 -16
- package/dist/types/Coscine.Api/@coscine/api/self-api.d.ts +24 -24
- package/dist/types/Coscine.Api/@coscine/api/title-api.d.ts +8 -8
- package/dist/types/Coscine.Api/@coscine/api/tos-api.d.ts +4 -4
- package/dist/types/Coscine.Api/@coscine/api/tree-api.d.ts +228 -23
- package/dist/types/Coscine.Api/@coscine/api/user-api.d.ts +4 -4
- package/dist/types/Coscine.Api/@coscine/api/visibility-api.d.ts +8 -8
- package/dist/types/Coscine.Api/@coscine/api/vocabulary-api.d.ts +8 -8
- package/dist/types/Coscine.Api/@coscine/model/deployed-graph-dto-paged-response.d.ts +50 -0
- package/dist/types/Coscine.Api/@coscine/model/deployed-graph-dto.d.ts +30 -0
- package/dist/types/Coscine.Api/@coscine/model/extracted-metadata-tree-for-creation-dto.d.ts +44 -0
- package/dist/types/Coscine.Api/@coscine/model/extracted-metadata-tree-for-update-dto.d.ts +50 -0
- package/dist/types/Coscine.Api/@coscine/model/hash-parameters-dto.d.ts +30 -0
- package/dist/types/Coscine.Api/@coscine/model/index.d.ts +11 -0
- package/dist/types/Coscine.Api/@coscine/model/metadata-tree-dto.d.ts +13 -0
- package/dist/types/Coscine.Api/@coscine/model/metadata-tree-for-deletion-dto.d.ts +36 -0
- package/dist/types/Coscine.Api/@coscine/model/provenance-dto-response.d.ts +43 -0
- package/dist/types/Coscine.Api/@coscine/model/provenance-dto.d.ts +62 -0
- package/dist/types/Coscine.Api/@coscine/model/provenance-for-update-dto.d.ts +62 -0
- package/dist/types/Coscine.Api/@coscine/model/provenance-parameters-dto.d.ts +56 -0
- package/dist/types/Coscine.Api/@coscine/model/rdf-format.d.ts +1 -0
- package/dist/types/Coscine.Api/@coscine/model/resource-admin-dto.d.ts +13 -0
- package/dist/types/Coscine.Api/@coscine/model/resource-dto.d.ts +13 -0
- package/dist/types/Coscine.Api/@coscine/model/variant-dto.d.ts +30 -0
- package/dist/types/Coscine.Api/api.d.ts +1 -0
- package/dist/types/apis.d.ts +8 -0
- package/dist/types/index.d.ts +16 -0
- package/package.json +1 -1
|
@@ -22,7 +22,7 @@ import { ProjectRoleForProjectManipulationDto } from '../../@coscine/model';
|
|
|
22
22
|
*/
|
|
23
23
|
export declare const ProjectMemberApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
24
24
|
/**
|
|
25
|
-
*
|
|
25
|
+
*
|
|
26
26
|
* @summary Creates a project membership for a specified project.
|
|
27
27
|
* @param {string} projectId The Id or slug of the project.
|
|
28
28
|
* @param {ProjectRoleForProjectCreationDto} [projectRoleForProjectCreationDto] The project membership data for creation.
|
|
@@ -39,7 +39,7 @@ export declare const ProjectMemberApiAxiosParamCreator: (configuration?: Configu
|
|
|
39
39
|
*/
|
|
40
40
|
apiV2ProjectsProjectIdMembersOptions: (projectId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
41
41
|
/**
|
|
42
|
-
*
|
|
42
|
+
*
|
|
43
43
|
* @summary Deletes a project membership for a specified project.
|
|
44
44
|
* @param {string} projectId The Id or slug of the project.
|
|
45
45
|
* @param {string} membershipId The ID of the project membership to delete.
|
|
@@ -48,7 +48,7 @@ export declare const ProjectMemberApiAxiosParamCreator: (configuration?: Configu
|
|
|
48
48
|
*/
|
|
49
49
|
deleteMembership: (projectId: string, membershipId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
50
50
|
/**
|
|
51
|
-
*
|
|
51
|
+
*
|
|
52
52
|
* @summary Retrieves a project membership for a specified project.
|
|
53
53
|
* @param {string} projectId The Id or slug of the project.
|
|
54
54
|
* @param {string} membershipId The ID of the project membership to retrieve.
|
|
@@ -57,7 +57,7 @@ export declare const ProjectMemberApiAxiosParamCreator: (configuration?: Configu
|
|
|
57
57
|
*/
|
|
58
58
|
getMembership: (projectId: string, membershipId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
59
59
|
/**
|
|
60
|
-
*
|
|
60
|
+
*
|
|
61
61
|
* @summary Retrieves all project memberships for a specified project.
|
|
62
62
|
* @param {string} projectId The Id or slug of the project.
|
|
63
63
|
* @param {number} [pageNumber] The desired page number. Should be greater than or equal to 1. Default is 1.
|
|
@@ -68,7 +68,7 @@ export declare const ProjectMemberApiAxiosParamCreator: (configuration?: Configu
|
|
|
68
68
|
*/
|
|
69
69
|
getMemberships: (projectId: string, pageNumber?: number, pageSize?: number, orderBy?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
70
70
|
/**
|
|
71
|
-
*
|
|
71
|
+
*
|
|
72
72
|
* @summary Updates a project membership for a specified project.
|
|
73
73
|
* @param {string} projectId The Id or slug of the project.
|
|
74
74
|
* @param {string} membershipId The ID of the project membership to update.
|
|
@@ -84,7 +84,7 @@ export declare const ProjectMemberApiAxiosParamCreator: (configuration?: Configu
|
|
|
84
84
|
*/
|
|
85
85
|
export declare const ProjectMemberApiFp: (configuration?: Configuration) => {
|
|
86
86
|
/**
|
|
87
|
-
*
|
|
87
|
+
*
|
|
88
88
|
* @summary Creates a project membership for a specified project.
|
|
89
89
|
* @param {string} projectId The Id or slug of the project.
|
|
90
90
|
* @param {ProjectRoleForProjectCreationDto} [projectRoleForProjectCreationDto] The project membership data for creation.
|
|
@@ -101,7 +101,7 @@ export declare const ProjectMemberApiFp: (configuration?: Configuration) => {
|
|
|
101
101
|
*/
|
|
102
102
|
apiV2ProjectsProjectIdMembersOptions(projectId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
103
103
|
/**
|
|
104
|
-
*
|
|
104
|
+
*
|
|
105
105
|
* @summary Deletes a project membership for a specified project.
|
|
106
106
|
* @param {string} projectId The Id or slug of the project.
|
|
107
107
|
* @param {string} membershipId The ID of the project membership to delete.
|
|
@@ -110,7 +110,7 @@ export declare const ProjectMemberApiFp: (configuration?: Configuration) => {
|
|
|
110
110
|
*/
|
|
111
111
|
deleteMembership(projectId: string, membershipId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
112
112
|
/**
|
|
113
|
-
*
|
|
113
|
+
*
|
|
114
114
|
* @summary Retrieves a project membership for a specified project.
|
|
115
115
|
* @param {string} projectId The Id or slug of the project.
|
|
116
116
|
* @param {string} membershipId The ID of the project membership to retrieve.
|
|
@@ -119,7 +119,7 @@ export declare const ProjectMemberApiFp: (configuration?: Configuration) => {
|
|
|
119
119
|
*/
|
|
120
120
|
getMembership(projectId: string, membershipId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProjectRoleDtoResponse>>;
|
|
121
121
|
/**
|
|
122
|
-
*
|
|
122
|
+
*
|
|
123
123
|
* @summary Retrieves all project memberships for a specified project.
|
|
124
124
|
* @param {string} projectId The Id or slug of the project.
|
|
125
125
|
* @param {number} [pageNumber] The desired page number. Should be greater than or equal to 1. Default is 1.
|
|
@@ -130,7 +130,7 @@ export declare const ProjectMemberApiFp: (configuration?: Configuration) => {
|
|
|
130
130
|
*/
|
|
131
131
|
getMemberships(projectId: string, pageNumber?: number, pageSize?: number, orderBy?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProjectRoleDtoPagedResponse>>;
|
|
132
132
|
/**
|
|
133
|
-
*
|
|
133
|
+
*
|
|
134
134
|
* @summary Updates a project membership for a specified project.
|
|
135
135
|
* @param {string} projectId The Id or slug of the project.
|
|
136
136
|
* @param {string} membershipId The ID of the project membership to update.
|
|
@@ -146,7 +146,7 @@ export declare const ProjectMemberApiFp: (configuration?: Configuration) => {
|
|
|
146
146
|
*/
|
|
147
147
|
export declare const ProjectMemberApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
148
148
|
/**
|
|
149
|
-
*
|
|
149
|
+
*
|
|
150
150
|
* @summary Creates a project membership for a specified project.
|
|
151
151
|
* @param {ProjectMemberApiAddMembershipRequest} requestParameters Request parameters.
|
|
152
152
|
* @param {*} [options] Override http request option.
|
|
@@ -162,7 +162,7 @@ export declare const ProjectMemberApiFactory: (configuration?: Configuration, ba
|
|
|
162
162
|
*/
|
|
163
163
|
apiV2ProjectsProjectIdMembersOptions(requestParameters: ProjectMemberApiApiV2ProjectsProjectIdMembersOptionsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
164
164
|
/**
|
|
165
|
-
*
|
|
165
|
+
*
|
|
166
166
|
* @summary Deletes a project membership for a specified project.
|
|
167
167
|
* @param {ProjectMemberApiDeleteMembershipRequest} requestParameters Request parameters.
|
|
168
168
|
* @param {*} [options] Override http request option.
|
|
@@ -170,7 +170,7 @@ export declare const ProjectMemberApiFactory: (configuration?: Configuration, ba
|
|
|
170
170
|
*/
|
|
171
171
|
deleteMembership(requestParameters: ProjectMemberApiDeleteMembershipRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
172
172
|
/**
|
|
173
|
-
*
|
|
173
|
+
*
|
|
174
174
|
* @summary Retrieves a project membership for a specified project.
|
|
175
175
|
* @param {ProjectMemberApiGetMembershipRequest} requestParameters Request parameters.
|
|
176
176
|
* @param {*} [options] Override http request option.
|
|
@@ -178,7 +178,7 @@ export declare const ProjectMemberApiFactory: (configuration?: Configuration, ba
|
|
|
178
178
|
*/
|
|
179
179
|
getMembership(requestParameters: ProjectMemberApiGetMembershipRequest, options?: AxiosRequestConfig): AxiosPromise<ProjectRoleDtoResponse>;
|
|
180
180
|
/**
|
|
181
|
-
*
|
|
181
|
+
*
|
|
182
182
|
* @summary Retrieves all project memberships for a specified project.
|
|
183
183
|
* @param {ProjectMemberApiGetMembershipsRequest} requestParameters Request parameters.
|
|
184
184
|
* @param {*} [options] Override http request option.
|
|
@@ -186,7 +186,7 @@ export declare const ProjectMemberApiFactory: (configuration?: Configuration, ba
|
|
|
186
186
|
*/
|
|
187
187
|
getMemberships(requestParameters: ProjectMemberApiGetMembershipsRequest, options?: AxiosRequestConfig): AxiosPromise<ProjectRoleDtoPagedResponse>;
|
|
188
188
|
/**
|
|
189
|
-
*
|
|
189
|
+
*
|
|
190
190
|
* @summary Updates a project membership for a specified project.
|
|
191
191
|
* @param {ProjectMemberApiUpdateMembershipRequest} requestParameters Request parameters.
|
|
192
192
|
* @param {*} [options] Override http request option.
|
|
@@ -328,7 +328,7 @@ export interface ProjectMemberApiUpdateMembershipRequest {
|
|
|
328
328
|
*/
|
|
329
329
|
export declare class ProjectMemberApi extends BaseAPI {
|
|
330
330
|
/**
|
|
331
|
-
*
|
|
331
|
+
*
|
|
332
332
|
* @summary Creates a project membership for a specified project.
|
|
333
333
|
* @param {ProjectMemberApiAddMembershipRequest} requestParameters Request parameters.
|
|
334
334
|
* @param {*} [options] Override http request option.
|
|
@@ -346,7 +346,7 @@ export declare class ProjectMemberApi extends BaseAPI {
|
|
|
346
346
|
*/
|
|
347
347
|
apiV2ProjectsProjectIdMembersOptions(requestParameters: ProjectMemberApiApiV2ProjectsProjectIdMembersOptionsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
348
348
|
/**
|
|
349
|
-
*
|
|
349
|
+
*
|
|
350
350
|
* @summary Deletes a project membership for a specified project.
|
|
351
351
|
* @param {ProjectMemberApiDeleteMembershipRequest} requestParameters Request parameters.
|
|
352
352
|
* @param {*} [options] Override http request option.
|
|
@@ -355,7 +355,7 @@ export declare class ProjectMemberApi extends BaseAPI {
|
|
|
355
355
|
*/
|
|
356
356
|
deleteMembership(requestParameters: ProjectMemberApiDeleteMembershipRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
357
357
|
/**
|
|
358
|
-
*
|
|
358
|
+
*
|
|
359
359
|
* @summary Retrieves a project membership for a specified project.
|
|
360
360
|
* @param {ProjectMemberApiGetMembershipRequest} requestParameters Request parameters.
|
|
361
361
|
* @param {*} [options] Override http request option.
|
|
@@ -364,7 +364,7 @@ export declare class ProjectMemberApi extends BaseAPI {
|
|
|
364
364
|
*/
|
|
365
365
|
getMembership(requestParameters: ProjectMemberApiGetMembershipRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ProjectRoleDtoResponse, any>>;
|
|
366
366
|
/**
|
|
367
|
-
*
|
|
367
|
+
*
|
|
368
368
|
* @summary Retrieves all project memberships for a specified project.
|
|
369
369
|
* @param {ProjectMemberApiGetMembershipsRequest} requestParameters Request parameters.
|
|
370
370
|
* @param {*} [options] Override http request option.
|
|
@@ -373,7 +373,7 @@ export declare class ProjectMemberApi extends BaseAPI {
|
|
|
373
373
|
*/
|
|
374
374
|
getMemberships(requestParameters: ProjectMemberApiGetMembershipsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ProjectRoleDtoPagedResponse, any>>;
|
|
375
375
|
/**
|
|
376
|
-
*
|
|
376
|
+
*
|
|
377
377
|
* @summary Updates a project membership for a specified project.
|
|
378
378
|
* @param {ProjectMemberApiUpdateMembershipRequest} requestParameters Request parameters.
|
|
379
379
|
* @param {*} [options] Override http request option.
|
|
@@ -28,7 +28,7 @@ export declare const ProjectPublicationRequestApiAxiosParamCreator: (configurati
|
|
|
28
28
|
*/
|
|
29
29
|
apiV2ProjectsProjectIdPublicationsRequestsOptions: (projectId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
30
30
|
/**
|
|
31
|
-
*
|
|
31
|
+
*
|
|
32
32
|
* @summary Creates a new publication request.
|
|
33
33
|
* @param {string} projectId The Id or slug of the project.
|
|
34
34
|
* @param {PublicationRequestForCreationDto} [publicationRequestForCreationDto] The publication request data for creation.
|
|
@@ -51,7 +51,7 @@ export declare const ProjectPublicationRequestApiFp: (configuration?: Configurat
|
|
|
51
51
|
*/
|
|
52
52
|
apiV2ProjectsProjectIdPublicationsRequestsOptions(projectId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
53
53
|
/**
|
|
54
|
-
*
|
|
54
|
+
*
|
|
55
55
|
* @summary Creates a new publication request.
|
|
56
56
|
* @param {string} projectId The Id or slug of the project.
|
|
57
57
|
* @param {PublicationRequestForCreationDto} [publicationRequestForCreationDto] The publication request data for creation.
|
|
@@ -74,7 +74,7 @@ export declare const ProjectPublicationRequestApiFactory: (configuration?: Confi
|
|
|
74
74
|
*/
|
|
75
75
|
apiV2ProjectsProjectIdPublicationsRequestsOptions(requestParameters: ProjectPublicationRequestApiApiV2ProjectsProjectIdPublicationsRequestsOptionsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
76
76
|
/**
|
|
77
|
-
*
|
|
77
|
+
*
|
|
78
78
|
* @summary Creates a new publication request.
|
|
79
79
|
* @param {ProjectPublicationRequestApiCreatePublicationRequestRequest} requestParameters Request parameters.
|
|
80
80
|
* @param {*} [options] Override http request option.
|
|
@@ -131,7 +131,7 @@ export declare class ProjectPublicationRequestApi extends BaseAPI {
|
|
|
131
131
|
*/
|
|
132
132
|
apiV2ProjectsProjectIdPublicationsRequestsOptions(requestParameters: ProjectPublicationRequestApiApiV2ProjectsProjectIdPublicationsRequestsOptionsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
133
133
|
/**
|
|
134
|
-
*
|
|
134
|
+
*
|
|
135
135
|
* @summary Creates a new publication request.
|
|
136
136
|
* @param {ProjectPublicationRequestApiCreatePublicationRequestRequest} requestParameters Request parameters.
|
|
137
137
|
* @param {*} [options] Override http request option.
|
|
@@ -29,7 +29,7 @@ export declare const ProjectQuotaApiAxiosParamCreator: (configuration?: Configur
|
|
|
29
29
|
*/
|
|
30
30
|
apiV2ProjectsProjectIdQuotasOptions: (projectId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
31
31
|
/**
|
|
32
|
-
*
|
|
32
|
+
*
|
|
33
33
|
* @summary Retrieves a project quota for a specified project and resource type.
|
|
34
34
|
* @param {string} projectId The Id or slug of the project.
|
|
35
35
|
* @param {string} resourceTypeId The ID of the resource type.
|
|
@@ -38,7 +38,7 @@ export declare const ProjectQuotaApiAxiosParamCreator: (configuration?: Configur
|
|
|
38
38
|
*/
|
|
39
39
|
getProjectQuota: (projectId: string, resourceTypeId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
40
40
|
/**
|
|
41
|
-
*
|
|
41
|
+
*
|
|
42
42
|
* @summary Retrieves all project quotas for a specified project.
|
|
43
43
|
* @param {string} projectId The Id or slug of the project.
|
|
44
44
|
* @param {number} [pageNumber] The desired page number. Should be greater than or equal to 1. Default is 1.
|
|
@@ -49,7 +49,7 @@ export declare const ProjectQuotaApiAxiosParamCreator: (configuration?: Configur
|
|
|
49
49
|
*/
|
|
50
50
|
getProjectQuotas: (projectId: string, pageNumber?: number, pageSize?: number, orderBy?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
51
51
|
/**
|
|
52
|
-
*
|
|
52
|
+
*
|
|
53
53
|
* @summary Updates a project quota for a specified project and resource type.
|
|
54
54
|
* @param {string} projectId The Id or slug of the project.
|
|
55
55
|
* @param {string} resourceTypeId The ID of the resource type.
|
|
@@ -73,7 +73,7 @@ export declare const ProjectQuotaApiFp: (configuration?: Configuration) => {
|
|
|
73
73
|
*/
|
|
74
74
|
apiV2ProjectsProjectIdQuotasOptions(projectId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
75
75
|
/**
|
|
76
|
-
*
|
|
76
|
+
*
|
|
77
77
|
* @summary Retrieves a project quota for a specified project and resource type.
|
|
78
78
|
* @param {string} projectId The Id or slug of the project.
|
|
79
79
|
* @param {string} resourceTypeId The ID of the resource type.
|
|
@@ -82,7 +82,7 @@ export declare const ProjectQuotaApiFp: (configuration?: Configuration) => {
|
|
|
82
82
|
*/
|
|
83
83
|
getProjectQuota(projectId: string, resourceTypeId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProjectQuotaDtoResponse>>;
|
|
84
84
|
/**
|
|
85
|
-
*
|
|
85
|
+
*
|
|
86
86
|
* @summary Retrieves all project quotas for a specified project.
|
|
87
87
|
* @param {string} projectId The Id or slug of the project.
|
|
88
88
|
* @param {number} [pageNumber] The desired page number. Should be greater than or equal to 1. Default is 1.
|
|
@@ -93,7 +93,7 @@ export declare const ProjectQuotaApiFp: (configuration?: Configuration) => {
|
|
|
93
93
|
*/
|
|
94
94
|
getProjectQuotas(projectId: string, pageNumber?: number, pageSize?: number, orderBy?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProjectQuotaDtoPagedResponse>>;
|
|
95
95
|
/**
|
|
96
|
-
*
|
|
96
|
+
*
|
|
97
97
|
* @summary Updates a project quota for a specified project and resource type.
|
|
98
98
|
* @param {string} projectId The Id or slug of the project.
|
|
99
99
|
* @param {string} resourceTypeId The ID of the resource type.
|
|
@@ -117,7 +117,7 @@ export declare const ProjectQuotaApiFactory: (configuration?: Configuration, bas
|
|
|
117
117
|
*/
|
|
118
118
|
apiV2ProjectsProjectIdQuotasOptions(requestParameters: ProjectQuotaApiApiV2ProjectsProjectIdQuotasOptionsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
119
119
|
/**
|
|
120
|
-
*
|
|
120
|
+
*
|
|
121
121
|
* @summary Retrieves a project quota for a specified project and resource type.
|
|
122
122
|
* @param {ProjectQuotaApiGetProjectQuotaRequest} requestParameters Request parameters.
|
|
123
123
|
* @param {*} [options] Override http request option.
|
|
@@ -125,7 +125,7 @@ export declare const ProjectQuotaApiFactory: (configuration?: Configuration, bas
|
|
|
125
125
|
*/
|
|
126
126
|
getProjectQuota(requestParameters: ProjectQuotaApiGetProjectQuotaRequest, options?: AxiosRequestConfig): AxiosPromise<ProjectQuotaDtoResponse>;
|
|
127
127
|
/**
|
|
128
|
-
*
|
|
128
|
+
*
|
|
129
129
|
* @summary Retrieves all project quotas for a specified project.
|
|
130
130
|
* @param {ProjectQuotaApiGetProjectQuotasRequest} requestParameters Request parameters.
|
|
131
131
|
* @param {*} [options] Override http request option.
|
|
@@ -133,7 +133,7 @@ export declare const ProjectQuotaApiFactory: (configuration?: Configuration, bas
|
|
|
133
133
|
*/
|
|
134
134
|
getProjectQuotas(requestParameters: ProjectQuotaApiGetProjectQuotasRequest, options?: AxiosRequestConfig): AxiosPromise<ProjectQuotaDtoPagedResponse>;
|
|
135
135
|
/**
|
|
136
|
-
*
|
|
136
|
+
*
|
|
137
137
|
* @summary Updates a project quota for a specified project and resource type.
|
|
138
138
|
* @param {ProjectQuotaApiUpdateProjectQuotaRequest} requestParameters Request parameters.
|
|
139
139
|
* @param {*} [options] Override http request option.
|
|
@@ -246,7 +246,7 @@ export declare class ProjectQuotaApi extends BaseAPI {
|
|
|
246
246
|
*/
|
|
247
247
|
apiV2ProjectsProjectIdQuotasOptions(requestParameters: ProjectQuotaApiApiV2ProjectsProjectIdQuotasOptionsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
248
248
|
/**
|
|
249
|
-
*
|
|
249
|
+
*
|
|
250
250
|
* @summary Retrieves a project quota for a specified project and resource type.
|
|
251
251
|
* @param {ProjectQuotaApiGetProjectQuotaRequest} requestParameters Request parameters.
|
|
252
252
|
* @param {*} [options] Override http request option.
|
|
@@ -255,7 +255,7 @@ export declare class ProjectQuotaApi extends BaseAPI {
|
|
|
255
255
|
*/
|
|
256
256
|
getProjectQuota(requestParameters: ProjectQuotaApiGetProjectQuotaRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ProjectQuotaDtoResponse, any>>;
|
|
257
257
|
/**
|
|
258
|
-
*
|
|
258
|
+
*
|
|
259
259
|
* @summary Retrieves all project quotas for a specified project.
|
|
260
260
|
* @param {ProjectQuotaApiGetProjectQuotasRequest} requestParameters Request parameters.
|
|
261
261
|
* @param {*} [options] Override http request option.
|
|
@@ -264,7 +264,7 @@ export declare class ProjectQuotaApi extends BaseAPI {
|
|
|
264
264
|
*/
|
|
265
265
|
getProjectQuotas(requestParameters: ProjectQuotaApiGetProjectQuotasRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ProjectQuotaDtoPagedResponse, any>>;
|
|
266
266
|
/**
|
|
267
|
-
*
|
|
267
|
+
*
|
|
268
268
|
* @summary Updates a project quota for a specified project and resource type.
|
|
269
269
|
* @param {ProjectQuotaApiUpdateProjectQuotaRequest} requestParameters Request parameters.
|
|
270
270
|
* @param {*} [options] Override http request option.
|
|
@@ -30,7 +30,7 @@ export declare const ProjectResourceApiAxiosParamCreator: (configuration?: Confi
|
|
|
30
30
|
*/
|
|
31
31
|
apiV2ProjectsProjectIdResourcesOptions: (projectId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
32
32
|
/**
|
|
33
|
-
*
|
|
33
|
+
*
|
|
34
34
|
* @summary Creates a new resource for a specified project.
|
|
35
35
|
* @param {string} projectId The Id or slug of the project.
|
|
36
36
|
* @param {ResourceForCreationDto} [resourceForCreationDto] The resource data for creation.
|
|
@@ -39,7 +39,7 @@ export declare const ProjectResourceApiAxiosParamCreator: (configuration?: Confi
|
|
|
39
39
|
*/
|
|
40
40
|
createResourceForProject: (projectId: string, resourceForCreationDto?: ResourceForCreationDto, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
41
41
|
/**
|
|
42
|
-
*
|
|
42
|
+
*
|
|
43
43
|
* @summary Deletes a resource for a specified project.
|
|
44
44
|
* @param {string} projectId The Id or slug of the project.
|
|
45
45
|
* @param {string} resourceId The ID of the resource to delete.
|
|
@@ -48,7 +48,7 @@ export declare const ProjectResourceApiAxiosParamCreator: (configuration?: Confi
|
|
|
48
48
|
*/
|
|
49
49
|
deleteResourceForProject: (projectId: string, resourceId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
50
50
|
/**
|
|
51
|
-
*
|
|
51
|
+
*
|
|
52
52
|
* @summary Retrieves a resource for a specified project.
|
|
53
53
|
* @param {string} projectId The Id or slug of the project.
|
|
54
54
|
* @param {string} resourceId The ID of the resource to retrieve.
|
|
@@ -57,7 +57,7 @@ export declare const ProjectResourceApiAxiosParamCreator: (configuration?: Confi
|
|
|
57
57
|
*/
|
|
58
58
|
getResourceForProject: (projectId: string, resourceId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
59
59
|
/**
|
|
60
|
-
*
|
|
60
|
+
*
|
|
61
61
|
* @summary Retrieves all resources for a specified project.
|
|
62
62
|
* @param {string} projectId The Id or slug of the project.
|
|
63
63
|
* @param {number} [pageNumber] The desired page number. Should be greater than or equal to 1. Default is 1.
|
|
@@ -68,7 +68,7 @@ export declare const ProjectResourceApiAxiosParamCreator: (configuration?: Confi
|
|
|
68
68
|
*/
|
|
69
69
|
getResourcesForProject: (projectId: string, pageNumber?: number, pageSize?: number, orderBy?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
70
70
|
/**
|
|
71
|
-
*
|
|
71
|
+
*
|
|
72
72
|
* @summary Updates a resource for a specified project.
|
|
73
73
|
* @param {string} projectId The Id or slug of the project.
|
|
74
74
|
* @param {string} resourceId The ID of the resource to update.
|
|
@@ -92,7 +92,7 @@ export declare const ProjectResourceApiFp: (configuration?: Configuration) => {
|
|
|
92
92
|
*/
|
|
93
93
|
apiV2ProjectsProjectIdResourcesOptions(projectId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
94
94
|
/**
|
|
95
|
-
*
|
|
95
|
+
*
|
|
96
96
|
* @summary Creates a new resource for a specified project.
|
|
97
97
|
* @param {string} projectId The Id or slug of the project.
|
|
98
98
|
* @param {ResourceForCreationDto} [resourceForCreationDto] The resource data for creation.
|
|
@@ -101,7 +101,7 @@ export declare const ProjectResourceApiFp: (configuration?: Configuration) => {
|
|
|
101
101
|
*/
|
|
102
102
|
createResourceForProject(projectId: string, resourceForCreationDto?: ResourceForCreationDto, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ResourceDtoResponse>>;
|
|
103
103
|
/**
|
|
104
|
-
*
|
|
104
|
+
*
|
|
105
105
|
* @summary Deletes a resource for a specified project.
|
|
106
106
|
* @param {string} projectId The Id or slug of the project.
|
|
107
107
|
* @param {string} resourceId The ID of the resource to delete.
|
|
@@ -110,7 +110,7 @@ export declare const ProjectResourceApiFp: (configuration?: Configuration) => {
|
|
|
110
110
|
*/
|
|
111
111
|
deleteResourceForProject(projectId: string, resourceId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
112
112
|
/**
|
|
113
|
-
*
|
|
113
|
+
*
|
|
114
114
|
* @summary Retrieves a resource for a specified project.
|
|
115
115
|
* @param {string} projectId The Id or slug of the project.
|
|
116
116
|
* @param {string} resourceId The ID of the resource to retrieve.
|
|
@@ -119,7 +119,7 @@ export declare const ProjectResourceApiFp: (configuration?: Configuration) => {
|
|
|
119
119
|
*/
|
|
120
120
|
getResourceForProject(projectId: string, resourceId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ResourceDtoResponse>>;
|
|
121
121
|
/**
|
|
122
|
-
*
|
|
122
|
+
*
|
|
123
123
|
* @summary Retrieves all resources for a specified project.
|
|
124
124
|
* @param {string} projectId The Id or slug of the project.
|
|
125
125
|
* @param {number} [pageNumber] The desired page number. Should be greater than or equal to 1. Default is 1.
|
|
@@ -130,7 +130,7 @@ export declare const ProjectResourceApiFp: (configuration?: Configuration) => {
|
|
|
130
130
|
*/
|
|
131
131
|
getResourcesForProject(projectId: string, pageNumber?: number, pageSize?: number, orderBy?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ResourceDtoPagedResponse>>;
|
|
132
132
|
/**
|
|
133
|
-
*
|
|
133
|
+
*
|
|
134
134
|
* @summary Updates a resource for a specified project.
|
|
135
135
|
* @param {string} projectId The Id or slug of the project.
|
|
136
136
|
* @param {string} resourceId The ID of the resource to update.
|
|
@@ -154,7 +154,7 @@ export declare const ProjectResourceApiFactory: (configuration?: Configuration,
|
|
|
154
154
|
*/
|
|
155
155
|
apiV2ProjectsProjectIdResourcesOptions(requestParameters: ProjectResourceApiApiV2ProjectsProjectIdResourcesOptionsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
156
156
|
/**
|
|
157
|
-
*
|
|
157
|
+
*
|
|
158
158
|
* @summary Creates a new resource for a specified project.
|
|
159
159
|
* @param {ProjectResourceApiCreateResourceForProjectRequest} requestParameters Request parameters.
|
|
160
160
|
* @param {*} [options] Override http request option.
|
|
@@ -162,7 +162,7 @@ export declare const ProjectResourceApiFactory: (configuration?: Configuration,
|
|
|
162
162
|
*/
|
|
163
163
|
createResourceForProject(requestParameters: ProjectResourceApiCreateResourceForProjectRequest, options?: AxiosRequestConfig): AxiosPromise<ResourceDtoResponse>;
|
|
164
164
|
/**
|
|
165
|
-
*
|
|
165
|
+
*
|
|
166
166
|
* @summary Deletes a resource for a specified project.
|
|
167
167
|
* @param {ProjectResourceApiDeleteResourceForProjectRequest} requestParameters Request parameters.
|
|
168
168
|
* @param {*} [options] Override http request option.
|
|
@@ -170,7 +170,7 @@ export declare const ProjectResourceApiFactory: (configuration?: Configuration,
|
|
|
170
170
|
*/
|
|
171
171
|
deleteResourceForProject(requestParameters: ProjectResourceApiDeleteResourceForProjectRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
172
172
|
/**
|
|
173
|
-
*
|
|
173
|
+
*
|
|
174
174
|
* @summary Retrieves a resource for a specified project.
|
|
175
175
|
* @param {ProjectResourceApiGetResourceForProjectRequest} requestParameters Request parameters.
|
|
176
176
|
* @param {*} [options] Override http request option.
|
|
@@ -178,7 +178,7 @@ export declare const ProjectResourceApiFactory: (configuration?: Configuration,
|
|
|
178
178
|
*/
|
|
179
179
|
getResourceForProject(requestParameters: ProjectResourceApiGetResourceForProjectRequest, options?: AxiosRequestConfig): AxiosPromise<ResourceDtoResponse>;
|
|
180
180
|
/**
|
|
181
|
-
*
|
|
181
|
+
*
|
|
182
182
|
* @summary Retrieves all resources for a specified project.
|
|
183
183
|
* @param {ProjectResourceApiGetResourcesForProjectRequest} requestParameters Request parameters.
|
|
184
184
|
* @param {*} [options] Override http request option.
|
|
@@ -186,7 +186,7 @@ export declare const ProjectResourceApiFactory: (configuration?: Configuration,
|
|
|
186
186
|
*/
|
|
187
187
|
getResourcesForProject(requestParameters: ProjectResourceApiGetResourcesForProjectRequest, options?: AxiosRequestConfig): AxiosPromise<ResourceDtoPagedResponse>;
|
|
188
188
|
/**
|
|
189
|
-
*
|
|
189
|
+
*
|
|
190
190
|
* @summary Updates a resource for a specified project.
|
|
191
191
|
* @param {ProjectResourceApiUpdateResourceForProjectRequest} requestParameters Request parameters.
|
|
192
192
|
* @param {*} [options] Override http request option.
|
|
@@ -337,7 +337,7 @@ export declare class ProjectResourceApi extends BaseAPI {
|
|
|
337
337
|
*/
|
|
338
338
|
apiV2ProjectsProjectIdResourcesOptions(requestParameters: ProjectResourceApiApiV2ProjectsProjectIdResourcesOptionsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
339
339
|
/**
|
|
340
|
-
*
|
|
340
|
+
*
|
|
341
341
|
* @summary Creates a new resource for a specified project.
|
|
342
342
|
* @param {ProjectResourceApiCreateResourceForProjectRequest} requestParameters Request parameters.
|
|
343
343
|
* @param {*} [options] Override http request option.
|
|
@@ -346,7 +346,7 @@ export declare class ProjectResourceApi extends BaseAPI {
|
|
|
346
346
|
*/
|
|
347
347
|
createResourceForProject(requestParameters: ProjectResourceApiCreateResourceForProjectRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ResourceDtoResponse, any>>;
|
|
348
348
|
/**
|
|
349
|
-
*
|
|
349
|
+
*
|
|
350
350
|
* @summary Deletes a resource for a specified project.
|
|
351
351
|
* @param {ProjectResourceApiDeleteResourceForProjectRequest} requestParameters Request parameters.
|
|
352
352
|
* @param {*} [options] Override http request option.
|
|
@@ -355,7 +355,7 @@ export declare class ProjectResourceApi extends BaseAPI {
|
|
|
355
355
|
*/
|
|
356
356
|
deleteResourceForProject(requestParameters: ProjectResourceApiDeleteResourceForProjectRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
357
357
|
/**
|
|
358
|
-
*
|
|
358
|
+
*
|
|
359
359
|
* @summary Retrieves a resource for a specified project.
|
|
360
360
|
* @param {ProjectResourceApiGetResourceForProjectRequest} requestParameters Request parameters.
|
|
361
361
|
* @param {*} [options] Override http request option.
|
|
@@ -364,7 +364,7 @@ export declare class ProjectResourceApi extends BaseAPI {
|
|
|
364
364
|
*/
|
|
365
365
|
getResourceForProject(requestParameters: ProjectResourceApiGetResourceForProjectRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ResourceDtoResponse, any>>;
|
|
366
366
|
/**
|
|
367
|
-
*
|
|
367
|
+
*
|
|
368
368
|
* @summary Retrieves all resources for a specified project.
|
|
369
369
|
* @param {ProjectResourceApiGetResourcesForProjectRequest} requestParameters Request parameters.
|
|
370
370
|
* @param {*} [options] Override http request option.
|
|
@@ -373,7 +373,7 @@ export declare class ProjectResourceApi extends BaseAPI {
|
|
|
373
373
|
*/
|
|
374
374
|
getResourcesForProject(requestParameters: ProjectResourceApiGetResourcesForProjectRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ResourceDtoPagedResponse, any>>;
|
|
375
375
|
/**
|
|
376
|
-
*
|
|
376
|
+
*
|
|
377
377
|
* @summary Updates a resource for a specified project.
|
|
378
378
|
* @param {ProjectResourceApiUpdateResourceForProjectRequest} requestParameters Request parameters.
|
|
379
379
|
* @param {*} [options] Override http request option.
|
|
@@ -28,7 +28,7 @@ export declare const ProjectResourceQuotaApiAxiosParamCreator: (configuration?:
|
|
|
28
28
|
*/
|
|
29
29
|
apiV2ProjectsProjectIdResourcesResourceIdQuotaOptions: (projectId: string, resourceId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
30
30
|
/**
|
|
31
|
-
*
|
|
31
|
+
*
|
|
32
32
|
* @summary Retrieves the resource quota for a specific resource in a project.
|
|
33
33
|
* @param {string} projectId The Id or slug of the project.
|
|
34
34
|
* @param {string} resourceId The ID of the resource.
|
|
@@ -52,7 +52,7 @@ export declare const ProjectResourceQuotaApiFp: (configuration?: Configuration)
|
|
|
52
52
|
*/
|
|
53
53
|
apiV2ProjectsProjectIdResourcesResourceIdQuotaOptions(projectId: string, resourceId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
54
54
|
/**
|
|
55
|
-
*
|
|
55
|
+
*
|
|
56
56
|
* @summary Retrieves the resource quota for a specific resource in a project.
|
|
57
57
|
* @param {string} projectId The Id or slug of the project.
|
|
58
58
|
* @param {string} resourceId The ID of the resource.
|
|
@@ -75,7 +75,7 @@ export declare const ProjectResourceQuotaApiFactory: (configuration?: Configurat
|
|
|
75
75
|
*/
|
|
76
76
|
apiV2ProjectsProjectIdResourcesResourceIdQuotaOptions(requestParameters: ProjectResourceQuotaApiApiV2ProjectsProjectIdResourcesResourceIdQuotaOptionsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
77
77
|
/**
|
|
78
|
-
*
|
|
78
|
+
*
|
|
79
79
|
* @summary Retrieves the resource quota for a specific resource in a project.
|
|
80
80
|
* @param {ProjectResourceQuotaApiGetQuotaForResourceForProjectRequest} requestParameters Request parameters.
|
|
81
81
|
* @param {*} [options] Override http request option.
|
|
@@ -138,7 +138,7 @@ export declare class ProjectResourceQuotaApi extends BaseAPI {
|
|
|
138
138
|
*/
|
|
139
139
|
apiV2ProjectsProjectIdResourcesResourceIdQuotaOptions(requestParameters: ProjectResourceQuotaApiApiV2ProjectsProjectIdResourcesResourceIdQuotaOptionsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
140
140
|
/**
|
|
141
|
-
*
|
|
141
|
+
*
|
|
142
142
|
* @summary Retrieves the resource quota for a specific resource in a project.
|
|
143
143
|
* @param {ProjectResourceQuotaApiGetQuotaForResourceForProjectRequest} requestParameters Request parameters.
|
|
144
144
|
* @param {*} [options] Override http request option.
|
|
@@ -27,7 +27,7 @@ export declare const ProjectResourceTypeApiAxiosParamCreator: (configuration?: C
|
|
|
27
27
|
*/
|
|
28
28
|
apiV2ProjectsProjectIdResourceTypesOptions: (projectId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
29
29
|
/**
|
|
30
|
-
*
|
|
30
|
+
*
|
|
31
31
|
* @summary Retrieves the available resource types information for a specific project.
|
|
32
32
|
* @param {string} projectId The Id or slug of the project.
|
|
33
33
|
* @param {*} [options] Override http request option.
|
|
@@ -49,7 +49,7 @@ export declare const ProjectResourceTypeApiFp: (configuration?: Configuration) =
|
|
|
49
49
|
*/
|
|
50
50
|
apiV2ProjectsProjectIdResourceTypesOptions(projectId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
51
51
|
/**
|
|
52
|
-
*
|
|
52
|
+
*
|
|
53
53
|
* @summary Retrieves the available resource types information for a specific project.
|
|
54
54
|
* @param {string} projectId The Id or slug of the project.
|
|
55
55
|
* @param {*} [options] Override http request option.
|
|
@@ -71,7 +71,7 @@ export declare const ProjectResourceTypeApiFactory: (configuration?: Configurati
|
|
|
71
71
|
*/
|
|
72
72
|
apiV2ProjectsProjectIdResourceTypesOptions(requestParameters: ProjectResourceTypeApiApiV2ProjectsProjectIdResourceTypesOptionsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
73
73
|
/**
|
|
74
|
-
*
|
|
74
|
+
*
|
|
75
75
|
* @summary Retrieves the available resource types information for a specific project.
|
|
76
76
|
* @param {ProjectResourceTypeApiGetAvailableResourceTypesInformationForProjectRequest} requestParameters Request parameters.
|
|
77
77
|
* @param {*} [options] Override http request option.
|
|
@@ -122,7 +122,7 @@ export declare class ProjectResourceTypeApi extends BaseAPI {
|
|
|
122
122
|
*/
|
|
123
123
|
apiV2ProjectsProjectIdResourceTypesOptions(requestParameters: ProjectResourceTypeApiApiV2ProjectsProjectIdResourceTypesOptionsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
124
124
|
/**
|
|
125
|
-
*
|
|
125
|
+
*
|
|
126
126
|
* @summary Retrieves the available resource types information for a specific project.
|
|
127
127
|
* @param {ProjectResourceTypeApiGetAvailableResourceTypesInformationForProjectRequest} requestParameters Request parameters.
|
|
128
128
|
* @param {*} [options] Override http request option.
|