harness-mcp-v2 3.2.9 → 3.2.11

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 (62) hide show
  1. package/README.md +4 -4
  2. package/build/config.d.ts +3 -0
  3. package/build/config.d.ts.map +1 -1
  4. package/build/config.js +12 -1
  5. package/build/config.js.map +1 -1
  6. package/build/data/schemas/v0/pipeline.d.ts.map +1 -1
  7. package/build/data/schemas/v0/pipeline.js +1049 -172
  8. package/build/data/schemas/v0/pipeline.js.map +1 -1
  9. package/build/data/schemas/v0/template.d.ts.map +1 -1
  10. package/build/data/schemas/v0/template.js +1331 -299
  11. package/build/data/schemas/v0/template.js.map +1 -1
  12. package/build/data/schemas/v1/pipeline.js +10 -10
  13. package/build/data/schemas/v1/pipeline.js.map +1 -1
  14. package/build/data/schemas/v1/template.js +10 -10
  15. package/build/data/schemas/v1/template.js.map +1 -1
  16. package/build/index.js +7 -0
  17. package/build/index.js.map +1 -1
  18. package/build/registry/extractors.d.ts +5 -0
  19. package/build/registry/extractors.d.ts.map +1 -1
  20. package/build/registry/extractors.js +9 -0
  21. package/build/registry/extractors.js.map +1 -1
  22. package/build/registry/index.d.ts.map +1 -1
  23. package/build/registry/index.js +10 -0
  24. package/build/registry/index.js.map +1 -1
  25. package/build/registry/toolsets/ccm.d.ts.map +1 -1
  26. package/build/registry/toolsets/ccm.js +189 -16
  27. package/build/registry/toolsets/ccm.js.map +1 -1
  28. package/build/registry/toolsets/dbops.d.ts.map +1 -1
  29. package/build/registry/toolsets/dbops.js +1 -3
  30. package/build/registry/toolsets/dbops.js.map +1 -1
  31. package/build/registry/toolsets/gitops.d.ts.map +1 -1
  32. package/build/registry/toolsets/gitops.js +266 -1
  33. package/build/registry/toolsets/gitops.js.map +1 -1
  34. package/build/registry/toolsets/idp.d.ts.map +1 -1
  35. package/build/registry/toolsets/idp.js +243 -30
  36. package/build/registry/toolsets/idp.js.map +1 -1
  37. package/build/registry/toolsets/repositories.d.ts.map +1 -1
  38. package/build/registry/toolsets/repositories.js +4 -0
  39. package/build/registry/toolsets/repositories.js.map +1 -1
  40. package/build/registry/toolsets/semantic-layer.d.ts.map +1 -1
  41. package/build/registry/toolsets/semantic-layer.js +13 -9
  42. package/build/registry/toolsets/semantic-layer.js.map +1 -1
  43. package/build/tools/harness-create.d.ts +1 -1
  44. package/build/tools/harness-create.d.ts.map +1 -1
  45. package/build/tools/harness-create.js +2 -2
  46. package/build/tools/harness-create.js.map +1 -1
  47. package/build/tools/harness-delete.d.ts +1 -1
  48. package/build/tools/harness-delete.d.ts.map +1 -1
  49. package/build/tools/harness-delete.js +2 -2
  50. package/build/tools/harness-delete.js.map +1 -1
  51. package/build/tools/harness-execute.d.ts +1 -1
  52. package/build/tools/harness-execute.d.ts.map +1 -1
  53. package/build/tools/harness-execute.js +4 -4
  54. package/build/tools/harness-execute.js.map +1 -1
  55. package/build/tools/harness-update.d.ts +1 -1
  56. package/build/tools/harness-update.d.ts.map +1 -1
  57. package/build/tools/harness-update.js +2 -2
  58. package/build/tools/harness-update.js.map +1 -1
  59. package/build/utils/session-headers.d.ts.map +1 -1
  60. package/build/utils/session-headers.js +9 -0
  61. package/build/utils/session-headers.js.map +1 -1
  62. package/package.json +1 -1
@@ -7149,7 +7149,7 @@ const schema = {
7149
7149
  "type": "array",
7150
7150
  "items": {
7151
7151
  "type": "string",
7152
- "pattern": "^([a-zA-Z0-9-_]+)$",
7152
+ "pattern": "^([a-zA-Z0-9-_:]+)$",
7153
7153
  "maxItems": 20
7154
7154
  }
7155
7155
  },
@@ -7409,7 +7409,7 @@ const schema = {
7409
7409
  "type": "array",
7410
7410
  "items": {
7411
7411
  "type": "string",
7412
- "pattern": "^([a-zA-Z0-9-_]+)$"
7412
+ "pattern": "^([a-zA-Z0-9-_:]+)$"
7413
7413
  },
7414
7414
  "maxItems": 20
7415
7415
  },
@@ -8001,7 +8001,7 @@ const schema = {
8001
8001
  "type": "array",
8002
8002
  "items": {
8003
8003
  "type": "string",
8004
- "pattern": "^([a-zA-Z0-9-_]+)$",
8004
+ "pattern": "^([a-zA-Z0-9-_:]+)$",
8005
8005
  "maxItems": 20
8006
8006
  }
8007
8007
  },
@@ -10177,7 +10177,7 @@ const schema = {
10177
10177
  "maxItems": 20,
10178
10178
  "items": {
10179
10179
  "type": "string",
10180
- "pattern": "^([a-zA-Z0-9-_]+)$"
10180
+ "pattern": "^([a-zA-Z0-9-_:]+)$"
10181
10181
  }
10182
10182
  },
10183
10183
  {
@@ -11624,11 +11624,18 @@ const schema = {
11624
11624
  ]
11625
11625
  },
11626
11626
  "value": {
11627
- "type": "array",
11628
- "minItems": 1,
11629
- "items": {
11630
- "type": "string"
11631
- }
11627
+ "oneOf": [
11628
+ {
11629
+ "type": "array",
11630
+ "minItems": 1,
11631
+ "items": {
11632
+ "type": "string"
11633
+ }
11634
+ },
11635
+ {
11636
+ "$ref": "#/definitions/pipeline/steps/common/common-jexl"
11637
+ }
11638
+ ]
11632
11639
  }
11633
11640
  }
11634
11641
  }
@@ -53168,6 +53175,9 @@ const schema = {
53168
53175
  "type": "string"
53169
53176
  }
53170
53177
  ]
53178
+ },
53179
+ "llmConnectorRef": {
53180
+ "type": "string"
53171
53181
  }
53172
53182
  }
53173
53183
  }
@@ -53196,6 +53206,9 @@ const schema = {
53196
53206
  "type": "string"
53197
53207
  }
53198
53208
  ]
53209
+ },
53210
+ "llmConnectorRef": {
53211
+ "type": "string"
53199
53212
  }
53200
53213
  }
53201
53214
  },
@@ -83533,8 +83546,16 @@ const schema = {
83533
83546
  "type": "string"
83534
83547
  },
83535
83548
  "name": {
83536
- "type": "string",
83537
- "pattern": "^[a-zA-Z_][0-9a-zA-Z_\\.\\[\\]$-]{0,127}$"
83549
+ "oneOf": [
83550
+ {
83551
+ "type": "string",
83552
+ "pattern": "^[a-zA-Z_][0-9a-zA-Z_\\.\\[\\]$-]{0,127}$"
83553
+ },
83554
+ {
83555
+ "type": "string",
83556
+ "pattern": "(<\\+.+>.*)"
83557
+ }
83558
+ ]
83538
83559
  },
