aws-sdk-lookoutequipment 1.14.0 → 1.15.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 79df21eb51a166f5663ebb7adee54f1bb5645b69b7f1a350abffc275b3a54e9f
4
- data.tar.gz: 140ef735a8fe446484ba3fefb03daace865b3782f87db5937233a15bcfbde1cf
3
+ metadata.gz: 9555769cb6aa2fc9f768cdd18cd0b073fbcd5375f0bbd4d78c33247773df433d
4
+ data.tar.gz: de8211ad33a5cb59fbcc25f148ace976e21de1e3715cc5fc8438aa6f41d409ac
5
5
  SHA512:
6
- metadata.gz: 18e8881d193d5487c520b90bb553fc4ba740f30c890b77ecd426724d0588067613e8f74fdd5e2cc3464c4f949483002ec440989917dbed56d9ce9f212345957e
7
- data.tar.gz: 4445318b614d47f1f1202de15dd5ca3b7532740899e33ecb13999bea221526a2ca3a920b5fcbc640c2ce15d8b74176e845e8ad47f6e1215c22233b1e6ecdc2ef
6
+ metadata.gz: f5ddf08dc06fd20d3731e12efd85703dab3e2d225f4cdb1f37c303d88c09a8900d8e0e0bfca3d7ccd6886876a71ee9abc5fdc8c9107e58d759b5dae64d036dd1
7
+ data.tar.gz: e1fd102d724b19094e6ab9a61476ad68b5461b7973a35ec8c047c0570319ed092111fc38249717690a1d07842747b465a78cea2fab1b4902659a3899e1a6b537
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.15.0 (2022-12-20)
5
+ ------------------
6
+
7
+ * Feature - This release adds support for listing inference schedulers by status.
8
+
4
9
  1.14.0 (2022-10-25)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.14.0
1
+ 1.15.0
@@ -1566,6 +1566,9 @@ module Aws::LookoutEquipment
1566
1566
  # @option params [String] :model_name
1567
1567
  # The name of the ML model used by the inference scheduler to be listed.
1568
1568
  #
1569
+ # @option params [String] :status
1570
+ # Specifies the current status of the inference schedulers to list.
1571
+ #
1569
1572
  # @return [Types::ListInferenceSchedulersResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1570
1573
  #
1571
1574
  # * {Types::ListInferenceSchedulersResponse#next_token #next_token} => String
@@ -1580,6 +1583,7 @@ module Aws::LookoutEquipment
1580
1583
  # max_results: 1,
1581
1584
  # inference_scheduler_name_begins_with: "InferenceSchedulerIdentifier",
1582
1585
  # model_name: "ModelName",
1586
+ # status: "PENDING", # accepts PENDING, RUNNING, STOPPING, STOPPED
1583
1587
  # })
1584
1588
  #
1585
1589
  # @example Response structure
@@ -2186,7 +2190,7 @@ module Aws::LookoutEquipment
2186
2190
  params: params,
2187
2191
  config: config)
2188
2192
  context[:gem_name] = 'aws-sdk-lookoutequipment'
2189
- context[:gem_version] = '1.14.0'
2193
+ context[:gem_version] = '1.15.0'
2190
2194
  Seahorse::Client::Request.new(handlers, context)
2191
2195
  end
2192
2196
 
@@ -591,6 +591,7 @@ module Aws::LookoutEquipment
591
591
  ListInferenceSchedulersRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults"))
592
592
  ListInferenceSchedulersRequest.add_member(:inference_scheduler_name_begins_with, Shapes::ShapeRef.new(shape: InferenceSchedulerIdentifier, location_name: "InferenceSchedulerNameBeginsWith"))
593
593
  ListInferenceSchedulersRequest.add_member(:model_name, Shapes::ShapeRef.new(shape: ModelName, location_name: "ModelName"))
594
+ ListInferenceSchedulersRequest.add_member(:status, Shapes::ShapeRef.new(shape: InferenceSchedulerStatus, location_name: "Status"))
594
595
  ListInferenceSchedulersRequest.struct_class = Types::ListInferenceSchedulersRequest
595
596
 
596
597
  ListInferenceSchedulersResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
@@ -876,6 +877,7 @@ module Aws::LookoutEquipment
876
877
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
877
878
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
878
879
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
880
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
879
881
  end)
880
882
 
881
883
  api.add_operation(:delete_inference_scheduler, Seahorse::Model::Operation.new.tap do |o|
@@ -903,6 +905,7 @@ module Aws::LookoutEquipment
903
905
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
904
906
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
905
907
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
908
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
906
909
  end)
907
910
 
908
911
  api.add_operation(:delete_label_group, Seahorse::Model::Operation.new.tap do |o|
@@ -916,6 +919,7 @@ module Aws::LookoutEquipment
916
919
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
917
920
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
918
921
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
922
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
919
923
  end)
920
924
 
921
925
  api.add_operation(:delete_model, Seahorse::Model::Operation.new.tap do |o|
@@ -929,6 +933,7 @@ module Aws::LookoutEquipment
929
933
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
930
934
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
931
935
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
936
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
932
937
  end)
933
938
 
