aws-sdk-privatenetworks 1.2.0 → 1.3.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b893f7679a5c6d55591834975c5f945948470cf7f816e9cc76d628e0e14266a2
4
- data.tar.gz: 03aa966ce4fbe9d5e431e083cc9f20ffdc87b39ffb60767d70d6a09cc361331d
3
+ metadata.gz: 8be391ed40f3474a4a59216bf604330ead05858cc4b491f0c48d0d3832c32536
4
+ data.tar.gz: 0f3c7d4a40d6e0f0d9e6bdacbe0376c825139a3818ae243fdcfd11a4ff951255
5
5
  SHA512:
6
- metadata.gz: 38a6619ef77be1c9999db991a6e3d916d50483f68d87cb411a64d49d2041029b5889bfaa40dfb74c35a84c358fe8f937ba2228704bbf42c767e2c228f1ac0790
7
- data.tar.gz: 6a2162cbb6950f84a439701d25901fcc58bef747a166e410e37353d70ce4a5cfe6135609d025678ca7fa8e5c229ea0af91e01a6bde02482b8ab0bddddb4117fe
6
+ metadata.gz: cc4c064b17116046406bb0bb88e64152ae57ae24a324c7fd92accc80805d5221ded9bfc4ae2af45e0a4a59b3173a55f9207310bcbbdf487585746f032db23c87
7
+ data.tar.gz: 818992e038a9a8dc25b108253c183ed7a1ce6adfe08bc9644ff7d6c6a1f076e77bda460b554f29373024182cc38e696162ea437075dcaa9f802e1034df3836ec
data/CHANGELOG.md CHANGED
@@ -1,6 +1,13 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.3.0 (2023-01-18)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ * Issue - Replace runtime endpoint resolution approach with generated ruby code.
10
+
4
11
  1.2.0 (2022-10-28)
5
12
  ------------------
6
13
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.2.0
1
+ 1.3.0
@@ -1849,7 +1849,7 @@ module Aws::PrivateNetworks
1849
1849
  params: params,
1850
1850
  config: config)
1851
1851
  context[:gem_name] = 'aws-sdk-privatenetworks'
1852
- context[:gem_version] = '1.2.0'
1852
+ context[:gem_version] = '1.3.0'
1853
1853
  Seahorse::Client::Request.new(handlers, context)
1854
1854
  end
1855
1855
 
@@ -9,103 +9,43 @@
9
9
 
10
10
  module Aws::PrivateNetworks
11
11
  class EndpointProvider
