1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
#[allow(warnings)]
use hyper::Client;
use hyper::status::StatusCode;
use rusoto_core::request::DispatchSignedRequest;
use rusoto_core::region;

use std::fmt;
use std::error::Error;
use rusoto_core::request::HttpDispatchError;
use rusoto_core::credential::{CredentialsError, ProvideAwsCredentials};

use serde_json;
use rusoto_core::signature::SignedRequest;
use serde_json::Value as SerdeJsonValue;
use serde_json::from_str;
#[doc="Region of customer S3 bucket."]
pub type AWSRegion = String;
#[doc="Enable support for Redshift and/or QuickSight."]
pub type AdditionalArtifact = String;
#[doc="A list of additional artifacts."]
pub type AdditionalArtifactList = Vec<AdditionalArtifact>;
#[doc="Preferred compression format for report."]
pub type CompressionFormat = String;
#[doc="Request of DeleteReportDefinition"]
#[derive(Default,Debug,Clone,Serialize)]
pub struct DeleteReportDefinitionRequest {
    #[serde(rename="ReportName")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub report_name: Option<ReportName>,
}

#[doc="Response of DeleteReportDefinition"]
#[derive(Default,Debug,Clone,Deserialize)]
pub struct DeleteReportDefinitionResponse {
    #[serde(rename="ResponseMessage")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub response_message: Option<DeleteResponseMessage>,
}

#[doc="A message indicates if the deletion is successful."]
pub type DeleteResponseMessage = String;
#[doc="Request of DescribeReportDefinitions"]
#[derive(Default,Debug,Clone,Serialize)]
pub struct DescribeReportDefinitionsRequest {
    #[serde(rename="MaxResults")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub max_results: Option<MaxResults>,
    #[serde(rename="NextToken")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub next_token: Option<GenericString>,
}

#[doc="Response of DescribeReportDefinitions"]
#[derive(Default,Debug,Clone,Deserialize)]
pub struct DescribeReportDefinitionsResponse {
    #[serde(rename="NextToken")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub next_token: Option<GenericString>,
    #[serde(rename="ReportDefinitions")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub report_definitions: Option<ReportDefinitionList>,
}

#[doc="A message to show the detail of the exception."]
pub type ErrorMessage = String;
#[doc="A generic string."]
pub type GenericString = String;
#[doc="The max number of results returned by the operation."]
pub type MaxResults = i64;
#[doc="Request of PutReportDefinition"]
#[derive(Default,Debug,Clone,Serialize)]
pub struct PutReportDefinitionRequest {
    #[serde(rename="ReportDefinition")]
    pub report_definition: ReportDefinition,
}

#[doc="Response of PutReportDefinition"]
#[derive(Default,Debug,Clone,Deserialize)]
pub struct PutReportDefinitionResponse;

#[doc="The definition of AWS Cost and Usage Report. Customer can specify the report name, time unit, report format, compression format, S3 bucket and additional artifacts and schema elements in the definition."]
#[derive(Default,Debug,Clone,Serialize,Deserialize)]
pub struct ReportDefinition {
    #[serde(rename="AdditionalArtifacts")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub additional_artifacts: Option<AdditionalArtifactList>,
    #[serde(rename="AdditionalSchemaElements")]
    pub additional_schema_elements: SchemaElementList,
    #[serde(rename="Compression")]
    pub compression: CompressionFormat,
    #[serde(rename="Format")]
    pub format: ReportFormat,
    #[serde(rename="ReportName")]
    pub report_name: ReportName,
    #[serde(rename="S3Bucket")]
    pub s3_bucket: S3Bucket,
    #[serde(rename="S3Prefix")]
    pub s3_prefix: S3Prefix,
    #[serde(rename="S3Region")]
    pub s3_region: AWSRegion,
    #[serde(rename="TimeUnit")]
    pub time_unit: TimeUnit,
}

#[doc="A list of report definitions."]
pub type ReportDefinitionList = Vec<ReportDefinition>;
#[doc="Preferred format for report."]
pub type ReportFormat = String;
#[doc="Preferred name for a report, it has to be unique. Must starts with a number/letter, case sensitive. Limited to 256 characters."]
pub type ReportName = String;
#[doc="Name of customer S3 bucket."]
pub type S3Bucket = String;
#[doc="Preferred report path prefix. Limited to 256 characters."]
pub type S3Prefix = String;
#[doc="Preference of including Resource IDs. You can include additional details about individual resource IDs in your report."]
pub type SchemaElement = String;
#[doc="A list of schema elements."]
pub type SchemaElementList = Vec<SchemaElement>;
#[doc="The frequency on which report data are measured and displayed."]
pub type TimeUnit = String;
/// Errors returned by DeleteReportDefinition
#[derive(Debug, PartialEq)]
pub enum DeleteReportDefinitionError {
    ///This exception is thrown on a known dependency failure.
    InternalError(String),
    /// An error occurred dispatching the HTTP request
    HttpDispatch(HttpDispatchError),
    /// An error was encountered with AWS credentials.
    Credentials(CredentialsError),
    /// A validation error occurred.  Details from AWS are provided.
    Validation(String),
    /// An unknown error occurred.  The raw HTTP response is provided.
    Unknown(String),
}


