aws-sdk-privatenetworks 1.6.0 → 1.8.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: cc77669d6e4ce92822b9b6c01b683a4e2e52d8ebb68598afbd121bc76df1a446
4
- data.tar.gz: 4e3392871d0811544f1b3f9910749d8abd20003de6380e632d98df006f790a22
3
+ metadata.gz: 91e58dc15fe1705eb6db0015bec2fed321c169c94d5bbb01510c200579862a82
4
+ data.tar.gz: 5a0f8d9b2305a1bed052df64e09621a8e39eddb709f5e6f28f08d673840ec5a5
5
5
  SHA512:
6
- metadata.gz: fedc78bf65241bfbeb6b41189f2f040d7abbe6626a024178a3aacc67a791ff71c48596f7854d3ef082767552976e7479fbfbcb1635e899733ff29ab3daa269e7
7
- data.tar.gz: bbf90ad16dff3599bc6799dc1c6db3c9b9862cc9709167a88025d344f3f1f9e8311ee17302fefb9f9b1e9eda8186affa2f618aa539cba4523d4c013972b77e26
6
+ metadata.gz: d06d23f8c872ae9f490c37a568afbf46b102253f7de8b59279aeaba362ad528eb9dee1408ad3b664392ac1bf7f79f6801cfd319ee8f1d00e9027c7065a0bde9e
7
+ data.tar.gz: 76036cdad7d4b8a94ebbfe5175873b94b7f1a62768ea604e83bf16213b420ddac1c53ae7c97797749be9858f5e59e766a03a62ea0165aee0c06fb1701306d442
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.8.0 (2023-06-28)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.7.0 (2023-06-27)
10
+ ------------------
11
+
12
+ * Feature - This release allows Private5G customers to choose different commitment plans (60-days, 1-year, 3-years) when placing new orders, enables automatic renewal option for 1-year and 3-years commitments. It also allows customers to update the commitment plan of an existing radio unit.
13
+
4
14
  1.6.0 (2023-06-15)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.6.0
1
+ 1.8.0
@@ -395,9 +395,15 @@ module Aws::PrivateNetworks
395
395
  # resp.order.network_arn #=> String
396
396
  # resp.order.network_site_arn #=> String
397
397
  # resp.order.order_arn #=> String
398
+ # resp.order.ordered_resources #=> Array
399
+ # resp.order.ordered_resources[0].commitment_configuration.automatic_renewal #=> Boolean
400
+ # resp.order.ordered_resources[0].commitment_configuration.commitment_length #=> String, one of "SIXTY_DAYS", "ONE_YEAR", "THREE_YEARS"
401
+ # resp.order.ordered_resources[0].count #=> Integer
402
+ # resp.order.ordered_resources[0].type #=> String, one of "RADIO_UNIT", "DEVICE_IDENTIFIER"
398
403
  # resp.order.shipping_address.city #=> String
399
404
  # resp.order.shipping_address.company #=> String
400
405
  # resp.order.shipping_address.country #=> String
406
+ # resp.order.shipping_address.email_address #=> String
401
407
  # resp.order.shipping_address.name #=> String
402
408
  # resp.order.shipping_address.phone_number #=> String
403
409
  # resp.order.shipping_address.postal_code #=> String
@@ -477,6 +483,29 @@ module Aws::PrivateNetworks
477
483
  #
478
484
  # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Run_Instance_Idempotency.html
479
485
  #
486
+ # @option params [Types::CommitmentConfiguration] :commitment_configuration
487
+ # Determines the duration and renewal status of the commitment period
488
+ # for all pending radio units.
489
+ #
490
+ # If you include `commitmentConfiguration` in the
491
+ # `ActivateNetworkSiteRequest` action, you must specify the following:
492
+ #
493
+ # * The commitment period for the radio unit. You can choose a 60-day,
494
+ # 1-year, or 3-year period.
495
+ #
496
+ # * Whether you want your commitment period to automatically renew for
497
+ # one more year after your current commitment period expires.
498
+ #
499
+ # For pricing, see [Amazon Web Services Private 5G Pricing][1].
500
+ #
501
+ # If you do not include `commitmentConfiguration` in the
502
+ # `ActivateNetworkSiteRequest` action, the commitment period is set to
503
+ # 60-days.
504
+ #
505
+ #
506
+ #
507
+ # [1]: http://aws.amazon.com/private5g/pricing
508
+ #
480
509
  # @option params [required, String] :network_site_arn
481
510
  # The Amazon Resource Name (ARN) of the network site.
482
511
  #
@@ -491,11 +520,16 @@ module Aws::PrivateNetworks
491
520
  #
492
521
  # resp = client.activate_network_site({
493
522
  # client_token: "ClientToken",
523
+ # commitment_configuration: {
524
+ # automatic_renewal: false, # required
525
+ # commitment_length: "SIXTY_DAYS", # required, accepts SIXTY_DAYS, ONE_YEAR, THREE_YEARS
526
+ # },
494
527
  # network_site_arn: "Arn", # required
495
528
  # shipping_address: { # required
496
529
  # city: "AddressContent", # required
497
530
  # company: "AddressContent",
498
531
  # country: "AddressContent", # required
532
+ # email_address: "AddressContent",
499
533
  # name: "AddressContent", # required
500
534
  # phone_number: "AddressContent",
501
535
  # postal_code: "AddressContent", # required
