aws-sdk-apprunner 1.17.0 → 1.19.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-apprunner/client.rb +333 -1
- data/lib/aws-sdk-apprunner/client_api.rb +169 -1
- data/lib/aws-sdk-apprunner/endpoint_parameters.rb +3 -0
- data/lib/aws-sdk-apprunner/endpoint_provider.rb +75 -76
- data/lib/aws-sdk-apprunner/endpoints.rb +70 -0
- data/lib/aws-sdk-apprunner/plugins/endpoints.rb +10 -0
- data/lib/aws-sdk-apprunner/types.rb +430 -607
- data/lib/aws-sdk-apprunner.rb +1 -1
- metadata +2 -2
@@ -68,6 +68,8 @@ module Aws::AppRunner
|
|
68
68
|
Aws::AppRunner::Endpoints::CreateService.build(context)
|
69
69
|
when :create_vpc_connector
|
70
70
|
Aws::AppRunner::Endpoints::CreateVpcConnector.build(context)
|
71
|
+
when :create_vpc_ingress_connection
|
72
|
+
Aws::AppRunner::Endpoints::CreateVpcIngressConnection.build(context)
|
71
73
|
when :delete_auto_scaling_configuration
|
72
74
|
Aws::AppRunner::Endpoints::DeleteAutoScalingConfiguration.build(context)
|
73
75
|
when :delete_connection
|
@@ -78,6 +80,8 @@ module Aws::AppRunner
|
|
78
80
|
Aws::AppRunner::Endpoints::DeleteService.build(context)
|
79
81
|
when :delete_vpc_connector
|
80
82
|
Aws::AppRunner::Endpoints::DeleteVpcConnector.build(context)
|
83
|
+
when :delete_vpc_ingress_connection
|
84
|
+
Aws::AppRunner::Endpoints::DeleteVpcIngressConnection.build(context)
|
81
85
|
when :describe_auto_scaling_configuration
|
82
86
|
Aws::AppRunner::Endpoints::DescribeAutoScalingConfiguration.build(context)
|
83
87
|
when :describe_custom_domains
|
@@ -88,6 +92,8 @@ module Aws::AppRunner
|
|
88
92
|
Aws::AppRunner::Endpoints::DescribeService.build(context)
|
89
93
|
when :describe_vpc_connector
|
90
94
|
Aws::AppRunner::Endpoints::DescribeVpcConnector.build(context)
|
95
|
+
when :describe_vpc_ingress_connection
|
96
|
+
Aws::AppRunner::Endpoints::DescribeVpcIngressConnection.build(context)
|
91
97
|
when :disassociate_custom_domain
|
92
98
|
Aws::AppRunner::Endpoints::DisassociateCustomDomain.build(context)
|
93
99
|
when :list_auto_scaling_configurations
|
@@ -104,6 +110,8 @@ module Aws::AppRunner
|
|
104
110
|
Aws::AppRunner::Endpoints::ListTagsForResource.build(context)
|
105
111
|
when :list_vpc_connectors
|
106
112
|
Aws::AppRunner::Endpoints::ListVpcConnectors.build(context)
|
113
|
+
when :list_vpc_ingress_connections
|
114
|
+
Aws::AppRunner::Endpoints::ListVpcIngressConnections.build(context)
|
107
115
|
when :pause_service
|
108
116
|
Aws::AppRunner::Endpoints::PauseService.build(context)
|
109
117
|
when :resume_service
|
@@ -116,6 +124,8 @@ module Aws::AppRunner
|
|
116
124
|
Aws::AppRunner::Endpoints::UntagResource.build(context)
|
117
125
|
when :update_service
|
118
126
|
Aws::AppRunner::Endpoints::UpdateService.build(context)
|
127
|
+
when :update_vpc_ingress_connection
|
128
|
+
Aws::AppRunner::Endpoints::UpdateVpcIngressConnection.build(context)
|
119
129
|
end
|
120
130
|
end
|
121
131
|
end
|