File tree Expand file tree Collapse file tree 4 files changed +10
-10
lines changed Expand file tree Collapse file tree 4 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 4
4
"spec_versions": {
5
5
"v1": {
6
6
"apigentools_version": "1.6.6",
7
- "regenerated": "2024-09-23 19:10:18.896643 ",
8
- "spec_repo_commit": "41592dc6 "
7
+ "regenerated": "2024-09-24 13:39:54.310752 ",
8
+ "spec_repo_commit": "7752efd3 "
9
9
},
10
10
"v2": {
11
11
"apigentools_version": "1.6.6",
12
- "regenerated": "2024-09-23 19:10:18.910900 ",
13
- "spec_repo_commit": "41592dc6 "
12
+ "regenerated": "2024-09-24 13:39:54.325117 ",
13
+ "spec_repo_commit": "7752efd3 "
14
14
}
15
15
}
16
16
}
Original file line number Diff line number Diff line change @@ -9200,7 +9200,7 @@ components:
9200
9200
data:
9201
9201
description: The JSON:API data schema.
9202
9202
items:
9203
- $ref: '#/components/schemas/FastlyServiceResponse '
9203
+ $ref: '#/components/schemas/FastlyServiceData '
9204
9204
type: array
9205
9205
type: object
9206
9206
Finding:
Original file line number Diff line number Diff line change @@ -1396,8 +1396,6 @@ pub mod model_fastly_account_update_request_attributes;
1396
1396
pub use self :: model_fastly_account_update_request_attributes:: FastlyAccountUpdateRequestAttributes ;
1397
1397
pub mod model_fastly_services_response;
1398
1398
pub use self :: model_fastly_services_response:: FastlyServicesResponse ;
1399
- pub mod model_fastly_service_response;
1400
- pub use self :: model_fastly_service_response:: FastlyServiceResponse ;
1401
1399
pub mod model_fastly_service_data;
1402
1400
pub use self :: model_fastly_service_data:: FastlyServiceData ;
1403
1401
pub mod model_fastly_service_attributes;
@@ -1406,6 +1404,8 @@ pub mod model_fastly_service_type;
1406
1404
pub use self :: model_fastly_service_type:: FastlyServiceType ;
1407
1405
pub mod model_fastly_service_request;
1408
1406
pub use self :: model_fastly_service_request:: FastlyServiceRequest ;
1407
+ pub mod model_fastly_service_response;
1408
+ pub use self :: model_fastly_service_response:: FastlyServiceResponse ;
1409
1409
pub mod model_okta_accounts_response;
1410
1410
pub use self :: model_okta_accounts_response:: OktaAccountsResponse ;
1411
1411
pub mod model_okta_account_response_data;
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ use std::fmt::{self, Formatter};
13
13
pub struct FastlyServicesResponse {
14
14
/// The JSON:API data schema.
15
15
#[ serde( rename = "data" ) ]
16
- pub data : Option < Vec < crate :: datadogV2:: model:: FastlyServiceResponse > > ,
16
+ pub data : Option < Vec < crate :: datadogV2:: model:: FastlyServiceData > > ,
17
17
#[ serde( flatten) ]
18
18
pub additional_properties : std:: collections:: BTreeMap < String , serde_json:: Value > ,
19
19
#[ serde( skip) ]
@@ -30,7 +30,7 @@ impl FastlyServicesResponse {
30
30
}
31
31
}
32
32
33
- pub fn data ( mut self , value : Vec < crate :: datadogV2:: model:: FastlyServiceResponse > ) -> Self {
33
+ pub fn data ( mut self , value : Vec < crate :: datadogV2:: model:: FastlyServiceData > ) -> Self {
34
34
self . data = Some ( value) ;
35
35
self
36
36
}
@@ -67,7 +67,7 @@ impl<'de> Deserialize<'de> for FastlyServicesResponse {
67
67
where
68
68
M : MapAccess < ' a > ,
69
69
{
70
- let mut data: Option < Vec < crate :: datadogV2:: model:: FastlyServiceResponse > > = None ;
70
+ let mut data: Option < Vec < crate :: datadogV2:: model:: FastlyServiceData > > = None ;
71
71
let mut additional_properties: std:: collections:: BTreeMap <
72
72
String ,
73
73
serde_json:: Value ,
You can’t perform that action at this time.
0 commit comments