aws-sdk-applicationdiscoveryservice 1.47.0 → 1.48.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 59b40f6e4c581cec5342695fecf41aa27b6c5740bbf5b4ace573a8a26d524d45
4
- data.tar.gz: fd7f4dc79f8ac8800ca5a83237c21ab5496b0644cbb2915aabd2f81d703fcfbc
3
+ metadata.gz: c223eabde7780ce1e0cd9d1a8c7bbe635759d7cd7760e91fd2b1d2c7731ba2be
4
+ data.tar.gz: 239f3cc4bdac62bec3e51610662572ba985556e3c66798793f9640b760948e0a
5
5
  SHA512:
6
- metadata.gz: b5bebaa104cce34d186140b8862bd7946e8bb83334696211f054388f6034768a67cf1dbbbb1ee8580b389fcec0f21c6c40af979228c6503ae64c49f22676875a
7
- data.tar.gz: 916a588b01494917200b860603aad7cbe66ac52aee8b894c9134988e083a976e7b22e52e0e01fd8902f8324f67b63deaef2049ed3f82b69a4daca9b08a42d7c9
6
+ metadata.gz: 1dd6c72ef0174c9d35569e9070e99c42ef16858a6074b578d5353a1d7dd4cdb84c3322d2984ffc286d7efab4f4972563a7b8358750ca3f9c3700663375562879
7
+ data.tar.gz: 5c09ed8ecfb35fa94d2982b78f87cb83442487a4f618f0726ffcde247fe3d0966e407f82dcefb337d58401223fc3b803cf212e28e3af3f1b5c74fff75173d87c
data/CHANGELOG.md CHANGED
@@ -1,6 +1,13 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.48.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.47.0 (2022-10-25)
5
12
  ------------------
6
13
 
@@ -310,4 +317,4 @@ Unreleased Changes
310
317
  1.0.0.rc1 (2016-12-05)
311
318
  ------------------
312
319
 
313
- * Feature - Initial preview release of the `aws-sdk-applicationdiscoveryservice` gem.
320
+ * Feature - Initial preview release of the `aws-sdk-applicationdiscoveryservice` gem.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.47.0
1
+ 1.48.0
@@ -1559,7 +1559,7 @@ module Aws::ApplicationDiscoveryService
1559
1559
  params: params,
1560
1560
  config: config)
1561
1561
  context[:gem_name] = 'aws-sdk-applicationdiscoveryservice'
1562
- context[:gem_version] = '1.47.0'
1562
+ context[:gem_version] = '1.48.0'
1563
1563
  Seahorse::Client::Request.new(handlers, context)
1564
1564
  end
1565
1565
 
@@ -9,104 +9,43 @@
9
9
 