934
939
  api.add_operation(:describe_data_ingestion_job, Seahorse::Model::Operation.new.tap do |o|
@@ -50,6 +50,9 @@ module Aws::LookoutEquipment
50
50
 
51
51
  def initialize(options = {})
52
52
  self[:region] = options[:region]
53
+ if self[:region].nil?
54
+ raise ArgumentError, "Missing required EndpointParameter: :region"
55
+ end
53
56
  self[:use_dual_stack] = options[:use_dual_stack]
54
57
  self[:use_dual_stack] = false if self[:use_dual_stack].nil?
55
58
  if self[:use_dual_stack].nil?
@@ -29,83 +29,82 @@ module Aws::LookoutEquipment
29
29
  # @api private
30
30
  RULES = <<-JSON
31
31
  eyJ2ZXJzaW9uIjoiMS4wIiwicGFyYW1ldGVycyI6eyJSZWdpb24iOnsiYnVp
32
- bHRJbiI6IkFXUzo6UmVnaW9uIiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1bWVu
33
- dGF0aW9uIjoiVGhlIEFXUyByZWdpb24gdXNlZCB0byBkaXNwYXRjaCB0aGUg
34
- cmVxdWVzdC4iLCJ0eXBlIjoiU3RyaW5nIn0sIlVzZUR1YWxTdGFjayI6eyJi
35
- dWlsdEluIjoiQVdTOjpVc2VEdWFsU3RhY2siLCJyZXF1aXJlZCI6dHJ1ZSwi
36
- ZGVmYXVsdCI6ZmFsc2UsImRvY3VtZW50YXRpb24iOiJXaGVuIHRydWUsIHVz
37
- ZSB0aGUgZHVhbC1zdGFjayBlbmRwb2ludC4gSWYgdGhlIGNvbmZpZ3VyZWQg
38
- ZW5kcG9pbnQgZG9lcyBub3Qgc3VwcG9ydCBkdWFsLXN0YWNrLCBkaXNwYXRj
39
- aGluZyB0aGUgcmVxdWVzdCBNQVkgcmV0dXJuIGFuIGVycm9yLiIsInR5cGUi
40
- OiJCb29sZWFuIn0sIlVzZUZJUFMiOnsiYnVpbHRJbiI6IkFXUzo6VXNlRklQ
41
- UyIsInJlcXVpcmVkIjp0cnVlLCJkZWZhdWx0IjpmYWxzZSwiZG9jdW1lbnRh
42
- dGlvbiI6IldoZW4gdHJ1ZSwgc2VuZCB0aGlzIHJlcXVlc3QgdG8gdGhlIEZJ
43
- UFMtY29tcGxpYW50IHJlZ2lvbmFsIGVuZHBvaW50LiBJZiB0aGUgY29uZmln
44
- dXJlZCBlbmRwb2ludCBkb2VzIG5vdCBoYXZlIGEgRklQUyBjb21wbGlhbnQg
45
- ZW5kcG9pbnQsIGRpc3BhdGNoaW5nIHRoZSByZXF1ZXN0IHdpbGwgcmV0dXJu
46
- IGFuIGVycm9yLiIsInR5cGUiOiJCb29sZWFuIn0sIkVuZHBvaW50Ijp7ImJ1
47
- aWx0SW4iOiJTREs6OkVuZHBvaW50IiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1
48
- bWVudGF0aW9uIjoiT3ZlcnJpZGUgdGhlIGVuZHBvaW50IHVzZWQgdG8gc2Vu
49
- ZCB0aGlzIHJlcXVlc3QiLCJ0eXBlIjoiU3RyaW5nIn19LCJydWxlcyI6W3si
50
- Y29uZGl0aW9ucyI6W3siZm4iOiJhd3MucGFydGl0aW9uIiwiYXJndiI6W3si
51
- cmVmIjoiUmVnaW9uIn1dLCJhc3NpZ24iOiJQYXJ0aXRpb25SZXN1bHQifV0s
52
- InR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoi
53
- aXNTZXQiLCJhcmd2IjpbeyJyZWYiOiJFbmRwb2ludCJ9XX0seyJmbiI6InBh
54
- cnNlVVJMIiwiYXJndiI6W3sicmVmIjoiRW5kcG9pbnQifV0sImFzc2lnbiI6
55
- InVybCJ9XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6
56
- W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQ
57
- UyJ9LHRydWVdfV0sImVycm9yIjoiSW52YWxpZCBDb25maWd1cmF0aW9uOiBG
58
- SVBTIGFuZCBjdXN0b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0
59
- eXBlIjoiZXJyb3IifSx7ImNvbmRpdGlvbnMiOltdLCJ0eXBlIjoidHJlZSIs
60
- InJ1bGVzIjpbeyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMi
61
- LCJhcmd2IjpbeyJyZWYiOiJVc2VEdWFsU3RhY2sifSx0cnVlXX1dLCJlcnJv
62
- ciI6IkludmFsaWQgQ29uZmlndXJhdGlvbjogRHVhbHN0YWNrIGFuZCBjdXN0
63
- b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0eXBlIjoiZXJyb3Ii
64
- fSx7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOnsicmVmIjoi
65
- RW5kcG9pbnQifSwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlw
66
- ZSI6ImVuZHBvaW50In1dfV19LHsiY29uZGl0aW9ucyI6W3siZm4iOiJib29s
67
- ZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQUyJ9LHRydWVdfSx7
68
- ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUR1YWxT
69
- dGFjayJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRp
70
- dGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsi
71
- Zm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0
72
- In0sInN1cHBvcnRzRklQUyJdfV19LHsiZm4iOiJib29sZWFuRXF1YWxzIiwi
73
- YXJndiI6W3RydWUseyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQ
74
- YXJ0aXRpb25SZXN1bHQifSwic3VwcG9ydHNEdWFsU3RhY2siXX1dfV0sInR5
75
- cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2lu
76
- dCI6eyJ1cmwiOiJodHRwczovL2xvb2tvdXRlcXVpcG1lbnQtZmlwcy57UmVn
77
- aW9ufS57UGFydGl0aW9uUmVzdWx0I2R1YWxTdGFja0Ruc1N1ZmZpeH0iLCJw
32
+ bHRJbiI6IkFXUzo6UmVnaW9uIiwicmVxdWlyZWQiOnRydWUsImRvY3VtZW50
33
+ YXRpb24iOiJUaGUgQVdTIHJlZ2lvbiB1c2VkIHRvIGRpc3BhdGNoIHRoZSBy
34
+ ZXF1ZXN0LiIsInR5cGUiOiJTdHJpbmcifSwiVXNlRHVhbFN0YWNrIjp7ImJ1
35
+ aWx0SW4iOiJBV1M6OlVzZUR1YWxTdGFjayIsInJlcXVpcmVkIjp0cnVlLCJk
36
+ ZWZhdWx0IjpmYWxzZSwiZG9jdW1lbnRhdGlvbiI6IldoZW4gdHJ1ZSwgdXNl
37
+ IHRoZSBkdWFsLXN0YWNrIGVuZHBvaW50LiBJZiB0aGUgY29uZmlndXJlZCBl
38
+ bmRwb2ludCBkb2VzIG5vdCBzdXBwb3J0IGR1YWwtc3RhY2ssIGRpc3BhdGNo
39
+ aW5nIHRoZSByZXF1ZXN0IE1BWSByZXR1cm4gYW4gZXJyb3IuIiwidHlwZSI6
40
+ IkJvb2xlYW4ifSwiVXNlRklQUyI6eyJidWlsdEluIjoiQVdTOjpVc2VGSVBT
41
+ IiwicmVxdWlyZWQiOnRydWUsImRlZmF1bHQiOmZhbHNlLCJkb2N1bWVudGF0
42
+ aW9uIjoiV2hlbiB0cnVlLCBzZW5kIHRoaXMgcmVxdWVzdCB0byB0aGUgRklQ
43
+ Uy1jb21wbGlhbnQgcmVnaW9uYWwgZW5kcG9pbnQuIElmIHRoZSBjb25maWd1
44
+ cmVkIGVuZHBvaW50IGRvZXMgbm90IGhhdmUgYSBGSVBTIGNvbXBsaWFudCBl
45
+ bmRwb2ludCwgZGlzcGF0Y2hpbmcgdGhlIHJlcXVlc3Qgd2lsbCByZXR1cm4g
46
+ YW4gZXJyb3IuIiwidHlwZSI6IkJvb2xlYW4ifSwiRW5kcG9pbnQiOnsiYnVp
47
+ bHRJbiI6IlNESzo6RW5kcG9pbnQiLCJyZXF1aXJlZCI6ZmFsc2UsImRvY3Vt
48
+ ZW50YXRpb24iOiJPdmVycmlkZSB0aGUgZW5kcG9pbnQgdXNlZCB0byBzZW5k
49
+ IHRoaXMgcmVxdWVzdCIsInR5cGUiOiJTdHJpbmcifX0sInJ1bGVzIjpbeyJj
50
+ b25kaXRpb25zIjpbeyJmbiI6ImF3cy5wYXJ0aXRpb24iLCJhcmd2IjpbeyJy
51
+ ZWYiOiJSZWdpb24ifV0sImFzc2lnbiI6IlBhcnRpdGlvblJlc3VsdCJ9XSwi
52
+ dHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6W3siZm4iOiJp
53
+ c1NldCIsImFyZ3YiOlt7InJlZiI6IkVuZHBvaW50In1dfV0sInR5cGUiOiJ0
54
+ cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVx
55
+ dWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUZJUFMifSx0cnVlXX1dLCJlcnJv
56
+ ciI6IkludmFsaWQgQ29uZmlndXJhdGlvbjogRklQUyBhbmQgY3VzdG9tIGVu
57
+ ZHBvaW50IGFyZSBub3Qgc3VwcG9ydGVkIiwidHlwZSI6ImVycm9yIn0seyJj
58
+ b25kaXRpb25zIjpbXSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0
59
+ aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoi
60
+ VXNlRHVhbFN0YWNrIn0sdHJ1ZV19XSwiZXJyb3IiOiJJbnZhbGlkIENvbmZp
61
+ Z3VyYXRpb246IER1YWxzdGFjayBhbmQgY3VzdG9tIGVuZHBvaW50IGFyZSBu
62
+ b3Qgc3VwcG9ydGVkIiwidHlwZSI6ImVycm9yIn0seyJjb25kaXRpb25zIjpb
63
+ XSwiZW5kcG9pbnQiOnsidXJsIjp7InJlZiI6IkVuZHBvaW50In0sInByb3Bl
64
+ cnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX1d
65
+ fSx7ImNvbmRpdGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3Yi
66
+ Olt7InJlZiI6IlVzZUZJUFMifSx0cnVlXX0seyJmbiI6ImJvb2xlYW5FcXVh
67
+ bHMiLCJhcmd2IjpbeyJyZWYiOiJVc2VEdWFsU3RhY2sifSx0cnVlXX1dLCJ0
68
+ eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRpb25zIjpbeyJmbiI6ImJv
69
+ b2xlYW5FcXVhbHMiLCJhcmd2IjpbdHJ1ZSx7ImZuIjoiZ2V0QXR0ciIsImFy
70
+ Z3YiOlt7InJlZiI6IlBhcnRpdGlvblJlc3VsdCJ9LCJzdXBwb3J0c0ZJUFMi
71
+ XX1dfSx7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsiZm4i
72
+ OiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0In0s
73
+ InN1cHBvcnRzRHVhbFN0YWNrIl19XX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVz
74
+ IjpbeyJjb25kaXRpb25zIjpbXSwiZW5kcG9pbnQiOnsidXJsIjoiaHR0cHM6
75
+ Ly9sb29rb3V0ZXF1aXBtZW50LWZpcHMue1JlZ2lvbn0ue1BhcnRpdGlvblJl
76
+ c3VsdCNkdWFsU3RhY2tEbnNTdWZmaXh9IiwicHJvcGVydGllcyI6e30sImhl
77
+ YWRlcnMiOnt9fSwidHlwZSI6ImVuZHBvaW50In1dfSx7ImNvbmRpdGlvbnMi
78
+ OltdLCJlcnJvciI6IkZJUFMgYW5kIER1YWxTdGFjayBhcmUgZW5hYmxlZCwg
79
+ YnV0IHRoaXMgcGFydGl0aW9uIGRvZXMgbm90IHN1cHBvcnQgb25lIG9yIGJv
80
+ dGgiLCJ0eXBlIjoiZXJyb3IifV19LHsiY29uZGl0aW9ucyI6W3siZm4iOiJi
81
+ b29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQUyJ9LHRydWVd
82
+ fV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZu
83
+ IjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsiZm4iOiJnZXRBdHRy
84
+ IiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0In0sInN1cHBvcnRz
85
+ RklQUyJdfV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9u
86
+ cyI6W10sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOltd
87
+ LCJlbmRwb2ludCI6eyJ1cmwiOiJodHRwczovL2xvb2tvdXRlcXVpcG1lbnQt
88
+ Zmlwcy57UmVnaW9ufS57UGFydGl0aW9uUmVzdWx0I2Ruc1N1ZmZpeH0iLCJw
78
89
  cm9wZXJ0aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0eXBlIjoiZW5kcG9pbnQi
79
- fV19LHsiY29uZGl0aW9ucyI6W10sImVycm9yIjoiRklQUyBhbmQgRHVhbFN0
80
- YWNrIGFyZSBlbmFibGVkLCBidXQgdGhpcyBwYXJ0aXRpb24gZG9lcyBub3Qg
81
- c3VwcG9ydCBvbmUgb3IgYm90aCIsInR5cGUiOiJlcnJvciJ9XX0seyJjb25k
82
- aXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbeyJyZWYi
83
- OiJVc2VGSVBTIn0sdHJ1ZV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3si
84
- Y29uZGl0aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3Ry
85
- dWUseyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQYXJ0aXRpb25S
86
- ZXN1bHQifSwic3VwcG9ydHNGSVBTIl19XX1dLCJ0eXBlIjoidHJlZSIsInJ1
87
- bGVzIjpbeyJjb25kaXRpb25zIjpbXSwidHlwZSI6InRyZWUiLCJydWxlcyI6
88
- W3siY29uZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6Imh0dHBzOi8v
89
- bG9va291dGVxdWlwbWVudC1maXBzLntSZWdpb259LntQYXJ0aXRpb25SZXN1
90
- bHQjZG5zU3VmZml4fSIsInByb3BlcnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0s
91
- InR5cGUiOiJlbmRwb2ludCJ9XX1dfSx7ImNvbmRpdGlvbnMiOltdLCJlcnJv
92
- ciI6IkZJUFMgaXMgZW5hYmxlZCBidXQgdGhpcyBwYXJ0aXRpb24gZG9lcyBu
93
- b3Qgc3VwcG9ydCBGSVBTIiwidHlwZSI6ImVycm9yIn1dfSx7ImNvbmRpdGlv
94
- bnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVz
95
- ZUR1YWxTdGFjayJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7
96
- ImNvbmRpdGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0
97
- cnVlLHsiZm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9u
98
- UmVzdWx0In0sInN1cHBvcnRzRHVhbFN0YWNrIl19XX1dLCJ0eXBlIjoidHJl
99
- ZSIsInJ1bGVzIjpbeyJjb25kaXRpb25zIjpbXSwiZW5kcG9pbnQiOnsidXJs
100
- IjoiaHR0cHM6Ly9sb29rb3V0ZXF1aXBtZW50LntSZWdpb259LntQYXJ0aXRp
101
- b25SZXN1bHQjZHVhbFN0YWNrRG5zU3VmZml4fSIsInByb3BlcnRpZXMiOnt9
102
- LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX0seyJjb25kaXRp
103
- b25zIjpbXSwiZXJyb3IiOiJEdWFsU3RhY2sgaXMgZW5hYmxlZCBidXQgdGhp
104
- cyBwYXJ0aXRpb24gZG9lcyBub3Qgc3VwcG9ydCBEdWFsU3RhY2siLCJ0eXBl
105
- IjoiZXJyb3IifV19LHsiY29uZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7InVy
106
- bCI6Imh0dHBzOi8vbG9va291dGVxdWlwbWVudC57UmVnaW9ufS57UGFydGl0
107
- aW9uUmVzdWx0I2Ruc1N1ZmZpeH0iLCJwcm9wZXJ0aWVzIjp7fSwiaGVhZGVy
108
- cyI6e319LCJ0eXBlIjoiZW5kcG9pbnQifV19XX0=
90
+ fV19XX0seyJjb25kaXRpb25zIjpbXSwiZXJyb3IiOiJGSVBTIGlzIGVuYWJs
91
+ ZWQgYnV0IHRoaXMgcGFydGl0aW9uIGRvZXMgbm90IHN1cHBvcnQgRklQUyIs
92
+ InR5cGUiOiJlcnJvciJ9XX0seyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xl
93
+ YW5FcXVhbHMiLCJhcmd2IjpbeyJyZWYiOiJVc2VEdWFsU3RhY2sifSx0cnVl
94
+ XX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRpb25zIjpbeyJm
95
+ biI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbdHJ1ZSx7ImZuIjoiZ2V0QXR0
96
+ ciIsImFyZ3YiOlt7InJlZiI6IlBhcnRpdGlvblJlc3VsdCJ9LCJzdXBwb3J0
97
+ c0R1YWxTdGFjayJdfV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29u
98
+ ZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6Imh0dHBzOi8vbG9va291
99
+ dGVxdWlwbWVudC57UmVnaW9ufS57UGFydGl0aW9uUmVzdWx0I2R1YWxTdGFj
100
+ a0Ruc1N1ZmZpeH0iLCJwcm9wZXJ0aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0
101
+ eXBlIjoiZW5kcG9pbnQifV19LHsiY29uZGl0aW9ucyI6W10sImVycm9yIjoi
102
+ RHVhbFN0YWNrIGlzIGVuYWJsZWQgYnV0IHRoaXMgcGFydGl0aW9uIGRvZXMg
103
+ bm90IHN1cHBvcnQgRHVhbFN0YWNrIiwidHlwZSI6ImVycm9yIn1dfSx7ImNv
104
+ bmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOiJodHRwczovL2xvb2tv
105
+ dXRlcXVpcG1lbnQue1JlZ2lvbn0ue1BhcnRpdGlvblJlc3VsdCNkbnNTdWZm
106
+ aXh9IiwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlwZSI6ImVu
107
+ ZHBvaW50In1dfV19
109
108
 
110
109
  JSON
111
110
  end
@@ -77,24 +77,6 @@ module Aws::LookoutEquipment
77
77
  include Aws::Structure
78
78
  end
79
79
 
80
- # @note When making an API call, you may pass CreateDatasetRequest
81
- # data as a hash:
82
- #
83
- # {
84
- # dataset_name: "DatasetName", # required
85
- # dataset_schema: {
86
- # inline_data_schema: "InlineDataSchema",
87
- # },
88
- # server_side_kms_key_id: "NameOrArn",
89
- # client_token: "IdempotenceToken", # required
90
- # tags: [
91
- # {
92
- # key: "TagKey", # required
93
- # value: "TagValue", # required
94
- # },
95
- # ],
96
- # }
97
- #
98
80
  # @!attribute [rw] dataset_name
99
81
  # The name of the dataset being created.
100
82
  # @return [String]
@@ -155,43 +137,6 @@ module Aws::LookoutEquipment
155
137
  include Aws::Structure
156
138
  end
157
139
 
158
- # @note When making an API call, you may pass CreateInferenceSchedulerRequest
159
- # data as a hash:
160
- #
161
- # {
162
- # model_name: "ModelName", # required
163
- # inference_scheduler_name: "InferenceSchedulerName", # required
164
- # data_delay_offset_in_minutes: 1,
165
- # data_upload_frequency: "PT5M", # required, accepts PT5M, PT10M, PT15M, PT30M, PT1H
166
- # data_input_configuration: { # required
167
- # s3_input_configuration: {
168
- # bucket: "S3Bucket", # required
169
- # prefix: "S3Prefix",
170
- # },
171
- # input_time_zone_offset: "TimeZoneOffset",
172
- # inference_input_name_configuration: {
173
- # timestamp_format: "FileNameTimestampFormat",
174
- # component_timestamp_delimiter: "ComponentTimestampDelimiter",
175
- # },
176
- # },
177
- # data_output_configuration: { # required
178
- # s3_output_configuration: { # required
179
- # bucket: "S3Bucket", # required
180
- # prefix: "S3Prefix",
181
- # },
182
- # kms_key_id: "NameOrArn",
183
- # },
184
- # role_arn: "IamRoleArn", # required
185
- # server_side_kms_key_id: "NameOrArn",
186
- # client_token: "IdempotenceToken", # required
187
- # tags: [
188
- # {
189
- # key: "TagKey", # required
190
- # value: "TagValue", # required
191
- # },
192
- # ],
193
- # }
194
- #
195
140
  # @!attribute [rw] model_name
196
141
  # The name of the previously trained ML model being used to create the
197
142
  # inference scheduler.
@@ -307,21 +252,6 @@ module Aws::LookoutEquipment
307
252
  include Aws::Structure
308
253
  end
309
254
 
310
- # @note When making an API call, you may pass CreateLabelGroupRequest
311
- # data as a hash:
312
- #
313
- # {
314
- # label_group_name: "LabelGroupName", # required
315
- # fault_codes: ["FaultCode"],
316
- # client_token: "IdempotenceToken", # required
317
- # tags: [
318
- # {
319
- # key: "TagKey", # required
320
- # value: "TagValue", # required
321
- # },
322
- # ],
323
- # }
324
- #
325
255
  # @!attribute [rw] label_group_name
326
256
  # Names a group of labels.
327
257
  #
@@ -383,20 +313,6 @@ module Aws::LookoutEquipment
383
313
  include Aws::Structure
384
314
  end
385
315
 
386
- # @note When making an API call, you may pass CreateLabelRequest
387
- # data as a hash:
388
- #
389
- # {
390
- # label_group_name: "LabelGroupName", # required
391
- # start_time: Time.now, # required
392
- # end_time: Time.now, # required
393
- # rating: "ANOMALY", # required, accepts ANOMALY, NO_ANOMALY, NEUTRAL
394
- # fault_code: "FaultCode",
395
- # notes: "Comments",
396
- # equipment: "Equipment",
397
- # client_token: "IdempotenceToken", # required
398
- # }
399
- #
400
316
  # @!attribute [rw] label_group_name
401
317
  # The name of a group of labels.
402
318
  #
@@ -473,41 +389,6 @@ module Aws::LookoutEquipment
473
389
  include Aws::Structure
474
390
  end
475
391
 
476
- # @note When making an API call, you may pass CreateModelRequest
477
- # data as a hash:
478
- #
479
- # {
480
- # model_name: "ModelName", # required
481
- # dataset_name: "DatasetIdentifier", # required
482
- # dataset_schema: {
483
- # inline_data_schema: "InlineDataSchema",
484
- # },
485
- # labels_input_configuration: {
486
- # s3_input_configuration: {
487
- # bucket: "S3Bucket", # required
488
- # prefix: "S3Prefix",
489
- # },
490
- # label_group_name: "LabelGroupName",
491
- # },
492
- # client_token: "IdempotenceToken", # required
493
- # training_data_start_time: Time.now,
494
- # training_data_end_time: Time.now,
495
- # evaluation_data_start_time: Time.now,
496
- # evaluation_data_end_time: Time.now,
497
- # role_arn: "IamRoleArn",
498
- # data_pre_processing_configuration: {
499
- # target_sampling_rate: "PT1S", # accepts PT1S, PT5S, PT10S, PT15S, PT30S, PT1M, PT5M, PT10M, PT15M, PT30M, PT1H
500
- # },
501
- # server_side_kms_key_id: "NameOrArn",
502
- # tags: [
503
- # {
504
- # key: "TagKey", # required
505
- # value: "TagValue", # required
506
- # },
507
- # ],
508
- # off_condition: "OffCondition",
509
- # }
510
- #
511
392
  # @!attribute [rw] model_name
512
393
  # The name for the ML model to be created.
513
394
  # @return [String]
@@ -673,13 +554,6 @@ module Aws::LookoutEquipment
673
554
  # is therefore *PT1S*, the value for a 15 minute rate is *PT15M*, and
674
555
  # the value for a 1 hour rate is *PT1H*
675
556
  #
676
- # @note When making an API call, you may pass DataPreProcessingConfiguration
677
- # data as a hash:
678
- #
679
- # {
680
- # target_sampling_rate: "PT1S", # accepts PT1S, PT5S, PT10S, PT15S, PT30S, PT1M, PT5M, PT10M, PT15M, PT30M, PT1H
681
- # }
682
- #
683
557
  # @!attribute [rw] target_sampling_rate
684
558
  # The sampling rate of the data after post processing by Amazon
685
559
  # Lookout for Equipment. For example, if you provide data that has
@@ -748,13 +622,6 @@ module Aws::LookoutEquipment
748
622
  # Provides information about the data schema used with the given
749
623
  # dataset.
750
624
  #
751
- # @note When making an API call, you may pass DatasetSchema
752
- # data as a hash:
753
- #
754
- # {
755
- # inline_data_schema: "InlineDataSchema",
756
- # }
757
- #
758
625
  # @!attribute [rw] inline_data_schema
759
626
  # @return [String]
760
627
  #
@@ -797,13 +664,6 @@ module Aws::LookoutEquipment
797
664
  include Aws::Structure
798
665
  end
799
666
 
800
- # @note When making an API call, you may pass DeleteDatasetRequest
801
- # data as a hash:
802
- #
803
- # {
804
- # dataset_name: "DatasetIdentifier", # required
805
- # }
806
- #
807
667
  # @!attribute [rw] dataset_name
808
668
  # The name of the dataset to be deleted.
809
669
  # @return [String]
@@ -816,13 +676,6 @@ module Aws::LookoutEquipment
816
676
  include Aws::Structure
817
677
  end
818
678
 
819
- # @note When making an API call, you may pass DeleteInferenceSchedulerRequest
820
- # data as a hash:
821
- #
822
- # {
823
- # inference_scheduler_name: "InferenceSchedulerIdentifier", # required
824
- # }
825
- #
826
679
  # @!attribute [rw] inference_scheduler_name
827
680
  # The name of the inference scheduler to be deleted.
828
681
  # @return [String]
@@ -835,13 +688,6 @@ module Aws::LookoutEquipment
835
688
  include Aws::Structure
836
689
  end
837
690
 
838
- # @note When making an API call, you may pass DeleteLabelGroupRequest
839
- # data as a hash:
840
- #
841
- # {
842
- # label_group_name: "LabelGroupName", # required
843
- # }
844
- #
845
691
  # @!attribute [rw] label_group_name
846
692
  # The name of the label group that you want to delete. Data in this
847
693
  # field will be retained for service usage. Follow best practices for
@@ -856,14 +702,6 @@ module Aws::LookoutEquipment
856
702
  include Aws::Structure
857
703
  end
858
704
 
859
- # @note When making an API call, you may pass DeleteLabelRequest
860
- # data as a hash:
861
- #
862
- # {
863
- # label_group_name: "LabelGroupName", # required
864
- # label_id: "LabelId", # required
865
- # }
866
- #
867
705
  # @!attribute [rw] label_group_name
868
706
  # The name of the label group that contains the label that you want to
869
707
  # delete. Data in this field will be retained for service usage.
@@ -883,13 +721,6 @@ module Aws::LookoutEquipment
883
721
  include Aws::Structure
884
722
  end
885
723
 
886
- # @note When making an API call, you may pass DeleteModelRequest
887
- # data as a hash:
888
- #
889
- # {
890
- # model_name: "ModelName", # required
891
- # }
892
- #
893
724
  # @!attribute [rw] model_name
894
725
  # The name of the ML model to be deleted.
895
726
  # @return [String]
@@ -902,13 +733,6 @@ module Aws::LookoutEquipment
902
733
  include Aws::Structure
903
734
  end
904
735
 
905
- # @note When making an API call, you may pass DescribeDataIngestionJobRequest
906
- # data as a hash:
907
- #
908
- # {
909
- # job_id: "IngestionJobId", # required
910
- # }
911
- #
912
736
  # @!attribute [rw] job_id
913
737
  # The job ID of the data ingestion job.
914
738
  # @return [String]
@@ -1005,13 +829,6 @@ module Aws::LookoutEquipment
1005
829
  include Aws::Structure
1006
830
  end
1007
831
 
1008
- # @note When making an API call, you may pass DescribeDatasetRequest
1009
- # data as a hash:
1010
- #
1011
- # {
1012
- # dataset_name: "DatasetIdentifier", # required
1013
- # }
1014
- #
1015
832
  # @!attribute [rw] dataset_name
1016
833
  # The name of the dataset to be described.
1017
834
  # @return [String]
@@ -1110,13 +927,6 @@ module Aws::LookoutEquipment
1110
927
  include Aws::Structure
1111
928
  end
1112
929
 
1113
- # @note When making an API call, you may pass DescribeInferenceSchedulerRequest
1114
- # data as a hash:
1115
- #
1116
- # {
1117
- # inference_scheduler_name: "InferenceSchedulerIdentifier", # required
1118
- # }
1119
- #
1120
930
  # @!attribute [rw] inference_scheduler_name
1121
931
  # The name of the inference scheduler being described.
1122
932
  # @return [String]
@@ -1230,13 +1040,6 @@ module Aws::LookoutEquipment
1230
1040
  include Aws::Structure
1231
1041
  end
1232
1042
 
1233
- # @note When making an API call, you may pass DescribeLabelGroupRequest
1234
- # data as a hash:
1235
- #
1236
- # {
1237
- # label_group_name: "LabelGroupName", # required
1238
- # }
1239
- #
1240
1043
  # @!attribute [rw] label_group_name
1241
1044
  # Returns the name of the label group.
1242
1045
  # @return [String]
@@ -1282,14 +1085,6 @@ module Aws::LookoutEquipment
1282
1085
  include Aws::Structure
1283
1086
  end
1284
1087
 
1285
- # @note When making an API call, you may pass DescribeLabelRequest
1286
- # data as a hash:
1287
- #
1288
- # {
1289
- # label_group_name: "LabelGroupName", # required
1290
- # label_id: "LabelId", # required
1291
- # }
1292
- #
1293
1088
  # @!attribute [rw] label_group_name
1294
1089
  # Returns the name of the group containing the label.
1295
1090
  # @return [String]
@@ -1370,13 +1165,6 @@ module Aws::LookoutEquipment
1370
1165
  include Aws::Structure
1371
1166
  end
1372
1167
 
1373
- # @note When making an API call, you may pass DescribeModelRequest
1374
- # data as a hash:
1375
- #
1376
- # {
1377
- # model_name: "ModelName", # required
1378
- # }
1379
- #
1380
1168
  # @!attribute [rw] model_name
1381
1169
  # The name of the ML model to be described.
1382
1170
  # @return [String]
@@ -1669,21 +1457,6 @@ module Aws::LookoutEquipment
1669
1457
  # Specifies configuration information for the input data for the
1670
1458
  # inference, including Amazon S3 location of input data..
1671
1459
  #
1672
- # @note When making an API call, you may pass InferenceInputConfiguration
1673
- # data as a hash:
1674
- #
1675
- # {
1676
- # s3_input_configuration: {
1677
- # bucket: "S3Bucket", # required
1678
- # prefix: "S3Prefix",
1679
- # },
1680
- # input_time_zone_offset: "TimeZoneOffset",
1681
- # inference_input_name_configuration: {
1682
- # timestamp_format: "FileNameTimestampFormat",
1683
- # component_timestamp_delimiter: "ComponentTimestampDelimiter",
1684
- # },
1685
- # }
1686
- #
1687
1460
  # @!attribute [rw] s3_input_configuration
1688
1461
  # Specifies configuration information for the input data for the
1689
1462
  # inference, including Amazon S3 location of input data.
@@ -1712,14 +1485,6 @@ module Aws::LookoutEquipment
1712
1485
  # Specifies configuration information for the input data for the
1713
1486
  # inference, including timestamp format and delimiter.
1714
1487
  #
1715
- # @note When making an API call, you may pass InferenceInputNameConfiguration
1716
- # data as a hash:
1717
- #
1718
- # {
1719
- # timestamp_format: "FileNameTimestampFormat",
1720
- # component_timestamp_delimiter: "ComponentTimestampDelimiter",
1721
- # }
1722
- #
1723
1488
  # @!attribute [rw] timestamp_format
1724
1489
  # The format of the timestamp, whether Epoch time, or standard, with
1725
1490
  # or without hyphens (-).
@@ -1741,17 +1506,6 @@ module Aws::LookoutEquipment
1741
1506
  # Specifies configuration information for the output results from for
1742
1507
  # the inference, including KMS key ID and output S3 location.
1743
1508
  #
1744
- # @note When making an API call, you may pass InferenceOutputConfiguration
1745
- # data as a hash:
1746
- #
1747
- # {
1748
- # s3_output_configuration: { # required
1749
- # bucket: "S3Bucket", # required
1750
- # prefix: "S3Prefix",
1751
- # },
1752
- # kms_key_id: "NameOrArn",
1753
- # }
1754
- #
1755
1509
  # @!attribute [rw] s3_output_configuration
1756
1510
  # Specifies configuration information for the output results from for
1757
1511
  # the inference, output S3 location.
@@ -1774,14 +1528,6 @@ module Aws::LookoutEquipment
1774
1528
  # Specifies configuration information for the input data for the
1775
1529
  # inference, including input data S3 location.
1776
1530
  #
1777
- # @note When making an API call, you may pass InferenceS3InputConfiguration
1778
- # data as a hash:
1779
- #
1780
- # {
1781
- # bucket: "S3Bucket", # required
1782
- # prefix: "S3Prefix",
1783
- # }
1784
- #
1785
1531
  # @!attribute [rw] bucket
1786
1532
  # The bucket containing the input dataset for the inference.
1787
1533
  # @return [String]
@@ -1803,14 +1549,6 @@ module Aws::LookoutEquipment
1803
1549
  # Specifies configuration information for the output results from the
1804
1550
  # inference, including output S3 location.
1805
1551
  #
1806
- # @note When making an API call, you may pass InferenceS3OutputConfiguration
1807
- # data as a hash:
1808
- #
1809
- # {
1810
- # bucket: "S3Bucket", # required
1811
- # prefix: "S3Prefix",
1812
- # }
1813
- #
1814
1552
  # @!attribute [rw] bucket
1815
1553
  # The bucket containing the output results from the inference
1816
1554
  # @return [String]
@@ -1927,17 +1665,6 @@ module Aws::LookoutEquipment
1927
1665
  # Specifies configuration information for the input data for the data
1928
1666
  # ingestion job, including input data S3 location.
1929
1667
  #
1930
- # @note When making an API call, you may pass IngestionInputConfiguration
1931
- # data as a hash:
1932
- #
1933
- # {
1934
- # s3_input_configuration: { # required
1935
- # bucket: "S3Bucket", # required
1936
- # prefix: "S3Prefix",
1937
- # key_pattern: "KeyPattern",
1938
- # },
1939
- # }
1940
- #
1941
1668
  # @!attribute [rw] s3_input_configuration
1942
1669
  # The location information for the S3 bucket used for input data for
1943
1670
  # the data ingestion.
@@ -1954,15 +1681,6 @@ module Aws::LookoutEquipment
1954
1681
  # Specifies S3 configuration information for the input data for the data
1955
1682
  # ingestion job.
1956
1683
  #
1957
- # @note When making an API call, you may pass IngestionS3InputConfiguration
1958
- # data as a hash:
1959
- #
1960
- # {
1961
- # bucket: "S3Bucket", # required
1962
- # prefix: "S3Prefix",
1963
- # key_pattern: "KeyPattern",
1964
- # }
1965
- #
1966
1684
  # @!attribute [rw] bucket
1967
1685
  # The name of the S3 bucket used for the input data for the data
1968
1686
  # ingestion.
@@ -2136,17 +1854,6 @@ module Aws::LookoutEquipment
2136
1854
  # Contains the configuration information for the S3 location being used
2137
1855
  # to hold label data.
2138
1856
  #
2139
- # @note When making an API call, you may pass LabelsInputConfiguration
2140
- # data as a hash:
2141
- #
2142
- # {
2143
- # s3_input_configuration: {
2144
- # bucket: "S3Bucket", # required
2145
- # prefix: "S3Prefix",
2146
- # },
2147
- # label_group_name: "LabelGroupName",
2148
- # }
2149
- #
2150
1857
  # @!attribute [rw] s3_input_configuration
2151
1858
  # Contains location information for the S3 location being used for
2152
1859
  # label data.
@@ -2168,14 +1875,6 @@ module Aws::LookoutEquipment
2168
1875
  # The location information (prefix and bucket name) for the s3 location
2169
1876
  # being used for label data.
2170
1877
  #
2171
- # @note When making an API call, you may pass LabelsS3InputConfiguration
2172
- # data as a hash:
2173
- #
2174
- # {
2175
- # bucket: "S3Bucket", # required
2176
- # prefix: "S3Prefix",
2177
- # }
2178
- #
2179
1878
  # @!attribute [rw] bucket
2180
1879
  # The name of the S3 bucket holding the label data.
2181
1880
  # @return [String]
@@ -2219,16 +1918,6 @@ module Aws::LookoutEquipment
2219
1918
  include Aws::Structure
2220
1919
  end
2221
1920
 
2222
- # @note When making an API call, you may pass ListDataIngestionJobsRequest
2223
- # data as a hash:
2224
- #
2225
- # {
2226
- # dataset_name: "DatasetName",
2227
- # next_token: "NextToken",
2228
- # max_results: 1,
2229
- # status: "IN_PROGRESS", # accepts IN_PROGRESS, SUCCESS, FAILED
2230
- # }
2231
- #
2232
1921
  # @!attribute [rw] dataset_name
2233
1922
  # The name of the dataset being used for the data ingestion job.
2234
1923
  # @return [String]
@@ -2276,15 +1965,6 @@ module Aws::LookoutEquipment
2276
1965
  include Aws::Structure
2277
1966
  end
2278
1967
 
2279
- # @note When making an API call, you may pass ListDatasetsRequest
2280
- # data as a hash:
2281
- #
2282
- # {
2283
- # next_token: "NextToken",
2284
- # max_results: 1,
2285
- # dataset_name_begins_with: "DatasetName",
2286
- # }
2287
- #
2288
1968
  # @!attribute [rw] next_token
2289
1969
  # An opaque pagination token indicating where to continue the listing
2290
1970
  # of datasets.
@@ -2327,17 +2007,6 @@ module Aws::LookoutEquipment
2327
2007
  include Aws::Structure
2328
2008
  end
2329
2009
 
2330
- # @note When making an API call, you may pass ListInferenceEventsRequest
2331
- # data as a hash:
2332
- #
2333
- # {
2334
- # next_token: "NextToken",
2335
- # max_results: 1,
2336
- # inference_scheduler_name: "InferenceSchedulerIdentifier", # required
2337
- # interval_start_time: Time.now, # required
2338
- # interval_end_time: Time.now, # required
2339
- # }
2340
- #
2341
2010
  # @!attribute [rw] next_token
2342
2011
  # An opaque pagination token indicating where to continue the listing
2343
2012
  # of inference events.
@@ -2394,18 +2063,6 @@ module Aws::LookoutEquipment
2394
2063
  include Aws::Structure
2395
2064
  end
2396
2065
 
2397
- # @note When making an API call, you may pass ListInferenceExecutionsRequest
2398
- # data as a hash:
2399
- #
2400
- # {
2401
- # next_token: "NextToken",
2402
- # max_results: 1,
2403
- # inference_scheduler_name: "InferenceSchedulerIdentifier", # required
2404
- # data_start_time_after: Time.now,
2405
- # data_end_time_before: Time.now,
2406
- # status: "IN_PROGRESS", # accepts IN_PROGRESS, SUCCESS, FAILED
2407
- # }
2408
- #
2409
2066
  # @!attribute [rw] next_token
2410
2067
  # An opaque pagination token indicating where to continue the listing
2411
2068
  # of inference executions.
@@ -2468,16 +2125,6 @@ module Aws::LookoutEquipment
2468
2125
  include Aws::Structure
2469
2126
  end
2470
2127
 
2471
- # @note When making an API call, you may pass ListInferenceSchedulersRequest
2472
- # data as a hash:
2473
- #
2474
- # {
2475
- # next_token: "NextToken",
2476
- # max_results: 1,
2477
- # inference_scheduler_name_begins_with: "InferenceSchedulerIdentifier",
2478
- # model_name: "ModelName",
2479
- # }
2480
- #
2481
2128
  # @!attribute [rw] next_token
2482
2129
  # An opaque pagination token indicating where to continue the listing
2483
2130
  # of inference schedulers.
@@ -2496,13 +2143,18 @@ module Aws::LookoutEquipment
2496
2143
  # listed.
2497
2144
  # @return [String]
2498
2145
  #
2146
+ # @!attribute [rw] status
2147
+ # Specifies the current status of the inference schedulers to list.
2148
+ # @return [String]
2149
+ #
2499
2150
  # @see http://docs.aws.amazon.com/goto/WebAPI/lookoutequipment-2020-12-15/ListInferenceSchedulersRequest AWS API Documentation
2500
2151
  #
2501
2152
  class ListInferenceSchedulersRequest < Struct.new(
2502
2153
  :next_token,
2503
2154
  :max_results,
2504
2155
  :inference_scheduler_name_begins_with,
2505
- :model_name)
2156
+ :model_name,
2157
+ :status)
2506
2158
  SENSITIVE = []
