aws-sdk-locationservice 1.43.0 → 1.44.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-locationservice/client.rb +16 -1
- data/lib/aws-sdk-locationservice/client_api.rb +1 -0
- data/lib/aws-sdk-locationservice/types.rb +17 -1
- data/lib/aws-sdk-locationservice.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 93e9fe61b27c4450689cf2675904d8df7550dff97541dbdeff5875d7789b2e3e
|
4
|
+
data.tar.gz: d4d2c0cc017600f225d45ffb864d70fcf2b9db0e5e12b7b2388cbd1e703bbbae
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f5047b6482d2b2dfd4ef976d5ea70ebb37ec1a90053168dac5916cc293a951a7e11773f060ffad763716d8fd8581debbd27eb6e1ed5ee1092526c931c3bfc968
|
7
|
+
data.tar.gz: e14e84d16379acff2d4d28d83b62859d1374c38818c91f9289d5f92ed9e0dd9575d25ff614c961dfae0feb6b35e78aeb3b00276e180d4b861ac58abc47637652
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.44.0
|
@@ -2069,6 +2069,20 @@ module Aws::LocationService
|
|
2069
2069
|
# Deletes the specified API key. The API key must have been deactivated
|
2070
2070
|
# more than 90 days previously.
|
2071
2071
|
#
|
2072
|
+
# @option params [Boolean] :force_delete
|
2073
|
+
# ForceDelete bypasses an API key's expiry conditions and deletes the
|
2074
|
+
# key. Set the parameter `true` to delete the key or to `false` to not
|
2075
|
+
# preemptively delete the API key.
|
2076
|
+
#
|
2077
|
+
# Valid values: `true`, or `false`.
|
2078
|
+
#
|
2079
|
+
# Required: No
|
2080
|
+
#
|
2081
|
+
# <note markdown="1"> This action is irreversible. Only use ForceDelete if you are certain
|
2082
|
+
# the key is no longer in use.
|
2083
|
+
#
|
2084
|
+
# </note>
|
2085
|
+
#
|
2072
2086
|
# @option params [required, String] :key_name
|
2073
2087
|
# The name of the API key to delete.
|
2074
2088
|
#
|
@@ -2077,6 +2091,7 @@ module Aws::LocationService
|
|
2077
2091
|
# @example Request syntax with placeholder values
|
2078
2092
|
#
|
2079
2093
|
# resp = client.delete_key({
|
2094
|
+
# force_delete: false,
|
2080
2095
|
# key_name: "ResourceName", # required
|
2081
2096
|
# })
|
2082
2097
|
#
|
@@ -4602,7 +4617,7 @@ module Aws::LocationService
|
|
4602
4617
|
params: params,
|
4603
4618
|
config: config)
|
4604
4619
|
context[:gem_name] = 'aws-sdk-locationservice'
|
4605
|
-
context[:gem_version] = '1.
|
4620
|
+
context[:gem_version] = '1.44.0'
|
4606
4621
|
Seahorse::Client::Request.new(handlers, context)
|
4607
4622
|
end
|
4608
4623
|
|
@@ -623,6 +623,7 @@ module Aws::LocationService
|
|
623
623
|
|
624
624
|
DeleteGeofenceCollectionResponse.struct_class = Types::DeleteGeofenceCollectionResponse
|
625
625
|
|
626
|
+
DeleteKeyRequest.add_member(:force_delete, Shapes::ShapeRef.new(shape: Boolean, location: "querystring", location_name: "forceDelete"))
|
626
627
|
DeleteKeyRequest.add_member(:key_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location: "uri", location_name: "KeyName"))
|
627
628
|
DeleteKeyRequest.struct_class = Types::DeleteKeyRequest
|
628
629
|
|
@@ -120,7 +120,7 @@ module Aws::LocationService
|
|
120
120
|
#
|
121
121
|
# * Other than wildcards, you must include the full ARN, including the
|
122
122
|
# `arn`, `partition`, `service`, `region`, `account-id` and
|
123
|
-
# `resource-id
|
123
|
+
# `resource-id` delimited by colons (:).
|
124
124
|
#
|
125
125
|
# * No spaces allowed, even with wildcards. For example,
|
126
126
|
# `arn:aws:geo:region:account-id:map/ExampleMap*`.
|
@@ -2126,6 +2126,21 @@ module Aws::LocationService
|
|
2126
2126
|
#
|
2127
2127
|
class DeleteGeofenceCollectionResponse < Aws::EmptyStructure; end
|
2128
2128
|
|
2129
|
+
# @!attribute [rw] force_delete
|
2130
|
+
# ForceDelete bypasses an API key's expiry conditions and deletes the
|
2131
|
+
# key. Set the parameter `true` to delete the key or to `false` to not
|
2132
|
+
# preemptively delete the API key.
|
2133
|
+
#
|
2134
|
+
# Valid values: `true`, or `false`.
|
2135
|
+
#
|
2136
|
+
# Required: No
|
2137
|
+
#
|
2138
|
+
# <note markdown="1"> This action is irreversible. Only use ForceDelete if you are certain
|
2139
|
+
# the key is no longer in use.
|
2140
|
+
#
|
2141
|
+
# </note>
|
2142
|
+
# @return [Boolean]
|
2143
|
+
#
|
2129
2144
|
# @!attribute [rw] key_name
|
2130
2145
|
# The name of the API key to delete.
|
2131
2146
|
# @return [String]
|
@@ -2133,6 +2148,7 @@ module Aws::LocationService
|
|
2133
2148
|
# @see http://docs.aws.amazon.com/goto/WebAPI/location-2020-11-19/DeleteKeyRequest AWS API Documentation
|
2134
2149
|
#
|
2135
2150
|
class DeleteKeyRequest < Struct.new(
|
2151
|
+
:force_delete,
|
2136
2152
|
:key_name)
|
2137
2153
|
SENSITIVE = []
|
2138
2154
|
include Aws::Structure
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-locationservice
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.44.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: 2023-12-
|
11
|
+
date: 2023-12-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|