10
10
  module Aws::ApplicationDiscoveryService
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://discovery-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://discovery-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://discovery.#{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://discovery.#{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
- dCI6eyJ1cmwiOiJodHRwczovL2Rpc2NvdmVyeS1maXBzLntSZWdpb259LntQ
77
- YXJ0aXRpb25SZXN1bHQjZHVhbFN0YWNrRG5zU3VmZml4fSIsInByb3BlcnRp
78
- ZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX0seyJj
79
- b25kaXRpb25zIjpbXSwiZXJyb3IiOiJGSVBTIGFuZCBEdWFsU3RhY2sgYXJl
80
- IGVuYWJsZWQsIGJ1dCB0aGlzIHBhcnRpdGlvbiBkb2VzIG5vdCBzdXBwb3J0
81
- IG9uZSBvciBib3RoIiwidHlwZSI6ImVycm9yIn1dfSx7ImNvbmRpdGlvbnMi
82
- Olt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUZJ
83
- UFMifSx0cnVlXX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRp
84
- b25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbdHJ1ZSx7ImZu
85
- IjoiZ2V0QXR0ciIsImFyZ3YiOlt7InJlZiI6IlBhcnRpdGlvblJlc3VsdCJ9
86
- LCJzdXBwb3J0c0ZJUFMiXX1dfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7
87
- ImNvbmRpdGlvbnMiOltdLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25k
88
- aXRpb25zIjpbXSwiZW5kcG9pbnQiOnsidXJsIjoiaHR0cHM6Ly9kaXNjb3Zl
89
- cnktZmlwcy57UmVnaW9ufS57UGFydGl0aW9uUmVzdWx0I2Ruc1N1ZmZpeH0i
90
- LCJwcm9wZXJ0aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0eXBlIjoiZW5kcG9p
91
- bnQifV19XX0seyJjb25kaXRpb25zIjpbXSwiZXJyb3IiOiJGSVBTIGlzIGVu
92
- YWJsZWQgYnV0IHRoaXMgcGFydGl0aW9uIGRvZXMgbm90IHN1cHBvcnQgRklQ
93
- UyIsInR5cGUiOiJlcnJvciJ9XX0seyJjb25kaXRpb25zIjpbeyJmbiI6ImJv
94
- b2xlYW5FcXVhbHMiLCJhcmd2IjpbeyJyZWYiOiJVc2VEdWFsU3RhY2sifSx0
95
- cnVlXX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRpb25zIjpb
96
- eyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbdHJ1ZSx7ImZuIjoiZ2V0
97
- QXR0ciIsImFyZ3YiOlt7InJlZiI6IlBhcnRpdGlvblJlc3VsdCJ9LCJzdXBw
98
- b3J0c0R1YWxTdGFjayJdfV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3si
99
- Y29uZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6Imh0dHBzOi8vZGlz
100
- Y292ZXJ5LntSZWdpb259LntQYXJ0aXRpb25SZXN1bHQjZHVhbFN0YWNrRG5z
101
- U3VmZml4fSIsInByb3BlcnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUi
102
- OiJlbmRwb2ludCJ9XX0seyJjb25kaXRpb25zIjpbXSwiZXJyb3IiOiJEdWFs
103
- U3RhY2sgaXMgZW5hYmxlZCBidXQgdGhpcyBwYXJ0aXRpb24gZG9lcyBub3Qg
104
- c3VwcG9ydCBEdWFsU3RhY2siLCJ0eXBlIjoiZXJyb3IifV19LHsiY29uZGl0
105
- aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6Imh0dHBzOi8vZGlzY292ZXJ5
106
- LntSZWdpb259LntQYXJ0aXRpb25SZXN1bHQjZG5zU3VmZml4fSIsInByb3Bl
107
- cnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX1d
108
- fQ==
109
-
110
- JSON
111
50
  end
112
51
  end
@@ -117,14 +117,6 @@ module Aws::ApplicationDiscoveryService
117
117
  include Aws::Structure
118
118
  end
119
119
 
120
- # @note When making an API call, you may pass AssociateConfigurationItemsToApplicationRequest
121
- # data as a hash:
122
- #
123
- # {
124
- # application_configuration_id: "ApplicationId", # required
125
- # configuration_ids: ["ConfigurationId"], # required
126
- # }
127
- #
128
120
  # @!attribute [rw] application_configuration_id
129
121
  # The configuration ID of an application with which items are to be
130
122
  # associated.
@@ -180,13 +172,6 @@ module Aws::ApplicationDiscoveryService
180
172
  include Aws::Structure
181
173
  end
182
174
 
183
- # @note When making an API call, you may pass BatchDeleteImportDataRequest
184
- # data as a hash:
185
- #
186
- # {
187
- # import_task_ids: ["ImportTaskIdentifier"], # required
188
- # }
189
- #
190
175
  # @!attribute [rw] import_task_ids
191
176
  # The IDs for the import tasks that you want to delete.
192
177
  # @return [Array<String>]
@@ -411,14 +396,6 @@ module Aws::ApplicationDiscoveryService
411
396
  include Aws::Structure
412
397
  end
413
398
 
414
- # @note When making an API call, you may pass CreateApplicationRequest
415
- # data as a hash:
416
- #
417
- # {
418
- # name: "ApplicationName", # required
419
- # description: "ApplicationDescription",
420
- # }
421
- #
422
399
  # @!attribute [rw] name
423
400
  # Name of the application to be created.
424
401
  # @return [String]
@@ -444,19 +421,6 @@ module Aws::ApplicationDiscoveryService
444
421
  include Aws::Structure
445
422
  end
446
423
 