2507
2159
  include Aws::Structure
2508
2160
  end
@@ -2526,15 +2178,6 @@ module Aws::LookoutEquipment
2526
2178
  include Aws::Structure
2527
2179
  end
2528
2180
 
2529
- # @note When making an API call, you may pass ListLabelGroupsRequest
2530
- # data as a hash:
2531
- #
2532
- # {
2533
- # label_group_name_begins_with: "LabelGroupName",
2534
- # next_token: "NextToken",
2535
- # max_results: 1,
2536
- # }
2537
- #
2538
2181
  # @!attribute [rw] label_group_name_begins_with
2539
2182
  # The beginning of the name of the label groups to be listed.
2540
2183
  # @return [String]
@@ -2576,19 +2219,6 @@ module Aws::LookoutEquipment
2576
2219
  include Aws::Structure
2577
2220
  end
2578
2221
 
2579
- # @note When making an API call, you may pass ListLabelsRequest
2580
- # data as a hash:
2581
- #
2582
- # {
2583
- # label_group_name: "LabelGroupName", # required
2584
- # interval_start_time: Time.now,
2585
- # interval_end_time: Time.now,
2586
- # fault_code: "FaultCode",
2587
- # equipment: "Equipment",
2588
- # next_token: "NextToken",
2589
- # max_results: 1,
2590
- # }
2591
- #
2592
2222
  # @!attribute [rw] label_group_name
