aws-sdk-iotthingsgraph 1.25.0 → 1.26.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ccee591a0ee59abe910be22682731ec35a7b251ce08aad9fa3893410ee4d4355
4
- data.tar.gz: 9d1cdaa4d270c5e3b63f15572000c4196967a6b149c27baa2b904aacbb943ec5
3
+ metadata.gz: b7e945af12e59e5a8f598a75dbcec57f96a970e1e6f350bdb0b7259a4b30574a
4
+ data.tar.gz: 04f9e6b4249158cb5bbd6d59759cff1e55ef89e9742190b15083e8749c9f64b4
5
5
  SHA512:
6
- metadata.gz: a3fc22ff0348aae76656afa5078e83cca64e0ec532004550346a46db2da036edc8e15e54ec2611b63073be66bc55b4063ebc8eabae2088be6319993999a28d1a
7
- data.tar.gz: e9508c535d4d097cf627f8f9e56d2b091de495d3cf217df34564541e4f573f9b96565e730e6e8410439d342ea657350f0baf805923d9ca44ee8f6ad8e9e85e8a
6
+ metadata.gz: 6e644f62fea26aafee6bfd72af77399b529c71fea8c09aa2f07c67d01be3f7a65edf4082759f7d1032bea94eb06dea3778514d3efe26d57fe0b68a190981097f
7
+ data.tar.gz: 1ff9681e23f51581043786a065c35ebe43a125a8538d925093694577b932e7ca013a7f3bc1d074c43cc5cb66eed47a2f671a7fb2c7cd53afeae2802660b463e2
data/CHANGELOG.md CHANGED
@@ -1,6 +1,13 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.26.0 (2023-01-18)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ * Issue - Replace runtime endpoint resolution approach with generated ruby code.
10
+
4
11
  1.25.0 (2022-10-25)
5
12
  ------------------
6
13
 
@@ -135,4 +142,4 @@ Unreleased Changes
135
142
  1.0.0 (2019-05-29)
136
143
  ------------------
137
144
 
138
- * Feature - Initial release of `aws-sdk-iotthingsgraph`.
145
+ * Feature - Initial release of `aws-sdk-iotthingsgraph`.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.25.0
1
+ 1.26.0
@@ -1939,7 +1939,7 @@ module Aws::IoTThingsGraph
1939
1939
  params: params,
1940
1940
  config: config)
1941
1941
  context[:gem_name] = 'aws-sdk-iotthingsgraph'
1942
- context[:gem_version] = '1.25.0'
1942
+ context[:gem_version] = '1.26.0'
1943
1943
  Seahorse::Client::Request.new(handlers, context)
1944
1944
  end
1945
1945
 
@@ -9,104 +9,43 @@
9
9
 
10
10
  module Aws::IoTThingsGraph
11
11
  class EndpointProvider