447
- # @note When making an API call, you may pass CreateTagsRequest
448
- # data as a hash:
449
- #
450
- # {
451
- # configuration_ids: ["ConfigurationId"], # required
452
- # tags: [ # required
453
- # {
454
- # key: "TagKey", # required
455
- # value: "TagValue", # required
456
- # },
457
- # ],
458
- # }
459
- #
460
424
  # @!attribute [rw] configuration_ids
461
425
  # A list of configuration items that you want to tag.
462
426
  # @return [Array<String>]
@@ -637,13 +601,6 @@ module Aws::ApplicationDiscoveryService
637
601
  include Aws::Structure
638
602
  end
639
603
 
640
- # @note When making an API call, you may pass DeleteApplicationsRequest
641
- # data as a hash:
642
- #
643
- # {
644
- # configuration_ids: ["ApplicationId"], # required
645
- # }
646
- #
647
604
  # @!attribute [rw] configuration_ids
648
605
  # Configuration ID of an application to be deleted.
649
606
  # @return [Array<String>]
@@ -656,19 +613,6 @@ module Aws::ApplicationDiscoveryService
656
613
 
657
614
  class DeleteApplicationsResponse < Aws::EmptyStructure; end
658
615
 
659
- # @note When making an API call, you may pass DeleteTagsRequest
660
- # data as a hash:
661
- #
662
- # {
663
- # configuration_ids: ["ConfigurationId"], # required
664
- # tags: [
665
- # {
666
- # key: "TagKey", # required
667
- # value: "TagValue", # required
668
- # },
669
- # ],
670
- # }
671
- #
672
616
  # @!attribute [rw] configuration_ids
673
617
  # A list of configuration items with tags that you want to delete.
674
618
  # @return [Array<String>]
@@ -690,22 +634,6 @@ module Aws::ApplicationDiscoveryService
690
634
 
691
635
  class DeleteTagsResponse < Aws::EmptyStructure; end
692
636
 
693
- # @note When making an API call, you may pass DescribeAgentsRequest
694
- # data as a hash:
695
- #
696
- # {
697
- # agent_ids: ["AgentId"],
698
- # filters: [
699
- # {
700
- # name: "String", # required
701
- # values: ["FilterValue"], # required
702
- # condition: "Condition", # required
703
- # },
704
- # ],
705
- # max_results: 1,
706
- # next_token: "NextToken",
707
- # }
708
- #
709
637
  # @!attribute [rw] agent_ids
710
638
  # The agent or the Connector IDs for which you want information. If
711
639
  # you specify no IDs, the system returns information about all
@@ -766,13 +694,6 @@ module Aws::ApplicationDiscoveryService
766
694
  include Aws::Structure
767
695
  end
768
696
 
769
- # @note When making an API call, you may pass DescribeConfigurationsRequest
770
- # data as a hash:
771
- #
772
- # {
773
- # configuration_ids: ["ConfigurationId"], # required
774
- # }
775
- #
776
697
  # @!attribute [rw] configuration_ids
777
698
  # One or more configuration IDs.
778
699
  # @return [Array<String>]
@@ -793,15 +714,6 @@ module Aws::ApplicationDiscoveryService
793
714
  include Aws::Structure
794
715
  end
795
716
 
796
- # @note When making an API call, you may pass DescribeContinuousExportsRequest
797
- # data as a hash:
798
- #
799
- # {
800
- # export_ids: ["ConfigurationsExportId"],
801
- # max_results: 1,
802
- # next_token: "NextToken",
803
- # }
804
- #
805
717
  # @!attribute [rw] export_ids
806
718
  # The unique IDs assigned to the exports.
807
719
  # @return [Array<String>]
@@ -838,15 +750,6 @@ module Aws::ApplicationDiscoveryService
838
750
  include Aws::Structure
839
751
  end
840
752
 
841
- # @note When making an API call, you may pass DescribeExportConfigurationsRequest
842
- # data as a hash:
843
- #
844
- # {
845
- # export_ids: ["ConfigurationsExportId"],
846
- # max_results: 1,
847
- # next_token: "NextToken",
848
- # }
849
- #
850
753
  # @!attribute [rw] export_ids
851
754
  # A list of continuous export IDs to search for.
852
755
  # @return [Array<String>]
@@ -882,22 +785,6 @@ module Aws::ApplicationDiscoveryService
882
785
  include Aws::Structure
883
786
  end
884
787
 