2593
2223
  # Retruns the name of the label group.
2594
2224
  # @return [String]
@@ -2652,17 +2282,6 @@ module Aws::LookoutEquipment
2652
2282
  include Aws::Structure
2653
2283
  end
2654
2284
 
2655
- # @note When making an API call, you may pass ListModelsRequest
2656
- # data as a hash:
2657
- #
2658
- # {
2659
- # next_token: "NextToken",
2660
- # max_results: 1,
2661
- # status: "IN_PROGRESS", # accepts IN_PROGRESS, SUCCESS, FAILED
2662
- # model_name_begins_with: "ModelName",
2663
- # dataset_name_begins_with: "DatasetName",
2664
- # }
2665
- #
2666
2285
  # @!attribute [rw] next_token
2667
2286
  # An opaque pagination token indicating where to continue the listing
2668
2287
  # of ML models.
@@ -2716,16 +2335,6 @@ module Aws::LookoutEquipment
2716
2335
  include Aws::Structure
2717
2336
  end
2718
2337
 
2719
- # @note When making an API call, you may pass ListSensorStatisticsRequest
2720
- # data as a hash:
2721
- #
2722
- # {
2723
- # dataset_name: "DatasetName", # required
2724
- # ingestion_job_id: "IngestionJobId",
2725
- # max_results: 1,
2726
- # next_token: "NextToken",
2727
- # }
2728
- #
2729
2338
  # @!attribute [rw] dataset_name
