aws-sdk-iottwinmaker 1.7.0 → 1.8.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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-iottwinmaker/client.rb +277 -7
- data/lib/aws-sdk-iottwinmaker/client_api.rb +220 -0
- data/lib/aws-sdk-iottwinmaker/endpoint_parameters.rb +3 -0
- data/lib/aws-sdk-iottwinmaker/endpoint_provider.rb +75 -77
- data/lib/aws-sdk-iottwinmaker/endpoints.rb +70 -0
- data/lib/aws-sdk-iottwinmaker/plugins/endpoints.rb +10 -0
- data/lib/aws-sdk-iottwinmaker/types.rb +422 -1525
- data/lib/aws-sdk-iottwinmaker.rb +1 -1
- metadata +2 -2
@@ -67,6 +67,20 @@ module Aws::IoTTwinMaker
|
|
67
67
|
end
|
68
68
|
end
|
69
69
|
|
70
|
+
class CreateSyncJob
|
71
|
+
def self.build(context)
|
72
|
+
unless context.config.regional_endpoint
|
73
|
+
endpoint = context.config.endpoint.to_s
|
74
|
+
end
|
75
|
+
Aws::IoTTwinMaker::EndpointParameters.new(
|
76
|
+
region: context.config.region,
|
77
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
78
|
+
use_fips: context.config.use_fips_endpoint,
|
79
|
+
endpoint: endpoint,
|
80
|
+
)
|
81
|
+
end
|
82
|
+
end
|
83
|
+
|
70
84
|
class CreateWorkspace
|
71
85
|
def self.build(context)
|
72
86
|
unless context.config.regional_endpoint
|
@@ -123,6 +137,20 @@ module Aws::IoTTwinMaker
|
|
123
137
|
end
|
124
138
|
end
|
125
139
|
|
140
|
+
class DeleteSyncJob
|
141
|
+
def self.build(context)
|
142
|
+
unless context.config.regional_endpoint
|
143
|
+
endpoint = context.config.endpoint.to_s
|
144
|
+
end
|
145
|
+
Aws::IoTTwinMaker::EndpointParameters.new(
|
146
|
+
region: context.config.region,
|
147
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
148
|
+
use_fips: context.config.use_fips_endpoint,
|
149
|
+
endpoint: endpoint,
|
150
|
+
)
|
151
|
+
end
|
152
|
+
end
|
153
|
+
|
126
154
|
class DeleteWorkspace
|
127
155
|
def self.build(context)
|
128
156
|
unless context.config.regional_endpoint
|
@@ -235,6 +263,20 @@ module Aws::IoTTwinMaker
|
|
235
263
|
end
|
236
264
|
end
|
237
265
|
|
266
|
+
class GetSyncJob
|
267
|
+
def self.build(context)
|
268
|
+
unless context.config.regional_endpoint
|
269
|
+
endpoint = context.config.endpoint.to_s
|
270
|
+
end
|
271
|
+
Aws::IoTTwinMaker::EndpointParameters.new(
|
272
|
+
region: context.config.region,
|
273
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
274
|
+
use_fips: context.config.use_fips_endpoint,
|
275
|
+
endpoint: endpoint,
|
276
|
+
)
|
277
|
+
end
|
278
|
+
end
|
279
|
+
|
238
280
|
class GetWorkspace
|
239
281
|
def self.build(context)
|
240
282
|
unless context.config.regional_endpoint
|
@@ -291,6 +333,34 @@ module Aws::IoTTwinMaker
|
|
291
333
|
end
|
292
334
|
end
|
293
335
|
|
336
|
+
class ListSyncJobs
|
337
|
+
def self.build(context)
|
338
|
+
unless context.config.regional_endpoint
|
339
|
+
endpoint = context.config.endpoint.to_s
|
340
|
+
end
|
341
|
+
Aws::IoTTwinMaker::EndpointParameters.new(
|
342
|
+
region: context.config.region,
|
343
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
344
|
+
use_fips: context.config.use_fips_endpoint,
|
345
|
+
endpoint: endpoint,
|
346
|
+
)
|
347
|
+
end
|
348
|
+
end
|
349
|
+
|
350
|
+
class ListSyncResources
|
351
|
+
def self.build(context)
|
352
|
+
unless context.config.regional_endpoint
|
353
|
+
endpoint = context.config.endpoint.to_s
|
354
|
+
end
|
355
|
+
Aws::IoTTwinMaker::EndpointParameters.new(
|
356
|
+
region: context.config.region,
|
357
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
358
|
+
use_fips: context.config.use_fips_endpoint,
|
359
|
+
endpoint: endpoint,
|
360
|
+
)
|
361
|
+
end
|
362
|
+
end
|
363
|
+
|
294
364
|
class ListTagsForResource
|
295
365
|
def self.build(context)
|
296
366
|
unless context.config.regional_endpoint
|
@@ -64,6 +64,8 @@ module Aws::IoTTwinMaker
|
|
64
64
|
Aws::IoTTwinMaker::Endpoints::CreateEntity.build(context)
|
65
65
|
when :create_scene
|
66
66
|
Aws::IoTTwinMaker::Endpoints::CreateScene.build(context)
|
67
|
+
when :create_sync_job
|
68
|
+
Aws::IoTTwinMaker::Endpoints::CreateSyncJob.build(context)
|
67
69
|
when :create_workspace
|
68
70
|
Aws::IoTTwinMaker::Endpoints::CreateWorkspace.build(context)
|
69
71
|
when :delete_component_type
|
@@ -72,6 +74,8 @@ module Aws::IoTTwinMaker
|
|
72
74
|
Aws::IoTTwinMaker::Endpoints::DeleteEntity.build(context)
|
73
75
|
when :delete_scene
|
74
76
|
Aws::IoTTwinMaker::Endpoints::DeleteScene.build(context)
|
77
|
+
when :delete_sync_job
|
78
|
+
Aws::IoTTwinMaker::Endpoints::DeleteSyncJob.build(context)
|
75
79
|
when :delete_workspace
|
76
80
|
Aws::IoTTwinMaker::Endpoints::DeleteWorkspace.build(context)
|
77
81
|
when :execute_query
|
@@ -88,6 +92,8 @@ module Aws::IoTTwinMaker
|
|
88
92
|
Aws::IoTTwinMaker::Endpoints::GetPropertyValueHistory.build(context)
|
89
93
|
when :get_scene
|
90
94
|
Aws::IoTTwinMaker::Endpoints::GetScene.build(context)
|
95
|
+
when :get_sync_job
|
96
|
+
Aws::IoTTwinMaker::Endpoints::GetSyncJob.build(context)
|
91
97
|
when :get_workspace
|
92
98
|
Aws::IoTTwinMaker::Endpoints::GetWorkspace.build(context)
|
93
99
|
when :list_component_types
|
@@ -96,6 +102,10 @@ module Aws::IoTTwinMaker
|
|
96
102
|
Aws::IoTTwinMaker::Endpoints::ListEntities.build(context)
|
97
103
|
when :list_scenes
|
98
104
|
Aws::IoTTwinMaker::Endpoints::ListScenes.build(context)
|
105
|
+
when :list_sync_jobs
|
106
|
+
Aws::IoTTwinMaker::Endpoints::ListSyncJobs.build(context)
|
107
|
+
when :list_sync_resources
|
108
|
+
Aws::IoTTwinMaker::Endpoints::ListSyncResources.build(context)
|
99
109
|
when :list_tags_for_resource
|
100
110
|
Aws::IoTTwinMaker::Endpoints::ListTagsForResource.build(context)
|
101
111
|
when :list_workspaces
|