You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The name and description of a secret environment variable.
56
56
properties:
@@ -91,13 +91,22 @@ types:
91
91
- service
92
92
- event
93
93
- job
94
-
- mc-app
94
+
- merchant-center-custom-application
95
95
- assets
96
96
standardConfiguration:
97
-
type: ConfigurationKeyStandard[]
97
+
type: StandardConfigurationKey[]
98
98
description: Contains the name, description, and default values of standard environment variables.
99
99
securedConfiguration:
100
-
type: ConfigurationKeySecured[]
100
+
type: SecuredConfigurationKey[]
101
+
description: Contains the name and description of secret environment variables.
102
+
ConnectorGlobalConfiguration:
103
+
description: Global configuration applied to all applications in the deployment.
104
+
properties:
105
+
standardConfiguration?:
106
+
type: StandardConfigurationKey[]
107
+
description: Contains the name and description of standard environment variables.
108
+
securedConfiguration?:
109
+
type: SecuredConfigurationKey[]
101
110
description: Contains the name and description of secret environment variables.
102
111
DeploymentConfigurationApplication:
103
112
description: |
@@ -270,9 +279,30 @@ types:
270
279
repository:
271
280
type: Repository
272
281
description: Details of the GitHub repository that contains the Connect applications.
282
+
configurations?:
283
+
type: ConnectorConfigurationApplication[]
284
+
description: Configurations needed by Connectors for hosting. Loaded as environment variables in the application.
285
+
globalConfiguration?:
286
+
type: ConnectorGlobalConfiguration
287
+
description: Global configuration applied to all applications in the deployment.
273
288
certified:
274
289
type: boolean
275
290
description: If `true`, the Connector is certified.
291
+
supportedRegions?:
292
+
type: Region[]
293
+
description: If not empty, Connectors can only be deployed in these Regions. If empty, Connectors can be deployed in any [supported Region](hosts-and-authorization#hosts).
294
+
documentationUrl?:
295
+
type: string
296
+
description: URL to the documentation of the Connector.
297
+
DeploymentGlobalConfiguration:
298
+
description: Global configuration applied to all applications in the deployment.
299
+
properties:
300
+
standardConfiguration?:
301
+
type: ConfigurationValue[]
302
+
description: List of standard environment variables.
303
+
securedConfiguration?:
304
+
type: ConfigurationValue[]
305
+
description: List of secured environment variables.
0 commit comments