aws-sdk-resourcegroups 1.46.0 → 1.48.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 +13 -1
- data/VERSION +1 -1
- data/lib/aws-sdk-resourcegroups/client.rb +122 -43
- data/lib/aws-sdk-resourcegroups/client_api.rb +47 -0
- data/lib/aws-sdk-resourcegroups/endpoint_parameters.rb +3 -0
- data/lib/aws-sdk-resourcegroups/endpoint_provider.rb +38 -102
- data/lib/aws-sdk-resourcegroups/endpoints.rb +28 -0
- data/lib/aws-sdk-resourcegroups/plugins/endpoints.rb +4 -0
- data/lib/aws-sdk-resourcegroups/types.rb +221 -366
- data/lib/aws-sdk-resourcegroups.rb +1 -1
- metadata +2 -2
@@ -39,6 +39,20 @@ module Aws::ResourceGroups
|
|
39
39
|
end
|
40
40
|
end
|
41
41
|
|
42
|
+
class GetAccountSettings
|
43
|
+
def self.build(context)
|
44
|
+
unless context.config.regional_endpoint
|
45
|
+
endpoint = context.config.endpoint.to_s
|
46
|
+
end
|
47
|
+
Aws::ResourceGroups::EndpointParameters.new(
|
48
|
+
region: context.config.region,
|
49
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
50
|
+
use_fips: context.config.use_fips_endpoint,
|
51
|
+
endpoint: endpoint,
|
52
|
+
)
|
53
|
+
end
|
54
|
+
end
|
55
|
+
|
42
56
|
class GetGroup
|
43
57
|
def self.build(context)
|
44
58
|
unless context.config.regional_endpoint
|
@@ -207,6 +221,20 @@ module Aws::ResourceGroups
|
|
207
221
|
end
|
208
222
|
end
|
209
223
|
|
224
|
+
class UpdateAccountSettings
|
225
|
+
def self.build(context)
|
226
|
+
unless context.config.regional_endpoint
|
227
|
+
endpoint = context.config.endpoint.to_s
|
228
|
+
end
|
229
|
+
Aws::ResourceGroups::EndpointParameters.new(
|
230
|
+
region: context.config.region,
|
231
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
232
|
+
use_fips: context.config.use_fips_endpoint,
|
233
|
+
endpoint: endpoint,
|
234
|
+
)
|
235
|
+
end
|
236
|
+
end
|
237
|
+
|
210
238
|
class UpdateGroup
|
211
239
|
def self.build(context)
|
212
240
|
unless context.config.regional_endpoint
|
@@ -60,6 +60,8 @@ module Aws::ResourceGroups
|
|
60
60
|
Aws::ResourceGroups::Endpoints::CreateGroup.build(context)
|
61
61
|
when :delete_group
|
62
62
|
Aws::ResourceGroups::Endpoints::DeleteGroup.build(context)
|
63
|
+
when :get_account_settings
|
64
|
+
Aws::ResourceGroups::Endpoints::GetAccountSettings.build(context)
|
63
65
|
when :get_group
|
64
66
|
Aws::ResourceGroups::Endpoints::GetGroup.build(context)
|
65
67
|
when :get_group_configuration
|
@@ -84,6 +86,8 @@ module Aws::ResourceGroups
|
|
84
86
|
Aws::ResourceGroups::Endpoints::UngroupResources.build(context)
|
85
87
|
when :untag
|
86
88
|
Aws::ResourceGroups::Endpoints::Untag.build(context)
|
89
|
+
when :update_account_settings
|
90
|
+
Aws::ResourceGroups::Endpoints::UpdateAccountSettings.build(context)
|
87
91
|
when :update_group
|
88
92
|
Aws::ResourceGroups::Endpoints::UpdateGroup.build(context)
|
89
93
|
when :update_group_query
|