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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-panorama/client.rb +1 -1
- data/lib/aws-sdk-panorama.rb +1 -1
- data/sig/client.rbs +5 -21
- data/sig/params.rbs +23 -0
- metadata +2 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c852ef90a0f16b44d442f4044ef907de7a56e311446f9ab4300ec380d6f33ff5
|
|
4
|
+
data.tar.gz: ba00acf870ca7118b5a1c66d7c34eadca68201c0c2c7d25109862398c91895c2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 122ce8f2b910416368de51c3bf2170561bed9bec72859f24569080ba88a8b8030eb142a91b671e4ec6a24bec4d9c929f5bcf12224b0182b5373f05200af5a7b0
|
|
7
|
+
data.tar.gz: ec8d2315f58b8bc24632887dc816aa9419c87c54bda628666e7f64f624cc839f1aa46c64d726cc1ed61448fb0b99be2ce46e655b0ba6b29baf68fcb481de8c09
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.56.0
|
data/lib/aws-sdk-panorama.rb
CHANGED
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
|
-
|
|
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.
|
|
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
|