aws-sdk-apprunner 1.35.0 → 1.36.0

Sign up to get free protection for your applications and to get access to all the features.
data/sig/types.rbs ADDED
@@ -0,0 +1,765 @@
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::AppRunner
9
+ module Types
10
+
11
+ class AssociateCustomDomainRequest
12
+ attr_accessor service_arn: ::String
13
+ attr_accessor domain_name: ::String
14
+ attr_accessor enable_www_subdomain: bool
15
+ SENSITIVE: []
16
+ end
17
+
18
+ class AssociateCustomDomainResponse
19
+ attr_accessor dns_target: ::String
20
+ attr_accessor service_arn: ::String
21
+ attr_accessor custom_domain: Types::CustomDomain
22
+ attr_accessor vpc_dns_targets: ::Array[Types::VpcDNSTarget]
23
+ SENSITIVE: []
24
+ end
25
+
26
+ class AuthenticationConfiguration
27
+ attr_accessor connection_arn: ::String
28
+ attr_accessor access_role_arn: ::String
29
+ SENSITIVE: []
30
+ end
31
+
32
+ class AutoScalingConfiguration
33
+ attr_accessor auto_scaling_configuration_arn: ::String
34
+ attr_accessor auto_scaling_configuration_name: ::String
35
+ attr_accessor auto_scaling_configuration_revision: ::Integer
36
+ attr_accessor latest: bool
37
+ attr_accessor status: ("ACTIVE" | "INACTIVE")
38
+ attr_accessor max_concurrency: ::Integer
39
+ attr_accessor min_size: ::Integer
40
+ attr_accessor max_size: ::Integer
41
+ attr_accessor created_at: ::Time
42
+ attr_accessor deleted_at: ::Time
43
+ attr_accessor has_associated_service: bool
44
+ attr_accessor is_default: bool
45
+ SENSITIVE: []
46
+ end
47
+
48
+ class AutoScalingConfigurationSummary
49
+ attr_accessor auto_scaling_configuration_arn: ::String
50
+ attr_accessor auto_scaling_configuration_name: ::String
51
+ attr_accessor auto_scaling_configuration_revision: ::Integer
52
+ attr_accessor status: ("ACTIVE" | "INACTIVE")
53
+ attr_accessor created_at: ::Time
54
+ attr_accessor has_associated_service: bool
55
+ attr_accessor is_default: bool
56
+ SENSITIVE: []
57
+ end
58
+
59
+ class CertificateValidationRecord
60
+ attr_accessor name: ::String
61
+ attr_accessor type: ::String
62
+ attr_accessor value: ::String
63
+ attr_accessor status: ("PENDING_VALIDATION" | "SUCCESS" | "FAILED")
64
+ SENSITIVE: []
65
+ end
66
+
67
+ class CodeConfiguration
68
+ attr_accessor configuration_source: ("REPOSITORY" | "API")
69
+ attr_accessor code_configuration_values: Types::CodeConfigurationValues
70
+ SENSITIVE: []
71
+ end
72
+
73
+ class CodeConfigurationValues
74
+ attr_accessor runtime: ("PYTHON_3" | "NODEJS_12" | "NODEJS_14" | "CORRETTO_8" | "CORRETTO_11" | "NODEJS_16" | "GO_1" | "DOTNET_6" | "PHP_81" | "RUBY_31" | "PYTHON_311" | "NODEJS_18")
75
+ attr_accessor build_command: ::String
76
+ attr_accessor start_command: ::String
77
+ attr_accessor port: ::String
78
+ attr_accessor runtime_environment_variables: ::Hash[::String, ::String]
79
+ attr_accessor runtime_environment_secrets: ::Hash[::String, ::String]
80
+ SENSITIVE: [:build_command, :start_command]
81
+ end
82
+
83
+ class CodeRepository
84
+ attr_accessor repository_url: ::String
85
+ attr_accessor source_code_version: Types::SourceCodeVersion
86
+ attr_accessor code_configuration: Types::CodeConfiguration
87
+ attr_accessor source_directory: ::String
88
+ SENSITIVE: []
89
+ end
90
+
91
+ class Connection
92
+ attr_accessor connection_name: ::String
93
+ attr_accessor connection_arn: ::String
94
+ attr_accessor provider_type: ("GITHUB" | "BITBUCKET")
95
+ attr_accessor status: ("PENDING_HANDSHAKE" | "AVAILABLE" | "ERROR" | "DELETED")
96
+ attr_accessor created_at: ::Time
97
+ SENSITIVE: []
98
+ end
99
+
100
+ class ConnectionSummary
101
+ attr_accessor connection_name: ::String
102
+ attr_accessor connection_arn: ::String
103
+ attr_accessor provider_type: ("GITHUB" | "BITBUCKET")
104
+ attr_accessor status: ("PENDING_HANDSHAKE" | "AVAILABLE" | "ERROR" | "DELETED")
105
+ attr_accessor created_at: ::Time
106
+ SENSITIVE: []
107
+ end
108
+
109
+ class CreateAutoScalingConfigurationRequest
110
+ attr_accessor auto_scaling_configuration_name: ::String
111
+ attr_accessor max_concurrency: ::Integer
112
+ attr_accessor min_size: ::Integer
113
+ attr_accessor max_size: ::Integer
114
+ attr_accessor tags: ::Array[Types::Tag]
115
+ SENSITIVE: []
116
+ end
117
+
118
+ class CreateAutoScalingConfigurationResponse
119
+ attr_accessor auto_scaling_configuration: Types::AutoScalingConfiguration
120
+ SENSITIVE: []
121
+ end
122
+
123
+ class CreateConnectionRequest
124
+ attr_accessor connection_name: ::String
125
+ attr_accessor provider_type: ("GITHUB" | "BITBUCKET")
126
+ attr_accessor tags: ::Array[Types::Tag]
127
+ SENSITIVE: []
128
+ end
129
+
130
+ class CreateConnectionResponse
131
+ attr_accessor connection: Types::Connection
132
+ SENSITIVE: []
133
+ end
134
+
135
+ class CreateObservabilityConfigurationRequest
136
+ attr_accessor observability_configuration_name: ::String
137
+ attr_accessor trace_configuration: Types::TraceConfiguration
138
+ attr_accessor tags: ::Array[Types::Tag]
139
+ SENSITIVE: []
140
+ end
141
+
142
+ class CreateObservabilityConfigurationResponse
143
+ attr_accessor observability_configuration: Types::ObservabilityConfiguration
144
+ SENSITIVE: []
145
+ end
146
+
147
+ class CreateServiceRequest
148
+ attr_accessor service_name: ::String
149
+ attr_accessor source_configuration: Types::SourceConfiguration
150
+ attr_accessor instance_configuration: Types::InstanceConfiguration
151
+ attr_accessor tags: ::Array[Types::Tag]
152
+ attr_accessor encryption_configuration: Types::EncryptionConfiguration
153
+ attr_accessor health_check_configuration: Types::HealthCheckConfiguration
154
+ attr_accessor auto_scaling_configuration_arn: ::String
155
+ attr_accessor network_configuration: Types::NetworkConfiguration
156
+ attr_accessor observability_configuration: Types::ServiceObservabilityConfiguration
157
+ SENSITIVE: []
158
+ end
159
+
160
+ class CreateServiceResponse
161
+ attr_accessor service: Types::Service
162
+ attr_accessor operation_id: ::String
163
+ SENSITIVE: []
164
+ end
165
+
166
+ class CreateVpcConnectorRequest
167
+ attr_accessor vpc_connector_name: ::String
168
+ attr_accessor subnets: ::Array[::String]
169
+ attr_accessor security_groups: ::Array[::String]
170
+ attr_accessor tags: ::Array[Types::Tag]
171
+ SENSITIVE: []
172
+ end
173
+
174
+ class CreateVpcConnectorResponse
175
+ attr_accessor vpc_connector: Types::VpcConnector
176
+ SENSITIVE: []
177
+ end
178
+
179
+ class CreateVpcIngressConnectionRequest
180
+ attr_accessor service_arn: ::String
181
+ attr_accessor vpc_ingress_connection_name: ::String
182
+ attr_accessor ingress_vpc_configuration: Types::IngressVpcConfiguration
183
+ attr_accessor tags: ::Array[Types::Tag]
184
+ SENSITIVE: []
185
+ end
186
+
187
+ class CreateVpcIngressConnectionResponse
188
+ attr_accessor vpc_ingress_connection: Types::VpcIngressConnection
189
+ SENSITIVE: []
190
+ end
191
+
192
+ class CustomDomain
193
+ attr_accessor domain_name: ::String
194
+ attr_accessor enable_www_subdomain: bool
195
+ attr_accessor certificate_validation_records: ::Array[Types::CertificateValidationRecord]
196
+ attr_accessor status: ("CREATING" | "CREATE_FAILED" | "ACTIVE" | "DELETING" | "DELETE_FAILED" | "PENDING_CERTIFICATE_DNS_VALIDATION" | "BINDING_CERTIFICATE")
197
+ SENSITIVE: []
198
+ end
199
+
200
+ class DeleteAutoScalingConfigurationRequest
201
+ attr_accessor auto_scaling_configuration_arn: ::String
202
+ attr_accessor delete_all_revisions: bool
203
+ SENSITIVE: []
204
+ end
205
+
206
+ class DeleteAutoScalingConfigurationResponse
207
+ attr_accessor auto_scaling_configuration: Types::AutoScalingConfiguration
208
+ SENSITIVE: []
209
+ end
210
+
211
+ class DeleteConnectionRequest
212
+ attr_accessor connection_arn: ::String
213
+ SENSITIVE: []
214
+ end
215
+
216
+ class DeleteConnectionResponse
217
+ attr_accessor connection: Types::Connection
218
+ SENSITIVE: []
219
+ end
220
+
221
+ class DeleteObservabilityConfigurationRequest
222
+ attr_accessor observability_configuration_arn: ::String
223
+ SENSITIVE: []
224
+ end
225
+
226
+ class DeleteObservabilityConfigurationResponse
227
+ attr_accessor observability_configuration: Types::ObservabilityConfiguration
228
+ SENSITIVE: []
229
+ end
230
+
231
+ class DeleteServiceRequest
232
+ attr_accessor service_arn: ::String
233
+ SENSITIVE: []
234
+ end
235
+
236
+ class DeleteServiceResponse
237
+ attr_accessor service: Types::Service
238
+ attr_accessor operation_id: ::String
239
+ SENSITIVE: []
240
+ end
241
+
242
+ class DeleteVpcConnectorRequest
243
+ attr_accessor vpc_connector_arn: ::String
244
+ SENSITIVE: []
245
+ end
246
+
247
+ class DeleteVpcConnectorResponse
248
+ attr_accessor vpc_connector: Types::VpcConnector
249
+ SENSITIVE: []
250
+ end
251
+
252
+ class DeleteVpcIngressConnectionRequest
253
+ attr_accessor vpc_ingress_connection_arn: ::String
254
+ SENSITIVE: []
255
+ end
256
+
257
+ class DeleteVpcIngressConnectionResponse
258
+ attr_accessor vpc_ingress_connection: Types::VpcIngressConnection
259
+ SENSITIVE: []
260
+ end
261
+
262
+ class DescribeAutoScalingConfigurationRequest
263
+ attr_accessor auto_scaling_configuration_arn: ::String
264
+ SENSITIVE: []
265
+ end
266
+
267
+ class DescribeAutoScalingConfigurationResponse
268
+ attr_accessor auto_scaling_configuration: Types::AutoScalingConfiguration
269
+ SENSITIVE: []
270
+ end
271
+
272
+ class DescribeCustomDomainsRequest
273
+ attr_accessor service_arn: ::String
274
+ attr_accessor next_token: ::String
275
+ attr_accessor max_results: ::Integer
276
+ SENSITIVE: []
277
+ end
278
+
279
+ class DescribeCustomDomainsResponse
280
+ attr_accessor dns_target: ::String
281
+ attr_accessor service_arn: ::String
282
+ attr_accessor custom_domains: ::Array[Types::CustomDomain]
283
+ attr_accessor vpc_dns_targets: ::Array[Types::VpcDNSTarget]
284
+ attr_accessor next_token: ::String
285
+ SENSITIVE: []
286
+ end
287
+
288
+ class DescribeObservabilityConfigurationRequest
289
+ attr_accessor observability_configuration_arn: ::String
290
+ SENSITIVE: []
291
+ end
292
+
293
+ class DescribeObservabilityConfigurationResponse
294
+ attr_accessor observability_configuration: Types::ObservabilityConfiguration
295
+ SENSITIVE: []
296
+ end
297
+
298
+ class DescribeServiceRequest
299
+ attr_accessor service_arn: ::String
300
+ SENSITIVE: []
301
+ end
302
+
303
+ class DescribeServiceResponse
304
+ attr_accessor service: Types::Service
305
+ SENSITIVE: []
306
+ end
307
+
308
+ class DescribeVpcConnectorRequest
309
+ attr_accessor vpc_connector_arn: ::String
310
+ SENSITIVE: []
311
+ end
312
+
313
+ class DescribeVpcConnectorResponse
314
+ attr_accessor vpc_connector: Types::VpcConnector
315
+ SENSITIVE: []
316
+ end
317
+
318
+ class DescribeVpcIngressConnectionRequest
319
+ attr_accessor vpc_ingress_connection_arn: ::String
320
+ SENSITIVE: []
321
+ end
322
+
323
+ class DescribeVpcIngressConnectionResponse
324
+ attr_accessor vpc_ingress_connection: Types::VpcIngressConnection
325
+ SENSITIVE: []
326
+ end
327
+
328
+ class DisassociateCustomDomainRequest
329
+ attr_accessor service_arn: ::String
330
+ attr_accessor domain_name: ::String
331
+ SENSITIVE: []
332
+ end
333
+
334
+ class DisassociateCustomDomainResponse
335
+ attr_accessor dns_target: ::String
336
+ attr_accessor service_arn: ::String
337
+ attr_accessor custom_domain: Types::CustomDomain
338
+ attr_accessor vpc_dns_targets: ::Array[Types::VpcDNSTarget]
339
+ SENSITIVE: []
340
+ end
341
+
342
+ class EgressConfiguration
343
+ attr_accessor egress_type: ("DEFAULT" | "VPC")
344
+ attr_accessor vpc_connector_arn: ::String
345
+ SENSITIVE: []
346
+ end
347
+
348
+ class EncryptionConfiguration
349
+ attr_accessor kms_key: ::String
350
+ SENSITIVE: []
351
+ end
352
+
353
+ class HealthCheckConfiguration
354
+ attr_accessor protocol: ("TCP" | "HTTP")
355
+ attr_accessor path: ::String
356
+ attr_accessor interval: ::Integer
357
+ attr_accessor timeout: ::Integer
358
+ attr_accessor healthy_threshold: ::Integer
359
+ attr_accessor unhealthy_threshold: ::Integer
360
+ SENSITIVE: []
361
+ end
362
+
363
+ class ImageConfiguration
364
+ attr_accessor runtime_environment_variables: ::Hash[::String, ::String]
365
+ attr_accessor start_command: ::String
366
+ attr_accessor port: ::String
367
+ attr_accessor runtime_environment_secrets: ::Hash[::String, ::String]
368
+ SENSITIVE: [:start_command]
369
+ end
370
+
371
+ class ImageRepository
372
+ attr_accessor image_identifier: ::String
373
+ attr_accessor image_configuration: Types::ImageConfiguration
374
+ attr_accessor image_repository_type: ("ECR" | "ECR_PUBLIC")
375
+ SENSITIVE: []
376
+ end
377
+
378
+ class IngressConfiguration
379
+ attr_accessor is_publicly_accessible: bool
380
+ SENSITIVE: []
381
+ end
382
+
383
+ class IngressVpcConfiguration
384
+ attr_accessor vpc_id: ::String
385
+ attr_accessor vpc_endpoint_id: ::String
386
+ SENSITIVE: []
387
+ end
388
+
389
+ class InstanceConfiguration
390
+ attr_accessor cpu: ::String
391
+ attr_accessor memory: ::String
392
+ attr_accessor instance_role_arn: ::String
393
+ SENSITIVE: []
394
+ end
395
+
396
+ class InternalServiceErrorException
397
+ attr_accessor message: ::String
398
+ SENSITIVE: []
399
+ end
400
+
401
+ class InvalidRequestException
402
+ attr_accessor message: ::String
403
+ SENSITIVE: []
404
+ end
405
+
406
+ class InvalidStateException
407
+ attr_accessor message: ::String
408
+ SENSITIVE: []
409
+ end
410
+
411
+ class ListAutoScalingConfigurationsRequest
412
+ attr_accessor auto_scaling_configuration_name: ::String
413
+ attr_accessor latest_only: bool
414
+ attr_accessor max_results: ::Integer
415
+ attr_accessor next_token: ::String
416
+ SENSITIVE: []
417
+ end
418
+
419
+ class ListAutoScalingConfigurationsResponse
420
+ attr_accessor auto_scaling_configuration_summary_list: ::Array[Types::AutoScalingConfigurationSummary]
421
+ attr_accessor next_token: ::String
422
+ SENSITIVE: []
423
+ end
424
+
425
+ class ListConnectionsRequest
426
+ attr_accessor connection_name: ::String
427
+ attr_accessor max_results: ::Integer
428
+ attr_accessor next_token: ::String
429
+ SENSITIVE: []
430
+ end
431
+
432
+ class ListConnectionsResponse
433
+ attr_accessor connection_summary_list: ::Array[Types::ConnectionSummary]
434
+ attr_accessor next_token: ::String
435
+ SENSITIVE: []
436
+ end
437
+
438
+ class ListObservabilityConfigurationsRequest
439
+ attr_accessor observability_configuration_name: ::String
440
+ attr_accessor latest_only: bool
441
+ attr_accessor max_results: ::Integer
442
+ attr_accessor next_token: ::String
443
+ SENSITIVE: []
444
+ end
445
+
446
+ class ListObservabilityConfigurationsResponse
447
+ attr_accessor observability_configuration_summary_list: ::Array[Types::ObservabilityConfigurationSummary]
448
+ attr_accessor next_token: ::String
449
+ SENSITIVE: []
450
+ end
451
+
452
+ class ListOperationsRequest
453
+ attr_accessor service_arn: ::String
454
+ attr_accessor next_token: ::String
455
+ attr_accessor max_results: ::Integer
456
+ SENSITIVE: []
457
+ end
458
+
459
+ class ListOperationsResponse
460
+ attr_accessor operation_summary_list: ::Array[Types::OperationSummary]
461
+ attr_accessor next_token: ::String
462
+ SENSITIVE: []
463
+ end
464
+
465
+ class ListServicesForAutoScalingConfigurationRequest
466
+ attr_accessor auto_scaling_configuration_arn: ::String
467
+ attr_accessor max_results: ::Integer
468
+ attr_accessor next_token: ::String
469
+ SENSITIVE: []
470
+ end
471
+
472
+ class ListServicesForAutoScalingConfigurationResponse
473
+ attr_accessor service_arn_list: ::Array[::String]
474
+ attr_accessor next_token: ::String
475
+ SENSITIVE: []
476
+ end
477
+
478
+ class ListServicesRequest
479
+ attr_accessor next_token: ::String
480
+ attr_accessor max_results: ::Integer
481
+ SENSITIVE: []
482
+ end
483
+
484
+ class ListServicesResponse
485
+ attr_accessor service_summary_list: ::Array[Types::ServiceSummary]
486
+ attr_accessor next_token: ::String
487
+ SENSITIVE: []
488
+ end
489
+
490
+ class ListTagsForResourceRequest
491
+ attr_accessor resource_arn: ::String
492
+ SENSITIVE: []
493
+ end
494
+
495
+ class ListTagsForResourceResponse
496
+ attr_accessor tags: ::Array[Types::Tag]
497
+ SENSITIVE: []
498
+ end
499
+
500
+ class ListVpcConnectorsRequest
501
+ attr_accessor max_results: ::Integer
502
+ attr_accessor next_token: ::String
503
+ SENSITIVE: []
504
+ end
505
+
506
+ class ListVpcConnectorsResponse
507
+ attr_accessor vpc_connectors: ::Array[Types::VpcConnector]
508
+ attr_accessor next_token: ::String
509
+ SENSITIVE: []
510
+ end
511
+
512
+ class ListVpcIngressConnectionsFilter
513
+ attr_accessor service_arn: ::String
514
+ attr_accessor vpc_endpoint_id: ::String
515
+ SENSITIVE: []
516
+ end
517
+
518
+ class ListVpcIngressConnectionsRequest
519
+ attr_accessor filter: Types::ListVpcIngressConnectionsFilter
520
+ attr_accessor max_results: ::Integer
521
+ attr_accessor next_token: ::String
522
+ SENSITIVE: []
523
+ end
524
+
525
+ class ListVpcIngressConnectionsResponse
526
+ attr_accessor vpc_ingress_connection_summary_list: ::Array[Types::VpcIngressConnectionSummary]
527
+ attr_accessor next_token: ::String
528
+ SENSITIVE: []
529
+ end
530
+
531
+ class NetworkConfiguration
532
+ attr_accessor egress_configuration: Types::EgressConfiguration
533
+ attr_accessor ingress_configuration: Types::IngressConfiguration
534
+ attr_accessor ip_address_type: ("IPV4" | "DUAL_STACK")
535
+ SENSITIVE: []
536
+ end
537
+
538
+ class ObservabilityConfiguration
539
+ attr_accessor observability_configuration_arn: ::String
540
+ attr_accessor observability_configuration_name: ::String
541
+ attr_accessor trace_configuration: Types::TraceConfiguration
542
+ attr_accessor observability_configuration_revision: ::Integer
543
+ attr_accessor latest: bool
544
+ attr_accessor status: ("ACTIVE" | "INACTIVE")
545
+ attr_accessor created_at: ::Time
546
+ attr_accessor deleted_at: ::Time
547
+ SENSITIVE: []
548
+ end
549
+
550
+ class ObservabilityConfigurationSummary
551
+ attr_accessor observability_configuration_arn: ::String
552
+ attr_accessor observability_configuration_name: ::String
553
+ attr_accessor observability_configuration_revision: ::Integer
554
+ SENSITIVE: []
555
+ end
556
+
557
+ class OperationSummary
558
+ attr_accessor id: ::String
559
+ attr_accessor type: ("START_DEPLOYMENT" | "CREATE_SERVICE" | "PAUSE_SERVICE" | "RESUME_SERVICE" | "DELETE_SERVICE" | "UPDATE_SERVICE")
560
+ attr_accessor status: ("PENDING" | "IN_PROGRESS" | "FAILED" | "SUCCEEDED" | "ROLLBACK_IN_PROGRESS" | "ROLLBACK_FAILED" | "ROLLBACK_SUCCEEDED")
561
+ attr_accessor target_arn: ::String
562
+ attr_accessor started_at: ::Time
563
+ attr_accessor ended_at: ::Time
564
+ attr_accessor updated_at: ::Time
565
+ SENSITIVE: []
566
+ end
567
+
568
+ class PauseServiceRequest
569
+ attr_accessor service_arn: ::String
570
+ SENSITIVE: []
571
+ end
572
+
573
+ class PauseServiceResponse
574
+ attr_accessor service: Types::Service
575
+ attr_accessor operation_id: ::String
576
+ SENSITIVE: []
577
+ end
578
+
579
+ class ResourceNotFoundException
580
+ attr_accessor message: ::String
581
+ SENSITIVE: []
582
+ end
583
+
584
+ class ResumeServiceRequest
585
+ attr_accessor service_arn: ::String
586
+ SENSITIVE: []
587
+ end
588
+
589
+ class ResumeServiceResponse
590
+ attr_accessor service: Types::Service
591
+ attr_accessor operation_id: ::String
592
+ SENSITIVE: []
593
+ end
594
+
595
+ class Service
596
+ attr_accessor service_name: ::String
597
+ attr_accessor service_id: ::String
598
+ attr_accessor service_arn: ::String
599
+ attr_accessor service_url: ::String
600
+ attr_accessor created_at: ::Time
601
+ attr_accessor updated_at: ::Time
602
+ attr_accessor deleted_at: ::Time
603
+ attr_accessor status: ("CREATE_FAILED" | "RUNNING" | "DELETED" | "DELETE_FAILED" | "PAUSED" | "OPERATION_IN_PROGRESS")
604
+ attr_accessor source_configuration: Types::SourceConfiguration
605
+ attr_accessor instance_configuration: Types::InstanceConfiguration
606
+ attr_accessor encryption_configuration: Types::EncryptionConfiguration
607
+ attr_accessor health_check_configuration: Types::HealthCheckConfiguration
608
+ attr_accessor auto_scaling_configuration_summary: Types::AutoScalingConfigurationSummary
609
+ attr_accessor network_configuration: Types::NetworkConfiguration
610
+ attr_accessor observability_configuration: Types::ServiceObservabilityConfiguration
611
+ SENSITIVE: []
612
+ end
613
+
614
+ class ServiceObservabilityConfiguration
615
+ attr_accessor observability_enabled: bool
616
+ attr_accessor observability_configuration_arn: ::String
617
+ SENSITIVE: []
618
+ end
619
+
620
+ class ServiceQuotaExceededException
621
+ attr_accessor message: ::String
622
+ SENSITIVE: []
623
+ end
624
+
625
+ class ServiceSummary
626
+ attr_accessor service_name: ::String
627
+ attr_accessor service_id: ::String
628
+ attr_accessor service_arn: ::String
629
+ attr_accessor service_url: ::String
630
+ attr_accessor created_at: ::Time
631
+ attr_accessor updated_at: ::Time
632
+ attr_accessor status: ("CREATE_FAILED" | "RUNNING" | "DELETED" | "DELETE_FAILED" | "PAUSED" | "OPERATION_IN_PROGRESS")
633
+ SENSITIVE: []
634
+ end
635
+
636
+ class SourceCodeVersion
637
+ attr_accessor type: ("BRANCH")
638
+ attr_accessor value: ::String
639
+ SENSITIVE: []
640
+ end
641
+
642
+ class SourceConfiguration
643
+ attr_accessor code_repository: Types::CodeRepository
644
+ attr_accessor image_repository: Types::ImageRepository
645
+ attr_accessor auto_deployments_enabled: bool
646
+ attr_accessor authentication_configuration: Types::AuthenticationConfiguration
647
+ SENSITIVE: []
648
+ end
649
+
650
+ class StartDeploymentRequest
651
+ attr_accessor service_arn: ::String
652
+ SENSITIVE: []
653
+ end
654
+
655
+ class StartDeploymentResponse
656
+ attr_accessor operation_id: ::String
657
+ SENSITIVE: []
658
+ end
659
+
660
+ class Tag
661
+ attr_accessor key: ::String
662
+ attr_accessor value: ::String
663
+ SENSITIVE: []
664
+ end
665
+
666
+ class TagResourceRequest
667
+ attr_accessor resource_arn: ::String
668
+ attr_accessor tags: ::Array[Types::Tag]
669
+ SENSITIVE: []
670
+ end
671
+
672
+ class TagResourceResponse < Aws::EmptyStructure
673
+ end
674
+
675
+ class TraceConfiguration
676
+ attr_accessor vendor: ("AWSXRAY")
677
+ SENSITIVE: []
678
+ end
679
+
680
+ class UntagResourceRequest
681
+ attr_accessor resource_arn: ::String
682
+ attr_accessor tag_keys: ::Array[::String]
683
+ SENSITIVE: []
684
+ end
685
+
686
+ class UntagResourceResponse < Aws::EmptyStructure
687
+ end
688
+
689
+ class UpdateDefaultAutoScalingConfigurationRequest
690
+ attr_accessor auto_scaling_configuration_arn: ::String
691
+ SENSITIVE: []
692
+ end
693
+
694
+ class UpdateDefaultAutoScalingConfigurationResponse
695
+ attr_accessor auto_scaling_configuration: Types::AutoScalingConfiguration
696
+ SENSITIVE: []
697
+ end
698
+
699
+ class UpdateServiceRequest
700
+ attr_accessor service_arn: ::String
701
+ attr_accessor source_configuration: Types::SourceConfiguration
702
+ attr_accessor instance_configuration: Types::InstanceConfiguration
703
+ attr_accessor auto_scaling_configuration_arn: ::String
704
+ attr_accessor health_check_configuration: Types::HealthCheckConfiguration
705
+ attr_accessor network_configuration: Types::NetworkConfiguration
706
+ attr_accessor observability_configuration: Types::ServiceObservabilityConfiguration
707
+ SENSITIVE: []
708
+ end
709
+
710
+ class UpdateServiceResponse
711
+ attr_accessor service: Types::Service
712
+ attr_accessor operation_id: ::String
713
+ SENSITIVE: []
714
+ end
715
+
716
+ class UpdateVpcIngressConnectionRequest
717
+ attr_accessor vpc_ingress_connection_arn: ::String
718
+ attr_accessor ingress_vpc_configuration: Types::IngressVpcConfiguration
719
+ SENSITIVE: []
720
+ end
721
+
722
+ class UpdateVpcIngressConnectionResponse
723
+ attr_accessor vpc_ingress_connection: Types::VpcIngressConnection
724
+ SENSITIVE: []
725
+ end
726
+
727
+ class VpcConnector
728
+ attr_accessor vpc_connector_name: ::String
729
+ attr_accessor vpc_connector_arn: ::String
730
+ attr_accessor vpc_connector_revision: ::Integer
731
+ attr_accessor subnets: ::Array[::String]
732
+ attr_accessor security_groups: ::Array[::String]
733
+ attr_accessor status: ("ACTIVE" | "INACTIVE")
734
+ attr_accessor created_at: ::Time
735
+ attr_accessor deleted_at: ::Time
736
+ SENSITIVE: []
737
+ end
738
+
739
+ class VpcDNSTarget
740
+ attr_accessor vpc_ingress_connection_arn: ::String
741
+ attr_accessor vpc_id: ::String
742
+ attr_accessor domain_name: ::String
743
+ SENSITIVE: []
744
+ end
745
+
746
+ class VpcIngressConnection
747
+ attr_accessor vpc_ingress_connection_arn: ::String
748
+ attr_accessor vpc_ingress_connection_name: ::String
749
+ attr_accessor service_arn: ::String
750
+ attr_accessor status: ("AVAILABLE" | "PENDING_CREATION" | "PENDING_UPDATE" | "PENDING_DELETION" | "FAILED_CREATION" | "FAILED_UPDATE" | "FAILED_DELETION" | "DELETED")
751
+ attr_accessor account_id: ::String
752
+ attr_accessor domain_name: ::String
753
+ attr_accessor ingress_vpc_configuration: Types::IngressVpcConfiguration
754
+ attr_accessor created_at: ::Time
755
+ attr_accessor deleted_at: ::Time
756
+ SENSITIVE: []
757
+ end
758
+
759
+ class VpcIngressConnectionSummary
760
+ attr_accessor vpc_ingress_connection_arn: ::String
761
+ attr_accessor service_arn: ::String
762
+ SENSITIVE: []
763
+ end
764
+ end
765
+ end