open api
This commit is contained in:
Generated
-2
@@ -125,8 +125,6 @@ part 'model/map_marker_response_dto.dart';
|
||||
part 'model/map_theme.dart';
|
||||
part 'model/memory_lane_response_dto.dart';
|
||||
part 'model/merge_person_dto.dart';
|
||||
part 'model/metric_server_info_config.dart';
|
||||
part 'model/metrics_asset_count_config.dart';
|
||||
part 'model/model_type.dart';
|
||||
part 'model/o_auth_authorize_response_dto.dart';
|
||||
part 'model/o_auth_callback_dto.dart';
|
||||
|
||||
Generated
+7
-13
@@ -16,27 +16,24 @@ class MetricsApi {
|
||||
|
||||
final ApiClient apiClient;
|
||||
|
||||
/// Performs an HTTP 'PUT /metrics' operation and returns the [Response].
|
||||
/// Parameters:
|
||||
///
|
||||
/// * [SystemConfigMetricsDto] systemConfigMetricsDto (required):
|
||||
Future<Response> getMetricsWithHttpInfo(SystemConfigMetricsDto systemConfigMetricsDto,) async {
|
||||
/// Performs an HTTP 'GET /metrics' operation and returns the [Response].
|
||||
Future<Response> getMetricsWithHttpInfo() async {
|
||||
// ignore: prefer_const_declarations
|
||||
final path = r'/metrics';
|
||||
|
||||
// ignore: prefer_final_locals
|
||||
Object? postBody = systemConfigMetricsDto;
|
||||
Object? postBody;
|
||||
|
||||
final queryParams = <QueryParam>[];
|
||||
final headerParams = <String, String>{};
|
||||
final formParams = <String, String>{};
|
||||
|
||||
const contentTypes = <String>['application/json'];
|
||||
const contentTypes = <String>[];
|
||||
|
||||
|
||||
return apiClient.invokeAPI(
|
||||
path,
|
||||
'PUT',
|
||||
'GET',
|
||||
queryParams,
|
||||
postBody,
|
||||
headerParams,
|
||||
@@ -45,11 +42,8 @@ class MetricsApi {
|
||||
);
|
||||
}
|
||||
|
||||
/// Parameters:
|
||||
///
|
||||
/// * [SystemConfigMetricsDto] systemConfigMetricsDto (required):
|
||||
Future<Object?> getMetrics(SystemConfigMetricsDto systemConfigMetricsDto,) async {
|
||||
final response = await getMetricsWithHttpInfo(systemConfigMetricsDto,);
|
||||
Future<Object?> getMetrics() async {
|
||||
final response = await getMetricsWithHttpInfo();
|
||||
if (response.statusCode >= HttpStatus.badRequest) {
|
||||
throw ApiException(response.statusCode, await _decodeBodyBytes(response));
|
||||
}
|
||||
|
||||
Generated
-4
@@ -335,10 +335,6 @@ class ApiClient {
|
||||
return MemoryLaneResponseDto.fromJson(value);
|
||||
case 'MergePersonDto':
|
||||
return MergePersonDto.fromJson(value);
|
||||
case 'MetricServerInfoConfig':
|
||||
return MetricServerInfoConfig.fromJson(value);
|
||||
case 'MetricsAssetCountConfig':
|
||||
return MetricsAssetCountConfig.fromJson(value);
|
||||
case 'ModelType':
|
||||
return ModelTypeTypeTransformer().decode(value);
|
||||
case 'OAuthAuthorizeResponseDto':
|
||||
|
||||
-122
@@ -1,122 +0,0 @@
|
||||
//
|
||||
// AUTO-GENERATED FILE, DO NOT MODIFY!
|
||||
//
|
||||
// @dart=2.12
|
||||
|
||||
// ignore_for_file: unused_element, unused_import
|
||||
// ignore_for_file: always_put_required_named_parameters_first
|
||||
// ignore_for_file: constant_identifier_names
|
||||
// ignore_for_file: lines_longer_than_80_chars
|
||||
|
||||
part of openapi.api;
|
||||
|
||||
class MetricServerInfoConfig {
|
||||
/// Returns a new [MetricServerInfoConfig] instance.
|
||||
MetricServerInfoConfig({
|
||||
required this.cpuCount,
|
||||
required this.cpuModel,
|
||||
required this.memory,
|
||||
required this.version,
|
||||
});
|
||||
|
||||
bool cpuCount;
|
||||
|
||||
bool cpuModel;
|
||||
|
||||
bool memory;
|
||||
|
||||
bool version;
|
||||
|
||||
@override
|
||||
bool operator ==(Object other) => identical(this, other) || other is MetricServerInfoConfig &&
|
||||
other.cpuCount == cpuCount &&
|
||||
other.cpuModel == cpuModel &&
|
||||
other.memory == memory &&
|
||||
other.version == version;
|
||||
|
||||
@override
|
||||
int get hashCode =>
|
||||
// ignore: unnecessary_parenthesis
|
||||
(cpuCount.hashCode) +
|
||||
(cpuModel.hashCode) +
|
||||
(memory.hashCode) +
|
||||
(version.hashCode);
|
||||
|
||||
@override
|
||||
String toString() => 'MetricServerInfoConfig[cpuCount=$cpuCount, cpuModel=$cpuModel, memory=$memory, version=$version]';
|
||||
|
||||
Map<String, dynamic> toJson() {
|
||||
final json = <String, dynamic>{};
|
||||
json[r'cpuCount'] = this.cpuCount;
|
||||
json[r'cpuModel'] = this.cpuModel;
|
||||
json[r'memory'] = this.memory;
|
||||
json[r'version'] = this.version;
|
||||
return json;
|
||||
}
|
||||
|
||||
/// Returns a new [MetricServerInfoConfig] instance and imports its values from
|
||||
/// [value] if it's a [Map], null otherwise.
|
||||
// ignore: prefer_constructors_over_static_methods
|
||||
static MetricServerInfoConfig? fromJson(dynamic value) {
|
||||
if (value is Map) {
|
||||
final json = value.cast<String, dynamic>();
|
||||
|
||||
return MetricServerInfoConfig(
|
||||
cpuCount: mapValueOfType<bool>(json, r'cpuCount')!,
|
||||
cpuModel: mapValueOfType<bool>(json, r'cpuModel')!,
|
||||
memory: mapValueOfType<bool>(json, r'memory')!,
|
||||
version: mapValueOfType<bool>(json, r'version')!,
|
||||
);
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
static List<MetricServerInfoConfig> listFromJson(dynamic json, {bool growable = false,}) {
|
||||
final result = <MetricServerInfoConfig>[];
|
||||
if (json is List && json.isNotEmpty) {
|
||||
for (final row in json) {
|
||||
final value = MetricServerInfoConfig.fromJson(row);
|
||||
if (value != null) {
|
||||
result.add(value);
|
||||
}
|
||||
}
|
||||
}
|
||||
return result.toList(growable: growable);
|
||||
}
|
||||
|
||||
static Map<String, MetricServerInfoConfig> mapFromJson(dynamic json) {
|
||||
final map = <String, MetricServerInfoConfig>{};
|
||||
if (json is Map && json.isNotEmpty) {
|
||||
json = json.cast<String, dynamic>(); // ignore: parameter_assignments
|
||||
for (final entry in json.entries) {
|
||||
final value = MetricServerInfoConfig.fromJson(entry.value);
|
||||
if (value != null) {
|
||||
map[entry.key] = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
return map;
|
||||
}
|
||||
|
||||
// maps a json object with a list of MetricServerInfoConfig-objects as value to a dart map
|
||||
static Map<String, List<MetricServerInfoConfig>> mapListFromJson(dynamic json, {bool growable = false,}) {
|
||||
final map = <String, List<MetricServerInfoConfig>>{};
|
||||
if (json is Map && json.isNotEmpty) {
|
||||
// ignore: parameter_assignments
|
||||
json = json.cast<String, dynamic>();
|
||||
for (final entry in json.entries) {
|
||||
map[entry.key] = MetricServerInfoConfig.listFromJson(entry.value, growable: growable,);
|
||||
}
|
||||
}
|
||||
return map;
|
||||
}
|
||||
|
||||
/// The list of required keys that must be present in a JSON.
|
||||
static const requiredKeys = <String>{
|
||||
'cpuCount',
|
||||
'cpuModel',
|
||||
'memory',
|
||||
'version',
|
||||
};
|
||||
}
|
||||
|
||||
@@ -1,114 +0,0 @@
|
||||
//
|
||||
// AUTO-GENERATED FILE, DO NOT MODIFY!
|
||||
//
|
||||
// @dart=2.12
|
||||
|
||||
// ignore_for_file: unused_element, unused_import
|
||||
// ignore_for_file: always_put_required_named_parameters_first
|
||||
// ignore_for_file: constant_identifier_names
|
||||
// ignore_for_file: lines_longer_than_80_chars
|
||||
|
||||
part of openapi.api;
|
||||
|
||||
class MetricsAssetCountConfig {
|
||||
/// Returns a new [MetricsAssetCountConfig] instance.
|
||||
MetricsAssetCountConfig({
|
||||
required this.image,
|
||||
required this.total,
|
||||
required this.video,
|
||||
});
|
||||
|
||||
bool image;
|
||||
|
||||
bool total;
|
||||
|
||||
bool video;
|
||||
|
||||
@override
|
||||
bool operator ==(Object other) => identical(this, other) || other is MetricsAssetCountConfig &&
|
||||
other.image == image &&
|
||||
other.total == total &&
|
||||
other.video == video;
|
||||
|
||||
@override
|
||||
int get hashCode =>
|
||||
// ignore: unnecessary_parenthesis
|
||||
(image.hashCode) +
|
||||
(total.hashCode) +
|
||||
(video.hashCode);
|
||||
|
||||
@override
|
||||
String toString() => 'MetricsAssetCountConfig[image=$image, total=$total, video=$video]';
|
||||
|
||||
Map<String, dynamic> toJson() {
|
||||
final json = <String, dynamic>{};
|
||||
json[r'image'] = this.image;
|
||||
json[r'total'] = this.total;
|
||||
json[r'video'] = this.video;
|
||||
return json;
|
||||
}
|
||||
|
||||
/// Returns a new [MetricsAssetCountConfig] instance and imports its values from
|
||||
/// [value] if it's a [Map], null otherwise.
|
||||
// ignore: prefer_constructors_over_static_methods
|
||||
static MetricsAssetCountConfig? fromJson(dynamic value) {
|
||||
if (value is Map) {
|
||||
final json = value.cast<String, dynamic>();
|
||||
|
||||
return MetricsAssetCountConfig(
|
||||
image: mapValueOfType<bool>(json, r'image')!,
|
||||
total: mapValueOfType<bool>(json, r'total')!,
|
||||
video: mapValueOfType<bool>(json, r'video')!,
|
||||
);
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
static List<MetricsAssetCountConfig> listFromJson(dynamic json, {bool growable = false,}) {
|
||||
final result = <MetricsAssetCountConfig>[];
|
||||
if (json is List && json.isNotEmpty) {
|
||||
for (final row in json) {
|
||||
final value = MetricsAssetCountConfig.fromJson(row);
|
||||
if (value != null) {
|
||||
result.add(value);
|
||||
}
|
||||
}
|
||||
}
|
||||
return result.toList(growable: growable);
|
||||
}
|
||||
|
||||
static Map<String, MetricsAssetCountConfig> mapFromJson(dynamic json) {
|
||||
final map = <String, MetricsAssetCountConfig>{};
|
||||
if (json is Map && json.isNotEmpty) {
|
||||
json = json.cast<String, dynamic>(); // ignore: parameter_assignments
|
||||
for (final entry in json.entries) {
|
||||
final value = MetricsAssetCountConfig.fromJson(entry.value);
|
||||
if (value != null) {
|
||||
map[entry.key] = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
return map;
|
||||
}
|
||||
|
||||
// maps a json object with a list of MetricsAssetCountConfig-objects as value to a dart map
|
||||
static Map<String, List<MetricsAssetCountConfig>> mapListFromJson(dynamic json, {bool growable = false,}) {
|
||||
final map = <String, List<MetricsAssetCountConfig>>{};
|
||||
if (json is Map && json.isNotEmpty) {
|
||||
// ignore: parameter_assignments
|
||||
json = json.cast<String, dynamic>();
|
||||
for (final entry in json.entries) {
|
||||
map[entry.key] = MetricsAssetCountConfig.listFromJson(entry.value, growable: growable,);
|
||||
}
|
||||
}
|
||||
return map;
|
||||
}
|
||||
|
||||
/// The list of required keys that must be present in a JSON.
|
||||
static const requiredKeys = <String>{
|
||||
'image',
|
||||
'total',
|
||||
'video',
|
||||
};
|
||||
}
|
||||
|
||||
+3
-19
@@ -13,38 +13,26 @@ part of openapi.api;
|
||||
class SystemConfigMetricsDto {
|
||||
/// Returns a new [SystemConfigMetricsDto] instance.
|
||||
SystemConfigMetricsDto({
|
||||
required this.assetCount,
|
||||
required this.enabled,
|
||||
required this.serverInfo,
|
||||
});
|
||||
|
||||
MetricsAssetCountConfig assetCount;
|
||||
|
||||
bool enabled;
|
||||
|
||||
MetricServerInfoConfig serverInfo;
|
||||
|
||||
@override
|
||||
bool operator ==(Object other) => identical(this, other) || other is SystemConfigMetricsDto &&
|
||||
other.assetCount == assetCount &&
|
||||
other.enabled == enabled &&
|
||||
other.serverInfo == serverInfo;
|
||||
other.enabled == enabled;
|
||||
|
||||
@override
|
||||
int get hashCode =>
|
||||
// ignore: unnecessary_parenthesis
|
||||
(assetCount.hashCode) +
|
||||
(enabled.hashCode) +
|
||||
(serverInfo.hashCode);
|
||||
(enabled.hashCode);
|
||||
|
||||
@override
|
||||
String toString() => 'SystemConfigMetricsDto[assetCount=$assetCount, enabled=$enabled, serverInfo=$serverInfo]';
|
||||
String toString() => 'SystemConfigMetricsDto[enabled=$enabled]';
|
||||
|
||||
Map<String, dynamic> toJson() {
|
||||
final json = <String, dynamic>{};
|
||||
json[r'assetCount'] = this.assetCount;
|
||||
json[r'enabled'] = this.enabled;
|
||||
json[r'serverInfo'] = this.serverInfo;
|
||||
return json;
|
||||
}
|
||||
|
||||
@@ -56,9 +44,7 @@ class SystemConfigMetricsDto {
|
||||
final json = value.cast<String, dynamic>();
|
||||
|
||||
return SystemConfigMetricsDto(
|
||||
assetCount: MetricsAssetCountConfig.fromJson(json[r'assetCount'])!,
|
||||
enabled: mapValueOfType<bool>(json, r'enabled')!,
|
||||
serverInfo: MetricServerInfoConfig.fromJson(json[r'serverInfo'])!,
|
||||
);
|
||||
}
|
||||
return null;
|
||||
@@ -106,9 +92,7 @@ class SystemConfigMetricsDto {
|
||||
|
||||
/// The list of required keys that must be present in a JSON.
|
||||
static const requiredKeys = <String>{
|
||||
'assetCount',
|
||||
'enabled',
|
||||
'serverInfo',
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user