@@ -605,6 +639,10 @@ module Aws::PrivateNetworks
605
639
  # resp.access_point.attributes #=> Array
606
640
  # resp.access_point.attributes[0].name #=> String
607
641
  # resp.access_point.attributes[0].value #=> String
642
+ # resp.access_point.commitment_information.commitment_configuration.automatic_renewal #=> Boolean
643
+ # resp.access_point.commitment_information.commitment_configuration.commitment_length #=> String, one of "SIXTY_DAYS", "ONE_YEAR", "THREE_YEARS"
644
+ # resp.access_point.commitment_information.expires_on #=> Time
645
+ # resp.access_point.commitment_information.start_at #=> Time
608
646
  # resp.access_point.created_at #=> Time
609
647
  # resp.access_point.description #=> String
610
648
  # resp.access_point.health #=> String, one of "INITIAL", "HEALTHY", "UNHEALTHY"
@@ -623,6 +661,7 @@ module Aws::PrivateNetworks
623
661
  # resp.access_point.return_information.shipping_address.city #=> String
624
662
  # resp.access_point.return_information.shipping_address.company #=> String
625
663
  # resp.access_point.return_information.shipping_address.country #=> String
664
+ # resp.access_point.return_information.shipping_address.email_address #=> String
626
665
  # resp.access_point.return_information.shipping_address.name #=> String
627
666
  # resp.access_point.return_information.shipping_address.phone_number #=> String
628
667
  # resp.access_point.return_information.shipping_address.postal_code #=> String
@@ -1081,6 +1120,10 @@ module Aws::PrivateNetworks
1081
1120
  # resp.network_resource.attributes #=> Array
1082
1121
  # resp.network_resource.attributes[0].name #=> String
1083
1122
  # resp.network_resource.attributes[0].value #=> String
1123
+ # resp.network_resource.commitment_information.commitment_configuration.automatic_renewal #=> Boolean
1124
+ # resp.network_resource.commitment_information.commitment_configuration.commitment_length #=> String, one of "SIXTY_DAYS", "ONE_YEAR", "THREE_YEARS"
1125
+ # resp.network_resource.commitment_information.expires_on #=> Time
1126
+ # resp.network_resource.commitment_information.start_at #=> Time
1084
1127
  # resp.network_resource.created_at #=> Time
1085
1128
  # resp.network_resource.description #=> String
1086
1129
  # resp.network_resource.health #=> String, one of "INITIAL", "HEALTHY", "UNHEALTHY"
@@ -1099,6 +1142,7 @@ module Aws::PrivateNetworks
1099
1142
  # resp.network_resource.return_information.shipping_address.city #=> String
1100
1143
  # resp.network_resource.return_information.shipping_address.company #=> String
1101
1144
  # resp.network_resource.return_information.shipping_address.country #=> String
1145
+ # resp.network_resource.return_information.shipping_address.email_address #=> String
1102
1146
  # resp.network_resource.return_information.shipping_address.name #=> String
1103
1147
  # resp.network_resource.return_information.shipping_address.phone_number #=> String
1104
1148
  # resp.network_resource.return_information.shipping_address.postal_code #=> String
@@ -1204,9 +1248,15 @@ module Aws::PrivateNetworks
1204
1248
  # resp.order.network_arn #=> String
1205
1249
  # resp.order.network_site_arn #=> String
1206
1250
  # resp.order.order_arn #=> String
1251
+ # resp.order.ordered_resources #=> Array
1252
+ # resp.order.ordered_resources[0].commitment_configuration.automatic_renewal #=> Boolean
1253
+ # resp.order.ordered_resources[0].commitment_configuration.commitment_length #=> String, one of "SIXTY_DAYS", "ONE_YEAR", "THREE_YEARS"
1254
+ # resp.order.ordered_resources[0].count #=> Integer
1255
+ # resp.order.ordered_resources[0].type #=> String, one of "RADIO_UNIT", "DEVICE_IDENTIFIER"
1207
1256
  # resp.order.shipping_address.city #=> String
1208
1257
  # resp.order.shipping_address.company #=> String
1209
1258
  # resp.order.shipping_address.country #=> String
1259
+ # resp.order.shipping_address.email_address #=> String
1210
1260
  # resp.order.shipping_address.name #=> String
1211
1261
  # resp.order.shipping_address.phone_number #=> String
1212
1262
  # resp.order.shipping_address.postal_code #=> String
@@ -1352,6 +1402,10 @@ module Aws::PrivateNetworks
1352
1402
  # resp.network_resources[0].attributes #=> Array
1353
1403
  # resp.network_resources[0].attributes[0].name #=> String
1354
1404
  # resp.network_resources[0].attributes[0].value #=> String
1405
+ # resp.network_resources[0].commitment_information.commitment_configuration.automatic_renewal #=> Boolean
1406
+ # resp.network_resources[0].commitment_information.commitment_configuration.commitment_length #=> String, one of "SIXTY_DAYS", "ONE_YEAR", "THREE_YEARS"
1407
+ # resp.network_resources[0].commitment_information.expires_on #=> Time
1408
+ # resp.network_resources[0].commitment_information.start_at #=> Time
1355
1409
  # resp.network_resources[0].created_at #=> Time
1356
1410
  # resp.network_resources[0].description #=> String
1357
1411
  # resp.network_resources[0].health #=> String, one of "INITIAL", "HEALTHY", "UNHEALTHY"
