aws-sdk-applicationinsights 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: '089c7117ff04470f6dd0a0a966cf9ad6b42bd12db13efca3d2065e0f1f32d9fc'
4
- data.tar.gz: 73a911f26d856cceb26eef3a64f160a1a687e108f0e44da4f40ede74449d2a6f
3
+ metadata.gz: 79144213dccf1792bf05792522d95e661c3beaee254e2180486811a884ab8148
4
+ data.tar.gz: 337cf46cf55283bedb7d5f6e2f44849957c562e3c81653a1db8f7e55b4c50541
5
5
  SHA512:
6
- metadata.gz: c84cafe12d99da605b641e3ead50b55eac2ebdc918d80e85246c81afd91d5b65bf187066ca6621dd03b09e70e39c8a25d5299189b7a0588af023f455ba72573d
7
- data.tar.gz: ab37e2bb0ccfbc8caafacdbe7e41216aaabe23c4971afc799c3e8052bd671e01ef6aadb14349a4380f4b5a973c5ca6a750b2e355c13210e7f821715b4cceb1d9
6
+ metadata.gz: b4525715f280d703f42100320fe4b542920cfa97e185a538af5bf454cecfb95b82e77e122a133b8a2debe3e0d78ddd4f31cdf9926a26343d64f8eed8310265f9
7
+ data.tar.gz: 4e5802c8f1fcbeb0300e88cf23cbbb98e4ac0bcb0346f807381bd04e0e69975b9856c7254d109a1a2ed87f1178778fd7191b029dd996169ec4a0bd74631cb16f
data/CHANGELOG.md CHANGED
@@ -1,6 +1,13 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.33.0 (2023-01-18)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ * Issue - Replace runtime endpoint resolution approach with generated ruby code.
10
+
4
11
  1.32.0 (2022-10-25)
5
12
  ------------------
6
13
 
@@ -170,4 +177,4 @@ Unreleased Changes
170
177
  1.0.0 (2019-06-24)
171
178
  ------------------
172
179
 
173
- * Feature - Initial release of `aws-sdk-applicationinsights`.
180
+ * Feature - Initial release of `aws-sdk-applicationinsights`.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.32.0
1
+ 1.33.0
@@ -1692,7 +1692,7 @@ module Aws::ApplicationInsights
1692
1692
  params: params,
1693
1693
  config: config)
1694
1694
  context[:gem_name] = 'aws-sdk-applicationinsights'
1695
- context[:gem_version] = '1.32.0'
1695
+ context[:gem_version] = '1.33.0'
1696
1696
  Seahorse::Client::Request.new(handlers, context)
1697
1697
  end
1698
1698
 
@@ -9,104 +9,43 @@
9
9
 
10
10
  module Aws::ApplicationInsights
11
11
  class EndpointProvider
