aws-sdk-greengrass 1.75.0 → 1.77.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.
@@ -27,7 +27,7 @@ The endpoint provider used to resolve endpoints. Any object that responds to
27
27
  class Handler < Seahorse::Client::Handler
28
28
  def call(context)
29
29
  unless context[:discovered_endpoint]
30
- params = parameters_for_operation(context)
30
+ params = Aws::Greengrass::Endpoints.parameters_for_operation(context)
31
31
  endpoint = context.config.endpoint_provider.resolve_endpoint(params)
32
32
 
33
33
  context.http_request.endpoint = endpoint.url
@@ -67,195 +67,6 @@ The endpoint provider used to resolve endpoints. Any object that responds to
67
67
  context.http_request.headers[key] = value
68
68
  end
69
69
  end
70
-
71
- def parameters_for_operation(context)
72
- case context.operation_name
73
- when :associate_role_to_group
74
- Aws::Greengrass::Endpoints::AssociateRoleToGroup.build(context)
75
- when :associate_service_role_to_account
76
- Aws::Greengrass::Endpoints::AssociateServiceRoleToAccount.build(context)
77
- when :create_connector_definition
78
- Aws::Greengrass::Endpoints::CreateConnectorDefinition.build(context)
79
- when :create_connector_definition_version
80
- Aws::Greengrass::Endpoints::CreateConnectorDefinitionVersion.build(context)
81
- when :create_core_definition
82
- Aws::Greengrass::Endpoints::CreateCoreDefinition.build(context)
83
- when :create_core_definition_version
84
- Aws::Greengrass::Endpoints::CreateCoreDefinitionVersion.build(context)
85
- when :create_deployment
86
- Aws::Greengrass::Endpoints::CreateDeployment.build(context)
87
- when :create_device_definition
88
- Aws::Greengrass::Endpoints::CreateDeviceDefinition.build(context)
89
- when :create_device_definition_version
90
- Aws::Greengrass::Endpoints::CreateDeviceDefinitionVersion.build(context)
91
- when :create_function_definition
92
- Aws::Greengrass::Endpoints::CreateFunctionDefinition.build(context)
93
- when :create_function_definition_version
94
- Aws::Greengrass::Endpoints::CreateFunctionDefinitionVersion.build(context)
95
- when :create_group
96
- Aws::Greengrass::Endpoints::CreateGroup.build(context)
97
- when :create_group_certificate_authority
98
- Aws::Greengrass::Endpoints::CreateGroupCertificateAuthority.build(context)
99
- when :create_group_version
100
- Aws::Greengrass::Endpoints::CreateGroupVersion.build(context)
101
- when :create_logger_definition
102
- Aws::Greengrass::Endpoints::CreateLoggerDefinition.build(context)
103
- when :create_logger_definition_version
104
- Aws::Greengrass::Endpoints::CreateLoggerDefinitionVersion.build(context)
105
- when :create_resource_definition
106
- Aws::Greengrass::Endpoints::CreateResourceDefinition.build(context)
107
- when :create_resource_definition_version
108
- Aws::Greengrass::Endpoints::CreateResourceDefinitionVersion.build(context)
109
- when :create_software_update_job
110
- Aws::Greengrass::Endpoints::CreateSoftwareUpdateJob.build(context)
111
- when :create_subscription_definition
112
- Aws::Greengrass::Endpoints::CreateSubscriptionDefinition.build(context)
113
- when :create_subscription_definition_version
114
- Aws::Greengrass::Endpoints::CreateSubscriptionDefinitionVersion.build(context)
115
- when :delete_connector_definition
116
- Aws::Greengrass::Endpoints::DeleteConnectorDefinition.build(context)
117
- when :delete_core_definition
118
- Aws::Greengrass::Endpoints::DeleteCoreDefinition.build(context)
119
- when :delete_device_definition
120
- Aws::Greengrass::Endpoints::DeleteDeviceDefinition.build(context)
121
- when :delete_function_definition
122
- Aws::Greengrass::Endpoints::DeleteFunctionDefinition.build(context)
123
- when :delete_group
124
- Aws::Greengrass::Endpoints::DeleteGroup.build(context)
125
- when :delete_logger_definition
126
- Aws::Greengrass::Endpoints::DeleteLoggerDefinition.build(context)
127
- when :delete_resource_definition
128
- Aws::Greengrass::Endpoints::DeleteResourceDefinition.build(context)
129
- when :delete_subscription_definition
130
- Aws::Greengrass::Endpoints::DeleteSubscriptionDefinition.build(context)
131
- when :disassociate_role_from_group
132
- Aws::Greengrass::Endpoints::DisassociateRoleFromGroup.build(context)
133
- when :disassociate_service_role_from_account
134
- Aws::Greengrass::Endpoints::DisassociateServiceRoleFromAccount.build(context)
135
- when :get_associated_role
136
- Aws::Greengrass::Endpoints::GetAssociatedRole.build(context)
137
- when :get_bulk_deployment_status
138
- Aws::Greengrass::Endpoints::GetBulkDeploymentStatus.build(context)
139
- when :get_connectivity_info
140
- Aws::Greengrass::Endpoints::GetConnectivityInfo.build(context)
141
- when :get_connector_definition
142
- Aws::Greengrass::Endpoints::GetConnectorDefinition.build(context)
143
- when :get_connector_definition_version
144
- Aws::Greengrass::Endpoints::GetConnectorDefinitionVersion.build(context)
145
- when :get_core_definition
146
- Aws::Greengrass::Endpoints::GetCoreDefinition.build(context)
147
- when :get_core_definition_version
148
- Aws::Greengrass::Endpoints::GetCoreDefinitionVersion.build(context)
149
- when :get_deployment_status
150
- Aws::Greengrass::Endpoints::GetDeploymentStatus.build(context)
151
- when :get_device_definition
152
- Aws::Greengrass::Endpoints::GetDeviceDefinition.build(context)
153
- when :get_device_definition_version
154
- Aws::Greengrass::Endpoints::GetDeviceDefinitionVersion.build(context)
155
- when :get_function_definition
156
- Aws::Greengrass::Endpoints::GetFunctionDefinition.build(context)
157
- when :get_function_definition_version
158
- Aws::Greengrass::Endpoints::GetFunctionDefinitionVersion.build(context)
159
- when :get_group
160
- Aws::Greengrass::Endpoints::GetGroup.build(context)
161
- when :get_group_certificate_authority
162
- Aws::Greengrass::Endpoints::GetGroupCertificateAuthority.build(context)
163
- when :get_group_certificate_configuration
164
- Aws::Greengrass::Endpoints::GetGroupCertificateConfiguration.build(context)
165
- when :get_group_version
166
- Aws::Greengrass::Endpoints::GetGroupVersion.build(context)
167
- when :get_logger_definition
168
- Aws::Greengrass::Endpoints::GetLoggerDefinition.build(context)
169
- when :get_logger_definition_version
170
- Aws::Greengrass::Endpoints::GetLoggerDefinitionVersion.build(context)
171
- when :get_resource_definition
172
- Aws::Greengrass::Endpoints::GetResourceDefinition.build(context)
173
- when :get_resource_definition_version
174
- Aws::Greengrass::Endpoints::GetResourceDefinitionVersion.build(context)
175
- when :get_service_role_for_account
176
- Aws::Greengrass::Endpoints::GetServiceRoleForAccount.build(context)
177
- when :get_subscription_definition
178
- Aws::Greengrass::Endpoints::GetSubscriptionDefinition.build(context)
179
- when :get_subscription_definition_version
180
- Aws::Greengrass::Endpoints::GetSubscriptionDefinitionVersion.build(context)
181
- when :get_thing_runtime_configuration
182
- Aws::Greengrass::Endpoints::GetThingRuntimeConfiguration.build(context)
183
- when :list_bulk_deployment_detailed_reports
184
- Aws::Greengrass::Endpoints::ListBulkDeploymentDetailedReports.build(context)
185
- when :list_bulk_deployments
186
- Aws::Greengrass::Endpoints::ListBulkDeployments.build(context)
187
- when :list_connector_definition_versions
188
- Aws::Greengrass::Endpoints::ListConnectorDefinitionVersions.build(context)
189
- when :list_connector_definitions
190
- Aws::Greengrass::Endpoints::ListConnectorDefinitions.build(context)
191
- when :list_core_definition_versions
192
- Aws::Greengrass::Endpoints::ListCoreDefinitionVersions.build(context)
193
- when :list_core_definitions
194
- Aws::Greengrass::Endpoints::ListCoreDefinitions.build(context)
195
- when :list_deployments
196
- Aws::Greengrass::Endpoints::ListDeployments.build(context)
197
- when :list_device_definition_versions
198
- Aws::Greengrass::Endpoints::ListDeviceDefinitionVersions.build(context)
199
- when :list_device_definitions
200
- Aws::Greengrass::Endpoints::ListDeviceDefinitions.build(context)
201
- when :list_function_definition_versions
202
- Aws::Greengrass::Endpoints::ListFunctionDefinitionVersions.build(context)
203
- when :list_function_definitions
204
- Aws::Greengrass::Endpoints::ListFunctionDefinitions.build(context)
205
- when :list_group_certificate_authorities
206
- Aws::Greengrass::Endpoints::ListGroupCertificateAuthorities.build(context)
207
- when :list_group_versions
208
- Aws::Greengrass::Endpoints::ListGroupVersions.build(context)
209
- when :list_groups
210
- Aws::Greengrass::Endpoints::ListGroups.build(context)
211
- when :list_logger_definition_versions
212
- Aws::Greengrass::Endpoints::ListLoggerDefinitionVersions.build(context)
213
- when :list_logger_definitions
214
- Aws::Greengrass::Endpoints::ListLoggerDefinitions.build(context)
215
- when :list_resource_definition_versions
216
- Aws::Greengrass::Endpoints::ListResourceDefinitionVersions.build(context)
217
- when :list_resource_definitions
218
- Aws::Greengrass::Endpoints::ListResourceDefinitions.build(context)
219
- when :list_subscription_definition_versions
220
- Aws::Greengrass::Endpoints::ListSubscriptionDefinitionVersions.build(context)
221
- when :list_subscription_definitions
222
- Aws::Greengrass::Endpoints::ListSubscriptionDefinitions.build(context)
223
- when :list_tags_for_resource
224
- Aws::Greengrass::Endpoints::ListTagsForResource.build(context)
225
- when :reset_deployments
226
- Aws::Greengrass::Endpoints::ResetDeployments.build(context)
227
- when :start_bulk_deployment
228
- Aws::Greengrass::Endpoints::StartBulkDeployment.build(context)
229
- when :stop_bulk_deployment
230
- Aws::Greengrass::Endpoints::StopBulkDeployment.build(context)
231
- when :tag_resource
232
- Aws::Greengrass::Endpoints::TagResource.build(context)
233
- when :untag_resource
234
- Aws::Greengrass::Endpoints::UntagResource.build(context)
235
- when :update_connectivity_info
236
- Aws::Greengrass::Endpoints::UpdateConnectivityInfo.build(context)
237
- when :update_connector_definition
238
- Aws::Greengrass::Endpoints::UpdateConnectorDefinition.build(context)
239
- when :update_core_definition
240
- Aws::Greengrass::Endpoints::UpdateCoreDefinition.build(context)
241
- when :update_device_definition
242
- Aws::Greengrass::Endpoints::UpdateDeviceDefinition.build(context)
243
- when :update_function_definition
244
- Aws::Greengrass::Endpoints::UpdateFunctionDefinition.build(context)
245
- when :update_group
246
- Aws::Greengrass::Endpoints::UpdateGroup.build(context)
247
- when :update_group_certificate_configuration
248
- Aws::Greengrass::Endpoints::UpdateGroupCertificateConfiguration.build(context)
249
- when :update_logger_definition
250
- Aws::Greengrass::Endpoints::UpdateLoggerDefinition.build(context)
251
- when :update_resource_definition
252
- Aws::Greengrass::Endpoints::UpdateResourceDefinition.build(context)
253
- when :update_subscription_definition
254
- Aws::Greengrass::Endpoints::UpdateSubscriptionDefinition.build(context)
255
- when :update_thing_runtime_configuration
256
- Aws::Greengrass::Endpoints::UpdateThingRuntimeConfiguration.build(context)
257
- end
258
- end
259
70
  end
