-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcommoncli.services.yml
373 lines (368 loc) · 15 KB
/
commoncli.services.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
services:
_defaults:
public: true
http_client_factory.content_hub:
class: Acquia\Console\ContentHub\Client\ContentHubClientFactory
drupal_service_factory:
class: Acquia\Console\ContentHub\Command\Helpers\DrupalServiceFactory
version_fetcher:
class: Acquia\Console\ContentHub\Command\Helpers\VersionFetcher
contenthub_service_uuid_setter:
class: Acquia\Console\ContentHub\EventSubscriber\SetClientServiceUuid
arguments: ['@platform_command_executioner']
tags:
- { name: kernel.event_subscriber }
module_discoverer:
class: Acquia\Console\ContentHub\Command\Helpers\ModuleDiscoverer
arguments: ['@drupal_service_factory']
# Commands
command.contenthub.backup.list:
class: Acquia\Console\ContentHub\Command\Backups\BackupList
arguments: ['@config.storage']
tags:
- { name: common_console_command }
command.contenthub.backup.create:
class: Acquia\Console\ContentHub\Command\Backups\BackupCreate
arguments: ['@event_dispatcher']
tags:
- { name: common_console_command }
command.contenthub.backup.delete:
class: Acquia\Console\ContentHub\Command\Backups\BackupDelete
arguments: ['@event_dispatcher']
tags:
- { name: common_console_command }
command.contenthub.backup.restore:
class: Acquia\Console\ContentHub\Command\Backups\BackupRestore
arguments: ['@event_dispatcher']
tags:
- { name: common_console_command }
command.contenthub.ace.backup.create:
class: Acquia\Console\ContentHub\Command\Backups\AcquiaCloudBackupCreate
public: false
arguments: ['@event_dispatcher', '@config.storage', '@platform_command_executioner']
tags:
- { name: common_console_command }
command.contenthub.ace_multi.backup.create:
class: Acquia\Console\ContentHub\Command\Backups\AcquiaCloudBackupCreateMultiSite
public: false
arguments: ['@event_dispatcher', '@config.storage', '@platform_command_executioner']
tags:
- { name: common_console_command }
command.contenthub.ace.backup.restore:
class: Acquia\Console\ContentHub\Command\Backups\AcquiaCloudBackupRestore
public: false
arguments: ['@event_dispatcher', '@config.storage', '@platform_command_executioner']
tags:
- { name: common_console_command }
command.contenthub.ace_multi.backup.restore:
class: Acquia\Console\ContentHub\Command\Backups\AcquiaCloudBackupRestoreMultisite
public: false
arguments: [ '@event_dispatcher', '@config.storage', '@platform_command_executioner' ]
tags:
- { name: common_console_command }
command.contenthub.ace.backup.delete:
class: Acquia\Console\ContentHub\Command\Backups\AcquiaCloudBackupDelete
public: false
arguments: [ '@event_dispatcher', '@config.storage', '@platform_command_executioner' ]
tags:
- { name: common_console_command }
command.contenthub.ace_multi.backup.delete:
class: Acquia\Console\ContentHub\Command\Backups\AcquiaCloudBackupDeleteMultisite
public: false
arguments: [ '@event_dispatcher', '@config.storage', '@platform_command_executioner' ]
tags:
- { name: common_console_command }
command.contenthub.ace.cron_check:
class: Acquia\Console\ContentHub\Command\Cron\AcquiaCloudCronCheck
arguments: ['@event_dispatcher']
tags:
- { name: common_console_command }
command.contenthub.ace.cron_create:
class: Acquia\Console\ContentHub\Command\Cron\AcquiaCloudCronCreate
arguments: ['@event_dispatcher', '@platform_command_executioner']
tags:
- { name: common_console_command }
command.contenthub.ace_multi.cron_create:
class: Acquia\Console\ContentHub\Command\Cron\AcquiaCloudCronCreateMultiSite
arguments: ['@event_dispatcher', '@platform_command_executioner']
tags:
- { name: common_console_command }
command.contenthub.acsf.backup.create:
class: Acquia\Console\ContentHub\Command\Backups\AcsfBackupCreate
public: false
arguments: ['@event_dispatcher', '@config.storage', '@platform_command_executioner']
tags:
- { name: common_console_command }
command.contenthub.acsf.backup.restore:
class: Acquia\Console\ContentHub\Command\Backups\AcsfBackupRestore
public: false
arguments: ['@event_dispatcher', '@config.storage', '@platform_command_executioner']
tags:
- { name: common_console_command }
command.contenthub.acsf.backup.delete:
class: Acquia\Console\ContentHub\Command\Backups\AcsfBackupDelete
public: false
arguments: [ '@event_dispatcher', '@config.storage', '@platform_command_executioner' ]
tags:
- { name: common_console_command }
command.contenthub.acsf.cron_create:
class: Acquia\Console\ContentHub\Command\Cron\AcsfCronCreate
arguments: ['@event_dispatcher', '@platform_command_executioner']
tags:
- { name: common_console_command }
command.contenthub.acsf.cron_check:
class: Acquia\Console\ContentHub\Command\Cron\AcsfCronCheck
arguments: ['@event_dispatcher']
tags:
- { name: common_console_command }
command.contenthub.upgrade_start:
class: Acquia\Console\ContentHub\Command\ContentHubUpgradeStart
arguments: ['@event_dispatcher', '@platform_command_executioner']
tags:
- { name: common_console_command }
command.contenthub.subscription_set:
class: Acquia\Console\ContentHub\Command\ContentHubSubscriptionSet
arguments: ['@event_dispatcher']
tags:
- { name: common_console_command }
command.contenthub.audit:
class: Acquia\Console\ContentHub\Command\ContentHubAudit
tags:
- { name: common_console_command }
command.drush.version:
class: Acquia\Console\ContentHub\Command\DrushVersionCheck
arguments: ['@event_dispatcher', '@platform_command_executioner']
tags:
- { name: common_console_command }
command.contenthub.audit.config_uuid:
class: Acquia\Console\ContentHub\Command\ContentHubAuditCheckUuid
tags:
- { name: common_console_command }
command.contenthub.audit.tmp_files:
class: Acquia\Console\ContentHub\Command\ContentHubAuditTmpFiles
tags:
- { name: common_console_command }
command.contenthub.audit.clients:
class: Acquia\Console\ContentHub\Command\ContentHubAuditClients
tags:
- { name: common_console_command }
command.contenthub.audit.client-compare:
class: Acquia\Console\ContentHub\Command\ContentHubClientCompare
public: false
arguments: ['@event_dispatcher', '@platform_command_executioner']
tags:
- { name: common_console_command }
command.contenthub.audit.ssl_cert:
class: Acquia\Console\ContentHub\Command\ContentHubAuditSslCertificate
public: false
tags:
- { name: common_console_command }
command.contenthub.audit.depcalc:
class: Acquia\Console\ContentHub\Command\ContentHubAuditDepcalc
public: false
tags:
- { name: common_console_command }
command.contenthub.audit.content_hub_settings:
class: Acquia\Console\ContentHub\Command\ContentHubAuditChSettings
tags:
- { name: common_console_command }
command.contenthub.module_checker:
class: Acquia\Console\ContentHub\Command\Helpers\ContentHubModuleChecker
tags:
- { name: common_console_command }
command.contenthub.webhook_status:
class: Acquia\Console\ContentHub\Command\ContentHubWebhookStatus
tags:
- { name: common_console_command }
command.contenthub.health_check.webhook_status:
class: Acquia\Console\ContentHub\Command\ContentHubHealthCheckWebhookStatus
tags:
- { name: common_console_command }
command.contenthub.audit.stream_wrappers:
class: Acquia\Console\ContentHub\Command\ContentHubAuditStreamWrappers
public: false
tags:
- { name: common_console_command }
command.contenthub.audit.services:
class: Acquia\Console\ContentHub\Command\ContentHubAuditChServices
public: false
tags:
- { name: common_console_command }
command.contenthub.health_check.interest_list:
class: Acquia\Console\ContentHub\Command\ContentHubInterestListCheck
public: false
tags:
- { name: common_console_command }
command.contenthub.health_check.interest_diff:
class: Acquia\Console\ContentHub\Command\ContentHubInterestListDiff
tags:
- { name: common_console_command }
command.contenthub.helper.drush:
class: Acquia\Console\ContentHub\Command\Helpers\DrushWrapper
tags:
- { name: common_console_command }
command.contenthub.verify.default_filters:
class: Acquia\Console\ContentHub\Command\ContentHubVerifyWebhooksDefaultFilters
public: false
tags:
- { name: common_console_command }
command.contenthub.verify_current_site_webhook:
class: Acquia\Console\ContentHub\Command\ContentHubVerifyCurrentSiteWebhook
tags:
- { name: common_console_command }
command.contenthub.panelizer:
class: Acquia\Console\ContentHub\Command\ContentHubPanelizer
tags:
- { name: common_console_command }
command.contenthub.custom_field:
class: Acquia\Console\ContentHub\Command\ContentHubCustomFields
tags:
- { name: common_console_command }
command.contenthub.layout_builder_defaults:
class: Acquia\Console\ContentHub\Command\ContentHubLayoutBuilderDefaults
tags:
- { name: common_console_command }
command.contenthub.diff_module:
class: Acquia\Console\ContentHub\Command\ContentHubDiff
public: false
tags:
- { name: common_console_command }
command.contenthub.verify_publisher_queues:
class: Acquia\Console\ContentHub\Command\ContentHubVerifyPublisherQueue
tags:
- { name: common_console_command }
command.contenthub.get_snapshot:
class: Acquia\Console\ContentHub\Command\ServiceSnapshots\ContentHubGetSnapshots
tags:
- { name: common_console_command }
command.contenthub.create_snapshot:
class: Acquia\Console\ContentHub\Command\ServiceSnapshots\ContentHubCreateSnapshot
tags:
- { name: common_console_command }
command.contenthub.delete_snapshot:
class: Acquia\Console\ContentHub\Command\ServiceSnapshots\ContentHubDeleteSnapshot
arguments: ['@event_dispatcher', '@platform_command_executioner']
tags:
- { name: common_console_command }
command.contenthub.delete_snapshot_helper:
class: Acquia\Console\ContentHub\Command\Helpers\ContentHubDeleteSnapshotHelper
public: false
tags:
- { name: common_console_command }
command.contenthub.restore_snapshot_helper:
class: Acquia\Console\ContentHub\Command\Helpers\ContentHubRestoreSnapshotHelper
public: false
tags:
- { name: common_console_command }
# Migration commands
command.contenthub.migrate.filters:
class: Acquia\Console\ContentHub\Command\Migrate\ContentHubMigrateFilters
arguments: ['@platform_command_executioner']
tags:
- { name: common_console_command }
command.contenthub.migrate.publisher_upgrade:
class: Acquia\Console\ContentHub\Command\Migrate\ContentHubMigrationPublisherUpgrade
arguments: ['@platform_command_executioner']
tags:
- { name: common_console_command }
command.contenthub.queue:
class: Acquia\Console\ContentHub\Command\ContentHubQueue
public: false
tags:
- { name: common_console_command }
command.contenthub.migrate.enable_unsubscribe:
class: Acquia\Console\ContentHub\Command\Migrate\ContentHubMigrateEnableUnsubscribe
tags:
- { name: common_console_command }
command.contenthub.migrate.prepare_upgrade:
class: Acquia\Console\ContentHub\Command\Migrate\ContentHubMigrationPrepareUpgrade
arguments: ['@platform_command_executioner']
tags:
- { name: common_console_command }
command.contenthub.migrate.purge_del_webhooks:
class: Acquia\Console\ContentHub\Command\Migrate\ContentHubMigrationPurgeAndDeleteWebhooks
tags:
- { name: common_console_command }
command.contenthub.module_exist:
class: Acquia\Console\ContentHub\Command\ContentHubModuleVersion
public: false
tags:
- { name: common_console_command }
command.contenthub.service_uuid:
class: Acquia\Console\ContentHub\Command\ContentHubServiceUuid
public: false
tags:
- { name: common_console_command }
command.contenthub.lift_module_version:
class: Acquia\Console\ContentHub\Command\ContentHubLiftVersion
tags:
- { name: common_console_command }
command.contenthub.module_version:
class: Acquia\Console\ContentHub\Command\ContentHubVersion
arguments: ['@event_dispatcher', '@platform_command_executioner']
tags:
- { name: common_console_command }
command.contenthub.helper.with_queue:
class: Acquia\Console\ContentHub\Command\Helpers\ContentHubQueueCheck
tags:
- { name: common_console_command }
# Pre-qualification commands
command.contenthub.pq.all:
class: Acquia\Console\ContentHub\Command\PqCommands\ContentHubPqBundle
tags:
- { name: common_console_command }
command.contenthub.pq.general:
class: Acquia\Console\ContentHub\Command\PqCommands\ContentHubPqGeneral
tags:
- { name: common_console_command }
arguments: ['@drupal_service_factory', '@version_fetcher']
command.contenthub.pq.entity_types:
class: Acquia\Console\ContentHub\Command\PqCommands\ContentHubPqEntityTypes
tags:
- { name: common_console_command }
arguments: ['@module_discoverer', '@drupal_service_factory']
command.contenthub.pq.code_check:
class: Acquia\Console\ContentHub\Command\PqCommands\ContentHubPqCodeCheck
tags:
- { name: common_console_command }
arguments: ['@drupal_service_factory']
command.contenthub.pq.dependencies:
class: Acquia\Console\ContentHub\Command\PqCommands\ContentHubPqDependencies
tags:
- { name: common_console_command }
arguments: ['@drupal_service_factory']
command.contenthub.pq.modules:
class: Acquia\Console\ContentHub\Command\PqCommands\ContentHubPqModules
tags:
- { name: common_console_command }
arguments: ['@module_discoverer']
command.contenthub.pq.entity_structure:
class: Acquia\Console\ContentHub\Command\PqCommands\ContentHubPqEntityStructure
tags:
- { name: common_console_command }
arguments: [ '@drupal_service_factory' ]
command.contenthub.pq.asymmetric_paragraphs:
class: Acquia\Console\ContentHub\Command\PqCommands\ContentHubPqAsymmetricParagraphs
tags:
- { name: common_console_command }
arguments: [ '@drupal_service_factory' ]
command.contenthub.pq.languages:
class: Acquia\Console\ContentHub\Command\PqCommands\ContentHubPqLanguages
tags:
- { name: common_console_command }
arguments: ['@drupal_service_factory']
command.contenthub.pq.non_translatables:
class: Acquia\Console\ContentHub\Command\PqCommands\ContentHubPqNonTranslatables
tags:
- { name: common_console_command }
arguments: ['@drupal_service_factory']
command.contenthub.pq.single_translation:
class: Acquia\Console\ContentHub\Command\PqCommands\ContentHubPqDiscoverTranslations
tags:
- { name: common_console_command }
arguments: ['@drupal_service_factory']
command.contenthub.entity_scan.orphaned:
class: Acquia\Console\ContentHub\Command\ContentHubEntityScanOrphaned
arguments: ['@event_dispatcher', '@platform_command_executioner']
tags:
- { name: common_console_command }