@@ -1370,6 +1424,7 @@ module Aws::PrivateNetworks
1370
1424
  # resp.network_resources[0].return_information.shipping_address.city #=> String
1371
1425
  # resp.network_resources[0].return_information.shipping_address.company #=> String
1372
1426
  # resp.network_resources[0].return_information.shipping_address.country #=> String
1427
+ # resp.network_resources[0].return_information.shipping_address.email_address #=> String
1373
1428
  # resp.network_resources[0].return_information.shipping_address.name #=> String
1374
1429
  # resp.network_resources[0].return_information.shipping_address.phone_number #=> String
1375
1430
  # resp.network_resources[0].return_information.shipping_address.postal_code #=> String
@@ -1592,9 +1647,15 @@ module Aws::PrivateNetworks
1592
1647
  # resp.orders[0].network_arn #=> String
1593
1648
  # resp.orders[0].network_site_arn #=> String
1594
1649
  # resp.orders[0].order_arn #=> String
1650
+ # resp.orders[0].ordered_resources #=> Array
1651
+ # resp.orders[0].ordered_resources[0].commitment_configuration.automatic_renewal #=> Boolean
1652
+ # resp.orders[0].ordered_resources[0].commitment_configuration.commitment_length #=> String, one of "SIXTY_DAYS", "ONE_YEAR", "THREE_YEARS"
1653
+ # resp.orders[0].ordered_resources[0].count #=> Integer
1654
+ # resp.orders[0].ordered_resources[0].type #=> String, one of "RADIO_UNIT", "DEVICE_IDENTIFIER"
1595
1655
  # resp.orders[0].shipping_address.city #=> String
1596
1656
  # resp.orders[0].shipping_address.company #=> String
1597
1657
  # resp.orders[0].shipping_address.country #=> String
1658
+ # resp.orders[0].shipping_address.email_address #=> String
1598
1659
  # resp.orders[0].shipping_address.name #=> String
1599
1660
  # resp.orders[0].shipping_address.phone_number #=> String
1600
1661
  # resp.orders[0].shipping_address.postal_code #=> String
@@ -1662,19 +1723,56 @@ module Aws::PrivateNetworks
1662
1723
  req.send_request(options)
1663
1724
  end
1664
1725
 
1665
- # Starts an update of the specified network resource.
1726
+ # Use this action to do the following tasks:
1727
+ #
1728
+ # * Update the duration and renewal status of the commitment period for
1729
+ # a radio unit. The update goes into effect immediately.
1730
+ #
1731
+ # * Request a replacement for a network resource.
1732
+ #
1733
+ # * Request that you return a network resource.
1666
1734
  #
1667
1735
  # After you submit a request to replace or return a network resource,
1668
- # the status of the network resource is `CREATING_SHIPPING_LABEL`. The
1669
- # shipping label is available when the status of the network resource is
1670
- # `PENDING_RETURN`. After the network resource is successfully returned,
1671
- # its status is `DELETED`. For more information, see [Return a radio
1672
- # unit][1].
1736
+ # the status of the network resource changes to
1737
+ # `CREATING_SHIPPING_LABEL`. The shipping label is available when the
1738
+ # status of the network resource is `PENDING_RETURN`. After the network
1739
+ # resource is successfully returned, its status changes to `DELETED`.
1740
+ # For more information, see [Return a radio unit][1].
1673
1741
  #
1674
1742
  #
1675
1743
  #
1676
1744
  # [1]: https://docs.aws.amazon.com/private-networks/latest/userguide/radio-units.html#return-radio-unit
1677
1745
  #
1746
+ # @option params [Types::CommitmentConfiguration] :commitment_configuration
1747
+ # Use this action to extend and automatically renew the commitment
1748
+ # period for the radio unit. You can do the following:
1749
+ #
1750
+ # * Change a 60-day commitment to a 1-year or 3-year commitment. The
1751
+ # change is immediate and the hourly rate decreases to the rate for
1752
+ # the new commitment period.
1753
+ #
1754
+ # * Change a 1-year commitment to a 3-year commitment. The change is
1755
+ # immediate and the hourly rate decreases to the rate for the 3-year
1756
+ # commitment period.
1757
+ #
1758
+ # * Set a 1-year commitment to automatically renew for an additional 1
1759
+ # year. The hourly rate for the additional year will continue to be
1760
+ # the same as your existing 1-year rate.
1761
+ #
1762
+ # * Set a 3-year commitment to automatically renew for an additional 1
1763
+ # year. The hourly rate for the additional year will continue to be
1764
+ # the same as your existing 3-year rate.
1765
+ #
1766
+ # * Turn off a previously-enabled automatic renewal on a 1-year or
1767
+ # 3-year commitment. You cannot use the automatic-renewal option for a
1768
+ # 60-day commitment.
1769
+ #
1770
+ # For pricing, see [Amazon Web Services Private 5G Pricing][1].
1771
+ #
1772
+ #
1773
+ #
1774
+ # [1]: http://aws.amazon.com/private5g/pricing
1775
+ #
1678
1776
  # @option params [required, String] :network_resource_arn
1679
1777
  # The Amazon Resource Name (ARN) of the network resource.
1680
1778
  #
@@ -1694,10 +1792,18 @@ module Aws::PrivateNetworks
1694
1792
  # provide a shipping label that you can use for the return process and
1695
1793
  # we ship a replacement radio unit to you.
1696
1794
  #
