aws-sdk-devopsguru 1.32.0 → 1.33.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: 225a9a89f793a9ed4c1d5be060ade8e62c7f1394fdc9571037d392a575b65df0
4
- data.tar.gz: 8a82a9110a86c5e8fc9fbb1ca784d92a2f315ac03283cb6bbb7e32f93dca010d
3
+ metadata.gz: 0f50b16b53bf93c9f4dd54dfd12ed23b39058bf349e6501397a3270b749e144f
4
+ data.tar.gz: d73e2d2b31849f01c84b6fb43e64f6e6aab5c90ded4bd9e6e5415059a55aa114
5
5
  SHA512:
6
- metadata.gz: 95d1a2a1ed4fa62076f120f9b78ac8ae02e55a68447c6fceaff7b0fb551acb2cc939c0dd38d260f5342d0c8878b2635c5db72a9a000642162ae0bd3617df17ac
7
- data.tar.gz: 42c4cf8839233a7b15b0060339948e7c76d78f6cc5384b15f78f244e0f7b3492b4156f5249df951f55c0afbc17620ef8c451ff19844c94cbafb217d4c06811c4
6
+ metadata.gz: eee62a0e2c87f86a468395a7ac67b3582e14fe84af8ccc936a88a52623a811f6794fc216a61d6a32da408e6304e8388b0a3c0a4970ebfcd8dc8ad0d73fc5eade
7
+ data.tar.gz: 69d99065bd3ac12887cf99eba126fb0b59edcfe058aca510b617c59bddad7b62c63b2558ad7cf3133632711cfeaaf969c709bfefc9d1c3afc144e93df8563a8f
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.33.0 (2023-06-23)
5
+ ------------------
6
+
7
+ * Feature - This release adds support for encryption via customer managed keys.
8
+
4
9
  1.32.0 (2023-06-15)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.32.0
1
+ 1.33.0
@@ -378,17 +378,11 @@ module Aws::DevOpsGuru
378
378
  # insight is generated.
379
379
  #
380
380
  # If you use an Amazon SNS topic in another account, you must attach a
381
- # policy to it that grants DevOps Guru permission to it notifications.
382
- # DevOps Guru adds the required policy on your behalf to send
383
- # notifications using Amazon SNS in your account. DevOps Guru only
381
+ # policy to it that grants DevOps Guru permission to send it
382
+ # notifications. DevOps Guru adds the required policy on your behalf to
383
+ # send notifications using Amazon SNS in your account. DevOps Guru only
384
384
  # supports standard SNS topics. For more information, see [Permissions
385
- # for cross account Amazon SNS topics][1].
386
- #
387
- # If you use an Amazon SNS topic in another account, you must attach a
388
- # policy to it that grants DevOps Guru permission to it notifications.
389
- # DevOps Guru adds the required policy on your behalf to send
390
- # notifications using Amazon SNS in your account. For more information,
391
- # see Permissions for cross account Amazon SNS topics.
385
+ # for Amazon SNS topics][1].
392
386
  #
393
387
  # If you use an Amazon SNS topic that is encrypted by an Amazon Web
394
388
  # Services Key Management Service customer-managed key (CMK), then you
@@ -1062,6 +1056,9 @@ module Aws::DevOpsGuru
1062
1056
  #
1063
1057
  # resp.service_integration.ops_center.opt_in_status #=> String, one of "ENABLED", "DISABLED"
1064
1058
  # resp.service_integration.logs_anomaly_detection.opt_in_status #=> String, one of "ENABLED", "DISABLED"
1059
+ # resp.service_integration.kms_server_side_encryption.kms_key_id #=> String
1060
+ # resp.service_integration.kms_server_side_encryption.opt_in_status #=> String, one of "ENABLED", "DISABLED"
1061
+ # resp.service_integration.kms_server_side_encryption.type #=> String, one of "CUSTOMER_MANAGED_KEY", "AWS_OWNED_KMS_KEY"
1065
1062
  #
1066
1063
  # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/DescribeServiceIntegration AWS API Documentation
1067
1064
  #
@@ -2314,6 +2311,11 @@ module Aws::DevOpsGuru
2314
2311
  # logs_anomaly_detection: {
2315
2312
  # opt_in_status: "ENABLED", # accepts ENABLED, DISABLED
2316
2313
  # },
