aws-sdk-apprunner 1.12.0 → 1.13.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e9797bfbe31f7e396efd3d7260bfcd43545a767a13d90365ddfdb3572b686c31
4
- data.tar.gz: b0a58accdbe01a62bc303fad6a624743a3cdb267e5300754348a3507bb75bd2f
3
+ metadata.gz: 12f035ff99eaa944ef28cbcf7244d5e82ab01b2ced97f81ed58f9cd8e15f5adb
4
+ data.tar.gz: b3a54819f71dd87e453b4e351a4727658ca218a3f3a5680e92ec78c0ab8a4fb0
5
5
  SHA512:
6
- metadata.gz: dd26aa567e4a1a89485c9ce1e9851cf03be9c92cbfb5ff1531f26f050bba4d1fe61635169a8c6e8442d081c3d8dc55c7d3a3c828a2d588a270882ee094dcef1e
7
- data.tar.gz: 9b0e239b8a3ba32fb4670d739e90111aa926f13839e07b6b93cef6be0adc455509a14494c74648207f2da082c9ff299c3db617ba886ee5be1d02df0fa614e2c3
6
+ metadata.gz: 263613e977138831b40d525305a765222918d28bd55925c740312be196450d9fb0389379d80aed985e70d05441e99e9bb2b0da0f2ddf19b1411ea54996efe640
7
+ data.tar.gz: '094a4209e422c8cd66045a2a4876068f6fa06d90e25c1768168a5ed33c79fa4cb8707e1560bd9d7eb0a4226345c8e9421f264d812bb8bef483696f6aba0fcb86'
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.13.0 (2022-04-11)
5
+ ------------------
6
+
7
+ * Feature - This release adds tracing for App Runner services with X-Ray using AWS Distro for OpenTelemetry. New APIs: CreateObservabilityConfiguration, DescribeObservabilityConfiguration, ListObservabilityConfigurations, and DeleteObservabilityConfiguration. Updated APIs: CreateService and UpdateService.
8
+
4
9
  1.12.0 (2022-02-24)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.12.0
1
+ 1.13.0
@@ -430,15 +430,17 @@ module Aws::AppRunner
430
430
  end
431
431
 
432
432
  # Create an App Runner automatic scaling configuration resource. App
433
- # Runner requires this resource when you create App Runner services that
434
- # require non-default auto scaling settings. You can share an auto
435
- # scaling configuration across multiple services.
433
+ # Runner requires this resource when you create or update App Runner
434
+ # services and you require non-default auto scaling settings. You can
435
+ # share an auto scaling configuration across multiple services.
436
436
  #
437
437
  # Create multiple revisions of a configuration by calling this action
438
438
  # multiple times using the same `AutoScalingConfigurationName`. The call
439
439
  # returns incremental `AutoScalingConfigurationRevision` values. When
440
- # you create a service, you can set it to use the latest active revision
441
- # of an auto scaling configuration or a specific revision.
440
+ # you create a service and configure an auto scaling configuration
441
+ # resource, the service uses the latest active revision of the auto
442
+ # scaling configuration by default. You can optionally configure the
443
+ # service to use a specific revision.
442
444
  #
443
445
  # Configure a higher `MinSize` to increase the spread of your App Runner
444
446
  # service over more Availability Zones in the Amazon Web Services
@@ -593,6 +595,90 @@ module Aws::AppRunner
593
595
  req.send_request(options)
594
596
  end
595
597
 