1697
- # * `RETURN` - Submits a request to replace a radio unit that you no
1795
+ # * `RETURN` - Submits a request to return a radio unit that you no
1698
1796
  # longer need. We provide a shipping label that you can use for the
1699
1797
  # return process.
1700
1798
  #
1799
+ # * `COMMITMENT` - Submits a request to change or renew the commitment
1800
+ # period. If you choose this value, then you must set [
1801
+ # `commitmentConfiguration` ][1].
1802
+ #
1803
+ #
1804
+ #
1805
+ # [1]: https://docs.aws.amazon.com/private-networks/latest/APIReference/API_StartNetworkResourceUpdate.html#privatenetworks-StartNetworkResourceUpdate-request-commitmentConfiguration
1806
+ #
1701
1807
  # @return [Types::StartNetworkResourceUpdateResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1702
1808
  #
1703
1809
  # * {Types::StartNetworkResourceUpdateResponse#network_resource #network_resource} => Types::NetworkResource
@@ -1705,12 +1811,17 @@ module Aws::PrivateNetworks
1705
1811
  # @example Request syntax with placeholder values
1706
1812
  #
1707
1813
  # resp = client.start_network_resource_update({
1814
+ # commitment_configuration: {
1815
+ # automatic_renewal: false, # required
1816
+ # commitment_length: "SIXTY_DAYS", # required, accepts SIXTY_DAYS, ONE_YEAR, THREE_YEARS
1817
+ # },
1708
1818
  # network_resource_arn: "Arn", # required
1709
1819
  # return_reason: "StartNetworkResourceUpdateRequestReturnReasonString",
1710
1820
  # shipping_address: {
1711
1821
  # city: "AddressContent", # required
1712
1822
  # company: "AddressContent",
1713
1823
  # country: "AddressContent", # required
1824
+ # email_address: "AddressContent",
1714
1825
  # name: "AddressContent", # required
1715
1826
  # phone_number: "AddressContent",
1716
1827
  # postal_code: "AddressContent", # required
@@ -1719,7 +1830,7 @@ module Aws::PrivateNetworks
1719
1830
  # street2: "AddressContent",
1720
1831
  # street3: "AddressContent",
1721
1832
  # },
1722
- # update_type: "REPLACE", # required, accepts REPLACE, RETURN
1833
+ # update_type: "REPLACE", # required, accepts REPLACE, RETURN, COMMITMENT
1723
1834
  # })
1724
1835
  #
1725
1836
  # @example Response structure
@@ -1727,6 +1838,10 @@ module Aws::PrivateNetworks
1727
1838
  # resp.network_resource.attributes #=> Array
1728
1839
  # resp.network_resource.attributes[0].name #=> String
1729
1840
  # resp.network_resource.attributes[0].value #=> String
1841
+ # resp.network_resource.commitment_information.commitment_configuration.automatic_renewal #=> Boolean
1842
+ # resp.network_resource.commitment_information.commitment_configuration.commitment_length #=> String, one of "SIXTY_DAYS", "ONE_YEAR", "THREE_YEARS"
1843
+ # resp.network_resource.commitment_information.expires_on #=> Time
1844
+ # resp.network_resource.commitment_information.start_at #=> Time
1730
1845
  # resp.network_resource.created_at #=> Time
1731
1846
  # resp.network_resource.description #=> String
1732
1847
  # resp.network_resource.health #=> String, one of "INITIAL", "HEALTHY", "UNHEALTHY"
@@ -1745,6 +1860,7 @@ module Aws::PrivateNetworks
1745
1860
  # resp.network_resource.return_information.shipping_address.city #=> String
1746
1861
  # resp.network_resource.return_information.shipping_address.company #=> String
1747
1862
  # resp.network_resource.return_information.shipping_address.country #=> String
1863
+ # resp.network_resource.return_information.shipping_address.email_address #=> String
1748
1864
  # resp.network_resource.return_information.shipping_address.name #=> String
1749
1865
  # resp.network_resource.return_information.shipping_address.phone_number #=> String
1750
1866
  # resp.network_resource.return_information.shipping_address.postal_code #=> String
@@ -1996,7 +2112,7 @@ module Aws::PrivateNetworks
1996
2112
  params: params,
1997
2113
  config: config)
1998
2114
  context[:gem_name] = 'aws-sdk-privatenetworks'
1999
- context[:gem_version] = '1.6.0'
2115
+ context[:gem_version] = '1.8.0'
2000
2116
  Seahorse::Client::Request.new(handlers, context)
2001
2117
  end
2002
2118
 
@@ -24,7 +24,11 @@ module Aws::PrivateNetworks
24
24
  Address = Shapes::StructureShape.new(name: 'Address')
25
25
  AddressContent = Shapes::StringShape.new(name: 'AddressContent')
26
26
  Arn = Shapes::StringShape.new(name: 'Arn')
27
+ Boolean = Shapes::BooleanShape.new(name: 'Boolean')
27
28
  ClientToken = Shapes::StringShape.new(name: 'ClientToken')
29
+ CommitmentConfiguration = Shapes::StructureShape.new(name: 'CommitmentConfiguration')
30
+ CommitmentInformation = Shapes::StructureShape.new(name: 'CommitmentInformation')
31
+ CommitmentLength = Shapes::StringShape.new(name: 'CommitmentLength')
28
32
  ConfigureAccessPointRequest = Shapes::StructureShape.new(name: 'ConfigureAccessPointRequest')
29
33
  ConfigureAccessPointRequestCpiSecretKeyString = Shapes::StringShape.new(name: 'ConfigureAccessPointRequestCpiSecretKeyString')
30
34
  ConfigureAccessPointRequestCpiUserIdString = Shapes::StringShape.new(name: 'ConfigureAccessPointRequestCpiUserIdString')
@@ -115,6 +119,9 @@ module Aws::PrivateNetworks
115
119
  OrderFilterValues = Shapes::ListShape.new(name: 'OrderFilterValues')
116
120
  OrderFilters = Shapes::MapShape.new(name: 'OrderFilters')
117
121
  OrderList = Shapes::ListShape.new(name: 'OrderList')
122
+ OrderedResourceDefinition = Shapes::StructureShape.new(name: 'OrderedResourceDefinition')
123
+ OrderedResourceDefinitionCountInteger = Shapes::IntegerShape.new(name: 'OrderedResourceDefinitionCountInteger')
124
+ OrderedResourceDefinitions = Shapes::ListShape.new(name: 'OrderedResourceDefinitions')
118
125
  PaginationToken = Shapes::StringShape.new(name: 'PaginationToken')
119
126
  PingResponse = Shapes::StructureShape.new(name: 'PingResponse')
120
127
  Position = Shapes::StructureShape.new(name: 'Position')
@@ -164,6 +171,7 @@ module Aws::PrivateNetworks
164
171
  ActivateDeviceIdentifierResponse.struct_class = Types::ActivateDeviceIdentifierResponse
165
172
 
166
173
  ActivateNetworkSiteRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken"))
174
+ ActivateNetworkSiteRequest.add_member(:commitment_configuration, Shapes::ShapeRef.new(shape: CommitmentConfiguration, location_name: "commitmentConfiguration"))
167
175
  ActivateNetworkSiteRequest.add_member(:network_site_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "networkSiteArn"))
168
176
  ActivateNetworkSiteRequest.add_member(:shipping_address, Shapes::ShapeRef.new(shape: Address, required: true, location_name: "shippingAddress"))
169
177
  ActivateNetworkSiteRequest.struct_class = Types::ActivateNetworkSiteRequest
@@ -174,6 +182,7 @@ module Aws::PrivateNetworks
174
182
  Address.add_member(:city, Shapes::ShapeRef.new(shape: AddressContent, required: true, location_name: "city"))
175
183
  Address.add_member(:company, Shapes::ShapeRef.new(shape: AddressContent, location_name: "company"))
176
184
  Address.add_member(:country, Shapes::ShapeRef.new(shape: AddressContent, required: true, location_name: "country"))
185
+ Address.add_member(:email_address, Shapes::ShapeRef.new(shape: AddressContent, location_name: "emailAddress"))
177
186
  Address.add_member(:name, Shapes::ShapeRef.new(shape: AddressContent, required: true, location_name: "name"))
178
187
  Address.add_member(:phone_number, Shapes::ShapeRef.new(shape: AddressContent, location_name: "phoneNumber"))
179
188
  Address.add_member(:postal_code, Shapes::ShapeRef.new(shape: AddressContent, required: true, location_name: "postalCode"))
@@ -183,6 +192,15 @@ module Aws::PrivateNetworks
183
192
  Address.add_member(:street3, Shapes::ShapeRef.new(shape: AddressContent, location_name: "street3"))
184
193
  Address.struct_class = Types::Address
185
194
 
195
+ CommitmentConfiguration.add_member(:automatic_renewal, Shapes::ShapeRef.new(shape: Boolean, required: true, location_name: "automaticRenewal"))
196
+ CommitmentConfiguration.add_member(:commitment_length, Shapes::ShapeRef.new(shape: CommitmentLength, required: true, location_name: "commitmentLength"))
197
+ CommitmentConfiguration.struct_class = Types::CommitmentConfiguration
198
+
199
+ CommitmentInformation.add_member(:commitment_configuration, Shapes::ShapeRef.new(shape: CommitmentConfiguration, required: true, location_name: "commitmentConfiguration"))
200
+ CommitmentInformation.add_member(:expires_on, Shapes::ShapeRef.new(shape: Timestamp, location_name: "expiresOn"))
201
+ CommitmentInformation.add_member(:start_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "startAt"))
202
+ CommitmentInformation.struct_class = Types::CommitmentInformation
203
+
186
204
  ConfigureAccessPointRequest.add_member(:access_point_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "accessPointArn"))
187
205
  ConfigureAccessPointRequest.add_member(:cpi_secret_key, Shapes::ShapeRef.new(shape: ConfigureAccessPointRequestCpiSecretKeyString, location_name: "cpiSecretKey"))
188
206
  ConfigureAccessPointRequest.add_member(:cpi_user_id, Shapes::ShapeRef.new(shape: ConfigureAccessPointRequestCpiUserIdString, location_name: "cpiUserId"))
@@ -376,6 +394,7 @@ module Aws::PrivateNetworks
376
394
  NetworkList.member = Shapes::ShapeRef.new(shape: Network)
377
395
 
378
396
  NetworkResource.add_member(:attributes, Shapes::ShapeRef.new(shape: NameValuePairs, location_name: "attributes"))
397
+ NetworkResource.add_member(:commitment_information, Shapes::ShapeRef.new(shape: CommitmentInformation, location_name: "commitmentInformation"))
379
398
  NetworkResource.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "createdAt"))
380
399
  NetworkResource.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
381
400
  NetworkResource.add_member(:health, Shapes::ShapeRef.new(shape: HealthStatus, location_name: "health"))
@@ -434,6 +453,7 @@ module Aws::PrivateNetworks
434
453
  Order.add_member(:network_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "networkArn"))
435
454
  Order.add_member(:network_site_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "networkSiteArn"))
436
455
  Order.add_member(:order_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "orderArn"))
456
+ Order.add_member(:ordered_resources, Shapes::ShapeRef.new(shape: OrderedResourceDefinitions, location_name: "orderedResources"))
437
457
  Order.add_member(:shipping_address, Shapes::ShapeRef.new(shape: Address, location_name: "shippingAddress"))
438
458
  Order.add_member(:tracking_information, Shapes::ShapeRef.new(shape: TrackingInformationList, location_name: "trackingInformation"))
439
459
  Order.struct_class = Types::Order
@@ -445,6 +465,13 @@ module Aws::PrivateNetworks
445
465
 
446
466
  OrderList.member = Shapes::ShapeRef.new(shape: Order)
447
467
 
468
+ OrderedResourceDefinition.add_member(:commitment_configuration, Shapes::ShapeRef.new(shape: CommitmentConfiguration, location_name: "commitmentConfiguration"))
469
+ OrderedResourceDefinition.add_member(:count, Shapes::ShapeRef.new(shape: OrderedResourceDefinitionCountInteger, required: true, location_name: "count"))
470
+ OrderedResourceDefinition.add_member(:type, Shapes::ShapeRef.new(shape: NetworkResourceDefinitionType, required: true, location_name: "type"))
471
+ OrderedResourceDefinition.struct_class = Types::OrderedResourceDefinition
472
+
473
+ OrderedResourceDefinitions.member = Shapes::ShapeRef.new(shape: OrderedResourceDefinition)
474
+
448
475
  PingResponse.add_member(:status, Shapes::ShapeRef.new(shape: String, location_name: "status"))
449
476
  PingResponse.struct_class = Types::PingResponse
450
477
 
@@ -470,6 +497,7 @@ module Aws::PrivateNetworks
470
497
  SitePlan.add_member(:resource_definitions, Shapes::ShapeRef.new(shape: NetworkResourceDefinitions, location_name: "resourceDefinitions"))
471
498
  SitePlan.struct_class = Types::SitePlan
472
499
 
500
+ StartNetworkResourceUpdateRequest.add_member(:commitment_configuration, Shapes::ShapeRef.new(shape: CommitmentConfiguration, location_name: "commitmentConfiguration"))
473
501
  StartNetworkResourceUpdateRequest.add_member(:network_resource_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "networkResourceArn"))
474
502
  StartNetworkResourceUpdateRequest.add_member(:return_reason, Shapes::ShapeRef.new(shape: StartNetworkResourceUpdateRequestReturnReasonString, location_name: "returnReason"))
475
503
  StartNetworkResourceUpdateRequest.add_member(:shipping_address, Shapes::ShapeRef.new(shape: Address, location_name: "shippingAddress"))
@@ -97,6 +97,30 @@ module Aws::PrivateNetworks
97
97
  # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Run_Instance_Idempotency.html
98
98
  # @return [String]
99
99
  #
100
+ # @!attribute [rw] commitment_configuration
101
+ # Determines the duration and renewal status of the commitment period
102
+ # for all pending radio units.
103
+ #
104
+ # If you include `commitmentConfiguration` in the
105
+ # `ActivateNetworkSiteRequest` action, you must specify the following:
106
+ #
107
+ # * The commitment period for the radio unit. You can choose a 60-day,
108
+ # 1-year, or 3-year period.
109
+ #
110
+ # * Whether you want your commitment period to automatically renew for
111
+ # one more year after your current commitment period expires.
112
+ #
113
+ # For pricing, see [Amazon Web Services Private 5G Pricing][1].
114
+ #
115
+ # If you do not include `commitmentConfiguration` in the
116
+ # `ActivateNetworkSiteRequest` action, the commitment period is set to
117
+ # 60-days.
118
+ #
119
+ #
120
+ #
121
+ # [1]: http://aws.amazon.com/private5g/pricing
122
+ # @return [Types::CommitmentConfiguration]
123
+ #
100
124
  # @!attribute [rw] network_site_arn
101
125
  # The Amazon Resource Name (ARN) of the network site.
102
126
  # @return [String]
@@ -109,6 +133,7 @@ module Aws::PrivateNetworks
109
133
  #
110
134
  class ActivateNetworkSiteRequest < Struct.new(
111
135
  :client_token,
136
+ :commitment_configuration,
112
137
  :network_site_arn,
113
138
  :shipping_address)
114
139
  SENSITIVE = []
@@ -141,12 +166,16 @@ module Aws::PrivateNetworks
141
166
  # The country for this address.
142
167
  # @return [String]
143
168
  #
169
+ # @!attribute [rw] email_address
170
+ # The recipient's email address.
171
+ # @return [String]
172
+ #
144
173
  # @!attribute [rw] name
145
174
  # The recipient's name for this address.
146
175
  # @return [String]
147
176
  #
148
177
  # @!attribute [rw] phone_number
149
- # The phone number for this address.
178
+ # The recipient's phone number.
150
179
  # @return [String]
