sig/network_acl.rbs in aws-sdk-ec2-1.479.0 vs sig/network_acl.rbs in aws-sdk-ec2-1.480.0
- old
+ new
@@ -49,25 +49,25 @@
def data_loaded?: () -> bool
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/NetworkAcl.html#create_entry-instance_method
def create_entry: (
- ?cidr_block: ::String,
?dry_run: bool,
+ rule_number: ::Integer,
+ protocol: ::String,
+ rule_action: ("allow" | "deny"),
egress: bool,
+ ?cidr_block: ::String,
+ ?ipv_6_cidr_block: ::String,
?icmp_type_code: {
code: ::Integer?,
type: ::Integer?
},
- ?ipv_6_cidr_block: ::String,
?port_range: {
from: ::Integer?,
to: ::Integer?
- },
- protocol: ::String,
- rule_action: ("allow" | "deny"),
- rule_number: ::Integer
+ }
) -> ::Aws::EmptyStructure
| (?Hash[Symbol, untyped]) -> ::Aws::EmptyStructure
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/NetworkAcl.html#create_tags-instance_method
def create_tags: (
@@ -100,38 +100,38 @@
| (?Hash[Symbol, untyped]) -> ::Aws::EmptyStructure
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/NetworkAcl.html#delete_entry-instance_method
def delete_entry: (
?dry_run: bool,
- egress: bool,
- rule_number: ::Integer
+ rule_number: ::Integer,
+ egress: bool
) -> ::Aws::EmptyStructure
| (?Hash[Symbol, untyped]) -> ::Aws::EmptyStructure
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/NetworkAcl.html#replace_association-instance_method
def replace_association: (
- association_id: ::String,
- ?dry_run: bool
+ ?dry_run: bool,
+ association_id: ::String
) -> Types::ReplaceNetworkAclAssociationResult
| (?Hash[Symbol, untyped]) -> Types::ReplaceNetworkAclAssociationResult
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/NetworkAcl.html#replace_entry-instance_method
def replace_entry: (
- ?cidr_block: ::String,
?dry_run: bool,
+ rule_number: ::Integer,
+ protocol: ::String,
+ rule_action: ("allow" | "deny"),
egress: bool,
+ ?cidr_block: ::String,
+ ?ipv_6_cidr_block: ::String,
?icmp_type_code: {
code: ::Integer?,
type: ::Integer?
},
- ?ipv_6_cidr_block: ::String,
?port_range: {
from: ::Integer?,
to: ::Integer?
- },
- protocol: ::String,
- rule_action: ("allow" | "deny"),
- rule_number: ::Integer
+ }
) -> ::Aws::EmptyStructure
| (?Hash[Symbol, untyped]) -> ::Aws::EmptyStructure
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/NetworkAcl.html#vpc-instance_method
def vpc: () -> Vpc?