aws-sdk-mwaa 1.37.0 → 1.38.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-mwaa/client.rb +367 -307
- data/lib/aws-sdk-mwaa/client_api.rb +75 -67
- data/lib/aws-sdk-mwaa/types.rb +633 -540
- data/lib/aws-sdk-mwaa.rb +1 -1
- data/sig/client.rbs +59 -55
- data/sig/types.rbs +72 -66
- metadata +2 -2
data/lib/aws-sdk-mwaa.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -89,13 +89,25 @@ module Aws
|
|
89
89
|
end
|
90
90
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MWAA/Client.html#create_environment-instance_method
|
91
91
|
def create_environment: (
|
92
|
-
|
93
|
-
|
92
|
+
name: ::String,
|
93
|
+
execution_role_arn: ::String,
|
94
|
+
source_bucket_arn: ::String,
|
94
95
|
dag_s3_path: ::String,
|
95
|
-
|
96
|
+
network_configuration: {
|
97
|
+
subnet_ids: Array[::String]?,
|
98
|
+
security_group_ids: Array[::String]?
|
99
|
+
},
|
100
|
+
?plugins_s3_path: ::String,
|
101
|
+
?plugins_s3_object_version: ::String,
|
102
|
+
?requirements_s3_path: ::String,
|
103
|
+
?requirements_s3_object_version: ::String,
|
104
|
+
?startup_script_s3_path: ::String,
|
105
|
+
?startup_script_s3_object_version: ::String,
|
106
|
+
?airflow_configuration_options: Hash[::String, ::String],
|
96
107
|
?environment_class: ::String,
|
97
|
-
|
108
|
+
?max_workers: ::Integer,
|
98
109
|
?kms_key: ::String,
|
110
|
+
?airflow_version: ::String,
|
99
111
|
?logging_configuration: {
|
100
112
|
dag_processing_logs: {
|
101
113
|
enabled: bool,
|
@@ -105,46 +117,36 @@ module Aws
|
|
105
117
|
enabled: bool,
|
106
118
|
log_level: ("CRITICAL" | "ERROR" | "WARNING" | "INFO" | "DEBUG")
|
107
119
|
}?,
|
108
|
-
|
120
|
+
webserver_logs: {
|
109
121
|
enabled: bool,
|
110
122
|
log_level: ("CRITICAL" | "ERROR" | "WARNING" | "INFO" | "DEBUG")
|
111
123
|
}?,
|
112
|
-
|
124
|
+
worker_logs: {
|
113
125
|
enabled: bool,
|
114
126
|
log_level: ("CRITICAL" | "ERROR" | "WARNING" | "INFO" | "DEBUG")
|
115
127
|
}?,
|
116
|
-
|
128
|
+
task_logs: {
|
117
129
|
enabled: bool,
|
118
130
|
log_level: ("CRITICAL" | "ERROR" | "WARNING" | "INFO" | "DEBUG")
|
119
131
|
}?
|
120
132
|
},
|
121
|
-
?
|
122
|
-
?min_workers: ::Integer,
|
123
|
-
name: ::String,
|
124
|
-
network_configuration: {
|
125
|
-
security_group_ids: Array[::String]?,
|
126
|
-
subnet_ids: Array[::String]?
|
127
|
-
},
|
128
|
-
?plugins_s3_object_version: ::String,
|
129
|
-
?plugins_s3_path: ::String,
|
130
|
-
?requirements_s3_object_version: ::String,
|
131
|
-
?requirements_s3_path: ::String,
|
132
|
-
?schedulers: ::Integer,
|
133
|
-
source_bucket_arn: ::String,
|
134
|
-
?startup_script_s3_object_version: ::String,
|
135
|
-
?startup_script_s3_path: ::String,
|
133
|
+
?weekly_maintenance_window_start: ::String,
|
136
134
|
?tags: Hash[::String, ::String],
|
137
135
|
?webserver_access_mode: ("PRIVATE_ONLY" | "PUBLIC_ONLY"),
|
138
|
-
?
|
136
|
+
?min_workers: ::Integer,
|
137
|
+
?schedulers: ::Integer,
|
138
|
+
?endpoint_management: ("CUSTOMER" | "SERVICE"),
|
139
|
+
?min_webservers: ::Integer,
|
140
|
+
?max_webservers: ::Integer
|
139
141
|
) -> _CreateEnvironmentResponseSuccess
|
140
142
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateEnvironmentResponseSuccess
|
141
143
|
|
142
144
|
interface _CreateWebLoginTokenResponseSuccess
|
143
145
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateWebLoginTokenResponse]
|
144
|
-
def airflow_identity: () -> ::String
|
145
|
-
def iam_identity: () -> ::String
|
146
|
-
def web_server_hostname: () -> ::String
|
147
146
|
def web_token: () -> ::String
|
147
|
+
def web_server_hostname: () -> ::String
|
148
|
+
def iam_identity: () -> ::String
|
149
|
+
def airflow_identity: () -> ::String
|
148
150
|
end
|
149
151
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MWAA/Client.html#create_web_login_token-instance_method
|
150
152
|
def create_web_login_token: (
|
@@ -178,8 +180,8 @@ module Aws
|
|
178
180
|
end
|
179
181
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MWAA/Client.html#list_environments-instance_method
|
180
182
|
def list_environments: (
|
181
|
-
?
|
182
|
-
?
|
183
|
+
?next_token: ::String,
|
184
|
+
?max_results: ::Integer
|
183
185
|
) -> _ListEnvironmentsResponseSuccess
|
184
186
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListEnvironmentsResponseSuccess
|
185
187
|
|
@@ -201,22 +203,22 @@ module Aws
|
|
201
203
|
environment_name: ::String,
|
202
204
|
metric_data: Array[
|
203
205
|
{
|
206
|
+
metric_name: ::String,
|
207
|
+
timestamp: ::Time,
|
204
208
|
dimensions: Array[
|
205
209
|
{
|
206
210
|
name: ::String,
|
207
211
|
value: ::String
|
208
212
|
},
|
209
213
|
]?,
|
210
|
-
|
214
|
+
value: ::Float?,
|
215
|
+
unit: ("Seconds" | "Microseconds" | "Milliseconds" | "Bytes" | "Kilobytes" | "Megabytes" | "Gigabytes" | "Terabytes" | "Bits" | "Kilobits" | "Megabits" | "Gigabits" | "Terabits" | "Percent" | "Count" | "Bytes/Second" | "Kilobytes/Second" | "Megabytes/Second" | "Gigabytes/Second" | "Terabytes/Second" | "Bits/Second" | "Kilobits/Second" | "Megabits/Second" | "Gigabits/Second" | "Terabits/Second" | "Count/Second" | "None")?,
|
211
216
|
statistic_values: {
|
212
|
-
maximum: ::Float?,
|
213
|
-
minimum: ::Float?,
|
214
217
|
sample_count: ::Integer?,
|
215
|
-
sum: ::Float
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
value: ::Float?
|
218
|
+
sum: ::Float?,
|
219
|
+
minimum: ::Float?,
|
220
|
+
maximum: ::Float?
|
221
|
+
}?
|
220
222
|
},
|
221
223
|
]
|
222
224
|
) -> _PublishMetricsResponseSuccess
|
@@ -248,11 +250,23 @@ module Aws
|
|
248
250
|
end
|
249
251
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MWAA/Client.html#update_environment-instance_method
|
250
252
|
def update_environment: (
|
251
|
-
|
253
|
+
name: ::String,
|
254
|
+
?execution_role_arn: ::String,
|
252
255
|
?airflow_version: ::String,
|
256
|
+
?source_bucket_arn: ::String,
|
253
257
|
?dag_s3_path: ::String,
|
258
|
+
?plugins_s3_path: ::String,
|
259
|
+
?plugins_s3_object_version: ::String,
|
260
|
+
?requirements_s3_path: ::String,
|
261
|
+
?requirements_s3_object_version: ::String,
|
262
|
+
?startup_script_s3_path: ::String,
|
263
|
+
?startup_script_s3_object_version: ::String,
|
264
|
+
?airflow_configuration_options: Hash[::String, ::String],
|
254
265
|
?environment_class: ::String,
|
255
|
-
?
|
266
|
+
?max_workers: ::Integer,
|
267
|
+
?network_configuration: {
|
268
|
+
security_group_ids: Array[::String]
|
269
|
+
},
|
256
270
|
?logging_configuration: {
|
257
271
|
dag_processing_logs: {
|
258
272
|
enabled: bool,
|
@@ -262,35 +276,25 @@ module Aws
|
|
262
276
|
enabled: bool,
|
263
277
|
log_level: ("CRITICAL" | "ERROR" | "WARNING" | "INFO" | "DEBUG")
|
264
278
|
}?,
|
265
|
-
|
279
|
+
webserver_logs: {
|
266
280
|
enabled: bool,
|
267
281
|
log_level: ("CRITICAL" | "ERROR" | "WARNING" | "INFO" | "DEBUG")
|
268
282
|
}?,
|
269
|
-
|
283
|
+
worker_logs: {
|
270
284
|
enabled: bool,
|
271
285
|
log_level: ("CRITICAL" | "ERROR" | "WARNING" | "INFO" | "DEBUG")
|
272
286
|
}?,
|
273
|
-
|
287
|
+
task_logs: {
|
274
288
|
enabled: bool,
|
275
289
|
log_level: ("CRITICAL" | "ERROR" | "WARNING" | "INFO" | "DEBUG")
|
276
290
|
}?
|
277
291
|
},
|
278
|
-
?
|
292
|
+
?weekly_maintenance_window_start: ::String,
|
293
|
+
?webserver_access_mode: ("PRIVATE_ONLY" | "PUBLIC_ONLY"),
|
279
294
|
?min_workers: ::Integer,
|
280
|
-
name: ::String,
|
281
|
-
?network_configuration: {
|
282
|
-
security_group_ids: Array[::String]
|
283
|
-
},
|
284
|
-
?plugins_s3_object_version: ::String,
|
285
|
-
?plugins_s3_path: ::String,
|
286
|
-
?requirements_s3_object_version: ::String,
|
287
|
-
?requirements_s3_path: ::String,
|
288
295
|
?schedulers: ::Integer,
|
289
|
-
?
|
290
|
-
?
|
291
|
-
?startup_script_s3_path: ::String,
|
292
|
-
?webserver_access_mode: ("PRIVATE_ONLY" | "PUBLIC_ONLY"),
|
293
|
-
?weekly_maintenance_window_start: ::String
|
296
|
+
?min_webservers: ::Integer,
|
297
|
+
?max_webservers: ::Integer
|
294
298
|
) -> _UpdateEnvironmentResponseSuccess
|
295
299
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateEnvironmentResponseSuccess
|
296
300
|
end
|
data/sig/types.rbs
CHANGED
@@ -25,29 +25,31 @@ module Aws::MWAA
|
|
25
25
|
end
|
26
26
|
|
27
27
|
class CreateEnvironmentInput
|
28
|
-
attr_accessor airflow_configuration_options: ::Hash[::String, ::String]
|
29
|
-
attr_accessor airflow_version: ::String
|
30
|
-
attr_accessor dag_s3_path: ::String
|
31
|
-
attr_accessor endpoint_management: ("CUSTOMER" | "SERVICE")
|
32
|
-
attr_accessor environment_class: ::String
|
33
|
-
attr_accessor execution_role_arn: ::String
|
34
|
-
attr_accessor kms_key: ::String
|
35
|
-
attr_accessor logging_configuration: Types::LoggingConfigurationInput
|
36
|
-
attr_accessor max_workers: ::Integer
|
37
|
-
attr_accessor min_workers: ::Integer
|
38
28
|
attr_accessor name: ::String
|
29
|
+
attr_accessor execution_role_arn: ::String
|
30
|
+
attr_accessor source_bucket_arn: ::String
|
31
|
+
attr_accessor dag_s3_path: ::String
|
39
32
|
attr_accessor network_configuration: Types::NetworkConfiguration
|
40
|
-
attr_accessor plugins_s3_object_version: ::String
|
41
33
|
attr_accessor plugins_s3_path: ::String
|
42
|
-
attr_accessor
|
34
|
+
attr_accessor plugins_s3_object_version: ::String
|
43
35
|
attr_accessor requirements_s3_path: ::String
|
44
|
-
attr_accessor
|
45
|
-
attr_accessor source_bucket_arn: ::String
|
46
|
-
attr_accessor startup_script_s3_object_version: ::String
|
36
|
+
attr_accessor requirements_s3_object_version: ::String
|
47
37
|
attr_accessor startup_script_s3_path: ::String
|
38
|
+
attr_accessor startup_script_s3_object_version: ::String
|
39
|
+
attr_accessor airflow_configuration_options: ::Hash[::String, ::String]
|
40
|
+
attr_accessor environment_class: ::String
|
41
|
+
attr_accessor max_workers: ::Integer
|
42
|
+
attr_accessor kms_key: ::String
|
43
|
+
attr_accessor airflow_version: ::String
|
44
|
+
attr_accessor logging_configuration: Types::LoggingConfigurationInput
|
45
|
+
attr_accessor weekly_maintenance_window_start: ::String
|
48
46
|
attr_accessor tags: ::Hash[::String, ::String]
|
49
47
|
attr_accessor webserver_access_mode: ("PRIVATE_ONLY" | "PUBLIC_ONLY")
|
50
|
-
attr_accessor
|
48
|
+
attr_accessor min_workers: ::Integer
|
49
|
+
attr_accessor schedulers: ::Integer
|
50
|
+
attr_accessor endpoint_management: ("CUSTOMER" | "SERVICE")
|
51
|
+
attr_accessor min_webservers: ::Integer
|
52
|
+
attr_accessor max_webservers: ::Integer
|
51
53
|
SENSITIVE: [:airflow_configuration_options]
|
52
54
|
end
|
53
55
|
|
@@ -62,10 +64,10 @@ module Aws::MWAA
|
|
62
64
|
end
|
63
65
|
|
64
66
|
class CreateWebLoginTokenResponse
|
65
|
-
attr_accessor airflow_identity: ::String
|
66
|
-
attr_accessor iam_identity: ::String
|
67
|
-
attr_accessor web_server_hostname: ::String
|
68
67
|
attr_accessor web_token: ::String
|
68
|
+
attr_accessor web_server_hostname: ::String
|
69
|
+
attr_accessor iam_identity: ::String
|
70
|
+
attr_accessor airflow_identity: ::String
|
69
71
|
SENSITIVE: [:web_token]
|
70
72
|
end
|
71
73
|
|
@@ -84,38 +86,40 @@ module Aws::MWAA
|
|
84
86
|
end
|
85
87
|
|
86
88
|
class Environment
|
87
|
-
attr_accessor
|
88
|
-
attr_accessor
|
89
|
+
attr_accessor name: ::String
|
90
|
+
attr_accessor status: ("CREATING" | "CREATE_FAILED" | "AVAILABLE" | "UPDATING" | "DELETING" | "DELETED" | "UNAVAILABLE" | "UPDATE_FAILED" | "ROLLING_BACK" | "CREATING_SNAPSHOT" | "PENDING" | "MAINTENANCE")
|
89
91
|
attr_accessor arn: ::String
|
90
|
-
attr_accessor celery_executor_queue: ::String
|
91
92
|
attr_accessor created_at: ::Time
|
92
|
-
attr_accessor
|
93
|
-
attr_accessor database_vpc_endpoint_service: ::String
|
94
|
-
attr_accessor endpoint_management: ("CUSTOMER" | "SERVICE")
|
95
|
-
attr_accessor environment_class: ::String
|
93
|
+
attr_accessor webserver_url: ::String
|
96
94
|
attr_accessor execution_role_arn: ::String
|
95
|
+
attr_accessor service_role_arn: ::String
|
97
96
|
attr_accessor kms_key: ::String
|
98
|
-
attr_accessor
|
99
|
-
attr_accessor
|
100
|
-
attr_accessor
|
101
|
-
attr_accessor min_workers: ::Integer
|
102
|
-
attr_accessor name: ::String
|
103
|
-
attr_accessor network_configuration: Types::NetworkConfiguration
|
104
|
-
attr_accessor plugins_s3_object_version: ::String
|
97
|
+
attr_accessor airflow_version: ::String
|
98
|
+
attr_accessor source_bucket_arn: ::String
|
99
|
+
attr_accessor dag_s3_path: ::String
|
105
100
|
attr_accessor plugins_s3_path: ::String
|
106
|
-
attr_accessor
|
101
|
+
attr_accessor plugins_s3_object_version: ::String
|
107
102
|
attr_accessor requirements_s3_path: ::String
|
108
|
-
attr_accessor
|
109
|
-
attr_accessor service_role_arn: ::String
|
110
|
-
attr_accessor source_bucket_arn: ::String
|
111
|
-
attr_accessor startup_script_s3_object_version: ::String
|
103
|
+
attr_accessor requirements_s3_object_version: ::String
|
112
104
|
attr_accessor startup_script_s3_path: ::String
|
113
|
-
attr_accessor
|
105
|
+
attr_accessor startup_script_s3_object_version: ::String
|
106
|
+
attr_accessor airflow_configuration_options: ::Hash[::String, ::String]
|
107
|
+
attr_accessor environment_class: ::String
|
108
|
+
attr_accessor max_workers: ::Integer
|
109
|
+
attr_accessor network_configuration: Types::NetworkConfiguration
|
110
|
+
attr_accessor logging_configuration: Types::LoggingConfiguration
|
111
|
+
attr_accessor last_update: Types::LastUpdate
|
112
|
+
attr_accessor weekly_maintenance_window_start: ::String
|
114
113
|
attr_accessor tags: ::Hash[::String, ::String]
|
115
114
|
attr_accessor webserver_access_mode: ("PRIVATE_ONLY" | "PUBLIC_ONLY")
|
116
|
-
attr_accessor
|
115
|
+
attr_accessor min_workers: ::Integer
|
116
|
+
attr_accessor schedulers: ::Integer
|
117
117
|
attr_accessor webserver_vpc_endpoint_service: ::String
|
118
|
-
attr_accessor
|
118
|
+
attr_accessor database_vpc_endpoint_service: ::String
|
119
|
+
attr_accessor celery_executor_queue: ::String
|
120
|
+
attr_accessor endpoint_management: ("CUSTOMER" | "SERVICE")
|
121
|
+
attr_accessor min_webservers: ::Integer
|
122
|
+
attr_accessor max_webservers: ::Integer
|
119
123
|
SENSITIVE: [:airflow_configuration_options]
|
120
124
|
end
|
121
125
|
|
@@ -135,16 +139,16 @@ module Aws::MWAA
|
|
135
139
|
end
|
136
140
|
|
137
141
|
class LastUpdate
|
142
|
+
attr_accessor status: ("SUCCESS" | "PENDING" | "FAILED")
|
138
143
|
attr_accessor created_at: ::Time
|
139
144
|
attr_accessor error: Types::UpdateError
|
140
145
|
attr_accessor source: ::String
|
141
|
-
attr_accessor status: ("SUCCESS" | "PENDING" | "FAILED")
|
142
146
|
SENSITIVE: []
|
143
147
|
end
|
144
148
|
|
145
149
|
class ListEnvironmentsInput
|
146
|
-
attr_accessor max_results: ::Integer
|
147
150
|
attr_accessor next_token: ::String
|
151
|
+
attr_accessor max_results: ::Integer
|
148
152
|
SENSITIVE: []
|
149
153
|
end
|
150
154
|
|
@@ -167,35 +171,35 @@ module Aws::MWAA
|
|
167
171
|
class LoggingConfiguration
|
168
172
|
attr_accessor dag_processing_logs: Types::ModuleLoggingConfiguration
|
169
173
|
attr_accessor scheduler_logs: Types::ModuleLoggingConfiguration
|
170
|
-
attr_accessor task_logs: Types::ModuleLoggingConfiguration
|
171
174
|
attr_accessor webserver_logs: Types::ModuleLoggingConfiguration
|
172
175
|
attr_accessor worker_logs: Types::ModuleLoggingConfiguration
|
176
|
+
attr_accessor task_logs: Types::ModuleLoggingConfiguration
|
173
177
|
SENSITIVE: []
|
174
178
|
end
|
175
179
|
|
176
180
|
class LoggingConfigurationInput
|
177
181
|
attr_accessor dag_processing_logs: Types::ModuleLoggingConfigurationInput
|
178
182
|
attr_accessor scheduler_logs: Types::ModuleLoggingConfigurationInput
|
179
|
-
attr_accessor task_logs: Types::ModuleLoggingConfigurationInput
|
180
183
|
attr_accessor webserver_logs: Types::ModuleLoggingConfigurationInput
|
181
184
|
attr_accessor worker_logs: Types::ModuleLoggingConfigurationInput
|
185
|
+
attr_accessor task_logs: Types::ModuleLoggingConfigurationInput
|
182
186
|
SENSITIVE: []
|
183
187
|
end
|
184
188
|
|
185
189
|
class MetricDatum
|
186
|
-
attr_accessor dimensions: ::Array[Types::Dimension]
|
187
190
|
attr_accessor metric_name: ::String
|
188
|
-
attr_accessor statistic_values: Types::StatisticSet
|
189
191
|
attr_accessor timestamp: ::Time
|
190
|
-
attr_accessor
|
192
|
+
attr_accessor dimensions: ::Array[Types::Dimension]
|
191
193
|
attr_accessor value: ::Float
|
194
|
+
attr_accessor unit: ("Seconds" | "Microseconds" | "Milliseconds" | "Bytes" | "Kilobytes" | "Megabytes" | "Gigabytes" | "Terabytes" | "Bits" | "Kilobits" | "Megabits" | "Gigabits" | "Terabits" | "Percent" | "Count" | "Bytes/Second" | "Kilobytes/Second" | "Megabytes/Second" | "Gigabytes/Second" | "Terabytes/Second" | "Bits/Second" | "Kilobits/Second" | "Megabits/Second" | "Gigabits/Second" | "Terabits/Second" | "Count/Second" | "None")
|
195
|
+
attr_accessor statistic_values: Types::StatisticSet
|
192
196
|
SENSITIVE: []
|
193
197
|
end
|
194
198
|
|
195
199
|
class ModuleLoggingConfiguration
|
196
|
-
attr_accessor cloud_watch_log_group_arn: ::String
|
197
200
|
attr_accessor enabled: bool
|
198
201
|
attr_accessor log_level: ("CRITICAL" | "ERROR" | "WARNING" | "INFO" | "DEBUG")
|
202
|
+
attr_accessor cloud_watch_log_group_arn: ::String
|
199
203
|
SENSITIVE: []
|
200
204
|
end
|
201
205
|
|
@@ -206,8 +210,8 @@ module Aws::MWAA
|
|
206
210
|
end
|
207
211
|
|
208
212
|
class NetworkConfiguration
|
209
|
-
attr_accessor security_group_ids: ::Array[::String]
|
210
213
|
attr_accessor subnet_ids: ::Array[::String]
|
214
|
+
attr_accessor security_group_ids: ::Array[::String]
|
211
215
|
SENSITIVE: []
|
212
216
|
end
|
213
217
|
|
@@ -226,10 +230,10 @@ module Aws::MWAA
|
|
226
230
|
end
|
227
231
|
|
228
232
|
class StatisticSet
|
229
|
-
attr_accessor maximum: ::Float
|
230
|
-
attr_accessor minimum: ::Float
|
231
233
|
attr_accessor sample_count: ::Integer
|
232
234
|
attr_accessor sum: ::Float
|
235
|
+
attr_accessor minimum: ::Float
|
236
|
+
attr_accessor maximum: ::Float
|
233
237
|
SENSITIVE: []
|
234
238
|
end
|
235
239
|
|
@@ -252,26 +256,28 @@ module Aws::MWAA
|
|
252
256
|
end
|
253
257
|
|
254
258
|
class UpdateEnvironmentInput
|
255
|
-
attr_accessor
|
259
|
+
attr_accessor name: ::String
|
260
|
+
attr_accessor execution_role_arn: ::String
|
256
261
|
attr_accessor airflow_version: ::String
|
262
|
+
attr_accessor source_bucket_arn: ::String
|
257
263
|
attr_accessor dag_s3_path: ::String
|
258
|
-
attr_accessor environment_class: ::String
|
259
|
-
attr_accessor execution_role_arn: ::String
|
260
|
-
attr_accessor logging_configuration: Types::LoggingConfigurationInput
|
261
|
-
attr_accessor max_workers: ::Integer
|
262
|
-
attr_accessor min_workers: ::Integer
|
263
|
-
attr_accessor name: ::String
|
264
|
-
attr_accessor network_configuration: Types::UpdateNetworkConfigurationInput
|
265
|
-
attr_accessor plugins_s3_object_version: ::String
|
266
264
|
attr_accessor plugins_s3_path: ::String
|
267
|
-
attr_accessor
|
265
|
+
attr_accessor plugins_s3_object_version: ::String
|
268
266
|
attr_accessor requirements_s3_path: ::String
|
269
|
-
attr_accessor
|
270
|
-
attr_accessor source_bucket_arn: ::String
|
271
|
-
attr_accessor startup_script_s3_object_version: ::String
|
267
|
+
attr_accessor requirements_s3_object_version: ::String
|
272
268
|
attr_accessor startup_script_s3_path: ::String
|
273
|
-
attr_accessor
|
269
|
+
attr_accessor startup_script_s3_object_version: ::String
|
270
|
+
attr_accessor airflow_configuration_options: ::Hash[::String, ::String]
|
271
|
+
attr_accessor environment_class: ::String
|
272
|
+
attr_accessor max_workers: ::Integer
|
273
|
+
attr_accessor network_configuration: Types::UpdateNetworkConfigurationInput
|
274
|
+
attr_accessor logging_configuration: Types::LoggingConfigurationInput
|
274
275
|
attr_accessor weekly_maintenance_window_start: ::String
|
276
|
+
attr_accessor webserver_access_mode: ("PRIVATE_ONLY" | "PUBLIC_ONLY")
|
277
|
+
attr_accessor min_workers: ::Integer
|
278
|
+
attr_accessor schedulers: ::Integer
|
279
|
+
attr_accessor min_webservers: ::Integer
|
280
|
+
attr_accessor max_webservers: ::Integer
|
275
281
|
SENSITIVE: [:airflow_configuration_options]
|
276
282
|
end
|
277
283
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-mwaa
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.38.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: 2024-05-
|
11
|
+
date: 2024-05-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|