260
71
 
261
72
  def add_handlers(handlers, _config)
@@ -54,7 +54,7 @@ module Aws::Greengrass
54
54
  autoload :EndpointProvider, 'aws-sdk-greengrass/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-greengrass/endpoints'
56
56
 
57
- GEM_VERSION = '1.75.0'
57
+ GEM_VERSION = '1.77.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -39,7 +39,9 @@ module Aws
39
39
  ?logger: untyped,
40
40
  ?max_attempts: Integer,
41
41
  ?profile: String,
42
+ ?request_checksum_calculation: String,
42
43
  ?request_min_compression_size_bytes: Integer,
44
+ ?response_checksum_validation: String,
43
45
  ?retry_backoff: Proc,
44
46
  ?retry_base_delay: Float,
45
47
  ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
data/sig/resource.rbs CHANGED
@@ -39,7 +39,9 @@ module Aws
39
39
  ?logger: untyped,
40
40
  ?max_attempts: Integer,
41
41
  ?profile: String,
42
+ ?request_checksum_calculation: String,
42
43
  ?request_min_compression_size_bytes: Integer,
44
+ ?response_checksum_validation: String,
43
45
  ?retry_backoff: Proc,
44
46
  ?retry_base_delay: Float,
45
47
  ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-greengrass
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.75.0
4
+ version: 1.77.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: 2024-09-24 00:00:00.000000000 Z
11
+ date: 2025-01-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.207.0
22
+ version: 3.216.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.207.0
32
+ version: 3.216.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement