aws-sdk-panorama 1.55.0 → 1.56.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: 7c4e0e48a875ec9b505031538088962b6a6b0fdfda23206d7f5f9ac9b5ed3429
4
- data.tar.gz: 7b8d1b9f4c04606e0bbb82647f9c8c93656eb16a0facd85eaa14163eb7f1d746
3
+ metadata.gz: c852ef90a0f16b44d442f4044ef907de7a56e311446f9ab4300ec380d6f33ff5
4
+ data.tar.gz: ba00acf870ca7118b5a1c66d7c34eadca68201c0c2c7d25109862398c91895c2
5
5
  SHA512:
6
- metadata.gz: 6e9084e21686ab40c178d1213ce1e7968278c11f2b4b2298aa0e236c4fa0925e95f97634ffbfb20a9c24f8917a870b6ba80faabad0316685ed710fc3ee55d4fc
7
- data.tar.gz: c2274dad42374c4bd70b0cc4638f1843416a67afe80b31e3f6616f4aa8289adfcdf1920b3aea1476603eaffb6da7214ffb9650ed0e04e1d3d1dc29317dbc5f3d
6
+ metadata.gz: 122ce8f2b910416368de51c3bf2170561bed9bec72859f24569080ba88a8b8030eb142a91b671e4ec6a24bec4d9c929f5bcf12224b0182b5373f05200af5a7b0
7
+ data.tar.gz: ec8d2315f58b8bc24632887dc816aa9419c87c54bda628666e7f64f624cc839f1aa46c64d726cc1ed61448fb0b99be2ce46e655b0ba6b29baf68fcb481de8c09
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.56.0 (2026-05-19)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
4
9
  1.55.0 (2026-05-13)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.55.0
1
+ 1.56.0
@@ -2154,7 +2154,7 @@ module Aws::Panorama
2154
2154
  tracer: tracer
2155
2155
  )
2156
2156
  context[:gem_name] = 'aws-sdk-panorama'
2157
- context[:gem_version] = '1.55.0'
2157
+ context[:gem_version] = '1.56.0'
2158
2158
  Seahorse::Client::Request.new(handlers, context)
2159
2159
  end
2160
2160
 
@@ -54,7 +54,7 @@ module Aws::Panorama
54
54
  autoload :EndpointProvider, 'aws-sdk-panorama/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-panorama/endpoints'
56
56
 
57
- GEM_VERSION = '1.55.0'
57
+ GEM_VERSION = '1.56.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -126,7 +126,7 @@ module Aws
126
126
  {
127
127
  resource_type: ("PACKAGE"),
128
128
  tags: Hash[::String, ::String]
129
- },
129
+ }
130
130
  ],
131
131
  ?node_description: ::String,
132
132
  node_name: ::String,
@@ -170,7 +170,7 @@ module Aws
170
170
  {
171
171
  resource_type: ("PACKAGE"),
172
172
  tags: Hash[::String, ::String]
173
- },
173
+ }
174
174
  ],
175
175
  job_type: ("NODE_PACKAGE_VERSION" | "MARKETPLACE_NODE_PACKAGE_VERSION"),
176
176
  output_config: {
@@ -553,24 +553,8 @@ module Aws
553
553
  ?description: ::String,
554
554
  name: ::String,
555
555
  ?networking_configuration: {
556
- ethernet_0: {
557
- connection_type: ("STATIC_IP" | "DHCP"),
558
- static_ip_connection_info: {
559
- default_gateway: ::String,
560
- dns: Array[::String],
561
- ip_address: ::String,
562
- mask: ::String
563
- }?
564
- }?,
565
- ethernet_1: {
566
- connection_type: ("STATIC_IP" | "DHCP"),
567
- static_ip_connection_info: {
568
- default_gateway: ::String,
569
- dns: Array[::String],
570
- ip_address: ::String,
571
- mask: ::String
572
- }?
573
- }?,
556
+ ethernet_0: Params::ethernet_payload?,
557
+ ethernet_1: Params::ethernet_payload?,
574
558
  ntp: {
575
559
  ntp_servers: Array[::String]
576
560
  }?
@@ -612,7 +596,7 @@ module Aws
612
596
  {
613
597
  node_instance_id: ::String,
614
598
  signal: ("PAUSE" | "RESUME")
615
- },
599
+ }
616
600
  ]
617
601
  ) -> _SignalApplicationInstanceNodeInstancesResponseSuccess
618
602
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SignalApplicationInstanceNodeInstancesResponseSuccess
data/sig/params.rbs ADDED
@@ -0,0 +1,23 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws
9
+ module Panorama
10
+ module Params
11
+ type ethernet_payload = {
12
+ connection_type: ("STATIC_IP" | "DHCP"),
13
+ static_ip_connection_info: {
14
+ default_gateway: ::String,
15
+ dns: Array[::String],
16
+ ip_address: ::String,
17
+ mask: ::String
18
+ }?
19
+ }
20
+
21
+ end
22
+ end
23
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-panorama
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.55.0
4
+ version: 1.56.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
@@ -67,6 +67,7 @@ files:
67
67
  - lib/aws-sdk-panorama/types.rb
68
68
  - sig/client.rbs
69
69
  - sig/errors.rbs
70
+ - sig/params.rbs
70
71
  - sig/resource.rbs
71
72
  - sig/types.rbs
72
73
  - sig/waiters.rbs