885
- # @note When making an API call, you may pass DescribeExportTasksRequest
886
- # data as a hash:
887
- #
888
- # {
889
- # export_ids: ["ConfigurationsExportId"],
890
- # filters: [
891
- # {
892
- # name: "FilterName", # required
893
- # values: ["FilterValue"], # required
894
- # condition: "Condition", # required
895
- # },
896
- # ],
897
- # max_results: 1,
898
- # next_token: "NextToken",
899
- # }
900
- #
901
788
  # @!attribute [rw] export_ids
902
789
  # One or more unique identifiers used to query the status of an export
903
790
  # request.
@@ -956,20 +843,6 @@ module Aws::ApplicationDiscoveryService
956
843
  include Aws::Structure
957
844
  end
958
845
 
959
- # @note When making an API call, you may pass DescribeImportTasksRequest
960
- # data as a hash:
961
- #
962
- # {
963
- # filters: [
964
- # {
965
- # name: "IMPORT_TASK_ID", # accepts IMPORT_TASK_ID, STATUS, NAME
966
- # values: ["ImportTaskFilterValue"],
967
- # },
968
- # ],
969
- # max_results: 1,
970
- # next_token: "NextToken",
971
- # }
972
- #
973
846
  # @!attribute [rw] filters
974
847
  # An array of name-value pairs that you provide to filter the results
975
848
  # for the `DescribeImportTask` request to a specific subset of
@@ -1009,20 +882,6 @@ module Aws::ApplicationDiscoveryService
1009
882
  include Aws::Structure
1010
883
  end
1011
884
 
1012
- # @note When making an API call, you may pass DescribeTagsRequest
1013
- # data as a hash:
1014
- #
1015
- # {
1016
- # filters: [
1017
- # {
1018
- # name: "FilterName", # required
1019
- # values: ["FilterValue"], # required
1020
- # },
1021
- # ],
1022
- # max_results: 1,
1023
- # next_token: "NextToken",
1024
- # }
1025
- #
1026
885
  # @!attribute [rw] filters
1027
886
  # You can filter the list using a *key*-*value* format. You can
1028
887
  # separate these items by using logical operators. Allowed filters
@@ -1065,14 +924,6 @@ module Aws::ApplicationDiscoveryService
1065
924
  include Aws::Structure
1066
925
  end
1067
926
 
1068
- # @note When making an API call, you may pass DisassociateConfigurationItemsFromApplicationRequest
1069
- # data as a hash:
1070
- #
1071
- # {
1072
- # application_configuration_id: "ApplicationId", # required
1073
- # configuration_ids: ["ConfigurationId"], # required
1074
- # }
1075
- #
1076
927
  # @!attribute [rw] application_configuration_id
1077
928
  # Configuration ID of an application from which each item is
1078
929
  # disassociated.
@@ -1109,15 +960,6 @@ module Aws::ApplicationDiscoveryService
1109
960
  #
1110
961
  # [1]: http://docs.aws.amazon.com/application-discovery/latest/APIReference/API_StartExportTask.html
1111
962
  #
1112
- # @note When making an API call, you may pass ExportFilter
1113
- # data as a hash:
1114
- #
1115
- # {
1116
- # name: "FilterName", # required
1117
- # values: ["FilterValue"], # required
1118
- # condition: "Condition", # required
1119
- # }
1120
- #
1121
963
  # @!attribute [rw] name
1122
964
  # A single `ExportFilter` name. Supported filters: `agentIds`.
1123
965
  # @return [String]
@@ -1209,15 +1051,6 @@ module Aws::ApplicationDiscoveryService
1209
1051
  #
1210
1052
  # [1]: https://docs.aws.amazon.com/application-discovery/latest/userguide/discovery-api-queries.html
1211
1053
  #
1212
- # @note When making an API call, you may pass Filter
1213
- # data as a hash:
1214
- #
1215
- # {
1216
- # name: "String", # required
1217
- # values: ["FilterValue"], # required
1218
- # condition: "Condition", # required
1219
- # }
1220
- #
1221
1054
  # @!attribute [rw] name
1222
1055
  # The name of the filter.
1223
1056
  # @return [String]
@@ -1421,14 +1254,6 @@ module Aws::ApplicationDiscoveryService
1421
1254
  #
1422
1255
  # </note>
1423
1256
  #
1424
- # @note When making an API call, you may pass ImportTaskFilter
1425
- # data as a hash:
1426
- #
1427
- # {
1428
- # name: "IMPORT_TASK_ID", # accepts IMPORT_TASK_ID, STATUS, NAME
1429
- # values: ["ImportTaskFilterValue"],
1430
- # }
1431
- #
1432
1257
  # @!attribute [rw] name
1433
1258
  # The name, status, or import task ID for a specific import task.
1434
1259
  # @return [String]
@@ -1470,28 +1295,6 @@ module Aws::ApplicationDiscoveryService
1470
1295
  include Aws::Structure
1471
1296
  end
1472
1297
 
1473
- # @note When making an API call, you may pass ListConfigurationsRequest
1474
- # data as a hash:
1475
- #
1476
- # {
1477
- # configuration_type: "SERVER", # required, accepts SERVER, PROCESS, CONNECTION, APPLICATION
1478
- # filters: [
1479
- # {
1480
- # name: "String", # required
1481
- # values: ["FilterValue"], # required
1482
- # condition: "Condition", # required
1483
- # },
1484
- # ],
1485
- # max_results: 1,
1486
- # next_token: "NextToken",
1487
- # order_by: [
1488
- # {
1489
- # field_name: "OrderByElementFieldName", # required
1490
- # sort_order: "ASC", # accepts ASC, DESC
1491
- # },
1492
- # ],
1493
- # }
1494
- #
1495
1298
  # @!attribute [rw] configuration_type
1496
1299
  # A valid configuration identified by Application Discovery Service.
1497
1300
  # @return [String]
@@ -1564,17 +1367,6 @@ module Aws::ApplicationDiscoveryService
1564
1367
  include Aws::Structure
1565
1368
  end
1566
1369
 
1567
- # @note When making an API call, you may pass ListServerNeighborsRequest
1568
- # data as a hash:
1569
- #
1570
- # {
1571
- # configuration_id: "ConfigurationId", # required
1572
- # port_information_needed: false,
1573
- # neighbor_configuration_ids: ["ConfigurationId"],
1574
- # max_results: 1,
1575
- # next_token: "String",
1576
- # }
1577
- #
1578
1370
  # @!attribute [rw] configuration_id
1579
1371
  # Configuration ID of the server for which neighbors are being listed.
1580
1372
  # @return [String]
@@ -1683,14 +1475,6 @@ module Aws::ApplicationDiscoveryService
1683
1475
 
1684
1476
  # A field and direction for ordered output.
1685
1477
  #
1686
- # @note When making an API call, you may pass OrderByElement
1687
- # data as a hash:
1688
- #
1689
- # {
1690
- # field_name: "OrderByElementFieldName", # required
1691
- # sort_order: "ASC", # accepts ASC, DESC
1692
- # }
1693
- #
1694
1478
  # @!attribute [rw] field_name
1695
1479
  # The field on which to order.
1696
1480
  # @return [String]
@@ -1785,13 +1569,6 @@ module Aws::ApplicationDiscoveryService
1785
1569
  include Aws::Structure
1786
1570
  end
1787
1571
 
1788
- # @note When making an API call, you may pass StartDataCollectionByAgentIdsRequest
1789
- # data as a hash:
1790
- #
1791
- # {
1792
- # agent_ids: ["AgentId"], # required
1793
- # }
1794
- #
1795
1572
  # @!attribute [rw] agent_ids
1796
1573
  # The IDs of the agents or connectors from which to start collecting
1797
1574
  # data. If you send a request to an agent/connector ID that you do not
@@ -1823,22 +1600,6 @@ module Aws::ApplicationDiscoveryService
1823
1600
  include Aws::Structure
1824
1601
  end
1825
1602
 
1826
- # @note When making an API call, you may pass StartExportTaskRequest
1827
- # data as a hash:
1828
- #
1829
- # {
1830
- # export_data_format: ["CSV"], # accepts CSV, GRAPHML
1831
- # filters: [
1832
- # {
1833
- # name: "FilterName", # required
1834
- # values: ["FilterValue"], # required
1835
- # condition: "Condition", # required
1836
- # },
1837
- # ],
1838
- # start_time: Time.now,
1839
- # end_time: Time.now,
1840
- # }
1841
- #
1842
1603
  # @!attribute [rw] export_data_format
