aws-sdk-clouddirectory 1.67.0 → 1.69.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-clouddirectory/client.rb +976 -1
- data/lib/aws-sdk-clouddirectory/endpoint_parameters.rb +9 -6
- data/lib/aws-sdk-clouddirectory/endpoint_provider.rb +2 -2
- data/lib/aws-sdk-clouddirectory/endpoints.rb +2 -724
- data/lib/aws-sdk-clouddirectory/plugins/endpoints.rb +1 -138
- data/lib/aws-sdk-clouddirectory.rb +1 -1
- metadata +4 -4
@@ -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::CloudDirectory::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,143 +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 :add_facet_to_object
|
74
|
-
Aws::CloudDirectory::Endpoints::AddFacetToObject.build(context)
|
75
|
-
when :apply_schema
|
76
|
-
Aws::CloudDirectory::Endpoints::ApplySchema.build(context)
|
77
|
-
when :attach_object
|
78
|
-
Aws::CloudDirectory::Endpoints::AttachObject.build(context)
|
79
|
-
when :attach_policy
|
80
|
-
Aws::CloudDirectory::Endpoints::AttachPolicy.build(context)
|
81
|
-
when :attach_to_index
|
82
|
-
Aws::CloudDirectory::Endpoints::AttachToIndex.build(context)
|
83
|
-
when :attach_typed_link
|
84
|
-
Aws::CloudDirectory::Endpoints::AttachTypedLink.build(context)
|
85
|
-
when :batch_read
|
86
|
-
Aws::CloudDirectory::Endpoints::BatchRead.build(context)
|
87
|
-
when :batch_write
|
88
|
-
Aws::CloudDirectory::Endpoints::BatchWrite.build(context)
|
89
|
-
when :create_directory
|
90
|
-
Aws::CloudDirectory::Endpoints::CreateDirectory.build(context)
|
91
|
-
when :create_facet
|
92
|
-
Aws::CloudDirectory::Endpoints::CreateFacet.build(context)
|
93
|
-
when :create_index
|
94
|
-
Aws::CloudDirectory::Endpoints::CreateIndex.build(context)
|
95
|
-
when :create_object
|
96
|
-
Aws::CloudDirectory::Endpoints::CreateObject.build(context)
|
97
|
-
when :create_schema
|
98
|
-
Aws::CloudDirectory::Endpoints::CreateSchema.build(context)
|
99
|
-
when :create_typed_link_facet
|
100
|
-
Aws::CloudDirectory::Endpoints::CreateTypedLinkFacet.build(context)
|
101
|
-
when :delete_directory
|
102
|
-
Aws::CloudDirectory::Endpoints::DeleteDirectory.build(context)
|
103
|
-
when :delete_facet
|
104
|
-
Aws::CloudDirectory::Endpoints::DeleteFacet.build(context)
|
105
|
-
when :delete_object
|
106
|
-
Aws::CloudDirectory::Endpoints::DeleteObject.build(context)
|
107
|
-
when :delete_schema
|
108
|
-
Aws::CloudDirectory::Endpoints::DeleteSchema.build(context)
|
109
|
-
when :delete_typed_link_facet
|
110
|
-
Aws::CloudDirectory::Endpoints::DeleteTypedLinkFacet.build(context)
|
111
|
-
when :detach_from_index
|
112
|
-
Aws::CloudDirectory::Endpoints::DetachFromIndex.build(context)
|
113
|
-
when :detach_object
|
114
|
-
Aws::CloudDirectory::Endpoints::DetachObject.build(context)
|
115
|
-
when :detach_policy
|
116
|
-
Aws::CloudDirectory::Endpoints::DetachPolicy.build(context)
|
117
|
-
when :detach_typed_link
|
118
|
-
Aws::CloudDirectory::Endpoints::DetachTypedLink.build(context)
|
119
|
-
when :disable_directory
|
120
|
-
Aws::CloudDirectory::Endpoints::DisableDirectory.build(context)
|
121
|
-
when :enable_directory
|
122
|
-
Aws::CloudDirectory::Endpoints::EnableDirectory.build(context)
|
123
|
-
when :get_applied_schema_version
|
124
|
-
Aws::CloudDirectory::Endpoints::GetAppliedSchemaVersion.build(context)
|
125
|
-
when :get_directory
|
126
|
-
Aws::CloudDirectory::Endpoints::GetDirectory.build(context)
|
127
|
-
when :get_facet
|
128
|
-
Aws::CloudDirectory::Endpoints::GetFacet.build(context)
|
129
|
-
when :get_link_attributes
|
130
|
-
Aws::CloudDirectory::Endpoints::GetLinkAttributes.build(context)
|
131
|
-
when :get_object_attributes
|
132
|
-
Aws::CloudDirectory::Endpoints::GetObjectAttributes.build(context)
|
133
|
-
when :get_object_information
|
134
|
-
Aws::CloudDirectory::Endpoints::GetObjectInformation.build(context)
|
135
|
-
when :get_schema_as_json
|
136
|
-
Aws::CloudDirectory::Endpoints::GetSchemaAsJson.build(context)
|
137
|
-
when :get_typed_link_facet_information
|
138
|
-
Aws::CloudDirectory::Endpoints::GetTypedLinkFacetInformation.build(context)
|
139
|
-
when :list_applied_schema_arns
|
140
|
-
Aws::CloudDirectory::Endpoints::ListAppliedSchemaArns.build(context)
|
141
|
-
when :list_attached_indices
|
142
|
-
Aws::CloudDirectory::Endpoints::ListAttachedIndices.build(context)
|
143
|
-
when :list_development_schema_arns
|
144
|
-
Aws::CloudDirectory::Endpoints::ListDevelopmentSchemaArns.build(context)
|
145
|
-
when :list_directories
|
146
|
-
Aws::CloudDirectory::Endpoints::ListDirectories.build(context)
|
147
|
-
when :list_facet_attributes
|
148
|
-
Aws::CloudDirectory::Endpoints::ListFacetAttributes.build(context)
|
149
|
-
when :list_facet_names
|
150
|
-
Aws::CloudDirectory::Endpoints::ListFacetNames.build(context)
|
151
|
-
when :list_incoming_typed_links
|
152
|
-
Aws::CloudDirectory::Endpoints::ListIncomingTypedLinks.build(context)
|
153
|
-
when :list_index
|
154
|
-
Aws::CloudDirectory::Endpoints::ListIndex.build(context)
|
155
|
-
when :list_managed_schema_arns
|
156
|
-
Aws::CloudDirectory::Endpoints::ListManagedSchemaArns.build(context)
|
157
|
-
when :list_object_attributes
|
158
|
-
Aws::CloudDirectory::Endpoints::ListObjectAttributes.build(context)
|
159
|
-
when :list_object_children
|
160
|
-
Aws::CloudDirectory::Endpoints::ListObjectChildren.build(context)
|
161
|
-
when :list_object_parent_paths
|
162
|
-
Aws::CloudDirectory::Endpoints::ListObjectParentPaths.build(context)
|
163
|
-
when :list_object_parents
|
164
|
-
Aws::CloudDirectory::Endpoints::ListObjectParents.build(context)
|
165
|
-
when :list_object_policies
|
166
|
-
Aws::CloudDirectory::Endpoints::ListObjectPolicies.build(context)
|
167
|
-
when :list_outgoing_typed_links
|
168
|
-
Aws::CloudDirectory::Endpoints::ListOutgoingTypedLinks.build(context)
|
169
|
-
when :list_policy_attachments
|
170
|
-
Aws::CloudDirectory::Endpoints::ListPolicyAttachments.build(context)
|
171
|
-
when :list_published_schema_arns
|
172
|
-
Aws::CloudDirectory::Endpoints::ListPublishedSchemaArns.build(context)
|
173
|
-
when :list_tags_for_resource
|
174
|
-
Aws::CloudDirectory::Endpoints::ListTagsForResource.build(context)
|
175
|
-
when :list_typed_link_facet_attributes
|
176
|
-
Aws::CloudDirectory::Endpoints::ListTypedLinkFacetAttributes.build(context)
|
177
|
-
when :list_typed_link_facet_names
|
178
|
-
Aws::CloudDirectory::Endpoints::ListTypedLinkFacetNames.build(context)
|
179
|
-
when :lookup_policy
|
180
|
-
Aws::CloudDirectory::Endpoints::LookupPolicy.build(context)
|
181
|
-
when :publish_schema
|
182
|
-
Aws::CloudDirectory::Endpoints::PublishSchema.build(context)
|
183
|
-
when :put_schema_from_json
|
184
|
-
Aws::CloudDirectory::Endpoints::PutSchemaFromJson.build(context)
|
185
|
-
when :remove_facet_from_object
|
186
|
-
Aws::CloudDirectory::Endpoints::RemoveFacetFromObject.build(context)
|
187
|
-
when :tag_resource
|
188
|
-
Aws::CloudDirectory::Endpoints::TagResource.build(context)
|
189
|
-
when :untag_resource
|
190
|
-
Aws::CloudDirectory::Endpoints::UntagResource.build(context)
|
191
|
-
when :update_facet
|
192
|
-
Aws::CloudDirectory::Endpoints::UpdateFacet.build(context)
|
193
|
-
when :update_link_attributes
|
194
|
-
Aws::CloudDirectory::Endpoints::UpdateLinkAttributes.build(context)
|
195
|
-
when :update_object_attributes
|
196
|
-
Aws::CloudDirectory::Endpoints::UpdateObjectAttributes.build(context)
|
197
|
-
when :update_schema
|
198
|
-
Aws::CloudDirectory::Endpoints::UpdateSchema.build(context)
|
199
|
-
when :update_typed_link_facet
|
200
|
-
Aws::CloudDirectory::Endpoints::UpdateTypedLinkFacet.build(context)
|
201
|
-
when :upgrade_applied_schema
|
202
|
-
Aws::CloudDirectory::Endpoints::UpgradeAppliedSchema.build(context)
|
203
|
-
when :upgrade_published_schema
|
204
|
-
Aws::CloudDirectory::Endpoints::UpgradePublishedSchema.build(context)
|
205
|
-
end
|
206
|
-
end
|
207
70
|
end
|
208
71
|
|
209
72
|
def add_handlers(handlers, _config)
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-clouddirectory
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.69.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-
|
11
|
+
date: 2024-10-18 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.
|
22
|
+
version: 3.210.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.
|
32
|
+
version: 3.210.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|