impl DeleteReportDefinitionError {
    pub fn from_body(body: &str) -> DeleteReportDefinitionError {
        match from_str::<SerdeJsonValue>(body) {
            Ok(json) => {
                let raw_error_type = json.get("__type")
                    .and_then(|e| e.as_str())
                    .unwrap_or("Unknown");
                let error_message = json.get("message").and_then(|m| m.as_str()).unwrap_or(body);

                let pieces: Vec<&str> = raw_error_type.split("#").collect();
                let error_type = pieces.last().expect("Expected error type");

                match *error_type {
                    "InternalErrorException" => {
                        DeleteReportDefinitionError::InternalError(String::from(error_message))
                    }
                    "ValidationException" => {
                        DeleteReportDefinitionError::Validation(error_message.to_string())
                    }
                    _ => DeleteReportDefinitionError::Unknown(String::from(body)),
                }
            }
            Err(_) => DeleteReportDefinitionError::Unknown(String::from(body)),
        }
    }
}

impl From<serde_json::error::Error> for DeleteReportDefinitionError {
    fn from(err: serde_json::error::Error) -> DeleteReportDefinitionError {
        DeleteReportDefinitionError::Unknown(err.description().to_string())
    }
}
impl From<CredentialsError> for DeleteReportDefinitionError {
    fn from(err: CredentialsError) -> DeleteReportDefinitionError {
        DeleteReportDefinitionError::Credentials(err)
    }
}
impl From<HttpDispatchError> for DeleteReportDefinitionError {
    fn from(err: HttpDispatchError) -> DeleteReportDefinitionError {
        DeleteReportDefinitionError::HttpDispatch(err)
    }
}
impl fmt::Display for DeleteReportDefinitionError {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "{}", self.description())
    }
}
impl Error for DeleteReportDefinitionError {
    fn description(&self) -> &str {
        match *self {
            DeleteReportDefinitionError::InternalError(ref cause) => cause,
            DeleteReportDefinitionError::Validation(ref cause) => cause,
            DeleteReportDefinitionError::Credentials(ref err) => err.description(),
            DeleteReportDefinitionError::HttpDispatch(ref dispatch_error) => {
                dispatch_error.description()
            }
            DeleteReportDefinitionError::Unknown(ref cause) => cause,
        }
    }
}
/// Errors returned by DescribeReportDefinitions
#[derive(Debug, PartialEq)]
pub enum DescribeReportDefinitionsError {
    ///This exception is thrown on a known dependency failure.
    InternalError(String),
    /// An error occurred dispatching the HTTP request
    HttpDispatch(HttpDispatchError),
    /// An error was encountered with AWS credentials.
    Credentials(CredentialsError),
    /// A validation error occurred.  Details from AWS are provided.
    Validation(String),
    /// An unknown error occurred.  The raw HTTP response is provided.
    Unknown(String),
}


impl DescribeReportDefinitionsError {
    pub fn from_body(body: &str) -> DescribeReportDefinitionsError {
        match from_str::<SerdeJsonValue>(body) {
            Ok(json) => {
                let raw_error_type = json.get("__type")
                    .and_then(|e| e.as_str())
                    .unwrap_or("Unknown");
                let error_message = json.get("message").and_then(|m| m.as_str()).unwrap_or(body);

                let pieces: Vec<&str> = raw_error_type.split("#").collect();
                let error_type = pieces.last().expect("Expected error type");

                match *error_type {
                    "InternalErrorException" => {
                        DescribeReportDefinitionsError::InternalError(String::from(error_message))
                    }
                    "ValidationException" => {
                        DescribeReportDefinitionsError::Validation(error_message.to_string())
                    }
                    _ => DescribeReportDefinitionsError::Unknown(String::from(body)),
                }
            }
            Err(_) => DescribeReportDefinitionsError::Unknown(String::from(body)),
        }
    }
}