1843
1604
  # The file format for the returned export data. Default value is
1844
1605
  # `CSV`. **Note:** *The* `GRAPHML` *option has been deprecated.*
@@ -1885,15 +1646,6 @@ module Aws::ApplicationDiscoveryService
1885
1646
  include Aws::Structure
1886
1647
  end
1887
1648
 
1888
- # @note When making an API call, you may pass StartImportTaskRequest
1889
- # data as a hash:
1890
- #
1891
- # {
1892
- # client_request_token: "ClientRequestToken",
1893
- # name: "ImportTaskName", # required
1894
- # import_url: "ImportURL", # required
1895
- # }
1896
- #
1897
1649
  # @!attribute [rw] client_request_token
1898
1650
  # Optional. A unique token that you can provide to prevent the same
1899
1651
  # import request from occurring more than once. If you don't provide
@@ -1943,13 +1695,6 @@ module Aws::ApplicationDiscoveryService
1943
1695
  include Aws::Structure
1944
1696
  end
1945
1697
 
1946
- # @note When making an API call, you may pass StopContinuousExportRequest
1947
- # data as a hash:
1948
- #
1949
- # {
1950
- # export_id: "ConfigurationsExportId", # required
1951
- # }
1952
- #
1953
1698
  # @!attribute [rw] export_id
1954
1699
  # The unique ID assigned to this export.
1955
1700
  # @return [String]
@@ -1976,13 +1721,6 @@ module Aws::ApplicationDiscoveryService
1976
1721
  include Aws::Structure
1977
1722
  end
1978
1723
 
1979
- # @note When making an API call, you may pass StopDataCollectionByAgentIdsRequest
1980
- # data as a hash:
1981
- #
1982
- # {
1983
- # agent_ids: ["AgentId"], # required
1984
- # }
1985
- #
1986
1724
  # @!attribute [rw] agent_ids
1987
1725
  # The IDs of the agents or connectors from which to stop collecting
1988
1726
  # data.
@@ -2011,14 +1749,6 @@ module Aws::ApplicationDiscoveryService
2011
1749
  #
2012
1750
  # Do not store sensitive information (like personal data) in tags.
2013
1751
  #
2014
- # @note When making an API call, you may pass Tag
2015
- # data as a hash:
2016
- #
2017
- # {
2018
- # key: "TagKey", # required
2019
- # value: "TagValue", # required
2020
- # }
2021
- #
2022
1752
  # @!attribute [rw] key
2023
1753
  # The type of tag on which to filter.
2024
1754
  # @return [String]
@@ -2037,14 +1767,6 @@ module Aws::ApplicationDiscoveryService
2037
1767
  # The tag filter. Valid names are: `tagKey`, `tagValue`,
2038
1768
  # `configurationId`.
2039
1769
  #
2040
- # @note When making an API call, you may pass TagFilter
2041
- # data as a hash:
2042
- #
2043
- # {
2044
- # name: "FilterName", # required
2045
- # values: ["FilterValue"], # required
2046
- # }
2047
- #
2048
1770
  # @!attribute [rw] name
2049
1771
  # A name of the tag filter.
2050
1772
  # @return [String]
@@ -2060,15 +1782,6 @@ module Aws::ApplicationDiscoveryService
2060
1782
  include Aws::Structure
2061
1783
  end
2062
1784
 
2063
- # @note When making an API call, you may pass UpdateApplicationRequest
2064
- # data as a hash:
2065
- #
2066
- # {
2067
- # configuration_id: "ApplicationId", # required
2068
- # name: "ApplicationName",
2069
- # description: "ApplicationDescription",
2070
- # }
2071
- #
2072
1785
  # @!attribute [rw] configuration_id
2073
1786
  # Configuration ID of the application to be updated.
2074
1787
  # @return [String]
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-applicationdiscoveryservice/customizations'
52
52
  # @!group service
53
53
  module Aws::ApplicationDiscoveryService
54
54
 
55
- GEM_VERSION = '1.47.0'
55
+ GEM_VERSION = '1.48.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-applicationdiscoveryservice
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.47.0
4
+ version: 1.48.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