83539
83560
  "type": {
83540
83561
  "type": "string",
@@ -83572,8 +83593,16 @@ const schema = {
83572
83593
  "format": "double"
83573
83594
  },
83574
83595
  "name": {
83575
- "type": "string",
83576
- "pattern": "^[a-zA-Z_][0-9a-zA-Z_\\.\\[\\]$-]{0,127}$"
83596
+ "oneOf": [
83597
+ {
83598
+ "type": "string",
83599
+ "pattern": "^[a-zA-Z_][0-9a-zA-Z_\\.\\[\\]$-]{0,127}$"
83600
+ },
83601
+ {
83602
+ "type": "string",
83603
+ "pattern": "(<\\+.+>.*)"
83604
+ }
83605
+ ]
83577
83606
  },
83578
83607
  "type": {
83579
83608
  "type": "string",
@@ -83623,8 +83652,16 @@ const schema = {
83623
83652
  "type": "string"
83624
83653
  },
83625
83654
  "name": {
83626
- "type": "string",
83627
- "pattern": "^[a-zA-Z_][0-9a-zA-Z_\\.\\[\\]$-]{0,127}$"
83655
+ "oneOf": [
83656
+ {
83657
+ "type": "string",
83658
+ "pattern": "^[a-zA-Z_][0-9a-zA-Z_\\.\\[\\]$-]{0,127}$"
83659
+ },
83660
+ {
83661
+ "type": "string",
83662
+ "pattern": "(<\\+.+>.*)"
83663
+ }
83664
+ ]
83628
83665
  },
83629
83666
  "type": {
83630
83667
  "type": "string",
@@ -90601,12 +90638,604 @@ const schema = {
90601
90638
  "type": "string"
90602
90639
  },
90603
90640
  "description": {
90604
- "desc": "This is the description for GoogleCloudRunPrepareRollbackDataStepInfo"
90641
+ "desc": "This is the description for GoogleCloudRunPrepareRollbackDataStepInfo"
90642
+ }
90643
+ }
90644
+ },
90645
+ "GoogleCloudRunDeployStepNode": {
90646
+ "title": "GoogleCloudRunDeployStepNode",
90647
+ "type": "object",
90648
+ "required": [
90649
+ "identifier",
90650
+ "name",
90651
+ "type"
90652
+ ],
90653
+ "properties": {
90654
+ "description": {
90655
+ "type": "string",
90656
+ "desc": "This is the description for GoogleCloudRunDeployStepNode"
90657
+ },
90658
+ "enforce": {
90659
+ "$ref": "#/definitions/pipeline/common/PolicyConfig"
90660
+ },
90661
+ "failureStrategies": {
90662
+ "oneOf": [
90663
+ {
90664
+ "type": "array",
90665
+ "items": {
90666
+ "$ref": "#/definitions/pipeline/common/FailureStrategyConfig"
90667
+ }
90668
+ },
90669
+ {
90670
+ "type": "string",
90671
+ "pattern": "^<\\+input>$",
90672
+ "minLength": 1
90673
+ }
90674
+ ]
90675
+ },
90676
+ "identifier": {
90677
+ "type": "string",
90678
+ "pattern": "^[a-zA-Z_][0-9a-zA-Z_]{0,127}$"
90679
+ },
90680
+ "name": {
90681
+ "type": "string",
90682
+ "pattern": "^[a-zA-Z_0-9-.][-0-9a-zA-Z_\\s.]{0,127}$"
90683
+ },
90684
+ "strategy": {
90685
+ "oneOf": [
90686
+ {
90687
+ "$ref": "#/definitions/pipeline/common/StrategyConfig"
90688
+ },
90689
+ {
90690
+ "type": "string",
90691
+ "pattern": "^<\\+input>$",
90692
+ "minLength": 1
90693
+ }
90694
+ ]
90695
+ },
90696
+ "timeout": {
90697
+ "type": "string",
90698
+ "pattern": "^(([1-9])+\\d+[s])|(((([1-9])+\\d*[mhwd])+([\\s]?\\d+[smhwd])*)|(.*<\\+.*>(?!.*\\.executionInput\\(\\)).*)|(^$))$"
90699
+ },
90700
+ "type": {
90701
+ "type": "string",
90702
+ "enum": [
90703
+ "GoogleCloudRunDeploy"
90704
+ ]
90705
+ },
90706
+ "when": {
90707
+ "oneOf": [
90708
+ {
90709
+ "$ref": "#/definitions/pipeline/common/StepWhenCondition"
90710
+ },
90711
+ {
90712
+ "type": "string",
90713
+ "pattern": "^<\\+input>$",
90714
+ "minLength": 1
90715
+ }
90716
+ ]
90717
+ }
90718
+ },
90719
+ "$schema": "http://json-schema.org/draft-07/schema#",
90720
+ "allOf": [
90721
+ {
90722
+ "if": {
90723
+ "properties": {
90724
+ "type": {
90725
+ "const": "GoogleCloudRunDeploy"
90726
+ }
90727
+ }
90728
+ },
90729
+ "then": {
90730
+ "properties": {
90731
+ "spec": {
90732
+ "$ref": "#/definitions/pipeline/steps/cd/GoogleCloudRunDeployStepInfo"
90733
+ }
90734
+ }
90735
+ }
90736
+ }
90737
+ ]
90738
+ },
90739
+ "GoogleCloudRunDeployStepInfo": {
90740
+ "title": "GoogleCloudRunDeployStepInfo",
90741
+ "allOf": [
90742
+ {
90743
+ "$ref": "#/definitions/pipeline/common/StepSpecType"
90744
+ },
90745
+ {
90746
+ "type": "object",
90747
+ "properties": {
90748
+ "connectorRef": {
90749
+ "type": "string"
90750
+ },
90751
+ "delegateSelectors": {
90752
+ "oneOf": [
90753
+ {
90754
+ "type": "array",
90755
+ "items": {
90756
+ "type": "string"
90757
+ }
90758
+ },
90759
+ {
90760
+ "type": "string",
90761
+ "pattern": "(<\\+.+>.*)",
90762
+ "minLength": 1
90763
+ }
90764
+ ]
90765
+ },
90766
+ "commandOptions": {
90767
+ "oneOf": [
90768
+ {
90769
+ "type": "array",
90770
+ "items": {
90771
+ "type": "string"
90772
+ }
90773
+ },
90774
+ {
90775
+ "type": "string",
90776
+ "pattern": "^<\\+input>((\\.)((executionInput\\(\\))|(allowedValues|selectOneFrom|selectManyFrom|default|regex)\\(.+?\\)))*$",
90777
+ "minLength": 1
90778
+ }
90779
+ ]
90780
+ },
90781
+ "image": {
90782
+ "type": "string"
90783
+ },
90784
+ "imagePullPolicy": {
90785
+ "oneOf": [
90786
+ {
90787
+ "type": "string",
90788
+ "enum": [
90789
+ "Always",
90790
+ "Never",
90791
+ "IfNotPresent"
90792
+ ]
90793
+ },
90794
+ {
90795
+ "type": "string",
90796
+ "pattern": "(<\\+.+>.*)",
90797
+ "minLength": 1
90798
+ }
90799
+ ]
90800
+ },
90801
+ "privileged": {
90802
+ "oneOf": [
90803
+ {
90804
+ "type": "boolean"
90805
+ },
90806
+ {
90807
+ "type": "string",
90808
+ "pattern": "^<\\+input>((\\.)((executionInput\\(\\))|(allowedValues|selectOneFrom|selectManyFrom|default|regex)\\(.+?\\)))*$",
90809
+ "minLength": 1
90810
+ }
90811
+ ]
90812
+ },
90813
+ "resources": {
90814
+ "$ref": "#/definitions/pipeline/common/ContainerResource"
90815
+ },
90816
+ "runAsUser": {
90817
+ "oneOf": [
90818
+ {
90819
+ "type": "integer",
90820
+ "format": "int32"
90821
+ },
90822
+ {
90823
+ "type": "string"
90824
+ }
90825
+ ]
90826
+ },
90827
+ "preExecution": {
90828
+ "type": "string"
90829
+ },
90830
+ "skipTrafficShift": {
90831
+ "oneOf": [
90832
+ {
90833
+ "type": "boolean"
90834
+ },
90835
+ {
90836
+ "type": "string",
90837
+ "pattern": "(<\\+.+>.*)",
90838
+ "minLength": 1
90839
+ }
90840
+ ]
90841
+ }
90842
+ }
90843
+ }
90844
+ ],
90845
+ "$schema": "http://json-schema.org/draft-07/schema#",
90846
+ "type": "object",
90847
+ "properties": {
90848
+ "connectorRef": {
90849
+ "type": "string"
90850
+ },
90851
+ "delegateSelectors": {
90852
+ "oneOf": [
90853
+ {
90854
+ "type": "array",
90855
+ "items": {
90856
+ "type": "string"
90857
+ }
90858
+ },
90859
+ {
90860
+ "type": "string",
90861
+ "pattern": "(<\\+.+>.*)",
90862
+ "minLength": 1
90863
+ }
90864
+ ]
90865
+ },
90866
+ "commandOptions": {
90867
+ "oneOf": [
90868
+ {
90869
+ "type": "array",
90870
+ "items": {
90871
+ "type": "string"
90872
+ }
90873
+ },
90874
+ {
90875
+ "type": "string",
90876
+ "pattern": "^<\\+input>((\\.)((executionInput\\(\\))|(allowedValues|selectOneFrom|selectManyFrom|default|regex)\\(.+?\\)))*$",
90877
+ "minLength": 1
90878
+ }
90879
+ ]
90880
+ },
90881
+ "image": {
90882
+ "type": "string"
90883
+ },
90884
+ "imagePullPolicy": {
90885
+ "oneOf": [
90886
+ {
90887
+ "type": "string",
90888
+ "enum": [
90889
+ "Always",
90890
+ "Never",
90891
+ "IfNotPresent"
90892
+ ]
90893
+ },
90894
+ {
90895
+ "type": "string",
90896
+ "pattern": "(<\\+.+>.*)",
90897
+ "minLength": 1
90898
+ }
90899
+ ]
90900
+ },
90901
+ "privileged": {
90902
+ "oneOf": [
90903
+ {
90904
+ "type": "boolean"
90905
+ },
90906
+ {
90907
+ "type": "string",
90908
+ "pattern": "^<\\+input>((\\.)((executionInput\\(\\))|(allowedValues|selectOneFrom|selectManyFrom|default|regex)\\(.+?\\)))*$",
90909
+ "minLength": 1
90910
+ }
90911
+ ]
90912
+ },
90913
+ "resources": {
90914
+ "$ref": "#/definitions/pipeline/common/ContainerResource"
90915
+ },
90916
+ "runAsUser": {
90917
+ "oneOf": [
90918
+ {
90919
+ "type": "integer",
90920
+ "format": "int32"
90921
+ },
90922
+ {
90923
+ "type": "string"
90924
+ }
90925
+ ]
90926
+ },
90927
+ "preExecution": {
90928
+ "type": "string"
90929
+ },
90930
+ "skipTrafficShift": {
90931
+ "oneOf": [
90932
+ {
90933
+ "type": "boolean"
90934
+ },
90935
+ {
90936
+ "type": "string",
90937
+ "pattern": "(<\\+.+>.*)",
90938
+ "minLength": 1
90939
+ }
90940
+ ]
90941
+ },
90942
+ "description": {
90943
+ "desc": "This is the description for GoogleCloudRunDeployStepInfo"
90944
+ }
90945
+ }
90946
+ },
90947
+ "ShiftGoogleAgentRuntimeTrafficStepNode": {
90948
+ "title": "ShiftGoogleAgentRuntimeTrafficStepNode",
90949
+ "type": "object",
90950
+ "required": [
90951
+ "identifier",
90952
+ "name",
90953
+ "type"
90954
+ ],
90955
+ "properties": {
90956
+ "description": {
90957
+ "type": "string",
90958
+ "desc": "This is the description for ShiftGoogleAgentRuntimeTrafficStepNode"
90959
+ },
90960
+ "enforce": {
90961
+ "$ref": "#/definitions/pipeline/common/PolicyConfig"
90962
+ },
90963
+ "failureStrategies": {
90964
+ "oneOf": [
90965
+ {
90966
+ "type": "array",
90967
+ "items": {
90968
+ "$ref": "#/definitions/pipeline/common/FailureStrategyConfig"
90969
+ }
90970
+ },
90971
+ {
90972
+ "type": "string",
90973
+ "pattern": "^<\\+input>$",
90974
+ "minLength": 1
90975
+ }
90976
+ ]
90977
+ },
90978
+ "identifier": {
90979
+ "type": "string",
90980
+ "pattern": "^[a-zA-Z_][0-9a-zA-Z_]{0,127}$"
90981
+ },
90982
+ "name": {
90983
+ "type": "string",
90984
+ "pattern": "^[a-zA-Z_0-9-.][-0-9a-zA-Z_\\s.]{0,127}$"
90985
+ },
90986
+ "strategy": {
90987
+ "oneOf": [
90988
+ {
90989
+ "$ref": "#/definitions/pipeline/common/StrategyConfig"
90990
+ },
90991
+ {
90992
+ "type": "string",
90993
+ "pattern": "^<\\+input>$",
90994
+ "minLength": 1
90995
+ }
90996
+ ]
90997
+ },
90998
+ "timeout": {
90999
+ "type": "string",
91000
+ "pattern": "^(([1-9])+\\d+[s])|(((([1-9])+\\d*[mhwd])+([\\s]?\\d+[smhwd])*)|(.*<\\+.*>(?!.*\\.executionInput\\(\\)).*)|(^$))$"
91001
+ },
91002
+ "type": {
91003
+ "type": "string",
91004
+ "enum": [
91005
+ "ShiftGoogleAgentRuntimeTraffic"
91006
+ ]
91007
+ },
91008
+ "when": {
91009
+ "oneOf": [
91010
+ {
91011
+ "$ref": "#/definitions/pipeline/common/StepWhenCondition"
91012
+ },
91013
+ {
91014
+ "type": "string",
91015
+ "pattern": "^<\\+input>$",
91016
+ "minLength": 1
91017
+ }
91018
+ ]
91019
+ }
91020
+ },
91021
+ "$schema": "http://json-schema.org/draft-07/schema#",
91022
+ "allOf": [
91023
+ {
91024
+ "if": {
91025
+ "properties": {
91026
+ "type": {
91027
+ "const": "ShiftGoogleAgentRuntimeTraffic"
91028
+ }
91029
+ }
91030
+ },
91031
+ "then": {
91032
+ "properties": {
91033
+ "spec": {
91034
+ "$ref": "#/definitions/pipeline/steps/cd/ShiftGoogleAgentRuntimeTrafficStepInfo"
91035
+ }
91036
+ }
91037
+ }
91038
+ }
91039
+ ]
91040
+ },
91041
+ "ShiftGoogleAgentRuntimeTrafficStepInfo": {
91042
+ "title": "ShiftGoogleAgentRuntimeTrafficStepInfo",
91043
+ "allOf": [
91044
+ {
91045
+ "$ref": "#/definitions/pipeline/common/StepSpecType"
91046
+ },
91047
+ {
91048
+ "type": "object",
91049
+ "properties": {
91050
+ "connectorRef": {
91051
+ "type": "string"
91052
+ },
91053
+ "delegateSelectors": {
91054
+ "oneOf": [
91055
+ {
91056
+ "type": "array",
91057
+ "items": {
91058
+ "type": "string"
91059
+ }
91060
+ },
91061
+ {
91062
+ "type": "string",
91063
+ "pattern": "(<\\+.+>.*)",
91064
+ "minLength": 1
91065
+ }
91066
+ ]
91067
+ },
91068
+ "image": {
91069
+ "type": "string"
91070
+ },
91071
+ "imagePullPolicy": {
91072
+ "oneOf": [
91073
+ {
91074
+ "type": "string",
91075
+ "enum": [
91076
+ "Always",
91077
+ "Never",
91078
+ "IfNotPresent"
91079
+ ]
91080
+ },
91081
+ {
91082
+ "type": "string",
91083
+ "pattern": "(<\\+.+>.*)",
91084
+ "minLength": 1
91085
+ }
91086
+ ]
91087
+ },
91088
+ "privileged": {
91089
+ "oneOf": [
91090
+ {
91091
+ "type": "boolean"
91092
+ },
91093
+ {
91094
+ "type": "string",
91095
+ "pattern": "^<\\+input>((\\.)((executionInput\\(\\))|(allowedValues|selectOneFrom|selectManyFrom|default|regex)\\(.+?\\)))*$",
91096
+ "minLength": 1
91097
+ }
91098
+ ]
91099
+ },
91100
+ "resources": {
91101
+ "$ref": "#/definitions/pipeline/common/ContainerResource"
91102
+ },
91103
+ "runAsUser": {
91104
+ "oneOf": [
91105
+ {
91106
+ "type": "integer",
91107
+ "format": "int32"
91108
+ },
91109
+ {
91110
+ "type": "string"
91111
+ }
91112
+ ]
91113
+ },
91114
+ "preExecution": {
91115
+ "type": "string"
91116
+ },
91117
+ "target": {
91118
+ "type": "object",
91119
+ "properties": {
91120
+ "revisionId": {
91121
+ "type": "string"
91122
+ }
91123
+ }
91124
+ },
91125
+ "weight": {
91126
+ "oneOf": [
91127
+ {
91128
+ "type": "integer",
91129
+ "format": "int32"
91130
+ },
91131
+ {
91132
+ "type": "string",
91133
+ "pattern": "(<\\+.+>.*)",
91134
+ "minLength": 1
91135
+ }
91136
+ ]
91137
+ }
91138
+ }
91139
+ }
91140
+ ],
91141
+ "$schema": "http://json-schema.org/draft-07/schema#",
91142
+ "type": "object",
91143
+ "properties": {
91144
+ "connectorRef": {
91145
+ "type": "string"
91146
+ },
91147
+ "delegateSelectors": {
91148
+ "oneOf": [
91149
+ {
91150
+ "type": "array",
91151
+ "items": {
91152
+ "type": "string"
91153
+ }
91154
+ },
91155
+ {
91156
+ "type": "string",
91157
+ "pattern": "(<\\+.+>.*)",
91158
+ "minLength": 1
91159
+ }
91160
+ ]
91161
+ },
91162
+ "image": {
91163
+ "type": "string"
91164
+ },
91165
+ "imagePullPolicy": {
91166
+ "oneOf": [
91167
+ {
91168
+ "type": "string",
91169
+ "enum": [
91170
+ "Always",
91171
+ "Never",
91172
+ "IfNotPresent"
91173
+ ]
91174
+ },
91175
+ {
91176
+ "type": "string",
91177
+ "pattern": "(<\\+.+>.*)",
91178
+ "minLength": 1
91179
+ }
91180
+ ]
91181
+ },
91182
+ "privileged": {
91183
+ "oneOf": [
91184
+ {
91185
+ "type": "boolean"
91186
+ },
91187
+ {
91188
+ "type": "string",
91189
+ "pattern": "^<\\+input>((\\.)((executionInput\\(\\))|(allowedValues|selectOneFrom|selectManyFrom|default|regex)\\(.+?\\)))*$",
91190
+ "minLength": 1
91191
+ }
91192
+ ]
91193
+ },
91194
+ "resources": {
91195
+ "$ref": "#/definitions/pipeline/common/ContainerResource"
91196
+ },
91197
+ "runAsUser": {
91198
+ "oneOf": [
91199
+ {
91200
+ "type": "integer",
91201
+ "format": "int32"
91202
+ },
91203
+ {
91204
+ "type": "string"
91205
+ }
91206
+ ]
91207
+ },
91208
+ "preExecution": {
91209
+ "type": "string"
91210
+ },
91211
+ "target": {
91212
+ "type": "object",
91213
+ "properties": {
91214
+ "revisionId": {
91215
+ "type": "string"
91216
+ }
91217
+ }
91218
+ },
91219
+ "weight": {
91220
+ "oneOf": [
91221
+ {
91222
+ "type": "integer",
91223
+ "format": "int32"
91224
+ },
91225
+ {
91226
+ "type": "string",
91227
+ "pattern": "(<\\+.+>.*)",
91228
+ "minLength": 1
91229
+ }
91230
+ ]
91231
+ },
91232
+ "description": {
91233
+ "desc": "This is the description for ShiftGoogleAgentRuntimeTrafficStepInfo"
90605
91234
  }
90606
91235
  }
90607
91236
  },
90608
- "GoogleCloudRunDeployStepNode": {
90609
- "title": "GoogleCloudRunDeployStepNode",
91237
+ "DeployGoogleAgentRuntimeRevisionStepNode": {
91238
+ "title": "DeployGoogleAgentRuntimeRevisionStepNode",
90610
91239
  "type": "object",
90611
91240
  "required": [
90612
91241
  "identifier",
@@ -90616,7 +91245,7 @@ const schema = {
90616
91245
  "properties": {
90617
91246
  "description": {
90618
91247
  "type": "string",
90619
- "desc": "This is the description for GoogleCloudRunDeployStepNode"
91248
+ "desc": "This is the description for DeployGoogleAgentRuntimeRevisionStepNode"
90620
91249
  },
90621
91250
  "enforce": {
90622
91251
  "$ref": "#/definitions/pipeline/common/PolicyConfig"
@@ -90663,7 +91292,7 @@ const schema = {
90663
91292
  "type": {
90664
91293
  "type": "string",
90665
91294
  "enum": [
90666
- "GoogleCloudRunDeploy"
91295
+ "DeployGoogleAgentRuntimeRevision"
90667
91296
  ]
90668
91297
  },
90669
91298
  "when": {
@@ -90685,22 +91314,22 @@ const schema = {
90685
91314
  "if": {
90686
91315
  "properties": {
90687
91316
  "type": {
90688
- "const": "GoogleCloudRunDeploy"
91317
+ "const": "DeployGoogleAgentRuntimeRevision"
90689
91318
  }
90690
91319
  }
90691
91320
  },
90692
91321
  "then": {
90693
91322
  "properties": {
90694
91323
  "spec": {
90695
- "$ref": "#/definitions/pipeline/steps/cd/GoogleCloudRunDeployStepInfo"
91324
+ "$ref": "#/definitions/pipeline/steps/cd/DeployGoogleAgentRuntimeRevisionStepInfo"
90696
91325
  }
90697
91326
  }
90698
91327
  }
90699
91328
  }
90700
91329
  ]
90701
91330
  },
90702
- "GoogleCloudRunDeployStepInfo": {
90703
- "title": "GoogleCloudRunDeployStepInfo",
91331
+ "DeployGoogleAgentRuntimeRevisionStepInfo": {
91332
+ "title": "DeployGoogleAgentRuntimeRevisionStepInfo",
90704
91333
  "allOf": [
90705
91334
  {
90706
91335
  "$ref": "#/definitions/pipeline/common/StepSpecType"
@@ -90726,21 +91355,6 @@ const schema = {
90726
91355
  }
90727
91356
  ]
90728
91357
  },
90729
- "commandOptions": {
90730
- "oneOf": [
90731
- {
90732
- "type": "array",
90733
- "items": {
90734
- "type": "string"
90735
- }
90736
- },
90737
- {
90738
- "type": "string",
90739
- "pattern": "^<\\+input>((\\.)((executionInput\\(\\))|(allowedValues|selectOneFrom|selectManyFrom|default|regex)\\(.+?\\)))*$",
90740
- "minLength": 1
90741
- }
90742
- ]
90743
- },
90744
91358
  "image": {
90745
91359
  "type": "string"
90746
91360
  },
@@ -90790,7 +91404,7 @@ const schema = {
90790
91404
  "preExecution": {
90791
91405
  "type": "string"
90792
91406
  },
90793
- "skipTrafficShift": {
91407
+ "waitReady": {
90794
91408
  "oneOf": [
90795
91409
  {
90796
91410
  "type": "boolean"
@@ -90826,21 +91440,6 @@ const schema = {
90826
91440
  }
90827
91441
  ]
90828
91442
  },
90829
- "commandOptions": {
90830
- "oneOf": [
90831
- {
90832
- "type": "array",
90833
- "items": {
90834
- "type": "string"
90835
- }
90836
- },
90837
- {
90838
- "type": "string",
90839
- "pattern": "^<\\+input>((\\.)((executionInput\\(\\))|(allowedValues|selectOneFrom|selectManyFrom|default|regex)\\(.+?\\)))*$",
90840
- "minLength": 1
90841
- }
90842
- ]
90843
- },
90844
91443
  "image": {
90845
91444
  "type": "string"
90846
91445
  },
@@ -90890,7 +91489,7 @@ const schema = {
90890
91489
  "preExecution": {
90891
91490
  "type": "string"
90892
91491
  },
90893
- "skipTrafficShift": {
91492
+ "waitReady": {
90894
91493
  "oneOf": [
90895
91494
  {
90896
91495
  "type": "boolean"
@@ -90903,12 +91502,12 @@ const schema = {
90903
91502
  ]
90904
91503
  },
90905
91504
  "description": {
90906
- "desc": "This is the description for GoogleCloudRunDeployStepInfo"
91505
+ "desc": "This is the description for DeployGoogleAgentRuntimeRevisionStepInfo"
90907
91506
  }
90908
91507
  }
90909
91508
  },
90910
- "ShiftGoogleAgentRuntimeTrafficStepNode": {
90911
- "title": "ShiftGoogleAgentRuntimeTrafficStepNode",
91509
+ "RollbackGoogleAgentRuntimeRevisionStepNode": {
91510
+ "title": "RollbackGoogleAgentRuntimeRevisionStepNode",
90912
91511
  "type": "object",
90913
91512
  "required": [
90914
91513
  "identifier",
@@ -90918,7 +91517,7 @@ const schema = {
90918
91517
  "properties": {
90919
91518
  "description": {
90920
91519
  "type": "string",
90921
- "desc": "This is the description for ShiftGoogleAgentRuntimeTrafficStepNode"
91520
+ "desc": "This is the description for RollbackGoogleAgentRuntimeRevisionStepNode"
90922
91521
  },
90923
91522
  "enforce": {
90924
91523
  "$ref": "#/definitions/pipeline/common/PolicyConfig"
@@ -90965,7 +91564,7 @@ const schema = {
90965
91564
  "type": {
90966
91565
  "type": "string",
90967
91566
  "enum": [
90968
- "ShiftGoogleAgentRuntimeTraffic"
91567
+ "RollbackGoogleAgentRuntimeRevision"
90969
91568
  ]
90970
91569
  },
90971
91570
  "when": {
@@ -90987,22 +91586,22 @@ const schema = {
90987
91586
  "if": {
90988
91587
  "properties": {
90989
91588
  "type": {
90990
- "const": "ShiftGoogleAgentRuntimeTraffic"
91589
+ "const": "RollbackGoogleAgentRuntimeRevision"
90991
91590
  }
90992
91591
  }
90993
91592
  },
90994
91593
  "then": {
90995
91594
  "properties": {
90996
91595
  "spec": {
90997
- "$ref": "#/definitions/pipeline/steps/cd/ShiftGoogleAgentRuntimeTrafficStepInfo"
91596
+ "$ref": "#/definitions/pipeline/steps/cd/RollbackGoogleAgentRuntimeRevisionStepInfo"
90998
91597
  }
90999
91598
  }
91000
91599
  }
91001
91600
  }
91002
91601
  ]
91003
91602
  },
91004
- "ShiftGoogleAgentRuntimeTrafficStepInfo": {
91005
- "title": "ShiftGoogleAgentRuntimeTrafficStepInfo",
91603
+ "RollbackGoogleAgentRuntimeRevisionStepInfo": {
91604
+ "title": "RollbackGoogleAgentRuntimeRevisionStepInfo",
91006
91605
  "allOf": [
91007
91606
  {
91008
91607
  "$ref": "#/definitions/pipeline/common/StepSpecType"
@@ -91076,27 +91675,6 @@ const schema = {
91076
91675
  },
91077
91676
  "preExecution": {
91078
91677
  "type": "string"
91079
- },
91080
- "target": {
91081
- "type": "object",
91082
- "properties": {
91083
- "revisionId": {
91084
- "type": "string"
91085
- }
91086
- }
91087
- },
91088
- "weight": {
91089
- "oneOf": [
91090
- {
91091
- "type": "integer",
91092
- "format": "int32"
91093
- },
91094
- {
91095
- "type": "string",
91096
- "pattern": "(<\\+.+>.*)",
91097
- "minLength": 1
91098
- }
91099
- ]
91100
91678
  }
91101
91679
  }
91102
91680
  }
@@ -91171,34 +91749,13 @@ const schema = {
91171
91749
  "preExecution": {
91172
91750
  "type": "string"
91173
91751
  },
91174
- "target": {
91175
- "type": "object",
91176
- "properties": {
91177
- "revisionId": {
91178
- "type": "string"
91179
- }
91180
- }
91181
- },
91182
- "weight": {
91183
- "oneOf": [
91184
- {
91185
- "type": "integer",
91186
- "format": "int32"
91187
- },
91188
- {
91189
- "type": "string",
91190
- "pattern": "(<\\+.+>.*)",
91191
- "minLength": 1
91192
- }
91193
- ]
91194
- },
91195
91752
  "description": {
91196
- "desc": "This is the description for ShiftGoogleAgentRuntimeTrafficStepInfo"
91753
+ "desc": "This is the description for RollbackGoogleAgentRuntimeRevisionStepInfo"
91197
91754
  }
91198
91755
  }
91199
91756
  },
91200
- "DeployGoogleAgentRuntimeRevisionStepNode": {
91201
- "title": "DeployGoogleAgentRuntimeRevisionStepNode",
91757
+ "DeployAwsAgentCoreRevisionStepNode": {
91758
+ "title": "DeployAwsAgentCoreRevisionStepNode",
91202
91759
  "type": "object",
91203
91760
  "required": [
91204
91761
  "identifier",
@@ -91208,7 +91765,7 @@ const schema = {
91208
91765
  "properties": {
91209
91766
  "description": {
91210
91767
  "type": "string",
91211
- "desc": "This is the description for DeployGoogleAgentRuntimeRevisionStepNode"
91768
+ "desc": "This is the description for DeployAwsAgentCoreRevisionStepNode"
91212
91769
  },
91213
91770
  "enforce": {
91214
91771
  "$ref": "#/definitions/pipeline/common/PolicyConfig"
@@ -91255,7 +91812,7 @@ const schema = {
91255
91812
  "type": {
91256
91813
  "type": "string",
91257
91814
  "enum": [
91258
- "DeployGoogleAgentRuntimeRevision"
91815
+ "DeployAwsAgentCoreRevision"
91259
91816
  ]
91260
91817
  },
91261
91818
  "when": {
@@ -91277,22 +91834,22 @@ const schema = {
91277
91834
  "if": {
91278
91835
  "properties": {
91279
91836
  "type": {
91280
- "const": "DeployGoogleAgentRuntimeRevision"
91837
+ "const": "DeployAwsAgentCoreRevision"
91281
91838
  }
91282
91839
  }
91283
91840
  },
91284
91841
  "then": {
91285
91842
  "properties": {
91286
91843
  "spec": {
91287
- "$ref": "#/definitions/pipeline/steps/cd/DeployGoogleAgentRuntimeRevisionStepInfo"
91844
+ "$ref": "#/definitions/pipeline/steps/cd/DeployAwsAgentCoreRevisionStepInfo"
91288
91845
  }
91289
91846
  }
91290
91847
  }
91291
91848
  }
91292
91849
  ]
91293
91850
  },
91294
- "DeployGoogleAgentRuntimeRevisionStepInfo": {
91295
- "title": "DeployGoogleAgentRuntimeRevisionStepInfo",
91851
+ "DeployAwsAgentCoreRevisionStepInfo": {
91852
+ "title": "DeployAwsAgentCoreRevisionStepInfo",
91296
91853
  "allOf": [
91297
91854
  {
91298
91855
  "$ref": "#/definitions/pipeline/common/StepSpecType"
@@ -91465,12 +92022,12 @@ const schema = {
91465
92022
  ]
91466
92023
  },
91467
92024
  "description": {
91468
- "desc": "This is the description for DeployGoogleAgentRuntimeRevisionStepInfo"
92025
+ "desc": "This is the description for DeployAwsAgentCoreRevisionStepInfo"
91469
92026
  }
91470
92027
  }
91471
92028
  },
91472
- "RollbackGoogleAgentRuntimeRevisionStepNode": {
91473
- "title": "RollbackGoogleAgentRuntimeRevisionStepNode",
92029
+ "ShiftAwsAgentCoreTrafficStepNode": {
92030
+ "title": "ShiftAwsAgentCoreTrafficStepNode",
91474
92031
  "type": "object",
91475
92032
  "required": [
91476
92033
  "identifier",
@@ -91480,7 +92037,7 @@ const schema = {
91480
92037
  "properties": {
91481
92038
  "description": {
91482
92039
  "type": "string",
91483
- "desc": "This is the description for RollbackGoogleAgentRuntimeRevisionStepNode"
92040
+ "desc": "This is the description for ShiftAwsAgentCoreTrafficStepNode"
91484
92041
  },
91485
92042
  "enforce": {
91486
92043
  "$ref": "#/definitions/pipeline/common/PolicyConfig"
@@ -91527,7 +92084,7 @@ const schema = {
91527
92084
  "type": {
91528
92085
  "type": "string",
91529
92086
  "enum": [
91530
- "RollbackGoogleAgentRuntimeRevision"
92087
+ "ShiftAwsAgentCoreTraffic"
91531
92088
  ]
91532
92089
  },
91533
92090
  "when": {
@@ -91549,22 +92106,22 @@ const schema = {
91549
92106
  "if": {
91550
92107
  "properties": {
91551
92108
  "type": {
91552
- "const": "RollbackGoogleAgentRuntimeRevision"
92109
+ "const": "ShiftAwsAgentCoreTraffic"
91553
92110
  }
91554
92111
  }
91555
92112
  },
91556
92113
  "then": {
91557
92114
  "properties": {
91558
92115
  "spec": {
91559
- "$ref": "#/definitions/pipeline/steps/cd/RollbackGoogleAgentRuntimeRevisionStepInfo"
92116
+ "$ref": "#/definitions/pipeline/steps/cd/ShiftAwsAgentCoreTrafficStepInfo"
91560
92117
  }
91561
92118
  }
91562
92119
  }
91563
92120
  }
91564
92121
  ]
91565
92122
  },
91566
- "RollbackGoogleAgentRuntimeRevisionStepInfo": {
91567
- "title": "RollbackGoogleAgentRuntimeRevisionStepInfo",
92123
+ "ShiftAwsAgentCoreTrafficStepInfo": {
92124
+ "title": "ShiftAwsAgentCoreTrafficStepInfo",
91568
92125
  "allOf": [
91569
92126
  {
91570
92127
  "$ref": "#/definitions/pipeline/common/StepSpecType"
@@ -91638,6 +92195,27 @@ const schema = {
91638
92195
  },
91639
92196
  "preExecution": {
91640
92197
  "type": "string"
92198
+ },
92199
+ "target": {
92200
+ "type": "object",
92201
+ "properties": {
92202
+ "revisionId": {
92203
+ "type": "string"
92204
+ }
92205
+ }
92206
+ },
92207
+ "weight": {
92208
+ "oneOf": [
92209
+ {
92210
+ "type": "integer",
92211
+ "format": "int32"
92212
+ },
92213
+ {
92214
+ "type": "string",
92215
+ "pattern": "(<\\+.+>.*)",
92216
+ "minLength": 1
92217
+ }
92218
+ ]
91641
92219
  }
91642
92220
  }
91643
92221
  }
@@ -91712,13 +92290,34 @@ const schema = {
91712
92290
  "preExecution": {
91713
92291
  "type": "string"
91714
92292
  },
92293
+ "target": {
92294
+ "type": "object",
92295
+ "properties": {
92296
+ "revisionId": {
92297
+ "type": "string"
92298
+ }
92299
+ }
92300
+ },
92301
+ "weight": {
92302
+ "oneOf": [
92303
+ {
92304
+ "type": "integer",
92305
+ "format": "int32"
92306
+ },
92307
+ {
92308
+ "type": "string",
92309
+ "pattern": "(<\\+.+>.*)",
92310
+ "minLength": 1
92311
+ }
92312
+ ]
92313
+ },
91715
92314
  "description": {
91716
- "desc": "This is the description for RollbackGoogleAgentRuntimeRevisionStepInfo"
92315
+ "desc": "This is the description for ShiftAwsAgentCoreTrafficStepInfo"
91717
92316
  }
91718
92317
  }
91719
92318
  },
91720
- "DeployAwsAgentCoreRevisionStepNode": {
91721
- "title": "DeployAwsAgentCoreRevisionStepNode",
92319
+ "RollbackAwsAgentCoreRevisionStepNode": {
92320
+ "title": "RollbackAwsAgentCoreRevisionStepNode",
91722
92321
  "type": "object",
91723
92322
  "required": [
91724
92323
  "identifier",
@@ -91728,7 +92327,7 @@ const schema = {
91728
92327
  "properties": {
91729
92328
  "description": {
91730
92329
  "type": "string",
91731
- "desc": "This is the description for DeployAwsAgentCoreRevisionStepNode"
92330
+ "desc": "This is the description for RollbackAwsAgentCoreRevisionStepNode"
91732
92331
  },
91733
92332
  "enforce": {
91734
92333
  "$ref": "#/definitions/pipeline/common/PolicyConfig"
@@ -91775,7 +92374,7 @@ const schema = {
91775
92374
  "type": {
91776
92375
  "type": "string",
91777
92376
  "enum": [
91778
- "DeployAwsAgentCoreRevision"
92377
+ "RollbackAwsAgentCoreRevision"
91779
92378
  ]
91780
92379
  },
91781
92380
  "when": {
@@ -91797,22 +92396,22 @@ const schema = {
91797
92396
  "if": {
91798
92397
  "properties": {
91799
92398
  "type": {
91800
- "const": "DeployAwsAgentCoreRevision"
92399
+ "const": "RollbackAwsAgentCoreRevision"
91801
92400
  }
91802
92401
  }
91803
92402
  },
91804
92403
  "then": {
91805
92404
  "properties": {
91806
92405
  "spec": {
91807
- "$ref": "#/definitions/pipeline/steps/cd/DeployAwsAgentCoreRevisionStepInfo"
92406
+ "$ref": "#/definitions/pipeline/steps/cd/RollbackAwsAgentCoreRevisionStepInfo"
91808
92407
  }
91809
92408
  }
91810
92409
  }
91811
92410
  }
91812
92411
  ]
91813
92412
  },
91814
- "DeployAwsAgentCoreRevisionStepInfo": {
91815
- "title": "DeployAwsAgentCoreRevisionStepInfo",
92413
+ "RollbackAwsAgentCoreRevisionStepInfo": {
92414
+ "title": "RollbackAwsAgentCoreRevisionStepInfo",
91816
92415
  "allOf": [
91817
92416
  {
91818
92417
  "$ref": "#/definitions/pipeline/common/StepSpecType"
@@ -91886,18 +92485,6 @@ const schema = {
91886
92485
  },
91887
92486
  "preExecution": {
91888
92487
  "type": "string"
91889
- },
91890
- "waitReady": {
91891
- "oneOf": [
91892
- {
91893
- "type": "boolean"
91894
- },
91895
- {
91896
- "type": "string",
91897
- "pattern": "(<\\+.+>.*)",
91898
- "minLength": 1
91899
- }
91900
- ]
91901
92488
  }
91902
92489
  }
91903
92490
  }
@@ -91972,20 +92559,8 @@ const schema = {
91972
92559
  "preExecution": {
91973
92560
  "type": "string"
91974
92561
  },
91975
- "waitReady": {
91976
- "oneOf": [
91977
- {
91978
- "type": "boolean"
91979
- },
91980
- {
91981
- "type": "string",
91982
- "pattern": "(<\\+.+>.*)",
91983
- "minLength": 1
91984
- }
91985
- ]
91986
- },
91987
92562
  "description": {
91988
- "desc": "This is the description for DeployAwsAgentCoreRevisionStepInfo"
92563
+ "desc": "This is the description for RollbackAwsAgentCoreRevisionStepInfo"
91989
92564
  }
91990
92565
  }
91991
92566
  },
@@ -99432,38 +100007,75 @@ const schema = {
99432
100007
  },
99433
100008
  {
99434
100009
  "type": "object",
99435
- "required": [
99436
- "loadTestRef"
99437
- ],
99438
100010
  "properties": {
99439
- "loadTestRef": {
100011
+ "kind": {
100012
+ "description": "How the step resolves what to run: 'instance' (default) runs an existing load test referenced by loadTestRef; 'template' runs a chaos-hub load test template (hubRef + identifier) bound to infraReference + environmentReference.",
99440
100013
  "type": "string",
99441
- "minLength": 1
100014
+ "enum": [
100015
+ "instance",
100016
+ "template"
100017
+ ]
99442
100018
  },
99443
- "targetUsers": {
100019
+ "loadTestRef": {
100020
+ "description": "Reference to the load test to run (instance mode). May be a fixed value or a pipeline expression / runtime input (<+input>) so the step stays reusable when authored inside a template.",
99444
100021
  "oneOf": [
99445
100022
  {
99446
- "type": "integer"
100023
+ "$ref": "#/definitions/pipeline/steps/common/string-without-jexl"
99447
100024
  },
99448
100025
  {
99449
100026
  "$ref": "#/definitions/pipeline/steps/common/common-jexl"
99450
100027
  }
99451
100028
  ]
99452
100029
  },
99453
- "rampUpTimeSec": {
100030
+ "hubRef": {
100031
+ "description": "Chaos Hub reference containing the load test template to run (template mode).",
99454
100032
  "oneOf": [
99455
100033
  {
99456
- "type": "integer"
100034
+ "$ref": "#/definitions/pipeline/steps/common/string-without-jexl"
99457
100035
  },
99458
100036
  {
99459
100037
  "$ref": "#/definitions/pipeline/steps/common/common-jexl"
99460
100038
  }
99461
100039
  ]
99462
100040
  },
99463
- "durationSeconds": {
100041
+ "identifier": {
100042
+ "description": "Identifier of the load test template within the chaos hub to run (template mode).",
99464
100043
  "oneOf": [
99465
100044
  {
99466
- "type": "integer"
100045
+ "$ref": "#/definitions/pipeline/steps/common/string-without-jexl"
100046
+ },
100047
+ {
100048
+ "$ref": "#/definitions/pipeline/steps/common/common-jexl"
100049
+ }
100050
+ ]
100051
+ },
100052
+ "revision": {
100053
+ "description": "Pinned revision of the load test template captured when the template is selected (template mode). Load test templates are versioned, so the run is pinned to an explicit revision for reproducibility.",
100054
+ "oneOf": [
100055
+ {
100056
+ "$ref": "#/definitions/pipeline/steps/common/string-without-jexl"
100057
+ },
100058
+ {
100059
+ "$ref": "#/definitions/pipeline/steps/common/common-jexl"
100060
+ }
100061
+ ]
100062
+ },
100063
+ "infraReference": {
100064
+ "description": "Infrastructure the templated load test runs on (template mode). May be a fixed value or a pipeline expression / runtime input.",
100065
+ "oneOf": [
100066
+ {
100067
+ "$ref": "#/definitions/pipeline/steps/common/string-without-jexl"
100068
+ },
100069
+ {
100070
+ "$ref": "#/definitions/pipeline/steps/common/common-jexl"
100071
+ }
100072
+ ]
100073
+ },
100074
+ "environmentReference": {
100075
+ "description": "Environment the templated load test runs in (template mode). May be a fixed value or a pipeline expression / runtime input.",
100076
+ "oneOf": [
100077
+ {
100078
+ "$ref": "#/definitions/pipeline/steps/common/string-without-jexl"
99467
100079
  },
99468
100080
  {
99469
100081
  "$ref": "#/definitions/pipeline/steps/common/common-jexl"
@@ -99512,6 +100124,30 @@ const schema = {
99512
100124
  }
99513
100125
  ]
99514
100126
  }
100127
+ },
100128
+ "if": {
100129
+ "properties": {
100130
+ "kind": {
100131
+ "const": "template"
100132
+ }
100133
+ },
100134
+ "required": [
100135
+ "kind"
100136
+ ]
100137
+ },
100138
+ "then": {
100139
+ "required": [
100140
+ "hubRef",
100141
+ "identifier",
100142
+ "revision",
100143
+ "infraReference",
100144
+ "environmentReference"
100145
+ ]
100146
+ },
100147
+ "else": {
100148
+ "required": [
100149
+ "loadTestRef"
100150
+ ]
99515
100151
  }
99516
100152
  }
99517
100153
  ],
@@ -106004,7 +106640,8 @@ const schema = {
106004
106640
  "GoogleCloudRun",
106005
106641
  "AzureContainerApps",
106006
106642
  "Salesforce",
106007
- "GoogleManagedInstanceGroup"
106643
+ "GoogleManagedInstanceGroup",
106644
+ "AiAgent"
106008
106645
  ]
106009
106646
  },
106010
106647
  "environment": {
@@ -107270,6 +107907,12 @@ const schema = {
107270
107907
  {
107271
107908
  "$ref": "#/definitions/pipeline/steps/cd/DeployAwsAgentCoreRevisionStepNode"
107272
107909
  },
107910
+ {
107911
+ "$ref": "#/definitions/pipeline/steps/cd/ShiftAwsAgentCoreTrafficStepNode"
107912
+ },
107913
+ {
107914
+ "$ref": "#/definitions/pipeline/steps/cd/RollbackAwsAgentCoreRevisionStepNode"
107915
+ },
107273
107916
  {
107274
107917
  "$ref": "#/definitions/pipeline/steps/cd/GoogleCloudRunTrafficShiftStepNode"
107275
107918
  },
@@ -110514,7 +111157,8 @@ const schema = {
110514
111157
  "GoogleCloudRun",
110515
111158
  "AzureContainerApps",
110516
111159
  "Salesforce",
110517
- "GoogleManagedInstanceGroup"
111160
+ "GoogleManagedInstanceGroup",
111161
+ "AiAgent"
110518
111162
  ]
110519
111163
  },
110520
111164
  "description": {
@@ -110826,6 +111470,22 @@ const schema = {
110826
111470
  }
110827
111471
  }
110828
111472
  }
111473
+ },
111474
+ {
111475
+ "if": {
111476
+ "properties": {
111477
+ "type": {
111478
+ "const": "AiAgent"
111479
+ }
111480
+ }
111481
+ },
111482
+ "then": {
111483
+ "properties": {
111484
+ "spec": {
111485
+ "$ref": "#/definitions/pipeline/stages/cd/AiAgentServiceSpec"
111486
+ }
111487
+ }
111488
+ }
110829
111489
  }
110830
111490
  ]
110831
111491
  },
@@ -115133,6 +115793,217 @@ const schema = {
115133
115793
  }
115134
115794
  }
115135
115795
  },
115796
+ "AiAgentServiceSpec": {
115797
+ "title": "AiAgentServiceSpec",
115798
+ "type": "object",
115799
+ "required": [
115800
+ "platform"
115801
+ ],
115802
+ "properties": {
115803
+ "configVariables": {
115804
+ "type": "array",
115805
+ "items": {
115806
+ "$ref": "#/definitions/pipeline/common/NGVariable"
115807
+ }
115808
+ },
115809
+ "platform": {
115810
+ "$ref": "#/definitions/pipeline/stages/cd/AiAgentPlatform"
115811
+ },
115812
+ "variables": {
115813
+ "type": "array",
115814
+ "items": {
115815
+ "$ref": "#/definitions/pipeline/common/NGVariable"
115816
+ }
115817
+ },
115818
+ "description": {
115819
+ "desc": "This is the description for AiAgentServiceSpec"
115820
+ }
115821
+ },
115822
+ "$schema": "http://json-schema.org/draft-07/schema#"
115823
+ },
115824
+ "AiAgentPlatform": {
115825
+ "title": "AiAgentPlatform",
115826
+ "type": "object",
115827
+ "required": [
115828
+ "type",
115829
+ "spec"
115830
+ ],
115831
+ "properties": {
115832
+ "type": {
115833
+ "type": "string",
115834
+ "enum": [
115835
+ "AwsAgentCore",
115836
+ "GoogleAgentRuntime"
115837
+ ]
115838
+ },
115839
+ "description": {
115840
+ "desc": "This is the description for AiAgentPlatform"
115841
+ }
115842
+ },
115843
+ "$schema": "http://json-schema.org/draft-07/schema#",
115844
+ "allOf": [
115845
+ {
115846
+ "if": {
115847
+ "properties": {
115848
+ "type": {
115849
+ "const": "AwsAgentCore"
115850
+ }
115851
+ }
115852
+ },
115853
+ "then": {
115854
+ "properties": {
115855
+ "spec": {
115856
+ "$ref": "#/definitions/pipeline/stages/cd/AwsAgentCorePlatformSpec"
115857
+ }
115858
+ }
115859
+ }
115860
+ },
115861
+ {
115862
+ "if": {
115863
+ "properties": {
115864
+ "type": {
115865
+ "const": "GoogleAgentRuntime"
115866
+ }
115867
+ }
115868
+ },
115869
+ "then": {
115870
+ "properties": {
115871
+ "spec": {
115872
+ "$ref": "#/definitions/pipeline/stages/cd/GoogleAgentRuntimePlatformSpec"
115873
+ }
115874
+ }
115875
+ }
115876
+ }
115877
+ ]
115878
+ },
115879
+ "AwsAgentCorePlatformSpec": {
115880
+ "title": "AwsAgentCorePlatformSpec",
115881
+ "type": "object",
115882
+ "required": [
115883
+ "source",
115884
+ "executionRoleArn"
115885
+ ],
115886
+ "properties": {
115887
+ "source": {
115888
+ "$ref": "#/definitions/pipeline/stages/cd/AwsCoreAgentSource"
115889
+ },
115890
+ "executionRoleArn": {
115891
+ "type": "string"
115892
+ },
115893
+ "description": {
115894
+ "desc": "This is the description for AwsAgentCorePlatformSpec"
115895
+ }
115896
+ },
115897
+ "$schema": "http://json-schema.org/draft-07/schema#"
115898
+ },
115899
+ "AwsCoreAgentSource": {
115900
+ "title": "AwsCoreAgentSource",
115901
+ "type": "object",
115902
+ "required": [
115903
+ "type",
115904
+ "spec"
115905
+ ],
115906
+ "properties": {
115907
+ "type": {
115908
+ "type": "string",
115909
+ "enum": [
115910
+ "container"
115911
+ ]
115912
+ },
115913
+ "description": {
115914
+ "desc": "This is the description for AwsCoreAgentSource"
115915
+ }
115916
+ },
115917
+ "$schema": "http://json-schema.org/draft-07/schema#",
115918
+ "allOf": [
115919
+ {
115920
+ "if": {
115921
+ "properties": {
115922
+ "type": {
115923
+ "const": "container"
115924
+ }
115925
+ }
115926
+ },
115927
+ "then": {
115928
+ "properties": {
115929
+ "spec": {
115930
+ "$ref": "#/definitions/pipeline/stages/cd/ContainerAgentSource"
115931
+ }
115932
+ }
115933
+ }
115934
+ }
115935
+ ]
115936
+ },
115937
+ "ContainerAgentSource": {
115938
+ "title": "ContainerAgentSource",
115939
+ "type": "object",
115940
+ "required": [
115941
+ "image"
115942
+ ],
115943
+ "properties": {
115944
+ "image": {
115945
+ "type": "string"
115946
+ },
115947
+ "description": {
115948
+ "desc": "This is the description for ContainerAgentSource"
115949
+ }
115950
+ },
115951
+ "$schema": "http://json-schema.org/draft-07/schema#"
115952
+ },
115953
+ "GoogleAgentRuntimePlatformSpec": {
115954
+ "title": "GoogleAgentRuntimePlatformSpec",
115955
+ "type": "object",
115956
+ "required": [
115957
+ "source"
115958
+ ],
115959
+ "properties": {
115960
+ "source": {
115961
+ "$ref": "#/definitions/pipeline/stages/cd/GoogleAgentSource"
115962
+ },
115963
+ "description": {
115964
+ "desc": "This is the description for GoogleAgentRuntimePlatformSpec"
115965
+ }
115966
+ },
115967
+ "$schema": "http://json-schema.org/draft-07/schema#"
115968
+ },
115969
+ "GoogleAgentSource": {
115970
+ "title": "GoogleAgentSource",
115971
+ "type": "object",
115972
+ "required": [
115973
+ "type",
115974
+ "spec"
115975
+ ],
115976
+ "properties": {
115977
+ "type": {
115978
+ "type": "string",
115979
+ "enum": [
115980
+ "container"
115981
+ ]
115982
+ },
115983
+ "description": {
115984
+ "desc": "This is the description for GoogleAgentSource"
115985
+ }
115986
+ },
115987
+ "$schema": "http://json-schema.org/draft-07/schema#",
115988
+ "allOf": [
115989
+ {
115990
+ "if": {
115991
+ "properties": {
115992
+ "type": {
115993
+ "const": "container"
115994
+ }
115995
+ }
115996
+ },
115997
+ "then": {
115998
+ "properties": {
115999
+ "spec": {
116000
+ "$ref": "#/definitions/pipeline/stages/cd/ContainerAgentSource"
116001
+ }
116002
+ }
116003
+ }
116004
+ }
116005
+ ]
116006
+ },
115136
116007
  "StageOverridesConfig": {
115137
116008
  "title": "StageOverridesConfig",
115138
116009
  "type": "object",
@@ -119323,6 +120194,12 @@ const schema = {
119323
120194
  {
119324
120195
  "$ref": "#/definitions/pipeline/steps/cd/DeployAwsAgentCoreRevisionStepNode"
119325
120196
  },
120197
+ {
120198
+ "$ref": "#/definitions/pipeline/steps/cd/ShiftAwsAgentCoreTrafficStepNode"
120199
+ },
120200
+ {
120201
+ "$ref": "#/definitions/pipeline/steps/cd/RollbackAwsAgentCoreRevisionStepNode"
120202
+ },
119326
120203
  {
119327
120204
  "$ref": "#/definitions/pipeline/steps/cd/GoogleCloudRunTrafficShiftStepNode"
119328
120205
  },