impl From<serde_json::error::Error> for DescribeReportDefinitionsError {
    fn from(err: serde_json::error::Error) -> DescribeReportDefinitionsError {
        DescribeReportDefinitionsError::Unknown(err.description().to_string())
    }
}
impl From<CredentialsError> for DescribeReportDefinitionsError {
    fn from(err: CredentialsError) -> DescribeReportDefinitionsError {
        DescribeReportDefinitionsError::Credentials(err)
    }
}
impl From<HttpDispatchError> for DescribeReportDefinitionsError {
    fn from(err: HttpDispatchError) -> DescribeReportDefinitionsError {
        DescribeReportDefinitionsError::HttpDispatch(err)
    }
}
impl fmt::Display for DescribeReportDefinitionsError {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "{}", self.description())
    }
}
impl Error for DescribeReportDefinitionsError {
    fn description(&self) -> &str {
        match *self {
            DescribeReportDefinitionsError::InternalError(ref cause) => cause,
            DescribeReportDefinitionsError::Validation(ref cause) => cause,
            DescribeReportDefinitionsError::Credentials(ref err) => err.description(),
            DescribeReportDefinitionsError::HttpDispatch(ref dispatch_error) => {
                dispatch_error.description()
            }
            DescribeReportDefinitionsError::Unknown(ref cause) => cause,
        }
    }
}
/// Errors returned by PutReportDefinition
#[derive(Debug, PartialEq)]
pub enum PutReportDefinitionError {
    ///This exception is thrown when putting a report preference with a name that already exists.
    DuplicateReportName(String),
    ///This exception is thrown on a known dependency failure.
    InternalError(String),
    ///This exception is thrown when the number of report preference reaches max limit. The max number is 5.
    ReportLimitReached(String),
    /// An error occurred dispatching the HTTP request
    HttpDispatch(HttpDispatchError),
    /// An error was encountered with AWS credentials.
    Credentials(CredentialsError),
    /// A validation error occurred.  Details from AWS are provided.
    Validation(String),
    /// An unknown error occurred.  The raw HTTP response is provided.
    Unknown(String),
}


impl PutReportDefinitionError {
    pub fn from_body(body: &str) -> PutReportDefinitionError {
        match from_str::<SerdeJsonValue>(body) {
            Ok(json) => {
                let raw_error_type = json.get("__type")
                    .and_then(|e| e.as_str())
                    .unwrap_or("Unknown");
                let error_message = json.get("message").and_then(|m| m.as_str()).unwrap_or(body);

                let pieces: Vec<&str> = raw_error_type.split("#").collect();
                let error_type = pieces.last().expect("Expected error type");

                match *error_type {
                    "DuplicateReportNameException" => {
                        PutReportDefinitionError::DuplicateReportName(String::from(error_message))
                    }
                    "InternalErrorException" => {
                        PutReportDefinitionError::InternalError(String::from(error_message))
                    }
                    "ReportLimitReachedException" => {
                        PutReportDefinitionError::ReportLimitReached(String::from(error_message))
                    }
                    "ValidationException" => {
                        PutReportDefinitionError::Validation(error_message.to_string())
                    }
                    _ => PutReportDefinitionError::Unknown(String::from(body)),
                }
            }
            Err(_) => PutReportDefinitionError::Unknown(String::from(body)),
        }
    }
}

impl From<serde_json::error::Error> for PutReportDefinitionError {
    fn from(err: serde_json::error::Error) -> PutReportDefinitionError {
        PutReportDefinitionError::Unknown(err.description().to_string())
    }
}
impl From<CredentialsError> for PutReportDefinitionError {
    fn from(err: CredentialsError) -> PutReportDefinitionError {
        PutReportDefinitionError::Credentials(err)
    }
}
impl From<HttpDispatchError> for PutReportDefinitionError {
    fn from(err: HttpDispatchError) -> PutReportDefinitionError {
        PutReportDefinitionError::HttpDispatch(err)
    }
}
impl fmt::Display for PutReportDefinitionError {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "{}", self.description())
    }
}
impl Error for PutReportDefinitionError {
    fn description(&self) -> &str {
        match *self {
            PutReportDefinitionError::DuplicateReportName(ref cause) => cause,
            PutReportDefinitionError::InternalError(ref cause) => cause,
            PutReportDefinitionError::ReportLimitReached(ref cause) => cause,
            PutReportDefinitionError::Validation(ref cause) => cause,
            PutReportDefinitionError::Credentials(ref err) => err.description(),
            PutReportDefinitionError::HttpDispatch(ref dispatch_error) => {
                dispatch_error.description()
            }
            PutReportDefinitionError::Unknown(ref cause) => cause,
        }
    }
}
/// Trait representing the capabilities of the AWS Cost and Usage Report Service API. AWS Cost and Usage Report Service clients implement this trait.
pub trait CostAndUsageReport {
    #[doc="Delete a specified report definition"]
    fn delete_report_definition
        (&self,
         input: &DeleteReportDefinitionRequest)
         -> Result<DeleteReportDefinitionResponse, DeleteReportDefinitionError>;