2314
+ # kms_server_side_encryption: {
2315
+ # kms_key_id: "KMSKeyId",
2316
+ # opt_in_status: "ENABLED", # accepts ENABLED, DISABLED
2317
+ # type: "CUSTOMER_MANAGED_KEY", # accepts CUSTOMER_MANAGED_KEY, AWS_OWNED_KMS_KEY
2318
+ # },
2317
2319
  # },
2318
2320
  # })
2319
2321
  #
@@ -2339,7 +2341,7 @@ module Aws::DevOpsGuru
2339
2341
  params: params,
2340
2342
  config: config)
2341
2343
  context[:gem_name] = 'aws-sdk-devopsguru'
2342
- context[:gem_version] = '1.32.0'
2344
+ context[:gem_version] = '1.33.0'
2343
2345
  Seahorse::Client::Request.new(handlers, context)
2344
2346
  end
2345
2347
 
@@ -132,6 +132,9 @@ module Aws::DevOpsGuru
132
132
  InsightTimeRange = Shapes::StructureShape.new(name: 'InsightTimeRange')
133
133
  InsightType = Shapes::StringShape.new(name: 'InsightType')
134
134
  InternalServerException = Shapes::StructureShape.new(name: 'InternalServerException')
135
+ KMSKeyId = Shapes::StringShape.new(name: 'KMSKeyId')
136
+ KMSServerSideEncryptionIntegration = Shapes::StructureShape.new(name: 'KMSServerSideEncryptionIntegration')
137
+ KMSServerSideEncryptionIntegrationConfig = Shapes::StructureShape.new(name: 'KMSServerSideEncryptionIntegrationConfig')
135
138
  ListAnomaliesForInsightFilters = Shapes::StructureShape.new(name: 'ListAnomaliesForInsightFilters')
136
139
  ListAnomaliesForInsightMaxResults = Shapes::IntegerShape.new(name: 'ListAnomaliesForInsightMaxResults')
137
140
  ListAnomaliesForInsightRequest = Shapes::StructureShape.new(name: 'ListAnomaliesForInsightRequest')
@@ -293,6 +296,7 @@ module Aws::DevOpsGuru
293
296
  SearchOrganizationInsightsMaxResults = Shapes::IntegerShape.new(name: 'SearchOrganizationInsightsMaxResults')
294
297
  SearchOrganizationInsightsRequest = Shapes::StructureShape.new(name: 'SearchOrganizationInsightsRequest')
295
298
  SearchOrganizationInsightsResponse = Shapes::StructureShape.new(name: 'SearchOrganizationInsightsResponse')
299
+ ServerSideEncryptionType = Shapes::StringShape.new(name: 'ServerSideEncryptionType')
296
300
  ServiceCollection = Shapes::StructureShape.new(name: 'ServiceCollection')
297
301
  ServiceHealth = Shapes::StructureShape.new(name: 'ServiceHealth')
298
302
  ServiceHealths = Shapes::ListShape.new(name: 'ServiceHealths')
@@ -628,6 +632,16 @@ module Aws::DevOpsGuru
628
632
  InternalServerException.add_member(:retry_after_seconds, Shapes::ShapeRef.new(shape: RetryAfterSeconds, location: "header", location_name: "Retry-After"))
629
633
  InternalServerException.struct_class = Types::InternalServerException
630
634
 
635
+ KMSServerSideEncryptionIntegration.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: KMSKeyId, location_name: "KMSKeyId"))
636
+ KMSServerSideEncryptionIntegration.add_member(:opt_in_status, Shapes::ShapeRef.new(shape: OptInStatus, location_name: "OptInStatus"))
637
+ KMSServerSideEncryptionIntegration.add_member(:type, Shapes::ShapeRef.new(shape: ServerSideEncryptionType, location_name: "Type"))
638
+ KMSServerSideEncryptionIntegration.struct_class = Types::KMSServerSideEncryptionIntegration
639
+
640
+ KMSServerSideEncryptionIntegrationConfig.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: KMSKeyId, location_name: "KMSKeyId"))
641
+ KMSServerSideEncryptionIntegrationConfig.add_member(:opt_in_status, Shapes::ShapeRef.new(shape: OptInStatus, location_name: "OptInStatus"))
642
+ KMSServerSideEncryptionIntegrationConfig.add_member(:type, Shapes::ShapeRef.new(shape: ServerSideEncryptionType, location_name: "Type"))
643
+ KMSServerSideEncryptionIntegrationConfig.struct_class = Types::KMSServerSideEncryptionIntegrationConfig
644
+
631
645
  ListAnomaliesForInsightFilters.add_member(:service_collection, Shapes::ShapeRef.new(shape: ServiceCollection, location_name: "ServiceCollection"))