598
+ # Create an App Runner observability configuration resource. App Runner
599
+ # requires this resource when you create or update App Runner services
600
+ # and you want to enable non-default observability features. You can
601
+ # share an observability configuration across multiple services.
602
+ #
603
+ # Create multiple revisions of a configuration by calling this action
604
+ # multiple times using the same `ObservabilityConfigurationName`. The
605
+ # call returns incremental `ObservabilityConfigurationRevision` values.
606
+ # When you create a service and configure an observability configuration
607
+ # resource, the service uses the latest active revision of the
608
+ # observability configuration by default. You can optionally configure
609
+ # the service to use a specific revision.
610
+ #
611
+ # The observability configuration resource is designed to configure
612
+ # multiple features (currently one feature, tracing). This action takes
613
+ # optional parameters that describe the configuration of these features
614
+ # (currently one parameter, `TraceConfiguration`). If you don't specify
615
+ # a feature parameter, App Runner doesn't enable the feature.
616
+ #
617
+ # @option params [required, String] :observability_configuration_name
618
+ # A name for the observability configuration. When you use it for the
619
+ # first time in an Amazon Web Services Region, App Runner creates
620
+ # revision number `1` of this name. When you use the same name in
621
+ # subsequent calls, App Runner creates incremental revisions of the
622
+ # configuration.
623
+ #
624
+ # <note markdown="1"> The name `DefaultConfiguration` is reserved. You can't use it to
625
+ # create a new observability configuration, and you can't create a
626
+ # revision of it.
627
+ #
628
+ # When you want to use your own observability configuration for your App
629
+ # Runner service, *create a configuration with a different name*, and
630
+ # then provide it when you create or update your service.
631
+ #
632
+ # </note>
633
+ #
634
+ # @option params [Types::TraceConfiguration] :trace_configuration
635
+ # The configuration of the tracing feature within this observability
636
+ # configuration. If you don't specify it, App Runner doesn't enable
637
+ # tracing.
638
+ #
639
+ # @option params [Array<Types::Tag>] :tags
640
+ # A list of metadata items that you can associate with your
641
+ # observability configuration resource. A tag is a key-value pair.
642
+ #
643
+ # @return [Types::CreateObservabilityConfigurationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
644
+ #
645
+ # * {Types::CreateObservabilityConfigurationResponse#observability_configuration #observability_configuration} => Types::ObservabilityConfiguration
646
+ #
647
+ # @example Request syntax with placeholder values
648
+ #
649
+ # resp = client.create_observability_configuration({
650
+ # observability_configuration_name: "ObservabilityConfigurationName", # required
651
+ # trace_configuration: {
652
+ # vendor: "AWSXRAY", # required, accepts AWSXRAY
653
+ # },
654
+ # tags: [
655
+ # {
656
+ # key: "TagKey",
657
+ # value: "TagValue",
658
+ # },
659
+ # ],
660
+ # })
661
+ #
662
+ # @example Response structure
663
+ #
664
+ # resp.observability_configuration.observability_configuration_arn #=> String
665
+ # resp.observability_configuration.observability_configuration_name #=> String
666
+ # resp.observability_configuration.trace_configuration.vendor #=> String, one of "AWSXRAY"
667
+ # resp.observability_configuration.observability_configuration_revision #=> Integer
668
+ # resp.observability_configuration.latest #=> Boolean
669
+ # resp.observability_configuration.status #=> String, one of "ACTIVE", "INACTIVE"
670
+ # resp.observability_configuration.created_at #=> Time
671
+ # resp.observability_configuration.deleted_at #=> Time
672
+ #
673
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/CreateObservabilityConfiguration AWS API Documentation
674
+ #
675
+ # @overload create_observability_configuration(params = {})
676
+ # @param [Hash] params ({})
677
+ def create_observability_configuration(params = {}, options = {})
678
+ req = build_request(:create_observability_configuration, params)
679
+ req.send_request(options)
680
+ end
681
+
596
682
  # Create an App Runner service. After the service is created, the action
597
683
  # also automatically starts a deployment.
598
684
  #
@@ -614,8 +700,8 @@ module Aws::AppRunner
614
700
  # image repository.
615
701
  #
616
702
  # @option params [Types::InstanceConfiguration] :instance_configuration
617
- # The runtime configuration of instances (scaling units) of the App
618
- # Runner service.
703
+ # The runtime configuration of instances (scaling units) of your
704
+ # service.
619
705
  #
620
706
  # @option params [Array<Types::Tag>] :tags
621
707
  # An optional list of metadata items that you can associate with the App
@@ -632,14 +718,24 @@ module Aws::AppRunner
632
718
  #
633
719
  # @option params [String] :auto_scaling_configuration_arn
634
720
  # The Amazon Resource Name (ARN) of an App Runner automatic scaling
635
- # configuration resource that you want to associate with the App Runner
636
- # service. If not provided, App Runner associates the latest revision of
637
- # a default auto scaling configuration.
721
+ # configuration resource that you want to associate with your service.
722
+ # If not provided, App Runner associates the latest revision of a
723
+ # default auto scaling configuration.
724
+ #
725
+ # Specify an ARN with a name and a revision number to associate that
726
+ # revision. For example:
727
+ # `arn:aws:apprunner:us-east-1:123456789012:autoscalingconfiguration/high-availability/3`
728
+ #
729
+ # Specify just the name to associate the latest revision. For example:
730
+ # `arn:aws:apprunner:us-east-1:123456789012:autoscalingconfiguration/high-availability`
638
731
  #
639
732
  # @option params [Types::NetworkConfiguration] :network_configuration
640
733
  # Configuration settings related to network traffic of the web
641
734
  # application that the App Runner service runs.
642
735
  #
736
+ # @option params [Types::ServiceObservabilityConfiguration] :observability_configuration
737
+ # The observability configuration of your service.
738
+ #
643
739
  # @return [Types::CreateServiceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
644
740
  #
645
741
  # * {Types::CreateServiceResponse#service #service} => Types::Service
@@ -715,6 +811,10 @@ module Aws::AppRunner
715
811
  # vpc_connector_arn: "AppRunnerResourceArn",
716
812
  # },
717
813
  # },
814
+ # observability_configuration: {
815
+ # observability_enabled: false, # required
816
+ # observability_configuration_arn: "AppRunnerResourceArn",
817
+ # },
718
818
  # })
719
819
  #
720
820
  # @example Response structure
@@ -761,6 +861,8 @@ module Aws::AppRunner
761
861
  # resp.service.auto_scaling_configuration_summary.auto_scaling_configuration_revision #=> Integer
762
862
  # resp.service.network_configuration.egress_configuration.egress_type #=> String, one of "DEFAULT", "VPC"
763
863
  # resp.service.network_configuration.egress_configuration.vpc_connector_arn #=> String
864
+ # resp.service.observability_configuration.observability_enabled #=> Boolean
865
+ # resp.service.observability_configuration.observability_configuration_arn #=> String
764
866
  # resp.operation_id #=> String
765
867
  #
766
868
  # @see http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/CreateService AWS API Documentation
@@ -915,6 +1017,49 @@ module Aws::AppRunner
915
1017
  req.send_request(options)
916
1018
  end
917
1019
 
1020
+ # Delete an App Runner observability configuration resource. You can
1021
+ # delete a specific revision or the latest active revision. You can't
1022
+ # delete a configuration that's used by one or more App Runner
1023
+ # services.
1024
+ #
1025
+ # @option params [required, String] :observability_configuration_arn
1026
+ # The Amazon Resource Name (ARN) of the App Runner observability
1027
+ # configuration that you want to delete.
1028
+ #
1029
+ # The ARN can be a full observability configuration ARN, or a partial
1030
+ # ARN ending with either `.../name ` or `.../name/revision `. If a
1031
+ # revision isn't specified, the latest active revision is deleted.
1032
+ #
1033
+ # @return [Types::DeleteObservabilityConfigurationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1034
+ #
1035
+ # * {Types::DeleteObservabilityConfigurationResponse#observability_configuration #observability_configuration} => Types::ObservabilityConfiguration
1036
+ #
1037
+ # @example Request syntax with placeholder values
1038
+ #
1039
+ # resp = client.delete_observability_configuration({
1040
+ # observability_configuration_arn: "AppRunnerResourceArn", # required
1041
+ # })
1042
+ #
1043
+ # @example Response structure
1044
+ #
1045
+ # resp.observability_configuration.observability_configuration_arn #=> String
1046
+ # resp.observability_configuration.observability_configuration_name #=> String
1047
+ # resp.observability_configuration.trace_configuration.vendor #=> String, one of "AWSXRAY"
1048
+ # resp.observability_configuration.observability_configuration_revision #=> Integer
1049
+ # resp.observability_configuration.latest #=> Boolean
1050
+ # resp.observability_configuration.status #=> String, one of "ACTIVE", "INACTIVE"
1051
+ # resp.observability_configuration.created_at #=> Time
1052
+ # resp.observability_configuration.deleted_at #=> Time
1053
+ #
1054
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/DeleteObservabilityConfiguration AWS API Documentation
1055
+ #
1056
+ # @overload delete_observability_configuration(params = {})
1057
+ # @param [Hash] params ({})
1058
+ def delete_observability_configuration(params = {}, options = {})
1059
+ req = build_request(:delete_observability_configuration, params)
1060
+ req.send_request(options)
1061
+ end
1062
+
918
1063
  # Delete an App Runner service.
919
1064
  #
920
1065
  # This is an asynchronous operation. On a successful call, you can use
@@ -980,6 +1125,8 @@ module Aws::AppRunner
980
1125
  # resp.service.auto_scaling_configuration_summary.auto_scaling_configuration_revision #=> Integer
981
1126
  # resp.service.network_configuration.egress_configuration.egress_type #=> String, one of "DEFAULT", "VPC"
982
1127
  # resp.service.network_configuration.egress_configuration.vpc_connector_arn #=> String
1128
+ # resp.service.observability_configuration.observability_enabled #=> Boolean
1129
+ # resp.service.observability_configuration.observability_configuration_arn #=> String
983
1130
  # resp.operation_id #=> String
984
1131
  #
985
1132
  # @see http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/DeleteService AWS API Documentation
@@ -1139,6 +1286,47 @@ module Aws::AppRunner
1139
1286
  req.send_request(options)
1140
1287
  end
1141
1288
 
1289
+ # Return a full description of an App Runner observability configuration
1290
+ # resource.
1291
+ #
1292
+ # @option params [required, String] :observability_configuration_arn
1293
+ # The Amazon Resource Name (ARN) of the App Runner observability
1294
+ # configuration that you want a description for.
1295
+ #
1296
+ # The ARN can be a full observability configuration ARN, or a partial
1297
+ # ARN ending with either `.../name ` or `.../name/revision `. If a
1298
+ # revision isn't specified, the latest active revision is described.
1299
+ #
1300
+ # @return [Types::DescribeObservabilityConfigurationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1301
+ #
1302
+ # * {Types::DescribeObservabilityConfigurationResponse#observability_configuration #observability_configuration} => Types::ObservabilityConfiguration
1303
+ #
1304
+ # @example Request syntax with placeholder values
1305
+ #
1306
+ # resp = client.describe_observability_configuration({
1307
+ # observability_configuration_arn: "AppRunnerResourceArn", # required
1308
+ # })
1309
+ #
1310
+ # @example Response structure
1311
+ #
1312
+ # resp.observability_configuration.observability_configuration_arn #=> String
1313
+ # resp.observability_configuration.observability_configuration_name #=> String
1314
+ # resp.observability_configuration.trace_configuration.vendor #=> String, one of "AWSXRAY"
1315
+ # resp.observability_configuration.observability_configuration_revision #=> Integer
1316
+ # resp.observability_configuration.latest #=> Boolean
1317
+ # resp.observability_configuration.status #=> String, one of "ACTIVE", "INACTIVE"
1318
+ # resp.observability_configuration.created_at #=> Time
1319
+ # resp.observability_configuration.deleted_at #=> Time
1320
+ #
1321
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/DescribeObservabilityConfiguration AWS API Documentation
1322
+ #
1323
+ # @overload describe_observability_configuration(params = {})
1324
+ # @param [Hash] params ({})
1325
+ def describe_observability_configuration(params = {}, options = {})
1326
+ req = build_request(:describe_observability_configuration, params)
1327
+ req.send_request(options)
1328
+ end
1329
+
1142
1330
  # Return a full description of an App Runner service.
1143
1331
  #
1144
1332
  # @option params [required, String] :service_arn
@@ -1199,6 +1387,8 @@ module Aws::AppRunner
1199
1387
  # resp.service.auto_scaling_configuration_summary.auto_scaling_configuration_revision #=> Integer
1200
1388
  # resp.service.network_configuration.egress_configuration.egress_type #=> String, one of "DEFAULT", "VPC"
1201
1389
  # resp.service.network_configuration.egress_configuration.vpc_connector_arn #=> String
1390
+ # resp.service.observability_configuration.observability_enabled #=> Boolean
1391
+ # resp.service.observability_configuration.observability_configuration_arn #=> String
1202
1392
  #
1203
1393
  # @see http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/DescribeService AWS API Documentation
1204
1394
  #
@@ -1304,25 +1494,30 @@ module Aws::AppRunner
1304
1494
  req.send_request(options)
1305
1495
  end
1306
1496
 
1307
- # Returns a list of App Runner automatic scaling configurations in your
1308
- # Amazon Web Services account. You can query the revisions for a
1309
- # specific configuration name or the revisions for all configurations in
1310
- # your account. You can optionally query only the latest revision of
1311
- # each requested name.
1497
+ # Returns a list of active App Runner automatic scaling configurations
1498
+ # in your Amazon Web Services account. You can query the revisions for a
1499
+ # specific configuration name or the revisions for all active
1500
+ # configurations in your account. You can optionally query only the
1501
+ # latest revision of each requested name.
1502
+ #
1503
+ # To retrieve a full description of a particular configuration revision,
1504
+ # call and provide one of the ARNs returned by
1505
+ # `ListAutoScalingConfigurations`.
1312
1506
  #
1313
1507
  # @option params [String] :auto_scaling_configuration_name
1314
1508
  # The name of the App Runner auto scaling configuration that you want to
1315
1509
  # list. If specified, App Runner lists revisions that share this name.
1316
- # If not specified, App Runner returns revisions of all configurations.
1510
+ # If not specified, App Runner returns revisions of all active
1511
+ # configurations.
1317
1512
  #
1318
1513
  # @option params [Boolean] :latest_only
1319
1514
  # Set to `true` to list only the latest revision for each requested
1320
1515
  # configuration name.
1321
1516
  #
1322
- # Keep as `false` to list all revisions for each requested configuration
1517
+ # Set to `false` to list all revisions for each requested configuration
1323
1518
  # name.
1324
1519
  #
1325
- # Default: `false`
1520
+ # Default: `true`
1326
1521
  #
1327
1522
  # @option params [Integer] :max_results
1328
1523
  # The maximum number of results to include in each response (result
@@ -1429,6 +1624,80 @@ module Aws::AppRunner
1429
1624
  req.send_request(options)
1430
1625
  end
1431
1626
 
1627
+ # Returns a list of active App Runner observability configurations in
1628
+ # your Amazon Web Services account. You can query the revisions for a
1629
+ # specific configuration name or the revisions for all active
1630
+ # configurations in your account. You can optionally query only the
1631
+ # latest revision of each requested name.
1632
+ #
1633
+ # To retrieve a full description of a particular configuration revision,
1634
+ # call and provide one of the ARNs returned by
1635
+ # `ListObservabilityConfigurations`.
1636
+ #
1637
+ # @option params [String] :observability_configuration_name
1638
+ # The name of the App Runner observability configuration that you want
1639
+ # to list. If specified, App Runner lists revisions that share this
1640
+ # name. If not specified, App Runner returns revisions of all active
1641
+ # configurations.
1642
+ #
1643
+ # @option params [Boolean] :latest_only
1644
+ # Set to `true` to list only the latest revision for each requested
1645
+ # configuration name.
1646
+ #
1647
+ # Set to `false` to list all revisions for each requested configuration
1648
+ # name.
1649
+ #
1650
+ # Default: `true`
1651
+ #
1652
+ # @option params [Integer] :max_results
1653
+ # The maximum number of results to include in each response (result
1654
+ # page). It's used for a paginated request.
1655
+ #
1656
+ # If you don't specify `MaxResults`, the request retrieves all
1657
+ # available results in a single response.
1658
+ #
1659
+ # @option params [String] :next_token
1660
+ # A token from a previous result page. It's used for a paginated
1661
+ # request. The request retrieves the next result page. All other
1662
+ # parameter values must be identical to the ones that are specified in
1663
+ # the initial request.
1664
+ #
1665
+ # If you don't specify `NextToken`, the request retrieves the first
1666
+ # result page.
1667
+ #
1668
+ # @return [Types::ListObservabilityConfigurationsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1669
+ #
1670
+ # * {Types::ListObservabilityConfigurationsResponse#observability_configuration_summary_list #observability_configuration_summary_list} => Array&lt;Types::ObservabilityConfigurationSummary&gt;
1671
+ # * {Types::ListObservabilityConfigurationsResponse#next_token #next_token} => String
1672
+ #
1673
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1674
+ #
1675
+ # @example Request syntax with placeholder values
1676
+ #
1677
+ # resp = client.list_observability_configurations({
1678
+ # observability_configuration_name: "ObservabilityConfigurationName",
1679
+ # latest_only: false,
1680
+ # max_results: 1,
1681
+ # next_token: "NextToken",
1682
+ # })
1683
+ #
1684
+ # @example Response structure
1685
+ #
1686
+ # resp.observability_configuration_summary_list #=> Array
1687
+ # resp.observability_configuration_summary_list[0].observability_configuration_arn #=> String
1688
+ # resp.observability_configuration_summary_list[0].observability_configuration_name #=> String
1689
+ # resp.observability_configuration_summary_list[0].observability_configuration_revision #=> Integer
1690
+ # resp.next_token #=> String
1691
+ #
1692
+ # @see http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/ListObservabilityConfigurations AWS API Documentation
1693
+ #
1694
+ # @overload list_observability_configurations(params = {})
1695
+ # @param [Hash] params ({})
1696
+ def list_observability_configurations(params = {}, options = {})
1697
+ req = build_request(:list_observability_configurations, params)
1698
+ req.send_request(options)
1699
+ end
1700
+
1432
1701
  # Return a list of operations that occurred on an App Runner service.
1433
1702
  #
1434
1703
  # The resulting list of OperationSummary objects is sorted in reverse
@@ -1702,6 +1971,8 @@ module Aws::AppRunner
1702
1971
  # resp.service.auto_scaling_configuration_summary.auto_scaling_configuration_revision #=> Integer
1703
1972
  # resp.service.network_configuration.egress_configuration.egress_type #=> String, one of "DEFAULT", "VPC"
1704
1973
  # resp.service.network_configuration.egress_configuration.vpc_connector_arn #=> String
1974
+ # resp.service.observability_configuration.observability_enabled #=> Boolean
1975
+ # resp.service.observability_configuration.observability_configuration_arn #=> String
1705
1976
  # resp.operation_id #=> String
1706
1977
  #
1707
1978
  # @see http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/PauseService AWS API Documentation
@@ -1779,6 +2050,8 @@ module Aws::AppRunner
1779
2050
  # resp.service.auto_scaling_configuration_summary.auto_scaling_configuration_revision #=> Integer
1780
2051
  # resp.service.network_configuration.egress_configuration.egress_type #=> String, one of "DEFAULT", "VPC"
1781
2052
  # resp.service.network_configuration.egress_configuration.vpc_connector_arn #=> String
2053
+ # resp.service.observability_configuration.observability_enabled #=> Boolean
2054
+ # resp.service.observability_configuration.observability_configuration_arn #=> String
1782
2055
  # resp.operation_id #=> String
1783
2056
  #
1784
2057
  # @see http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/ResumeService AWS API Documentation
@@ -1928,8 +2201,8 @@ module Aws::AppRunner
1928
2201
  # include.
1929
2202
  #
1930
2203
  # @option params [Types::InstanceConfiguration] :instance_configuration
1931
- # The runtime configuration to apply to instances (scaling units) of the
1932
- # App Runner service.
2204
+ # The runtime configuration to apply to instances (scaling units) of
2205
+ # your service.
1933
2206
  #
1934
2207
  # @option params [String] :auto_scaling_configuration_arn
1935
2208
  # The Amazon Resource Name (ARN) of an App Runner automatic scaling
@@ -1944,6 +2217,9 @@ module Aws::AppRunner
1944
2217
  # Configuration settings related to network traffic of the web
1945
2218
  # application that the App Runner service runs.
1946
2219
  #
2220
+ # @option params [Types::ServiceObservabilityConfiguration] :observability_configuration
2221
+ # The observability configuration of your service.
2222
+ #
1947
2223
  # @return [Types::UpdateServiceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1948
2224
  #
1949
2225
  # * {Types::UpdateServiceResponse#service #service} => Types::Service
@@ -2010,6 +2286,10 @@ module Aws::AppRunner
2010
2286
  # vpc_connector_arn: "AppRunnerResourceArn",
2011
2287
  # },
2012
2288
  # },
2289
+ # observability_configuration: {
2290
+ # observability_enabled: false, # required
2291
+ # observability_configuration_arn: "AppRunnerResourceArn",
2292
+ # },
2013
2293
  # })
2014
2294
  #
2015
2295
  # @example Response structure
@@ -2056,6 +2336,8 @@ module Aws::AppRunner
2056
2336
  # resp.service.auto_scaling_configuration_summary.auto_scaling_configuration_revision #=> Integer
2057
2337
  # resp.service.network_configuration.egress_configuration.egress_type #=> String, one of "DEFAULT", "VPC"
2058
2338
  # resp.service.network_configuration.egress_configuration.vpc_connector_arn #=> String
2339
+ # resp.service.observability_configuration.observability_enabled #=> Boolean
2340
+ # resp.service.observability_configuration.observability_configuration_arn #=> String
2059
2341
  # resp.operation_id #=> String
2060
2342
  #
2061
2343
  # @see http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/UpdateService AWS API Documentation
@@ -2080,7 +2362,7 @@ module Aws::AppRunner
2080
2362
  params: params,
2081
2363
  config: config)
2082
2364
  context[:gem_name] = 'aws-sdk-apprunner'
2083
- context[:gem_version] = '1.12.0'
2365
+ context[:gem_version] = '1.13.0'
2084
2366
  Seahorse::Client::Request.new(handlers, context)
2085
2367
  end
2086
2368