    #[doc="Describe a list of report definitions owned by the account"]
    fn describe_report_definitions
        (&self,
         input: &DescribeReportDefinitionsRequest)
         -> Result<DescribeReportDefinitionsResponse, DescribeReportDefinitionsError>;


    #[doc="Create a new report definition"]
    fn put_report_definition(&self,
                             input: &PutReportDefinitionRequest)
                             -> Result<PutReportDefinitionResponse, PutReportDefinitionError>;
}
/// A client for the AWS Cost and Usage Report Service API.
pub struct CostAndUsageReportClient<P, D>
    where P: ProvideAwsCredentials,
          D: DispatchSignedRequest
{
    credentials_provider: P,
    region: region::Region,
    dispatcher: D,
}

impl<P, D> CostAndUsageReportClient<P, D>
    where P: ProvideAwsCredentials,
          D: DispatchSignedRequest
{
    pub fn new(request_dispatcher: D, credentials_provider: P, region: region::Region) -> Self {
        CostAndUsageReportClient {
            credentials_provider: credentials_provider,
            region: region,
            dispatcher: request_dispatcher,
        }
    }
}

impl<P, D> CostAndUsageReport for CostAndUsageReportClient<P, D>
    where P: ProvideAwsCredentials,
          D: DispatchSignedRequest
{
    #[doc="Delete a specified report definition"]
    fn delete_report_definition
        (&self,
         input: &DeleteReportDefinitionRequest)
         -> Result<DeleteReportDefinitionResponse, DeleteReportDefinitionError> {
        let mut request = SignedRequest::new("POST", "cur", self.region, "/");

        request.set_content_type("application/x-amz-json-1.1".to_owned());
        request.add_header("x-amz-target",
                           "AWSOrigamiServiceGatewayService.DeleteReportDefinition");
        let encoded = serde_json::to_string(input).unwrap();
        request.set_payload(Some(encoded.into_bytes()));

        request.sign(&try!(self.credentials_provider.credentials()));

        let response = try!(self.dispatcher.dispatch(&request));

        match response.status {
            StatusCode::Ok => {
                            Ok(serde_json::from_str::<DeleteReportDefinitionResponse>(String::from_utf8_lossy(&response.body).as_ref()).unwrap())
                        }
            _ => {
                Err(DeleteReportDefinitionError::from_body(String::from_utf8_lossy(&response.body)
                                                               .as_ref()))
            }
        }
    }


    #[doc="Describe a list of report definitions owned by the account"]
    fn describe_report_definitions
        (&self,
         input: &DescribeReportDefinitionsRequest)
         -> Result<DescribeReportDefinitionsResponse, DescribeReportDefinitionsError> {
        let mut request = SignedRequest::new("POST", "cur", self.region, "/");

        request.set_content_type("application/x-amz-json-1.1".to_owned());
        request.add_header("x-amz-target",
                           "AWSOrigamiServiceGatewayService.DescribeReportDefinitions");
        let encoded = serde_json::to_string(input).unwrap();
        request.set_payload(Some(encoded.into_bytes()));

        request.sign(&try!(self.credentials_provider.credentials()));

        let response = try!(self.dispatcher.dispatch(&request));

        match response.status {
            StatusCode::Ok => {
                            Ok(serde_json::from_str::<DescribeReportDefinitionsResponse>(String::from_utf8_lossy(&response.body).as_ref()).unwrap())
                        }
            _ => Err(DescribeReportDefinitionsError::from_body(String::from_utf8_lossy(&response.body).as_ref())),
        }
    }


    #[doc="Create a new report definition"]
    fn put_report_definition(&self,
                             input: &PutReportDefinitionRequest)
                             -> Result<PutReportDefinitionResponse, PutReportDefinitionError> {
        let mut request = SignedRequest::new("POST", "cur", self.region, "/");

        request.set_content_type("application/x-amz-json-1.1".to_owned());
        request.add_header("x-amz-target",
                           "AWSOrigamiServiceGatewayService.PutReportDefinition");
        let encoded = serde_json::to_string(input).unwrap();
        request.set_payload(Some(encoded.into_bytes()));

        request.sign(&try!(self.credentials_provider.credentials()));

        let response = try!(self.dispatcher.dispatch(&request));

        match response.status {
            StatusCode::Ok => {
                            Ok(serde_json::from_str::<PutReportDefinitionResponse>(String::from_utf8_lossy(&response.body).as_ref()).unwrap())
                        }
            _ => {
                Err(PutReportDefinitionError::from_body(String::from_utf8_lossy(&response.body)
                                                            .as_ref()))
            }
        }
    }
}

#[cfg(test)]
mod protocol_tests {}