2730
2339
  # The name of the dataset associated with the list of Sensor
2731
2340
  # Statistics.
@@ -2779,13 +2388,6 @@ module Aws::LookoutEquipment
2779
2388
  include Aws::Structure
2780
2389
  end
2781
2390
 
2782
- # @note When making an API call, you may pass ListTagsForResourceRequest
2783
- # data as a hash:
2784
- #
2785
- # {
2786
- # resource_arn: "AmazonResourceArn", # required
2787
- # }
2788
- #
2789
2391
  # @!attribute [rw] resource_arn
2790
2392
  # The Amazon Resource Name (ARN) of the resource (such as the dataset
2791
2393
  # or model) that is the focus of the `ListTagsForResource` operation.
@@ -3077,22 +2679,6 @@ module Aws::LookoutEquipment
3077
2679
  include Aws::Structure
3078
2680
  end
3079
2681
 
3080
- # @note When making an API call, you may pass StartDataIngestionJobRequest
3081
- # data as a hash:
3082
- #
3083
- # {
3084
- # dataset_name: "DatasetIdentifier", # required
3085
- # ingestion_input_configuration: { # required
3086
- # s3_input_configuration: { # required
3087
- # bucket: "S3Bucket", # required
3088
- # prefix: "S3Prefix",
3089
- # key_pattern: "KeyPattern",
3090
- # },
3091
- # },
3092
- # role_arn: "IamRoleArn", # required
3093
- # client_token: "IdempotenceToken", # required
3094
- # }
3095
- #
3096
2682
  # @!attribute [rw] dataset_name