12
- def initialize(rule_set = nil)
13
- @@rule_set ||= begin
14
- endpoint_rules = Aws::Json.load(Base64.decode64(RULES))
15
- Aws::Endpoints::RuleSet.new(
16
- version: endpoint_rules['version'],
17
- service_id: endpoint_rules['serviceId'],
18
- parameters: endpoint_rules['parameters'],
19
- rules: endpoint_rules['rules']
20
- )
12
+ def resolve_endpoint(parameters)
13
+ region = parameters.region
14
+ use_dual_stack = parameters.use_dual_stack
15
+ use_fips = parameters.use_fips
16
+ endpoint = parameters.endpoint
17
+ if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
18
+ if Aws::Endpoints::Matchers.set?(endpoint) && (url = Aws::Endpoints::Matchers.parse_url(endpoint))
19
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
20
+ raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
21
+ end
22
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
23
+ raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
24
+ end
25
+ return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
26
+ end
27
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
28
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
29
+ return Aws::Endpoints::Endpoint.new(url: "https://iotthingsgraph-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
30
+ end
31
+ raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
32
+ end
33
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
34
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
35
+ return Aws::Endpoints::Endpoint.new(url: "https://iotthingsgraph-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
36
+ end
37
+ raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
38
+ end
39
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
40
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
41
+ return Aws::Endpoints::Endpoint.new(url: "https://iotthingsgraph.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
42
+ end
43
+ raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
44
+ end
45
+ return Aws::Endpoints::Endpoint.new(url: "https://iotthingsgraph.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
21
46
  end
22
- @provider = Aws::Endpoints::RulesProvider.new(rule_set || @@rule_set)
23
- end
47
+ raise ArgumentError, 'No endpoint could be resolved'
24
48
 
25
- def resolve_endpoint(parameters)
26
- @provider.resolve_endpoint(parameters)
27
49
  end
28
-
29
- # @api private
30
- RULES = <<-JSON
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
- dCI6eyJ1cmwiOiJodHRwczovL2lvdHRoaW5nc2dyYXBoLWZpcHMue1JlZ2lv
77
- bn0ue1BhcnRpdGlvblJlc3VsdCNkdWFsU3RhY2tEbnNTdWZmaXh9IiwicHJv
78
- cGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlwZSI6ImVuZHBvaW50In1d
79
- fSx7ImNvbmRpdGlvbnMiOltdLCJlcnJvciI6IkZJUFMgYW5kIER1YWxTdGFj
80
- ayBhcmUgZW5hYmxlZCwgYnV0IHRoaXMgcGFydGl0aW9uIGRvZXMgbm90IHN1
81
- cHBvcnQgb25lIG9yIGJvdGgiLCJ0eXBlIjoiZXJyb3IifV19LHsiY29uZGl0
82
- aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoi
83
- VXNlRklQUyJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNv
84
- bmRpdGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVl
85
- LHsiZm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVz
86
- dWx0In0sInN1cHBvcnRzRklQUyJdfV19XSwidHlwZSI6InRyZWUiLCJydWxl
87
- cyI6W3siY29uZGl0aW9ucyI6W10sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7
88
- ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOiJodHRwczovL2lv
89
- dHRoaW5nc2dyYXBoLWZpcHMue1JlZ2lvbn0ue1BhcnRpdGlvblJlc3VsdCNk
90
- bnNTdWZmaXh9IiwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlw
91
- ZSI6ImVuZHBvaW50In1dfV19LHsiY29uZGl0aW9ucyI6W10sImVycm9yIjoi
92
- RklQUyBpcyBlbmFibGVkIGJ1dCB0aGlzIHBhcnRpdGlvbiBkb2VzIG5vdCBz
93
- dXBwb3J0IEZJUFMiLCJ0eXBlIjoiZXJyb3IifV19LHsiY29uZGl0aW9ucyI6
94
- W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRHVh
95
- bFN0YWNrIn0sdHJ1ZV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29u
96
- ZGl0aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3RydWUs
97
- eyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQYXJ0aXRpb25SZXN1
98
- bHQifSwic3VwcG9ydHNEdWFsU3RhY2siXX1dfV0sInR5cGUiOiJ0cmVlIiwi
99
- cnVsZXMiOlt7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOiJo
100
- dHRwczovL2lvdHRoaW5nc2dyYXBoLntSZWdpb259LntQYXJ0aXRpb25SZXN1
101
- bHQjZHVhbFN0YWNrRG5zU3VmZml4fSIsInByb3BlcnRpZXMiOnt9LCJoZWFk
102
- ZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX0seyJjb25kaXRpb25zIjpb
103
- XSwiZXJyb3IiOiJEdWFsU3RhY2sgaXMgZW5hYmxlZCBidXQgdGhpcyBwYXJ0
104
- aXRpb24gZG9lcyBub3Qgc3VwcG9ydCBEdWFsU3RhY2siLCJ0eXBlIjoiZXJy
105
- b3IifV19LHsiY29uZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6Imh0
106
- dHBzOi8vaW90dGhpbmdzZ3JhcGgue1JlZ2lvbn0ue1BhcnRpdGlvblJlc3Vs
107
- dCNkbnNTdWZmaXh9IiwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwi
108
- dHlwZSI6ImVuZHBvaW50In1dfV19
109
-
110
- JSON
111
50
  end
112
51
  end
@@ -10,15 +10,6 @@
10
10
  module Aws::IoTThingsGraph
11
11
  module Types
12
12
 
13
- # @note When making an API call, you may pass AssociateEntityToThingRequest
14
- # data as a hash:
15
- #
16
- # {
17
- # thing_name: "ThingName", # required
18
- # entity_id: "Urn", # required
19
- # namespace_version: 1,
20
- # }
21
- #
22
13
  # @!attribute [rw] thing_name
23
14
  # The name of the thing to which the entity is to be associated.
24
15
  # @return [String]
@@ -46,17 +37,6 @@ module Aws::IoTThingsGraph
46
37
 
47
38
  class AssociateEntityToThingResponse < Aws::EmptyStructure; end
48
39
 
49
- # @note When making an API call, you may pass CreateFlowTemplateRequest
50
- # data as a hash:
51
- #
52
- # {
53
- # definition: { # required
54
- # language: "GRAPHQL", # required, accepts GRAPHQL
55
- # text: "DefinitionText", # required
56
- # },
57
- # compatible_namespace_version: 1,
58
- # }
59
- #
60
40
  # @!attribute [rw] definition
61
41
  # The workflow `DefinitionDocument`.
62
42
  # @return [Types::DefinitionDocument]
@@ -84,30 +64,6 @@ module Aws::IoTThingsGraph
84
64
  include Aws::Structure
85
65
  end
86
66
 
87
- # @note When making an API call, you may pass CreateSystemInstanceRequest
88
- # data as a hash:
89
- #
90
- # {
91
- # tags: [
92
- # {
93
- # key: "TagKey", # required
94
- # value: "TagValue", # required
95
- # },
96
- # ],
97
- # definition: { # required
98
- # language: "GRAPHQL", # required, accepts GRAPHQL
99
- # text: "DefinitionText", # required
100
- # },
101
- # target: "GREENGRASS", # required, accepts GREENGRASS, CLOUD
102
- # greengrass_group_name: "GroupName",
103
- # s3_bucket_name: "S3BucketName",
104
- # metrics_configuration: {
105
- # cloud_metric_enabled: false,
106
- # metric_rule_role_arn: "RoleArn",
107
- # },
108
- # flow_actions_role_arn: "RoleArn",
109
- # }
110
- #
111
67
  # @!attribute [rw] tags
112
68
  # Metadata, consisting of key-value pairs, that can be used to
113
69
  # categorize your system instances.
@@ -170,17 +126,6 @@ module Aws::IoTThingsGraph
170
126
  include Aws::Structure
171
127
  end
172
128
 
173
- # @note When making an API call, you may pass CreateSystemTemplateRequest
174
- # data as a hash:
175
- #
176
- # {
177
- # definition: { # required
178
- # language: "GRAPHQL", # required, accepts GRAPHQL
179
- # text: "DefinitionText", # required
180
- # },
181
- # compatible_namespace_version: 1,
182
- # }
183
- #
184
129
  # @!attribute [rw] definition
185
130
  # The `DefinitionDocument` used to create the system.
186
131
  # @return [Types::DefinitionDocument]
@@ -210,14 +155,6 @@ module Aws::IoTThingsGraph
210
155
 
211
156
  # A document that defines an entity.
212
157
  #
213
- # @note When making an API call, you may pass DefinitionDocument
214
- # data as a hash:
215
- #
216
- # {
217
- # language: "GRAPHQL", # required, accepts GRAPHQL
218
- # text: "DefinitionText", # required
219
- # }
220
- #
221
158
  # @!attribute [rw] language
222
159
  # The language used to define the entity. `GRAPHQL` is the only valid
223
160
  # value.
@@ -234,13 +171,6 @@ module Aws::IoTThingsGraph
234
171
  include Aws::Structure
235
172
  end
236
173
 
237
- # @note When making an API call, you may pass DeleteFlowTemplateRequest
238
- # data as a hash:
239
- #
240
- # {
241
- # id: "Urn", # required
242
- # }
243
- #
244
174
  # @!attribute [rw] id
245
175
  # The ID of the workflow to be deleted.
246
176
  #
@@ -276,13 +206,6 @@ module Aws::IoTThingsGraph
276
206
  include Aws::Structure
277
207
  end
278
208
 
279
- # @note When making an API call, you may pass DeleteSystemInstanceRequest
280
- # data as a hash:
281
- #
282
- # {
283
- # id: "Urn",
284
- # }
285
- #
286
209
  # @!attribute [rw] id
287
210
  # The ID of the system instance to be deleted.
288
211
  # @return [String]
@@ -295,13 +218,6 @@ module Aws::IoTThingsGraph
295
218
 
296
219
  class DeleteSystemInstanceResponse < Aws::EmptyStructure; end
297
220
 
298
- # @note When making an API call, you may pass DeleteSystemTemplateRequest
299
- # data as a hash:
300
- #
301
- # {
302
- # id: "Urn", # required
303
- # }
304
- #
305
221
  # @!attribute [rw] id
306
222
  # The ID of the system to be deleted.
307
223
  #
@@ -336,13 +252,6 @@ module Aws::IoTThingsGraph
336
252
  include Aws::Structure
337
253
  end
338
254
 
339
- # @note When making an API call, you may pass DeploySystemInstanceRequest
340
- # data as a hash:
341
- #
342
- # {
343
- # id: "Urn",
344
- # }
345
- #
346
255
  # @!attribute [rw] id
347
256
  # The ID of the system instance. This value is returned by the
348
257
  # `CreateSystemInstance` action.
@@ -375,13 +284,6 @@ module Aws::IoTThingsGraph
375
284
  include Aws::Structure
376
285
  end
377
286
 
378
- # @note When making an API call, you may pass DeprecateFlowTemplateRequest
379
- # data as a hash:
380
- #
381
- # {
382
- # id: "Urn", # required
383
- # }
384
- #
385
287
  # @!attribute [rw] id
386
288
  # The ID of the workflow to be deleted.
387
289
  #
@@ -398,13 +300,6 @@ module Aws::IoTThingsGraph
398
300
 
399
301
  class DeprecateFlowTemplateResponse < Aws::EmptyStructure; end
400
302
 
401
- # @note When making an API call, you may pass DeprecateSystemTemplateRequest
402
- # data as a hash:
403
- #
404
- # {
405
- # id: "Urn", # required
406
- # }
407
- #
408
303
  # @!attribute [rw] id
409
304
  # The ID of the system to delete.
410
305
  #
@@ -421,13 +316,6 @@ module Aws::IoTThingsGraph
421
316
 
422
317
  class DeprecateSystemTemplateResponse < Aws::EmptyStructure; end
423
318
 
424
- # @note When making an API call, you may pass DescribeNamespaceRequest
425
- # data as a hash:
426
- #
427
- # {
428
- # namespace_name: "NamespaceName",
429
- # }
430
- #
431
319
  # @!attribute [rw] namespace_name
432
320
  # The name of the user's namespace. Set this to `aws` to get the
433
321
  # public namespace.
@@ -471,14 +359,6 @@ module Aws::IoTThingsGraph
471
359
  include Aws::Structure
472
360
  end
473
361
 
474
- # @note When making an API call, you may pass DissociateEntityFromThingRequest
475
- # data as a hash:
476
- #
477
- # {
478
- # thing_name: "ThingName", # required
479
- # entity_type: "DEVICE", # required, accepts DEVICE, SERVICE, DEVICE_MODEL, CAPABILITY, STATE, ACTION, EVENT, PROPERTY, MAPPING, ENUM
480
- # }
481
- #
482
362
  # @!attribute [rw] thing_name
483
363
  # The name of the thing to disassociate.
484
364
  # @return [String]
@@ -534,14 +414,6 @@ module Aws::IoTThingsGraph
534
414
  # in the specified namespace that use the entity specified by the value
535
415
  # of `REFERENCED_ENTITY_ID`.
536
416
  #
537
- # @note When making an API call, you may pass EntityFilter
538
- # data as a hash:
539
- #
540
- # {
541
- # name: "NAME", # accepts NAME, NAMESPACE, SEMANTIC_TYPE_PATH, REFERENCED_ENTITY_ID
542
- # value: ["EntityFilterValue"],
543
- # }
544
- #
545
417
  # @!attribute [rw] name
546
418
  # The name of the entity search filter field. `REFERENCED_ENTITY_ID`
547
419
  # filters on entities that are used by the entity in the result set.
@@ -651,14 +523,6 @@ module Aws::IoTThingsGraph
651
523
 
652
524
  # An object that filters a workflow search.
653
525
  #
654
- # @note When making an API call, you may pass FlowTemplateFilter
655
- # data as a hash:
656
- #
657
- # {
658
- # name: "DEVICE_MODEL_ID", # required, accepts DEVICE_MODEL_ID
659
- # value: ["FlowTemplateFilterValue"], # required
660
- # }
661
- #
662
526
  # @!attribute [rw] name
663
527
  # The name of the search filter field.
664
528
  # @return [String]
@@ -702,14 +566,6 @@ module Aws::IoTThingsGraph
702
566
  include Aws::Structure
703
567
  end
704
568
 
705
- # @note When making an API call, you may pass GetEntitiesRequest
706
- # data as a hash:
707
- #
708
- # {
709
- # ids: ["Urn"], # required
710
- # namespace_version: 1,
711
- # }
712
- #
713
569
  # @!attribute [rw] ids
714
570
  # An array of entity IDs.
715
571
  #
@@ -740,14 +596,6 @@ module Aws::IoTThingsGraph
740
596
  include Aws::Structure
741
597
  end
742
598
 
743
- # @note When making an API call, you may pass GetFlowTemplateRequest
744
- # data as a hash:
745
- #
746
- # {
747
- # id: "Urn", # required
748
- # revision_number: 1,
749
- # }
750
- #
751
599
  # @!attribute [rw] id
752
600
  # The ID of the workflow.
753
601
  #
@@ -777,15 +625,6 @@ module Aws::IoTThingsGraph
777
625
  include Aws::Structure
778
626
  end
779
627
 
780
- # @note When making an API call, you may pass GetFlowTemplateRevisionsRequest
781
- # data as a hash:
782
- #
783
- # {
784
- # id: "Urn", # required
785
- # next_token: "NextToken",
786
- # max_results: 1,
787
- # }
788
- #
789
628
  # @!attribute [rw] id
790
629
  # The ID of the workflow.
791
630
  #
@@ -861,13 +700,6 @@ module Aws::IoTThingsGraph
861
700
  include Aws::Structure
862
701
  end
863
702
 
864
- # @note When making an API call, you may pass GetSystemInstanceRequest
865
- # data as a hash:
866
- #
867
- # {
868
- # id: "Urn", # required
869
- # }
870
- #
871
703
  # @!attribute [rw] id
872
704
  # The ID of the system deployment instance. This value is returned by
873
705
  # `CreateSystemInstance`.
@@ -893,14 +725,6 @@ module Aws::IoTThingsGraph
893
725
  include Aws::Structure
894
726
  end
895
727
 
896
- # @note When making an API call, you may pass GetSystemTemplateRequest
897
- # data as a hash:
898
- #
899
- # {
900
- # id: "Urn", # required
901
- # revision_number: 1,
902
- # }
903
- #
904
728
  # @!attribute [rw] id
905
729
  # The ID of the system to get. This ID must be in the user's
906
730
  # namespace.
@@ -931,15 +755,6 @@ module Aws::IoTThingsGraph
931
755
  include Aws::Structure
932
756
  end
933
757
 
934
- # @note When making an API call, you may pass GetSystemTemplateRevisionsRequest
935
- # data as a hash:
936
- #
937
- # {
938
- # id: "Urn", # required
939
- # next_token: "NextToken",
940
- # max_results: 1,
941
- # }
942
- #
943
758
  # @!attribute [rw] id
944
759
  # The ID of the system template.
945
760
  #
@@ -982,13 +797,6 @@ module Aws::IoTThingsGraph
982
797
  include Aws::Structure
983
798
  end
984
799
 
985
- # @note When making an API call, you may pass GetUploadStatusRequest
986
- # data as a hash:
987
- #
988
- # {
989
- # upload_id: "UploadId", # required
990
- # }
991
- #
992
800
  # @!attribute [rw] upload_id
993
801
  # The ID of the upload. This value is returned by the
994
802
  # `UploadEntityDefinitions` action.
@@ -1069,15 +877,6 @@ module Aws::IoTThingsGraph
1069
877
  include Aws::Structure
1070
878
  end
1071
879
 
1072
- # @note When making an API call, you may pass ListFlowExecutionMessagesRequest
1073
- # data as a hash:
1074
- #
1075
- # {
1076
- # flow_execution_id: "FlowExecutionId", # required
1077
- # next_token: "NextToken",
1078
- # max_results: 1,
1079
- # }
1080
- #
1081
880
  # @!attribute [rw] flow_execution_id
1082
881
  # The ID of the flow execution.
1083
882
  # @return [String]
@@ -1116,15 +915,6 @@ module Aws::IoTThingsGraph
1116
915
  include Aws::Structure
1117
916
  end
1118
917
 
1119
- # @note When making an API call, you may pass ListTagsForResourceRequest
1120
- # data as a hash:
1121
- #
1122
- # {
1123
- # max_results: 1,
1124
- # resource_arn: "ResourceArn", # required
1125
- # next_token: "NextToken",
1126
- # }
1127
- #
1128
918
  # @!attribute [rw] max_results
1129
919
  # The maximum number of tags to return.
1130
920
  # @return [Integer]
@@ -1164,14 +954,6 @@ module Aws::IoTThingsGraph
1164
954
  # An object that specifies whether cloud metrics are collected in a
1165
955
  # deployment and, if so, what role is used to collect metrics.
1166
956
  #
1167
- # @note When making an API call, you may pass MetricsConfiguration
1168
- # data as a hash:
1169
- #
1170
- # {
1171
- # cloud_metric_enabled: false,
1172
- # metric_rule_role_arn: "RoleArn",
1173
- # }
1174
- #
1175
957
  # @!attribute [rw] cloud_metric_enabled
1176
958
  # A Boolean that specifies whether cloud metrics are collected.
1177
959
  # @return [Boolean]
@@ -1214,22 +996,6 @@ module Aws::IoTThingsGraph
1214
996
  include Aws::Structure
1215
997
  end
1216
998
 
1217
- # @note When making an API call, you may pass SearchEntitiesRequest
1218
- # data as a hash:
1219
- #
1220
- # {
1221
- # entity_types: ["DEVICE"], # required, accepts DEVICE, SERVICE, DEVICE_MODEL, CAPABILITY, STATE, ACTION, EVENT, PROPERTY, MAPPING, ENUM
1222
- # filters: [
1223
- # {
1224
- # name: "NAME", # accepts NAME, NAMESPACE, SEMANTIC_TYPE_PATH, REFERENCED_ENTITY_ID
1225
- # value: ["EntityFilterValue"],
1226
- # },
1227
- # ],
1228
- # next_token: "NextToken",
1229
- # max_results: 1,
1230
- # namespace_version: 1,
1231
- # }
1232
- #
1233
999
  # @!attribute [rw] entity_types
1234
1000
  # The entity types for which to search.
1235
1001
  # @return [Array<String>]
@@ -1286,18 +1052,6 @@ module Aws::IoTThingsGraph
1286
1052
  include Aws::Structure
1287
1053
  end
1288
1054
 
1289
- # @note When making an API call, you may pass SearchFlowExecutionsRequest
1290
- # data as a hash:
1291
- #
1292
- # {
1293
- # system_instance_id: "Urn", # required
1294
- # flow_execution_id: "FlowExecutionId",
1295
- # start_time: Time.now,
1296
- # end_time: Time.now,
1297
- # next_token: "NextToken",
1298
- # max_results: 1,
1299
- # }
1300
- #
1301
1055
  # @!attribute [rw] system_instance_id
1302
1056
  # The ID of the system instance that contains the flow.
1303
1057
  # @return [String]
@@ -1351,20 +1105,6 @@ module Aws::IoTThingsGraph
1351
1105
  include Aws::Structure
1352
1106
  end
1353
1107
 
1354
- # @note When making an API call, you may pass SearchFlowTemplatesRequest
1355
- # data as a hash:
1356
- #
1357
- # {
1358
- # filters: [
1359
- # {
1360
- # name: "DEVICE_MODEL_ID", # required, accepts DEVICE_MODEL_ID
1361
- # value: ["FlowTemplateFilterValue"], # required
1362
- # },
1363
- # ],
1364
- # next_token: "NextToken",
1365
- # max_results: 1,
1366
- # }
1367
- #
1368
1108
  # @!attribute [rw] filters
1369
1109
  # An array of objects that limit the result set. The only valid filter
1370
1110
  # is `DEVICE_MODEL_ID`.
@@ -1404,20 +1144,6 @@ module Aws::IoTThingsGraph
1404
1144
  include Aws::Structure
1405
1145
  end
1406
1146
 
1407
- # @note When making an API call, you may pass SearchSystemInstancesRequest
1408
- # data as a hash:
1409
- #
1410
- # {
1411
- # filters: [
1412
- # {
1413
- # name: "SYSTEM_TEMPLATE_ID", # accepts SYSTEM_TEMPLATE_ID, STATUS, GREENGRASS_GROUP_NAME
1414
- # value: ["SystemInstanceFilterValue"],
1415
- # },
1416
- # ],
1417
- # next_token: "NextToken",
1418
- # max_results: 1,
1419
- # }
1420
- #
1421
1147
  # @!attribute [rw] filters
1422
1148
  # Optional filter to apply to the search. Valid filters are
1423
1149
  # `SYSTEM_TEMPLATE_ID`, `STATUS`, and `GREENGRASS_GROUP_NAME`.
@@ -1460,20 +1186,6 @@ module Aws::IoTThingsGraph
1460
1186
  include Aws::Structure
1461
1187
  end
1462
1188
 
1463
- # @note When making an API call, you may pass SearchSystemTemplatesRequest
1464
- # data as a hash:
1465
- #
1466
- # {
1467
- # filters: [
1468
- # {
1469
- # name: "FLOW_TEMPLATE_ID", # required, accepts FLOW_TEMPLATE_ID
1470
- # value: ["SystemTemplateFilterValue"], # required
1471
- # },
1472
- # ],
1473
- # next_token: "NextToken",
1474
- # max_results: 1,
1475
- # }
1476
- #
1477
1189
  # @!attribute [rw] filters
1478
1190
  # An array of filters that limit the result set. The only valid filter
1479
1191
  # is `FLOW_TEMPLATE_ID`.
@@ -1513,16 +1225,6 @@ module Aws::IoTThingsGraph
1513
1225
  include Aws::Structure
1514
1226
  end
1515
1227
 
1516
- # @note When making an API call, you may pass SearchThingsRequest
1517
- # data as a hash:
1518
- #
1519
- # {
1520
- # entity_id: "Urn", # required
1521
- # next_token: "NextToken",
1522
- # max_results: 1,
1523
- # namespace_version: 1,
1524
- # }
1525
- #
1526
1228
  # @!attribute [rw] entity_id
1527
1229
  # The ID of the entity to which the things are associated.
1528
1230
  #
@@ -1626,14 +1328,6 @@ module Aws::IoTThingsGraph
1626
1328
  # system instances in the specified Greengrass group that have the
1627
1329
  # specified status.
1628
1330
  #
1629
- # @note When making an API call, you may pass SystemInstanceFilter
1630
- # data as a hash:
1631
- #
1632
- # {
1633
- # name: "SYSTEM_TEMPLATE_ID", # accepts SYSTEM_TEMPLATE_ID, STATUS, GREENGRASS_GROUP_NAME
1634
- # value: ["SystemInstanceFilterValue"],
1635
- # }
1636
- #
1637
1331
  # @!attribute [rw] name
1638
1332
  # The name of the search filter field.
1639
1333
  # @return [String]
@@ -1731,14 +1425,6 @@ module Aws::IoTThingsGraph
1731
1425
 
1732
1426
  # An object that filters a system search.
1733
1427
  #
1734
- # @note When making an API call, you may pass SystemTemplateFilter
1735
- # data as a hash:
1736
- #
1737
- # {
1738
- # name: "FLOW_TEMPLATE_ID", # required, accepts FLOW_TEMPLATE_ID
1739
- # value: ["SystemTemplateFilterValue"], # required
1740
- # }
1741
- #
1742
1428
  # @!attribute [rw] name
1743
1429
  # The name of the system search filter field.
1744
1430
  # @return [String]
@@ -1785,14 +1471,6 @@ module Aws::IoTThingsGraph
1785
1471
  # Metadata assigned to an AWS IoT Things Graph resource consisting of a
1786
1472
  # key-value pair.
1787
1473
  #
1788
- # @note When making an API call, you may pass Tag
1789
- # data as a hash:
1790
- #
1791
- # {
1792
- # key: "TagKey", # required
1793
- # value: "TagValue", # required
1794
- # }
1795
- #
1796
1474
  # @!attribute [rw] key
1797
1475
  # The required name of the tag. The string value can be from 1 to 128
1798
1476
  # Unicode characters in length.
@@ -1810,19 +1488,6 @@ module Aws::IoTThingsGraph
1810
1488
  include Aws::Structure
1811
1489
  end
1812
1490
 
1813
- # @note When making an API call, you may pass TagResourceRequest
1814
- # data as a hash:
1815
- #
1816
- # {
1817
- # resource_arn: "ResourceArn", # required
1818
- # tags: [ # required
1819
- # {
1820
- # key: "TagKey", # required
1821
- # value: "TagValue", # required
1822
- # },
1823
- # ],
1824
- # }
1825
- #
1826
1491
  # @!attribute [rw] resource_arn
1827
1492
  # The Amazon Resource Name (ARN) of the resource whose tags are
1828
1493
  # returned.
@@ -1867,13 +1532,6 @@ module Aws::IoTThingsGraph
1867
1532
  include Aws::Structure
1868
1533
  end
1869
1534
 
1870
- # @note When making an API call, you may pass UndeploySystemInstanceRequest
1871
- # data as a hash:
1872
- #
1873
- # {
1874
- # id: "Urn",
1875
- # }
1876
- #
1877
1535
  # @!attribute [rw] id
1878
1536
  # The ID of the system instance to remove from its target.
1879
1537
  # @return [String]
@@ -1895,14 +1553,6 @@ module Aws::IoTThingsGraph
1895
1553
  include Aws::Structure
1896
1554
  end
1897
1555
 
1898
- # @note When making an API call, you may pass UntagResourceRequest
1899
- # data as a hash:
1900
- #
1901
- # {
1902
- # resource_arn: "ResourceArn", # required
1903
- # tag_keys: ["TagKey"], # required
1904
- # }
1905
- #
1906
1556
  # @!attribute [rw] resource_arn
1907
1557
  # The Amazon Resource Name (ARN) of the resource whose tags are to be
1908
1558
  # removed.
@@ -1932,18 +1582,6 @@ module Aws::IoTThingsGraph
1932
1582
 
1933
1583
  class UntagResourceResponse < Aws::EmptyStructure; end
1934
1584
 
1935
- # @note When making an API call, you may pass UpdateFlowTemplateRequest
1936
- # data as a hash:
1937
- #
1938
- # {
1939
- # id: "Urn", # required
1940
- # definition: { # required
1941
- # language: "GRAPHQL", # required, accepts GRAPHQL
1942
- # text: "DefinitionText", # required
1943
- # },
1944
- # compatible_namespace_version: 1,
1945
- # }
1946
- #
1947
1585
  # @!attribute [rw] id
1948
1586
  # The ID of the workflow to be updated.
1949
1587
  #
@@ -1983,18 +1621,6 @@ module Aws::IoTThingsGraph
1983
1621
  include Aws::Structure
1984
1622
  end
1985
1623
 
1986
- # @note When making an API call, you may pass UpdateSystemTemplateRequest
1987
- # data as a hash:
1988
- #
1989
- # {
1990
- # id: "Urn", # required
1991
- # definition: { # required
1992
- # language: "GRAPHQL", # required, accepts GRAPHQL
1993
- # text: "DefinitionText", # required
1994
- # },
1995
- # compatible_namespace_version: 1,
1996
- # }
1997
- #
1998
1624
  # @!attribute [rw] id
1999
1625
  # The ID of the system to be updated.
2000
1626
  #
@@ -2033,18 +1659,6 @@ module Aws::IoTThingsGraph
2033
1659
  include Aws::Structure
2034
1660
  end
2035
1661
 
2036
- # @note When making an API call, you may pass UploadEntityDefinitionsRequest
2037
- # data as a hash:
2038
- #
2039
- # {
2040
- # document: {
2041
- # language: "GRAPHQL", # required, accepts GRAPHQL
2042
- # text: "DefinitionText", # required
2043
- # },
2044
- # sync_with_public_namespace: false,
2045
- # deprecate_existing_entities: false,
2046
- # }
2047
- #
2048
1662
  # @!attribute [rw] document
2049
1663
  # The `DefinitionDocument` that defines the updated entities.
2050
1664
  # @return [Types::DefinitionDocument]
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-iotthingsgraph/customizations'
52
52
  # @!group service
53
53
  module Aws::IoTThingsGraph
54
54
 
55
- GEM_VERSION = '1.25.0'
55
+ GEM_VERSION = '1.26.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-iotthingsgraph
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.25.0
4
+ version: 1.26.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: 2023-01-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core