12
- def initialize(rule_set = nil)
13
- @@rule_set ||= begin
14
- endpoint_rules = Aws::Json.load(Base64.decode64(RULES))
15
- Aws::Endpoints::RuleSet.new(
16
- version: endpoint_rules['version'],
17
- service_id: endpoint_rules['serviceId'],
18
- parameters: endpoint_rules['parameters'],
19
- rules: endpoint_rules['rules']
20
- )
12
+ def resolve_endpoint(parameters)
13
+ region = parameters.region
14
+ use_dual_stack = parameters.use_dual_stack
15
+ use_fips = parameters.use_fips
16
+ endpoint = parameters.endpoint
17
+ if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
18
+ if Aws::Endpoints::Matchers.set?(endpoint) && (url = Aws::Endpoints::Matchers.parse_url(endpoint))
19
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
20
+ raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
21
+ end
22
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
23
+ raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
24
+ end
25
+ return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
26
+ end
27
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
28
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
29
+ return Aws::Endpoints::Endpoint.new(url: "https://private-networks-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
30
+ end
31
+ raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
32
+ end
33
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
34
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
35
+ return Aws::Endpoints::Endpoint.new(url: "https://private-networks-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
36
+ end
37
+ raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
38
+ end
39
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
40
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
41
+ return Aws::Endpoints::Endpoint.new(url: "https://private-networks.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
42
+ end
43
+ raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
44
+ end
45
+ return Aws::Endpoints::Endpoint.new(url: "https://private-networks.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
21
46
  end
22
- @provider = Aws::Endpoints::RulesProvider.new(rule_set || @@rule_set)
23
- end
47
+ raise ArgumentError, 'No endpoint could be resolved'
24
48
 
25
- def resolve_endpoint(parameters)
26
- @provider.resolve_endpoint(parameters)
27
49
  end
28
-
29
- # @api private
30
- RULES = <<-JSON
31
- eyJ2ZXJzaW9uIjoiMS4wIiwicGFyYW1ldGVycyI6eyJSZWdpb24iOnsiYnVp
32
- bHRJbiI6IkFXUzo6UmVnaW9uIiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1bWVu
33
- dGF0aW9uIjoiVGhlIEFXUyByZWdpb24gdXNlZCB0byBkaXNwYXRjaCB0aGUg
34
- cmVxdWVzdC4iLCJ0eXBlIjoiU3RyaW5nIn0sIlVzZUR1YWxTdGFjayI6eyJi
35
- dWlsdEluIjoiQVdTOjpVc2VEdWFsU3RhY2siLCJyZXF1aXJlZCI6dHJ1ZSwi
36
- ZGVmYXVsdCI6ZmFsc2UsImRvY3VtZW50YXRpb24iOiJXaGVuIHRydWUsIHVz
37
- ZSB0aGUgZHVhbC1zdGFjayBlbmRwb2ludC4gSWYgdGhlIGNvbmZpZ3VyZWQg
38
- ZW5kcG9pbnQgZG9lcyBub3Qgc3VwcG9ydCBkdWFsLXN0YWNrLCBkaXNwYXRj
39
- aGluZyB0aGUgcmVxdWVzdCBNQVkgcmV0dXJuIGFuIGVycm9yLiIsInR5cGUi
40
- OiJCb29sZWFuIn0sIlVzZUZJUFMiOnsiYnVpbHRJbiI6IkFXUzo6VXNlRklQ
41
- UyIsInJlcXVpcmVkIjp0cnVlLCJkZWZhdWx0IjpmYWxzZSwiZG9jdW1lbnRh
42
- dGlvbiI6IldoZW4gdHJ1ZSwgc2VuZCB0aGlzIHJlcXVlc3QgdG8gdGhlIEZJ
43
- UFMtY29tcGxpYW50IHJlZ2lvbmFsIGVuZHBvaW50LiBJZiB0aGUgY29uZmln
44
- dXJlZCBlbmRwb2ludCBkb2VzIG5vdCBoYXZlIGEgRklQUyBjb21wbGlhbnQg
45
- ZW5kcG9pbnQsIGRpc3BhdGNoaW5nIHRoZSByZXF1ZXN0IHdpbGwgcmV0dXJu
46
- IGFuIGVycm9yLiIsInR5cGUiOiJCb29sZWFuIn0sIkVuZHBvaW50Ijp7ImJ1
47
- aWx0SW4iOiJTREs6OkVuZHBvaW50IiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1
48
- bWVudGF0aW9uIjoiT3ZlcnJpZGUgdGhlIGVuZHBvaW50IHVzZWQgdG8gc2Vu
49
- ZCB0aGlzIHJlcXVlc3QiLCJ0eXBlIjoiU3RyaW5nIn19LCJydWxlcyI6W3si
50
- Y29uZGl0aW9ucyI6W3siZm4iOiJhd3MucGFydGl0aW9uIiwiYXJndiI6W3si
51
- cmVmIjoiUmVnaW9uIn1dLCJhc3NpZ24iOiJQYXJ0aXRpb25SZXN1bHQifV0s
52
- InR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoi
53
- aXNTZXQiLCJhcmd2IjpbeyJyZWYiOiJFbmRwb2ludCJ9XX0seyJmbiI6InBh
54
- cnNlVVJMIiwiYXJndiI6W3sicmVmIjoiRW5kcG9pbnQifV0sImFzc2lnbiI6
55
- InVybCJ9XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6
56
- W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQ
57
- UyJ9LHRydWVdfV0sImVycm9yIjoiSW52YWxpZCBDb25maWd1cmF0aW9uOiBG
58
- SVBTIGFuZCBjdXN0b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0
59
- eXBlIjoiZXJyb3IifSx7ImNvbmRpdGlvbnMiOltdLCJ0eXBlIjoidHJlZSIs
60
- InJ1bGVzIjpbeyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMi
61
- LCJhcmd2IjpbeyJyZWYiOiJVc2VEdWFsU3RhY2sifSx0cnVlXX1dLCJlcnJv
62
- ciI6IkludmFsaWQgQ29uZmlndXJhdGlvbjogRHVhbHN0YWNrIGFuZCBjdXN0
63
- b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0eXBlIjoiZXJyb3Ii
64
- fSx7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOnsicmVmIjoi
65
- RW5kcG9pbnQifSwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlw
66
- ZSI6ImVuZHBvaW50In1dfV19LHsiY29uZGl0aW9ucyI6W3siZm4iOiJib29s
67
- ZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQUyJ9LHRydWVdfSx7
68
- ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUR1YWxT
69
- dGFjayJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRp
70
- dGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsi
71
- Zm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0
72
- In0sInN1cHBvcnRzRklQUyJdfV19LHsiZm4iOiJib29sZWFuRXF1YWxzIiwi
73
- YXJndiI6W3RydWUseyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQ
74
- YXJ0aXRpb25SZXN1bHQifSwic3VwcG9ydHNEdWFsU3RhY2siXX1dfV0sInR5
75
- cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2lu
76
- dCI6eyJ1cmwiOiJodHRwczovL3ByaXZhdGUtbmV0d29ya3MtZmlwcy57UmVn
77
- aW9ufS57UGFydGl0aW9uUmVzdWx0I2R1YWxTdGFja0Ruc1N1ZmZpeH0iLCJw
78
- cm9wZXJ0aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0eXBlIjoiZW5kcG9pbnQi
79
- fV19LHsiY29uZGl0aW9ucyI6W10sImVycm9yIjoiRklQUyBhbmQgRHVhbFN0
80
- YWNrIGFyZSBlbmFibGVkLCBidXQgdGhpcyBwYXJ0aXRpb24gZG9lcyBub3Qg
81
- c3VwcG9ydCBvbmUgb3IgYm90aCIsInR5cGUiOiJlcnJvciJ9XX0seyJjb25k
82
- aXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbeyJyZWYi
83
- OiJVc2VGSVBTIn0sdHJ1ZV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3si
84
- Y29uZGl0aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3Ry
85
- dWUseyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQYXJ0aXRpb25S
86
- ZXN1bHQifSwic3VwcG9ydHNGSVBTIl19XX1dLCJ0eXBlIjoidHJlZSIsInJ1
87
- bGVzIjpbeyJjb25kaXRpb25zIjpbXSwiZW5kcG9pbnQiOnsidXJsIjoiaHR0
88
- cHM6Ly9wcml2YXRlLW5ldHdvcmtzLWZpcHMue1JlZ2lvbn0ue1BhcnRpdGlv
89
- blJlc3VsdCNkbnNTdWZmaXh9IiwicHJvcGVydGllcyI6e30sImhlYWRlcnMi
90
- Ont9fSwidHlwZSI6ImVuZHBvaW50In1dfSx7ImNvbmRpdGlvbnMiOltdLCJl
91
- cnJvciI6IkZJUFMgaXMgZW5hYmxlZCBidXQgdGhpcyBwYXJ0aXRpb24gZG9l
92
- cyBub3Qgc3VwcG9ydCBGSVBTIiwidHlwZSI6ImVycm9yIn1dfSx7ImNvbmRp
93
- dGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6
94
- IlVzZUR1YWxTdGFjayJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMi
95
- Olt7ImNvbmRpdGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3Yi
96
- Olt0cnVlLHsiZm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0
97
- aW9uUmVzdWx0In0sInN1cHBvcnRzRHVhbFN0YWNrIl19XX1dLCJ0eXBlIjoi
98
- dHJlZSIsInJ1bGVzIjpbeyJjb25kaXRpb25zIjpbXSwiZW5kcG9pbnQiOnsi
99
- dXJsIjoiaHR0cHM6Ly9wcml2YXRlLW5ldHdvcmtzLntSZWdpb259LntQYXJ0
100
- aXRpb25SZXN1bHQjZHVhbFN0YWNrRG5zU3VmZml4fSIsInByb3BlcnRpZXMi
101
- Ont9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX0seyJjb25k
102
- aXRpb25zIjpbXSwiZXJyb3IiOiJEdWFsU3RhY2sgaXMgZW5hYmxlZCBidXQg
103
- dGhpcyBwYXJ0aXRpb24gZG9lcyBub3Qgc3VwcG9ydCBEdWFsU3RhY2siLCJ0
104
- eXBlIjoiZXJyb3IifV19LHsiY29uZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7
105
- InVybCI6Imh0dHBzOi8vcHJpdmF0ZS1uZXR3b3Jrcy57UmVnaW9ufS57UGFy
106
- dGl0aW9uUmVzdWx0I2Ruc1N1ZmZpeH0iLCJwcm9wZXJ0aWVzIjp7fSwiaGVh
107
- ZGVycyI6e319LCJ0eXBlIjoiZW5kcG9pbnQifV19XX0=
108
-
109
- JSON
110
50
  end
111
51
  end
@@ -23,13 +23,6 @@ module Aws::PrivateNetworks
23
23
  include Aws::Structure
24
24
  end
25
25
 
26
- # @note When making an API call, you may pass AcknowledgeOrderReceiptRequest
27
- # data as a hash:
28
- #
29
- # {
30
- # order_arn: "Arn", # required
31
- # }
32
- #
33
26
  # @!attribute [rw] order_arn
34
27
  # The Amazon Resource Name (ARN) of the order.
35
28
  # @return [String]
@@ -54,14 +47,6 @@ module Aws::PrivateNetworks
54
47
  include Aws::Structure
55
48
  end
56
49
 
57
- # @note When making an API call, you may pass ActivateDeviceIdentifierRequest
58
- # data as a hash:
59
- #
60
- # {
61
- # client_token: "ClientToken",
62
- # device_identifier_arn: "Arn", # required
63
- # }
64
- #
65
50
  # @!attribute [rw] client_token
66
51
  # Unique, case-sensitive identifier that you provide to ensure the
67
52
  # idempotency of the request. For more information, see [How to ensure
@@ -102,26 +87,6 @@ module Aws::PrivateNetworks
102
87
  include Aws::Structure
103
88
  end
104
89
 
105
- # @note When making an API call, you may pass ActivateNetworkSiteRequest
106
- # data as a hash:
107
- #
108
- # {
109
- # client_token: "ClientToken",
110
- # network_site_arn: "Arn", # required
111
- # shipping_address: { # required
112
- # city: "AddressContent", # required
113
- # company: "AddressContent",
114
- # country: "AddressContent", # required
115
- # name: "AddressContent", # required
116
- # phone_number: "AddressContent",
117
- # postal_code: "AddressContent", # required
118
- # state_or_province: "AddressContent", # required
119
- # street1: "AddressContent", # required
120
- # street2: "AddressContent",
121
- # street3: "AddressContent",
122
- # },
123
- # }
124
- #
125
90
  # @!attribute [rw] client_token
126
91
  # Unique, case-sensitive identifier that you provide to ensure the
127
92
  # idempotency of the request. For more information, see [How to ensure
@@ -164,22 +129,6 @@ module Aws::PrivateNetworks
164
129
 
165
130
  # Information about an address.
166
131
  #
167
- # @note When making an API call, you may pass Address
168
- # data as a hash:
169
- #
170
- # {
171
- # city: "AddressContent", # required
172
- # company: "AddressContent",
173
- # country: "AddressContent", # required
174
- # name: "AddressContent", # required
175
- # phone_number: "AddressContent",
176
- # postal_code: "AddressContent", # required
177
- # state_or_province: "AddressContent", # required
178
- # street1: "AddressContent", # required
179
- # street2: "AddressContent",
180
- # street3: "AddressContent",
181
- # }
182
- #
183
132
  # @!attribute [rw] city
184
133
  # The city for this address.
185
134
  # @return [String]
@@ -237,24 +186,6 @@ module Aws::PrivateNetworks
237
186
  include Aws::Structure
238
187
  end
239
188
 
240
- # @note When making an API call, you may pass ConfigureAccessPointRequest
241
- # data as a hash:
242
- #
243
- # {
244
- # access_point_arn: "Arn", # required
245
- # cpi_secret_key: "ConfigureAccessPointRequestCpiSecretKeyString",
246
- # cpi_user_id: "ConfigureAccessPointRequestCpiUserIdString",
247
- # cpi_user_password: "ConfigureAccessPointRequestCpiUserPasswordString",
248
- # cpi_username: "ConfigureAccessPointRequestCpiUsernameString",
249
- # position: {
250
- # elevation: 1.0,
251
- # elevation_reference: "AGL", # accepts AGL, AMSL
252
- # elevation_unit: "FEET", # accepts FEET
253
- # latitude: 1.0,
254
- # longitude: 1.0,
255
- # },
256
- # }
257
- #
258
189
  # @!attribute [rw] access_point_arn
259
190
  # The Amazon Resource Name (ARN) of the network resource.
260
191
  # @return [String]
@@ -308,18 +239,6 @@ module Aws::PrivateNetworks
308
239
  include Aws::Structure
309
240
  end
310
241
 
311
- # @note When making an API call, you may pass CreateNetworkRequest
312
- # data as a hash:
313
- #
314
- # {
315
- # client_token: "ClientToken",
316
- # description: "Description",
317
- # network_name: "Name", # required
318
- # tags: {
319
- # "TagKey" => "TagValue",
320
- # },
321
- # }
322
- #
323
242
  # @!attribute [rw] client_token
324
243
  # Unique, case-sensitive identifier that you provide to ensure the
325
244
  # idempotency of the request. For more information, see [How to ensure
@@ -371,41 +290,6 @@ module Aws::PrivateNetworks
371
290
  include Aws::Structure
372
291
  end
373
292
 
374
- # @note When making an API call, you may pass CreateNetworkSiteRequest
375
- # data as a hash:
376
- #
377
- # {
378
- # availability_zone: "String",
379
- # availability_zone_id: "String",
380
- # client_token: "ClientToken",
381
- # description: "Description",
382
- # network_arn: "Arn", # required
383
- # network_site_name: "Name", # required
384
- # pending_plan: {
385
- # options: [
386
- # {
387
- # name: "String", # required
388
- # value: "String",
389
- # },
390
- # ],
391
- # resource_definitions: [
392
- # {
393
- # count: 1, # required
394
- # options: [
395
- # {
396
- # name: "String", # required
397
- # value: "String",
398
- # },
399
- # ],
400
- # type: "RADIO_UNIT", # required, accepts RADIO_UNIT, DEVICE_IDENTIFIER
401
- # },
402
- # ],
403
- # },
404
- # tags: {
405
- # "TagKey" => "TagValue",
406
- # },
407
- # }
408
- #
409
293
  # @!attribute [rw] availability_zone
410
294
  # The Availability Zone that is the parent of this site. You can't
411
295
  # change the Availability Zone after you create the site.
@@ -479,14 +363,6 @@ module Aws::PrivateNetworks
479
363
  include Aws::Structure
480
364
  end
481
365
 
482
- # @note When making an API call, you may pass DeactivateDeviceIdentifierRequest
483
- # data as a hash:
484
- #
485
- # {
486
- # client_token: "ClientToken",
487
- # device_identifier_arn: "Arn", # required
488
- # }
489
- #
490
366
  # @!attribute [rw] client_token
491
367
  # Unique, case-sensitive identifier that you provide to ensure the
492
368
  # idempotency of the request. For more information, see [How to ensure
@@ -522,14 +398,6 @@ module Aws::PrivateNetworks
522
398
  include Aws::Structure
523
399
  end
524
400
 
525
- # @note When making an API call, you may pass DeleteNetworkRequest
526
- # data as a hash:
527
- #
528
- # {
529
- # client_token: "ClientToken",
530
- # network_arn: "Arn", # required
531
- # }
532
- #
533
401
  # @!attribute [rw] client_token
534
402
  # Unique, case-sensitive identifier that you provide to ensure the
535
403
  # idempotency of the request. For more information, see [How to ensure
@@ -565,14 +433,6 @@ module Aws::PrivateNetworks
565
433
  include Aws::Structure
566
434
  end
567
435
 
568
- # @note When making an API call, you may pass DeleteNetworkSiteRequest
569
- # data as a hash:
570
- #
571
- # {
572
- # client_token: "ClientToken",
573
- # network_site_arn: "Arn", # required
574
- # }
575
- #
576
436
  # @!attribute [rw] client_token
577
437
  # Unique, case-sensitive identifier that you provide to ensure the
578
438
  # idempotency of the request. For more information, see [How to ensure
@@ -666,13 +526,6 @@ module Aws::PrivateNetworks
666
526
  include Aws::Structure
667
527
  end
668
528
 
669
- # @note When making an API call, you may pass GetDeviceIdentifierRequest
670
- # data as a hash:
671
- #
672
- # {
673
- # device_identifier_arn: "Arn", # required
674
- # }
675
- #
676
529
  # @!attribute [rw] device_identifier_arn
677
530
  # The Amazon Resource Name (ARN) of the device identifier.
678
531
  # @return [String]
@@ -702,13 +555,6 @@ module Aws::PrivateNetworks
702
555
  include Aws::Structure
703
556
  end
704
557
 
705
- # @note When making an API call, you may pass GetNetworkRequest
706
- # data as a hash:
707
- #
708
- # {
709
- # network_arn: "Arn", # required
710
- # }
711
- #
712
558
  # @!attribute [rw] network_arn
713
559
  # The Amazon Resource Name (ARN) of the network.
714
560
  # @return [String]
@@ -721,13 +567,6 @@ module Aws::PrivateNetworks
721
567
  include Aws::Structure
722
568
  end
723
569
 
724
- # @note When making an API call, you may pass GetNetworkResourceRequest
725
- # data as a hash:
726
- #
727
- # {
728
- # network_resource_arn: "Arn", # required
729
- # }
730
- #
731
570
  # @!attribute [rw] network_resource_arn
732
571
  # The Amazon Resource Name (ARN) of the network resource.
733
572
  # @return [String]
@@ -774,13 +613,6 @@ module Aws::PrivateNetworks
774
613
  include Aws::Structure
775
614
  end
776
615
 
777
- # @note When making an API call, you may pass GetNetworkSiteRequest
778
- # data as a hash:
779
- #
780
- # {
781
- # network_site_arn: "Arn", # required
782
- # }
783
- #
784
616
  # @!attribute [rw] network_site_arn
785
617
  # The Amazon Resource Name (ARN) of the network site.
786
618
  # @return [String]
@@ -810,13 +642,6 @@ module Aws::PrivateNetworks
810
642
  include Aws::Structure
811
643
  end
812
644
 
813
- # @note When making an API call, you may pass GetOrderRequest
814
- # data as a hash:
815
- #
816
- # {
817
- # order_arn: "Arn", # required
818
- # }
819
- #
820
645
  # @!attribute [rw] order_arn
821
646
  # The Amazon Resource Name (ARN) of the order.
822
647
  # @return [String]
@@ -878,18 +703,6 @@ module Aws::PrivateNetworks
878
703
  include Aws::Structure
879
704
  end
880
705
 
881
- # @note When making an API call, you may pass ListDeviceIdentifiersRequest
882
- # data as a hash:
883
- #
884
- # {
885
- # filters: {
886
- # "STATUS" => ["String"],
887
- # },
888
- # max_results: 1,
889
- # network_arn: "Arn", # required
890
- # start_token: "PaginationToken",
891
- # }
892
- #
893
706
  # @!attribute [rw] filters
894
707
  # The filters.
895
708
  #
@@ -945,18 +758,6 @@ module Aws::PrivateNetworks
945
758
  include Aws::Structure
946
759
  end
947
760
 
948
- # @note When making an API call, you may pass ListNetworkResourcesRequest
949
- # data as a hash:
950
- #
951
- # {
952
- # filters: {
953
- # "ORDER" => ["String"],
954
- # },
955
- # max_results: 1,
956
- # network_arn: "Arn", # required
957
- # start_token: "PaginationToken",
958
- # }
959
- #
960
761
  # @!attribute [rw] filters
961
762
  # The filters.
962
763
  #
@@ -1010,18 +811,6 @@ module Aws::PrivateNetworks
1010
811
  include Aws::Structure
1011
812
  end
1012
813
 
1013
- # @note When making an API call, you may pass ListNetworkSitesRequest
1014
- # data as a hash:
1015
- #
1016
- # {
1017
- # filters: {
1018
- # "STATUS" => ["String"],
1019
- # },
1020
- # max_results: 1,
1021
- # network_arn: "Arn", # required
1022
- # start_token: "PaginationToken",
1023
- # }
1024
- #
1025
814
  # @!attribute [rw] filters
1026
815
  # The filters. Add filters to your request to return a more specific
1027
816
  # list of results. Use filters to match the status of the network
@@ -1077,17 +866,6 @@ module Aws::PrivateNetworks
1077
866
  include Aws::Structure
1078
867
  end
1079
868
 
1080
- # @note When making an API call, you may pass ListNetworksRequest
1081
- # data as a hash:
1082
- #
1083
- # {
1084
- # filters: {
1085
- # "STATUS" => ["String"],
1086
- # },
1087
- # max_results: 1,
1088
- # start_token: "PaginationToken",
1089
- # }
1090
- #
1091
869
  # @!attribute [rw] filters
1092
870
  # The filters.
1093
871
  #
@@ -1136,18 +914,6 @@ module Aws::PrivateNetworks
1136
914
  include Aws::Structure
1137
915
  end
1138
916
 
1139
- # @note When making an API call, you may pass ListOrdersRequest
1140
- # data as a hash:
1141
- #
1142
- # {
1143
- # filters: {
1144
- # "STATUS" => ["String"],
1145
- # },
1146
- # max_results: 1,
1147
- # network_arn: "Arn", # required
1148
- # start_token: "PaginationToken",
1149
- # }
1150
- #
1151
917
  # @!attribute [rw] filters
1152
918
  # The filters.
1153
919
  #
@@ -1202,13 +968,6 @@ module Aws::PrivateNetworks
1202
968
  include Aws::Structure
1203
969
  end
1204
970
 
1205
- # @note When making an API call, you may pass ListTagsForResourceRequest
1206
- # data as a hash:
1207
- #
1208
- # {
1209
- # resource_arn: "Arn", # required
1210
- # }
1211
- #
1212
971
  # @!attribute [rw] resource_arn
1213
972
  # The Amazon Resource Name (ARN) of the resource.
1214
973
  # @return [String]
@@ -1235,14 +994,6 @@ module Aws::PrivateNetworks
1235
994
 
1236
995
  # Information about a name/value pair.
1237
996
  #
1238
- # @note When making an API call, you may pass NameValuePair
1239
- # data as a hash:
1240
- #
1241
- # {
1242
- # name: "String", # required
1243
- # value: "String",
1244
- # }
1245
- #
1246
997
  # @!attribute [rw] name
1247
998
  # The name of the pair.
1248
999
  # @return [String]
@@ -1388,20 +1139,6 @@ module Aws::PrivateNetworks
1388
1139
 
1389
1140
  # Information about a network resource definition.
1390
1141
  #
1391
- # @note When making an API call, you may pass NetworkResourceDefinition
1392
- # data as a hash:
1393
- #
1394
- # {
1395
- # count: 1, # required
1396
- # options: [
1397
- # {
1398
- # name: "String", # required
1399
- # value: "String",
1400
- # },
1401
- # ],
1402
- # type: "RADIO_UNIT", # required, accepts RADIO_UNIT, DEVICE_IDENTIFIER
1403
- # }
1404
- #
1405
1142
  # @!attribute [rw] count
1406
1143
  # The count in the network resource definition.
1407
1144
  # @return [Integer]
@@ -1549,17 +1286,6 @@ module Aws::PrivateNetworks
1549
1286
 
1550
1287
  # Information about a position.
1551
1288
  #
1552
- # @note When making an API call, you may pass Position
1553
- # data as a hash:
1554
- #
1555
- # {
1556
- # elevation: 1.0,
1557
- # elevation_reference: "AGL", # accepts AGL, AMSL
1558
- # elevation_unit: "FEET", # accepts FEET
1559
- # latitude: 1.0,
1560
- # longitude: 1.0,
1561
- # }
1562
- #
1563
1289
  # @!attribute [rw] elevation
1564
1290
  # The elevation of the equipment at this position.
1565
1291
  # @return [Float]
@@ -1618,30 +1344,6 @@ module Aws::PrivateNetworks
1618
1344
 
1619
1345
  # Information about a site plan.
1620
1346
  #
1621
- # @note When making an API call, you may pass SitePlan
1622
- # data as a hash:
1623
- #
1624
- # {
1625
- # options: [
1626
- # {
1627
- # name: "String", # required
1628
- # value: "String",
1629
- # },
1630
- # ],
1631
- # resource_definitions: [
1632
- # {
1633
- # count: 1, # required
1634
- # options: [
1635
- # {
1636
- # name: "String", # required
1637
- # value: "String",
1638
- # },
1639
- # ],
1640
- # type: "RADIO_UNIT", # required, accepts RADIO_UNIT, DEVICE_IDENTIFIER
1641
- # },
1642
- # ],
1643
- # }
1644
- #
1645
1347
  # @!attribute [rw] options
1646
1348
  # The options of the plan.
1647
1349
  # @return [Array<Types::NameValuePair>]
@@ -1659,16 +1361,6 @@ module Aws::PrivateNetworks
1659
1361
  include Aws::Structure
1660
1362
  end
1661
1363
 
1662
- # @note When making an API call, you may pass TagResourceRequest
1663
- # data as a hash:
1664
- #
1665
- # {
1666
- # resource_arn: "Arn", # required
1667
- # tags: { # required
1668
- # "TagKey" => "TagValue",
1669
- # },
1670
- # }
1671
- #
1672
1364
  # @!attribute [rw] resource_arn
1673
1365
  # The Amazon Resource Name (ARN) of the resource.
1674
1366
  # @return [String]
@@ -1717,14 +1409,6 @@ module Aws::PrivateNetworks
1717
1409
  include Aws::Structure
1718
1410
  end
1719
1411
 
1720
- # @note When making an API call, you may pass UntagResourceRequest
1721
- # data as a hash:
1722
- #
1723
- # {
1724
- # resource_arn: "Arn", # required
1725
- # tag_keys: ["TagKey"], # required
1726
- # }
1727
- #
1728
1412
  # @!attribute [rw] resource_arn
1729
1413
  # The Amazon Resource Name (ARN) of the resource.
1730
1414
  # @return [String]
@@ -1746,34 +1430,6 @@ module Aws::PrivateNetworks
1746
1430
  #
1747
1431
  class UntagResourceResponse < Aws::EmptyStructure; end
1748
1432
 
1749
- # @note When making an API call, you may pass UpdateNetworkSitePlanRequest
1750
- # data as a hash:
1751
- #
1752
- # {
1753
- # client_token: "ClientToken",
1754
- # network_site_arn: "Arn", # required
1755
- # pending_plan: { # required
1756
- # options: [
1757
- # {
1758
- # name: "String", # required
1759
- # value: "String",
1760
- # },
1761
- # ],
1762
- # resource_definitions: [
1763
- # {
1764
- # count: 1, # required
1765
- # options: [
1766
- # {
1767
- # name: "String", # required
1768
- # value: "String",
1769
- # },
1770
- # ],
1771
- # type: "RADIO_UNIT", # required, accepts RADIO_UNIT, DEVICE_IDENTIFIER
1772
- # },
1773
- # ],
1774
- # },
1775
- # }
1776
- #
1777
1433
  # @!attribute [rw] client_token
1778
1434
  # Unique, case-sensitive identifier that you provide to ensure the
1779
1435
  # idempotency of the request. For more information, see [How to ensure
@@ -1802,15 +1458,6 @@ module Aws::PrivateNetworks
1802
1458
  include Aws::Structure
1803
1459
  end
1804
1460
 
1805
- # @note When making an API call, you may pass UpdateNetworkSiteRequest
1806
- # data as a hash:
1807
- #
1808
- # {
1809
- # client_token: "ClientToken",
1810
- # description: "Description",
1811
- # network_site_arn: "Arn", # required
1812
- # }
1813
- #
1814
1461
  # @!attribute [rw] client_token
1815
1462
  # Unique, case-sensitive identifier that you provide to ensure the
1816
1463
  # idempotency of the request. For more information, see [How to ensure
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-privatenetworks/customizations'
52
52
  # @!group service
53
53
  module Aws::PrivateNetworks
54
54
 
55
- GEM_VERSION = '1.2.0'
55
+ GEM_VERSION = '1.3.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-privatenetworks
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.0
4
+ version: 1.3.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: 2022-10-28 00:00:00.000000000 Z
11
+ date: 2023-01-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core