632
646
  ListAnomaliesForInsightFilters.struct_class = Types::ListAnomaliesForInsightFilters
633
647
 
@@ -1114,6 +1128,7 @@ module Aws::DevOpsGuru
1114
1128
 
1115
1129
  ServiceIntegrationConfig.add_member(:ops_center, Shapes::ShapeRef.new(shape: OpsCenterIntegration, location_name: "OpsCenter"))
1116
1130
  ServiceIntegrationConfig.add_member(:logs_anomaly_detection, Shapes::ShapeRef.new(shape: LogsAnomalyDetectionIntegration, location_name: "LogsAnomalyDetection"))
1131
+ ServiceIntegrationConfig.add_member(:kms_server_side_encryption, Shapes::ShapeRef.new(shape: KMSServerSideEncryptionIntegration, location_name: "KMSServerSideEncryption"))
1117
1132
  ServiceIntegrationConfig.struct_class = Types::ServiceIntegrationConfig
1118
1133
 
1119
1134
  ServiceNames.member = Shapes::ShapeRef.new(shape: ServiceName)
@@ -1205,6 +1220,7 @@ module Aws::DevOpsGuru
1205
1220
 
1206
1221
  UpdateServiceIntegrationConfig.add_member(:ops_center, Shapes::ShapeRef.new(shape: OpsCenterIntegrationConfig, location_name: "OpsCenter"))
1207
1222
  UpdateServiceIntegrationConfig.add_member(:logs_anomaly_detection, Shapes::ShapeRef.new(shape: LogsAnomalyDetectionIntegrationConfig, location_name: "LogsAnomalyDetection"))
1223
+ UpdateServiceIntegrationConfig.add_member(:kms_server_side_encryption, Shapes::ShapeRef.new(shape: KMSServerSideEncryptionIntegrationConfig, location_name: "KMSServerSideEncryption"))
1208
1224
  UpdateServiceIntegrationConfig.struct_class = Types::UpdateServiceIntegrationConfig
1209
1225
 
1210
1226
  UpdateServiceIntegrationRequest.add_member(:service_integration, Shapes::ShapeRef.new(shape: UpdateServiceIntegrationConfig, required: true, location_name: "ServiceIntegration"))
@@ -1464,6 +1464,97 @@ module Aws::DevOpsGuru
1464
1464
  include Aws::Structure
1465
1465
  end
1466
1466
 
1467
+ # Information about the KMS encryption used with DevOps Guru.
1468
+ #
1469
+ # @!attribute [rw] kms_key_id
1470
+ # Describes the specified KMS key.
1471
+ #
1472
+ # To specify a KMS key, use its key ID, key ARN, alias name, or alias
1473
+ # ARN. When using an alias name, prefix it with "alias/". If you
1474
+ # specify a predefined Amazon Web Services alias (an Amazon Web
1475
+ # Services alias with no key ID), Amazon Web Services KMS associates
1476
+ # the alias with an Amazon Web Services managed key and returns its
1477
+ # KeyId and Arn in the response. To specify a KMS key in a different
1478
+ # Amazon Web Services account, you must use the key ARN or alias ARN.
1479
+ #
1480
+ # For example:
1481
+ #
1482
+ # Key ID: 1234abcd-12ab-34cd-56ef-1234567890ab
1483
+ #
1484
+ # Key ARN:
1485
+ # arn:aws:kms:us-east-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab
1486
+ #
1487
+ # Alias name: alias/ExampleAlias
1488
+ #
1489
+ # Alias ARN: arn:aws:kms:us-east-2:111122223333:alias/ExampleAlias
1490
+ # @return [String]
1491
+ #
1492
+ # @!attribute [rw] opt_in_status
1493
+ # Specifies if DevOps Guru is enabled for customer managed keys.
1494
+ # @return [String]
1495
+ #
1496
+ # @!attribute [rw] type
1497
+ # The type of KMS key used. Customer managed keys are the KMS keys
1498
+ # that you create. Amazon Web Services owned keys are keys that are
1499
+ # owned and managed by DevOps Guru.
1500
+ # @return [String]
1501
+ #
1502
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/KMSServerSideEncryptionIntegration AWS API Documentation
1503
+ #
1504
+ class KMSServerSideEncryptionIntegration < Struct.new(
1505
+ :kms_key_id,
1506
+ :opt_in_status,
1507
+ :type)
1508
+ SENSITIVE = []
1509
+ include Aws::Structure
1510
+ end
1511
+
1512
+ # Information about whether DevOps Guru is configured to encrypt
1513
+ # server-side data using KMS.
1514
+ #
1515
+ # @!attribute [rw] kms_key_id
1516
+ # Describes the specified KMS key.
1517
+ #
1518
+ # To specify a KMS key, use its key ID, key ARN, alias name, or alias
1519
+ # ARN. When using an alias name, prefix it with "alias/". If you
1520
+ # specify a predefined Amazon Web Services alias (an Amazon Web
1521
+ # Services alias with no key ID), Amazon Web Services KMS associates
1522
+ # the alias with an Amazon Web Services managed key and returns its
1523
+ # KeyId and Arn in the response. To specify a KMS key in a different
1524
+ # Amazon Web Services account, you must use the key ARN or alias ARN.
1525
+ #
1526
+ # For example:
1527
+ #
1528
+ # Key ID: 1234abcd-12ab-34cd-56ef-1234567890ab
1529
+ #
1530
+ # Key ARN:
1531
+ # arn:aws:kms:us-east-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab
1532
+ #
1533
+ # Alias name: alias/ExampleAlias
1534
+ #
1535
+ # Alias ARN: arn:aws:kms:us-east-2:111122223333:alias/ExampleAlias
1536
+ # @return [String]
1537
+ #
1538
+ # @!attribute [rw] opt_in_status
1539
+ # Specifies if DevOps Guru is enabled for KMS integration.
1540
+ # @return [String]
1541
+ #
1542
+ # @!attribute [rw] type
1543
+ # The type of KMS key used. Customer managed keys are the KMS keys
1544
+ # that you create. Amazon Web Services owned keys are keys that are
1545
+ # owned and managed by DevOps Guru.
1546
+ # @return [String]
1547
+ #
1548
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/KMSServerSideEncryptionIntegrationConfig AWS API Documentation
1549
+ #
1550
+ class KMSServerSideEncryptionIntegrationConfig < Struct.new(
1551
+ :kms_key_id,
1552
+ :opt_in_status,
1553
+ :type)
1554
+ SENSITIVE = []
1555
+ include Aws::Structure
1556
+ end
1557
+
1467
1558
  # Specifies one or more service names that are used to list anomalies.
1468
1559
  #
1469
1560
  # @!attribute [rw] service_collection
@@ -2171,17 +2262,11 @@ module Aws::DevOpsGuru
2171
2262
  # (Amazon SNS).
2172
2263
  #
2173
2264
  # If you use an Amazon SNS topic in another account, you must attach a
2174
- # policy to it that grants DevOps Guru permission to it notifications.
2175
- # DevOps Guru adds the required policy on your behalf to send
2176
- # notifications using Amazon SNS in your account. DevOps Guru only
2265
+ # policy to it that grants DevOps Guru permission to send it
2266
+ # notifications. DevOps Guru adds the required policy on your behalf to
2267
+ # send notifications using Amazon SNS in your account. DevOps Guru only
2177
2268
  # supports standard SNS topics. For more information, see [Permissions
2178
- # for cross account Amazon SNS topics][1].
2179
- #
2180
- # If you use an Amazon SNS topic in another account, you must attach a
2181
- # policy to it that grants DevOps Guru permission to it notifications.
2182
- # DevOps Guru adds the required policy on your behalf to send
2183
- # notifications using Amazon SNS in your account. For more information,
2184
- # see Permissions for cross account Amazon SNS topics.
2269
+ # for Amazon SNS topics][1].
2185
2270
  #
2186
2271
  # If you use an Amazon SNS topic that is encrypted by an Amazon Web
2187
2272
  # Services Key Management Service customer-managed key (CMK), then you
@@ -2221,17 +2306,11 @@ module Aws::DevOpsGuru
2221
2306
  # to send notifications when insights are created.
2222
2307
  #
2223
2308
  # If you use an Amazon SNS topic in another account, you must attach a