151
180
  #
152
181
  # @!attribute [rw] postal_code
@@ -175,6 +204,7 @@ module Aws::PrivateNetworks
175
204
  :city,
176
205
  :company,
177
206
  :country,
207
+ :email_address,
178
208
  :name,
179
209
  :phone_number,
180
210
  :postal_code,
@@ -182,7 +212,84 @@ module Aws::PrivateNetworks
182
212
  :street1,
183
213
  :street2,
184
214
  :street3)
185
- SENSITIVE = [:city, :company, :country, :name, :phone_number, :postal_code, :state_or_province, :street1, :street2, :street3]
215
+ SENSITIVE = [:city, :company, :country, :email_address, :name, :phone_number, :postal_code, :state_or_province, :street1, :street2, :street3]
216
+ include Aws::Structure
217
+ end
218
+
219
+ # Determines the duration and renewal status of the commitment period
220
+ # for a radio unit.
221
+ #
222
+ # For pricing, see [Amazon Web Services Private 5G Pricing][1].
223
+ #
224
+ #
225
+ #
226
+ # [1]: http://aws.amazon.com/private5g/pricing
227
+ #
228
+ # @!attribute [rw] automatic_renewal
229
+ # Determines whether the commitment period for a radio unit is set to
230
+ # automatically renew for an additional 1 year after your current
231
+ # commitment period expires.
232
+ #
233
+ # Set to `True`, if you want your commitment period to automatically
234
+ # renew. Set to `False` if you do not want your commitment to
235
+ # automatically renew.
236
+ #
237
+ # You can do the following:
238
+ #
239
+ # * Set a 1-year commitment to automatically renew for an additional 1
240
+ # year. The hourly rate for the additional year will continue to be
241
+ # the same as your existing 1-year rate.
242
+ #
243
+ # * Set a 3-year commitment to automatically renew for an additional 1
244
+ # year. The hourly rate for the additional year will continue to be
245
+ # the same as your existing 3-year rate.
246
+ #
247
+ # * Turn off a previously-enabled automatic renewal on a 1-year or
248
+ # 3-year commitment.
249
+ #
250
+ # You cannot use the automatic-renewal option for a 60-day commitment.
251
+ # @return [Boolean]
252
+ #
253
+ # @!attribute [rw] commitment_length
254
+ # The duration of the commitment period for the radio unit. You can
255
+ # choose a 60-day, 1-year, or 3-year period.
256
+ # @return [String]
257
+ #
258
+ # @see http://docs.aws.amazon.com/goto/WebAPI/privatenetworks-2021-12-03/CommitmentConfiguration AWS API Documentation
259
+ #
260
+ class CommitmentConfiguration < Struct.new(
261
+ :automatic_renewal,
262
+ :commitment_length)
263
+ SENSITIVE = []
264
+ include Aws::Structure
265
+ end
266
+
267
+ # Shows the duration, the date and time that the contract started and
268
+ # ends, and the renewal status of the commitment period for the radio
269
+ # unit.
270
+ #
271
+ # @!attribute [rw] commitment_configuration
272
+ # The duration and renewal status of the commitment period for the
273
+ # radio unit.
274
+ # @return [Types::CommitmentConfiguration]
275
+ #
276
+ # @!attribute [rw] expires_on
277
+ # The date and time that the commitment period ends. If you do not
278
+ # cancel or renew the commitment before the expiration date, you will
279
+ # be billed at the 60-day-commitment rate.
280
+ # @return [Time]
281
+ #
282
+ # @!attribute [rw] start_at
283
+ # The date and time that the commitment period started.
284
+ # @return [Time]
285
+ #
286
+ # @see http://docs.aws.amazon.com/goto/WebAPI/privatenetworks-2021-12-03/CommitmentInformation AWS API Documentation
287
+ #
288
+ class CommitmentInformation < Struct.new(
289
+ :commitment_configuration,
290
+ :expires_on,
291
+ :start_at)
292
+ SENSITIVE = []
186
293
  include Aws::Structure
187
294
  end
188
295
 
@@ -1056,6 +1163,12 @@ module Aws::PrivateNetworks
1056
1163
  # The attributes of the network resource.
1057
1164
  # @return [Array<Types::NameValuePair>]
1058
1165
  #
1166
+ # @!attribute [rw] commitment_information
1167
+ # Information about the commitment period for the radio unit. Shows
1168
+ # the duration, the date and time that the contract started and ends,
1169
+ # and the renewal status of the commitment period.
1170
+ # @return [Types::CommitmentInformation]
1171
+ #
1059
1172
  # @!attribute [rw] created_at
1060
1173
  # The creation time of the network resource.
1061
1174
  # @return [Time]
@@ -1123,6 +1236,7 @@ module Aws::PrivateNetworks
1123
1236
  #
1124
1237
  class NetworkResource < Struct.new(
1125
1238
  :attributes,
1239
+ :commitment_information,
1126
1240
  :created_at,
1127
1241
  :description,
1128
1242
  :health,
@@ -1255,6 +1369,10 @@ module Aws::PrivateNetworks
1255
1369
  # The Amazon Resource Name (ARN) of the order.
1256
1370
  # @return [String]
1257
1371
  #
1372
+ # @!attribute [rw] ordered_resources
1373
+ # A list of the network resources placed in the order.
1374
+ # @return [Array<Types::OrderedResourceDefinition>]
1375
+ #
1258
1376
  # @!attribute [rw] shipping_address
1259
1377
  # The shipping address of the order.
1260
1378
  # @return [Types::Address]
@@ -1271,12 +1389,39 @@ module Aws::PrivateNetworks
1271
1389
  :network_arn,
1272
1390
  :network_site_arn,
1273
1391
  :order_arn,
1392
+ :ordered_resources,
1274
1393
  :shipping_address,
1275
1394
  :tracking_information)