3097
2683
  # The name of the dataset being used by the data ingestion job.
3098
2684
  # @return [String]
@@ -3143,13 +2729,6 @@ module Aws::LookoutEquipment
3143
2729
  include Aws::Structure
3144
2730
  end
3145
2731
 
3146
- # @note When making an API call, you may pass StartInferenceSchedulerRequest
3147
- # data as a hash:
3148
- #
3149
- # {
3150
- # inference_scheduler_name: "InferenceSchedulerIdentifier", # required
3151
- # }
3152
- #
3153
2732
  # @!attribute [rw] inference_scheduler_name
3154
2733
  # The name of the inference scheduler to be started.
3155
2734
  # @return [String]
@@ -3196,13 +2775,6 @@ module Aws::LookoutEquipment
3196
2775
  include Aws::Structure
3197
2776
  end
3198
2777
 
3199
- # @note When making an API call, you may pass StopInferenceSchedulerRequest
3200
- # data as a hash:
3201
- #
3202
- # {
3203
- # inference_scheduler_name: "InferenceSchedulerIdentifier", # required
3204
- # }
3205
- #
3206
2778
  # @!attribute [rw] inference_scheduler_name
3207
2779
  # The name of the inference scheduler to be stopped.
3208
2780
  # @return [String]
@@ -3252,14 +2824,6 @@ module Aws::LookoutEquipment
3252
2824
 