12
- def initialize(rule_set = nil)
13
- @@rule_set ||= begin
14
- endpoint_rules = Aws::Json.load(Base64.decode64(RULES))
15
- Aws::Endpoints::RuleSet.new(
16
- version: endpoint_rules['version'],
17
- service_id: endpoint_rules['serviceId'],
18
- parameters: endpoint_rules['parameters'],
19
- rules: endpoint_rules['rules']
20
- )
12
+ def resolve_endpoint(parameters)
13
+ region = parameters.region
14
+ use_dual_stack = parameters.use_dual_stack
15
+ use_fips = parameters.use_fips
16
+ endpoint = parameters.endpoint
17
+ if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
18
+ if Aws::Endpoints::Matchers.set?(endpoint) && (url = Aws::Endpoints::Matchers.parse_url(endpoint))
19
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
20
+ raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
21
+ end
22
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
23
+ raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
24
+ end
25
+ return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
26
+ end
27
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
28
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
29
+ return Aws::Endpoints::Endpoint.new(url: "https://applicationinsights-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
30
+ end
31
+ raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
32
+ end
33
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
34
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
35
+ return Aws::Endpoints::Endpoint.new(url: "https://applicationinsights-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
36
+ end
37
+ raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
38
+ end
39
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
40
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
41
+ return Aws::Endpoints::Endpoint.new(url: "https://applicationinsights.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
42
+ end
43
+ raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
44
+ end
45
+ return Aws::Endpoints::Endpoint.new(url: "https://applicationinsights.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
21
46
  end
22
- @provider = Aws::Endpoints::RulesProvider.new(rule_set || @@rule_set)
23
- end
47
+ raise ArgumentError, 'No endpoint could be resolved'
24
48
 
25
- def resolve_endpoint(parameters)
26
- @provider.resolve_endpoint(parameters)
27
49
  end
28
-
29
- # @api private
30
- RULES = <<-JSON
31
- eyJ2ZXJzaW9uIjoiMS4wIiwicGFyYW1ldGVycyI6eyJSZWdpb24iOnsiYnVp
32
- bHRJbiI6IkFXUzo6UmVnaW9uIiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1bWVu
33
- dGF0aW9uIjoiVGhlIEFXUyByZWdpb24gdXNlZCB0byBkaXNwYXRjaCB0aGUg
34
- cmVxdWVzdC4iLCJ0eXBlIjoiU3RyaW5nIn0sIlVzZUR1YWxTdGFjayI6eyJi
35
- dWlsdEluIjoiQVdTOjpVc2VEdWFsU3RhY2siLCJyZXF1aXJlZCI6dHJ1ZSwi
36
- ZGVmYXVsdCI6ZmFsc2UsImRvY3VtZW50YXRpb24iOiJXaGVuIHRydWUsIHVz
37
- ZSB0aGUgZHVhbC1zdGFjayBlbmRwb2ludC4gSWYgdGhlIGNvbmZpZ3VyZWQg
38
- ZW5kcG9pbnQgZG9lcyBub3Qgc3VwcG9ydCBkdWFsLXN0YWNrLCBkaXNwYXRj
39
- aGluZyB0aGUgcmVxdWVzdCBNQVkgcmV0dXJuIGFuIGVycm9yLiIsInR5cGUi
40
- OiJCb29sZWFuIn0sIlVzZUZJUFMiOnsiYnVpbHRJbiI6IkFXUzo6VXNlRklQ
41
- UyIsInJlcXVpcmVkIjp0cnVlLCJkZWZhdWx0IjpmYWxzZSwiZG9jdW1lbnRh
42
- dGlvbiI6IldoZW4gdHJ1ZSwgc2VuZCB0aGlzIHJlcXVlc3QgdG8gdGhlIEZJ
43
- UFMtY29tcGxpYW50IHJlZ2lvbmFsIGVuZHBvaW50LiBJZiB0aGUgY29uZmln
44
- dXJlZCBlbmRwb2ludCBkb2VzIG5vdCBoYXZlIGEgRklQUyBjb21wbGlhbnQg
45
- ZW5kcG9pbnQsIGRpc3BhdGNoaW5nIHRoZSByZXF1ZXN0IHdpbGwgcmV0dXJu
46
- IGFuIGVycm9yLiIsInR5cGUiOiJCb29sZWFuIn0sIkVuZHBvaW50Ijp7ImJ1
47
- aWx0SW4iOiJTREs6OkVuZHBvaW50IiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1
48
- bWVudGF0aW9uIjoiT3ZlcnJpZGUgdGhlIGVuZHBvaW50IHVzZWQgdG8gc2Vu
49
- ZCB0aGlzIHJlcXVlc3QiLCJ0eXBlIjoiU3RyaW5nIn19LCJydWxlcyI6W3si
50
- Y29uZGl0aW9ucyI6W3siZm4iOiJhd3MucGFydGl0aW9uIiwiYXJndiI6W3si
51
- cmVmIjoiUmVnaW9uIn1dLCJhc3NpZ24iOiJQYXJ0aXRpb25SZXN1bHQifV0s
52
- InR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoi
53
- aXNTZXQiLCJhcmd2IjpbeyJyZWYiOiJFbmRwb2ludCJ9XX0seyJmbiI6InBh
54
- cnNlVVJMIiwiYXJndiI6W3sicmVmIjoiRW5kcG9pbnQifV0sImFzc2lnbiI6
55
- InVybCJ9XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6
56
- W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQ
57
- UyJ9LHRydWVdfV0sImVycm9yIjoiSW52YWxpZCBDb25maWd1cmF0aW9uOiBG
58
- SVBTIGFuZCBjdXN0b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0
59
- eXBlIjoiZXJyb3IifSx7ImNvbmRpdGlvbnMiOltdLCJ0eXBlIjoidHJlZSIs
60
- InJ1bGVzIjpbeyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMi
61
- LCJhcmd2IjpbeyJyZWYiOiJVc2VEdWFsU3RhY2sifSx0cnVlXX1dLCJlcnJv
62
- ciI6IkludmFsaWQgQ29uZmlndXJhdGlvbjogRHVhbHN0YWNrIGFuZCBjdXN0
63
- b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0eXBlIjoiZXJyb3Ii
64
- fSx7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOnsicmVmIjoi
65
- RW5kcG9pbnQifSwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlw
66
- ZSI6ImVuZHBvaW50In1dfV19LHsiY29uZGl0aW9ucyI6W3siZm4iOiJib29s
67
- ZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQUyJ9LHRydWVdfSx7
68
- ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUR1YWxT
69
- dGFjayJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRp
70
- dGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsi
71
- Zm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0
72
- In0sInN1cHBvcnRzRklQUyJdfV19LHsiZm4iOiJib29sZWFuRXF1YWxzIiwi
73
- YXJndiI6W3RydWUseyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQ
74
- YXJ0aXRpb25SZXN1bHQifSwic3VwcG9ydHNEdWFsU3RhY2siXX1dfV0sInR5
75
- cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2lu
76
- dCI6eyJ1cmwiOiJodHRwczovL2FwcGxpY2F0aW9uaW5zaWdodHMtZmlwcy57
77
- UmVnaW9ufS57UGFydGl0aW9uUmVzdWx0I2R1YWxTdGFja0Ruc1N1ZmZpeH0i
78
- LCJwcm9wZXJ0aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0eXBlIjoiZW5kcG9p
79
- bnQifV19LHsiY29uZGl0aW9ucyI6W10sImVycm9yIjoiRklQUyBhbmQgRHVh
80
- bFN0YWNrIGFyZSBlbmFibGVkLCBidXQgdGhpcyBwYXJ0aXRpb24gZG9lcyBu
81
- b3Qgc3VwcG9ydCBvbmUgb3IgYm90aCIsInR5cGUiOiJlcnJvciJ9XX0seyJj
82
- b25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbeyJy
83
- ZWYiOiJVc2VGSVBTIn0sdHJ1ZV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6
84
- W3siY29uZGl0aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6
85
- W3RydWUseyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQYXJ0aXRp
86
- b25SZXN1bHQifSwic3VwcG9ydHNGSVBTIl19XX1dLCJ0eXBlIjoidHJlZSIs
87
- InJ1bGVzIjpbeyJjb25kaXRpb25zIjpbXSwidHlwZSI6InRyZWUiLCJydWxl
88
- cyI6W3siY29uZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6Imh0dHBz
89
- Oi8vYXBwbGljYXRpb25pbnNpZ2h0cy1maXBzLntSZWdpb259LntQYXJ0aXRp
90
- b25SZXN1bHQjZG5zU3VmZml4fSIsInByb3BlcnRpZXMiOnt9LCJoZWFkZXJz
91
- Ijp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX1dfSx7ImNvbmRpdGlvbnMiOltd
92
- LCJlcnJvciI6IkZJUFMgaXMgZW5hYmxlZCBidXQgdGhpcyBwYXJ0aXRpb24g
93
- ZG9lcyBub3Qgc3VwcG9ydCBGSVBTIiwidHlwZSI6ImVycm9yIn1dfSx7ImNv
94
- bmRpdGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJl
95
- ZiI6IlVzZUR1YWxTdGFjayJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVs
96
- ZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFy
97
- Z3YiOlt0cnVlLHsiZm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFy
98
- dGl0aW9uUmVzdWx0In0sInN1cHBvcnRzRHVhbFN0YWNrIl19XX1dLCJ0eXBl
99
- IjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRpb25zIjpbXSwiZW5kcG9pbnQi
100
- OnsidXJsIjoiaHR0cHM6Ly9hcHBsaWNhdGlvbmluc2lnaHRzLntSZWdpb259
101
- LntQYXJ0aXRpb25SZXN1bHQjZHVhbFN0YWNrRG5zU3VmZml4fSIsInByb3Bl
102
- cnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX0s
103
- eyJjb25kaXRpb25zIjpbXSwiZXJyb3IiOiJEdWFsU3RhY2sgaXMgZW5hYmxl
104
- ZCBidXQgdGhpcyBwYXJ0aXRpb24gZG9lcyBub3Qgc3VwcG9ydCBEdWFsU3Rh
105
- Y2siLCJ0eXBlIjoiZXJyb3IifV19LHsiY29uZGl0aW9ucyI6W10sImVuZHBv
106
- aW50Ijp7InVybCI6Imh0dHBzOi8vYXBwbGljYXRpb25pbnNpZ2h0cy57UmVn
107
- aW9ufS57UGFydGl0aW9uUmVzdWx0I2Ruc1N1ZmZpeH0iLCJwcm9wZXJ0aWVz
108
- Ijp7fSwiaGVhZGVycyI6e319LCJ0eXBlIjoiZW5kcG9pbnQifV19XX0=
109
-
110
- JSON
111
50
  end
112
51
  end
@@ -185,25 +185,6 @@ module Aws::ApplicationInsights
185
185
  include Aws::Structure
186
186
  end
187
187
 
188
- # @note When making an API call, you may pass CreateApplicationRequest
189
- # data as a hash:
190
- #
191
- # {
192
- # resource_group_name: "ResourceGroupName",
193
- # ops_center_enabled: false,
194
- # cwe_monitor_enabled: false,
195
- # ops_item_sns_topic_arn: "OpsItemSNSTopicArn",
196
- # tags: [
197
- # {
198
- # key: "TagKey", # required
199
- # value: "TagValue", # required
200
- # },
201
- # ],
202
- # auto_config_enabled: false,
203
- # auto_create: false,
204
- # grouping_type: "ACCOUNT_BASED", # accepts ACCOUNT_BASED
205
- # }
206
- #
207
188
  # @!attribute [rw] resource_group_name
208
189
  # The name of the resource group.
209
190
  # @return [String]
@@ -275,15 +256,6 @@ module Aws::ApplicationInsights
275
256
  include Aws::Structure
276
257
  end
277
258
 
278
- # @note When making an API call, you may pass CreateComponentRequest
279
- # data as a hash:
280
- #
281
- # {
282
- # resource_group_name: "ResourceGroupName", # required
283
- # component_name: "CustomComponentName", # required
284
- # resource_list: ["ResourceARN"], # required
285
- # }
286
- #
287
259
  # @!attribute [rw] resource_group_name
288
260
  # The name of the resource group.
289
261
  # @return [String]
@@ -310,17 +282,6 @@ module Aws::ApplicationInsights
310
282
  #
311
283
  class CreateComponentResponse < Aws::EmptyStructure; end
312
284
 
313
- # @note When making an API call, you may pass CreateLogPatternRequest
314
- # data as a hash:
315
- #
316
- # {
317
- # resource_group_name: "ResourceGroupName", # required
318
- # pattern_set_name: "LogPatternSetName", # required
319
- # pattern_name: "LogPatternName", # required
320
- # pattern: "LogPatternRegex", # required
321
- # rank: 1, # required
322
- # }
323
- #
324
285
  # @!attribute [rw] resource_group_name
325
286
  # The name of the resource group.
326
287
  # @return [String]
@@ -381,13 +342,6 @@ module Aws::ApplicationInsights
381
342
  include Aws::Structure
382
343
  end
383
344
 
384
- # @note When making an API call, you may pass DeleteApplicationRequest
385
- # data as a hash:
386
- #
387
- # {
388
- # resource_group_name: "ResourceGroupName", # required
389
- # }
390
- #
391
345
  # @!attribute [rw] resource_group_name
392
346
  # The name of the resource group.
393
347
  # @return [String]
@@ -404,14 +358,6 @@ module Aws::ApplicationInsights
404
358
  #
405
359
  class DeleteApplicationResponse < Aws::EmptyStructure; end
406
360
 
407
- # @note When making an API call, you may pass DeleteComponentRequest
408
- # data as a hash:
409
- #
410
- # {
411
- # resource_group_name: "ResourceGroupName", # required
412
- # component_name: "CustomComponentName", # required
413
- # }
414
- #
415
361
  # @!attribute [rw] resource_group_name
416
362
  # The name of the resource group.
417
363
  # @return [String]
@@ -433,15 +379,6 @@ module Aws::ApplicationInsights
433
379
  #
434
380
  class DeleteComponentResponse < Aws::EmptyStructure; end
435
381
 
436
- # @note When making an API call, you may pass DeleteLogPatternRequest
437
- # data as a hash:
438
- #
439
- # {
440
- # resource_group_name: "ResourceGroupName", # required
441
- # pattern_set_name: "LogPatternSetName", # required
442
- # pattern_name: "LogPatternName", # required
443
- # }
444
- #
445
382
  # @!attribute [rw] resource_group_name
446
383
  # The name of the resource group.
447
384
  # @return [String]
@@ -468,13 +405,6 @@ module Aws::ApplicationInsights
468
405
  #
469
406
  class DeleteLogPatternResponse < Aws::EmptyStructure; end
470
407
 
471
- # @note When making an API call, you may pass DescribeApplicationRequest
472
- # data as a hash:
473
- #
474
- # {
475
- # resource_group_name: "ResourceGroupName", # required
476
- # }
477
- #
478
408
  # @!attribute [rw] resource_group_name
479
409
  # The name of the resource group.
480
410
  # @return [String]
@@ -499,15 +429,6 @@ module Aws::ApplicationInsights
499
429
  include Aws::Structure
500
430
  end
501
431
 
502
- # @note When making an API call, you may pass DescribeComponentConfigurationRecommendationRequest
503
- # data as a hash:
504
- #
505
- # {
506
- # resource_group_name: "ResourceGroupName", # required
507
- # component_name: "ComponentName", # required
508
- # tier: "CUSTOM", # required, accepts CUSTOM, DEFAULT, DOT_NET_CORE, DOT_NET_WORKER, DOT_NET_WEB_TIER, DOT_NET_WEB, SQL_SERVER, SQL_SERVER_ALWAYSON_AVAILABILITY_GROUP, MYSQL, POSTGRESQL, JAVA_JMX, ORACLE, SAP_HANA_MULTI_NODE, SAP_HANA_SINGLE_NODE, SAP_HANA_HIGH_AVAILABILITY, SQL_SERVER_FAILOVER_CLUSTER_INSTANCE, SHAREPOINT, ACTIVE_DIRECTORY
509
- # }
510
- #
511
432
  # @!attribute [rw] resource_group_name
512
433
  # The name of the resource group.
513
434
  # @return [String]
@@ -543,14 +464,6 @@ module Aws::ApplicationInsights
543
464
  include Aws::Structure
544
465
  end
545
466
 
546
- # @note When making an API call, you may pass DescribeComponentConfigurationRequest
547
- # data as a hash:
548
- #
549
- # {
550
- # resource_group_name: "ResourceGroupName", # required
551
- # component_name: "ComponentName", # required
552
- # }
553
- #
554
467
  # @!attribute [rw] resource_group_name
555
468
  # The name of the resource group.
556
469
  # @return [String]
@@ -593,14 +506,6 @@ module Aws::ApplicationInsights
593
506
  include Aws::Structure
594
507
  end
595
508
 
596
- # @note When making an API call, you may pass DescribeComponentRequest
597
- # data as a hash:
598
- #
599
- # {
600
- # resource_group_name: "ResourceGroupName", # required
601
- # component_name: "ComponentName", # required
602
- # }
603
- #
604
509
  # @!attribute [rw] resource_group_name
605
510
  # The name of the resource group.
606
511
  # @return [String]
@@ -636,15 +541,6 @@ module Aws::ApplicationInsights
636
541
  include Aws::Structure
637
542
  end
638
543
 
639
- # @note When making an API call, you may pass DescribeLogPatternRequest
640
- # data as a hash:
641
- #
642
- # {
643
- # resource_group_name: "ResourceGroupName", # required
644
- # pattern_set_name: "LogPatternSetName", # required
645
- # pattern_name: "LogPatternName", # required
646
- # }
647
- #
648
544
  # @!attribute [rw] resource_group_name
649
545
  # The name of the resource group.
650
546
  # @return [String]
@@ -684,13 +580,6 @@ module Aws::ApplicationInsights
684
580
  include Aws::Structure
685
581
  end
686
582
 
687
- # @note When making an API call, you may pass DescribeObservationRequest
688
- # data as a hash:
689
- #
690
- # {
691
- # observation_id: "ObservationId", # required
692
- # }
693
- #
694
583
  # @!attribute [rw] observation_id
695
584
  # The ID of the observation.
696
585
  # @return [String]
@@ -715,13 +604,6 @@ module Aws::ApplicationInsights
715
604
  include Aws::Structure
716
605
  end
717
606
 
718
- # @note When making an API call, you may pass DescribeProblemObservationsRequest
719
- # data as a hash:
720
- #
721
- # {
722
- # problem_id: "ProblemId", # required
723
- # }
724
- #
725
607
  # @!attribute [rw] problem_id
726
608
  # The ID of the problem.
727
609
  # @return [String]
@@ -746,13 +628,6 @@ module Aws::ApplicationInsights
746
628
  include Aws::Structure
747
629
  end
748
630
 
749
- # @note When making an API call, you may pass DescribeProblemRequest
750
- # data as a hash:
751
- #
752
- # {
753
- # problem_id: "ProblemId", # required
754
- # }
755
- #
756
631
  # @!attribute [rw] problem_id
757
632
  # The ID of the problem.
758
633
  # @return [String]
@@ -791,14 +666,6 @@ module Aws::ApplicationInsights
791
666
  include Aws::Structure
792
667
  end
793
668
 
794
- # @note When making an API call, you may pass ListApplicationsRequest
795
- # data as a hash:
796
- #
797
- # {
798
- # max_results: 1,
799
- # next_token: "PaginationToken",
800
- # }
801
- #
802
669
  # @!attribute [rw] max_results
803
670
  # The maximum number of results to return in a single call. To
804
671
  # retrieve the remaining results, make another call with the returned
@@ -836,15 +703,6 @@ module Aws::ApplicationInsights
836
703
  include Aws::Structure
837
704
  end
838
705
 
839
- # @note When making an API call, you may pass ListComponentsRequest
840
- # data as a hash:
841
- #
842
- # {
843
- # resource_group_name: "ResourceGroupName", # required
844
- # max_results: 1,
845
- # next_token: "PaginationToken",
846
- # }
847
- #
848
706
  # @!attribute [rw] resource_group_name
849
707
  # The name of the resource group.
850
708
  # @return [String]
@@ -886,18 +744,6 @@ module Aws::ApplicationInsights
886
744
  include Aws::Structure
887
745
  end
888
746
 
889
- # @note When making an API call, you may pass ListConfigurationHistoryRequest
890
- # data as a hash:
891
- #
892
- # {
893
- # resource_group_name: "ResourceGroupName",
894
- # start_time: Time.now,
895
- # end_time: Time.now,
896
- # event_status: "INFO", # accepts INFO, WARN, ERROR
897
- # max_results: 1,
898
- # next_token: "PaginationToken",
899
- # }
900
- #
901
747
  # @!attribute [rw] resource_group_name
902
748
  # Resource group to which the application belongs.
903
749
  # @return [String]
@@ -969,15 +815,6 @@ module Aws::ApplicationInsights
969
815
  include Aws::Structure
970
816
  end
971
817
 
972
- # @note When making an API call, you may pass ListLogPatternSetsRequest
973
- # data as a hash:
974
- #
975
- # {
976
- # resource_group_name: "ResourceGroupName", # required
977
- # max_results: 1,
978
- # next_token: "PaginationToken",
979
- # }
980
- #
981
818
  # @!attribute [rw] resource_group_name
982
819
  # The name of the resource group.
983
820
  # @return [String]
@@ -1025,16 +862,6 @@ module Aws::ApplicationInsights
1025
862
  include Aws::Structure
1026
863
  end
1027
864
 
1028
- # @note When making an API call, you may pass ListLogPatternsRequest
1029
- # data as a hash:
1030
- #
1031
- # {
1032
- # resource_group_name: "ResourceGroupName", # required
1033
- # pattern_set_name: "LogPatternSetName",
1034
- # max_results: 1,
1035
- # next_token: "PaginationToken",
1036
- # }
1037
- #
1038
865
  # @!attribute [rw] resource_group_name
1039
866
  # The name of the resource group.
1040
867
  # @return [String]
@@ -1087,18 +914,6 @@ module Aws::ApplicationInsights
1087
914
  include Aws::Structure
1088
915
  end
1089
916
 
1090
- # @note When making an API call, you may pass ListProblemsRequest
1091
- # data as a hash:
1092
- #
1093
- # {
1094
- # resource_group_name: "ResourceGroupName",
1095
- # start_time: Time.now,
1096
- # end_time: Time.now,
1097
- # max_results: 1,
1098
- # next_token: "PaginationToken",
1099
- # component_name: "ComponentName",
1100
- # }
1101
- #
1102
917
  # @!attribute [rw] resource_group_name
1103
918
  # The name of the resource group.
1104
919
  # @return [String]
@@ -1164,13 +979,6 @@ module Aws::ApplicationInsights
1164
979
  include Aws::Structure
1165
980
  end
1166
981
 
1167
- # @note When making an API call, you may pass ListTagsForResourceRequest
1168
- # data as a hash:
1169
- #
1170
- # {
1171
- # resource_arn: "AmazonResourceName", # required
1172
- # }
1173
- #
1174
982
  # @!attribute [rw] resource_arn
1175
983
  # The Amazon Resource Name (ARN) of the application that you want to
1176
984
  # retrieve tag information for.
@@ -1626,14 +1434,6 @@ module Aws::ApplicationInsights
1626
1434
  # any tag keys or values that you define. In addition, you can't edit
1627
1435
  # or remove tag keys or values that use this prefix.
1628
1436
  #
1629
- # @note When making an API call, you may pass Tag
1630
- # data as a hash:
1631
- #
1632
- # {
1633
- # key: "TagKey", # required
1634
- # value: "TagValue", # required
1635
- # }
1636
- #
1637
1437
  # @!attribute [rw] key
1638
1438
  # One part of a key-value pair that defines a tag. The maximum length
1639
1439
  # of a tag key is 128 characters. The minimum length is 1 character.
@@ -1655,19 +1455,6 @@ module Aws::ApplicationInsights
1655
1455
  include Aws::Structure
1656
1456
  end
1657
1457
 
1658
- # @note When making an API call, you may pass TagResourceRequest
1659
- # data as a hash:
1660
- #
1661
- # {
1662
- # resource_arn: "AmazonResourceName", # required
1663
- # tags: [ # required
1664
- # {
1665
- # key: "TagKey", # required
1666
- # value: "TagValue", # required
1667
- # },
1668
- # ],
1669
- # }
1670
- #
1671
1458
  # @!attribute [rw] resource_arn
1672
1459
  # The Amazon Resource Name (ARN) of the application that you want to
1673
1460
  # add one or more tags to.
@@ -1726,14 +1513,6 @@ module Aws::ApplicationInsights
1726
1513
  include Aws::Structure
1727
1514
  end
1728
1515
 
1729
- # @note When making an API call, you may pass UntagResourceRequest
1730
- # data as a hash:
1731
- #
1732
- # {
1733
- # resource_arn: "AmazonResourceName", # required
1734
- # tag_keys: ["TagKey"], # required
1735
- # }
1736
- #
1737
1516
  # @!attribute [rw] resource_arn
1738
1517
  # The Amazon Resource Name (ARN) of the application that you want to
1739
1518
  # remove one or more tags from.
@@ -1762,18 +1541,6 @@ module Aws::ApplicationInsights
1762
1541
  #
1763
1542
  class UntagResourceResponse < Aws::EmptyStructure; end
1764
1543
 
1765
- # @note When making an API call, you may pass UpdateApplicationRequest
1766
- # data as a hash:
1767
- #
1768
- # {
1769
- # resource_group_name: "ResourceGroupName", # required
1770
- # ops_center_enabled: false,
1771
- # cwe_monitor_enabled: false,
1772
- # ops_item_sns_topic_arn: "OpsItemSNSTopicArn",
1773
- # remove_sns_topic: false,
1774
- # auto_config_enabled: false,
1775
- # }
1776
- #
1777
1544
  # @!attribute [rw] resource_group_name
1778
1545
  # The name of the resource group.
1779
1546
  # @return [String]
@@ -1829,18 +1596,6 @@ module Aws::ApplicationInsights
1829
1596
  include Aws::Structure
1830
1597
  end
1831
1598
 
1832
- # @note When making an API call, you may pass UpdateComponentConfigurationRequest
1833
- # data as a hash:
1834
- #
1835
- # {
1836
- # resource_group_name: "ResourceGroupName", # required
1837
- # component_name: "ComponentName", # required
1838
- # monitor: false,
1839
- # tier: "CUSTOM", # accepts CUSTOM, DEFAULT, DOT_NET_CORE, DOT_NET_WORKER, DOT_NET_WEB_TIER, DOT_NET_WEB, SQL_SERVER, SQL_SERVER_ALWAYSON_AVAILABILITY_GROUP, MYSQL, POSTGRESQL, JAVA_JMX, ORACLE, SAP_HANA_MULTI_NODE, SAP_HANA_SINGLE_NODE, SAP_HANA_HIGH_AVAILABILITY, SQL_SERVER_FAILOVER_CLUSTER_INSTANCE, SHAREPOINT, ACTIVE_DIRECTORY
1840
- # component_configuration: "ComponentConfiguration",
1841
- # auto_config_enabled: false,
1842
- # }
1843
- #
1844
1599
  # @!attribute [rw] resource_group_name
1845
1600
  # The name of the resource group.
1846
1601
  # @return [String]
@@ -1894,16 +1649,6 @@ module Aws::ApplicationInsights
1894
1649
  #
1895
1650
  class UpdateComponentConfigurationResponse < Aws::EmptyStructure; end
1896
1651
 
1897
- # @note When making an API call, you may pass UpdateComponentRequest
1898
- # data as a hash:
1899
- #
1900
- # {
1901
- # resource_group_name: "ResourceGroupName", # required
1902
- # component_name: "CustomComponentName", # required
1903
- # new_component_name: "CustomComponentName",
1904
- # resource_list: ["ResourceARN"],
1905
- # }
1906
- #
1907
1652
  # @!attribute [rw] resource_group_name
1908
1653
  # The name of the resource group.
1909
1654
  # @return [String]
@@ -1935,17 +1680,6 @@ module Aws::ApplicationInsights
1935
1680
  #
1936
1681
  class UpdateComponentResponse < Aws::EmptyStructure; end
1937
1682
 
1938
- # @note When making an API call, you may pass UpdateLogPatternRequest
1939
- # data as a hash:
1940
- #
1941
- # {
1942
- # resource_group_name: "ResourceGroupName", # required
1943
- # pattern_set_name: "LogPatternSetName", # required
1944
- # pattern_name: "LogPatternName", # required
1945
- # pattern: "LogPatternRegex",
1946
- # rank: 1,
1947
- # }
1948
- #
1949
1683
  # @!attribute [rw] resource_group_name
1950
1684
  # The name of the resource group.
1951
1685
  # @return [String]
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-applicationinsights/customizations'
52
52
  # @!group service
53
53
  module Aws::ApplicationInsights
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-applicationinsights
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: 2022-10-25 00:00:00.000000000 Z
11
+ date: 2023-01-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core