harness-mcp-v2 3.2.6 → 3.2.7

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.
Files changed (61) hide show
  1. package/README.md +4 -4
  2. package/build/data/schemas/v0/pipeline.d.ts.map +1 -1
  3. package/build/data/schemas/v0/pipeline.js +1985 -398
  4. package/build/data/schemas/v0/pipeline.js.map +1 -1
  5. package/build/data/schemas/v0/template.d.ts.map +1 -1
  6. package/build/data/schemas/v0/template.js +4143 -2125
  7. package/build/data/schemas/v0/template.js.map +1 -1
  8. package/build/data/schemas/v1/pipeline.d.ts.map +1 -1
  9. package/build/data/schemas/v1/pipeline.js +18 -20
  10. package/build/data/schemas/v1/pipeline.js.map +1 -1
  11. package/build/data/schemas/v1/template.d.ts.map +1 -1
  12. package/build/data/schemas/v1/template.js +18 -20
  13. package/build/data/schemas/v1/template.js.map +1 -1
  14. package/build/index.js +3 -3
  15. package/build/index.js.map +1 -1
  16. package/build/registry/extractors.d.ts +5 -0
  17. package/build/registry/extractors.d.ts.map +1 -1
  18. package/build/registry/extractors.js +6 -0
  19. package/build/registry/extractors.js.map +1 -1
  20. package/build/registry/toolsets/ai-evals.d.ts.map +1 -1
  21. package/build/registry/toolsets/ai-evals.js +10 -12
  22. package/build/registry/toolsets/ai-evals.js.map +1 -1
  23. package/build/registry/toolsets/ccm.d.ts.map +1 -1
  24. package/build/registry/toolsets/ccm.js +114 -12
  25. package/build/registry/toolsets/ccm.js.map +1 -1
  26. package/build/search/entity-index.d.ts +14 -0
  27. package/build/search/entity-index.d.ts.map +1 -0
  28. package/build/search/entity-index.js +88 -0
  29. package/build/search/entity-index.js.map +1 -0
  30. package/build/search/manager.d.ts.map +1 -1
  31. package/build/search/manager.js +16 -12
  32. package/build/search/manager.js.map +1 -1
  33. package/build/tools/harness-execute.d.ts.map +1 -1
  34. package/build/tools/harness-execute.js +18 -9
  35. package/build/tools/harness-execute.js.map +1 -1
  36. package/build/tools/harness-get.d.ts.map +1 -1
  37. package/build/tools/harness-get.js +4 -6
  38. package/build/tools/harness-get.js.map +1 -1
  39. package/build/tools/harness-list.d.ts.map +1 -1
  40. package/build/tools/harness-list.js +4 -6
  41. package/build/tools/harness-list.js.map +1 -1
  42. package/build/tools/harness-search.d.ts.map +1 -1
  43. package/build/tools/harness-search.js +2 -0
  44. package/build/tools/harness-search.js.map +1 -1
  45. package/build/utils/http-app.d.ts +13 -0
  46. package/build/utils/http-app.d.ts.map +1 -0
  47. package/build/utils/http-app.js +27 -0
  48. package/build/utils/http-app.js.map +1 -0
  49. package/build/utils/runtime-input-resolver.d.ts +10 -0
  50. package/build/utils/runtime-input-resolver.d.ts.map +1 -1
  51. package/build/utils/runtime-input-resolver.js +216 -0
  52. package/build/utils/runtime-input-resolver.js.map +1 -1
  53. package/build/utils/svg/render-png-child.d.ts +2 -0
  54. package/build/utils/svg/render-png-child.d.ts.map +1 -0
  55. package/build/utils/svg/render-png-child.js +30 -0
  56. package/build/utils/svg/render-png-child.js.map +1 -0
  57. package/build/utils/svg/render-png.d.ts +4 -4
  58. package/build/utils/svg/render-png.d.ts.map +1 -1
  59. package/build/utils/svg/render-png.js +101 -14
  60. package/build/utils/svg/render-png.js.map +1 -1
  61. package/package.json +1 -1
@@ -46044,6 +46044,50 @@ const schema = {
46044
46044
  "$ref": "#/definitions/pipeline/steps/common/common-jexl"
46045
46045
  }
46046
46046
  ]
46047
+ },
46048
+ "targetId": {
46049
+ "description": "Optional target UUID override for eval runs (applied when creating the run via evalId)",
46050
+ "oneOf": [
46051
+ {
46052
+ "$ref": "#/definitions/pipeline/steps/common/string-without-jexl"
46053
+ },
46054
+ {
46055
+ "$ref": "#/definitions/pipeline/steps/common/common-jexl"
46056
+ }
46057
+ ]
46058
+ },
46059
+ "datasetId": {
46060
+ "description": "Optional dataset UUID override for eval runs (applied when creating the run via evalId)",
46061
+ "oneOf": [
46062
+ {
46063
+ "$ref": "#/definitions/pipeline/steps/common/string-without-jexl"
46064
+ },
46065
+ {
46066
+ "$ref": "#/definitions/pipeline/steps/common/common-jexl"
46067
+ }
46068
+ ]
46069
+ },
46070
+ "llmConnectorRef": {
46071
+ "description": "Optional Harness LLM connector reference for prompt targets (e.g. account.connector_OpenAI_1234)",
46072
+ "oneOf": [
46073
+ {
46074
+ "$ref": "#/definitions/pipeline/steps/common/string-without-jexl"
46075
+ },
46076
+ {
46077
+ "$ref": "#/definitions/pipeline/steps/common/common-jexl"
46078
+ }
46079
+ ]
46080
+ },
46081
+ "model": {
46082
+ "description": "Optional provider model string override (e.g. gpt-4o); takes precedence over the connector default model",
46083
+ "oneOf": [
46084
+ {
46085
+ "$ref": "#/definitions/pipeline/steps/common/string-without-jexl"
46086
+ },
46087
+ {
46088
+ "$ref": "#/definitions/pipeline/steps/common/common-jexl"
46089
+ }
46090
+ ]
46047
46091
  }
46048
46092
  }
46049
46093
  }
@@ -46129,6 +46173,50 @@ const schema = {
46129
46173
  }
46130
46174
  ]
46131
46175
  },
46176
+ "targetId": {
46177
+ "description": "Optional target UUID override for eval runs (applied when creating the run via evalId)",
46178
+ "oneOf": [
46179
+ {
46180
+ "$ref": "#/definitions/pipeline/steps/common/string-without-jexl"
46181
+ },
46182
+ {
46183
+ "$ref": "#/definitions/pipeline/steps/common/common-jexl"
46184
+ }
46185
+ ]
46186
+ },
46187
+ "datasetId": {
46188
+ "description": "Optional dataset UUID override for eval runs (applied when creating the run via evalId)",
46189
+ "oneOf": [
46190
+ {
46191
+ "$ref": "#/definitions/pipeline/steps/common/string-without-jexl"
46192
+ },
46193
+ {
46194
+ "$ref": "#/definitions/pipeline/steps/common/common-jexl"
46195
+ }
46196
+ ]
46197
+ },
46198
+ "llmConnectorRef": {
46199
+ "description": "Optional Harness LLM connector reference for prompt targets (e.g. account.connector_OpenAI_1234)",
46200
+ "oneOf": [
46201
+ {
46202
+ "$ref": "#/definitions/pipeline/steps/common/string-without-jexl"
46203
+ },
46204
+ {
46205
+ "$ref": "#/definitions/pipeline/steps/common/common-jexl"
46206
+ }
46207
+ ]
46208
+ },
46209
+ "model": {
46210
+ "description": "Optional provider model string override (e.g. gpt-4o); takes precedence over the connector default model",
46211
+ "oneOf": [
46212
+ {
46213
+ "$ref": "#/definitions/pipeline/steps/common/string-without-jexl"
46214
+ },
46215
+ {
46216
+ "$ref": "#/definitions/pipeline/steps/common/common-jexl"
46217
+ }
46218
+ ]
46219
+ },
46132
46220
  "description": {
46133
46221
  "desc": "This is the description for AiEvalStepInfo"
46134
46222
  }
@@ -63886,6 +63974,222 @@ const schema = {
63886
63974
  },
63887
63975
  "$schema": "http://json-schema.org/draft-07/schema#"
63888
63976
  },
63977
+ "GitOpsRollbackStepNode": {
63978
+ "title": "GitOpsRollbackStepNode",
63979
+ "type": "object",
63980
+ "required": [
63981
+ "identifier",
63982
+ "name",
63983
+ "spec",
63984
+ "type"
63985
+ ],
63986
+ "properties": {
63987
+ "description": {
63988
+ "type": "string"
63989
+ },
63990
+ "enforce": {
63991
+ "$ref": "#/definitions/pipeline/common/PolicyConfig"
63992
+ },
63993
+ "failureStrategies": {
63994
+ "oneOf": [
63995
+ {
63996
+ "type": "array",
63997
+ "items": {
63998
+ "$ref": "#/definitions/pipeline/common/FailureStrategyConfig"
63999
+ }
64000
+ },
64001
+ {
64002
+ "type": "string",
64003
+ "pattern": "^<\\+input>$",
64004
+ "minLength": 1
64005
+ }
64006
+ ]
64007
+ },
64008
+ "identifier": {
64009
+ "type": "string",
64010
+ "pattern": "^[a-zA-Z_][0-9a-zA-Z_]{0,127}$"
64011
+ },
64012
+ "name": {
64013
+ "type": "string",
64014
+ "pattern": "^[a-zA-Z_0-9-.][-0-9a-zA-Z_\\s.]{0,127}$"
64015
+ },
64016
+ "strategy": {
64017
+ "oneOf": [
64018
+ {
64019
+ "$ref": "#/definitions/pipeline/common/StrategyConfig"
64020
+ },
64021
+ {
64022
+ "type": "string",
64023
+ "pattern": "^<\\+input>$",
64024
+ "minLength": 1
64025
+ }
64026
+ ]
64027
+ },
64028
+ "timeout": {
64029
+ "type": "string",
64030
+ "pattern": "^(([1-9])+\\d+[s])|(((([1-9])+\\d*[mhwd])+([\\s]?\\d+[smhwd])*)|(.*<\\+.*>(?!.*\\.executionInput\\(\\)).*)|(^$))$"
64031
+ },
64032
+ "type": {
64033
+ "type": "string",
64034
+ "enum": [
64035
+ "GitOpsRollback"
64036
+ ]
64037
+ },
64038
+ "when": {
64039
+ "oneOf": [
64040
+ {
64041
+ "$ref": "#/definitions/pipeline/common/StepWhenCondition"
64042
+ },
64043
+ {
64044
+ "type": "string",
64045
+ "pattern": "^<\\+input>$",
64046
+ "minLength": 1
64047
+ }
64048
+ ]
64049
+ }
64050
+ },
64051
+ "$schema": "http://json-schema.org/draft-07/schema#",
64052
+ "allOf": [
64053
+ {
64054
+ "if": {
64055
+ "properties": {
64056
+ "type": {
64057
+ "const": "GitOpsRollback"
64058
+ }
64059
+ }
64060
+ },
64061
+ "then": {
64062
+ "properties": {
64063
+ "spec": {
64064
+ "$ref": "#/definitions/pipeline/steps/cd/GitOpsRollbackStepInfo"
64065
+ }
64066
+ }
64067
+ }
64068
+ }
64069
+ ]
64070
+ },
64071
+ "GitOpsRollbackStepInfo": {
64072
+ "title": "GitOpsRollbackStepInfo",
64073
+ "type": "object",
64074
+ "required": [
64075
+ "applicationsList"
64076
+ ],
64077
+ "properties": {
64078
+ "applicationsList": {
64079
+ "oneOf": [
64080
+ {
64081
+ "type": "array",
64082
+ "items": {
64083
+ "$ref": "#/definitions/pipeline/steps/cd/AgentApplicationRollbackTargets"
64084
+ }
64085
+ },
64086
+ {
64087
+ "type": "string",
64088
+ "pattern": "^<\\+input>((\\.)((executionInput\\(\\))|(allowedValues|selectOneFrom|selectManyFrom|default|regex)\\(.+?\\)))*$",
64089
+ "minLength": 1
64090
+ }
64091
+ ]
64092
+ },
64093
+ "rollBackSteps": {
64094
+ "oneOf": [
64095
+ {
64096
+ "type": "integer",
64097
+ "minimum": 1
64098
+ },
64099
+ {
64100
+ "type": "string",
64101
+ "pattern": "(<\\+.+>.*)",
64102
+ "minLength": 1
64103
+ }
64104
+ ]
64105
+ },
64106
+ "prune": {
64107
+ "oneOf": [
64108
+ {
64109
+ "type": "boolean"
64110
+ },
64111
+ {
64112
+ "type": "string"
64113
+ }
64114
+ ]
64115
+ },
64116
+ "waitTillHealthy": {
64117
+ "oneOf": [
64118
+ {
64119
+ "type": "boolean"
64120
+ },
64121
+ {
64122
+ "type": "string"
64123
+ }
64124
+ ]
64125
+ },
64126
+ "failOnTimeout": {
64127
+ "oneOf": [
64128
+ {
64129
+ "type": "boolean"
64130
+ },
64131
+ {
64132
+ "type": "string",
64133
+ "pattern": "(<\\+.+>.*)",
64134
+ "minLength": 1
64135
+ }
64136
+ ]
64137
+ }
64138
+ },
64139
+ "$schema": "http://json-schema.org/draft-07/schema#",
64140
+ "allOf": [
64141
+ {
64142
+ "dependencies": {
64143
+ "failOnTimeout": [
64144
+ "waitTillHealthy"
64145
+ ]
64146
+ }
64147
+ }
64148
+ ],
64149
+ "$ref": "#/definitions/pipeline/common/StepSpecType"
64150
+ },
64151
+ "AgentApplicationRollbackTargets": {
64152
+ "title": "AgentApplicationRollbackTargets",
64153
+ "type": "object",
64154
+ "required": [
64155
+ "agentId",
64156
+ "applicationName"
64157
+ ],
64158
+ "properties": {
64159
+ "agentId": {
64160
+ "type": "string"
64161
+ },
64162
+ "applicationName": {
64163
+ "type": "string"
64164
+ },
64165
+ "historyId": {
64166
+ "oneOf": [
64167
+ {
64168
+ "type": "integer"
64169
+ },
64170
+ {
64171
+ "type": "string",
64172
+ "pattern": "(<\\+.+>.*)",
64173
+ "minLength": 1
64174
+ }
64175
+ ]
64176
+ },
64177
+ "rollBackSteps": {
64178
+ "oneOf": [
64179
+ {
64180
+ "type": "integer",
64181
+ "minimum": 1
64182
+ },
64183
+ {
64184
+ "type": "string",
64185
+ "pattern": "(<\\+.+>.*)",
64186
+ "minLength": 1
64187
+ }
64188
+ ]
64189
+ }
64190
+ },
64191
+ "$schema": "http://json-schema.org/draft-07/schema#"
64192
+ },
63889
64193
  "GitOpsRolloutStepNode": {
63890
64194
  "title": "GitOpsRolloutStepNode",
63891
64195
  "type": "object",
@@ -90588,8 +90892,8 @@ const schema = {
90588
90892
  }
90589
90893
  }
90590
90894
  },
90591
- "GoogleCloudRunTrafficShiftStepNode": {
90592
- "title": "GoogleCloudRunTrafficShiftStepNode",
90895
+ "ShiftGoogleAgentRuntimeTrafficStepNode": {
90896
+ "title": "ShiftGoogleAgentRuntimeTrafficStepNode",
90593
90897
  "type": "object",
90594
90898
  "required": [
90595
90899
  "identifier",
@@ -90599,7 +90903,7 @@ const schema = {
90599
90903
  "properties": {
90600
90904
  "description": {
90601
90905
  "type": "string",
90602
- "desc": "This is the description for GoogleCloudRunTrafficShiftStepNode"
90906
+ "desc": "This is the description for ShiftGoogleAgentRuntimeTrafficStepNode"
90603
90907
  },
90604
90908
  "enforce": {
90605
90909
  "$ref": "#/definitions/pipeline/common/PolicyConfig"
@@ -90646,7 +90950,7 @@ const schema = {
90646
90950
  "type": {
90647
90951
  "type": "string",
90648
90952
  "enum": [
90649
- "GoogleCloudRunTrafficShift"
90953
+ "ShiftGoogleAgentRuntimeTraffic"
90650
90954
  ]
90651
90955
  },
90652
90956
  "when": {
@@ -90668,22 +90972,22 @@ const schema = {
90668
90972
  "if": {
90669
90973
  "properties": {
90670
90974
  "type": {
90671
- "const": "GoogleCloudRunTrafficShift"
90975
+ "const": "ShiftGoogleAgentRuntimeTraffic"
90672
90976
  }
90673
90977
  }
90674
90978
  },
90675
90979
  "then": {
90676
90980
  "properties": {
90677
90981
  "spec": {
90678
- "$ref": "#/definitions/pipeline/steps/cd/GoogleCloudRunTrafficShiftStepInfo"
90982
+ "$ref": "#/definitions/pipeline/steps/cd/ShiftGoogleAgentRuntimeTrafficStepInfo"
90679
90983
  }
90680
90984
  }
90681
90985
  }
90682
90986
  }
90683
90987
  ]
90684
90988
  },
90685
- "GoogleCloudRunTrafficShiftStepInfo": {
90686
- "title": "GoogleCloudRunTrafficShiftStepInfo",
90989
+ "ShiftGoogleAgentRuntimeTrafficStepInfo": {
90990
+ "title": "ShiftGoogleAgentRuntimeTrafficStepInfo",
90687
90991
  "allOf": [
90688
90992
  {
90689
90993
  "$ref": "#/definitions/pipeline/common/StepSpecType"
@@ -90758,17 +91062,23 @@ const schema = {
90758
91062
  "preExecution": {
90759
91063
  "type": "string"
90760
91064
  },
90761
- "revisionTrafficDetails": {
91065
+ "target": {
91066
+ "type": "object",
91067
+ "properties": {
91068
+ "revisionId": {
91069
+ "type": "string"
91070
+ }
91071
+ }
91072
+ },
91073
+ "weight": {
90762
91074
  "oneOf": [
90763
91075
  {
90764
- "type": "array",
90765
- "items": {
90766
- "$ref": "#/definitions/pipeline/steps/cd/GoogleCloudRunRevisionMetadata"
90767
- }
91076
+ "type": "integer",
91077
+ "format": "int32"
90768
91078
  },
90769
91079
  {
90770
91080
  "type": "string",
90771
- "pattern": "^<\\+input>((\\.)((executionInput\\(\\))|(allowedValues|selectOneFrom|selectManyFrom|default|regex)\\(.+?\\)))*$",
91081
+ "pattern": "(<\\+.+>.*)",
90772
91082
  "minLength": 1
90773
91083
  }
90774
91084
  ]
@@ -90846,23 +91156,15 @@ const schema = {
90846
91156
  "preExecution": {
90847
91157
  "type": "string"
90848
91158
  },
90849
- "description": {
90850
- "desc": "This is the description for GoogleCloudRunTrafficShiftStepInfo"
90851
- }
90852
- }
90853
- },
90854
- "GoogleCloudRunRevisionMetadata": {
90855
- "title": "GoogleCloudRunRevisionMetadata",
90856
- "type": "object",
90857
- "required": [
90858
- "revisionName"
90859
- ],
90860
- "properties": {
90861
- "revisionName": {
90862
- "type": "string",
90863
- "description": "The name of the Google Cloud Run revision."
91159
+ "target": {
91160
+ "type": "object",
91161
+ "properties": {
91162
+ "revisionId": {
91163
+ "type": "string"
91164
+ }
91165
+ }
90864
91166
  },
90865
- "trafficValue": {
91167
+ "weight": {
90866
91168
  "oneOf": [
90867
91169
  {
90868
91170
  "type": "integer",
@@ -90873,18 +91175,15 @@ const schema = {
90873
91175
  "pattern": "(<\\+.+>.*)",
90874
91176
  "minLength": 1
90875
91177
  }
90876
- ],
90877
- "description": "The traffic value associated with the revision."
91178
+ ]
90878
91179
  },
90879
- "tag": {
90880
- "type": "string",
90881
- "description": "Comma-separated tags for the revision."
91180
+ "description": {
91181
+ "desc": "This is the description for ShiftGoogleAgentRuntimeTrafficStepInfo"
90882
91182
  }
90883
- },
90884
- "$schema": "http://json-schema.org/draft-07/schema#"
91183
+ }
90885
91184
  },
90886
- "GoogleCloudRunRollbackStepNode": {
90887
- "title": "GoogleCloudRunRollbackStepNode",
91185
+ "DeployGoogleAgentRuntimeRevisionStepNode": {
91186
+ "title": "DeployGoogleAgentRuntimeRevisionStepNode",
90888
91187
  "type": "object",
90889
91188
  "required": [
90890
91189
  "identifier",
@@ -90894,7 +91193,7 @@ const schema = {
90894
91193
  "properties": {
90895
91194
  "description": {
90896
91195
  "type": "string",
90897
- "desc": "This is the description for GoogleCloudRunRollbackStepNode"
91196
+ "desc": "This is the description for DeployGoogleAgentRuntimeRevisionStepNode"
90898
91197
  },
90899
91198
  "enforce": {
90900
91199
  "$ref": "#/definitions/pipeline/common/PolicyConfig"
@@ -90941,7 +91240,7 @@ const schema = {
90941
91240
  "type": {
90942
91241
  "type": "string",
90943
91242
  "enum": [
90944
- "GoogleCloudRunRollback"
91243
+ "DeployGoogleAgentRuntimeRevision"
90945
91244
  ]
90946
91245
  },
90947
91246
  "when": {
@@ -90963,22 +91262,22 @@ const schema = {
90963
91262
  "if": {
90964
91263
  "properties": {
90965
91264
  "type": {
90966
- "const": "GoogleCloudRunRollback"
91265
+ "const": "DeployGoogleAgentRuntimeRevision"
90967
91266
  }
90968
91267
  }
90969
91268
  },
90970
91269
  "then": {
90971
91270
  "properties": {
90972
91271
  "spec": {
90973
- "$ref": "#/definitions/pipeline/steps/cd/GoogleCloudRunRollbackStepInfo"
91272
+ "$ref": "#/definitions/pipeline/steps/cd/DeployGoogleAgentRuntimeRevisionStepInfo"
90974
91273
  }
90975
91274
  }
90976
91275
  }
90977
91276
  }
90978
91277
  ]
90979
91278
  },
90980
- "GoogleCloudRunRollbackStepInfo": {
90981
- "title": "GoogleCloudRunRollbackStepInfo",
91279
+ "DeployGoogleAgentRuntimeRevisionStepInfo": {
91280
+ "title": "DeployGoogleAgentRuntimeRevisionStepInfo",
90982
91281
  "allOf": [
90983
91282
  {
90984
91283
  "$ref": "#/definitions/pipeline/common/StepSpecType"
@@ -91052,6 +91351,18 @@ const schema = {
91052
91351
  },
91053
91352
  "preExecution": {
91054
91353
  "type": "string"
91354
+ },
91355
+ "waitReady": {
91356
+ "oneOf": [
91357
+ {
91358
+ "type": "boolean"
91359
+ },
91360
+ {
91361
+ "type": "string",
91362
+ "pattern": "(<\\+.+>.*)",
91363
+ "minLength": 1
91364
+ }
91365
+ ]
91055
91366
  }
91056
91367
  }
91057
91368
  }
@@ -91126,13 +91437,25 @@ const schema = {
91126
91437
  "preExecution": {
91127
91438
  "type": "string"
91128
91439
  },
91440
+ "waitReady": {
91441
+ "oneOf": [
91442
+ {
91443
+ "type": "boolean"
91444
+ },
91445
+ {
91446
+ "type": "string",
91447
+ "pattern": "(<\\+.+>.*)",
91448
+ "minLength": 1
91449
+ }
91450
+ ]
91451
+ },
91129
91452
  "description": {
91130
- "desc": "This is the description for GoogleCloudRunRollbackStepInfo"
91453
+ "desc": "This is the description for DeployGoogleAgentRuntimeRevisionStepInfo"
91131
91454
  }
91132
91455
  }
91133
91456
  },
91134
- "GoogleMigDeployStepNode": {
91135
- "title": "GoogleMigDeployStepNode",
91457
+ "RollbackGoogleAgentRuntimeRevisionStepNode": {
91458
+ "title": "RollbackGoogleAgentRuntimeRevisionStepNode",
91136
91459
  "type": "object",
91137
91460
  "required": [
91138
91461
  "identifier",
@@ -91142,7 +91465,7 @@ const schema = {
91142
91465
  "properties": {
91143
91466
  "description": {
91144
91467
  "type": "string",
91145
- "desc": "This is the description for Google MigDeployStepNode"
91468
+ "desc": "This is the description for RollbackGoogleAgentRuntimeRevisionStepNode"
91146
91469
  },
91147
91470
  "enforce": {
91148
91471
  "$ref": "#/definitions/pipeline/common/PolicyConfig"
@@ -91184,12 +91507,12 @@ const schema = {
91184
91507
  },
91185
91508
  "timeout": {
91186
91509
  "type": "string",
91187
- "pattern": "^(([1-9])+\\d+[s])|(((([1-9])+\\d*[mhwd])+[\\s]?\\d+[smhwd])*)|(.*<\\+.*>(?!.*\\.executionInput\\(\\)).*)|(^$)$"
91510
+ "pattern": "^(([1-9])+\\d+[s])|(((([1-9])+\\d*[mhwd])+([\\s]?\\d+[smhwd])*)|(.*<\\+.*>(?!.*\\.executionInput\\(\\)).*)|(^$))$"
91188
91511
  },
91189
91512
  "type": {
91190
91513
  "type": "string",
91191
91514
  "enum": [
91192
- "GoogleMigDeploy"
91515
+ "RollbackGoogleAgentRuntimeRevision"
91193
91516
  ]
91194
91517
  },
91195
91518
  "when": {
@@ -91211,31 +91534,28 @@ const schema = {
91211
91534
  "if": {
91212
91535
  "properties": {
91213
91536
  "type": {
91214
- "const": "GoogleMigDeploy"
91537
+ "const": "RollbackGoogleAgentRuntimeRevision"
91215
91538
  }
91216
91539
  }
91217
91540
  },
91218
91541
  "then": {
91219
91542
  "properties": {
91220
91543
  "spec": {
91221
- "$ref": "#/definitions/pipeline/steps/cd/GoogleMigDeployStepInfo"
91544
+ "$ref": "#/definitions/pipeline/steps/cd/RollbackGoogleAgentRuntimeRevisionStepInfo"
91222
91545
  }
91223
91546
  }
91224
91547
  }
91225
91548
  }
91226
91549
  ]
91227
91550
  },
91228
- "GoogleMigDeployStepInfo": {
91229
- "title": "GoogleMigDeployStepInfo",
91551
+ "RollbackGoogleAgentRuntimeRevisionStepInfo": {
91552
+ "title": "RollbackGoogleAgentRuntimeRevisionStepInfo",
91230
91553
  "allOf": [
91231
91554
  {
91232
91555
  "$ref": "#/definitions/pipeline/common/StepSpecType"
91233
91556
  },
91234
91557
  {
91235
91558
  "type": "object",
91236
- "required": [
91237
- "mig"
91238
- ],
91239
91559
  "properties": {
91240
91560
  "connectorRef": {
91241
91561
  "type": "string"
@@ -91301,39 +91621,8 @@ const schema = {
91301
91621
  }
91302
91622
  ]
91303
91623
  },
91304
- "commandOptions": {
91305
- "oneOf": [
91306
- {
91307
- "type": "array",
91308
- "items": {
91309
- "type": "string"
91310
- }
91311
- },
91312
- {
91313
- "type": "string",
91314
- "pattern": "^<\\+input>((\\.)((executionInput\\(\\))|(allowedValues|selectOneFrom|selectManyFrom|default|regex)\\(.+?\\)))*$",
91315
- "minLength": 1
91316
- }
91317
- ]
91318
- },
91319
91624
  "preExecution": {
91320
91625
  "type": "string"
91321
- },
91322
- "mig": {
91323
- "type": "string"
91324
- },
91325
- "targetSize": {
91326
- "oneOf": [
91327
- {
91328
- "type": "integer",
91329
- "format": "int32"
91330
- },
91331
- {
91332
- "type": "string",
91333
- "pattern": "(<\\+.+>.*)",
91334
- "minLength": 1
91335
- }
91336
- ]
91337
91626
  }
91338
91627
  }
91339
91628
  }
@@ -91405,47 +91694,16 @@ const schema = {
91405
91694
  }
91406
91695
  ]
91407
91696
  },
91408
- "commandOptions": {
91409
- "oneOf": [
91410
- {
91411
- "type": "array",
91412
- "items": {
91413
- "type": "string"
91414
- }
91415
- },
91416
- {
91417
- "type": "string",
91418
- "pattern": "^<\\+input>((\\.)((executionInput\\(\\))|(allowedValues|selectOneFrom|selectManyFrom|default|regex)\\(.+?\\)))*$",
91419
- "minLength": 1
91420
- }
91421
- ]
91422
- },
91423
91697
  "preExecution": {
91424
91698
  "type": "string"
91425
91699
  },
91426
- "mig": {
91427
- "type": "string"
91428
- },
91429
- "targetSize": {
91430
- "oneOf": [
91431
- {
91432
- "type": "integer",
91433
- "format": "int32"
91434
- },
91435
- {
91436
- "type": "string",
91437
- "pattern": "(<\\+.+>.*)",
91438
- "minLength": 1
91439
- }
91440
- ]
91441
- },
91442
91700
  "description": {
91443
- "desc": "This is the description for GoogleMigDeployStepInfo"
91701
+ "desc": "This is the description for RollbackGoogleAgentRuntimeRevisionStepInfo"
91444
91702
  }
91445
91703
  }
91446
91704
  },
91447
- "GoogleMigBlueGreenDeployStepNode": {
91448
- "title": "GoogleMigBlueGreenDeployStepNode",
91705
+ "GoogleCloudRunTrafficShiftStepNode": {
91706
+ "title": "GoogleCloudRunTrafficShiftStepNode",
91449
91707
  "type": "object",
91450
91708
  "required": [
91451
91709
  "identifier",
@@ -91455,7 +91713,7 @@ const schema = {
91455
91713
  "properties": {
91456
91714
  "description": {
91457
91715
  "type": "string",
91458
- "desc": "This is the description for Google MigBlueGreenDeployStepNode"
91716
+ "desc": "This is the description for GoogleCloudRunTrafficShiftStepNode"
91459
91717
  },
91460
91718
  "enforce": {
91461
91719
  "$ref": "#/definitions/pipeline/common/PolicyConfig"
@@ -91497,12 +91755,12 @@ const schema = {
91497
91755
  },
91498
91756
  "timeout": {
91499
91757
  "type": "string",
91500
- "pattern": "^(([1-9])+\\d+[s])|(((([1-9])+\\d*[mhwd])+[\\s]?\\d+[smhwd])*)|(.*<\\+.*>(?!.*\\.executionInput\\(\\)).*)|(^$)$"
91758
+ "pattern": "^(([1-9])+\\d+[s])|(((([1-9])+\\d*[mhwd])+([\\s]?\\d+[smhwd])*)|(.*<\\+.*>(?!.*\\.executionInput\\(\\)).*)|(^$))$"
91501
91759
  },
91502
91760
  "type": {
91503
91761
  "type": "string",
91504
91762
  "enum": [
91505
- "GoogleMigBlueGreenDeploy"
91763
+ "GoogleCloudRunTrafficShift"
91506
91764
  ]
91507
91765
  },
91508
91766
  "when": {
@@ -91524,31 +91782,28 @@ const schema = {
91524
91782
  "if": {
91525
91783
  "properties": {
91526
91784
  "type": {
91527
- "const": "GoogleMigBlueGreenDeploy"
91785
+ "const": "GoogleCloudRunTrafficShift"
91528
91786
  }
91529
91787
  }
91530
91788
  },
91531
91789
  "then": {
91532
91790
  "properties": {
91533
91791
  "spec": {
91534
- "$ref": "#/definitions/pipeline/steps/cd/GoogleMigBlueGreenDeployStepInfo"
91792
+ "$ref": "#/definitions/pipeline/steps/cd/GoogleCloudRunTrafficShiftStepInfo"
91535
91793
  }
91536
91794
  }
91537
91795
  }
91538
91796
  }
91539
91797
  ]
91540
91798
  },
91541
- "GoogleMigBlueGreenDeployStepInfo": {
91542
- "title": "GoogleMigBlueGreenDeployStepInfo",
91799
+ "GoogleCloudRunTrafficShiftStepInfo": {
91800
+ "title": "GoogleCloudRunTrafficShiftStepInfo",
91543
91801
  "allOf": [
91544
91802
  {
91545
91803
  "$ref": "#/definitions/pipeline/common/StepSpecType"
91546
91804
  },
91547
91805
  {
91548
91806
  "type": "object",
91549
- "required": [
91550
- "blueEnvironment"
91551
- ],
91552
91807
  "properties": {
91553
91808
  "connectorRef": {
91554
91809
  "type": "string"
@@ -91614,12 +91869,15 @@ const schema = {
91614
91869
  }
91615
91870
  ]
91616
91871
  },
91617
- "commandOptions": {
91872
+ "preExecution": {
91873
+ "type": "string"
91874
+ },
91875
+ "revisionTrafficDetails": {
91618
91876
  "oneOf": [
91619
91877
  {
91620
91878
  "type": "array",
91621
91879
  "items": {
91622
- "type": "string"
91880
+ "$ref": "#/definitions/pipeline/steps/cd/GoogleCloudRunRevisionMetadata"
91623
91881
  }
91624
91882
  },
91625
91883
  {
@@ -91628,104 +91886,960 @@ const schema = {
91628
91886
  "minLength": 1
91629
91887
  }
91630
91888
  ]
91631
- },
91632
- "preExecution": {
91633
- "type": "string"
91634
- },
91635
- "blueEnvironment": {
91636
- "type": "object",
91637
- "properties": {
91638
- "backendService": {
91639
- "type": "string"
91640
- },
91641
- "mig": {
91642
- "type": "string"
91643
- }
91644
- },
91645
- "required": [
91646
- "backendService",
91647
- "mig"
91648
- ]
91649
- },
91650
- "greenEnvironment": {
91651
- "type": "object",
91652
- "description": "Optional green environment configuration. If not provided, will be created during deployment.",
91653
- "properties": {
91654
- "backendService": {
91655
- "type": "string"
91656
- },
91657
- "mig": {
91658
- "type": "string"
91659
- }
91660
- },
91661
- "required": [
91662
- "backendService",
91663
- "mig"
91664
- ]
91665
- },
91666
- "trafficConfig": {
91667
- "type": "object",
91668
- "properties": {
91669
- "type": {
91670
- "type": "string",
91671
- "enum": [
91672
- "CSM"
91673
- ]
91674
- }
91675
- },
91676
- "required": [
91677
- "type"
91678
- ],
91679
- "allOf": [
91680
- {
91681
- "if": {
91682
- "properties": {
91683
- "type": {
91684
- "const": "CSM"
91685
- }
91686
- }
91687
- },
91688
- "then": {
91689
- "properties": {
91690
- "spec": {
91691
- "type": "object",
91692
- "properties": {
91693
- "type": {
91694
- "type": "string",
91695
- "enum": [
91696
- "GRPCRoute",
91697
- "HTTPRoute"
91698
- ]
91699
- },
91700
- "route": {
91701
- "type": "string"
91702
- }
91703
- },
91704
- "required": [
91705
- "type",
91706
- "route"
91707
- ]
91708
- }
91709
- },
91710
- "required": [
91711
- "spec"
91712
- ]
91713
- }
91714
- }
91715
- ]
91716
- },
91717
- "targetSize": {
91718
- "oneOf": [
91719
- {
91720
- "type": "integer",
91721
- "format": "int32"
91722
- },
91723
- {
91724
- "type": "string",
91725
- "pattern": "(<\\+.+>.*)",
91726
- "minLength": 1
91727
- }
91728
- ]
91889
+ }
91890
+ }
91891
+ }
91892
+ ],
91893
+ "$schema": "http://json-schema.org/draft-07/schema#",
91894
+ "type": "object",
91895
+ "properties": {
91896
+ "connectorRef": {
91897
+ "type": "string"
91898
+ },
91899
+ "delegateSelectors": {
91900
+ "oneOf": [
91901
+ {
91902
+ "type": "array",
91903
+ "items": {
91904
+ "type": "string"
91905
+ }
91906
+ },
91907
+ {
91908
+ "type": "string",
91909
+ "pattern": "(<\\+.+>.*)",
91910
+ "minLength": 1
91911
+ }
91912
+ ]
91913
+ },
91914
+ "image": {
91915
+ "type": "string"
91916
+ },
91917
+ "imagePullPolicy": {
91918
+ "oneOf": [
91919
+ {
91920
+ "type": "string",
91921
+ "enum": [
91922
+ "Always",
91923
+ "Never",
91924
+ "IfNotPresent"
91925
+ ]
91926
+ },
91927
+ {
91928
+ "type": "string",
91929
+ "pattern": "(<\\+.+>.*)",
91930
+ "minLength": 1
91931
+ }
91932
+ ]
91933
+ },
91934
+ "privileged": {
91935
+ "oneOf": [
91936
+ {
91937
+ "type": "boolean"
91938
+ },
91939
+ {
91940
+ "type": "string",
91941
+ "pattern": "^<\\+input>((\\.)((executionInput\\(\\))|(allowedValues|selectOneFrom|selectManyFrom|default|regex)\\(.+?\\)))*$",
91942
+ "minLength": 1
91943
+ }
91944
+ ]
91945
+ },
91946
+ "resources": {
91947
+ "$ref": "#/definitions/pipeline/common/ContainerResource"
91948
+ },
91949
+ "runAsUser": {
91950
+ "oneOf": [
91951
+ {
91952
+ "type": "integer",
91953
+ "format": "int32"
91954
+ },
91955
+ {
91956
+ "type": "string"
91957
+ }
91958
+ ]
91959
+ },
91960
+ "preExecution": {
91961
+ "type": "string"
91962
+ },
91963
+ "description": {
91964
+ "desc": "This is the description for GoogleCloudRunTrafficShiftStepInfo"
91965
+ }
91966
+ }
91967
+ },
91968
+ "GoogleCloudRunRevisionMetadata": {
91969
+ "title": "GoogleCloudRunRevisionMetadata",
91970
+ "type": "object",
91971
+ "required": [
91972
+ "revisionName"
91973
+ ],
91974
+ "properties": {
91975
+ "revisionName": {
91976
+ "type": "string",
91977
+ "description": "The name of the Google Cloud Run revision."
91978
+ },
91979
+ "trafficValue": {
91980
+ "oneOf": [
91981
+ {
91982
+ "type": "integer",
91983
+ "format": "int32"
91984
+ },
91985
+ {
91986
+ "type": "string",
91987
+ "pattern": "(<\\+.+>.*)",
91988
+ "minLength": 1
91989
+ }
91990
+ ],
91991
+ "description": "The traffic value associated with the revision."
91992
+ },
91993
+ "tag": {
91994
+ "type": "string",
91995
+ "description": "Comma-separated tags for the revision."
91996
+ }
91997
+ },
91998
+ "$schema": "http://json-schema.org/draft-07/schema#"
91999
+ },
92000
+ "GoogleCloudRunRollbackStepNode": {
92001
+ "title": "GoogleCloudRunRollbackStepNode",
92002
+ "type": "object",
92003
+ "required": [
92004
+ "identifier",
92005
+ "name",
92006
+ "type"
92007
+ ],
92008
+ "properties": {
92009
+ "description": {
92010
+ "type": "string",
92011
+ "desc": "This is the description for GoogleCloudRunRollbackStepNode"
92012
+ },
92013
+ "enforce": {
92014
+ "$ref": "#/definitions/pipeline/common/PolicyConfig"
92015
+ },
92016
+ "failureStrategies": {
92017
+ "oneOf": [
92018
+ {
92019
+ "type": "array",
92020
+ "items": {
92021
+ "$ref": "#/definitions/pipeline/common/FailureStrategyConfig"
92022
+ }
92023
+ },
92024
+ {
92025
+ "type": "string",
92026
+ "pattern": "^<\\+input>$",
92027
+ "minLength": 1
92028
+ }
92029
+ ]
92030
+ },
92031
+ "identifier": {
92032
+ "type": "string",
92033
+ "pattern": "^[a-zA-Z_][0-9a-zA-Z_]{0,127}$"
92034
+ },
92035
+ "name": {
92036
+ "type": "string",
92037
+ "pattern": "^[a-zA-Z_0-9-.][-0-9a-zA-Z_\\s.]{0,127}$"
92038
+ },
92039
+ "strategy": {
92040
+ "oneOf": [
92041
+ {
92042
+ "$ref": "#/definitions/pipeline/common/StrategyConfig"
92043
+ },
92044
+ {
92045
+ "type": "string",
92046
+ "pattern": "^<\\+input>$",
92047
+ "minLength": 1
92048
+ }
92049
+ ]
92050
+ },
92051
+ "timeout": {
92052
+ "type": "string",
92053
+ "pattern": "^(([1-9])+\\d+[s])|(((([1-9])+\\d*[mhwd])+([\\s]?\\d+[smhwd])*)|(.*<\\+.*>(?!.*\\.executionInput\\(\\)).*)|(^$))$"
92054
+ },
92055
+ "type": {
92056
+ "type": "string",
92057
+ "enum": [
92058
+ "GoogleCloudRunRollback"
92059
+ ]
92060
+ },
92061
+ "when": {
92062
+ "oneOf": [
92063
+ {
92064
+ "$ref": "#/definitions/pipeline/common/StepWhenCondition"
92065
+ },
92066
+ {
92067
+ "type": "string",
92068
+ "pattern": "^<\\+input>$",
92069
+ "minLength": 1
92070
+ }
92071
+ ]
92072
+ }
92073
+ },
92074
+ "$schema": "http://json-schema.org/draft-07/schema#",
92075
+ "allOf": [
92076
+ {
92077
+ "if": {
92078
+ "properties": {
92079
+ "type": {
92080
+ "const": "GoogleCloudRunRollback"
92081
+ }
92082
+ }
92083
+ },
92084
+ "then": {
92085
+ "properties": {
92086
+ "spec": {
92087
+ "$ref": "#/definitions/pipeline/steps/cd/GoogleCloudRunRollbackStepInfo"
92088
+ }
92089
+ }
92090
+ }
92091
+ }
92092
+ ]
92093
+ },
92094
+ "GoogleCloudRunRollbackStepInfo": {
92095
+ "title": "GoogleCloudRunRollbackStepInfo",
92096
+ "allOf": [
92097
+ {
92098
+ "$ref": "#/definitions/pipeline/common/StepSpecType"
92099
+ },
92100
+ {
92101
+ "type": "object",
92102
+ "properties": {
92103
+ "connectorRef": {
92104
+ "type": "string"
92105
+ },
92106
+ "delegateSelectors": {
92107
+ "oneOf": [
92108
+ {
92109
+ "type": "array",
92110
+ "items": {
92111
+ "type": "string"
92112
+ }
92113
+ },
92114
+ {
92115
+ "type": "string",
92116
+ "pattern": "(<\\+.+>.*)",
92117
+ "minLength": 1
92118
+ }
92119
+ ]
92120
+ },
92121
+ "image": {
92122
+ "type": "string"
92123
+ },
92124
+ "imagePullPolicy": {
92125
+ "oneOf": [
92126
+ {
92127
+ "type": "string",
92128
+ "enum": [
92129
+ "Always",
92130
+ "Never",
92131
+ "IfNotPresent"
92132
+ ]
92133
+ },
92134
+ {
92135
+ "type": "string",
92136
+ "pattern": "(<\\+.+>.*)",
92137
+ "minLength": 1
92138
+ }
92139
+ ]
92140
+ },
92141
+ "privileged": {
92142
+ "oneOf": [
92143
+ {
92144
+ "type": "boolean"
92145
+ },
92146
+ {
92147
+ "type": "string",
92148
+ "pattern": "^<\\+input>((\\.)((executionInput\\(\\))|(allowedValues|selectOneFrom|selectManyFrom|default|regex)\\(.+?\\)))*$",
92149
+ "minLength": 1
92150
+ }
92151
+ ]
92152
+ },
92153
+ "resources": {
92154
+ "$ref": "#/definitions/pipeline/common/ContainerResource"
92155
+ },
92156
+ "runAsUser": {
92157
+ "oneOf": [
92158
+ {
92159
+ "type": "integer",
92160
+ "format": "int32"
92161
+ },
92162
+ {
92163
+ "type": "string"
92164
+ }
92165
+ ]
92166
+ },
92167
+ "preExecution": {
92168
+ "type": "string"
92169
+ }
92170
+ }
92171
+ }
92172
+ ],
92173
+ "$schema": "http://json-schema.org/draft-07/schema#",
92174
+ "type": "object",
92175
+ "properties": {
92176
+ "connectorRef": {
92177
+ "type": "string"
92178
+ },
92179
+ "delegateSelectors": {
92180
+ "oneOf": [
92181
+ {
92182
+ "type": "array",
92183
+ "items": {
92184
+ "type": "string"
92185
+ }
92186
+ },
92187
+ {
92188
+ "type": "string",
92189
+ "pattern": "(<\\+.+>.*)",
92190
+ "minLength": 1
92191
+ }
92192
+ ]
92193
+ },
92194
+ "image": {
92195
+ "type": "string"
92196
+ },
92197
+ "imagePullPolicy": {
92198
+ "oneOf": [
92199
+ {
92200
+ "type": "string",
92201
+ "enum": [
92202
+ "Always",
92203
+ "Never",
92204
+ "IfNotPresent"
92205
+ ]
92206
+ },
92207
+ {
92208
+ "type": "string",
92209
+ "pattern": "(<\\+.+>.*)",
92210
+ "minLength": 1
92211
+ }
92212
+ ]
92213
+ },
92214
+ "privileged": {
92215
+ "oneOf": [
92216
+ {
92217
+ "type": "boolean"
92218
+ },
92219
+ {
92220
+ "type": "string",
92221
+ "pattern": "^<\\+input>((\\.)((executionInput\\(\\))|(allowedValues|selectOneFrom|selectManyFrom|default|regex)\\(.+?\\)))*$",
92222
+ "minLength": 1
92223
+ }
92224
+ ]
92225
+ },
92226
+ "resources": {
92227
+ "$ref": "#/definitions/pipeline/common/ContainerResource"
92228
+ },
92229
+ "runAsUser": {
92230
+ "oneOf": [
92231
+ {
92232
+ "type": "integer",
92233
+ "format": "int32"
92234
+ },
92235
+ {
92236
+ "type": "string"
92237
+ }
92238
+ ]
92239
+ },
92240
+ "preExecution": {
92241
+ "type": "string"
92242
+ },
92243
+ "description": {
92244
+ "desc": "This is the description for GoogleCloudRunRollbackStepInfo"
92245
+ }
92246
+ }
92247
+ },
92248
+ "GoogleMigDeployStepNode": {
92249
+ "title": "GoogleMigDeployStepNode",
92250
+ "type": "object",
92251
+ "required": [
92252
+ "identifier",
92253
+ "name",
92254
+ "type"
92255
+ ],
92256
+ "properties": {
92257
+ "description": {
92258
+ "type": "string",
92259
+ "desc": "This is the description for Google MigDeployStepNode"
92260
+ },
92261
+ "enforce": {
92262
+ "$ref": "#/definitions/pipeline/common/PolicyConfig"
92263
+ },
92264
+ "failureStrategies": {
92265
+ "oneOf": [
92266
+ {
92267
+ "type": "array",
92268
+ "items": {
92269
+ "$ref": "#/definitions/pipeline/common/FailureStrategyConfig"
92270
+ }
92271
+ },
92272
+ {
92273
+ "type": "string",
92274
+ "pattern": "^<\\+input>$",
92275
+ "minLength": 1
92276
+ }
92277
+ ]
92278
+ },
92279
+ "identifier": {
92280
+ "type": "string",
92281
+ "pattern": "^[a-zA-Z_][0-9a-zA-Z_]{0,127}$"
92282
+ },
92283
+ "name": {
92284
+ "type": "string",
92285
+ "pattern": "^[a-zA-Z_0-9-.][-0-9a-zA-Z_\\s.]{0,127}$"
92286
+ },
92287
+ "strategy": {
92288
+ "oneOf": [
92289
+ {
92290
+ "$ref": "#/definitions/pipeline/common/StrategyConfig"
92291
+ },
92292
+ {
92293
+ "type": "string",
92294
+ "pattern": "^<\\+input>$",
92295
+ "minLength": 1
92296
+ }
92297
+ ]
92298
+ },
92299
+ "timeout": {
92300
+ "type": "string",
92301
+ "pattern": "^(([1-9])+\\d+[s])|(((([1-9])+\\d*[mhwd])+[\\s]?\\d+[smhwd])*)|(.*<\\+.*>(?!.*\\.executionInput\\(\\)).*)|(^$)$"
92302
+ },
92303
+ "type": {
92304
+ "type": "string",
92305
+ "enum": [
92306
+ "GoogleMigDeploy"
92307
+ ]
92308
+ },
92309
+ "when": {
92310
+ "oneOf": [
92311
+ {
92312
+ "$ref": "#/definitions/pipeline/common/StepWhenCondition"
92313
+ },
92314
+ {
92315
+ "type": "string",
92316
+ "pattern": "^<\\+input>$",
92317
+ "minLength": 1
92318
+ }
92319
+ ]
92320
+ }
92321
+ },
92322
+ "$schema": "http://json-schema.org/draft-07/schema#",
92323
+ "allOf": [
92324
+ {
92325
+ "if": {
92326
+ "properties": {
92327
+ "type": {
92328
+ "const": "GoogleMigDeploy"
92329
+ }
92330
+ }
92331
+ },
92332
+ "then": {
92333
+ "properties": {
92334
+ "spec": {
92335
+ "$ref": "#/definitions/pipeline/steps/cd/GoogleMigDeployStepInfo"
92336
+ }
92337
+ }
92338
+ }
92339
+ }
92340
+ ]
92341
+ },
92342
+ "GoogleMigDeployStepInfo": {
92343
+ "title": "GoogleMigDeployStepInfo",
92344
+ "allOf": [
92345
+ {
92346
+ "$ref": "#/definitions/pipeline/common/StepSpecType"
92347
+ },
92348
+ {
92349
+ "type": "object",
92350
+ "required": [
92351
+ "mig"
92352
+ ],
92353
+ "properties": {
92354
+ "connectorRef": {
92355
+ "type": "string"
92356
+ },
92357
+ "delegateSelectors": {
92358
+ "oneOf": [
92359
+ {
92360
+ "type": "array",
92361
+ "items": {
92362
+ "type": "string"
92363
+ }
92364
+ },
92365
+ {
92366
+ "type": "string",
92367
+ "pattern": "(<\\+.+>.*)",
92368
+ "minLength": 1
92369
+ }
92370
+ ]
92371
+ },
92372
+ "image": {
92373
+ "type": "string"
92374
+ },
92375
+ "imagePullPolicy": {
92376
+ "oneOf": [
92377
+ {
92378
+ "type": "string",
92379
+ "enum": [
92380
+ "Always",
92381
+ "Never",
92382
+ "IfNotPresent"
92383
+ ]
92384
+ },
92385
+ {
92386
+ "type": "string",
92387
+ "pattern": "(<\\+.+>.*)",
92388
+ "minLength": 1
92389
+ }
92390
+ ]
92391
+ },
92392
+ "privileged": {
92393
+ "oneOf": [
92394
+ {
92395
+ "type": "boolean"
92396
+ },
92397
+ {
92398
+ "type": "string",
92399
+ "pattern": "^<\\+input>((\\.)((executionInput\\(\\))|(allowedValues|selectOneFrom|selectManyFrom|default|regex)\\(.+?\\)))*$",
92400
+ "minLength": 1
92401
+ }
92402
+ ]
92403
+ },
92404
+ "resources": {
92405
+ "$ref": "#/definitions/pipeline/common/ContainerResource"
92406
+ },
92407
+ "runAsUser": {
92408
+ "oneOf": [
92409
+ {
92410
+ "type": "integer",
92411
+ "format": "int32"
92412
+ },
92413
+ {
92414
+ "type": "string"
92415
+ }
92416
+ ]
92417
+ },
92418
+ "commandOptions": {
92419
+ "oneOf": [
92420
+ {
92421
+ "type": "array",
92422
+ "items": {
92423
+ "type": "string"
92424
+ }
92425
+ },
92426
+ {
92427
+ "type": "string",
92428
+ "pattern": "^<\\+input>((\\.)((executionInput\\(\\))|(allowedValues|selectOneFrom|selectManyFrom|default|regex)\\(.+?\\)))*$",
92429
+ "minLength": 1
92430
+ }
92431
+ ]
92432
+ },
92433
+ "preExecution": {
92434
+ "type": "string"
92435
+ },
92436
+ "mig": {
92437
+ "type": "string"
92438
+ },
92439
+ "targetSize": {
92440
+ "oneOf": [
92441
+ {
92442
+ "type": "integer",
92443
+ "format": "int32"
92444
+ },
92445
+ {
92446
+ "type": "string",
92447
+ "pattern": "(<\\+.+>.*)",
92448
+ "minLength": 1
92449
+ }
92450
+ ]
92451
+ }
92452
+ }
92453
+ }
92454
+ ],
92455
+ "$schema": "http://json-schema.org/draft-07/schema#",
92456
+ "type": "object",
92457
+ "properties": {
92458
+ "connectorRef": {
92459
+ "type": "string"
92460
+ },
92461
+ "delegateSelectors": {
92462
+ "oneOf": [
92463
+ {
92464
+ "type": "array",
92465
+ "items": {
92466
+ "type": "string"
92467
+ }
92468
+ },
92469
+ {
92470
+ "type": "string",
92471
+ "pattern": "(<\\+.+>.*)",
92472
+ "minLength": 1
92473
+ }
92474
+ ]
92475
+ },
92476
+ "image": {
92477
+ "type": "string"
92478
+ },
92479
+ "imagePullPolicy": {
92480
+ "oneOf": [
92481
+ {
92482
+ "type": "string",
92483
+ "enum": [
92484
+ "Always",
92485
+ "Never",
92486
+ "IfNotPresent"
92487
+ ]
92488
+ },
92489
+ {
92490
+ "type": "string",
92491
+ "pattern": "(<\\+.+>.*)",
92492
+ "minLength": 1
92493
+ }
92494
+ ]
92495
+ },
92496
+ "privileged": {
92497
+ "oneOf": [
92498
+ {
92499
+ "type": "boolean"
92500
+ },
92501
+ {
92502
+ "type": "string",
92503
+ "pattern": "^<\\+input>((\\.)((executionInput\\(\\))|(allowedValues|selectOneFrom|selectManyFrom|default|regex)\\(.+?\\)))*$",
92504
+ "minLength": 1
92505
+ }
92506
+ ]
92507
+ },
92508
+ "resources": {
92509
+ "$ref": "#/definitions/pipeline/common/ContainerResource"
92510
+ },
92511
+ "runAsUser": {
92512
+ "oneOf": [
92513
+ {
92514
+ "type": "integer",
92515
+ "format": "int32"
92516
+ },
92517
+ {
92518
+ "type": "string"
92519
+ }
92520
+ ]
92521
+ },
92522
+ "commandOptions": {
92523
+ "oneOf": [
92524
+ {
92525
+ "type": "array",
92526
+ "items": {
92527
+ "type": "string"
92528
+ }
92529
+ },
92530
+ {
92531
+ "type": "string",
92532
+ "pattern": "^<\\+input>((\\.)((executionInput\\(\\))|(allowedValues|selectOneFrom|selectManyFrom|default|regex)\\(.+?\\)))*$",
92533
+ "minLength": 1
92534
+ }
92535
+ ]
92536
+ },
92537
+ "preExecution": {
92538
+ "type": "string"
92539
+ },
92540
+ "mig": {
92541
+ "type": "string"
92542
+ },
92543
+ "targetSize": {
92544
+ "oneOf": [
92545
+ {
92546
+ "type": "integer",
92547
+ "format": "int32"
92548
+ },
92549
+ {
92550
+ "type": "string",
92551
+ "pattern": "(<\\+.+>.*)",
92552
+ "minLength": 1
92553
+ }
92554
+ ]
92555
+ },
92556
+ "description": {
92557
+ "desc": "This is the description for GoogleMigDeployStepInfo"
92558
+ }
92559
+ }
92560
+ },
92561
+ "GoogleMigBlueGreenDeployStepNode": {
92562
+ "title": "GoogleMigBlueGreenDeployStepNode",
92563
+ "type": "object",
92564
+ "required": [
92565
+ "identifier",
92566
+ "name",
92567
+ "type"
92568
+ ],
92569
+ "properties": {
92570
+ "description": {
92571
+ "type": "string",
92572
+ "desc": "This is the description for Google MigBlueGreenDeployStepNode"
92573
+ },
92574
+ "enforce": {
92575
+ "$ref": "#/definitions/pipeline/common/PolicyConfig"
92576
+ },
92577
+ "failureStrategies": {
92578
+ "oneOf": [
92579
+ {
92580
+ "type": "array",
92581
+ "items": {
92582
+ "$ref": "#/definitions/pipeline/common/FailureStrategyConfig"
92583
+ }
92584
+ },
92585
+ {
92586
+ "type": "string",
92587
+ "pattern": "^<\\+input>$",
92588
+ "minLength": 1
92589
+ }
92590
+ ]
92591
+ },
92592
+ "identifier": {
92593
+ "type": "string",
92594
+ "pattern": "^[a-zA-Z_][0-9a-zA-Z_]{0,127}$"
92595
+ },
92596
+ "name": {
92597
+ "type": "string",
92598
+ "pattern": "^[a-zA-Z_0-9-.][-0-9a-zA-Z_\\s.]{0,127}$"
92599
+ },
92600
+ "strategy": {
92601
+ "oneOf": [
92602
+ {
92603
+ "$ref": "#/definitions/pipeline/common/StrategyConfig"
92604
+ },
92605
+ {
92606
+ "type": "string",
92607
+ "pattern": "^<\\+input>$",
92608
+ "minLength": 1
92609
+ }
92610
+ ]
92611
+ },
92612
+ "timeout": {
92613
+ "type": "string",
92614
+ "pattern": "^(([1-9])+\\d+[s])|(((([1-9])+\\d*[mhwd])+[\\s]?\\d+[smhwd])*)|(.*<\\+.*>(?!.*\\.executionInput\\(\\)).*)|(^$)$"
92615
+ },
92616
+ "type": {
92617
+ "type": "string",
92618
+ "enum": [
92619
+ "GoogleMigBlueGreenDeploy"
92620
+ ]
92621
+ },
92622
+ "when": {
92623
+ "oneOf": [
92624
+ {
92625
+ "$ref": "#/definitions/pipeline/common/StepWhenCondition"
92626
+ },
92627
+ {
92628
+ "type": "string",
92629
+ "pattern": "^<\\+input>$",
92630
+ "minLength": 1
92631
+ }
92632
+ ]
92633
+ }
92634
+ },
92635
+ "$schema": "http://json-schema.org/draft-07/schema#",
92636
+ "allOf": [
92637
+ {
92638
+ "if": {
92639
+ "properties": {
92640
+ "type": {
92641
+ "const": "GoogleMigBlueGreenDeploy"
92642
+ }
92643
+ }
92644
+ },
92645
+ "then": {
92646
+ "properties": {
92647
+ "spec": {
92648
+ "$ref": "#/definitions/pipeline/steps/cd/GoogleMigBlueGreenDeployStepInfo"
92649
+ }
92650
+ }
92651
+ }
92652
+ }
92653
+ ]
92654
+ },
92655
+ "GoogleMigBlueGreenDeployStepInfo": {
92656
+ "title": "GoogleMigBlueGreenDeployStepInfo",
92657
+ "allOf": [
92658
+ {
92659
+ "$ref": "#/definitions/pipeline/common/StepSpecType"
92660
+ },
92661
+ {
92662
+ "type": "object",
92663
+ "required": [
92664
+ "blueEnvironment"
92665
+ ],
92666
+ "properties": {
92667
+ "connectorRef": {
92668
+ "type": "string"
92669
+ },
92670
+ "delegateSelectors": {
92671
+ "oneOf": [
92672
+ {
92673
+ "type": "array",
92674
+ "items": {
92675
+ "type": "string"
92676
+ }
92677
+ },
92678
+ {
92679
+ "type": "string",
92680
+ "pattern": "(<\\+.+>.*)",
92681
+ "minLength": 1
92682
+ }
92683
+ ]
92684
+ },
92685
+ "image": {
92686
+ "type": "string"
92687
+ },
92688
+ "imagePullPolicy": {
92689
+ "oneOf": [
92690
+ {
92691
+ "type": "string",
92692
+ "enum": [
92693
+ "Always",
92694
+ "Never",
92695
+ "IfNotPresent"
92696
+ ]
92697
+ },
92698
+ {
92699
+ "type": "string",
92700
+ "pattern": "(<\\+.+>.*)",
92701
+ "minLength": 1
92702
+ }
92703
+ ]
92704
+ },
92705
+ "privileged": {
92706
+ "oneOf": [
92707
+ {
92708
+ "type": "boolean"
92709
+ },
92710
+ {
92711
+ "type": "string",
92712
+ "pattern": "^<\\+input>((\\.)((executionInput\\(\\))|(allowedValues|selectOneFrom|selectManyFrom|default|regex)\\(.+?\\)))*$",
92713
+ "minLength": 1
92714
+ }
92715
+ ]
92716
+ },
92717
+ "resources": {
92718
+ "$ref": "#/definitions/pipeline/common/ContainerResource"
92719
+ },
92720
+ "runAsUser": {
92721
+ "oneOf": [
92722
+ {
92723
+ "type": "integer",
92724
+ "format": "int32"
92725
+ },
92726
+ {
92727
+ "type": "string"
92728
+ }
92729
+ ]
92730
+ },
92731
+ "commandOptions": {
92732
+ "oneOf": [
92733
+ {
92734
+ "type": "array",
92735
+ "items": {
92736
+ "type": "string"
92737
+ }
92738
+ },
92739
+ {
92740
+ "type": "string",
92741
+ "pattern": "^<\\+input>((\\.)((executionInput\\(\\))|(allowedValues|selectOneFrom|selectManyFrom|default|regex)\\(.+?\\)))*$",
92742
+ "minLength": 1
92743
+ }
92744
+ ]
92745
+ },
92746
+ "preExecution": {
92747
+ "type": "string"
92748
+ },
92749
+ "blueEnvironment": {
92750
+ "type": "object",
92751
+ "properties": {
92752
+ "backendService": {
92753
+ "type": "string"
92754
+ },
92755
+ "mig": {
92756
+ "type": "string"
92757
+ }
92758
+ },
92759
+ "required": [
92760
+ "backendService",
92761
+ "mig"
92762
+ ]
92763
+ },
92764
+ "greenEnvironment": {
92765
+ "type": "object",
92766
+ "description": "Optional green environment configuration. If not provided, will be created during deployment.",
92767
+ "properties": {
92768
+ "backendService": {
92769
+ "type": "string"
92770
+ },
92771
+ "mig": {
92772
+ "type": "string"
92773
+ }
92774
+ },
92775
+ "required": [
92776
+ "backendService",
92777
+ "mig"
92778
+ ]
92779
+ },
92780
+ "trafficConfig": {
92781
+ "type": "object",
92782
+ "properties": {
92783
+ "type": {
92784
+ "type": "string",
92785
+ "enum": [
92786
+ "CSM"
92787
+ ]
92788
+ }
92789
+ },
92790
+ "required": [
92791
+ "type"
92792
+ ],
92793
+ "allOf": [
92794
+ {
92795
+ "if": {
92796
+ "properties": {
92797
+ "type": {
92798
+ "const": "CSM"
92799
+ }
92800
+ }
92801
+ },
92802
+ "then": {
92803
+ "properties": {
92804
+ "spec": {
92805
+ "type": "object",
92806
+ "properties": {
92807
+ "type": {
92808
+ "type": "string",
92809
+ "enum": [
92810
+ "GRPCRoute",
92811
+ "HTTPRoute"
92812
+ ]
92813
+ },
92814
+ "route": {
92815
+ "type": "string"
92816
+ }
92817
+ },
92818
+ "required": [
92819
+ "type",
92820
+ "route"
92821
+ ]
92822
+ }
92823
+ },
92824
+ "required": [
92825
+ "spec"
92826
+ ]
92827
+ }
92828
+ }
92829
+ ]
92830
+ },
92831
+ "targetSize": {
92832
+ "oneOf": [
92833
+ {
92834
+ "type": "integer",
92835
+ "format": "int32"
92836
+ },
92837
+ {
92838
+ "type": "string",
92839
+ "pattern": "(<\\+.+>.*)",
92840
+ "minLength": 1
92841
+ }
92842
+ ]
91729
92843
  }
91730
92844
  }
91731
92845
  }
@@ -102283,7 +103397,8 @@ const schema = {
102283
103397
  ]
102284
103398
  },
102285
103399
  "value": {
102286
- "type": "string"
103400
+ "type": "string",
103401
+ "pattern": "^(?!.*<\\+secrets\\.getValue\\().*$"
102287
103402
  }
102288
103403
  }
102289
103404
  }
@@ -103771,6 +104886,9 @@ const schema = {
103771
104886
  },
103772
104887
  {
103773
104888
  "$ref": "#/definitions/pipeline/stages/drtest/DRTestStageNode"
104889
+ },
104890
+ {
104891
+ "$ref": "#/definitions/pipeline/stages/compositeloadtest/CompositeLoadTestStageNode"
103774
104892
  }
103775
104893
  ]
103776
104894
  }
@@ -105327,6 +106445,9 @@ const schema = {
105327
106445
  {
105328
106446
  "$ref": "#/definitions/pipeline/steps/cd/SyncStepNode"
105329
106447
  },
106448
+ {
106449
+ "$ref": "#/definitions/pipeline/steps/cd/GitOpsRollbackStepNode"
106450
+ },
105330
106451
  {
105331
106452
  "$ref": "#/definitions/pipeline/steps/cd/GitOpsRolloutStepNode"
105332
106453
  },
@@ -105783,6 +106904,15 @@ const schema = {
105783
106904
  {
105784
106905
  "$ref": "#/definitions/pipeline/steps/cd/GoogleCloudRunDeployStepNode"
105785
106906
  },
106907
+ {
106908
+ "$ref": "#/definitions/pipeline/steps/cd/ShiftGoogleAgentRuntimeTrafficStepNode"
106909
+ },
106910
+ {
106911
+ "$ref": "#/definitions/pipeline/steps/cd/DeployGoogleAgentRuntimeRevisionStepNode"
106912
+ },
106913
+ {
106914
+ "$ref": "#/definitions/pipeline/steps/cd/RollbackGoogleAgentRuntimeRevisionStepNode"
106915
+ },
105786
106916
  {
105787
106917
  "$ref": "#/definitions/pipeline/steps/cd/GoogleCloudRunTrafficShiftStepNode"
105788
106918
  },
@@ -117824,6 +118954,15 @@ const schema = {
117824
118954
  {
117825
118955
  "$ref": "#/definitions/pipeline/steps/cd/GoogleCloudRunDeployStepNode"
117826
118956
  },
118957
+ {
118958
+ "$ref": "#/definitions/pipeline/steps/cd/ShiftGoogleAgentRuntimeTrafficStepNode"
118959
+ },
118960
+ {
118961
+ "$ref": "#/definitions/pipeline/steps/cd/DeployGoogleAgentRuntimeRevisionStepNode"
118962
+ },
118963
+ {
118964
+ "$ref": "#/definitions/pipeline/steps/cd/RollbackGoogleAgentRuntimeRevisionStepNode"
118965
+ },
117827
118966
  {
117828
118967
  "$ref": "#/definitions/pipeline/steps/cd/GoogleCloudRunTrafficShiftStepNode"
117829
118968
  },
@@ -118283,7 +119422,396 @@ const schema = {
118283
119422
  "type": {
118284
119423
  "type": "string",
118285
119424
  "enum": [
118286
- "IDP"
119425
+ "IDP"
119426
+ ]
119427
+ },
119428
+ "variables": {
119429
+ "type": "array",
119430
+ "items": {
119431
+ "oneOf": [
119432
+ {
119433
+ "$ref": "#/definitions/pipeline/common/NumberNGVariable"
119434
+ },
119435
+ {
119436
+ "$ref": "#/definitions/pipeline/common/SecretNGVariable"
119437
+ },
119438
+ {
119439
+ "$ref": "#/definitions/pipeline/common/StringNGVariable"
119440
+ }
119441
+ ]
119442
+ }
119443
+ },
119444
+ "when": {
119445
+ "oneOf": [
119446
+ {
119447
+ "$ref": "#/definitions/pipeline/steps/custom/StageWhenCondition"
119448
+ },
119449
+ {
119450
+ "type": "string",
119451
+ "pattern": "^<\\+input>$",
119452
+ "minLength": 1
119453
+ }
119454
+ ]
119455
+ },
119456
+ "runMode": {
119457
+ "oneOf": [
119458
+ {
119459
+ "$ref": "#/definitions/pipeline/common/RunModeConfig"
119460
+ },
119461
+ {
119462
+ "type": "string",
119463
+ "pattern": "^<\\+input>$",
119464
+ "minLength": 1
119465
+ }
119466
+ ]
119467
+ }
119468
+ },
119469
+ "$schema": "http://json-schema.org/draft-07/schema#",
119470
+ "allOf": [
119471
+ {
119472
+ "if": {
119473
+ "properties": {
119474
+ "type": {
119475
+ "const": "IDP"
119476
+ }
119477
+ }
119478
+ },
119479
+ "then": {
119480
+ "properties": {
119481
+ "spec": {
119482
+ "$ref": "#/definitions/pipeline/stages/idp/IDPStageConfigImpl"
119483
+ }
119484
+ }
119485
+ }
119486
+ }
119487
+ ]
119488
+ },
119489
+ "IDPStageConfigImpl": {
119490
+ "title": "IDPStageConfigImpl",
119491
+ "type": "object",
119492
+ "properties": {
119493
+ "cloneCodebase": {
119494
+ "oneOf": [
119495
+ {
119496
+ "type": "boolean"
119497
+ },
119498
+ {
119499
+ "type": "string",
119500
+ "pattern": "^<\\+input>((\\.)((executionInput\\(\\))|(allowedValues|selectOneFrom|selectManyFrom|default|regex)\\(.+?\\)))*$",
119501
+ "minLength": 1
119502
+ }
119503
+ ]
119504
+ },
119505
+ "execution": {
119506
+ "$ref": "#/definitions/pipeline/stages/idp/ExecutionElementConfig"
119507
+ },
119508
+ "infrastructure": {
119509
+ "oneOf": [
119510
+ {
119511
+ "$ref": "#/definitions/pipeline/steps/common/DockerInfraYaml"
119512
+ },
119513
+ {
119514
+ "$ref": "#/definitions/pipeline/steps/common/HostedVmInfraYaml"
119515
+ },
119516
+ {
119517
+ "$ref": "#/definitions/pipeline/steps/common/K8sDirectInfraYaml"
119518
+ },
119519
+ {
119520
+ "$ref": "#/definitions/pipeline/steps/common/UseFromStageInfraYaml"
119521
+ },
119522
+ {
119523
+ "$ref": "#/definitions/pipeline/steps/common/VmInfraYaml"
119524
+ }
119525
+ ]
119526
+ },
119527
+ "platform": {
119528
+ "oneOf": [
119529
+ {
119530
+ "$ref": "#/definitions/pipeline/steps/common/Platform"
119531
+ },
119532
+ {
119533
+ "type": "string",
119534
+ "pattern": "^<\\+input>((\\.)((executionInput\\(\\))|(allowedValues|selectOneFrom|selectManyFrom|default|regex)\\(.+?\\)))*$",
119535
+ "minLength": 1
119536
+ }
119537
+ ]
119538
+ },
119539
+ "runtime": {
119540
+ "oneOf": [
119541
+ {
119542
+ "$ref": "#/definitions/pipeline/steps/common/CloudRuntime"
119543
+ },
119544
+ {
119545
+ "$ref": "#/definitions/pipeline/steps/common/DockerRuntime"
119546
+ }
119547
+ ]
119548
+ },
119549
+ "serviceDependencies": {
119550
+ "oneOf": [
119551
+ {
119552
+ "type": "array",
119553
+ "items": {
119554
+ "$ref": "#/definitions/pipeline/steps/common/DependencyElement"
119555
+ }
119556
+ },
119557
+ {
119558
+ "type": "string",
119559
+ "pattern": "^<\\+input>((\\.)((executionInput\\(\\))|(allowedValues|selectOneFrom|selectManyFrom|default|regex)\\(.+?\\)))*$",
119560
+ "minLength": 1
119561
+ }
119562
+ ]
119563
+ },
119564
+ "sharedPaths": {
119565
+ "oneOf": [
119566
+ {
119567
+ "type": "array",
119568
+ "items": {
119569
+ "type": "string"
119570
+ }
119571
+ },
119572
+ {
119573
+ "type": "string"
119574
+ }
119575
+ ]
119576
+ },
119577
+ "description": {
119578
+ "desc": "This is the description for IDPStageConfigImpl"
119579
+ }
119580
+ },
119581
+ "$schema": "http://json-schema.org/draft-07/schema#"
119582
+ },
119583
+ "ExecutionElementConfig": {
119584
+ "title": "ExecutionElementConfig",
119585
+ "type": "object",
119586
+ "required": [
119587
+ "steps"
119588
+ ],
119589
+ "properties": {
119590
+ "steps": {
119591
+ "type": "array",
119592
+ "items": {
119593
+ "$ref": "#/definitions/pipeline/stages/idp/ExecutionWrapperConfig"
119594
+ },
119595
+ "maxItems": 2147483647,
119596
+ "minItems": 1
119597
+ },
119598
+ "description": {
119599
+ "desc": "This is the description for ExecutionElementConfig"
119600
+ }
119601
+ },
119602
+ "$schema": "http://json-schema.org/draft-07/schema#"
119603
+ },
119604
+ "ExecutionWrapperConfig": {
119605
+ "title": "ExecutionWrapperConfig",
119606
+ "type": "object",
119607
+ "allOf": [
119608
+ {
119609
+ "$ref": "#/definitions/pipeline/common/ExecutionWrapperValidation"
119610
+ }
119611
+ ],
119612
+ "properties": {
119613
+ "parallel": {
119614
+ "$ref": "#/definitions/pipeline/stages/idp/ParallelStepElementConfig"
119615
+ },
119616
+ "insert": {
119617
+ "$ref": "#/definitions/pipeline/stages/idp/InsertStepsNode"
119618
+ },
119619
+ "step": {
119620
+ "oneOf": [
119621
+ {
119622
+ "$ref": "#/definitions/pipeline/common/StepElementConfig"
119623
+ },
119624
+ {
119625
+ "$ref": "#/definitions/pipeline/steps/common/RunStepNode"
119626
+ },
119627
+ {
119628
+ "$ref": "#/definitions/pipeline/steps/custom/PolicyStepNode"
119629
+ },
119630
+ {
119631
+ "$ref": "#/definitions/pipeline/steps/custom/TemplateStepNode"
119632
+ },
119633
+ {
119634
+ "$ref": "#/definitions/pipeline/steps/ci/GitCloneStepNode"
119635
+ },
119636
+ {
119637
+ "$ref": "#/definitions/pipeline/steps/common/PluginStepNode"
119638
+ },
119639
+ {
119640
+ "$ref": "#/definitions/pipeline/steps/common/AgentStepNode"
119641
+ },
119642
+ {
119643
+ "$ref": "#/definitions/pipeline/steps/idp/IDPCookieCutterStepNode"
119644
+ },
119645
+ {
119646
+ "$ref": "#/definitions/pipeline/steps/idp/IDPCreateRepoStepNode"
119647
+ },
119648
+ {
119649
+ "$ref": "#/definitions/pipeline/steps/idp/IDPRegisterCatalogStepNode"
119650
+ },
119651
+ {
119652
+ "$ref": "#/definitions/pipeline/steps/idp/IDPDirectPushStepNode"
119653
+ },
119654
+ {
119655
+ "$ref": "#/definitions/pipeline/steps/idp/IDPCreateCatalogStepNode"
119656
+ },
119657
+ {
119658
+ "$ref": "#/definitions/pipeline/steps/idp/IDPSlackNotifyStepNode"
119659
+ },
119660
+ {
119661
+ "$ref": "#/definitions/pipeline/steps/idp/IDPCreateOrganisationStepNode"
119662
+ },
119663
+ {
119664
+ "$ref": "#/definitions/pipeline/steps/idp/IDPCreateProjectStepNode"
119665
+ },
119666
+ {
119667
+ "$ref": "#/definitions/pipeline/steps/idp/IDPCreateResourceStepNode"
119668
+ },
119669
+ {
119670
+ "$ref": "#/definitions/pipeline/steps/idp/IDPUpdateCatalogPropertyStepNode"
119671
+ },
119672
+ {
119673
+ "$ref": "#/definitions/pipeline/steps/common/IdpActionStepNode"
119674
+ }
119675
+ ]
119676
+ },
119677
+ "description": {
119678
+ "desc": "This is the description for ExecutionWrapperConfig"
119679
+ }
119680
+ },
119681
+ "$schema": "http://json-schema.org/draft-07/schema#"
119682
+ },
119683
+ "ParallelStepElementConfig": {
119684
+ "title": "ParallelStepElementConfig",
119685
+ "type": "array",
119686
+ "items": {
119687
+ "$ref": "#/definitions/pipeline/stages/idp/ExecutionWrapperConfig"
119688
+ },
119689
+ "$schema": "http://json-schema.org/draft-07/schema#",
119690
+ "properties": {
119691
+ "description": {
119692
+ "desc": "This is the description for ParallelStepElementConfig"
119693
+ }
119694
+ }
119695
+ },
119696
+ "InsertStepsNode": {
119697
+ "title": "InsertStepsNode",
119698
+ "type": "object",
119699
+ "required": [
119700
+ "identifier",
119701
+ "name",
119702
+ "steps"
119703
+ ],
119704
+ "properties": {
119705
+ "identifier": {
119706
+ "type": "string",
119707
+ "pattern": "^[a-zA-Z_][0-9a-zA-Z_]{0,127}$"
119708
+ },
119709
+ "name": {
119710
+ "type": "string",
119711
+ "pattern": "^[a-zA-Z_0-9-.][-0-9a-zA-Z_\\s.]{0,127}$"
119712
+ },
119713
+ "steps": {
119714
+ "oneOf": [
119715
+ {
119716
+ "type": "array",
119717
+ "items": {
119718
+ "$ref": "#/definitions/pipeline/stages/idp/ExecutionWrapperConfig"
119719
+ },
119720
+ "maxItems": 2147483647,
119721
+ "minItems": 1
119722
+ },
119723
+ {
119724
+ "type": "string",
119725
+ "pattern": "(<\\+.+>.*)",
119726
+ "minLength": 1
119727
+ },
119728
+ {
119729
+ "type": "string",
119730
+ "pattern": "^[\\s]*$"
119731
+ }
119732
+ ]
119733
+ }
119734
+ },
119735
+ "$schema": "http://json-schema.org/draft-07/schema#"
119736
+ }
119737
+ },
119738
+ "drtest": {
119739
+ "DRTestStageNode": {
119740
+ "title": "DRTestStageNode",
119741
+ "type": "object",
119742
+ "required": [
119743
+ "identifier",
119744
+ "name",
119745
+ "type"
119746
+ ],
119747
+ "properties": {
119748
+ "delegateSelectors": {
119749
+ "oneOf": [
119750
+ {
119751
+ "type": "array",
119752
+ "items": {
119753
+ "type": "string"
119754
+ }
119755
+ },
119756
+ {
119757
+ "type": "string",
119758
+ "pattern": "(<\\+.+>.*)",
119759
+ "minLength": 1
119760
+ }
119761
+ ]
119762
+ },
119763
+ "description": {
119764
+ "type": "string",
119765
+ "desc": "This is the description for DRTestStageNode"
119766
+ },
119767
+ "failureStrategies": {
119768
+ "oneOf": [
119769
+ {
119770
+ "type": "array",
119771
+ "items": {
119772
+ "$ref": "#/definitions/pipeline/common/FailureStrategyConfig"
119773
+ }
119774
+ },
119775
+ {
119776
+ "type": "string",
119777
+ "pattern": "^<\\+input>$",
119778
+ "minLength": 1
119779
+ }
119780
+ ]
119781
+ },
119782
+ "identifier": {
119783
+ "type": "string",
119784
+ "pattern": "^[a-zA-Z_][0-9a-zA-Z_]{0,127}$"
119785
+ },
119786
+ "name": {
119787
+ "type": "string",
119788
+ "pattern": "^[a-zA-Z_][-0-9a-zA-Z_\\s]{0,127}$"
119789
+ },
119790
+ "objective": {
119791
+ "type": "string"
119792
+ },
119793
+ "strategy": {
119794
+ "oneOf": [
119795
+ {
119796
+ "$ref": "#/definitions/pipeline/common/StrategyConfig"
119797
+ },
119798
+ {
119799
+ "type": "string",
119800
+ "pattern": "^<\\+input>$",
119801
+ "minLength": 1
119802
+ }
119803
+ ]
119804
+ },
119805
+ "tags": {
119806
+ "type": "object",
119807
+ "additionalProperties": {
119808
+ "type": "string"
119809
+ }
119810
+ },
119811
+ "type": {
119812
+ "type": "string",
119813
+ "enum": [
119814
+ "DRTest"
118287
119815
  ]
118288
119816
  },
118289
119817
  "variables": {
@@ -118333,110 +119861,32 @@ const schema = {
118333
119861
  "if": {
118334
119862
  "properties": {
118335
119863
  "type": {
118336
- "const": "IDP"
119864
+ "const": "DRTest"
118337
119865
  }
118338
119866
  }
118339
119867
  },
118340
119868
  "then": {
118341
119869
  "properties": {
118342
119870
  "spec": {
118343
- "$ref": "#/definitions/pipeline/stages/idp/IDPStageConfigImpl"
119871
+ "$ref": "#/definitions/pipeline/stages/drtest/DRTestStageConfigImpl"
118344
119872
  }
118345
119873
  }
118346
119874
  }
118347
119875
  }
118348
119876
  ]
118349
119877
  },
118350
- "IDPStageConfigImpl": {
118351
- "title": "IDPStageConfigImpl",
119878
+ "DRTestStageConfigImpl": {
119879
+ "title": "DRTestStageConfigImpl",
118352
119880
  "type": "object",
119881
+ "required": [
119882
+ "execution"
119883
+ ],
118353
119884
  "properties": {
118354
- "cloneCodebase": {
118355
- "oneOf": [
118356
- {
118357
- "type": "boolean"
118358
- },
118359
- {
118360
- "type": "string",
118361
- "pattern": "^<\\+input>((\\.)((executionInput\\(\\))|(allowedValues|selectOneFrom|selectManyFrom|default|regex)\\(.+?\\)))*$",
118362
- "minLength": 1
118363
- }
118364
- ]
118365
- },
118366
119885
  "execution": {
118367
- "$ref": "#/definitions/pipeline/stages/idp/ExecutionElementConfig"
118368
- },
118369
- "infrastructure": {
118370
- "oneOf": [
118371
- {
118372
- "$ref": "#/definitions/pipeline/steps/common/DockerInfraYaml"
118373
- },
118374
- {
118375
- "$ref": "#/definitions/pipeline/steps/common/HostedVmInfraYaml"
118376
- },
118377
- {
118378
- "$ref": "#/definitions/pipeline/steps/common/K8sDirectInfraYaml"
118379
- },
118380
- {
118381
- "$ref": "#/definitions/pipeline/steps/common/UseFromStageInfraYaml"
118382
- },
118383
- {
118384
- "$ref": "#/definitions/pipeline/steps/common/VmInfraYaml"
118385
- }
118386
- ]
118387
- },
118388
- "platform": {
118389
- "oneOf": [
118390
- {
118391
- "$ref": "#/definitions/pipeline/steps/common/Platform"
118392
- },
118393
- {
118394
- "type": "string",
118395
- "pattern": "^<\\+input>((\\.)((executionInput\\(\\))|(allowedValues|selectOneFrom|selectManyFrom|default|regex)\\(.+?\\)))*$",
118396
- "minLength": 1
118397
- }
118398
- ]
118399
- },
118400
- "runtime": {
118401
- "oneOf": [
118402
- {
118403
- "$ref": "#/definitions/pipeline/steps/common/CloudRuntime"
118404
- },
118405
- {
118406
- "$ref": "#/definitions/pipeline/steps/common/DockerRuntime"
118407
- }
118408
- ]
118409
- },
118410
- "serviceDependencies": {
118411
- "oneOf": [
118412
- {
118413
- "type": "array",
118414
- "items": {
118415
- "$ref": "#/definitions/pipeline/steps/common/DependencyElement"
118416
- }
118417
- },
118418
- {
118419
- "type": "string",
118420
- "pattern": "^<\\+input>((\\.)((executionInput\\(\\))|(allowedValues|selectOneFrom|selectManyFrom|default|regex)\\(.+?\\)))*$",
118421
- "minLength": 1
118422
- }
118423
- ]
118424
- },
118425
- "sharedPaths": {
118426
- "oneOf": [
118427
- {
118428
- "type": "array",
118429
- "items": {
118430
- "type": "string"
118431
- }
118432
- },
118433
- {
118434
- "type": "string"
118435
- }
118436
- ]
119886
+ "$ref": "#/definitions/pipeline/stages/drtest/ExecutionElementConfig"
118437
119887
  },
118438
119888
  "description": {
118439
- "desc": "This is the description for IDPStageConfigImpl"
119889
+ "desc": "This is the description for DRTestStageConfigImpl"
118440
119890
  }
118441
119891
  },
118442
119892
  "$schema": "http://json-schema.org/draft-07/schema#"
@@ -118451,13 +119901,14 @@ const schema = {
118451
119901
  "steps": {
118452
119902
  "type": "array",
118453
119903
  "items": {
118454
- "$ref": "#/definitions/pipeline/stages/idp/ExecutionWrapperConfig"
118455
- },
118456
- "maxItems": 2147483647,
118457
- "minItems": 1
119904
+ "$ref": "#/definitions/pipeline/stages/drtest/ExecutionWrapperConfig"
119905
+ }
118458
119906
  },
118459
- "description": {
118460
- "desc": "This is the description for ExecutionElementConfig"
119907
+ "rollbackSteps": {
119908
+ "type": "array",
119909
+ "items": {
119910
+ "$ref": "#/definitions/pipeline/stages/drtest/ExecutionWrapperConfig"
119911
+ }
118461
119912
  }
118462
119913
  },
118463
119914
  "$schema": "http://json-schema.org/draft-07/schema#"
@@ -118472,10 +119923,10 @@ const schema = {
118472
119923
  ],
118473
119924
  "properties": {
118474
119925
  "parallel": {
118475
- "$ref": "#/definitions/pipeline/stages/idp/ParallelStepElementConfig"
119926
+ "$ref": "#/definitions/pipeline/stages/drtest/ParallelStepElementConfig"
118476
119927
  },
118477
119928
  "insert": {
118478
- "$ref": "#/definitions/pipeline/stages/idp/InsertStepsNode"
119929
+ "$ref": "#/definitions/pipeline/stages/drtest/InsertStepsNode"
118479
119930
  },
118480
119931
  "step": {
118481
119932
  "oneOf": [
@@ -118483,7 +119934,10 @@ const schema = {
118483
119934
  "$ref": "#/definitions/pipeline/common/StepElementConfig"
118484
119935
  },
118485
119936
  {
118486
- "$ref": "#/definitions/pipeline/steps/common/RunStepNode"
119937
+ "$ref": "#/definitions/pipeline/steps/custom/ShellScriptStepNode"
119938
+ },
119939
+ {
119940
+ "$ref": "#/definitions/pipeline/steps/custom/ContainerStepNode"
118487
119941
  },
118488
119942
  {
118489
119943
  "$ref": "#/definitions/pipeline/steps/custom/PolicyStepNode"
@@ -118492,49 +119946,79 @@ const schema = {
118492
119946
  "$ref": "#/definitions/pipeline/steps/custom/TemplateStepNode"
118493
119947
  },
118494
119948
  {
118495
- "$ref": "#/definitions/pipeline/steps/ci/GitCloneStepNode"
119949
+ "$ref": "#/definitions/pipeline/steps/drtest/DRTestSlackNotifyStepNode"
118496
119950
  },
118497
119951
  {
118498
- "$ref": "#/definitions/pipeline/steps/common/PluginStepNode"
119952
+ "$ref": "#/definitions/pipeline/steps/resiliencetesting/ChaosStepNode"
118499
119953
  },
118500
119954
  {
118501
- "$ref": "#/definitions/pipeline/steps/common/AgentStepNode"
119955
+ "$ref": "#/definitions/pipeline/steps/resiliencetesting/ChaosProbeNode"
118502
119956
  },
118503
119957
  {
118504
- "$ref": "#/definitions/pipeline/steps/idp/IDPCookieCutterStepNode"
119958
+ "$ref": "#/definitions/pipeline/steps/resiliencetesting/ChaosActionNode"
118505
119959
  },
118506
119960
  {
118507
- "$ref": "#/definitions/pipeline/steps/idp/IDPCreateRepoStepNode"
119961
+ "$ref": "#/definitions/pipeline/steps/resiliencetesting/ChaosFaultNode"
118508
119962
  },
118509
119963
  {
118510
- "$ref": "#/definitions/pipeline/steps/idp/IDPRegisterCatalogStepNode"
119964
+ "$ref": "#/definitions/pipeline/steps/resiliencetesting/LoadTestStepNode"
118511
119965
  },
118512
119966
  {
118513
- "$ref": "#/definitions/pipeline/steps/idp/IDPDirectPushStepNode"
119967
+ "$ref": "#/definitions/pipeline/steps/custom/EmailStepNode"
118514
119968
  },
118515
119969
  {
118516
- "$ref": "#/definitions/pipeline/steps/idp/IDPCreateCatalogStepNode"
119970
+ "$ref": "#/definitions/pipeline/steps/custom/HttpStepNode"
118517
119971
  },
118518
119972
  {
118519
- "$ref": "#/definitions/pipeline/steps/idp/IDPSlackNotifyStepNode"
119973
+ "$ref": "#/definitions/pipeline/steps/custom/WaitStepNode"
118520
119974
  },
118521
119975
  {
118522
- "$ref": "#/definitions/pipeline/steps/idp/IDPCreateOrganisationStepNode"
119976
+ "$ref": "#/definitions/pipeline/steps/custom/EventListenerStepNode"
118523
119977
  },
118524
119978
  {
118525
- "$ref": "#/definitions/pipeline/steps/idp/IDPCreateProjectStepNode"
119979
+ "$ref": "#/definitions/pipeline/steps/custom/RONotifyStepNode"
118526
119980
  },
118527
119981
  {
118528
- "$ref": "#/definitions/pipeline/steps/idp/IDPCreateResourceStepNode"
119982
+ "$ref": "#/definitions/pipeline/steps/custom/HarnessApprovalStepNode"
118529
119983
  },
118530
119984
  {
118531
- "$ref": "#/definitions/pipeline/steps/idp/IDPUpdateCatalogPropertyStepNode"
119985
+ "$ref": "#/definitions/pipeline/steps/custom/CustomApprovalStepNode"
119986
+ },
119987
+ {
119988
+ "$ref": "#/definitions/pipeline/steps/custom/JiraApprovalStepNode"
119989
+ },
119990
+ {
119991
+ "$ref": "#/definitions/pipeline/steps/custom/ServiceNowApprovalStepNode"
119992
+ },
119993
+ {
119994
+ "$ref": "#/definitions/pipeline/steps/custom/JiraCreateStepNode"
119995
+ },
119996
+ {
119997
+ "$ref": "#/definitions/pipeline/steps/custom/JiraUpdateStepNode"
119998
+ },
119999
+ {
120000
+ "$ref": "#/definitions/pipeline/steps/custom/BarrierStepNode"
120001
+ },
120002
+ {
120003
+ "$ref": "#/definitions/pipeline/steps/custom/QueueStepNode"
120004
+ },
120005
+ {
120006
+ "$ref": "#/definitions/pipeline/steps/custom/ServiceNowCreateStepNode"
120007
+ },
120008
+ {
120009
+ "$ref": "#/definitions/pipeline/steps/custom/ServiceNowUpdateStepNode"
120010
+ },
120011
+ {
120012
+ "$ref": "#/definitions/pipeline/steps/custom/ServiceNowImportSetStepNode"
118532
120013
  },
118533
120014
  {
118534
120015
  "$ref": "#/definitions/pipeline/steps/common/IdpActionStepNode"
118535
120016
  }
118536
120017
  ]
118537
120018
  },
120019
+ "stepGroup": {
120020
+ "$ref": "#/definitions/pipeline/stages/drtest/StepGroupElementConfig"
120021
+ },
118538
120022
  "description": {
118539
120023
  "desc": "This is the description for ExecutionWrapperConfig"
118540
120024
  }
@@ -118545,14 +120029,9 @@ const schema = {
118545
120029
  "title": "ParallelStepElementConfig",
118546
120030
  "type": "array",
118547
120031
  "items": {
118548
- "$ref": "#/definitions/pipeline/stages/idp/ExecutionWrapperConfig"
120032
+ "$ref": "#/definitions/pipeline/stages/drtest/ExecutionWrapperConfig"
118549
120033
  },
118550
- "$schema": "http://json-schema.org/draft-07/schema#",
118551
- "properties": {
118552
- "description": {
118553
- "desc": "This is the description for ParallelStepElementConfig"
118554
- }
118555
- }
120034
+ "$schema": "http://json-schema.org/draft-07/schema#"
118556
120035
  },
118557
120036
  "InsertStepsNode": {
118558
120037
  "title": "InsertStepsNode",
@@ -118576,7 +120055,7 @@ const schema = {
118576
120055
  {
118577
120056
  "type": "array",
118578
120057
  "items": {
118579
- "$ref": "#/definitions/pipeline/stages/idp/ExecutionWrapperConfig"
120058
+ "$ref": "#/definitions/pipeline/stages/drtest/ExecutionWrapperConfig"
118580
120059
  },
118581
120060
  "maxItems": 2147483647,
118582
120061
  "minItems": 1
@@ -118594,16 +120073,13 @@ const schema = {
118594
120073
  }
118595
120074
  },
118596
120075
  "$schema": "http://json-schema.org/draft-07/schema#"
118597
- }
118598
- },
118599
- "drtest": {
118600
- "DRTestStageNode": {
118601
- "title": "DRTestStageNode",
120076
+ },
120077
+ "StepGroupElementConfig": {
120078
+ "title": "StepGroupElementConfig",
118602
120079
  "type": "object",
118603
120080
  "required": [
118604
120081
  "identifier",
118605
- "name",
118606
- "type"
120082
+ "name"
118607
120083
  ],
118608
120084
  "properties": {
118609
120085
  "delegateSelectors": {
@@ -118621,9 +120097,144 @@ const schema = {
118621
120097
  }
118622
120098
  ]
118623
120099
  },
120100
+ "failureStrategies": {
120101
+ "oneOf": [
120102
+ {
120103
+ "type": "array",
120104
+ "items": {
120105
+ "$ref": "#/definitions/pipeline/common/FailureStrategyConfig"
120106
+ }
120107
+ },
120108
+ {
120109
+ "type": "string",
120110
+ "pattern": "^<\\+input>$",
120111
+ "minLength": 1
120112
+ }
120113
+ ]
120114
+ },
120115
+ "identifier": {
120116
+ "type": "string",
120117
+ "pattern": "^[a-zA-Z_][0-9a-zA-Z_]{0,127}$"
120118
+ },
120119
+ "name": {
120120
+ "type": "string",
120121
+ "pattern": "^[a-zA-Z_0-9-.][-0-9a-zA-Z_\\s.]{0,127}$"
120122
+ },
120123
+ "sharedPaths": {
120124
+ "oneOf": [
120125
+ {
120126
+ "type": "array",
120127
+ "items": {
120128
+ "type": "string"
120129
+ }
120130
+ },
120131
+ {
120132
+ "type": "string",
120133
+ "pattern": "^<\\+input>((\\.)((executionInput\\(\\))|(allowedValues|selectOneFrom|selectManyFrom|default|regex)\\(.+?\\)))*$",
120134
+ "minLength": 1
120135
+ }
120136
+ ]
120137
+ },
120138
+ "stepGroupInfra": {
120139
+ "oneOf": [
120140
+ {
120141
+ "$ref": "#/definitions/pipeline/common/K8sDirectInfra"
120142
+ },
120143
+ {
120144
+ "$ref": "#/definitions/pipeline/common/VMInfra"
120145
+ },
120146
+ {
120147
+ "$ref": "#/definitions/pipeline/common/ECSDirectInfra"
120148
+ }
120149
+ ]
120150
+ },
120151
+ "steps": {
120152
+ "type": "array",
120153
+ "items": {
120154
+ "$ref": "#/definitions/pipeline/stages/drtest/ExecutionWrapperConfig"
120155
+ },
120156
+ "maxItems": 2147483647,
120157
+ "minItems": 1
120158
+ },
120159
+ "strategy": {
120160
+ "oneOf": [
120161
+ {
120162
+ "$ref": "#/definitions/pipeline/common/StrategyConfig"
120163
+ },
120164
+ {
120165
+ "type": "string",
120166
+ "pattern": "^<\\+input>$",
120167
+ "minLength": 1
120168
+ }
120169
+ ]
120170
+ },
120171
+ "template": {
120172
+ "$ref": "#/definitions/pipeline/steps/custom/TemplateLinkConfig"
120173
+ },
120174
+ "when": {
120175
+ "oneOf": [
120176
+ {
120177
+ "$ref": "#/definitions/pipeline/common/StepWhenCondition"
120178
+ },
120179
+ {
120180
+ "type": "string",
120181
+ "pattern": "^<\\+input>$",
120182
+ "minLength": 1
120183
+ }
120184
+ ]
120185
+ },
120186
+ "description": {
120187
+ "desc": "This is the description for StepGroupElementConfig"
120188
+ },
120189
+ "variables": {
120190
+ "type": "array",
120191
+ "items": {
120192
+ "oneOf": [
120193
+ {
120194
+ "$ref": "#/definitions/pipeline/common/NumberNGVariable"
120195
+ },
120196
+ {
120197
+ "$ref": "#/definitions/pipeline/common/SecretNGVariable"
120198
+ },
120199
+ {
120200
+ "$ref": "#/definitions/pipeline/common/StringNGVariable"
120201
+ }
120202
+ ]
120203
+ }
120204
+ }
120205
+ },
120206
+ "$schema": "http://json-schema.org/draft-07/schema#",
120207
+ "allOf": [
120208
+ {
120209
+ "oneOf": [
120210
+ {
120211
+ "required": [
120212
+ "template"
120213
+ ]
120214
+ },
120215
+ {
120216
+ "required": [
120217
+ "steps"
120218
+ ]
120219
+ }
120220
+ ]
120221
+ }
120222
+ ]
120223
+ }
120224
+ },
120225
+ "compositeloadtest": {
120226
+ "CompositeLoadTestStageNode": {
120227
+ "title": "CompositeLoadTestStageNode",
120228
+ "type": "object",
120229
+ "required": [
120230
+ "identifier",
120231
+ "name",
120232
+ "type"
120233
+ ],
120234
+ "properties": {
118624
120235
  "description": {
118625
120236
  "type": "string",
118626
- "desc": "This is the description for DRTestStageNode"
120237
+ "desc": "This is the description for CompositeLoadTestStageNode"
118627
120238
  },
118628
120239
  "failureStrategies": {
118629
120240
  "oneOf": [
@@ -118648,9 +120259,6 @@ const schema = {
118648
120259
  "type": "string",
118649
120260
  "pattern": "^[a-zA-Z_][-0-9a-zA-Z_\\s]{0,127}$"
118650
120261
  },
118651
- "objective": {
118652
- "type": "string"
118653
- },
118654
120262
  "strategy": {
118655
120263
  "oneOf": [
118656
120264
  {
@@ -118672,7 +120280,7 @@ const schema = {
118672
120280
  "type": {
118673
120281
  "type": "string",
118674
120282
  "enum": [
118675
- "DRTest"
120283
+ "CompositeLoadTest"
118676
120284
  ]
118677
120285
  },
118678
120286
  "variables": {
@@ -118702,18 +120310,6 @@ const schema = {
118702
120310
  "minLength": 1
118703
120311
  }
118704
120312
  ]
118705
- },
118706
- "runMode": {
118707
- "oneOf": [
118708
- {
118709
- "$ref": "#/definitions/pipeline/common/RunModeConfig"
118710
- },
118711
- {
118712
- "type": "string",
118713
- "pattern": "^<\\+input>$",
118714
- "minLength": 1
118715
- }
118716
- ]
118717
120313
  }
118718
120314
  },
118719
120315
  "$schema": "http://json-schema.org/draft-07/schema#",
@@ -118722,32 +120318,32 @@ const schema = {
118722
120318
  "if": {
118723
120319
  "properties": {
118724
120320
  "type": {
118725
- "const": "DRTest"
120321
+ "const": "CompositeLoadTest"
118726
120322
  }
118727
120323
  }
118728
120324
  },
118729
120325
  "then": {
118730
120326
  "properties": {
118731
120327
  "spec": {
118732
- "$ref": "#/definitions/pipeline/stages/drtest/DRTestStageConfigImpl"
120328
+ "$ref": "#/definitions/pipeline/stages/compositeloadtest/CompositeLoadTestStageConfigImpl"
118733
120329
  }
118734
120330
  }
118735
120331
  }
118736
120332
  }
118737
120333
  ]
118738
120334
  },
118739
- "DRTestStageConfigImpl": {
118740
- "title": "DRTestStageConfigImpl",
120335
+ "CompositeLoadTestStageConfigImpl": {
120336
+ "title": "CompositeLoadTestStageConfigImpl",
118741
120337
  "type": "object",
118742
120338
  "required": [
118743
120339
  "execution"
118744
120340
  ],
118745
120341
  "properties": {
118746
120342
  "execution": {
118747
- "$ref": "#/definitions/pipeline/stages/drtest/ExecutionElementConfig"
120343
+ "$ref": "#/definitions/pipeline/stages/compositeloadtest/ExecutionElementConfig"
118748
120344
  },
118749
120345
  "description": {
118750
- "desc": "This is the description for DRTestStageConfigImpl"
120346
+ "desc": "This is the description for CompositeLoadTestStageConfigImpl"
118751
120347
  }
118752
120348
  },
118753
120349
  "$schema": "http://json-schema.org/draft-07/schema#"
@@ -118762,13 +120358,7 @@ const schema = {
118762
120358
  "steps": {
118763
120359
  "type": "array",
118764
120360
  "items": {
118765
- "$ref": "#/definitions/pipeline/stages/drtest/ExecutionWrapperConfig"
118766
- }
118767
- },
118768
- "rollbackSteps": {
118769
- "type": "array",
118770
- "items": {
118771
- "$ref": "#/definitions/pipeline/stages/drtest/ExecutionWrapperConfig"
120361
+ "$ref": "#/definitions/pipeline/stages/compositeloadtest/ExecutionWrapperConfig"
118772
120362
  }
118773
120363
  }
118774
120364
  },
@@ -118784,10 +120374,10 @@ const schema = {
118784
120374
  ],
118785
120375
  "properties": {
118786
120376
  "parallel": {
118787
- "$ref": "#/definitions/pipeline/stages/drtest/ParallelStepElementConfig"
120377
+ "$ref": "#/definitions/pipeline/stages/compositeloadtest/ParallelStepElementConfig"
118788
120378
  },
118789
120379
  "insert": {
118790
- "$ref": "#/definitions/pipeline/stages/drtest/InsertStepsNode"
120380
+ "$ref": "#/definitions/pipeline/stages/compositeloadtest/InsertStepsNode"
118791
120381
  },
118792
120382
  "step": {
118793
120383
  "oneOf": [
@@ -118806,9 +120396,6 @@ const schema = {
118806
120396
  {
118807
120397
  "$ref": "#/definitions/pipeline/steps/custom/TemplateStepNode"
118808
120398
  },
118809
- {
118810
- "$ref": "#/definitions/pipeline/steps/drtest/DRTestSlackNotifyStepNode"
118811
- },
118812
120399
  {
118813
120400
  "$ref": "#/definitions/pipeline/steps/resiliencetesting/ChaosStepNode"
118814
120401
  },
@@ -118878,7 +120465,7 @@ const schema = {
118878
120465
  ]
118879
120466
  },
118880
120467
  "stepGroup": {
118881
- "$ref": "#/definitions/pipeline/stages/drtest/StepGroupElementConfig"
120468
+ "$ref": "#/definitions/pipeline/stages/compositeloadtest/StepGroupElementConfig"
118882
120469
  },
118883
120470
  "description": {
118884
120471
  "desc": "This is the description for ExecutionWrapperConfig"
@@ -118890,7 +120477,7 @@ const schema = {
118890
120477
  "title": "ParallelStepElementConfig",
118891
120478
  "type": "array",
118892
120479
  "items": {
118893
- "$ref": "#/definitions/pipeline/stages/drtest/ExecutionWrapperConfig"
120480
+ "$ref": "#/definitions/pipeline/stages/compositeloadtest/ExecutionWrapperConfig"
118894
120481
  },
118895
120482
  "$schema": "http://json-schema.org/draft-07/schema#"
118896
120483
  },
@@ -118916,7 +120503,7 @@ const schema = {
118916
120503
  {
118917
120504
  "type": "array",
118918
120505
  "items": {
118919
- "$ref": "#/definitions/pipeline/stages/drtest/ExecutionWrapperConfig"
120506
+ "$ref": "#/definitions/pipeline/stages/compositeloadtest/ExecutionWrapperConfig"
118920
120507
  },
118921
120508
  "maxItems": 2147483647,
118922
120509
  "minItems": 1
@@ -119012,7 +120599,7 @@ const schema = {
119012
120599
  "steps": {
119013
120600
  "type": "array",
119014
120601
  "items": {
119015
- "$ref": "#/definitions/pipeline/stages/drtest/ExecutionWrapperConfig"
120602
+ "$ref": "#/definitions/pipeline/stages/compositeloadtest/ExecutionWrapperConfig"
119016
120603
  },
119017
120604
  "maxItems": 2147483647,
119018
120605
  "minItems": 1