3253
2825
  # A tag is a key-value pair that can be added to a resource as metadata.
3254
2826
  #
3255
- # @note When making an API call, you may pass Tag
3256
- # data as a hash:
3257
- #
3258
- # {
3259
- # key: "TagKey", # required
3260
- # value: "TagValue", # required
3261
- # }
3262
- #
3263
2827
  # @!attribute [rw] key
3264
2828
  # The key for the specified tag.
3265
2829
  # @return [String]
@@ -3277,19 +2841,6 @@ module Aws::LookoutEquipment
3277
2841
  include Aws::Structure
3278
2842
  end
3279
2843
 
3280
- # @note When making an API call, you may pass TagResourceRequest
3281
- # data as a hash:
3282
- #
3283
- # {
3284
- # resource_arn: "AmazonResourceArn", # required
3285
- # tags: [ # required
3286
- # {
3287
- # key: "TagKey", # required
3288
- # value: "TagValue", # required
3289
- # },
3290
- # ],
3291
- # }
3292
- #
3293
2844
  # @!attribute [rw] resource_arn
3294
2845
  # The Amazon Resource Name (ARN) of the specific resource to which the
3295
2846
  # tag should be associated.
@@ -3342,14 +2893,6 @@ module Aws::LookoutEquipment
3342
2893
  include Aws::Structure
3343
2894
  end
3344
2895
 
3345
- # @note When making an API call, you may pass UntagResourceRequest
3346
- # data as a hash:
3347
- #
3348
- # {
3349
- # resource_arn: "AmazonResourceArn", # required
3350
- # tag_keys: ["TagKey"], # required
3351
- # }
3352
- #
3353
2896
  # @!attribute [rw] resource_arn
3354
2897
  # The Amazon Resource Name (ARN) of the resource to which the tag is
3355
2898
  # currently associated.
@@ -3373,34 +2916,6 @@ module Aws::LookoutEquipment
3373
2916
  #
3374
2917
  class UntagResourceResponse < Aws::EmptyStructure; end
3375
2918
 
3376
- # @note When making an API call, you may pass UpdateInferenceSchedulerRequest
3377
- # data as a hash:
3378
- #
3379
- # {
3380
- # inference_scheduler_name: "InferenceSchedulerIdentifier", # required
3381
- # data_delay_offset_in_minutes: 1,
3382
- # data_upload_frequency: "PT5M", # accepts PT5M, PT10M, PT15M, PT30M, PT1H
3383
- # data_input_configuration: {
3384
- # s3_input_configuration: {
3385
- # bucket: "S3Bucket", # required
3386
- # prefix: "S3Prefix",
3387
- # },
3388
- # input_time_zone_offset: "TimeZoneOffset",
3389
- # inference_input_name_configuration: {
3390
- # timestamp_format: "FileNameTimestampFormat",
3391
- # component_timestamp_delimiter: "ComponentTimestampDelimiter",
3392
- # },
3393
- # },
3394
- # data_output_configuration: {
3395
- # s3_output_configuration: { # required
3396
- # bucket: "S3Bucket", # required
3397
- # prefix: "S3Prefix",
3398
- # },
3399
- # kms_key_id: "NameOrArn",
3400
- # },
3401
- # role_arn: "IamRoleArn",
3402
- # }
3403
- #
3404
2919
  # @!attribute [rw] inference_scheduler_name
3405
2920
  # The name of the inference scheduler to be updated.
3406
2921
  # @return [String]
@@ -3455,14 +2970,6 @@ module Aws::LookoutEquipment
3455
2970
  include Aws::Structure
3456
2971
  end
3457
2972
 
3458
- # @note When making an API call, you may pass UpdateLabelGroupRequest
3459
- # data as a hash:
3460
- #
3461
- # {
3462
- # label_group_name: "LabelGroupName", # required
3463
- # fault_codes: ["FaultCode"],
3464
- # }
3465
- #
3466
2973
  # @!attribute [rw] label_group_name
3467
2974
  # The name of the label group to be updated.
3468
2975
  # @return [String]
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-lookoutequipment/customizations'
52
52
  # @!group service
53
53
  module Aws::LookoutEquipment
54
54
 
55
- GEM_VERSION = '1.14.0'
55
+ GEM_VERSION = '1.15.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-lookoutequipment
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.14.0
4
+ version: 1.15.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-10-25 00:00:00.000000000 Z
11
+ date: 2022-12-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core