2224
- # policy to it that grants DevOps Guru permission to it notifications.
2225
- # DevOps Guru adds the required policy on your behalf to send
2226
- # notifications using Amazon SNS in your account. DevOps Guru only
2227
- # supports standard SNS topics. For more information, see [Permissions
2228
- # for cross account Amazon SNS topics][1].
2229
- #
2230
- # If you use an Amazon SNS topic in another account, you must attach a
2231
- # policy to it that grants DevOps Guru permission to it notifications.
2232
- # DevOps Guru adds the required policy on your behalf to send
2233
- # notifications using Amazon SNS in your account. For more
2234
- # information, see Permissions for cross account Amazon SNS topics.
2309
+ # policy to it that grants DevOps Guru permission to send it
2310
+ # notifications. DevOps Guru adds the required policy on your behalf
2311
+ # to send notifications using Amazon SNS in your account. DevOps Guru
2312
+ # only supports standard SNS topics. For more information, see
2313
+ # [Permissions for Amazon SNS topics][1].
2235
2314
  #
2236
2315
  # If you use an Amazon SNS topic that is encrypted by an Amazon Web
2237
2316
  # Services Key Management Service customer-managed key (CMK), then you
@@ -4217,11 +4296,17 @@ module Aws::DevOpsGuru
4217
4296
  # anomaly detection on Amazon CloudWatch log groups.
4218
4297
  # @return [Types::LogsAnomalyDetectionIntegration]
4219
4298
  #
4299
+ # @!attribute [rw] kms_server_side_encryption
4300
+ # Information about whether DevOps Guru is configured to encrypt
4301
+ # server-side data using KMS.
4302
+ # @return [Types::KMSServerSideEncryptionIntegration]
4303
+ #
4220
4304
  # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/ServiceIntegrationConfig AWS API Documentation
4221
4305
  #
4222
4306
  class ServiceIntegrationConfig < Struct.new(
4223
4307
  :ops_center,
4224
- :logs_anomaly_detection)
4308
+ :logs_anomaly_detection,
4309
+ :kms_server_side_encryption)
4225
4310
  SENSITIVE = []
4226
4311
  include Aws::Structure
4227
4312
  end
@@ -4297,17 +4382,11 @@ module Aws::DevOpsGuru
4297
4382
  # Notification Service topic.
4298
4383
  #
4299
4384
  # If you use an Amazon SNS topic in another account, you must attach a
4300
- # policy to it that grants DevOps Guru permission to it notifications.
4301
- # DevOps Guru adds the required policy on your behalf to send
4302
- # notifications using Amazon SNS in your account. DevOps Guru only
4385
+ # policy to it that grants DevOps Guru permission to send it
4386
+ # notifications. DevOps Guru adds the required policy on your behalf to
4387
+ # send notifications using Amazon SNS in your account. DevOps Guru only
4303
4388
  # supports standard SNS topics. For more information, see [Permissions
4304
- # for cross account Amazon SNS topics][1].
4305
- #
4306
- # If you use an Amazon SNS topic in another account, you must attach a
4307
- # policy to it that grants DevOps Guru permission to it notifications.
4308
- # DevOps Guru adds the required policy on your behalf to send
4309
- # notifications using Amazon SNS in your account. For more information,
4310
- # see Permissions for cross account Amazon SNS topics.
4389
+ # for Amazon SNS topics][1].
4311
4390
  #
4312
4391
  # If you use an Amazon SNS topic that is encrypted by an Amazon Web
4313
4392
  # Services Key Management Service customer-managed key (CMK), then you
@@ -4785,11 +4864,17 @@ module Aws::DevOpsGuru
4785
4864
  # anomaly detection on Amazon CloudWatch log groups.
4786
4865
  # @return [Types::LogsAnomalyDetectionIntegrationConfig]
4787
4866
  #
4867
+ # @!attribute [rw] kms_server_side_encryption
4868
+ # Information about whether DevOps Guru is configured to encrypt
4869
+ # server-side data using KMS.
4870
+ # @return [Types::KMSServerSideEncryptionIntegrationConfig]
4871
+ #
4788
4872
  # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/UpdateServiceIntegrationConfig AWS API Documentation
4789
4873
  #
4790
4874
  class UpdateServiceIntegrationConfig < Struct.new(
4791
4875
  :ops_center,
4792
- :logs_anomaly_detection)
4876
+ :logs_anomaly_detection,
4877
+ :kms_server_side_encryption)
4793
4878
  SENSITIVE = []
4794
4879
  include Aws::Structure
4795
4880
  end
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-devopsguru/customizations'
52
52
  # @!group service
53
53
  module Aws::DevOpsGuru
54
54
 
55
- GEM_VERSION = '1.32.0'
55
+ GEM_VERSION = '1.33.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-devopsguru
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.32.0
4
+ version: 1.33.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: 2023-06-15 00:00:00.000000000 Z
11
+ date: 2023-06-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core