1276
1395
  SENSITIVE = []
1277
1396
  include Aws::Structure
1278
1397
  end
1279
1398
 
1399
+ # Details of the network resources in the order.
1400
+ #
1401
+ # @!attribute [rw] commitment_configuration
1402
+ # The duration and renewal status of the commitment period for each
1403
+ # radio unit in the order. Does not show details if the resource type
1404
+ # is DEVICE\_IDENTIFIER.
1405
+ # @return [Types::CommitmentConfiguration]
1406
+ #
1407
+ # @!attribute [rw] count
1408
+ # The number of network resources in the order.
1409
+ # @return [Integer]
1410
+ #
1411
+ # @!attribute [rw] type
1412
+ # The type of network resource in the order.
1413
+ # @return [String]
1414
+ #
1415
+ # @see http://docs.aws.amazon.com/goto/WebAPI/privatenetworks-2021-12-03/OrderedResourceDefinition AWS API Documentation
1416
+ #
1417
+ class OrderedResourceDefinition < Struct.new(
1418
+ :commitment_configuration,
1419
+ :count,
1420
+ :type)
1421
+ SENSITIVE = []
1422
+ include Aws::Structure
1423
+ end
1424
+
1280
1425
  # @!attribute [rw] status
1281
1426
  # Information about the health of the service.
1282
1427
  # @return [String]
@@ -1403,6 +1548,37 @@ module Aws::PrivateNetworks
1403
1548
  include Aws::Structure
1404
1549
  end
1405
1550
 
1551
+ # @!attribute [rw] commitment_configuration
1552
+ # Use this action to extend and automatically renew the commitment
1553
+ # period for the radio unit. You can do the following:
1554
+ #
1555
+ # * Change a 60-day commitment to a 1-year or 3-year commitment. The
1556
+ # change is immediate and the hourly rate decreases to the rate for
1557
+ # the new commitment period.
1558
+ #
1559
+ # * Change a 1-year commitment to a 3-year commitment. The change is
1560
+ # immediate and the hourly rate decreases to the rate for the 3-year
1561
+ # commitment period.
1562
+ #
1563
+ # * Set a 1-year commitment to automatically renew for an additional 1
1564
+ # year. The hourly rate for the additional year will continue to be
1565
+ # the same as your existing 1-year rate.
1566
+ #
1567
+ # * Set a 3-year commitment to automatically renew for an additional 1
1568
+ # year. The hourly rate for the additional year will continue to be
1569
+ # the same as your existing 3-year rate.
1570
+ #
1571
+ # * Turn off a previously-enabled automatic renewal on a 1-year or
1572
+ # 3-year commitment. You cannot use the automatic-renewal option for
1573
+ # a 60-day commitment.
1574
+ #
1575
+ # For pricing, see [Amazon Web Services Private 5G Pricing][1].
1576
+ #
1577
+ #
1578
+ #
1579
+ # [1]: http://aws.amazon.com/private5g/pricing
1580
+ # @return [Types::CommitmentConfiguration]
1581
+ #
1406
1582
  # @!attribute [rw] network_resource_arn
1407
1583
  # The Amazon Resource Name (ARN) of the network resource.
1408
1584
  # @return [String]
@@ -1425,14 +1601,23 @@ module Aws::PrivateNetworks
1425
1601
  # We provide a shipping label that you can use for the return
1426
1602
  # process and we ship a replacement radio unit to you.
1427
1603
  #
1428
- # * `RETURN` - Submits a request to replace a radio unit that you no
1604
+ # * `RETURN` - Submits a request to return a radio unit that you no
1429
1605
  # longer need. We provide a shipping label that you can use for the
1430
1606
  # return process.
1607
+ #
1608
+ # * `COMMITMENT` - Submits a request to change or renew the commitment
1609
+ # period. If you choose this value, then you must set [
1610
+ # `commitmentConfiguration` ][1].
1611
+ #
1612
+ #
1613
+ #
1614
+ # [1]: https://docs.aws.amazon.com/private-networks/latest/APIReference/API_StartNetworkResourceUpdate.html#privatenetworks-StartNetworkResourceUpdate-request-commitmentConfiguration
1431
1615
  # @return [String]
1432
1616
  #
1433
1617
  # @see http://docs.aws.amazon.com/goto/WebAPI/privatenetworks-2021-12-03/StartNetworkResourceUpdateRequest AWS API Documentation
1434
1618
  #
1435
1619
  class StartNetworkResourceUpdateRequest < Struct.new(
1620
+ :commitment_configuration,
1436
1621
  :network_resource_arn,
1437
1622
  :return_reason,
1438
1623
  :shipping_address,
@@ -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.6.0'
55
+ GEM_VERSION = '1.8.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.6.0
4
+ version: 1.8.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-06-15 00:00:00.000000000 Z
11
+ date: 2023-06-28 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.174.0
22
+ version: 3.176.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.174.0
32
+ version: 3.176.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement