aws-sdk-opsworkscm 1.84.0 → 1.86.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: 990a5b385068fa54aa33a91866ae5febe6ff49d66d70bb5c7228c9468dd63a8d
4
- data.tar.gz: 3cb95d1d3056c65f0f23856d8ae6219effe2d2e52295a61aee99dd8ad4d55ccb
3
+ metadata.gz: aa279be4828ab9893180b82b7ffe0b05d793aba80a2722bc6883d53d93484921
4
+ data.tar.gz: ed4db16cac6d8e73d98058205ca7cdd4ffe3ff8ab6e734d247bba7c7296c5639
5
5
  SHA512:
6
- metadata.gz: 89a4a87d849baf317d2603799c9d41d4674cd0746b5ef48b35e4b808d2609d15d092f08ad746c9fe1d22501f364fafd538c167d2bb2d5521010220e6e92b92e8
7
- data.tar.gz: 2c7154739cf76cfec61607bb6bd11227c49da1d4c347a486e54e19f11000db49505e9098eeba009713c32179cafed4e60695747019a8190ee5a96905e469e131
6
+ metadata.gz: 25388e0d55d6b2d1b2cd8ffa259532e2ebb51564036b3305d809b031a26aab24a0050ebec6010f9afae772bea19e39b4119e0939a46877a6e05538a1e6be9944
7
+ data.tar.gz: 2f30a5bd353efc8515ae5d0c876ad14a02f69a97d863325b8ce2268a04d269ab833ce90747ba34d917353c7c362737da40339d7ba41e8f96ac0c83eb408fc3ed
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.86.0 (2025-07-21)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.85.0 (2025-07-09)
10
+ ------------------
11
+
12
+ * Feature - Removing content that refers to an S3 bucket that is no longer in use.
13
+
4
14
  1.84.0 (2025-06-02)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.84.0
1
+ 1.86.0
@@ -95,7 +95,7 @@ module Aws::OpsWorksCM
95
95
  # class name or an instance of a plugin class.
96
96
  #
97
97
  # @option options [required, Aws::CredentialProvider] :credentials
98
- # Your AWS credentials. This can be an instance of any one of the
98
+ # Your AWS credentials used for authentication. This can be an instance of any one of the
99
99
  # following classes:
100
100
  #
101
101
  # * `Aws::Credentials` - Used for configuring static, non-refreshing
@@ -128,18 +128,23 @@ module Aws::OpsWorksCM
128
128
  # locations will be searched for credentials:
129
129
  #
130
130
  # * `Aws.config[:credentials]`
131
+ #
131
132
  # * The `:access_key_id`, `:secret_access_key`, `:session_token`, and
132
133
  # `:account_id` options.
133
- # * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY'],
134
- # ENV['AWS_SESSION_TOKEN'], and ENV['AWS_ACCOUNT_ID']
134
+ #
135
+ # * `ENV['AWS_ACCESS_KEY_ID']`, `ENV['AWS_SECRET_ACCESS_KEY']`,
136
+ # `ENV['AWS_SESSION_TOKEN']`, and `ENV['AWS_ACCOUNT_ID']`.
137
+ #
135
138
  # * `~/.aws/credentials`
139
+ #
136
140
  # * `~/.aws/config`
141
+ #
137
142
  # * EC2/ECS IMDS instance profile - When used by default, the timeouts
138
143
  # are very aggressive. Construct and pass an instance of
139
144
  # `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
140
145
  # enable retries and extended timeouts. Instance profile credential
141
- # fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
142
- # to true.
146
+ # fetching can be disabled by setting `ENV['AWS_EC2_METADATA_DISABLED']`
147
+ # to `true`.
143
148
  #
144
149
  # @option options [required, String] :region
145
150
  # The AWS region to connect to. The configured `:region` is
@@ -167,6 +172,11 @@ module Aws::OpsWorksCM
167
172
  # When false, the request will raise a `RetryCapacityNotAvailableError` and will
168
173
  # not retry instead of sleeping.
169
174
  #
175
+ # @option options [Array<String>] :auth_scheme_preference
176
+ # A list of preferred authentication schemes to use when making a request. Supported values are:
177
+ # `sigv4`, `sigv4a`, `httpBearerAuth`, and `noAuth`. When set using `ENV['AWS_AUTH_SCHEME_PREFERENCE']` or in
178
+ # shared config as `auth_scheme_preference`, the value should be a comma-separated list.
179
+ #
170
180
  # @option options [Boolean] :client_side_monitoring (false)
171
181
  # When `true`, client-side metrics will be collected for all API requests from
172
182
  # this client.
@@ -253,8 +263,8 @@ module Aws::OpsWorksCM
253
263
  # 4 times. Used in `standard` and `adaptive` retry modes.
254
264
  #
255
265
  # @option options [String] :profile ("default")
256
- # Used when loading credentials from the shared credentials file
257
- # at HOME/.aws/credentials. When not specified, 'default' is used.
266
+ # Used when loading credentials from the shared credentials file at `HOME/.aws/credentials`.
267
+ # When not specified, 'default' is used.
258
268
  #
259
269
  # @option options [String] :request_checksum_calculation ("when_supported")
260
270
  # Determines when a checksum will be calculated for request payloads. Values are:
@@ -374,7 +384,7 @@ module Aws::OpsWorksCM
374
384
  # `Aws::Telemetry::OTelProvider` for telemetry provider.
375
385
  #
376
386
  # @option options [Aws::TokenProvider] :token_provider
377
- # A Bearer Token Provider. This can be an instance of any one of the
387
+ # Your Bearer token used for authentication. This can be an instance of any one of the
378
388
  # following classes:
379
389
  #
380
390
  # * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
@@ -484,7 +494,7 @@ module Aws::OpsWorksCM
484
494
  # Example (Chef): `aws opsworks-cm associate-node --server-name MyServer
485
495
  # --node-name MyManagedNode --engine-attributes
486
496
  # "Name=CHEF_ORGANIZATION,Value=default"
487
- # "Name=CHEF_NODE_PUBLIC_KEY,Value=public-key-pem"`
497
+ # "Name=CHEF_AUTOMATE_NODE_PUBLIC_KEY,Value=public-key-pem"`
488
498
  #
489
499
  # On a Puppet server, this command is an alternative to the `puppet cert
490
500
  # sign` command that signs a Puppet node CSR.
@@ -498,8 +508,8 @@ module Aws::OpsWorksCM
498
508
  # `ResourceNotFoundException` is thrown when the server does not exist.
499
509
  # A `ValidationException` is raised when parameters of the request are
500
510
  # not valid. The AssociateNode API call can be integrated into Auto
501
- # Scaling configurations, AWS Cloudformation templates, or the user data
502
- # of a server's instance.
511
+ # Scaling configurations, CloudFormation templates, or the user data of
512
+ # a server's instance.
503
513
  #
504
514
  # @option params [required, String] :server_name
505
515
  # The name of the server with which to associate the node.
@@ -516,8 +526,8 @@ module Aws::OpsWorksCM
516
526
  # associated. By default only one organization named `default` can
517
527
  # exist.
518
528
  #
519
- # * `CHEF_NODE_PUBLIC_KEY`: A PEM-formatted public key. This key is
520
- # required for the `chef-client` agent to access the Chef API.
529
+ # * `CHEF_AUTOMATE_NODE_PUBLIC_KEY`: A PEM-formatted public key. This
530
+ # key is required for the `chef-client` agent to access the Chef API.
521
531
  #
522
532
  # **Attributes accepted in a AssociateNode request for Puppet**
523
533
  #
@@ -580,8 +590,8 @@ module Aws::OpsWorksCM
580
590
  # A user-defined description of the backup.
581
591
  #
582
592
  # @option params [Array<Types::Tag>] :tags
583
- # A map that contains tag keys and tag values to attach to an AWS
584
- # OpsWorks-CM server backup.
593
+ # A map that contains tag keys and tag values to attach to an OpsWorks
594
+ # CM server backup.
585
595
  #
586
596
  # * The key cannot be empty.
587
597
  #
@@ -596,8 +606,8 @@ module Aws::OpsWorksCM
596
606
  # * Leading and trailing white spaces are trimmed from both the key and
597
607
  # value.
598
608
  #
599
- # * A maximum of 50 user-applied tags is allowed for tag-supported AWS
600
- # OpsWorks-CM resources.
609
+ # * A maximum of 50 user-applied tags is allowed for tag-supported
610
+ # OpsWorks CM resources.
601
611
  #
602
612
  # @return [Types::CreateBackupResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
603
613
  #
@@ -669,15 +679,14 @@ module Aws::OpsWorksCM
669
679
  # valid.
670
680
  #
671
681
  # If you do not specify a security group by adding the
672
- # `SecurityGroupIds` parameter, AWS OpsWorks creates a new security
673
- # group.
682
+ # `SecurityGroupIds` parameter, OpsWorks creates a new security group.
674
683
  #
675
684
  # *Chef Automate:* The default security group opens the Chef server to
676
- # the world on TCP port 443. If a KeyName is present, AWS OpsWorks
677
- # enables SSH access. SSH is also open to the world on TCP port 22.
685
+ # the world on TCP port 443. If a KeyName is present, OpsWorks enables
686
+ # SSH access. SSH is also open to the world on TCP port 22.
678
687
  #
679
688
  # *Puppet Enterprise:* The default security group opens TCP ports 22,
680
- # 443, 4433, 8140, 8142, 8143, and 8170. If a KeyName is present, AWS
689
+ # 443, 4433, 8140, 8142, 8143, and 8170. If a KeyName is present,
681
690
  # OpsWorks enables SSH access. SSH is also open to the world on TCP port
682
691
  # 22.
683
692
  #
@@ -786,23 +795,18 @@ module Aws::OpsWorksCM
786
795
  #
787
796
  # @option params [Integer] :backup_retention_count
788
797
  # The number of automated backups that you want to keep. Whenever a new
789
- # backup is created, AWS OpsWorks CM deletes the oldest backups if this
798
+ # backup is created, OpsWorks CM deletes the oldest backups if this
790
799
  # number is exceeded. The default value is `1`.
791
800
  #
792
801
  # @option params [required, String] :server_name
793
- # The name of the server. The server name must be unique within your AWS
794
- # account, within each region. Server names must start with a letter;
795
- # then letters, numbers, or hyphens (-) are allowed, up to a maximum of
796
- # 40 characters.
802
+ # The name of the server. The server name must be unique within your
803
+ # Amazon Web Services account, within each region. Server names must
804
+ # start with a letter; then letters, numbers, or hyphens (-) are
805
+ # allowed, up to a maximum of 40 characters.
797
806
  #
798
807
  # @option params [required, String] :instance_profile_arn
799
808
  # The ARN of the instance profile that your Amazon EC2 instances use.
800
- # Although the AWS OpsWorks console typically creates the instance
801
- # profile for you, if you are using API commands instead, run the
802
- # service-role-creation.yaml AWS CloudFormation template, located at
803
- # https://s3.amazonaws.com/opsworks-cm-us-east-1-prod-default-assets/misc/opsworks-cm-roles.yaml.
804
- # This template creates a CloudFormation stack that includes the
805
- # instance profile you need.
809
+ # The OpsWorks console typically creates the instance profile for you
806
810
  #
807
811
  # @option params [required, String] :instance_type
808
812
  # The Amazon EC2 instance type to use. For example, `m5.large`.
@@ -813,8 +817,8 @@ module Aws::OpsWorksCM
813
817
  # your instances by using SSH.
814
818
  #
815
819
  # @option params [String] :preferred_maintenance_window
816
- # The start time for a one-hour period each week during which AWS
817
- # OpsWorks CM performs maintenance on the instance. Valid values must be
820
+ # The start time for a one-hour period each week during which OpsWorks
821
+ # CM performs maintenance on the instance. Valid values must be
818
822
  # specified in the following format: `DDD:HH:MM`. `MM` must be specified
819
823
  # as `00`. The specified time is in coordinated universal time (UTC).
820
824
  # The default value is a random one-hour period on Tuesday, Wednesday,
@@ -824,9 +828,9 @@ module Aws::OpsWorksCM
824
828
  # Monday at 08:00 UTC. (8:00 a.m.)
825
829
  #
826
830
  # @option params [String] :preferred_backup_window
827
- # The start time for a one-hour period during which AWS OpsWorks CM
828
- # backs up application-level data on your server if automated backups
829
- # are enabled. Valid values must be specified in one of the following
831
+ # The start time for a one-hour period during which OpsWorks CM backs up
832
+ # application-level data on your server if automated backups are
833
+ # enabled. Valid values must be specified in one of the following
830
834
  # formats:
831
835
  #
832
836
  # * `HH:MM` for daily backups
@@ -847,19 +851,13 @@ module Aws::OpsWorksCM
847
851
  # you add this parameter, the specified security groups must be within
848
852
  # the VPC that is specified by `SubnetIds`.
849
853
  #
850
- # If you do not specify this parameter, AWS OpsWorks CM creates one new
854
+ # If you do not specify this parameter, OpsWorks CM creates one new
851
855
  # security group that uses TCP ports 22 and 443, open to 0.0.0.0/0
852
856
  # (everyone).
853
857
  #
854
858
  # @option params [required, String] :service_role_arn
855
- # The service role that the AWS OpsWorks CM service backend uses to work
856
- # with your account. Although the AWS OpsWorks management console
857
- # typically creates the service role for you, if you are using the AWS
858
- # CLI or API commands, run the service-role-creation.yaml AWS
859
- # CloudFormation template, located at
860
- # https://s3.amazonaws.com/opsworks-cm-us-east-1-prod-default-assets/misc/opsworks-cm-roles.yaml.
861
- # This template creates a CloudFormation stack that includes the service
862
- # role and instance profile that you need.
859
+ # The service role that the OpsWorks CM service backend uses to work
860
+ # with your account.
863
861
  #
864
862
  # @option params [Array<String>] :subnet_ids
865
863
  # The IDs of subnets in which to launch the server EC2 instance.
@@ -880,9 +878,8 @@ module Aws::OpsWorksCM
880
878
  # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-supported-platforms.html
881
879
  #
882
880
  # @option params [Array<Types::Tag>] :tags
883
- # A map that contains tag keys and tag values to attach to an AWS
884
- # OpsWorks for Chef Automate or AWS OpsWorks for Puppet Enterprise
885
- # server.
881
+ # A map that contains tag keys and tag values to attach to an OpsWorks
882
+ # for Chef Automate or OpsWorks for Puppet Enterprise server.
886
883
  #
887
884
  # * The key cannot be empty.
888
885
  #
@@ -894,15 +891,14 @@ module Aws::OpsWorksCM
894
891
  # letters, numbers, or separators, or the following special
895
892
  # characters: `+ - = . _ : / @`
896
893
  #
897
- # * Leading and trailing white spaces are trimmed from both the key and
898
- # value.
894
+ # * Leading and trailing spaces are trimmed from both the key and value.
899
895
  #
900
- # * A maximum of 50 user-applied tags is allowed for any AWS OpsWorks-CM
896
+ # * A maximum of 50 user-applied tags is allowed for any OpsWorks CM
901
897
  # server.
902
898
  #
903
899
  # @option params [String] :backup_id
904
- # If you specify this field, AWS OpsWorks CM creates the server by using
905
- # the backup represented by BackupId.
900
+ # If you specify this field, OpsWorks CM creates the server by using the
901
+ # backup represented by BackupId.
906
902
  #
907
903
  # @return [Types::CreateServerResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
908
904
  #
@@ -1014,11 +1010,11 @@ module Aws::OpsWorksCM
1014
1010
  req.send_request(options)
1015
1011
  end
1016
1012
 
1017
- # Deletes the server and the underlying AWS CloudFormation stacks
1018
- # (including the server's EC2 instance). When you run this command, the
1019
- # server state is updated to `DELETING`. After the server is deleted, it
1020
- # is no longer returned by `DescribeServer` requests. If the AWS
1021
- # CloudFormation stack cannot be deleted, the server cannot be deleted.
1013
+ # Deletes the server and the underlying CloudFormation stacks (including
1014
+ # the server's EC2 instance). When you run this command, the server
1015
+ # state is updated to `DELETING`. After the server is deleted, it is no
1016
+ # longer returned by `DescribeServer` requests. If the CloudFormation
1017
+ # stack cannot be deleted, the server cannot be deleted.
1022
1018
  #
1023
1019
  # This operation is asynchronous.
1024
1020
  #
@@ -1047,7 +1043,7 @@ module Aws::OpsWorksCM
1047
1043
  req.send_request(options)
1048
1044
  end
1049
1045
 
1050
- # Describes your OpsWorks-CM account attributes.
1046
+ # Describes your OpsWorks CM account attributes.
1051
1047
  #
1052
1048
  # This operation is synchronous.
1053
1049
  #
@@ -1261,7 +1257,7 @@ module Aws::OpsWorksCM
1261
1257
 
1262
1258
  # Lists all configuration management servers that are identified with
1263
1259
  # your account. Only the stored results from Amazon DynamoDB are
1264
- # returned. AWS OpsWorks CM does not query other services.
1260
+ # returned. OpsWorks CM does not query other services.
1265
1261
  #
1266
1262
  # This operation is synchronous.
1267
1263
  #
@@ -1335,9 +1331,9 @@ module Aws::OpsWorksCM
1335
1331
  req.send_request(options)
1336
1332
  end
1337
1333
 
1338
- # Disassociates a node from an AWS OpsWorks CM server, and removes the
1339
- # node from the server's managed nodes. After a node is disassociated,
1340
- # the node key pair is no longer valid for accessing the configuration
1334
+ # Disassociates a node from an OpsWorks CM server, and removes the node
1335
+ # from the server's managed nodes. After a node is disassociated, the
1336
+ # node key pair is no longer valid for accessing the configuration
1341
1337
  # manager's API. For more information about how to associate a node,
1342
1338
  # see AssociateNode.
1343
1339
  #
@@ -1424,7 +1420,7 @@ module Aws::OpsWorksCM
1424
1420
  # * **RunList** In Chef, a list of roles or recipes that are run in the
1425
1421
  # specified order. In Puppet, this parameter is ignored.
1426
1422
  #
1427
- # * **OrganizationName** In Chef, an organization name. AWS OpsWorks for
1423
+ # * **OrganizationName** In Chef, an organization name. OpsWorks for
1428
1424
  # Chef Automate always creates the organization `default`. In Puppet,
1429
1425
  # this parameter is ignored.
1430
1426
  #
@@ -1470,14 +1466,13 @@ module Aws::OpsWorksCM
1470
1466
  req.send_request(options)
1471
1467
  end
1472
1468
 
1473
- # Returns a list of tags that are applied to the specified AWS OpsWorks
1474
- # for Chef Automate or AWS OpsWorks for Puppet Enterprise servers or
1475
- # backups.
1469
+ # Returns a list of tags that are applied to the specified OpsWorks for
1470
+ # Chef Automate or OpsWorks for Puppet Enterprise servers or backups.
1476
1471
  #
1477
1472
  # @option params [required, String] :resource_arn
1478
- # The Amazon Resource Number (ARN) of an AWS OpsWorks for Chef Automate
1479
- # or AWS OpsWorks for Puppet Enterprise server for which you want to
1480
- # show applied tags. For example,
1473
+ # The Amazon Resource Number (ARN) of an OpsWorks for Chef Automate or
1474
+ # OpsWorks for Puppet Enterprise server for which you want to show
1475
+ # applied tags. For example,
1481
1476
  # `arn:aws:opsworks-cm:us-west-2:123456789012:server/test-owcm-server/EXAMPLE-66b0-4196-8274-d1a2bEXAMPLE`.
1482
1477
  #
1483
1478
  # @option params [String] :next_token
@@ -1538,7 +1533,7 @@ module Aws::OpsWorksCM
1538
1533
  #
1539
1534
  # Restoring from a backup is performed by creating a new EC2 instance.
1540
1535
  # If restoration is successful, and the server is in a `HEALTHY` state,
1541
- # AWS OpsWorks CM switches traffic over to the new instance. After
1536
+ # OpsWorks CM switches traffic over to the new instance. After
1542
1537
  # restoration is finished, the old EC2 instance is maintained in a
1543
1538
  # `Running` or `Stopped` state, but is eventually terminated.
1544
1539
  #
@@ -1643,7 +1638,7 @@ module Aws::OpsWorksCM
1643
1638
  # upgrade to Chef Automate 2, add this engine attribute to a
1644
1639
  # `StartMaintenance` request and set the value to `true` to upgrade
1645
1640
  # the server to Chef Automate 2. For more information, see [Upgrade an
1646
- # AWS OpsWorks for Chef Automate Server to Chef Automate 2][1].
1641
+ # OpsWorks for Chef Automate Server to Chef Automate 2][1].
1647
1642
  #
1648
1643
  # ^
1649
1644
  #
@@ -1707,8 +1702,8 @@ module Aws::OpsWorksCM
1707
1702
  req.send_request(options)
1708
1703
  end
1709
1704
 
1710
- # Applies tags to an AWS OpsWorks for Chef Automate or AWS OpsWorks for
1711
- # Puppet Enterprise server, or to server backups.
1705
+ # Applies tags to an OpsWorks for Chef Automate or OpsWorks for Puppet
1706
+ # Enterprise server, or to server backups.
1712
1707
  #
1713
1708
  # @option params [required, String] :resource_arn
1714
1709
  # The Amazon Resource Number (ARN) of a resource to which you want to
@@ -1716,8 +1711,8 @@ module Aws::OpsWorksCM
1716
1711
  # `arn:aws:opsworks-cm:us-west-2:123456789012:server/test-owcm-server/EXAMPLE-66b0-4196-8274-d1a2bEXAMPLE`.
1717
1712
  #
1718
1713
  # @option params [required, Array<Types::Tag>] :tags
1719
- # A map that contains tag keys and tag values to attach to AWS
1720
- # OpsWorks-CM servers or backups.
1714
+ # A map that contains tag keys and tag values to attach to OpsWorks CM
1715
+ # servers or backups.
1721
1716
  #
1722
1717
  # * The key cannot be empty.
1723
1718
  #
@@ -1732,7 +1727,7 @@ module Aws::OpsWorksCM
1732
1727
  # * Leading and trailing white spaces are trimmed from both the key and
1733
1728
  # value.
1734
1729
  #
1735
- # * A maximum of 50 user-applied tags is allowed for any AWS OpsWorks-CM
1730
+ # * A maximum of 50 user-applied tags is allowed for any OpsWorks CM
1736
1731
  # server or backup.
1737
1732
  #
1738
1733
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
@@ -1758,7 +1753,7 @@ module Aws::OpsWorksCM
1758
1753
  req.send_request(options)
1759
1754
  end
1760
1755
 
1761
- # Removes specified tags from an AWS OpsWorks-CM server or backup.
1756
+ # Removes specified tags from an OpsWorks CM server or backup.
1762
1757
  #
1763
1758
  # @option params [required, String] :resource_arn
1764
1759
  # The Amazon Resource Number (ARN) of a resource from which you want to
@@ -1961,7 +1956,7 @@ module Aws::OpsWorksCM
1961
1956
  tracer: tracer
1962
1957
  )
1963
1958
  context[:gem_name] = 'aws-sdk-opsworkscm'
1964
- context[:gem_version] = '1.84.0'
1959
+ context[:gem_version] = '1.86.0'
1965
1960
  Seahorse::Client::Request.new(handlers, context)
1966
1961
  end
1967
1962
 
@@ -28,7 +28,7 @@ module Aws::OpsWorksCM
28
28
  raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
29
29
  end
30
30
  if Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, true)
31
- if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
31
+ if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true)
32
32
  return Aws::Endpoints::Endpoint.new(url: "https://opsworks-cm-fips.#{parameters.region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
33
33
  end
34
34
  raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
@@ -59,8 +59,9 @@ module Aws::OpsWorksCM
59
59
  # associated. By default only one organization named `default` can
60
60
  # exist.
61
61
  #
62
- # * `CHEF_NODE_PUBLIC_KEY`: A PEM-formatted public key. This key is
63
- # required for the `chef-client` agent to access the Chef API.
62
+ # * `CHEF_AUTOMATE_NODE_PUBLIC_KEY`: A PEM-formatted public key. This
63
+ # key is required for the `chef-client` agent to access the Chef
64
+ # API.
64
65
  #
65
66
  # **Attributes accepted in a AssociateNode request for Puppet**
66
67
  #
@@ -201,12 +202,12 @@ module Aws::OpsWorksCM
201
202
  # @return [Array<String>]
202
203
  #
203
204
  # @!attribute [rw] tools_version
204
- # The version of AWS OpsWorks CM-specific tools that is obtained from
205
- # the server when the backup is created.
205
+ # The version of OpsWorks CM-specific tools that is obtained from the
206
+ # server when the backup is created.
206
207
  # @return [String]
207
208
  #
208
209
  # @!attribute [rw] user_arn
209
- # The IAM user ARN of the requester for manual backups. This field is
210
+ # The user ARN of the requester for manual backups. This field is
210
211
  # empty for automated backups.
211
212
  # @return [String]
212
213
  #
@@ -250,8 +251,8 @@ module Aws::OpsWorksCM
250
251
  # @return [String]
251
252
  #
252
253
  # @!attribute [rw] tags
253
- # A map that contains tag keys and tag values to attach to an AWS
254
- # OpsWorks-CM server backup.
254
+ # A map that contains tag keys and tag values to attach to an OpsWorks
255
+ # CM server backup.
255
256
  #
256
257
  # * The key cannot be empty.
257
258
  #
@@ -266,8 +267,8 @@ module Aws::OpsWorksCM
266
267
  # * Leading and trailing white spaces are trimmed from both the key
267
268
  # and value.
268
269
  #
269
- # * A maximum of 50 user-applied tags is allowed for tag-supported AWS
270
- # OpsWorks-CM resources.
270
+ # * A maximum of 50 user-applied tags is allowed for tag-supported
271
+ # OpsWorks CM resources.
271
272
  # @return [Array<Types::Tag>]
272
273
  #
273
274
  # @see http://docs.aws.amazon.com/goto/WebAPI/opsworkscm-2016-11-01/CreateBackupRequest AWS API Documentation
@@ -398,25 +399,20 @@ module Aws::OpsWorksCM
398
399
  #
399
400
  # @!attribute [rw] backup_retention_count
400
401
  # The number of automated backups that you want to keep. Whenever a
401
- # new backup is created, AWS OpsWorks CM deletes the oldest backups if
402
+ # new backup is created, OpsWorks CM deletes the oldest backups if
402
403
  # this number is exceeded. The default value is `1`.
403
404
  # @return [Integer]
404
405
  #
405
406
  # @!attribute [rw] server_name
406
407
  # The name of the server. The server name must be unique within your
407
- # AWS account, within each region. Server names must start with a
408
- # letter; then letters, numbers, or hyphens (-) are allowed, up to a
409
- # maximum of 40 characters.
408
+ # Amazon Web Services account, within each region. Server names must
409
+ # start with a letter; then letters, numbers, or hyphens (-) are
410
+ # allowed, up to a maximum of 40 characters.
410
411
  # @return [String]
411
412
  #
412
413
  # @!attribute [rw] instance_profile_arn
413
414
  # The ARN of the instance profile that your Amazon EC2 instances use.
414
- # Although the AWS OpsWorks console typically creates the instance
415
- # profile for you, if you are using API commands instead, run the
416
- # service-role-creation.yaml AWS CloudFormation template, located at
417
- # https://s3.amazonaws.com/opsworks-cm-us-east-1-prod-default-assets/misc/opsworks-cm-roles.yaml.
418
- # This template creates a CloudFormation stack that includes the
419
- # instance profile you need.
415
+ # The OpsWorks console typically creates the instance profile for you
420
416
  # @return [String]
421
417
  #
422
418
  # @!attribute [rw] instance_type
@@ -430,9 +426,9 @@ module Aws::OpsWorksCM
430
426
  # @return [String]
431
427
  #
432
428
  # @!attribute [rw] preferred_maintenance_window
433
- # The start time for a one-hour period each week during which AWS
434
- # OpsWorks CM performs maintenance on the instance. Valid values must
435
- # be specified in the following format: `DDD:HH:MM`. `MM` must be
429
+ # The start time for a one-hour period each week during which OpsWorks
430
+ # CM performs maintenance on the instance. Valid values must be
431
+ # specified in the following format: `DDD:HH:MM`. `MM` must be
436
432
  # specified as `00`. The specified time is in coordinated universal
437
433
  # time (UTC). The default value is a random one-hour period on
438
434
  # Tuesday, Wednesday, or Friday. See `TimeWindowDefinition` for more
@@ -443,9 +439,9 @@ module Aws::OpsWorksCM
443
439
  # @return [String]
444
440
  #
445
441
  # @!attribute [rw] preferred_backup_window
446
- # The start time for a one-hour period during which AWS OpsWorks CM
447
- # backs up application-level data on your server if automated backups
448
- # are enabled. Valid values must be specified in one of the following
442
+ # The start time for a one-hour period during which OpsWorks CM backs
443
+ # up application-level data on your server if automated backups are
444
+ # enabled. Valid values must be specified in one of the following
449
445
  # formats:
450
446
  #
451
447
  # * `HH:MM` for daily backups
@@ -468,20 +464,14 @@ module Aws::OpsWorksCM
468
464
  # If you add this parameter, the specified security groups must be
469
465
  # within the VPC that is specified by `SubnetIds`.
470
466
  #
471
- # If you do not specify this parameter, AWS OpsWorks CM creates one
472
- # new security group that uses TCP ports 22 and 443, open to 0.0.0.0/0
467
+ # If you do not specify this parameter, OpsWorks CM creates one new
468
+ # security group that uses TCP ports 22 and 443, open to 0.0.0.0/0
473
469
  # (everyone).
474
470
  # @return [Array<String>]
475
471
  #
476
472
  # @!attribute [rw] service_role_arn
477
- # The service role that the AWS OpsWorks CM service backend uses to
478
- # work with your account. Although the AWS OpsWorks management console
479
- # typically creates the service role for you, if you are using the AWS
480
- # CLI or API commands, run the service-role-creation.yaml AWS
481
- # CloudFormation template, located at
482
- # https://s3.amazonaws.com/opsworks-cm-us-east-1-prod-default-assets/misc/opsworks-cm-roles.yaml.
483
- # This template creates a CloudFormation stack that includes the
484
- # service role and instance profile that you need.
473
+ # The service role that the OpsWorks CM service backend uses to work
474
+ # with your account.
485
475
  # @return [String]
486
476
  #
487
477
  # @!attribute [rw] subnet_ids
@@ -505,9 +495,8 @@ module Aws::OpsWorksCM
505
495
  # @return [Array<String>]
506
496
  #
507
497
  # @!attribute [rw] tags
508
- # A map that contains tag keys and tag values to attach to an AWS
509
- # OpsWorks for Chef Automate or AWS OpsWorks for Puppet Enterprise
510
- # server.
498
+ # A map that contains tag keys and tag values to attach to an OpsWorks
499
+ # for Chef Automate or OpsWorks for Puppet Enterprise server.
511
500
  #
512
501
  # * The key cannot be empty.
513
502
  #
@@ -519,16 +508,16 @@ module Aws::OpsWorksCM
519
508
  # Unicode letters, numbers, or separators, or the following special
520
509
  # characters: `+ - = . _ : / @`
521
510
  #
522
- # * Leading and trailing white spaces are trimmed from both the key
523
- # and value.
511
+ # * Leading and trailing spaces are trimmed from both the key and
512
+ # value.
524
513
  #
525
- # * A maximum of 50 user-applied tags is allowed for any AWS
526
- # OpsWorks-CM server.
514
+ # * A maximum of 50 user-applied tags is allowed for any OpsWorks CM
515
+ # server.
527
516
  # @return [Array<Types::Tag>]
528
517
  #
529
518
  # @!attribute [rw] backup_id
530
- # If you specify this field, AWS OpsWorks CM creates the server by
531
- # using the backup represented by BackupId.
519
+ # If you specify this field, OpsWorks CM creates the server by using
520
+ # the backup represented by BackupId.
532
521
  # @return [String]
533
522
  #
534
523
  # @see http://docs.aws.amazon.com/goto/WebAPI/opsworkscm-2016-11-01/CreateServerRequest AWS API Documentation
@@ -758,9 +747,9 @@ module Aws::OpsWorksCM
758
747
  # @return [String]
759
748
  #
760
749
  # @!attribute [rw] engine_attributes
761
- # Attributes specific to the node association. In Puppet, the attibute
762
- # PUPPET\_NODE\_CERT contains the signed certificate (the result of
763
- # the CSR).
750
+ # Attributes specific to the node association. In Puppet, the
751
+ # attribute PUPPET\_NODE\_CERT contains the signed certificate (the
752
+ # result of the CSR).
764
753
  # @return [Array<Types::EngineAttribute>]
765
754
  #
766
755
  # @see http://docs.aws.amazon.com/goto/WebAPI/opsworkscm-2016-11-01/DescribeNodeAssociationStatusResponse AWS API Documentation
@@ -920,8 +909,8 @@ module Aws::OpsWorksCM
920
909
  # * **RunList** In Chef, a list of roles or recipes that are run in
921
910
  # the specified order. In Puppet, this parameter is ignored.
922
911
  #
923
- # * **OrganizationName** In Chef, an organization name. AWS OpsWorks
924
- # for Chef Automate always creates the organization `default`. In
912
+ # * **OrganizationName** In Chef, an organization name. OpsWorks for
913
+ # Chef Automate always creates the organization `default`. In
925
914
  # Puppet, this parameter is ignored.
926
915
  #
927
916
  # * **NodeEnvironment** In Chef, a node environment (for example,
@@ -1009,9 +998,9 @@ module Aws::OpsWorksCM
1009
998
  end
1010
999
 
1011
1000
  # @!attribute [rw] resource_arn
1012
- # The Amazon Resource Number (ARN) of an AWS OpsWorks for Chef
1013
- # Automate or AWS OpsWorks for Puppet Enterprise server for which you
1014
- # want to show applied tags. For example,
1001
+ # The Amazon Resource Number (ARN) of an OpsWorks for Chef Automate or
1002
+ # OpsWorks for Puppet Enterprise server for which you want to show
1003
+ # applied tags. For example,
1015
1004
  # `arn:aws:opsworks-cm:us-west-2:123456789012:server/test-owcm-server/EXAMPLE-66b0-4196-8274-d1a2bEXAMPLE`.
1016
1005
  # @return [String]
1017
1006
  #
@@ -1191,14 +1180,14 @@ module Aws::OpsWorksCM
1191
1180
  # @!attribute [rw] engine_attributes
1192
1181
  # The response of a createServer() request returns the master
1193
1182
  # credential to access the server in EngineAttributes. These
1194
- # credentials are not stored by AWS OpsWorks CM; they are returned
1195
- # only as part of the result of createServer().
1183
+ # credentials are not stored by OpsWorks CM; they are returned only as
1184
+ # part of the result of createServer().
1196
1185
  #
1197
1186
  # **Attributes returned in a createServer response for Chef**
1198
1187
  #
1199
1188
  # * `CHEF_AUTOMATE_PIVOTAL_KEY`: A base64-encoded RSA private key that
1200
- # is generated by AWS OpsWorks for Chef Automate. This private key
1201
- # is required to access the Chef API.
1189
+ # is generated by OpsWorks for Chef Automate. This private key is
1190
+ # required to access the Chef API.
1202
1191
  #
1203
1192
  # * `CHEF_STARTER_KIT`: A base64-encoded ZIP file. The ZIP file
1204
1193
  # contains a Chef starter kit, which includes a README, a
@@ -1357,7 +1346,7 @@ module Aws::OpsWorksCM
1357
1346
  # upgrade to Chef Automate 2, add this engine attribute to a
1358
1347
  # `StartMaintenance` request and set the value to `true` to upgrade
1359
1348
  # the server to Chef Automate 2. For more information, see [Upgrade
1360
- # an AWS OpsWorks for Chef Automate Server to Chef Automate 2][1].
1349
+ # an OpsWorks for Chef Automate Server to Chef Automate 2][1].
1361
1350
  #
1362
1351
  # ^
1363
1352
  #
@@ -1387,11 +1376,11 @@ module Aws::OpsWorksCM
1387
1376
  include Aws::Structure
1388
1377
  end
1389
1378
 
1390
- # A map that contains tag keys and tag values to attach to an AWS
1391
- # OpsWorks for Chef Automate or AWS OpsWorks for Puppet Enterprise
1392
- # server. Leading and trailing white spaces are trimmed from both the
1393
- # key and value. A maximum of 50 user-applied tags is allowed for
1394
- # tag-supported AWS OpsWorks-CM resources.
1379
+ # A map that contains tag keys and tag values to attach to an OpsWorks
1380
+ # for Chef Automate or OpsWorks for Puppet Enterprise server. Leading
1381
+ # and trailing spaces are trimmed from both the key and value. A maximum
1382
+ # of 50 user-applied tags is allowed for tag-supported OpsWorks CM
1383
+ # resources.
1395
1384
  #
1396
1385
  # @!attribute [rw] key
1397
1386
  # A tag key, such as `Stage` or `Name`. A tag key cannot be empty. The
@@ -1423,8 +1412,8 @@ module Aws::OpsWorksCM
1423
1412
  # @return [String]
1424
1413
  #
1425
1414
  # @!attribute [rw] tags
1426
- # A map that contains tag keys and tag values to attach to AWS
1427
- # OpsWorks-CM servers or backups.
1415
+ # A map that contains tag keys and tag values to attach to OpsWorks CM
1416
+ # servers or backups.
1428
1417
  #
1429
1418
  # * The key cannot be empty.
1430
1419
  #
@@ -1439,8 +1428,8 @@ module Aws::OpsWorksCM
1439
1428
  # * Leading and trailing white spaces are trimmed from both the key
1440
1429
  # and value.
1441
1430
  #
1442
- # * A maximum of 50 user-applied tags is allowed for any AWS
1443
- # OpsWorks-CM server or backup.
1431
+ # * A maximum of 50 user-applied tags is allowed for any OpsWorks CM
1432
+ # server or backup.
1444
1433
  # @return [Array<Types::Tag>]
1445
1434
  #
1446
1435
  # @see http://docs.aws.amazon.com/goto/WebAPI/opsworkscm-2016-11-01/TagResourceRequest AWS API Documentation
@@ -55,7 +55,7 @@ module Aws::OpsWorksCM
55
55
  autoload :EndpointProvider, 'aws-sdk-opsworkscm/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-opsworkscm/endpoints'
57
57
 
58
- GEM_VERSION = '1.84.0'
58
+ GEM_VERSION = '1.86.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -18,6 +18,7 @@ module Aws
18
18
  ?account_id: String,
19
19
  ?active_endpoint_cache: bool,
20
20
  ?adaptive_retry_wait_to_fill: bool,
21
+ ?auth_scheme_preference: Array[String],
21
22
  ?client_side_monitoring: bool,
22
23
  ?client_side_monitoring_client_id: String,
23
24
  ?client_side_monitoring_host: String,
data/sig/resource.rbs CHANGED
@@ -18,6 +18,7 @@ module Aws
18
18
  ?account_id: String,
19
19
  ?active_endpoint_cache: bool,
20
20
  ?adaptive_retry_wait_to_fill: bool,
21
+ ?auth_scheme_preference: Array[String],
21
22
  ?client_side_monitoring: bool,
22
23
  ?client_side_monitoring_client_id: String,
23
24
  ?client_side_monitoring_host: String,
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-opsworkscm
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.84.0
4
+ version: 1.86.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
@@ -18,7 +18,7 @@ dependencies:
18
18
  version: '3'
19
19
  - - ">="
20
20
  - !ruby/object:Gem::Version
21
- version: 3.225.0
21
+ version: 3.227.0
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
@@ -28,7 +28,7 @@ dependencies:
28
28
  version: '3'
29
29
  - - ">="
30
30
  - !ruby/object:Gem::Version
31
- version: 3.225.0
31
+ version: 3.227.0
32
32
  - !ruby/object:Gem::Dependency
33
33
  name: aws-sigv4
34
34
  requirement: !ruby/object:Gem::Requirement