@northflank/js-client 0.7.20 → 0.7.21

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.
@@ -1596,6 +1596,7 @@ type ListCloudClustersResult = {
1596
1596
  'storage'?: number;
1597
1597
  };
1598
1598
  };
1599
+ 'disableCorednsNameserverOverride'?: boolean;
1599
1600
  };
1600
1601
  /** Request modifiers to use for different resources. */
1601
1602
  'requestModifiers'?: {
@@ -1620,7 +1621,6 @@ type ListCloudClustersResult = {
1620
1621
  'memory': number;
1621
1622
  };
1622
1623
  };
1623
- 'skipInstall'?: boolean;
1624
1624
  };
1625
1625
  /** GCP specific data. Required when `provider` is `gcp`. */
1626
1626
  'gcp'?: {
@@ -1783,6 +1783,7 @@ type CreateCloudClusterResult = {
1783
1783
  'storage'?: number;
1784
1784
  };
1785
1785
  };
1786
+ 'disableCorednsNameserverOverride'?: boolean;
1786
1787
  };
1787
1788
  /** Request modifiers to use for different resources. */
1788
1789
  'requestModifiers'?: {
@@ -1807,7 +1808,6 @@ type CreateCloudClusterResult = {
1807
1808
  'memory': number;
1808
1809
  };
1809
1810
  };
1810
- 'skipInstall'?: boolean;
1811
1811
  };
1812
1812
  /** GCP specific data. Required when `provider` is `gcp`. */
1813
1813
  'gcp'?: {
@@ -1967,6 +1967,7 @@ type CreateCloudClusterData = {
1967
1967
  'storage'?: number;
1968
1968
  };
1969
1969
  };
1970
+ 'disableCorednsNameserverOverride'?: boolean;
1970
1971
  };
1971
1972
  /** Request modifiers to use for different resources. */
1972
1973
  'requestModifiers'?: {
@@ -1991,7 +1992,6 @@ type CreateCloudClusterData = {
1991
1992
  'memory': number;
1992
1993
  };
1993
1994
  };
1994
- 'skipInstall'?: boolean;
1995
1995
  };
1996
1996
  /** GCP specific data. Required when `provider` is `gcp`. */
1997
1997
  'gcp'?: {
@@ -2141,6 +2141,7 @@ type GetCloudClusterResult = {
2141
2141
  'storage'?: number;
2142
2142
  };
2143
2143
  };
2144
+ 'disableCorednsNameserverOverride'?: boolean;
2144
2145
  };
2145
2146
  /** Request modifiers to use for different resources. */
2146
2147
  'requestModifiers'?: {
@@ -2165,7 +2166,6 @@ type GetCloudClusterResult = {
2165
2166
  'memory': number;
2166
2167
  };
2167
2168
  };
2168
- 'skipInstall'?: boolean;
2169
2169
  };
2170
2170
  /** GCP specific data. Required when `provider` is `gcp`. */
2171
2171
  'gcp'?: {
@@ -2337,6 +2337,7 @@ type UpdateCloudClusterResult = {
2337
2337
  'storage'?: number;
2338
2338
  };
2339
2339
  };
2340
+ 'disableCorednsNameserverOverride'?: boolean;
2340
2341
  };
2341
2342
  /** Request modifiers to use for different resources. */
2342
2343
  'requestModifiers'?: {
@@ -2361,7 +2362,6 @@ type UpdateCloudClusterResult = {
2361
2362
  'memory': number;
2362
2363
  };
2363
2364
  };
2364
- 'skipInstall'?: boolean;
2365
2365
  };
2366
2366
  /** GCP specific data. Required when `provider` is `gcp`. */
2367
2367
  'gcp'?: {
@@ -2516,6 +2516,7 @@ type UpdateCloudClusterData = {
2516
2516
  'storage'?: number;
2517
2517
  };
2518
2518
  };
2519
+ 'disableCorednsNameserverOverride'?: boolean;
2519
2520
  };
2520
2521
  /** Request modifiers to use for different resources. */
2521
2522
  'requestModifiers'?: {
@@ -2540,7 +2541,6 @@ type UpdateCloudClusterData = {
2540
2541
  'memory': number;
2541
2542
  };
2542
2543
  };
2543
- 'skipInstall'?: boolean;
2544
2544
  };
2545
2545
  };
2546
2546
  /** Update an existing cluster. */
@@ -2616,6 +2616,63 @@ declare class ListCloudClusterNodesEndpoint extends GetApiEndpoint<ListCloudClus
2616
2616
  body: () => undefined;
2617
2617
  }
2618
2618
 
2619
+ type CordonCloudClusterNodeResult = any;
2620
+ type CordonCloudClusterNodeCall = (opts: CordonCloudClusterNodeRequest) => Promise<ApiCallResponse<CordonCloudClusterNodeResult>>;
2621
+ type CordonCloudClusterNodeRequest = {
2622
+ parameters: CordonCloudClusterNodeParameters;
2623
+ };
2624
+ type CordonCloudClusterNodeParameters = {
2625
+ /** ID of the cluster */ 'clusterId': string;
2626
+ /** ID of the node */
2627
+ 'nodeId': string;
2628
+ };
2629
+ /** Cordon a node on the cluster to prevent new pods from scheduling on it. */
2630
+ declare class CordonCloudClusterNodeEndpoint extends PostApiEndpoint<CordonCloudClusterNodeRequest, CordonCloudClusterNodeResult> {
2631
+ description: string;
2632
+ withAuth: boolean;
2633
+ requiredPermissions: string;
2634
+ endpointUrl: (opts: CordonCloudClusterNodeRequest) => string;
2635
+ body: () => undefined;
2636
+ }
2637
+
2638
+ type DrainCloudClusterNodeResult = any;
2639
+ type DrainCloudClusterNodeCall = (opts: DrainCloudClusterNodeRequest) => Promise<ApiCallResponse<DrainCloudClusterNodeResult>>;
2640
+ type DrainCloudClusterNodeRequest = {
2641
+ parameters: DrainCloudClusterNodeParameters;
2642
+ };
2643
+ type DrainCloudClusterNodeParameters = {
2644
+ /** ID of the cluster */ 'clusterId': string;
2645
+ /** ID of the node */
2646
+ 'nodeId': string;
2647
+ };
2648
+ /** Drain a node by evicting all running pods. */
2649
+ declare class DrainCloudClusterNodeEndpoint extends PostApiEndpoint<DrainCloudClusterNodeRequest, DrainCloudClusterNodeResult> {
2650
+ description: string;
2651
+ withAuth: boolean;
2652
+ requiredPermissions: string;
2653
+ endpointUrl: (opts: DrainCloudClusterNodeRequest) => string;
2654
+ body: () => undefined;
2655
+ }
2656
+
2657
+ type UncordonCloudClusterNodeResult = any;
2658
+ type UncordonCloudClusterNodeCall = (opts: UncordonCloudClusterNodeRequest) => Promise<ApiCallResponse<UncordonCloudClusterNodeResult>>;
2659
+ type UncordonCloudClusterNodeRequest = {
2660
+ parameters: UncordonCloudClusterNodeParameters;
2661
+ };
2662
+ type UncordonCloudClusterNodeParameters = {
2663
+ /** ID of the cluster */ 'clusterId': string;
2664
+ /** ID of the node */
2665
+ 'nodeId': string;
2666
+ };
2667
+ /** Uncordon a node on the cluster if it was previously cordoned. */
2668
+ declare class UncordonCloudClusterNodeEndpoint extends PostApiEndpoint<UncordonCloudClusterNodeRequest, UncordonCloudClusterNodeResult> {
2669
+ description: string;
2670
+ withAuth: boolean;
2671
+ requiredPermissions: string;
2672
+ endpointUrl: (opts: UncordonCloudClusterNodeRequest) => string;
2673
+ body: () => undefined;
2674
+ }
2675
+
2619
2676
  type ListCloudDockerregistryResult = {
2620
2677
  /** An array of integrations. */
2621
2678
  'registries': {
@@ -2682,8 +2739,8 @@ type CreateCloudDockerregistryData = {
2682
2739
  'region': string;
2683
2740
  /** Existing integration to use for this registry. Example: "gcp-integration" */
2684
2741
  'integrationId'?: string;
2685
- /** The type of provider integration. Example: "cluster" */
2686
- 'type'?: 'cluster' | 'domain' | 'registry' | 'cdn';
2742
+ /** The type of provider integration. Example: "byoc" */
2743
+ 'type'?: 'byoc' | 'byoc-static-egress' | 'byoc-custom-vpc' | 'cloudfront' | 'self-hosted-registry' | 'route53' | 'self-hosted-logs-metrics' | 'docker-registry-credential';
2687
2744
  };
2688
2745
  /** Creates a new docker registry. */
2689
2746
  declare class CreateCloudDockerregistryEndpoint extends PostApiEndpoint<CreateCloudDockerregistryRequest, CreateCloudDockerregistryResult> {
@@ -2750,13 +2807,21 @@ type ListCloudIntegrationsResult = {
2750
2807
  'description'?: string;
2751
2808
  /** Cloud provider to be used for the selected resource Example: "gcp" */
2752
2809
  'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'byok';
2753
- /** The type of provider integration. Example: "cluster" */
2754
- 'type': 'cluster' | 'domain' | 'registry' | 'cdn';
2810
+ 'features'?: 'byoc' | 'byoc-static-egress' | 'byoc-custom-vpc' | 'cloudfront' | 'self-hosted-registry' | 'route53' | 'self-hosted-logs-metrics' | 'docker-registry-credential'[];
2811
+ /** AWS specific data. Required when `provider` is `aws`. */
2812
+ 'aws'?: {
2813
+ 'aws'?: {
2814
+ /** The provider authentication mode to use for this integration. Example: "accessKey" */
2815
+ 'authenticationMode'?: 'accessKey' | 'crossAccountRole';
2816
+ };
2817
+ };
2755
2818
  /** GCP specific data. Required when `provider` is `gcp`. */
2756
2819
  'gcp'?: {
2757
2820
  'gcp'?: {
2758
- /** Project ID */
2821
+ /** GCP Project ID */
2759
2822
  'projectId': string;
2823
+ /** The provider authentication mode to use for this integration. Example: "accessKey" */
2824
+ 'authenticationMode'?: 'accessKey' | 'crossAccountRole';
2760
2825
  };
2761
2826
  };
2762
2827
  /** ID of the integration Example: "example-integration" */
@@ -2795,8 +2860,7 @@ type CreateCloudIntegrationResult = {
2795
2860
  'description'?: string;
2796
2861
  /** Cloud provider to be used for the selected resource Example: "gcp" */
2797
2862
  'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'byok';
2798
- /** The type of provider integration. Example: "cluster" */
2799
- 'type': 'cluster' | 'domain' | 'registry' | 'cdn';
2863
+ 'features'?: 'byoc' | 'byoc-static-egress' | 'byoc-custom-vpc' | 'cloudfront' | 'self-hosted-registry' | 'route53' | 'self-hosted-logs-metrics' | 'docker-registry-credential'[];
2800
2864
  /** Cloud provider credential input, required fields dependent on which provider is chosen. */
2801
2865
  'credentials': {
2802
2866
  /** Contents of a GCP key file. */
@@ -2805,7 +2869,11 @@ type CreateCloudIntegrationResult = {
2805
2869
  'accessKey'?: string;
2806
2870
  /** AWS secret key. */
2807
2871
  'secretKey'?: string;
2808
- /** DO API key. Example: "xxxxxxxxxxxxxxxxxxxxxxxxxx" */
2872
+ /** AWS IAM role ARN. */
2873
+ 'roleArn'?: string;
2874
+ /** AWS shared secret (external id). */
2875
+ 'externalId'?: string;
2876
+ /** Civo API key. */
2809
2877
  'apiKey'?: string;
2810
2878
  /** Directory (tenant) ID */
2811
2879
  'tenantId'?: string;
@@ -2818,11 +2886,22 @@ type CreateCloudIntegrationResult = {
2818
2886
  /** Azure Subscription ID */
2819
2887
  'subscriptionId'?: string;
2820
2888
  };
2889
+ /** AWS specific data. Required when `provider` is `aws`. */
2890
+ 'aws'?: {
2891
+ 'aws'?: {
2892
+ /** The provider authentication mode to use for this integration. Example: "accessKey" */
2893
+ 'authenticationMode'?: 'accessKey' | 'crossAccountRole';
2894
+ };
2895
+ };
2821
2896
  /** GCP specific data. Required when `provider` is `gcp`. */
2822
2897
  'gcp'?: {
2823
2898
  'gcp'?: {
2824
- /** Project ID */
2899
+ /** GCP Project ID */
2825
2900
  'projectId': string;
2901
+ /** The provider authentication mode to use for this integration. Example: "accessKey" */
2902
+ 'authenticationMode'?: 'accessKey' | 'crossAccountRole';
2903
+ /** Service account email that will be used for cross account access. */
2904
+ 'serviceAccountEmail'?: string;
2826
2905
  };
2827
2906
  };
2828
2907
  /** The time the integration was created. Example: "2021-01-20T11:19:53.175Z" */
@@ -2839,8 +2918,7 @@ type CreateCloudIntegrationData = {
2839
2918
  'description'?: string;
2840
2919
  /** Cloud provider to be used for the selected resource Example: "gcp" */
2841
2920
  'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'byok';
2842
- /** The type of provider integration. Example: "cluster" */
2843
- 'type': 'cluster' | 'domain' | 'registry' | 'cdn';
2921
+ 'features'?: 'byoc' | 'byoc-static-egress' | 'byoc-custom-vpc' | 'cloudfront' | 'self-hosted-registry' | 'route53' | 'self-hosted-logs-metrics' | 'docker-registry-credential'[];
2844
2922
  /** Cloud provider credential input, required fields dependent on which provider is chosen. */
2845
2923
  'credentials': {
2846
2924
  /** Contents of a GCP key file. */
@@ -2849,7 +2927,11 @@ type CreateCloudIntegrationData = {
2849
2927
  'accessKey'?: string;
2850
2928
  /** AWS secret key. */
2851
2929
  'secretKey'?: string;
2852
- /** DO API key. Example: "xxxxxxxxxxxxxxxxxxxxxxxxxx" */
2930
+ /** AWS IAM role ARN. */
2931
+ 'roleArn'?: string;
2932
+ /** AWS shared secret (external id). */
2933
+ 'externalId'?: string;
2934
+ /** Civo API key. */
2853
2935
  'apiKey'?: string;
2854
2936
  /** Directory (tenant) ID */
2855
2937
  'tenantId'?: string;
@@ -2862,11 +2944,20 @@ type CreateCloudIntegrationData = {
2862
2944
  /** Azure Subscription ID */
2863
2945
  'subscriptionId'?: string;
2864
2946
  };
2947
+ /** AWS specific data. Required when `provider` is `aws`. */
2948
+ 'aws'?: {
2949
+ 'aws'?: {
2950
+ /** The provider authentication mode to use for this integration. Example: "accessKey" */
2951
+ 'authenticationMode'?: 'accessKey' | 'crossAccountRole';
2952
+ };
2953
+ };
2865
2954
  /** GCP specific data. Required when `provider` is `gcp`. */
2866
2955
  'gcp'?: {
2867
2956
  'gcp'?: {
2868
- /** Project ID */
2957
+ /** GCP Project ID */
2869
2958
  'projectId': string;
2959
+ /** The provider authentication mode to use for this integration. Example: "accessKey" */
2960
+ 'authenticationMode'?: 'accessKey' | 'crossAccountRole';
2870
2961
  };
2871
2962
  };
2872
2963
  };
@@ -2888,8 +2979,7 @@ type GetCloudIntegrationResult = {
2888
2979
  'description'?: string;
2889
2980
  /** Cloud provider to be used for the selected resource Example: "gcp" */
2890
2981
  'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'byok';
2891
- /** The type of provider integration. Example: "cluster" */
2892
- 'type': 'cluster' | 'domain' | 'registry' | 'cdn';
2982
+ 'features'?: 'byoc' | 'byoc-static-egress' | 'byoc-custom-vpc' | 'cloudfront' | 'self-hosted-registry' | 'route53' | 'self-hosted-logs-metrics' | 'docker-registry-credential'[];
2893
2983
  /** Cloud provider credential input, required fields dependent on which provider is chosen. */
2894
2984
  'credentials': {
2895
2985
  /** Contents of a GCP key file. */
@@ -2898,7 +2988,11 @@ type GetCloudIntegrationResult = {
2898
2988
  'accessKey'?: string;
2899
2989
  /** AWS secret key. */
2900
2990
  'secretKey'?: string;
2901
- /** DO API key. Example: "xxxxxxxxxxxxxxxxxxxxxxxxxx" */
2991
+ /** AWS IAM role ARN. */
2992
+ 'roleArn'?: string;
2993
+ /** AWS shared secret (external id). */
2994
+ 'externalId'?: string;
2995
+ /** Civo API key. */
2902
2996
  'apiKey'?: string;
2903
2997
  /** Directory (tenant) ID */
2904
2998
  'tenantId'?: string;
@@ -2911,11 +3005,22 @@ type GetCloudIntegrationResult = {
2911
3005
  /** Azure Subscription ID */
2912
3006
  'subscriptionId'?: string;
2913
3007
  };
3008
+ /** AWS specific data. Required when `provider` is `aws`. */
3009
+ 'aws'?: {
3010
+ 'aws'?: {
3011
+ /** The provider authentication mode to use for this integration. Example: "accessKey" */
3012
+ 'authenticationMode'?: 'accessKey' | 'crossAccountRole';
3013
+ };
3014
+ };
2914
3015
  /** GCP specific data. Required when `provider` is `gcp`. */
2915
3016
  'gcp'?: {
2916
3017
  'gcp'?: {
2917
- /** Project ID */
3018
+ /** GCP Project ID */
2918
3019
  'projectId': string;
3020
+ /** The provider authentication mode to use for this integration. Example: "accessKey" */
3021
+ 'authenticationMode'?: 'accessKey' | 'crossAccountRole';
3022
+ /** Service account email that will be used for cross account access. */
3023
+ 'serviceAccountEmail'?: string;
2919
3024
  };
2920
3025
  };
2921
3026
  /** The time the integration was created. Example: "2021-01-20T11:19:53.175Z" */
@@ -2946,8 +3051,7 @@ type UpdateCloudIntegrationResult = {
2946
3051
  'description'?: string;
2947
3052
  /** Cloud provider to be used for the selected resource Example: "gcp" */
2948
3053
  'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'byok';
2949
- /** The type of provider integration. Example: "cluster" */
2950
- 'type': 'cluster' | 'domain' | 'registry' | 'cdn';
3054
+ 'features'?: 'byoc' | 'byoc-static-egress' | 'byoc-custom-vpc' | 'cloudfront' | 'self-hosted-registry' | 'route53' | 'self-hosted-logs-metrics' | 'docker-registry-credential'[];
2951
3055
  /** Cloud provider credential input, required fields dependent on which provider is chosen. */
2952
3056
  'credentials': {
2953
3057
  /** Contents of a GCP key file. */
@@ -2956,7 +3060,11 @@ type UpdateCloudIntegrationResult = {
2956
3060
  'accessKey'?: string;
2957
3061
  /** AWS secret key. */
2958
3062
  'secretKey'?: string;
2959
- /** DO API key. Example: "xxxxxxxxxxxxxxxxxxxxxxxxxx" */
3063
+ /** AWS IAM role ARN. */
3064
+ 'roleArn'?: string;
3065
+ /** AWS shared secret (external id). */
3066
+ 'externalId'?: string;
3067
+ /** Civo API key. */
2960
3068
  'apiKey'?: string;
2961
3069
  /** Directory (tenant) ID */
2962
3070
  'tenantId'?: string;
@@ -2969,11 +3077,22 @@ type UpdateCloudIntegrationResult = {
2969
3077
  /** Azure Subscription ID */
2970
3078
  'subscriptionId'?: string;
2971
3079
  };
3080
+ /** AWS specific data. Required when `provider` is `aws`. */
3081
+ 'aws'?: {
3082
+ 'aws'?: {
3083
+ /** The provider authentication mode to use for this integration. Example: "accessKey" */
3084
+ 'authenticationMode'?: 'accessKey' | 'crossAccountRole';
3085
+ };
3086
+ };
2972
3087
  /** GCP specific data. Required when `provider` is `gcp`. */
2973
3088
  'gcp'?: {
2974
3089
  'gcp'?: {
2975
- /** Project ID */
3090
+ /** GCP Project ID */
2976
3091
  'projectId': string;
3092
+ /** The provider authentication mode to use for this integration. Example: "accessKey" */
3093
+ 'authenticationMode'?: 'accessKey' | 'crossAccountRole';
3094
+ /** Service account email that will be used for cross account access. */
3095
+ 'serviceAccountEmail'?: string;
2977
3096
  };
2978
3097
  };
2979
3098
  /** The time the integration was created. Example: "2021-01-20T11:19:53.175Z" */
@@ -2998,7 +3117,11 @@ type UpdateCloudIntegrationData = {
2998
3117
  'accessKey'?: string;
2999
3118
  /** AWS secret key. */
3000
3119
  'secretKey'?: string;
3001
- /** DO API key. Example: "xxxxxxxxxxxxxxxxxxxxxxxxxx" */
3120
+ /** AWS IAM role ARN. */
3121
+ 'roleArn'?: string;
3122
+ /** AWS shared secret (external id). */
3123
+ 'externalId'?: string;
3124
+ /** Civo API key. */
3002
3125
  'apiKey'?: string;
3003
3126
  /** Directory (tenant) ID */
3004
3127
  'tenantId'?: string;
@@ -3207,6 +3330,11 @@ type CreateDomainResult = {
3207
3330
  /** Expected CNAME target of the dcvRecord. */
3208
3331
  'record'?: string;
3209
3332
  };
3333
+ /** Certificate status for wildcard domains. */
3334
+ 'status'?: {
3335
+ /** Expiry date of the current certificate. */
3336
+ 'expiryDate'?: string;
3337
+ };
3210
3338
  };
3211
3339
  } | any;
3212
3340
  type CreateDomainCall = (opts: CreateDomainRequest) => Promise<ApiCallResponse<CreateDomainResult>>;
@@ -3280,6 +3408,11 @@ type GetDomainResult = {
3280
3408
  /** Expected CNAME target of the dcvRecord. */
3281
3409
  'record'?: string;
3282
3410
  };
3411
+ /** Certificate status for wildcard domains. */
3412
+ 'status'?: {
3413
+ /** Expiry date of the current certificate. */
3414
+ 'expiryDate'?: string;
3415
+ };
3283
3416
  };
3284
3417
  /** A list of subdomains added to this domain. */
3285
3418
  'subdomains': {
@@ -3322,6 +3455,32 @@ declare class DeleteDomainEndpoint extends DeleteApiEndpoint<DeleteDomainRequest
3322
3455
  body: () => undefined;
3323
3456
  }
3324
3457
 
3458
+ type GetDomaincertificateResult = {
3459
+ /** Certificate chain. May consist of one or more certificates. */
3460
+ 'certificateChain': string;
3461
+ /** Certificate extracted from the certificate chain. */
3462
+ 'certificate': string;
3463
+ /** Issuer certificate extracted from the certificate chain. */
3464
+ 'issuerCertificate': string;
3465
+ /** Certificate private key. */
3466
+ 'privateKey': string;
3467
+ };
3468
+ type GetDomaincertificateCall = (opts: GetDomaincertificateRequest) => Promise<ApiCallResponse<GetDomaincertificateResult>>;
3469
+ type GetDomaincertificateRequest = {
3470
+ parameters: GetDomaincertificateParameters;
3471
+ };
3472
+ type GetDomaincertificateParameters = {
3473
+ /** Name of the domain */ 'domain': string;
3474
+ };
3475
+ /** Retrieve certificate data for a domain to verify its contents. */
3476
+ declare class GetDomaincertificateEndpoint extends GetApiEndpoint<GetDomaincertificateRequest, GetDomaincertificateResult> {
3477
+ description: string;
3478
+ withAuth: boolean;
3479
+ requiredPermissions: string;
3480
+ endpointUrl: (opts: GetDomaincertificateRequest) => string;
3481
+ body: () => undefined;
3482
+ }
3483
+
3325
3484
  type ImportDomaincertificateResult = any | any;
3326
3485
  type ImportDomaincertificateCall = (opts: ImportDomaincertificateRequest) => Promise<ApiCallResponse<ImportDomaincertificateResult>>;
3327
3486
  type ImportDomaincertificateRequest = {
@@ -3529,12 +3688,17 @@ type UnassignSubdomainResult = any;
3529
3688
  type UnassignSubdomainCall = (opts: UnassignSubdomainRequest) => Promise<ApiCallResponse<UnassignSubdomainResult>>;
3530
3689
  type UnassignSubdomainRequest = {
3531
3690
  parameters: UnassignSubdomainParameters;
3691
+ options?: UnassignSubdomainOptions;
3532
3692
  };
3533
3693
  type UnassignSubdomainParameters = {
3534
3694
  /** Name of the domain */ 'domain': string;
3535
3695
  /** Name of the subdomain */
3536
3696
  'subdomain': string;
3537
3697
  };
3698
+ type UnassignSubdomainOptions = {
3699
+ /** Unassign all associated subdomain paths from their respective services. */
3700
+ 'unassignPaths'?: boolean;
3701
+ };
3538
3702
  /** Removes a subdomain from its assigned service */
3539
3703
  declare class UnassignSubdomainEndpoint extends DeleteApiEndpoint<UnassignSubdomainRequest, UnassignSubdomainResult> {
3540
3704
  description: string;
@@ -4374,6 +4538,12 @@ type CreateLogsinkData = {
4374
4538
  /** Codec to encode logs in Example: "json" */
4375
4539
  'codec': 'text' | 'json';
4376
4540
  };
4541
+ 'batch'?: {
4542
+ /** The max number of events in a batch before sending Example: "10" */
4543
+ 'maxEvents'?: number;
4544
+ /** The max size of a batch in bytes before sending Example: "1e+7" */
4545
+ 'maxBytes'?: number;
4546
+ };
4377
4547
  /** Auth information. */
4378
4548
  'auth': {
4379
4549
  /** No authentication strategy Example: "none" */
@@ -4648,6 +4818,12 @@ type GetLogsinkResult = {
4648
4818
  /** Codec to encode logs in Example: "json" */
4649
4819
  'codec': 'text' | 'json';
4650
4820
  };
4821
+ 'batch'?: {
4822
+ /** The max number of events in a batch before sending Example: "10" */
4823
+ 'maxEvents'?: number;
4824
+ /** The max size of a batch in bytes before sending Example: "1e+7" */
4825
+ 'maxBytes'?: number;
4826
+ };
4651
4827
  /** Auth information. */
4652
4828
  'auth': {
4653
4829
  /** No authentication strategy Example: "none" */
@@ -4816,6 +4992,12 @@ type UpdateLogsinkData = {
4816
4992
  /** Codec to encode logs in Example: "json" */
4817
4993
  'codec': 'text' | 'json';
4818
4994
  };
4995
+ 'batch'?: {
4996
+ /** The max number of events in a batch before sending Example: "10" */
4997
+ 'maxEvents'?: number;
4998
+ /** The max size of a batch in bytes before sending Example: "1e+7" */
4999
+ 'maxBytes'?: number;
5000
+ };
4819
5001
  /** Auth information. */
4820
5002
  'auth': {
4821
5003
  /** No authentication strategy Example: "none" */
@@ -5014,8 +5196,9 @@ type CreateNotificationResult = {
5014
5196
  'trigger:infrastructure:addon-volume:usage-90-exceeded'?: boolean;
5015
5197
  'trigger:infrastructure:platform-volume:usage-75-exceeded'?: boolean;
5016
5198
  'trigger:infrastructure:platform-volume:usage-90-exceeded'?: boolean;
5017
- 'trigger:infrastructure:cluster:controller'?: boolean;
5018
- 'trigger:infrastructure:cluster:scheduling'?: boolean;
5199
+ 'trigger:infrastructure:byoc:cluster:error'?: boolean;
5200
+ 'trigger:infrastructure:byoc:node-pool:error'?: boolean;
5201
+ 'trigger:infrastructure:byoc:scheduling:error'?: boolean;
5019
5202
  };
5020
5203
  };
5021
5204
  type CreateNotificationCall = (opts: CreateNotificationRequest) => Promise<ApiCallResponse<CreateNotificationResult>>;
@@ -5097,8 +5280,9 @@ type CreateNotificationData = {
5097
5280
  'trigger:infrastructure:addon-volume:usage-90-exceeded'?: boolean;
5098
5281
  'trigger:infrastructure:platform-volume:usage-75-exceeded'?: boolean;
5099
5282
  'trigger:infrastructure:platform-volume:usage-90-exceeded'?: boolean;
5100
- 'trigger:infrastructure:cluster:controller'?: boolean;
5101
- 'trigger:infrastructure:cluster:scheduling'?: boolean;
5283
+ 'trigger:infrastructure:byoc:cluster:error'?: boolean;
5284
+ 'trigger:infrastructure:byoc:node-pool:error'?: boolean;
5285
+ 'trigger:infrastructure:byoc:scheduling:error'?: boolean;
5102
5286
  };
5103
5287
  };
5104
5288
  /** Create a new notification integration. */
@@ -5195,8 +5379,9 @@ type GetNotificationResult = {
5195
5379
  'trigger:infrastructure:addon-volume:usage-90-exceeded'?: boolean;
5196
5380
  'trigger:infrastructure:platform-volume:usage-75-exceeded'?: boolean;
5197
5381
  'trigger:infrastructure:platform-volume:usage-90-exceeded'?: boolean;
5198
- 'trigger:infrastructure:cluster:controller'?: boolean;
5199
- 'trigger:infrastructure:cluster:scheduling'?: boolean;
5382
+ 'trigger:infrastructure:byoc:cluster:error'?: boolean;
5383
+ 'trigger:infrastructure:byoc:node-pool:error'?: boolean;
5384
+ 'trigger:infrastructure:byoc:scheduling:error'?: boolean;
5200
5385
  };
5201
5386
  };
5202
5387
  type GetNotificationCall = (opts: GetNotificationRequest) => Promise<ApiCallResponse<GetNotificationResult>>;
@@ -5293,8 +5478,9 @@ type UpdateNotificationData = {
5293
5478
  'trigger:infrastructure:addon-volume:usage-90-exceeded'?: boolean;
5294
5479
  'trigger:infrastructure:platform-volume:usage-75-exceeded'?: boolean;
5295
5480
  'trigger:infrastructure:platform-volume:usage-90-exceeded'?: boolean;
5296
- 'trigger:infrastructure:cluster:controller'?: boolean;
5297
- 'trigger:infrastructure:cluster:scheduling'?: boolean;
5481
+ 'trigger:infrastructure:byoc:cluster:error'?: boolean;
5482
+ 'trigger:infrastructure:byoc:node-pool:error'?: boolean;
5483
+ 'trigger:infrastructure:byoc:scheduling:error'?: boolean;
5298
5484
  };
5299
5485
  };
5300
5486
  /** Updates a notification integration */
@@ -5816,6 +6002,8 @@ type CreateProjectResult = {
5816
6002
  'enabled': boolean;
5817
6003
  /** The tags which determine the resources the settings should be applied to */
5818
6004
  'tags'?: string[];
6005
+ /** If all or any of the tags must be present on the target for it to match the condition. Example: "or" */
6006
+ 'tagMatchCondition'?: 'and' | 'or';
5819
6007
  };
5820
6008
  'options'?: {
5821
6009
  'cpuLimit'?: string;
@@ -5841,6 +6029,8 @@ type CreateProjectResult = {
5841
6029
  'enabled': boolean;
5842
6030
  /** The tags which determine the resources the settings should be applied to */
5843
6031
  'tags'?: string[];
6032
+ /** If all or any of the tags must be present on the target for it to match the condition. Example: "or" */
6033
+ 'tagMatchCondition'?: 'and' | 'or';
5844
6034
  };
5845
6035
  };
5846
6036
  };
@@ -5875,6 +6065,8 @@ type CreateProjectData = {
5875
6065
  'enabled': boolean;
5876
6066
  /** The tags which determine the resources the settings should be applied to */
5877
6067
  'tags'?: string[];
6068
+ /** If all or any of the tags must be present on the target for it to match the condition. Example: "or" */
6069
+ 'tagMatchCondition'?: 'and' | 'or';
5878
6070
  };
5879
6071
  'options'?: {
5880
6072
  'cpuLimit'?: string;
@@ -5900,6 +6092,8 @@ type CreateProjectData = {
5900
6092
  'enabled': boolean;
5901
6093
  /** The tags which determine the resources the settings should be applied to */
5902
6094
  'tags'?: string[];
6095
+ /** If all or any of the tags must be present on the target for it to match the condition. Example: "or" */
6096
+ 'tagMatchCondition'?: 'and' | 'or';
5903
6097
  };
5904
6098
  };
5905
6099
  };
@@ -5925,6 +6119,8 @@ type CreateProjectData = {
5925
6119
  'enabled': boolean;
5926
6120
  /** The tags which determine the resources the settings should be applied to */
5927
6121
  'tags'?: string[];
6122
+ /** If all or any of the tags must be present on the target for it to match the condition. Example: "or" */
6123
+ 'tagMatchCondition'?: 'and' | 'or';
5928
6124
  };
5929
6125
  'options'?: {
5930
6126
  'cpuLimit'?: string;
@@ -5950,6 +6146,8 @@ type CreateProjectData = {
5950
6146
  'enabled': boolean;
5951
6147
  /** The tags which determine the resources the settings should be applied to */
5952
6148
  'tags'?: string[];
6149
+ /** If all or any of the tags must be present on the target for it to match the condition. Example: "or" */
6150
+ 'tagMatchCondition'?: 'and' | 'or';
5953
6151
  };
5954
6152
  };
5955
6153
  };
@@ -5989,6 +6187,8 @@ type PutProjectResult = {
5989
6187
  'enabled': boolean;
5990
6188
  /** The tags which determine the resources the settings should be applied to */
5991
6189
  'tags'?: string[];
6190
+ /** If all or any of the tags must be present on the target for it to match the condition. Example: "or" */
6191
+ 'tagMatchCondition'?: 'and' | 'or';
5992
6192
  };
5993
6193
  'options'?: {
5994
6194
  'cpuLimit'?: string;
@@ -6014,6 +6214,8 @@ type PutProjectResult = {
6014
6214
  'enabled': boolean;
6015
6215
  /** The tags which determine the resources the settings should be applied to */
6016
6216
  'tags'?: string[];
6217
+ /** If all or any of the tags must be present on the target for it to match the condition. Example: "or" */
6218
+ 'tagMatchCondition'?: 'and' | 'or';
6017
6219
  };
6018
6220
  };
6019
6221
  };
@@ -6048,6 +6250,8 @@ type PutProjectData = {
6048
6250
  'enabled': boolean;
6049
6251
  /** The tags which determine the resources the settings should be applied to */
6050
6252
  'tags'?: string[];
6253
+ /** If all or any of the tags must be present on the target for it to match the condition. Example: "or" */
6254
+ 'tagMatchCondition'?: 'and' | 'or';
6051
6255
  };
6052
6256
  'options'?: {
6053
6257
  'cpuLimit'?: string;
@@ -6073,6 +6277,8 @@ type PutProjectData = {
6073
6277
  'enabled': boolean;
6074
6278
  /** The tags which determine the resources the settings should be applied to */
6075
6279
  'tags'?: string[];
6280
+ /** If all or any of the tags must be present on the target for it to match the condition. Example: "or" */
6281
+ 'tagMatchCondition'?: 'and' | 'or';
6076
6282
  };
6077
6283
  };
6078
6284
  };
@@ -6098,6 +6304,8 @@ type PutProjectData = {
6098
6304
  'enabled': boolean;
6099
6305
  /** The tags which determine the resources the settings should be applied to */
6100
6306
  'tags'?: string[];
6307
+ /** If all or any of the tags must be present on the target for it to match the condition. Example: "or" */
6308
+ 'tagMatchCondition'?: 'and' | 'or';
6101
6309
  };
6102
6310
  'options'?: {
6103
6311
  'cpuLimit'?: string;
@@ -6123,6 +6331,8 @@ type PutProjectData = {
6123
6331
  'enabled': boolean;
6124
6332
  /** The tags which determine the resources the settings should be applied to */
6125
6333
  'tags'?: string[];
6334
+ /** If all or any of the tags must be present on the target for it to match the condition. Example: "or" */
6335
+ 'tagMatchCondition'?: 'and' | 'or';
6126
6336
  };
6127
6337
  };
6128
6338
  };
@@ -6162,6 +6372,8 @@ type PatchProjectResult = {
6162
6372
  'enabled': boolean;
6163
6373
  /** The tags which determine the resources the settings should be applied to */
6164
6374
  'tags'?: string[];
6375
+ /** If all or any of the tags must be present on the target for it to match the condition. Example: "or" */
6376
+ 'tagMatchCondition'?: 'and' | 'or';
6165
6377
  };
6166
6378
  'options'?: {
6167
6379
  'cpuLimit'?: string;
@@ -6187,6 +6399,8 @@ type PatchProjectResult = {
6187
6399
  'enabled': boolean;
6188
6400
  /** The tags which determine the resources the settings should be applied to */
6189
6401
  'tags'?: string[];
6402
+ /** If all or any of the tags must be present on the target for it to match the condition. Example: "or" */
6403
+ 'tagMatchCondition'?: 'and' | 'or';
6190
6404
  };
6191
6405
  };
6192
6406
  };
@@ -6219,6 +6433,8 @@ type PatchProjectData = {
6219
6433
  'enabled'?: boolean;
6220
6434
  /** The tags which determine the resources the settings should be applied to */
6221
6435
  'tags'?: string[];
6436
+ /** If all or any of the tags must be present on the target for it to match the condition. Example: "or" */
6437
+ 'tagMatchCondition'?: 'and' | 'or';
6222
6438
  };
6223
6439
  'secrets'?: {
6224
6440
  /** Tailscale auth key (required for enabling Tailscale) */
@@ -6238,6 +6454,8 @@ type PatchProjectData = {
6238
6454
  'enabled'?: boolean;
6239
6455
  /** The tags which determine the resources the settings should be applied to */
6240
6456
  'tags'?: string[];
6457
+ /** If all or any of the tags must be present on the target for it to match the condition. Example: "or" */
6458
+ 'tagMatchCondition'?: 'and' | 'or';
6241
6459
  };
6242
6460
  };
6243
6461
  };
@@ -6306,6 +6524,17 @@ type GetProjectResult = {
6306
6524
  'type': string;
6307
6525
  };
6308
6526
  }[];
6527
+ /** Cluster information */
6528
+ 'cluster': {
6529
+ /** The id of the cluster associated with this project. Example: "nf-europe-west" */
6530
+ 'id': string;
6531
+ /** The name of the cluster associated with this project. Example: "nf-europe-west" */
6532
+ 'name': string;
6533
+ /** Namespace this resource is located within on the cluster. Example: "ns-8zy2mcjh9zn2" */
6534
+ 'namespace'?: string;
6535
+ /** Load balancer DNS for the cluster. */
6536
+ 'loadBalancers'?: string[];
6537
+ };
6309
6538
  };
6310
6539
  type GetProjectCall = (opts: GetProjectRequest) => Promise<ApiCallResponse<GetProjectResult>>;
6311
6540
  type GetProjectRequest = {
@@ -6436,6 +6665,13 @@ type CreateAddonResult = {
6436
6665
  /** The time the backup is retained for, in days. `hourly` backups have a maximum retention of 7 days, `daily` backups have a maximum retention of 60 days and `weekly` backups have a maximum retention of 120 days. Example: 7 */
6437
6666
  'retentionTime': number;
6438
6667
  }[];
6668
+ /** Allow setting custom labels and annotations for workloads. */
6669
+ 'metadata'?: {
6670
+ /** Specify custom labels for the workload. */
6671
+ 'labels'?: any;
6672
+ /** Specify custom annotations for the workload as string or object. */
6673
+ 'annotations'?: any;
6674
+ };
6439
6675
  /** Identifier for the addon. Example: "example-addon" */
6440
6676
  'id': string;
6441
6677
  /** Full identifier used for deployment Example: "/example-user/default-project/example-addon" */
@@ -6450,6 +6686,8 @@ type CreateAddonResult = {
6450
6686
  'name': string;
6451
6687
  /** Namespace this resource is located within on the cluster. Example: "ns-8zy2mcjh9zn2" */
6452
6688
  'namespace'?: string;
6689
+ /** Load balancer DNS for the cluster. */
6690
+ 'loadBalancers'?: string[];
6453
6691
  };
6454
6692
  /** time of creation */
6455
6693
  'createdAt'?: string;
@@ -6480,6 +6718,8 @@ type CreateAddonResult = {
6480
6718
  'name': string;
6481
6719
  /** Namespace this resource is located within on the cluster. Example: "ns-8zy2mcjh9zn2" */
6482
6720
  'namespace'?: string;
6721
+ /** Load balancer DNS for the cluster. */
6722
+ 'loadBalancers'?: string[];
6483
6723
  };
6484
6724
  /** time of creation */
6485
6725
  'createdAt'?: string;
@@ -6587,6 +6827,13 @@ type CreateAddonData = {
6587
6827
  /** The time the backup is retained for, in days. `hourly` backups have a maximum retention of 7 days, `daily` backups have a maximum retention of 60 days and `weekly` backups have a maximum retention of 120 days. Example: 7 */
6588
6828
  'retentionTime': number;
6589
6829
  }[];
6830
+ /** Allow setting custom labels and annotations for workloads. */
6831
+ 'metadata'?: {
6832
+ /** Specify custom labels for the workload. */
6833
+ 'labels'?: any;
6834
+ /** Specify custom annotations for the workload as string or object. */
6835
+ 'annotations'?: any;
6836
+ };
6590
6837
  } | {
6591
6838
  /** The name of the addon. Example: "Example Addon" */
6592
6839
  'name': string;
@@ -6701,6 +6948,13 @@ type PutAddonResult = {
6701
6948
  /** The time the backup is retained for, in days. `hourly` backups have a maximum retention of 7 days, `daily` backups have a maximum retention of 60 days and `weekly` backups have a maximum retention of 120 days. Example: 7 */
6702
6949
  'retentionTime': number;
6703
6950
  }[];
6951
+ /** Allow setting custom labels and annotations for workloads. */
6952
+ 'metadata'?: {
6953
+ /** Specify custom labels for the workload. */
6954
+ 'labels'?: any;
6955
+ /** Specify custom annotations for the workload as string or object. */
6956
+ 'annotations'?: any;
6957
+ };
6704
6958
  /** Identifier for the addon. Example: "example-addon" */
6705
6959
  'id': string;
6706
6960
  /** Full identifier used for deployment Example: "/example-user/default-project/example-addon" */
@@ -6715,6 +6969,8 @@ type PutAddonResult = {
6715
6969
  'name': string;
6716
6970
  /** Namespace this resource is located within on the cluster. Example: "ns-8zy2mcjh9zn2" */
6717
6971
  'namespace'?: string;
6972
+ /** Load balancer DNS for the cluster. */
6973
+ 'loadBalancers'?: string[];
6718
6974
  };
6719
6975
  /** time of creation */
6720
6976
  'createdAt'?: string;
@@ -6745,6 +7001,8 @@ type PutAddonResult = {
6745
7001
  'name': string;
6746
7002
  /** Namespace this resource is located within on the cluster. Example: "ns-8zy2mcjh9zn2" */
6747
7003
  'namespace'?: string;
7004
+ /** Load balancer DNS for the cluster. */
7005
+ 'loadBalancers'?: string[];
6748
7006
  };
6749
7007
  /** time of creation */
6750
7008
  'createdAt'?: string;
@@ -6852,6 +7110,13 @@ type PutAddonData = {
6852
7110
  /** The time the backup is retained for, in days. `hourly` backups have a maximum retention of 7 days, `daily` backups have a maximum retention of 60 days and `weekly` backups have a maximum retention of 120 days. Example: 7 */
6853
7111
  'retentionTime': number;
6854
7112
  }[];
7113
+ /** Allow setting custom labels and annotations for workloads. */
7114
+ 'metadata'?: {
7115
+ /** Specify custom labels for the workload. */
7116
+ 'labels'?: any;
7117
+ /** Specify custom annotations for the workload as string or object. */
7118
+ 'annotations'?: any;
7119
+ };
6855
7120
  } | {
6856
7121
  /** The name of the addon. Example: "Example Addon" */
6857
7122
  'name': string;
@@ -6940,6 +7205,8 @@ type GetAddonResult = {
6940
7205
  'name': string;
6941
7206
  /** Namespace this resource is located within on the cluster. Example: "ns-8zy2mcjh9zn2" */
6942
7207
  'namespace'?: string;
7208
+ /** Load balancer DNS for the cluster. */
7209
+ 'loadBalancers'?: string[];
6943
7210
  };
6944
7211
  };
6945
7212
  type GetAddonCall = (opts: GetAddonRequest) => Promise<ApiCallResponse<GetAddonResult>>;
@@ -7051,6 +7318,13 @@ type PatchAddonResult = {
7051
7318
  /** The time the backup is retained for, in days. `hourly` backups have a maximum retention of 7 days, `daily` backups have a maximum retention of 60 days and `weekly` backups have a maximum retention of 120 days. Example: 7 */
7052
7319
  'retentionTime': number;
7053
7320
  }[];
7321
+ /** Allow setting custom labels and annotations for workloads. */
7322
+ 'metadata'?: {
7323
+ /** Specify custom labels for the workload. */
7324
+ 'labels'?: any;
7325
+ /** Specify custom annotations for the workload as string or object. */
7326
+ 'annotations'?: any;
7327
+ };
7054
7328
  /** Identifier for the addon. Example: "example-addon" */
7055
7329
  'id': string;
7056
7330
  /** Full identifier used for deployment Example: "/example-user/default-project/example-addon" */
@@ -7065,6 +7339,8 @@ type PatchAddonResult = {
7065
7339
  'name': string;
7066
7340
  /** Namespace this resource is located within on the cluster. Example: "ns-8zy2mcjh9zn2" */
7067
7341
  'namespace'?: string;
7342
+ /** Load balancer DNS for the cluster. */
7343
+ 'loadBalancers'?: string[];
7068
7344
  };
7069
7345
  /** time of creation */
7070
7346
  'createdAt'?: string;
@@ -7095,6 +7371,8 @@ type PatchAddonResult = {
7095
7371
  'name': string;
7096
7372
  /** Namespace this resource is located within on the cluster. Example: "ns-8zy2mcjh9zn2" */
7097
7373
  'namespace'?: string;
7374
+ /** Load balancer DNS for the cluster. */
7375
+ 'loadBalancers'?: string[];
7098
7376
  };
7099
7377
  /** time of creation */
7100
7378
  'createdAt'?: string;
@@ -7116,7 +7394,6 @@ type PatchAddonData = {
7116
7394
  'description'?: string;
7117
7395
  /** An array of previously defined tags to help identify and group the resource. */
7118
7396
  'tags'?: string[];
7119
- 'templateValues'?: any;
7120
7397
  'billing'?: {
7121
7398
  /** The ID of the deployment plan to use. Example: "nf-compute-20" */
7122
7399
  'deploymentPlan'?: string;
@@ -7178,6 +7455,13 @@ type PatchAddonData = {
7178
7455
  /** The time the backup is retained for, in days. `hourly` backups have a maximum retention of 7 days, `daily` backups have a maximum retention of 60 days and `weekly` backups have a maximum retention of 120 days. Example: 7 */
7179
7456
  'retentionTime': number;
7180
7457
  }[];
7458
+ /** Allow setting custom labels and annotations for workloads. */
7459
+ 'metadata'?: {
7460
+ /** Specify custom labels for the workload. */
7461
+ 'labels'?: any;
7462
+ /** Specify custom annotations for the workload as string or object. */
7463
+ 'annotations'?: any;
7464
+ };
7181
7465
  } | {
7182
7466
  /** A description of the addon. Example: "An addon description" */
7183
7467
  'description'?: string;
@@ -8337,6 +8621,13 @@ type CreateJobCronResult = {
8337
8621
  };
8338
8622
  /** The maximum amount of time the process has to shut down after receiving a SIGTERM signal before it is forcefully shut down SIGKILL by the system. */
8339
8623
  'gracePeriodSeconds'?: number;
8624
+ /** Allow setting custom labels and annotations for workloads. */
8625
+ 'metadata'?: {
8626
+ /** Specify custom labels for the workload. */
8627
+ 'labels'?: any;
8628
+ /** Specify custom annotations for the workload as string or object. */
8629
+ 'annotations'?: any;
8630
+ };
8340
8631
  'vcs'?: {
8341
8632
  /** URL of the Git repo to build. Example: "https://github.com/northflank/gatsby-with-northflank" */
8342
8633
  'projectUrl': string;
@@ -8424,6 +8715,8 @@ type CreateJobCronResult = {
8424
8715
  'name': string;
8425
8716
  /** Namespace this resource is located within on the cluster. Example: "ns-8zy2mcjh9zn2" */
8426
8717
  'namespace'?: string;
8718
+ /** Load balancer DNS for the cluster. */
8719
+ 'loadBalancers'?: string[];
8427
8720
  };
8428
8721
  /** time of creation */
8429
8722
  'createdAt'?: string;
@@ -8503,6 +8796,13 @@ type CreateJobCronData = {
8503
8796
  };
8504
8797
  /** The maximum amount of time the process has to shut down after receiving a SIGTERM signal before it is forcefully shut down SIGKILL by the system. */
8505
8798
  'gracePeriodSeconds'?: number;
8799
+ /** Allow setting custom labels and annotations for workloads. */
8800
+ 'metadata'?: {
8801
+ /** Specify custom labels for the workload. */
8802
+ 'labels'?: any;
8803
+ /** Specify custom annotations for the workload as string or object. */
8804
+ 'annotations'?: any;
8805
+ };
8506
8806
  'vcs': {
8507
8807
  /** URL of the Git repo to build. Example: "https://github.com/northflank/gatsby-with-northflank" */
8508
8808
  'projectUrl': string;
@@ -8555,6 +8855,13 @@ type CreateJobCronData = {
8555
8855
  };
8556
8856
  /** The maximum amount of time the process has to shut down after receiving a SIGTERM signal before it is forcefully shut down SIGKILL by the system. */
8557
8857
  'gracePeriodSeconds'?: number;
8858
+ /** Allow setting custom labels and annotations for workloads. */
8859
+ 'metadata'?: {
8860
+ /** Specify custom labels for the workload. */
8861
+ 'labels'?: any;
8862
+ /** Specify custom annotations for the workload as string or object. */
8863
+ 'annotations'?: any;
8864
+ };
8558
8865
  'external': {
8559
8866
  /** Image to be deployed. When not deploying from Dockerhub the URL must be specified. Example: "nginx:latest" */
8560
8867
  'imagePath': string;
@@ -8599,6 +8906,13 @@ type CreateJobCronData = {
8599
8906
  };
8600
8907
  /** The maximum amount of time the process has to shut down after receiving a SIGTERM signal before it is forcefully shut down SIGKILL by the system. */
8601
8908
  'gracePeriodSeconds'?: number;
8909
+ /** Allow setting custom labels and annotations for workloads. */
8910
+ 'metadata'?: {
8911
+ /** Specify custom labels for the workload. */
8912
+ 'labels'?: any;
8913
+ /** Specify custom annotations for the workload as string or object. */
8914
+ 'annotations'?: any;
8915
+ };
8602
8916
  'internal': {
8603
8917
  /** ID of the build service to deploy Example: "example-build-service" */
8604
8918
  'id'?: string;
@@ -8850,6 +9164,13 @@ type PutJobCronResult = {
8850
9164
  };
8851
9165
  /** The maximum amount of time the process has to shut down after receiving a SIGTERM signal before it is forcefully shut down SIGKILL by the system. */
8852
9166
  'gracePeriodSeconds'?: number;
9167
+ /** Allow setting custom labels and annotations for workloads. */
9168
+ 'metadata'?: {
9169
+ /** Specify custom labels for the workload. */
9170
+ 'labels'?: any;
9171
+ /** Specify custom annotations for the workload as string or object. */
9172
+ 'annotations'?: any;
9173
+ };
8853
9174
  'vcs'?: {
8854
9175
  /** URL of the Git repo to build. Example: "https://github.com/northflank/gatsby-with-northflank" */
8855
9176
  'projectUrl': string;
@@ -8937,6 +9258,8 @@ type PutJobCronResult = {
8937
9258
  'name': string;
8938
9259
  /** Namespace this resource is located within on the cluster. Example: "ns-8zy2mcjh9zn2" */
8939
9260
  'namespace'?: string;
9261
+ /** Load balancer DNS for the cluster. */
9262
+ 'loadBalancers'?: string[];
8940
9263
  };
8941
9264
  /** time of creation */
8942
9265
  'createdAt'?: string;
@@ -9016,6 +9339,13 @@ type PutJobCronData = {
9016
9339
  };
9017
9340
  /** The maximum amount of time the process has to shut down after receiving a SIGTERM signal before it is forcefully shut down SIGKILL by the system. */
9018
9341
  'gracePeriodSeconds'?: number;
9342
+ /** Allow setting custom labels and annotations for workloads. */
9343
+ 'metadata'?: {
9344
+ /** Specify custom labels for the workload. */
9345
+ 'labels'?: any;
9346
+ /** Specify custom annotations for the workload as string or object. */
9347
+ 'annotations'?: any;
9348
+ };
9019
9349
  'vcs': {
9020
9350
  /** URL of the Git repo to build. Example: "https://github.com/northflank/gatsby-with-northflank" */
9021
9351
  'projectUrl': string;
@@ -9068,6 +9398,13 @@ type PutJobCronData = {
9068
9398
  };
9069
9399
  /** The maximum amount of time the process has to shut down after receiving a SIGTERM signal before it is forcefully shut down SIGKILL by the system. */
9070
9400
  'gracePeriodSeconds'?: number;
9401
+ /** Allow setting custom labels and annotations for workloads. */
9402
+ 'metadata'?: {
9403
+ /** Specify custom labels for the workload. */
9404
+ 'labels'?: any;
9405
+ /** Specify custom annotations for the workload as string or object. */
9406
+ 'annotations'?: any;
9407
+ };
9071
9408
  'external': {
9072
9409
  /** Image to be deployed. When not deploying from Dockerhub the URL must be specified. Example: "nginx:latest" */
9073
9410
  'imagePath': string;
@@ -9112,6 +9449,13 @@ type PutJobCronData = {
9112
9449
  };
9113
9450
  /** The maximum amount of time the process has to shut down after receiving a SIGTERM signal before it is forcefully shut down SIGKILL by the system. */
9114
9451
  'gracePeriodSeconds'?: number;
9452
+ /** Allow setting custom labels and annotations for workloads. */
9453
+ 'metadata'?: {
9454
+ /** Specify custom labels for the workload. */
9455
+ 'labels'?: any;
9456
+ /** Specify custom annotations for the workload as string or object. */
9457
+ 'annotations'?: any;
9458
+ };
9115
9459
  'internal': {
9116
9460
  /** ID of the build service to deploy Example: "example-build-service" */
9117
9461
  'id'?: string;
@@ -9363,6 +9707,13 @@ type PatchJobCronResult = {
9363
9707
  };
9364
9708
  /** The maximum amount of time the process has to shut down after receiving a SIGTERM signal before it is forcefully shut down SIGKILL by the system. */
9365
9709
  'gracePeriodSeconds'?: number;
9710
+ /** Allow setting custom labels and annotations for workloads. */
9711
+ 'metadata'?: {
9712
+ /** Specify custom labels for the workload. */
9713
+ 'labels'?: any;
9714
+ /** Specify custom annotations for the workload as string or object. */
9715
+ 'annotations'?: any;
9716
+ };
9366
9717
  'vcs'?: {
9367
9718
  /** URL of the Git repo to build. Example: "https://github.com/northflank/gatsby-with-northflank" */
9368
9719
  'projectUrl': string;
@@ -9450,6 +9801,8 @@ type PatchJobCronResult = {
9450
9801
  'name': string;
9451
9802
  /** Namespace this resource is located within on the cluster. Example: "ns-8zy2mcjh9zn2" */
9452
9803
  'namespace'?: string;
9804
+ /** Load balancer DNS for the cluster. */
9805
+ 'loadBalancers'?: string[];
9453
9806
  };
9454
9807
  /** time of creation */
9455
9808
  'createdAt'?: string;
@@ -9686,6 +10039,13 @@ type CreateJobManualResult = {
9686
10039
  };
9687
10040
  /** The maximum amount of time the process has to shut down after receiving a SIGTERM signal before it is forcefully shut down SIGKILL by the system. */
9688
10041
  'gracePeriodSeconds'?: number;
10042
+ /** Allow setting custom labels and annotations for workloads. */
10043
+ 'metadata'?: {
10044
+ /** Specify custom labels for the workload. */
10045
+ 'labels'?: any;
10046
+ /** Specify custom annotations for the workload as string or object. */
10047
+ 'annotations'?: any;
10048
+ };
9689
10049
  'vcs'?: {
9690
10050
  /** URL of the Git repo to build. Example: "https://github.com/northflank/gatsby-with-northflank" */
9691
10051
  'projectUrl': string;
@@ -9773,6 +10133,8 @@ type CreateJobManualResult = {
9773
10133
  'name': string;
9774
10134
  /** Namespace this resource is located within on the cluster. Example: "ns-8zy2mcjh9zn2" */
9775
10135
  'namespace'?: string;
10136
+ /** Load balancer DNS for the cluster. */
10137
+ 'loadBalancers'?: string[];
9776
10138
  };
9777
10139
  /** time of creation */
9778
10140
  'createdAt'?: string;
@@ -9852,6 +10214,13 @@ type CreateJobManualData = {
9852
10214
  };
9853
10215
  /** The maximum amount of time the process has to shut down after receiving a SIGTERM signal before it is forcefully shut down SIGKILL by the system. */
9854
10216
  'gracePeriodSeconds'?: number;
10217
+ /** Allow setting custom labels and annotations for workloads. */
10218
+ 'metadata'?: {
10219
+ /** Specify custom labels for the workload. */
10220
+ 'labels'?: any;
10221
+ /** Specify custom annotations for the workload as string or object. */
10222
+ 'annotations'?: any;
10223
+ };
9855
10224
  'vcs': {
9856
10225
  /** URL of the Git repo to build. Example: "https://github.com/northflank/gatsby-with-northflank" */
9857
10226
  'projectUrl': string;
@@ -9904,6 +10273,13 @@ type CreateJobManualData = {
9904
10273
  };
9905
10274
  /** The maximum amount of time the process has to shut down after receiving a SIGTERM signal before it is forcefully shut down SIGKILL by the system. */
9906
10275
  'gracePeriodSeconds'?: number;
10276
+ /** Allow setting custom labels and annotations for workloads. */
10277
+ 'metadata'?: {
10278
+ /** Specify custom labels for the workload. */
10279
+ 'labels'?: any;
10280
+ /** Specify custom annotations for the workload as string or object. */
10281
+ 'annotations'?: any;
10282
+ };
9907
10283
  'external': {
9908
10284
  /** Image to be deployed. When not deploying from Dockerhub the URL must be specified. Example: "nginx:latest" */
9909
10285
  'imagePath': string;
@@ -9948,6 +10324,13 @@ type CreateJobManualData = {
9948
10324
  };
9949
10325
  /** The maximum amount of time the process has to shut down after receiving a SIGTERM signal before it is forcefully shut down SIGKILL by the system. */
9950
10326
  'gracePeriodSeconds'?: number;
10327
+ /** Allow setting custom labels and annotations for workloads. */
10328
+ 'metadata'?: {
10329
+ /** Specify custom labels for the workload. */
10330
+ 'labels'?: any;
10331
+ /** Specify custom annotations for the workload as string or object. */
10332
+ 'annotations'?: any;
10333
+ };
9951
10334
  'internal': {
9952
10335
  /** ID of the build service to deploy Example: "example-build-service" */
9953
10336
  'id'?: string;
@@ -10187,6 +10570,13 @@ type PutJobManualResult = {
10187
10570
  };
10188
10571
  /** The maximum amount of time the process has to shut down after receiving a SIGTERM signal before it is forcefully shut down SIGKILL by the system. */
10189
10572
  'gracePeriodSeconds'?: number;
10573
+ /** Allow setting custom labels and annotations for workloads. */
10574
+ 'metadata'?: {
10575
+ /** Specify custom labels for the workload. */
10576
+ 'labels'?: any;
10577
+ /** Specify custom annotations for the workload as string or object. */
10578
+ 'annotations'?: any;
10579
+ };
10190
10580
  'vcs'?: {
10191
10581
  /** URL of the Git repo to build. Example: "https://github.com/northflank/gatsby-with-northflank" */
10192
10582
  'projectUrl': string;
@@ -10274,6 +10664,8 @@ type PutJobManualResult = {
10274
10664
  'name': string;
10275
10665
  /** Namespace this resource is located within on the cluster. Example: "ns-8zy2mcjh9zn2" */
10276
10666
  'namespace'?: string;
10667
+ /** Load balancer DNS for the cluster. */
10668
+ 'loadBalancers'?: string[];
10277
10669
  };
10278
10670
  /** time of creation */
10279
10671
  'createdAt'?: string;
@@ -10353,6 +10745,13 @@ type PutJobManualData = {
10353
10745
  };
10354
10746
  /** The maximum amount of time the process has to shut down after receiving a SIGTERM signal before it is forcefully shut down SIGKILL by the system. */
10355
10747
  'gracePeriodSeconds'?: number;
10748
+ /** Allow setting custom labels and annotations for workloads. */
10749
+ 'metadata'?: {
10750
+ /** Specify custom labels for the workload. */
10751
+ 'labels'?: any;
10752
+ /** Specify custom annotations for the workload as string or object. */
10753
+ 'annotations'?: any;
10754
+ };
10356
10755
  'vcs': {
10357
10756
  /** URL of the Git repo to build. Example: "https://github.com/northflank/gatsby-with-northflank" */
10358
10757
  'projectUrl': string;
@@ -10405,6 +10804,13 @@ type PutJobManualData = {
10405
10804
  };
10406
10805
  /** The maximum amount of time the process has to shut down after receiving a SIGTERM signal before it is forcefully shut down SIGKILL by the system. */
10407
10806
  'gracePeriodSeconds'?: number;
10807
+ /** Allow setting custom labels and annotations for workloads. */
10808
+ 'metadata'?: {
10809
+ /** Specify custom labels for the workload. */
10810
+ 'labels'?: any;
10811
+ /** Specify custom annotations for the workload as string or object. */
10812
+ 'annotations'?: any;
10813
+ };
10408
10814
  'external': {
10409
10815
  /** Image to be deployed. When not deploying from Dockerhub the URL must be specified. Example: "nginx:latest" */
10410
10816
  'imagePath': string;
@@ -10449,6 +10855,13 @@ type PutJobManualData = {
10449
10855
  };
10450
10856
  /** The maximum amount of time the process has to shut down after receiving a SIGTERM signal before it is forcefully shut down SIGKILL by the system. */
10451
10857
  'gracePeriodSeconds'?: number;
10858
+ /** Allow setting custom labels and annotations for workloads. */
10859
+ 'metadata'?: {
10860
+ /** Specify custom labels for the workload. */
10861
+ 'labels'?: any;
10862
+ /** Specify custom annotations for the workload as string or object. */
10863
+ 'annotations'?: any;
10864
+ };
10452
10865
  'internal': {
10453
10866
  /** ID of the build service to deploy Example: "example-build-service" */
10454
10867
  'id'?: string;
@@ -10688,6 +11101,13 @@ type PatchJobManualResult = {
10688
11101
  };
10689
11102
  /** The maximum amount of time the process has to shut down after receiving a SIGTERM signal before it is forcefully shut down SIGKILL by the system. */
10690
11103
  'gracePeriodSeconds'?: number;
11104
+ /** Allow setting custom labels and annotations for workloads. */
11105
+ 'metadata'?: {
11106
+ /** Specify custom labels for the workload. */
11107
+ 'labels'?: any;
11108
+ /** Specify custom annotations for the workload as string or object. */
11109
+ 'annotations'?: any;
11110
+ };
10691
11111
  'vcs'?: {
10692
11112
  /** URL of the Git repo to build. Example: "https://github.com/northflank/gatsby-with-northflank" */
10693
11113
  'projectUrl': string;
@@ -10775,6 +11195,8 @@ type PatchJobManualResult = {
10775
11195
  'name': string;
10776
11196
  /** Namespace this resource is located within on the cluster. Example: "ns-8zy2mcjh9zn2" */
10777
11197
  'namespace'?: string;
11198
+ /** Load balancer DNS for the cluster. */
11199
+ 'loadBalancers'?: string[];
10778
11200
  };
10779
11201
  /** time of creation */
10780
11202
  'createdAt'?: string;
@@ -11024,6 +11446,8 @@ type GetJobResult = {
11024
11446
  'name': string;
11025
11447
  /** Namespace this resource is located within on the cluster. Example: "ns-8zy2mcjh9zn2" */
11026
11448
  'namespace'?: string;
11449
+ /** Load balancer DNS for the cluster. */
11450
+ 'loadBalancers'?: string[];
11027
11451
  };
11028
11452
  };
11029
11453
  type GetJobCall = (opts: GetJobRequest) => Promise<ApiCallResponse<GetJobResult>>;
@@ -11200,6 +11624,15 @@ type StartJobBuildData = {
11200
11624
  'overrides'?: {
11201
11625
  /** Build arguments that will be set on this build only. In case of conflicts these values take precedence. Example: {"ARGUMENT_1":"abcdef","ARGUMENT_2":"12345"} */
11202
11626
  'buildArguments'?: any;
11627
+ /** Overrides for docker build settings. */
11628
+ 'docker'?: {
11629
+ /** The file path of the Dockerfile. Example: "/Dockerfile" */
11630
+ 'dockerFilePath'?: string;
11631
+ /** The working directory of the Dockerfile. Example: "/" */
11632
+ 'dockerWorkDir'?: string;
11633
+ /** If your Dockerfile contains multiple build stages, you can specify the target stage by entering its name here. */
11634
+ 'dockerfileTarget'?: string;
11635
+ };
11203
11636
  };
11204
11637
  };
11205
11638
  /** Start a new build for the given job. Given a commit sha, it will build that commit. */
@@ -12481,8 +12914,8 @@ declare class GetPipelineEndpoint extends GetApiEndpoint<GetPipelineRequest, Get
12481
12914
  }
12482
12915
 
12483
12916
  type GetPreviewtemplateResult = {
12484
- /** The version of the Northflank API to run the template against. Example: "v1" */
12485
- 'apiVersion': 'v1.1';
12917
+ /** The version of the Northflank API to run the template against. Example: "v1.2" */
12918
+ 'apiVersion': 'v1.2';
12486
12919
  /** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
12487
12920
  'arguments'?: any;
12488
12921
  'triggers'?: {
@@ -12494,7 +12927,6 @@ type GetPreviewtemplateResult = {
12494
12927
  'selfHostedVcsId'?: string;
12495
12928
  /** By default, if you have multiple version control accounts of the same provider linked, Northflank will pick a linked account that has access to the repository. If `accountLogin` is provided, Northflank will instead use your linked account with that login name. Example: "github-user" */
12496
12929
  'accountLogin'?: string;
12497
- /** By default, if you have multiple version control accounts of the same provider linked, Northflank will pick a linked account that has access to the repository. If `vcsLinkId` is provided, Northflank will instead use your linked account with that ID. Example: "000000000000000000000000" */
12498
12930
  'vcsLinkId'?: string;
12499
12931
  /** URL of the Git repo that will trigger the template. Example: "https://github.com/northflank-examples/remix-postgres-redis-demo" */
12500
12932
  'repoUrl': string;
@@ -12511,6 +12943,22 @@ type GetPreviewtemplateResult = {
12511
12943
  /** Should the git trigger only be triggered manually? */
12512
12944
  'manualOnly'?: boolean;
12513
12945
  }[];
12946
+ 'gitops'?: {
12947
+ /** The VCS provider to use. Example: "github" */
12948
+ 'vcsService': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted' | 'azure';
12949
+ /** If projectType is self-hosted, the ID of the self-hosted vcs to use. */
12950
+ 'selfHostedVcsId'?: string;
12951
+ /** By default, if you have multiple version control accounts of the same provider linked, Northflank will pick a linked account that has access to the repository. If `accountLogin` is provided, Northflank will instead use your linked account with that login name. Example: "github-user" */
12952
+ 'accountLogin'?: string;
12953
+ /** Legacy key. Please used accountLogin instead. */
12954
+ 'vcsLinkId'?: string;
12955
+ /** URL of the Git repo to sync the template with. Example: "https://github.com/northflank-examples/remix-postgres-redis-demo" */
12956
+ 'repoUrl': string;
12957
+ /** The name of the branch to use. Example: "main" */
12958
+ 'branch': string;
12959
+ /** The file path to the template in the repository. If using an existing template, it should be in JSON format. */
12960
+ 'filePath': string;
12961
+ };
12514
12962
  '$schema'?: string;
12515
12963
  'spec': any;
12516
12964
  /** Identifier for the template Example: "example-template" */
@@ -12562,10 +13010,33 @@ type UpdatePreviewtemplateParameters = {
12562
13010
  'pipelineId': string;
12563
13011
  };
12564
13012
  type UpdatePreviewtemplateData = {
12565
- /** The version of the Northflank API to run the template against. Example: "v1" */
12566
- 'apiVersion': 'v1.1';
13013
+ /** The version of the Northflank API to run the template against. Example: "v1.2" */
13014
+ 'apiVersion': 'v1.2';
13015
+ /** Options regarding how the template is run. */
13016
+ 'options'?: {
13017
+ /** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
13018
+ 'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
13019
+ 'nameFormat'?: string;
13020
+ 'prefixName'?: boolean;
13021
+ };
12567
13022
  /** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
12568
13023
  'arguments'?: any;
13024
+ 'gitops'?: {
13025
+ /** The VCS provider to use. Example: "github" */
13026
+ 'vcsService': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted' | 'azure';
13027
+ /** If projectType is self-hosted, the ID of the self-hosted vcs to use. */
13028
+ 'selfHostedVcsId'?: string;
13029
+ /** By default, if you have multiple version control accounts of the same provider linked, Northflank will pick a linked account that has access to the repository. If `accountLogin` is provided, Northflank will instead use your linked account with that login name. Example: "github-user" */
13030
+ 'accountLogin'?: string;
13031
+ /** Legacy key. Please used accountLogin instead. */
13032
+ 'vcsLinkId'?: string;
13033
+ /** URL of the Git repo to sync the template with. Example: "https://github.com/northflank-examples/remix-postgres-redis-demo" */
13034
+ 'repoUrl': string;
13035
+ /** The name of the branch to use. Example: "main" */
13036
+ 'branch': string;
13037
+ /** The file path to the template in the repository. If using an existing template, it should be in JSON format. */
13038
+ 'filePath': string;
13039
+ };
12569
13040
  '$schema'?: string;
12570
13041
  'spec': any;
12571
13042
  /** Whether triggers are paused for this preview template. If `true`, Git triggers and webhook triggers will not create or update previews. */
@@ -12579,7 +13050,6 @@ type UpdatePreviewtemplateData = {
12579
13050
  'selfHostedVcsId'?: string;
12580
13051
  /** By default, if you have multiple version control accounts of the same provider linked, Northflank will pick a linked account that has access to the repository. If `accountLogin` is provided, Northflank will instead use your linked account with that login name. Example: "github-user" */
12581
13052
  'accountLogin'?: string;
12582
- /** By default, if you have multiple version control accounts of the same provider linked, Northflank will pick a linked account that has access to the repository. If `vcsLinkId` is provided, Northflank will instead use your linked account with that ID. Example: "000000000000000000000000" */
12583
13053
  'vcsLinkId'?: string;
12584
13054
  /** URL of the Git repo that will trigger the template. Example: "https://github.com/northflank-examples/remix-postgres-redis-demo" */
12585
13055
  'repoUrl': string;
@@ -12678,8 +13148,15 @@ declare class DeletePreviewtemplatepreviewEndpoint extends DeleteApiEndpoint<Del
12678
13148
  type ListPreviewtemplaterunsResult = {
12679
13149
  /** An array of template run objects. */
12680
13150
  'previewTemplateRuns': {
12681
- /** The version of the Northflank API to run the template against. Example: "v1" */
12682
- 'apiVersion': 'v1.1';
13151
+ /** The version of the Northflank API to run the template against. Example: "v1.2" */
13152
+ 'apiVersion': 'v1.2';
13153
+ /** Options regarding how the template is run. */
13154
+ 'options'?: {
13155
+ /** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
13156
+ 'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
13157
+ 'nameFormat'?: string;
13158
+ 'prefixName'?: boolean;
13159
+ };
12683
13160
  /** Identifier for the template run Example: "3dd592f6-ce63-45ee-acf8-13dc5ec5235c" */
12684
13161
  'id': string;
12685
13162
  /** Identifier for the template Example: "example-template" */
@@ -12720,8 +13197,15 @@ declare class ListPreviewtemplaterunsEndpoint extends GetApiEndpoint<ListPreview
12720
13197
  }
12721
13198
 
12722
13199
  type GetPreviewtemplaterunResult = {
12723
- /** The version of the Northflank API to run the template against. Example: "v1" */
12724
- 'apiVersion': 'v1.1';
13200
+ /** The version of the Northflank API to run the template against. Example: "v1.2" */
13201
+ 'apiVersion': 'v1.2';
13202
+ /** Options regarding how the template is run. */
13203
+ 'options'?: {
13204
+ /** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
13205
+ 'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
13206
+ 'nameFormat'?: string;
13207
+ 'prefixName'?: boolean;
13208
+ };
12725
13209
  /** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
12726
13210
  'arguments'?: any;
12727
13211
  'triggers'?: {
@@ -12733,7 +13217,6 @@ type GetPreviewtemplaterunResult = {
12733
13217
  'selfHostedVcsId'?: string;
12734
13218
  /** By default, if you have multiple version control accounts of the same provider linked, Northflank will pick a linked account that has access to the repository. If `accountLogin` is provided, Northflank will instead use your linked account with that login name. Example: "github-user" */
12735
13219
  'accountLogin'?: string;
12736
- /** By default, if you have multiple version control accounts of the same provider linked, Northflank will pick a linked account that has access to the repository. If `vcsLinkId` is provided, Northflank will instead use your linked account with that ID. Example: "000000000000000000000000" */
12737
13220
  'vcsLinkId'?: string;
12738
13221
  /** URL of the Git repo that will trigger the template. Example: "https://github.com/northflank-examples/remix-postgres-redis-demo" */
12739
13222
  'repoUrl': string;
@@ -12750,6 +13233,22 @@ type GetPreviewtemplaterunResult = {
12750
13233
  /** Should the git trigger only be triggered manually? */
12751
13234
  'manualOnly'?: boolean;
12752
13235
  }[];
13236
+ 'gitops'?: {
13237
+ /** The VCS provider to use. Example: "github" */
13238
+ 'vcsService': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted' | 'azure';
13239
+ /** If projectType is self-hosted, the ID of the self-hosted vcs to use. */
13240
+ 'selfHostedVcsId'?: string;
13241
+ /** By default, if you have multiple version control accounts of the same provider linked, Northflank will pick a linked account that has access to the repository. If `accountLogin` is provided, Northflank will instead use your linked account with that login name. Example: "github-user" */
13242
+ 'accountLogin'?: string;
13243
+ /** Legacy key. Please used accountLogin instead. */
13244
+ 'vcsLinkId'?: string;
13245
+ /** URL of the Git repo to sync the template with. Example: "https://github.com/northflank-examples/remix-postgres-redis-demo" */
13246
+ 'repoUrl': string;
13247
+ /** The name of the branch to use. Example: "main" */
13248
+ 'branch': string;
13249
+ /** The file path to the template in the repository. If using an existing template, it should be in JSON format. */
13250
+ 'filePath': string;
13251
+ };
12753
13252
  '$schema'?: string;
12754
13253
  'spec': any;
12755
13254
  'refs'?: any;
@@ -12785,8 +13284,8 @@ declare class GetPreviewtemplaterunEndpoint extends GetApiEndpoint<GetPreviewtem
12785
13284
  }
12786
13285
 
12787
13286
  type GetReleaseflowResult = {
12788
- /** The version of the Northflank API to run the template against. Example: "v1" */
12789
- 'apiVersion': 'v1.1';
13287
+ /** The version of the Northflank API to run the template against. Example: "v1.2" */
13288
+ 'apiVersion': 'v1.2';
12790
13289
  /** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
12791
13290
  'arguments'?: any;
12792
13291
  'triggers'?: {
@@ -12798,7 +13297,6 @@ type GetReleaseflowResult = {
12798
13297
  'selfHostedVcsId'?: string;
12799
13298
  /** By default, if you have multiple version control accounts of the same provider linked, Northflank will pick a linked account that has access to the repository. If `accountLogin` is provided, Northflank will instead use your linked account with that login name. Example: "github-user" */
12800
13299
  'accountLogin'?: string;
12801
- /** By default, if you have multiple version control accounts of the same provider linked, Northflank will pick a linked account that has access to the repository. If `vcsLinkId` is provided, Northflank will instead use your linked account with that ID. Example: "000000000000000000000000" */
12802
13300
  'vcsLinkId'?: string;
12803
13301
  /** URL of the Git repo that will trigger the template. Example: "https://github.com/northflank-examples/remix-postgres-redis-demo" */
12804
13302
  'repoUrl': string;
@@ -12811,6 +13309,29 @@ type GetReleaseflowResult = {
12811
13309
  'ciIgnoreFlagsEnabled'?: boolean;
12812
13310
  'isAllowList'?: boolean;
12813
13311
  }[];
13312
+ /** Options regarding how the template is run. */
13313
+ 'options'?: {
13314
+ /** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
13315
+ 'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
13316
+ /** If `true`, the template will not run when triggered by git. */
13317
+ 'paused'?: boolean;
13318
+ };
13319
+ 'gitops'?: {
13320
+ /** The VCS provider to use. Example: "github" */
13321
+ 'vcsService': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted' | 'azure';
13322
+ /** If projectType is self-hosted, the ID of the self-hosted vcs to use. */
13323
+ 'selfHostedVcsId'?: string;
13324
+ /** By default, if you have multiple version control accounts of the same provider linked, Northflank will pick a linked account that has access to the repository. If `accountLogin` is provided, Northflank will instead use your linked account with that login name. Example: "github-user" */
13325
+ 'accountLogin'?: string;
13326
+ /** Legacy key. Please used accountLogin instead. */
13327
+ 'vcsLinkId'?: string;
13328
+ /** URL of the Git repo to sync the template with. Example: "https://github.com/northflank-examples/remix-postgres-redis-demo" */
13329
+ 'repoUrl': string;
13330
+ /** The name of the branch to use. Example: "main" */
13331
+ 'branch': string;
13332
+ /** The file path to the template in the repository. If using an existing template, it should be in JSON format. */
13333
+ 'filePath': string;
13334
+ };
12814
13335
  '$schema'?: string;
12815
13336
  /** An array of rich UI override inputs for the Release Flow template. */
12816
13337
  'richInputs'?: any[];
@@ -12820,7 +13341,7 @@ type GetReleaseflowResult = {
12820
13341
  /** The stage of the pipeline this release flow belongs to. Example: "Development" */
12821
13342
  'stage'?: string;
12822
13343
  /** Status of the template run Example: "success" */
12823
- 'status': 'pending' | 'running' | 'success' | 'failure' | 'aborted' | 'aborting';
13344
+ 'status': 'pending' | 'running' | 'success' | 'failure' | 'aborted' | 'aborting' | 'queued' | 'unknown' | 'skipped';
12824
13345
  /** Whether triggers are paused for this release flow. If `true`, Git triggers and webhook triggers will not run the release flow. */
12825
13346
  'paused': boolean;
12826
13347
  /** Timestamp the template was created at. Example: "2021-01-01 12:00:00.000Z" */
@@ -12862,79 +13383,95 @@ type UpdateReleaseflowParameters = {
12862
13383
  'stage': string;
12863
13384
  };
12864
13385
  type UpdateReleaseflowData = {
12865
- 'content': {
12866
- /** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
12867
- 'arguments'?: any;
12868
- 'triggers'?: {
12869
- /** A reference that can be used to access the output of this trigger in the template. */
12870
- 'ref'?: string;
12871
- /** The VCS provider to use. Example: "github" */
12872
- 'vcsService': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted' | 'azure';
12873
- /** If projectType is self-hosted, the ID of the self-hosted vcs to use. */
12874
- 'selfHostedVcsId'?: string;
12875
- /** By default, if you have multiple version control accounts of the same provider linked, Northflank will pick a linked account that has access to the repository. If `accountLogin` is provided, Northflank will instead use your linked account with that login name. Example: "github-user" */
12876
- 'accountLogin'?: string;
12877
- /** By default, if you have multiple version control accounts of the same provider linked, Northflank will pick a linked account that has access to the repository. If `vcsLinkId` is provided, Northflank will instead use your linked account with that ID. Example: "000000000000000000000000" */
12878
- 'vcsLinkId'?: string;
12879
- /** URL of the Git repo that will trigger the template. Example: "https://github.com/northflank-examples/remix-postgres-redis-demo" */
12880
- 'repoUrl': string;
12881
- 'branchRestrictions'?: string[];
12882
- 'prRestrictions'?: string[];
12883
- /** An array of path ignore rules. A commit will only be built if a file has been changed that does not match any of the ignore rules. Path ignore rules follow `.gitignore` syntax. */
12884
- 'pathIgnoreRules'?: string[];
12885
- /** An array of commit ignore flags. If a commit message contains one or more of these flags, that commit will not be built. Defaults to `["[skip ci]", "[ci skip]", "[no ci]", "[skip nf]", "[nf skip]", "[northflank skip]", "[skip northflank]"]` Example: ["[skip ci]","[ci skip]","[no ci]","[skip nf]","[nf skip]","[northflank skip]","[skip northflank]"] */
12886
- 'ciIgnoreFlags'?: string[];
12887
- 'ciIgnoreFlagsEnabled'?: boolean;
12888
- 'isAllowList'?: boolean;
12889
- }[];
12890
- '$schema'?: string;
12891
- /** An array of rich UI override inputs for the Release Flow template. */
12892
- 'richInputs'?: any[];
12893
- 'apiVersion': string;
12894
- 'project'?: any;
12895
- 'spec': any;
12896
- };
12897
- /** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
12898
- 'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
12899
- /** Whether triggers are paused for this release flow. If `true`, Git triggers and webhook triggers will not run the release flow. */
12900
- 'paused'?: boolean;
12901
- };
12902
- /** Updates a release flow */
12903
- declare class UpdateReleaseflowEndpoint extends PostApiEndpoint<UpdateReleaseflowRequest, UpdateReleaseflowResult> {
12904
- description: string;
12905
- withAuth: boolean;
12906
- requiredPermissions: string;
12907
- endpointUrl: (opts: UpdateReleaseflowRequest) => string;
12908
- body: (payload: UpdateReleaseflowRequest) => string;
12909
- }
12910
-
12911
- type RunReleaseflowResult = any;
12912
- type RunReleaseflowCall = (opts: RunReleaseflowRequest) => Promise<ApiCallResponse<RunReleaseflowResult>>;
12913
- type RunReleaseflowRequest = {
12914
- parameters: RunReleaseflowParameters;
12915
- data: RunReleaseflowData;
12916
- };
12917
- type RunReleaseflowParameters = {
12918
- /** ID of the project */ 'projectId': string;
12919
- /** ID of the pipeline */
12920
- 'pipelineId': string;
12921
- /** Stage of the pipeline */
12922
- 'stage': string;
12923
- };
12924
- type RunReleaseflowData = {
12925
- /** The optional name of the release-flow run. Example: "Example Run" */
12926
- 'name'?: string;
12927
- /** The optional description of the release-flow run. Example: "This is a description for the release-flow run." */
12928
- 'description'?: string;
12929
- /** A set of arguments that can be referenced in a template using '${args.argumentName}'. Example: {"ARG_1":"value"} */
13386
+ /** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
12930
13387
  'arguments'?: any;
12931
- /** Overrides for specific reference values. This should be an object where each key corresponds to a ref defined in the template. The values of each of these keys should also be an object, where each key value pair provided will overwrite the value for that key in the given ref. For example, the value `{ 'example-ref': { 'branch': 'devel' } }` would set the `branch` field to `devel` for the node with ref `example-ref`. Example: {"example-ref":{"branch":"devel"}} */
12932
- 'overrides'?: any;
12933
- /** Overrides for release nodes. This should be an object where each key is the id of a deployment service used in a release node. The value of each of these keys should be also be an object containing the new spec of the release for that deployment service. Example: {"example-service":{"type":"registry","origin":{"imagePath":"nginx:latest"}}} */
12934
- 'releaseNodeOverrides'?: any;
12935
- };
12936
- /** Runs a given release flow with given arguments. This endpoint can be used as part of a CI pipeline to automatically trigger a release process. */
12937
- declare class RunReleaseflowEndpoint extends PostApiEndpoint<RunReleaseflowRequest, RunReleaseflowResult> {
13388
+ 'triggers'?: {
13389
+ /** A reference that can be used to access the output of this trigger in the template. */
13390
+ 'ref'?: string;
13391
+ /** The VCS provider to use. Example: "github" */
13392
+ 'vcsService': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted' | 'azure';
13393
+ /** If projectType is self-hosted, the ID of the self-hosted vcs to use. */
13394
+ 'selfHostedVcsId'?: string;
13395
+ /** By default, if you have multiple version control accounts of the same provider linked, Northflank will pick a linked account that has access to the repository. If `accountLogin` is provided, Northflank will instead use your linked account with that login name. Example: "github-user" */
13396
+ 'accountLogin'?: string;
13397
+ 'vcsLinkId'?: string;
13398
+ /** URL of the Git repo that will trigger the template. Example: "https://github.com/northflank-examples/remix-postgres-redis-demo" */
13399
+ 'repoUrl': string;
13400
+ 'branchRestrictions'?: string[];
13401
+ 'prRestrictions'?: string[];
13402
+ /** An array of path ignore rules. A commit will only be built if a file has been changed that does not match any of the ignore rules. Path ignore rules follow `.gitignore` syntax. */
13403
+ 'pathIgnoreRules'?: string[];
13404
+ /** An array of commit ignore flags. If a commit message contains one or more of these flags, that commit will not be built. Defaults to `["[skip ci]", "[ci skip]", "[no ci]", "[skip nf]", "[nf skip]", "[northflank skip]", "[skip northflank]"]` Example: ["[skip ci]","[ci skip]","[no ci]","[skip nf]","[nf skip]","[northflank skip]","[skip northflank]"] */
13405
+ 'ciIgnoreFlags'?: string[];
13406
+ 'ciIgnoreFlagsEnabled'?: boolean;
13407
+ 'isAllowList'?: boolean;
13408
+ }[];
13409
+ /** Options regarding how the template is run. */
13410
+ 'options'?: {
13411
+ /** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
13412
+ 'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
13413
+ /** If `true`, the template will not run when triggered by git. */
13414
+ 'paused'?: boolean;
13415
+ };
13416
+ 'gitops'?: {
13417
+ /** The VCS provider to use. Example: "github" */
13418
+ 'vcsService': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted' | 'azure';
13419
+ /** If projectType is self-hosted, the ID of the self-hosted vcs to use. */
13420
+ 'selfHostedVcsId'?: string;
13421
+ /** By default, if you have multiple version control accounts of the same provider linked, Northflank will pick a linked account that has access to the repository. If `accountLogin` is provided, Northflank will instead use your linked account with that login name. Example: "github-user" */
13422
+ 'accountLogin'?: string;
13423
+ /** Legacy key. Please used accountLogin instead. */
13424
+ 'vcsLinkId'?: string;
13425
+ /** URL of the Git repo to sync the template with. Example: "https://github.com/northflank-examples/remix-postgres-redis-demo" */
13426
+ 'repoUrl': string;
13427
+ /** The name of the branch to use. Example: "main" */
13428
+ 'branch': string;
13429
+ /** The file path to the template in the repository. If using an existing template, it should be in JSON format. */
13430
+ 'filePath': string;
13431
+ };
13432
+ '$schema'?: string;
13433
+ /** An array of rich UI override inputs for the Release Flow template. */
13434
+ 'richInputs'?: any[];
13435
+ 'apiVersion': string;
13436
+ 'project'?: any;
13437
+ 'spec': any;
13438
+ };
13439
+ /** Updates a release flow */
13440
+ declare class UpdateReleaseflowEndpoint extends PostApiEndpoint<UpdateReleaseflowRequest, UpdateReleaseflowResult> {
13441
+ description: string;
13442
+ withAuth: boolean;
13443
+ requiredPermissions: string;
13444
+ endpointUrl: (opts: UpdateReleaseflowRequest) => string;
13445
+ body: (payload: UpdateReleaseflowRequest) => string;
13446
+ }
13447
+
13448
+ type RunReleaseflowResult = any;
13449
+ type RunReleaseflowCall = (opts: RunReleaseflowRequest) => Promise<ApiCallResponse<RunReleaseflowResult>>;
13450
+ type RunReleaseflowRequest = {
13451
+ parameters: RunReleaseflowParameters;
13452
+ data: RunReleaseflowData;
13453
+ };
13454
+ type RunReleaseflowParameters = {
13455
+ /** ID of the project */ 'projectId': string;
13456
+ /** ID of the pipeline */
13457
+ 'pipelineId': string;
13458
+ /** Stage of the pipeline */
13459
+ 'stage': string;
13460
+ };
13461
+ type RunReleaseflowData = {
13462
+ /** The optional name of the release-flow run. Example: "Example Run" */
13463
+ 'name'?: string;
13464
+ /** The optional description of the release-flow run. Example: "This is a description for the release-flow run." */
13465
+ 'description'?: string;
13466
+ /** A set of arguments that can be referenced in a template using '${args.argumentName}'. Example: {"ARG_1":"value"} */
13467
+ 'arguments'?: any;
13468
+ /** Overrides for specific reference values. This should be an object where each key corresponds to a ref defined in the template. The values of each of these keys should also be an object, where each key value pair provided will overwrite the value for that key in the given ref. For example, the value `{ 'example-ref': { 'branch': 'devel' } }` would set the `branch` field to `devel` for the node with ref `example-ref`. Example: {"example-ref":{"branch":"devel"}} */
13469
+ 'overrides'?: any;
13470
+ /** Overrides for release nodes. This should be an object where each key is the id of a deployment service used in a release node. The value of each of these keys should be also be an object containing the new spec of the release for that deployment service. Example: {"example-service":{"type":"registry","origin":{"imagePath":"nginx:latest"}}} */
13471
+ 'releaseNodeOverrides'?: any;
13472
+ };
13473
+ /** Runs a given release flow with given arguments. This endpoint can be used as part of a CI pipeline to automatically trigger a release process. */
13474
+ declare class RunReleaseflowEndpoint extends PostApiEndpoint<RunReleaseflowRequest, RunReleaseflowResult> {
12938
13475
  description: string;
12939
13476
  withAuth: boolean;
12940
13477
  requiredPermissions: string;
@@ -12952,7 +13489,7 @@ type ListReleaseflowrunsResult = {
12952
13489
  /** Optional description for the release flow run Example: "This is an example description" */
12953
13490
  'description'?: string;
12954
13491
  /** Status of the template run Example: "success" */
12955
- 'status': 'pending' | 'running' | 'success' | 'failure' | 'aborted' | 'aborting';
13492
+ 'status': 'pending' | 'running' | 'success' | 'failure' | 'aborted' | 'aborting' | 'queued' | 'unknown' | 'skipped';
12956
13493
  /** Timestamp the run started at. Example: "2021-01-01 12:01:00.000Z" */
12957
13494
  'startedAt'?: string;
12958
13495
  /** Whether the run has concluded (aborted, success, failed) Example: true */
@@ -12995,8 +13532,8 @@ declare class ListReleaseflowrunsEndpoint extends GetApiEndpoint<ListReleaseflow
12995
13532
  }
12996
13533
 
12997
13534
  type GetReleaseflowrunResult = {
12998
- /** The version of the Northflank API to run the template against. Example: "v1" */
12999
- 'apiVersion': 'v1.1';
13535
+ /** The version of the Northflank API to run the template against. Example: "v1.2" */
13536
+ 'apiVersion': 'v1.2';
13000
13537
  /** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
13001
13538
  'arguments'?: any;
13002
13539
  'triggers'?: {
@@ -13008,7 +13545,6 @@ type GetReleaseflowrunResult = {
13008
13545
  'selfHostedVcsId'?: string;
13009
13546
  /** By default, if you have multiple version control accounts of the same provider linked, Northflank will pick a linked account that has access to the repository. If `accountLogin` is provided, Northflank will instead use your linked account with that login name. Example: "github-user" */
13010
13547
  'accountLogin'?: string;
13011
- /** By default, if you have multiple version control accounts of the same provider linked, Northflank will pick a linked account that has access to the repository. If `vcsLinkId` is provided, Northflank will instead use your linked account with that ID. Example: "000000000000000000000000" */
13012
13548
  'vcsLinkId'?: string;
13013
13549
  /** URL of the Git repo that will trigger the template. Example: "https://github.com/northflank-examples/remix-postgres-redis-demo" */
13014
13550
  'repoUrl': string;
@@ -13021,6 +13557,29 @@ type GetReleaseflowrunResult = {
13021
13557
  'ciIgnoreFlagsEnabled'?: boolean;
13022
13558
  'isAllowList'?: boolean;
13023
13559
  }[];
13560
+ /** Options regarding how the template is run. */
13561
+ 'options'?: {
13562
+ /** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
13563
+ 'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
13564
+ /** If `true`, the template will not run when triggered by git. */
13565
+ 'paused'?: boolean;
13566
+ };
13567
+ 'gitops'?: {
13568
+ /** The VCS provider to use. Example: "github" */
13569
+ 'vcsService': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted' | 'azure';
13570
+ /** If projectType is self-hosted, the ID of the self-hosted vcs to use. */
13571
+ 'selfHostedVcsId'?: string;
13572
+ /** By default, if you have multiple version control accounts of the same provider linked, Northflank will pick a linked account that has access to the repository. If `accountLogin` is provided, Northflank will instead use your linked account with that login name. Example: "github-user" */
13573
+ 'accountLogin'?: string;
13574
+ /** Legacy key. Please used accountLogin instead. */
13575
+ 'vcsLinkId'?: string;
13576
+ /** URL of the Git repo to sync the template with. Example: "https://github.com/northflank-examples/remix-postgres-redis-demo" */
13577
+ 'repoUrl': string;
13578
+ /** The name of the branch to use. Example: "main" */
13579
+ 'branch': string;
13580
+ /** The file path to the template in the repository. If using an existing template, it should be in JSON format. */
13581
+ 'filePath': string;
13582
+ };
13024
13583
  '$schema'?: string;
13025
13584
  'spec': any;
13026
13585
  'refs'?: any;
@@ -13031,7 +13590,7 @@ type GetReleaseflowrunResult = {
13031
13590
  /** Optional description for the release flow run Example: "This is an example description" */
13032
13591
  'description'?: string;
13033
13592
  /** Status of the template run Example: "success" */
13034
- 'status': 'pending' | 'running' | 'success' | 'failure' | 'aborted' | 'aborting';
13593
+ 'status': 'pending' | 'running' | 'success' | 'failure' | 'aborted' | 'aborting' | 'queued' | 'unknown' | 'skipped';
13035
13594
  /** Timestamp the run started at. Example: "2021-01-01 12:01:00.000Z" */
13036
13595
  'startedAt'?: string;
13037
13596
  /** Whether the run has concluded (aborted, success, failed) Example: true */
@@ -13066,8 +13625,8 @@ declare class GetReleaseflowrunEndpoint extends GetApiEndpoint<GetReleaseflowrun
13066
13625
  }
13067
13626
 
13068
13627
  type AbortReleaseflowrunResult = {
13069
- /** The version of the Northflank API to run the template against. Example: "v1" */
13070
- 'apiVersion': 'v1.1';
13628
+ /** The version of the Northflank API to run the template against. Example: "v1.2" */
13629
+ 'apiVersion': 'v1.2';
13071
13630
  /** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
13072
13631
  'arguments'?: any;
13073
13632
  'triggers'?: {
@@ -13079,7 +13638,6 @@ type AbortReleaseflowrunResult = {
13079
13638
  'selfHostedVcsId'?: string;
13080
13639
  /** By default, if you have multiple version control accounts of the same provider linked, Northflank will pick a linked account that has access to the repository. If `accountLogin` is provided, Northflank will instead use your linked account with that login name. Example: "github-user" */
13081
13640
  'accountLogin'?: string;
13082
- /** By default, if you have multiple version control accounts of the same provider linked, Northflank will pick a linked account that has access to the repository. If `vcsLinkId` is provided, Northflank will instead use your linked account with that ID. Example: "000000000000000000000000" */
13083
13641
  'vcsLinkId'?: string;
13084
13642
  /** URL of the Git repo that will trigger the template. Example: "https://github.com/northflank-examples/remix-postgres-redis-demo" */
13085
13643
  'repoUrl': string;
@@ -13092,6 +13650,29 @@ type AbortReleaseflowrunResult = {
13092
13650
  'ciIgnoreFlagsEnabled'?: boolean;
13093
13651
  'isAllowList'?: boolean;
13094
13652
  }[];
13653
+ /** Options regarding how the template is run. */
13654
+ 'options'?: {
13655
+ /** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
13656
+ 'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
13657
+ /** If `true`, the template will not run when triggered by git. */
13658
+ 'paused'?: boolean;
13659
+ };
13660
+ 'gitops'?: {
13661
+ /** The VCS provider to use. Example: "github" */
13662
+ 'vcsService': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted' | 'azure';
13663
+ /** If projectType is self-hosted, the ID of the self-hosted vcs to use. */
13664
+ 'selfHostedVcsId'?: string;
13665
+ /** By default, if you have multiple version control accounts of the same provider linked, Northflank will pick a linked account that has access to the repository. If `accountLogin` is provided, Northflank will instead use your linked account with that login name. Example: "github-user" */
13666
+ 'accountLogin'?: string;
13667
+ /** Legacy key. Please used accountLogin instead. */
13668
+ 'vcsLinkId'?: string;
13669
+ /** URL of the Git repo to sync the template with. Example: "https://github.com/northflank-examples/remix-postgres-redis-demo" */
13670
+ 'repoUrl': string;
13671
+ /** The name of the branch to use. Example: "main" */
13672
+ 'branch': string;
13673
+ /** The file path to the template in the repository. If using an existing template, it should be in JSON format. */
13674
+ 'filePath': string;
13675
+ };
13095
13676
  '$schema'?: string;
13096
13677
  'spec': any;
13097
13678
  'refs'?: any;
@@ -13102,7 +13683,7 @@ type AbortReleaseflowrunResult = {
13102
13683
  /** Optional description for the release flow run Example: "This is an example description" */
13103
13684
  'description'?: string;
13104
13685
  /** Status of the template run Example: "success" */
13105
- 'status': 'pending' | 'running' | 'success' | 'failure' | 'aborted' | 'aborting';
13686
+ 'status': 'pending' | 'running' | 'success' | 'failure' | 'aborted' | 'aborting' | 'queued' | 'unknown' | 'skipped';
13106
13687
  /** Timestamp the run started at. Example: "2021-01-01 12:01:00.000Z" */
13107
13688
  'startedAt'?: string;
13108
13689
  /** Whether the run has concluded (aborted, success, failed) Example: true */
@@ -13168,6 +13749,8 @@ type ListSecretsResult = {
13168
13749
  }[];
13169
13750
  /** List of tags the secret is restricted to. */
13170
13751
  'tags'?: string[];
13752
+ /** If all or any of the tags must be present on the target for it to match the condition. Example: "or" */
13753
+ 'tagMatchCondition'?: 'and' | 'or';
13171
13754
  };
13172
13755
  }[];
13173
13756
  };
@@ -13222,6 +13805,8 @@ type CreateSecretResult = {
13222
13805
  }[];
13223
13806
  /** List of tags the secret is restricted to. */
13224
13807
  'tags'?: string[];
13808
+ /** If all or any of the tags must be present on the target for it to match the condition. Example: "or" */
13809
+ 'tagMatchCondition'?: 'and' | 'or';
13225
13810
  };
13226
13811
  /** An array of addons to link to this secret group. */
13227
13812
  'addonDependencies'?: {
@@ -13282,6 +13867,8 @@ type CreateSecretData = {
13282
13867
  }[];
13283
13868
  /** List of tags the secret is restricted to. */
13284
13869
  'tags'?: string[];
13870
+ /** If all or any of the tags must be present on the target for it to match the condition. Example: "or" */
13871
+ 'tagMatchCondition'?: 'and' | 'or';
13285
13872
  };
13286
13873
  /** An array of addons to link to this secret group. */
13287
13874
  'addonDependencies'?: {
@@ -13337,6 +13924,8 @@ type PutSecretResult = {
13337
13924
  }[];
13338
13925
  /** List of tags the secret is restricted to. */
13339
13926
  'tags'?: string[];
13927
+ /** If all or any of the tags must be present on the target for it to match the condition. Example: "or" */
13928
+ 'tagMatchCondition'?: 'and' | 'or';
13340
13929
  };
13341
13930
  /** An array of addons to link to this secret group. */
13342
13931
  'addonDependencies'?: {
@@ -13397,6 +13986,8 @@ type PutSecretData = {
13397
13986
  }[];
13398
13987
  /** List of tags the secret is restricted to. */
13399
13988
  'tags'?: string[];
13989
+ /** If all or any of the tags must be present on the target for it to match the condition. Example: "or" */
13990
+ 'tagMatchCondition'?: 'and' | 'or';
13400
13991
  };
13401
13992
  /** An array of addons to link to this secret group. */
13402
13993
  'addonDependencies'?: {
@@ -13452,6 +14043,8 @@ type PatchSecretResult = {
13452
14043
  }[];
13453
14044
  /** List of tags the secret is restricted to. */
13454
14045
  'tags'?: string[];
14046
+ /** If all or any of the tags must be present on the target for it to match the condition. Example: "or" */
14047
+ 'tagMatchCondition'?: 'and' | 'or';
13455
14048
  };
13456
14049
  /** An array of addons to link to this secret group. */
13457
14050
  'addonDependencies'?: {
@@ -13511,6 +14104,8 @@ type PatchSecretData = {
13511
14104
  }[];
13512
14105
  /** List of tags the secret is restricted to. */
13513
14106
  'tags'?: string[];
14107
+ /** If all or any of the tags must be present on the target for it to match the condition. Example: "or" */
14108
+ 'tagMatchCondition'?: 'and' | 'or';
13514
14109
  };
13515
14110
  /** An array of addons to link to this secret group. */
13516
14111
  'addonDependencies'?: {
@@ -13570,6 +14165,8 @@ type GetSecretResult = {
13570
14165
  }[];
13571
14166
  /** List of tags the secret is restricted to. */
13572
14167
  'tags'?: string[];
14168
+ /** If all or any of the tags must be present on the target for it to match the condition. Example: "or" */
14169
+ 'tagMatchCondition'?: 'and' | 'or';
13573
14170
  };
13574
14171
  /** The timestamp when the secret group was created at Example: "2021-01-01 12:00:00.000Z" */
13575
14172
  'createdAt': string;
@@ -13649,6 +14246,8 @@ type UpdateSecretData = {
13649
14246
  }[];
13650
14247
  /** List of tags the secret is restricted to. */
13651
14248
  'tags'?: string[];
14249
+ /** If all or any of the tags must be present on the target for it to match the condition. Example: "or" */
14250
+ 'tagMatchCondition'?: 'and' | 'or';
13652
14251
  };
13653
14252
  /** An array of addons to link to this secret group. If provided, this will overwrite any existing linked addons. */
13654
14253
  'addonDependencies'?: {
@@ -13817,6 +14416,8 @@ type GetSecretdetailsResult = {
13817
14416
  }[];
13818
14417
  /** List of tags the secret is restricted to. */
13819
14418
  'tags'?: string[];
14419
+ /** If all or any of the tags must be present on the target for it to match the condition. Example: "or" */
14420
+ 'tagMatchCondition'?: 'and' | 'or';
13820
14421
  };
13821
14422
  /** The timestamp when the secret group was created at Example: "2021-01-01 12:00:00.000Z" */
13822
14423
  'createdAt': string;
@@ -13971,6 +14572,8 @@ type CreateServiceBuildResult = {
13971
14572
  'name': string;
13972
14573
  /** Namespace this resource is located within on the cluster. Example: "ns-8zy2mcjh9zn2" */
13973
14574
  'namespace'?: string;
14575
+ /** Load balancer DNS for the cluster. */
14576
+ 'loadBalancers'?: string[];
13974
14577
  };
13975
14578
  /** time of creation */
13976
14579
  'createdAt'?: string;
@@ -14221,6 +14824,8 @@ type PutServiceBuildResult = {
14221
14824
  'name': string;
14222
14825
  /** Namespace this resource is located within on the cluster. Example: "ns-8zy2mcjh9zn2" */
14223
14826
  'namespace'?: string;
14827
+ /** Load balancer DNS for the cluster. */
14828
+ 'loadBalancers'?: string[];
14224
14829
  };
14225
14830
  /** time of creation */
14226
14831
  'createdAt'?: string;
@@ -14471,6 +15076,8 @@ type PatchServiceBuildResult = {
14471
15076
  'name': string;
14472
15077
  /** Namespace this resource is located within on the cluster. Example: "ns-8zy2mcjh9zn2" */
14473
15078
  'namespace'?: string;
15079
+ /** Load balancer DNS for the cluster. */
15080
+ 'loadBalancers'?: string[];
14474
15081
  };
14475
15082
  /** time of creation */
14476
15083
  'createdAt'?: string;
@@ -14636,6 +15243,13 @@ type CreateServiceCombinedResult = {
14636
15243
  'type': 'basic-auth';
14637
15244
  }[];
14638
15245
  /** An array of IP address policies. */
15246
+ 'ip'?: {
15247
+ /** An array of IP addresses used for this rule */
15248
+ 'addresses': string[];
15249
+ /** The action for this rule. Example: "DENY" */
15250
+ 'action': 'ALLOW' | 'DENY';
15251
+ }[];
15252
+ /** An array of IP address policies. */
14639
15253
  'policies'?: {
14640
15254
  /** An array of IP addresses used for this rule */
14641
15255
  'addresses': string[];
@@ -14650,11 +15264,109 @@ type CreateServiceCombinedResult = {
14650
15264
  'directoryGroupIds'?: string[];
14651
15265
  /** Enforce internal traffic through SSO authentication flow */
14652
15266
  'validateInternalTraffic'?: boolean;
15267
+ /** Set SSO authentication cookie on root domain */
15268
+ 'setCookieOnRootDomain'?: boolean;
14653
15269
  /** Allow internal traffic from same or shared projects via public DNS to skip SSO authentication flow */
14654
15270
  'allowInternalTrafficViaPublicDns'?: boolean;
14655
15271
  };
15272
+ /** List of header authentication settings, it checks the presence of all headers and compares it against the expected value. Wildcard (*) is supported. */
15273
+ 'headers'?: any[];
14656
15274
  /** Mode used to verify multiple security features like ip policies and SSO authentication */
14657
15275
  'verificationMode'?: 'or' | 'and';
15276
+ 'securePathConfiguration'?: {
15277
+ /** Enable security policies on a path-level style */
15278
+ 'enabled'?: boolean;
15279
+ /** Allow internal traffic from same or shared projects via public DNS to skip all security policies */
15280
+ 'skipSecurityPoliciesForInternalTrafficViaPublicDns'?: boolean;
15281
+ 'rules'?: {
15282
+ /** Array of path objects which represent the paths and their priority for which the security policies will be enforced */
15283
+ 'paths': any[];
15284
+ /** Specify the way the path rule will behave when processing policies. This enables an allow-list/deny-list approach for access control on each path */
15285
+ 'accessMode': 'protected' | 'unprotected';
15286
+ 'securityPolicies'?: {
15287
+ 'orPolicies'?: {
15288
+ /** An array of credentials to access the service. */
15289
+ 'credentials'?: {
15290
+ /** The username to access the service Example: "admin" */
15291
+ 'username': string;
15292
+ /** The password to access the service with this username. Example: "password123" */
15293
+ 'password': string;
15294
+ /** The type of authentication used Example: "basic-auth" */
15295
+ 'type': 'basic-auth';
15296
+ }[];
15297
+ /** An array of IP address policies. */
15298
+ 'ip'?: {
15299
+ /** An array of IP addresses used for this rule */
15300
+ 'addresses': string[];
15301
+ /** The action for this rule. Example: "DENY" */
15302
+ 'action': 'ALLOW' | 'DENY';
15303
+ }[];
15304
+ /** An array of IP address policies. */
15305
+ 'policies'?: {
15306
+ /** An array of IP addresses used for this rule */
15307
+ 'addresses': string[];
15308
+ /** The action for this rule. Example: "DENY" */
15309
+ 'action': 'ALLOW' | 'DENY';
15310
+ }[];
15311
+ /** Configure port authentication via SSO */
15312
+ 'sso'?: {
15313
+ /** ID of the SSO organization that the user will have to be a member of */
15314
+ 'organizationId'?: string;
15315
+ /** Array of directory groups that will have access */
15316
+ 'directoryGroupIds'?: string[];
15317
+ /** Enforce internal traffic through SSO authentication flow */
15318
+ 'validateInternalTraffic'?: boolean;
15319
+ /** Set SSO authentication cookie on root domain */
15320
+ 'setCookieOnRootDomain'?: boolean;
15321
+ /** Allow internal traffic from same or shared projects via public DNS to skip SSO authentication flow */
15322
+ 'allowInternalTrafficViaPublicDns'?: boolean;
15323
+ };
15324
+ /** List of header authentication settings, it checks the presence of all headers and compares it against the expected value. Wildcard (*) is supported. */
15325
+ 'headers'?: any[];
15326
+ };
15327
+ 'requiredPolicies'?: {
15328
+ /** An array of credentials to access the service. */
15329
+ 'credentials'?: {
15330
+ /** The username to access the service Example: "admin" */
15331
+ 'username': string;
15332
+ /** The password to access the service with this username. Example: "password123" */
15333
+ 'password': string;
15334
+ /** The type of authentication used Example: "basic-auth" */
15335
+ 'type': 'basic-auth';
15336
+ }[];
15337
+ /** An array of IP address policies. */
15338
+ 'ip'?: {
15339
+ /** An array of IP addresses used for this rule */
15340
+ 'addresses': string[];
15341
+ /** The action for this rule. Example: "DENY" */
15342
+ 'action': 'ALLOW' | 'DENY';
15343
+ }[];
15344
+ /** An array of IP address policies. */
15345
+ 'policies'?: {
15346
+ /** An array of IP addresses used for this rule */
15347
+ 'addresses': string[];
15348
+ /** The action for this rule. Example: "DENY" */
15349
+ 'action': 'ALLOW' | 'DENY';
15350
+ }[];
15351
+ /** Configure port authentication via SSO */
15352
+ 'sso'?: {
15353
+ /** ID of the SSO organization that the user will have to be a member of */
15354
+ 'organizationId'?: string;
15355
+ /** Array of directory groups that will have access */
15356
+ 'directoryGroupIds'?: string[];
15357
+ /** Enforce internal traffic through SSO authentication flow */
15358
+ 'validateInternalTraffic'?: boolean;
15359
+ /** Set SSO authentication cookie on root domain */
15360
+ 'setCookieOnRootDomain'?: boolean;
15361
+ /** Allow internal traffic from same or shared projects via public DNS to skip SSO authentication flow */
15362
+ 'allowInternalTrafficViaPublicDns'?: boolean;
15363
+ };
15364
+ /** List of header authentication settings, it checks the presence of all headers and compares it against the expected value. Wildcard (*) is supported. */
15365
+ 'headers'?: any[];
15366
+ };
15367
+ };
15368
+ }[];
15369
+ };
14658
15370
  };
14659
15371
  /** An array of domains to redirect to this port. Each domain must first be verified and registered to your account. */
14660
15372
  'domains'?: string[];
@@ -14863,6 +15575,13 @@ type CreateServiceCombinedResult = {
14863
15575
  };
14864
15576
  /** The maximum amount of time the process has to shut down after receiving a SIGTERM signal before it is forcefully shut down SIGKILL by the system. */
14865
15577
  'gracePeriodSeconds'?: number;
15578
+ /** Allow setting custom labels and annotations for workloads. */
15579
+ 'metadata'?: {
15580
+ /** Specify custom labels for the workload. */
15581
+ 'labels'?: any;
15582
+ /** Specify custom annotations for the workload as string or object. */
15583
+ 'annotations'?: any;
15584
+ };
14866
15585
  /** Image registry url of the deployed image. */
14867
15586
  'imageUrl'?: string;
14868
15587
  };
@@ -14878,6 +15597,8 @@ type CreateServiceCombinedResult = {
14878
15597
  'name': string;
14879
15598
  /** Namespace this resource is located within on the cluster. Example: "ns-8zy2mcjh9zn2" */
14880
15599
  'namespace'?: string;
15600
+ /** Load balancer DNS for the cluster. */
15601
+ 'loadBalancers'?: string[];
14881
15602
  };
14882
15603
  /** time of creation */
14883
15604
  'createdAt'?: string;
@@ -14982,6 +15703,13 @@ type CreateServiceCombinedData = {
14982
15703
  };
14983
15704
  /** The maximum amount of time the process has to shut down after receiving a SIGTERM signal before it is forcefully shut down SIGKILL by the system. */
14984
15705
  'gracePeriodSeconds'?: number;
15706
+ /** Allow setting custom labels and annotations for workloads. */
15707
+ 'metadata'?: {
15708
+ /** Specify custom labels for the workload. */
15709
+ 'labels'?: any;
15710
+ /** Specify custom annotations for the workload as string or object. */
15711
+ 'annotations'?: any;
15712
+ };
14985
15713
  };
14986
15714
  'ports'?: {
14987
15715
  /** The name used to identify the port. Example: "p01" */
@@ -15001,6 +15729,13 @@ type CreateServiceCombinedData = {
15001
15729
  'type': 'basic-auth';
15002
15730
  }[];
15003
15731
  /** An array of IP address policies. */
15732
+ 'ip'?: {
15733
+ /** An array of IP addresses used for this rule */
15734
+ 'addresses': string[];
15735
+ /** The action for this rule. Example: "DENY" */
15736
+ 'action': 'ALLOW' | 'DENY';
15737
+ }[];
15738
+ /** An array of IP address policies. */
15004
15739
  'policies'?: {
15005
15740
  /** An array of IP addresses used for this rule */
15006
15741
  'addresses': string[];
@@ -15015,11 +15750,109 @@ type CreateServiceCombinedData = {
15015
15750
  'directoryGroupIds'?: string[];
15016
15751
  /** Enforce internal traffic through SSO authentication flow */
15017
15752
  'validateInternalTraffic'?: boolean;
15753
+ /** Set SSO authentication cookie on root domain */
15754
+ 'setCookieOnRootDomain'?: boolean;
15018
15755
  /** Allow internal traffic from same or shared projects via public DNS to skip SSO authentication flow */
15019
15756
  'allowInternalTrafficViaPublicDns'?: boolean;
15020
15757
  };
15758
+ /** List of header authentication settings, it checks the presence of all headers and compares it against the expected value. Wildcard (*) is supported. */
15759
+ 'headers'?: any[];
15021
15760
  /** Mode used to verify multiple security features like ip policies and SSO authentication */
15022
15761
  'verificationMode'?: 'or' | 'and';
15762
+ 'securePathConfiguration'?: {
15763
+ /** Enable security policies on a path-level style */
15764
+ 'enabled'?: boolean;
15765
+ /** Allow internal traffic from same or shared projects via public DNS to skip all security policies */
15766
+ 'skipSecurityPoliciesForInternalTrafficViaPublicDns'?: boolean;
15767
+ 'rules'?: {
15768
+ /** Array of path objects which represent the paths and their priority for which the security policies will be enforced */
15769
+ 'paths': any[];
15770
+ /** Specify the way the path rule will behave when processing policies. This enables an allow-list/deny-list approach for access control on each path */
15771
+ 'accessMode': 'protected' | 'unprotected';
15772
+ 'securityPolicies'?: {
15773
+ 'orPolicies'?: {
15774
+ /** An array of credentials to access the service. */
15775
+ 'credentials'?: {
15776
+ /** The username to access the service Example: "admin" */
15777
+ 'username': string;
15778
+ /** The password to access the service with this username. Example: "password123" */
15779
+ 'password': string;
15780
+ /** The type of authentication used Example: "basic-auth" */
15781
+ 'type': 'basic-auth';
15782
+ }[];
15783
+ /** An array of IP address policies. */
15784
+ 'ip'?: {
15785
+ /** An array of IP addresses used for this rule */
15786
+ 'addresses': string[];
15787
+ /** The action for this rule. Example: "DENY" */
15788
+ 'action': 'ALLOW' | 'DENY';
15789
+ }[];
15790
+ /** An array of IP address policies. */
15791
+ 'policies'?: {
15792
+ /** An array of IP addresses used for this rule */
15793
+ 'addresses': string[];
15794
+ /** The action for this rule. Example: "DENY" */
15795
+ 'action': 'ALLOW' | 'DENY';
15796
+ }[];
15797
+ /** Configure port authentication via SSO */
15798
+ 'sso'?: {
15799
+ /** ID of the SSO organization that the user will have to be a member of */
15800
+ 'organizationId'?: string;
15801
+ /** Array of directory groups that will have access */
15802
+ 'directoryGroupIds'?: string[];
15803
+ /** Enforce internal traffic through SSO authentication flow */
15804
+ 'validateInternalTraffic'?: boolean;
15805
+ /** Set SSO authentication cookie on root domain */
15806
+ 'setCookieOnRootDomain'?: boolean;
15807
+ /** Allow internal traffic from same or shared projects via public DNS to skip SSO authentication flow */
15808
+ 'allowInternalTrafficViaPublicDns'?: boolean;
15809
+ };
15810
+ /** List of header authentication settings, it checks the presence of all headers and compares it against the expected value. Wildcard (*) is supported. */
15811
+ 'headers'?: any[];
15812
+ };
15813
+ 'requiredPolicies'?: {
15814
+ /** An array of credentials to access the service. */
15815
+ 'credentials'?: {
15816
+ /** The username to access the service Example: "admin" */
15817
+ 'username': string;
15818
+ /** The password to access the service with this username. Example: "password123" */
15819
+ 'password': string;
15820
+ /** The type of authentication used Example: "basic-auth" */
15821
+ 'type': 'basic-auth';
15822
+ }[];
15823
+ /** An array of IP address policies. */
15824
+ 'ip'?: {
15825
+ /** An array of IP addresses used for this rule */
15826
+ 'addresses': string[];
15827
+ /** The action for this rule. Example: "DENY" */
15828
+ 'action': 'ALLOW' | 'DENY';
15829
+ }[];
15830
+ /** An array of IP address policies. */
15831
+ 'policies'?: {
15832
+ /** An array of IP addresses used for this rule */
15833
+ 'addresses': string[];
15834
+ /** The action for this rule. Example: "DENY" */
15835
+ 'action': 'ALLOW' | 'DENY';
15836
+ }[];
15837
+ /** Configure port authentication via SSO */
15838
+ 'sso'?: {
15839
+ /** ID of the SSO organization that the user will have to be a member of */
15840
+ 'organizationId'?: string;
15841
+ /** Array of directory groups that will have access */
15842
+ 'directoryGroupIds'?: string[];
15843
+ /** Enforce internal traffic through SSO authentication flow */
15844
+ 'validateInternalTraffic'?: boolean;
15845
+ /** Set SSO authentication cookie on root domain */
15846
+ 'setCookieOnRootDomain'?: boolean;
15847
+ /** Allow internal traffic from same or shared projects via public DNS to skip SSO authentication flow */
15848
+ 'allowInternalTrafficViaPublicDns'?: boolean;
15849
+ };
15850
+ /** List of header authentication settings, it checks the presence of all headers and compares it against the expected value. Wildcard (*) is supported. */
15851
+ 'headers'?: any[];
15852
+ };
15853
+ };
15854
+ }[];
15855
+ };
15023
15856
  };
15024
15857
  /** An array of domains to redirect to this port. Each domain must first be verified and registered to your account. */
15025
15858
  'domains'?: string[];
@@ -15220,6 +16053,13 @@ type PutServiceCombinedResult = {
15220
16053
  'type': 'basic-auth';
15221
16054
  }[];
15222
16055
  /** An array of IP address policies. */
16056
+ 'ip'?: {
16057
+ /** An array of IP addresses used for this rule */
16058
+ 'addresses': string[];
16059
+ /** The action for this rule. Example: "DENY" */
16060
+ 'action': 'ALLOW' | 'DENY';
16061
+ }[];
16062
+ /** An array of IP address policies. */
15223
16063
  'policies'?: {
15224
16064
  /** An array of IP addresses used for this rule */
15225
16065
  'addresses': string[];
@@ -15234,11 +16074,109 @@ type PutServiceCombinedResult = {
15234
16074
  'directoryGroupIds'?: string[];
15235
16075
  /** Enforce internal traffic through SSO authentication flow */
15236
16076
  'validateInternalTraffic'?: boolean;
16077
+ /** Set SSO authentication cookie on root domain */
16078
+ 'setCookieOnRootDomain'?: boolean;
15237
16079
  /** Allow internal traffic from same or shared projects via public DNS to skip SSO authentication flow */
15238
16080
  'allowInternalTrafficViaPublicDns'?: boolean;
15239
16081
  };
16082
+ /** List of header authentication settings, it checks the presence of all headers and compares it against the expected value. Wildcard (*) is supported. */
16083
+ 'headers'?: any[];
15240
16084
  /** Mode used to verify multiple security features like ip policies and SSO authentication */
15241
16085
  'verificationMode'?: 'or' | 'and';
16086
+ 'securePathConfiguration'?: {
16087
+ /** Enable security policies on a path-level style */
16088
+ 'enabled'?: boolean;
16089
+ /** Allow internal traffic from same or shared projects via public DNS to skip all security policies */
16090
+ 'skipSecurityPoliciesForInternalTrafficViaPublicDns'?: boolean;
16091
+ 'rules'?: {
16092
+ /** Array of path objects which represent the paths and their priority for which the security policies will be enforced */
16093
+ 'paths': any[];
16094
+ /** Specify the way the path rule will behave when processing policies. This enables an allow-list/deny-list approach for access control on each path */
16095
+ 'accessMode': 'protected' | 'unprotected';
16096
+ 'securityPolicies'?: {
16097
+ 'orPolicies'?: {
16098
+ /** An array of credentials to access the service. */
16099
+ 'credentials'?: {
16100
+ /** The username to access the service Example: "admin" */
16101
+ 'username': string;
16102
+ /** The password to access the service with this username. Example: "password123" */
16103
+ 'password': string;
16104
+ /** The type of authentication used Example: "basic-auth" */
16105
+ 'type': 'basic-auth';
16106
+ }[];
16107
+ /** An array of IP address policies. */
16108
+ 'ip'?: {
16109
+ /** An array of IP addresses used for this rule */
16110
+ 'addresses': string[];
16111
+ /** The action for this rule. Example: "DENY" */
16112
+ 'action': 'ALLOW' | 'DENY';
16113
+ }[];
16114
+ /** An array of IP address policies. */
16115
+ 'policies'?: {
16116
+ /** An array of IP addresses used for this rule */
16117
+ 'addresses': string[];
16118
+ /** The action for this rule. Example: "DENY" */
16119
+ 'action': 'ALLOW' | 'DENY';
16120
+ }[];
16121
+ /** Configure port authentication via SSO */
16122
+ 'sso'?: {
16123
+ /** ID of the SSO organization that the user will have to be a member of */
16124
+ 'organizationId'?: string;
16125
+ /** Array of directory groups that will have access */
16126
+ 'directoryGroupIds'?: string[];
16127
+ /** Enforce internal traffic through SSO authentication flow */
16128
+ 'validateInternalTraffic'?: boolean;
16129
+ /** Set SSO authentication cookie on root domain */
16130
+ 'setCookieOnRootDomain'?: boolean;
16131
+ /** Allow internal traffic from same or shared projects via public DNS to skip SSO authentication flow */
16132
+ 'allowInternalTrafficViaPublicDns'?: boolean;
16133
+ };
16134
+ /** List of header authentication settings, it checks the presence of all headers and compares it against the expected value. Wildcard (*) is supported. */
16135
+ 'headers'?: any[];
16136
+ };
16137
+ 'requiredPolicies'?: {
16138
+ /** An array of credentials to access the service. */
16139
+ 'credentials'?: {
16140
+ /** The username to access the service Example: "admin" */
16141
+ 'username': string;
16142
+ /** The password to access the service with this username. Example: "password123" */
16143
+ 'password': string;
16144
+ /** The type of authentication used Example: "basic-auth" */
16145
+ 'type': 'basic-auth';
16146
+ }[];
16147
+ /** An array of IP address policies. */
16148
+ 'ip'?: {
16149
+ /** An array of IP addresses used for this rule */
16150
+ 'addresses': string[];
16151
+ /** The action for this rule. Example: "DENY" */
16152
+ 'action': 'ALLOW' | 'DENY';
16153
+ }[];
16154
+ /** An array of IP address policies. */
16155
+ 'policies'?: {
16156
+ /** An array of IP addresses used for this rule */
16157
+ 'addresses': string[];
16158
+ /** The action for this rule. Example: "DENY" */
16159
+ 'action': 'ALLOW' | 'DENY';
16160
+ }[];
16161
+ /** Configure port authentication via SSO */
16162
+ 'sso'?: {
16163
+ /** ID of the SSO organization that the user will have to be a member of */
16164
+ 'organizationId'?: string;
16165
+ /** Array of directory groups that will have access */
16166
+ 'directoryGroupIds'?: string[];
16167
+ /** Enforce internal traffic through SSO authentication flow */
16168
+ 'validateInternalTraffic'?: boolean;
16169
+ /** Set SSO authentication cookie on root domain */
16170
+ 'setCookieOnRootDomain'?: boolean;
16171
+ /** Allow internal traffic from same or shared projects via public DNS to skip SSO authentication flow */
16172
+ 'allowInternalTrafficViaPublicDns'?: boolean;
16173
+ };
16174
+ /** List of header authentication settings, it checks the presence of all headers and compares it against the expected value. Wildcard (*) is supported. */
16175
+ 'headers'?: any[];
16176
+ };
16177
+ };
16178
+ }[];
16179
+ };
15242
16180
  };
15243
16181
  /** An array of domains to redirect to this port. Each domain must first be verified and registered to your account. */
15244
16182
  'domains'?: string[];
@@ -15447,6 +16385,13 @@ type PutServiceCombinedResult = {
15447
16385
  };
15448
16386
  /** The maximum amount of time the process has to shut down after receiving a SIGTERM signal before it is forcefully shut down SIGKILL by the system. */
15449
16387
  'gracePeriodSeconds'?: number;
16388
+ /** Allow setting custom labels and annotations for workloads. */
16389
+ 'metadata'?: {
16390
+ /** Specify custom labels for the workload. */
16391
+ 'labels'?: any;
16392
+ /** Specify custom annotations for the workload as string or object. */
16393
+ 'annotations'?: any;
16394
+ };
15450
16395
  /** Image registry url of the deployed image. */
15451
16396
  'imageUrl'?: string;
15452
16397
  };
@@ -15462,6 +16407,8 @@ type PutServiceCombinedResult = {
15462
16407
  'name': string;
15463
16408
  /** Namespace this resource is located within on the cluster. Example: "ns-8zy2mcjh9zn2" */
15464
16409
  'namespace'?: string;
16410
+ /** Load balancer DNS for the cluster. */
16411
+ 'loadBalancers'?: string[];
15465
16412
  };
15466
16413
  /** time of creation */
15467
16414
  'createdAt'?: string;
@@ -15566,6 +16513,13 @@ type PutServiceCombinedData = {
15566
16513
  };
15567
16514
  /** The maximum amount of time the process has to shut down after receiving a SIGTERM signal before it is forcefully shut down SIGKILL by the system. */
15568
16515
  'gracePeriodSeconds'?: number;
16516
+ /** Allow setting custom labels and annotations for workloads. */
16517
+ 'metadata'?: {
16518
+ /** Specify custom labels for the workload. */
16519
+ 'labels'?: any;
16520
+ /** Specify custom annotations for the workload as string or object. */
16521
+ 'annotations'?: any;
16522
+ };
15569
16523
  };
15570
16524
  'ports'?: {
15571
16525
  /** The name used to identify the port. Example: "p01" */
@@ -15585,6 +16539,13 @@ type PutServiceCombinedData = {
15585
16539
  'type': 'basic-auth';
15586
16540
  }[];
15587
16541
  /** An array of IP address policies. */
16542
+ 'ip'?: {
16543
+ /** An array of IP addresses used for this rule */
16544
+ 'addresses': string[];
16545
+ /** The action for this rule. Example: "DENY" */
16546
+ 'action': 'ALLOW' | 'DENY';
16547
+ }[];
16548
+ /** An array of IP address policies. */
15588
16549
  'policies'?: {
15589
16550
  /** An array of IP addresses used for this rule */
15590
16551
  'addresses': string[];
@@ -15599,11 +16560,109 @@ type PutServiceCombinedData = {
15599
16560
  'directoryGroupIds'?: string[];
15600
16561
  /** Enforce internal traffic through SSO authentication flow */
15601
16562
  'validateInternalTraffic'?: boolean;
16563
+ /** Set SSO authentication cookie on root domain */
16564
+ 'setCookieOnRootDomain'?: boolean;
15602
16565
  /** Allow internal traffic from same or shared projects via public DNS to skip SSO authentication flow */
15603
16566
  'allowInternalTrafficViaPublicDns'?: boolean;
15604
16567
  };
16568
+ /** List of header authentication settings, it checks the presence of all headers and compares it against the expected value. Wildcard (*) is supported. */
16569
+ 'headers'?: any[];
15605
16570
  /** Mode used to verify multiple security features like ip policies and SSO authentication */
15606
16571
  'verificationMode'?: 'or' | 'and';
16572
+ 'securePathConfiguration'?: {
16573
+ /** Enable security policies on a path-level style */
16574
+ 'enabled'?: boolean;
16575
+ /** Allow internal traffic from same or shared projects via public DNS to skip all security policies */
16576
+ 'skipSecurityPoliciesForInternalTrafficViaPublicDns'?: boolean;
16577
+ 'rules'?: {
16578
+ /** Array of path objects which represent the paths and their priority for which the security policies will be enforced */
16579
+ 'paths': any[];
16580
+ /** Specify the way the path rule will behave when processing policies. This enables an allow-list/deny-list approach for access control on each path */
16581
+ 'accessMode': 'protected' | 'unprotected';
16582
+ 'securityPolicies'?: {
16583
+ 'orPolicies'?: {
16584
+ /** An array of credentials to access the service. */
16585
+ 'credentials'?: {
16586
+ /** The username to access the service Example: "admin" */
16587
+ 'username': string;
16588
+ /** The password to access the service with this username. Example: "password123" */
16589
+ 'password': string;
16590
+ /** The type of authentication used Example: "basic-auth" */
16591
+ 'type': 'basic-auth';
16592
+ }[];
16593
+ /** An array of IP address policies. */
16594
+ 'ip'?: {
16595
+ /** An array of IP addresses used for this rule */
16596
+ 'addresses': string[];
16597
+ /** The action for this rule. Example: "DENY" */
16598
+ 'action': 'ALLOW' | 'DENY';
16599
+ }[];
16600
+ /** An array of IP address policies. */
16601
+ 'policies'?: {
16602
+ /** An array of IP addresses used for this rule */
16603
+ 'addresses': string[];
16604
+ /** The action for this rule. Example: "DENY" */
16605
+ 'action': 'ALLOW' | 'DENY';
16606
+ }[];
16607
+ /** Configure port authentication via SSO */
16608
+ 'sso'?: {
16609
+ /** ID of the SSO organization that the user will have to be a member of */
16610
+ 'organizationId'?: string;
16611
+ /** Array of directory groups that will have access */
16612
+ 'directoryGroupIds'?: string[];
16613
+ /** Enforce internal traffic through SSO authentication flow */
16614
+ 'validateInternalTraffic'?: boolean;
16615
+ /** Set SSO authentication cookie on root domain */
16616
+ 'setCookieOnRootDomain'?: boolean;
16617
+ /** Allow internal traffic from same or shared projects via public DNS to skip SSO authentication flow */
16618
+ 'allowInternalTrafficViaPublicDns'?: boolean;
16619
+ };
16620
+ /** List of header authentication settings, it checks the presence of all headers and compares it against the expected value. Wildcard (*) is supported. */
16621
+ 'headers'?: any[];
16622
+ };
16623
+ 'requiredPolicies'?: {
16624
+ /** An array of credentials to access the service. */
16625
+ 'credentials'?: {
16626
+ /** The username to access the service Example: "admin" */
16627
+ 'username': string;
16628
+ /** The password to access the service with this username. Example: "password123" */
16629
+ 'password': string;
16630
+ /** The type of authentication used Example: "basic-auth" */
16631
+ 'type': 'basic-auth';
16632
+ }[];
16633
+ /** An array of IP address policies. */
16634
+ 'ip'?: {
16635
+ /** An array of IP addresses used for this rule */
16636
+ 'addresses': string[];
16637
+ /** The action for this rule. Example: "DENY" */
16638
+ 'action': 'ALLOW' | 'DENY';
16639
+ }[];
16640
+ /** An array of IP address policies. */
16641
+ 'policies'?: {
16642
+ /** An array of IP addresses used for this rule */
16643
+ 'addresses': string[];
16644
+ /** The action for this rule. Example: "DENY" */
16645
+ 'action': 'ALLOW' | 'DENY';
16646
+ }[];
16647
+ /** Configure port authentication via SSO */
16648
+ 'sso'?: {
16649
+ /** ID of the SSO organization that the user will have to be a member of */
16650
+ 'organizationId'?: string;
16651
+ /** Array of directory groups that will have access */
16652
+ 'directoryGroupIds'?: string[];
16653
+ /** Enforce internal traffic through SSO authentication flow */
16654
+ 'validateInternalTraffic'?: boolean;
16655
+ /** Set SSO authentication cookie on root domain */
16656
+ 'setCookieOnRootDomain'?: boolean;
16657
+ /** Allow internal traffic from same or shared projects via public DNS to skip SSO authentication flow */
16658
+ 'allowInternalTrafficViaPublicDns'?: boolean;
16659
+ };
16660
+ /** List of header authentication settings, it checks the presence of all headers and compares it against the expected value. Wildcard (*) is supported. */
16661
+ 'headers'?: any[];
16662
+ };
16663
+ };
16664
+ }[];
16665
+ };
15607
16666
  };
15608
16667
  /** An array of domains to redirect to this port. Each domain must first be verified and registered to your account. */
15609
16668
  'domains'?: string[];
@@ -15804,6 +16863,13 @@ type PatchServiceCombinedResult = {
15804
16863
  'type': 'basic-auth';
15805
16864
  }[];
15806
16865
  /** An array of IP address policies. */
16866
+ 'ip'?: {
16867
+ /** An array of IP addresses used for this rule */
16868
+ 'addresses': string[];
16869
+ /** The action for this rule. Example: "DENY" */
16870
+ 'action': 'ALLOW' | 'DENY';
16871
+ }[];
16872
+ /** An array of IP address policies. */
15807
16873
  'policies'?: {
15808
16874
  /** An array of IP addresses used for this rule */
15809
16875
  'addresses': string[];
@@ -15818,11 +16884,109 @@ type PatchServiceCombinedResult = {
15818
16884
  'directoryGroupIds'?: string[];
15819
16885
  /** Enforce internal traffic through SSO authentication flow */
15820
16886
  'validateInternalTraffic'?: boolean;
16887
+ /** Set SSO authentication cookie on root domain */
16888
+ 'setCookieOnRootDomain'?: boolean;
15821
16889
  /** Allow internal traffic from same or shared projects via public DNS to skip SSO authentication flow */
15822
16890
  'allowInternalTrafficViaPublicDns'?: boolean;
15823
16891
  };
16892
+ /** List of header authentication settings, it checks the presence of all headers and compares it against the expected value. Wildcard (*) is supported. */
16893
+ 'headers'?: any[];
15824
16894
  /** Mode used to verify multiple security features like ip policies and SSO authentication */
15825
16895
  'verificationMode'?: 'or' | 'and';
16896
+ 'securePathConfiguration'?: {
16897
+ /** Enable security policies on a path-level style */
16898
+ 'enabled'?: boolean;
16899
+ /** Allow internal traffic from same or shared projects via public DNS to skip all security policies */
16900
+ 'skipSecurityPoliciesForInternalTrafficViaPublicDns'?: boolean;
16901
+ 'rules'?: {
16902
+ /** Array of path objects which represent the paths and their priority for which the security policies will be enforced */
16903
+ 'paths': any[];
16904
+ /** Specify the way the path rule will behave when processing policies. This enables an allow-list/deny-list approach for access control on each path */
16905
+ 'accessMode': 'protected' | 'unprotected';
16906
+ 'securityPolicies'?: {
16907
+ 'orPolicies'?: {
16908
+ /** An array of credentials to access the service. */
16909
+ 'credentials'?: {
16910
+ /** The username to access the service Example: "admin" */
16911
+ 'username': string;
16912
+ /** The password to access the service with this username. Example: "password123" */
16913
+ 'password': string;
16914
+ /** The type of authentication used Example: "basic-auth" */
16915
+ 'type': 'basic-auth';
16916
+ }[];
16917
+ /** An array of IP address policies. */
16918
+ 'ip'?: {
16919
+ /** An array of IP addresses used for this rule */
16920
+ 'addresses': string[];
16921
+ /** The action for this rule. Example: "DENY" */
16922
+ 'action': 'ALLOW' | 'DENY';
16923
+ }[];
16924
+ /** An array of IP address policies. */
16925
+ 'policies'?: {
16926
+ /** An array of IP addresses used for this rule */
16927
+ 'addresses': string[];
16928
+ /** The action for this rule. Example: "DENY" */
16929
+ 'action': 'ALLOW' | 'DENY';
16930
+ }[];
16931
+ /** Configure port authentication via SSO */
16932
+ 'sso'?: {
16933
+ /** ID of the SSO organization that the user will have to be a member of */
16934
+ 'organizationId'?: string;
16935
+ /** Array of directory groups that will have access */
16936
+ 'directoryGroupIds'?: string[];
16937
+ /** Enforce internal traffic through SSO authentication flow */
16938
+ 'validateInternalTraffic'?: boolean;
16939
+ /** Set SSO authentication cookie on root domain */
16940
+ 'setCookieOnRootDomain'?: boolean;
16941
+ /** Allow internal traffic from same or shared projects via public DNS to skip SSO authentication flow */
16942
+ 'allowInternalTrafficViaPublicDns'?: boolean;
16943
+ };
16944
+ /** List of header authentication settings, it checks the presence of all headers and compares it against the expected value. Wildcard (*) is supported. */
16945
+ 'headers'?: any[];
16946
+ };
16947
+ 'requiredPolicies'?: {
16948
+ /** An array of credentials to access the service. */
16949
+ 'credentials'?: {
16950
+ /** The username to access the service Example: "admin" */
16951
+ 'username': string;
16952
+ /** The password to access the service with this username. Example: "password123" */
16953
+ 'password': string;
16954
+ /** The type of authentication used Example: "basic-auth" */
16955
+ 'type': 'basic-auth';
16956
+ }[];
16957
+ /** An array of IP address policies. */
16958
+ 'ip'?: {
16959
+ /** An array of IP addresses used for this rule */
16960
+ 'addresses': string[];
16961
+ /** The action for this rule. Example: "DENY" */
16962
+ 'action': 'ALLOW' | 'DENY';
16963
+ }[];
16964
+ /** An array of IP address policies. */
16965
+ 'policies'?: {
16966
+ /** An array of IP addresses used for this rule */
16967
+ 'addresses': string[];
16968
+ /** The action for this rule. Example: "DENY" */
16969
+ 'action': 'ALLOW' | 'DENY';
16970
+ }[];
16971
+ /** Configure port authentication via SSO */
16972
+ 'sso'?: {
16973
+ /** ID of the SSO organization that the user will have to be a member of */
16974
+ 'organizationId'?: string;
16975
+ /** Array of directory groups that will have access */
16976
+ 'directoryGroupIds'?: string[];
16977
+ /** Enforce internal traffic through SSO authentication flow */
16978
+ 'validateInternalTraffic'?: boolean;
16979
+ /** Set SSO authentication cookie on root domain */
16980
+ 'setCookieOnRootDomain'?: boolean;
16981
+ /** Allow internal traffic from same or shared projects via public DNS to skip SSO authentication flow */
16982
+ 'allowInternalTrafficViaPublicDns'?: boolean;
16983
+ };
16984
+ /** List of header authentication settings, it checks the presence of all headers and compares it against the expected value. Wildcard (*) is supported. */
16985
+ 'headers'?: any[];
16986
+ };
16987
+ };
16988
+ }[];
16989
+ };
15826
16990
  };
15827
16991
  /** An array of domains to redirect to this port. Each domain must first be verified and registered to your account. */
15828
16992
  'domains'?: string[];
@@ -16031,6 +17195,13 @@ type PatchServiceCombinedResult = {
16031
17195
  };
16032
17196
  /** The maximum amount of time the process has to shut down after receiving a SIGTERM signal before it is forcefully shut down SIGKILL by the system. */
16033
17197
  'gracePeriodSeconds'?: number;
17198
+ /** Allow setting custom labels and annotations for workloads. */
17199
+ 'metadata'?: {
17200
+ /** Specify custom labels for the workload. */
17201
+ 'labels'?: any;
17202
+ /** Specify custom annotations for the workload as string or object. */
17203
+ 'annotations'?: any;
17204
+ };
16034
17205
  /** Image registry url of the deployed image. */
16035
17206
  'imageUrl'?: string;
16036
17207
  };
@@ -16046,6 +17217,8 @@ type PatchServiceCombinedResult = {
16046
17217
  'name': string;
16047
17218
  /** Namespace this resource is located within on the cluster. Example: "ns-8zy2mcjh9zn2" */
16048
17219
  'namespace'?: string;
17220
+ /** Load balancer DNS for the cluster. */
17221
+ 'loadBalancers'?: string[];
16049
17222
  };
16050
17223
  /** time of creation */
16051
17224
  'createdAt'?: string;
@@ -16148,6 +17321,13 @@ type PatchServiceCombinedData = {
16148
17321
  };
16149
17322
  /** The maximum amount of time the process has to shut down after receiving a SIGTERM signal before it is forcefully shut down SIGKILL by the system. */
16150
17323
  'gracePeriodSeconds'?: number;
17324
+ /** Allow setting custom labels and annotations for workloads. */
17325
+ 'metadata'?: {
17326
+ /** Specify custom labels for the workload. */
17327
+ 'labels'?: any;
17328
+ /** Specify custom annotations for the workload as string or object. */
17329
+ 'annotations'?: any;
17330
+ };
16151
17331
  };
16152
17332
  'ports'?: {
16153
17333
  /** The name used to identify the port. Example: "p01" */
@@ -16167,6 +17347,13 @@ type PatchServiceCombinedData = {
16167
17347
  'type': 'basic-auth';
16168
17348
  }[];
16169
17349
  /** An array of IP address policies. */
17350
+ 'ip'?: {
17351
+ /** An array of IP addresses used for this rule */
17352
+ 'addresses': string[];
17353
+ /** The action for this rule. Example: "DENY" */
17354
+ 'action': 'ALLOW' | 'DENY';
17355
+ }[];
17356
+ /** An array of IP address policies. */
16170
17357
  'policies'?: {
16171
17358
  /** An array of IP addresses used for this rule */
16172
17359
  'addresses': string[];
@@ -16181,11 +17368,109 @@ type PatchServiceCombinedData = {
16181
17368
  'directoryGroupIds'?: string[];
16182
17369
  /** Enforce internal traffic through SSO authentication flow */
16183
17370
  'validateInternalTraffic'?: boolean;
17371
+ /** Set SSO authentication cookie on root domain */
17372
+ 'setCookieOnRootDomain'?: boolean;
16184
17373
  /** Allow internal traffic from same or shared projects via public DNS to skip SSO authentication flow */
16185
17374
  'allowInternalTrafficViaPublicDns'?: boolean;
16186
17375
  };
17376
+ /** List of header authentication settings, it checks the presence of all headers and compares it against the expected value. Wildcard (*) is supported. */
17377
+ 'headers'?: any[];
16187
17378
  /** Mode used to verify multiple security features like ip policies and SSO authentication */
16188
17379
  'verificationMode'?: 'or' | 'and';
17380
+ 'securePathConfiguration'?: {
17381
+ /** Enable security policies on a path-level style */
17382
+ 'enabled'?: boolean;
17383
+ /** Allow internal traffic from same or shared projects via public DNS to skip all security policies */
17384
+ 'skipSecurityPoliciesForInternalTrafficViaPublicDns'?: boolean;
17385
+ 'rules'?: {
17386
+ /** Array of path objects which represent the paths and their priority for which the security policies will be enforced */
17387
+ 'paths': any[];
17388
+ /** Specify the way the path rule will behave when processing policies. This enables an allow-list/deny-list approach for access control on each path */
17389
+ 'accessMode': 'protected' | 'unprotected';
17390
+ 'securityPolicies'?: {
17391
+ 'orPolicies'?: {
17392
+ /** An array of credentials to access the service. */
17393
+ 'credentials'?: {
17394
+ /** The username to access the service Example: "admin" */
17395
+ 'username': string;
17396
+ /** The password to access the service with this username. Example: "password123" */
17397
+ 'password': string;
17398
+ /** The type of authentication used Example: "basic-auth" */
17399
+ 'type': 'basic-auth';
17400
+ }[];
17401
+ /** An array of IP address policies. */
17402
+ 'ip'?: {
17403
+ /** An array of IP addresses used for this rule */
17404
+ 'addresses': string[];
17405
+ /** The action for this rule. Example: "DENY" */
17406
+ 'action': 'ALLOW' | 'DENY';
17407
+ }[];
17408
+ /** An array of IP address policies. */
17409
+ 'policies'?: {
17410
+ /** An array of IP addresses used for this rule */
17411
+ 'addresses': string[];
17412
+ /** The action for this rule. Example: "DENY" */
17413
+ 'action': 'ALLOW' | 'DENY';
17414
+ }[];
17415
+ /** Configure port authentication via SSO */
17416
+ 'sso'?: {
17417
+ /** ID of the SSO organization that the user will have to be a member of */
17418
+ 'organizationId'?: string;
17419
+ /** Array of directory groups that will have access */
17420
+ 'directoryGroupIds'?: string[];
17421
+ /** Enforce internal traffic through SSO authentication flow */
17422
+ 'validateInternalTraffic'?: boolean;
17423
+ /** Set SSO authentication cookie on root domain */
17424
+ 'setCookieOnRootDomain'?: boolean;
17425
+ /** Allow internal traffic from same or shared projects via public DNS to skip SSO authentication flow */
17426
+ 'allowInternalTrafficViaPublicDns'?: boolean;
17427
+ };
17428
+ /** List of header authentication settings, it checks the presence of all headers and compares it against the expected value. Wildcard (*) is supported. */
17429
+ 'headers'?: any[];
17430
+ };
17431
+ 'requiredPolicies'?: {
17432
+ /** An array of credentials to access the service. */
17433
+ 'credentials'?: {
17434
+ /** The username to access the service Example: "admin" */
17435
+ 'username': string;
17436
+ /** The password to access the service with this username. Example: "password123" */
17437
+ 'password': string;
17438
+ /** The type of authentication used Example: "basic-auth" */
17439
+ 'type': 'basic-auth';
17440
+ }[];
17441
+ /** An array of IP address policies. */
17442
+ 'ip'?: {
17443
+ /** An array of IP addresses used for this rule */
17444
+ 'addresses': string[];
17445
+ /** The action for this rule. Example: "DENY" */
17446
+ 'action': 'ALLOW' | 'DENY';
17447
+ }[];
17448
+ /** An array of IP address policies. */
17449
+ 'policies'?: {
17450
+ /** An array of IP addresses used for this rule */
17451
+ 'addresses': string[];
17452
+ /** The action for this rule. Example: "DENY" */
17453
+ 'action': 'ALLOW' | 'DENY';
17454
+ }[];
17455
+ /** Configure port authentication via SSO */
17456
+ 'sso'?: {
17457
+ /** ID of the SSO organization that the user will have to be a member of */
17458
+ 'organizationId'?: string;
17459
+ /** Array of directory groups that will have access */
17460
+ 'directoryGroupIds'?: string[];
17461
+ /** Enforce internal traffic through SSO authentication flow */
17462
+ 'validateInternalTraffic'?: boolean;
17463
+ /** Set SSO authentication cookie on root domain */
17464
+ 'setCookieOnRootDomain'?: boolean;
17465
+ /** Allow internal traffic from same or shared projects via public DNS to skip SSO authentication flow */
17466
+ 'allowInternalTrafficViaPublicDns'?: boolean;
17467
+ };
17468
+ /** List of header authentication settings, it checks the presence of all headers and compares it against the expected value. Wildcard (*) is supported. */
17469
+ 'headers'?: any[];
17470
+ };
17471
+ };
17472
+ }[];
17473
+ };
16189
17474
  };
16190
17475
  /** An array of domains to redirect to this port. Each domain must first be verified and registered to your account. */
16191
17476
  'domains'?: string[];
@@ -16374,6 +17659,13 @@ type CreateServiceDeploymentResult = {
16374
17659
  'type': 'basic-auth';
16375
17660
  }[];
16376
17661
  /** An array of IP address policies. */
17662
+ 'ip'?: {
17663
+ /** An array of IP addresses used for this rule */
17664
+ 'addresses': string[];
17665
+ /** The action for this rule. Example: "DENY" */
17666
+ 'action': 'ALLOW' | 'DENY';
17667
+ }[];
17668
+ /** An array of IP address policies. */
16377
17669
  'policies'?: {
16378
17670
  /** An array of IP addresses used for this rule */
16379
17671
  'addresses': string[];
@@ -16388,11 +17680,109 @@ type CreateServiceDeploymentResult = {
16388
17680
  'directoryGroupIds'?: string[];
16389
17681
  /** Enforce internal traffic through SSO authentication flow */
16390
17682
  'validateInternalTraffic'?: boolean;
17683
+ /** Set SSO authentication cookie on root domain */
17684
+ 'setCookieOnRootDomain'?: boolean;
16391
17685
  /** Allow internal traffic from same or shared projects via public DNS to skip SSO authentication flow */
16392
17686
  'allowInternalTrafficViaPublicDns'?: boolean;
16393
17687
  };
17688
+ /** List of header authentication settings, it checks the presence of all headers and compares it against the expected value. Wildcard (*) is supported. */
17689
+ 'headers'?: any[];
16394
17690
  /** Mode used to verify multiple security features like ip policies and SSO authentication */
16395
17691
  'verificationMode'?: 'or' | 'and';
17692
+ 'securePathConfiguration'?: {
17693
+ /** Enable security policies on a path-level style */
17694
+ 'enabled'?: boolean;
17695
+ /** Allow internal traffic from same or shared projects via public DNS to skip all security policies */
17696
+ 'skipSecurityPoliciesForInternalTrafficViaPublicDns'?: boolean;
17697
+ 'rules'?: {
17698
+ /** Array of path objects which represent the paths and their priority for which the security policies will be enforced */
17699
+ 'paths': any[];
17700
+ /** Specify the way the path rule will behave when processing policies. This enables an allow-list/deny-list approach for access control on each path */
17701
+ 'accessMode': 'protected' | 'unprotected';
17702
+ 'securityPolicies'?: {
17703
+ 'orPolicies'?: {
17704
+ /** An array of credentials to access the service. */
17705
+ 'credentials'?: {
17706
+ /** The username to access the service Example: "admin" */
17707
+ 'username': string;
17708
+ /** The password to access the service with this username. Example: "password123" */
17709
+ 'password': string;
17710
+ /** The type of authentication used Example: "basic-auth" */
17711
+ 'type': 'basic-auth';
17712
+ }[];
17713
+ /** An array of IP address policies. */
17714
+ 'ip'?: {
17715
+ /** An array of IP addresses used for this rule */
17716
+ 'addresses': string[];
17717
+ /** The action for this rule. Example: "DENY" */
17718
+ 'action': 'ALLOW' | 'DENY';
17719
+ }[];
17720
+ /** An array of IP address policies. */
17721
+ 'policies'?: {
17722
+ /** An array of IP addresses used for this rule */
17723
+ 'addresses': string[];
17724
+ /** The action for this rule. Example: "DENY" */
17725
+ 'action': 'ALLOW' | 'DENY';
17726
+ }[];
17727
+ /** Configure port authentication via SSO */
17728
+ 'sso'?: {
17729
+ /** ID of the SSO organization that the user will have to be a member of */
17730
+ 'organizationId'?: string;
17731
+ /** Array of directory groups that will have access */
17732
+ 'directoryGroupIds'?: string[];
17733
+ /** Enforce internal traffic through SSO authentication flow */
17734
+ 'validateInternalTraffic'?: boolean;
17735
+ /** Set SSO authentication cookie on root domain */
17736
+ 'setCookieOnRootDomain'?: boolean;
17737
+ /** Allow internal traffic from same or shared projects via public DNS to skip SSO authentication flow */
17738
+ 'allowInternalTrafficViaPublicDns'?: boolean;
17739
+ };
17740
+ /** List of header authentication settings, it checks the presence of all headers and compares it against the expected value. Wildcard (*) is supported. */
17741
+ 'headers'?: any[];
17742
+ };
17743
+ 'requiredPolicies'?: {
17744
+ /** An array of credentials to access the service. */
17745
+ 'credentials'?: {
17746
+ /** The username to access the service Example: "admin" */
17747
+ 'username': string;
17748
+ /** The password to access the service with this username. Example: "password123" */
17749
+ 'password': string;
17750
+ /** The type of authentication used Example: "basic-auth" */
17751
+ 'type': 'basic-auth';
17752
+ }[];
17753
+ /** An array of IP address policies. */
17754
+ 'ip'?: {
17755
+ /** An array of IP addresses used for this rule */
17756
+ 'addresses': string[];
17757
+ /** The action for this rule. Example: "DENY" */
17758
+ 'action': 'ALLOW' | 'DENY';
17759
+ }[];
17760
+ /** An array of IP address policies. */
17761
+ 'policies'?: {
17762
+ /** An array of IP addresses used for this rule */
17763
+ 'addresses': string[];
17764
+ /** The action for this rule. Example: "DENY" */
17765
+ 'action': 'ALLOW' | 'DENY';
17766
+ }[];
17767
+ /** Configure port authentication via SSO */
17768
+ 'sso'?: {
17769
+ /** ID of the SSO organization that the user will have to be a member of */
17770
+ 'organizationId'?: string;
17771
+ /** Array of directory groups that will have access */
17772
+ 'directoryGroupIds'?: string[];
17773
+ /** Enforce internal traffic through SSO authentication flow */
17774
+ 'validateInternalTraffic'?: boolean;
17775
+ /** Set SSO authentication cookie on root domain */
17776
+ 'setCookieOnRootDomain'?: boolean;
17777
+ /** Allow internal traffic from same or shared projects via public DNS to skip SSO authentication flow */
17778
+ 'allowInternalTrafficViaPublicDns'?: boolean;
17779
+ };
17780
+ /** List of header authentication settings, it checks the presence of all headers and compares it against the expected value. Wildcard (*) is supported. */
17781
+ 'headers'?: any[];
17782
+ };
17783
+ };
17784
+ }[];
17785
+ };
16396
17786
  };
16397
17787
  /** An array of domains to redirect to this port. Each domain must first be verified and registered to your account. */
16398
17788
  'domains'?: string[];
@@ -16514,6 +17904,13 @@ type CreateServiceDeploymentResult = {
16514
17904
  };
16515
17905
  /** The maximum amount of time the process has to shut down after receiving a SIGTERM signal before it is forcefully shut down SIGKILL by the system. */
16516
17906
  'gracePeriodSeconds'?: number;
17907
+ /** Allow setting custom labels and annotations for workloads. */
17908
+ 'metadata'?: {
17909
+ /** Specify custom labels for the workload. */
17910
+ 'labels'?: any;
17911
+ /** Specify custom annotations for the workload as string or object. */
17912
+ 'annotations'?: any;
17913
+ };
16517
17914
  'internal'?: {
16518
17915
  /** ID of the build service to deploy Example: "example-build-service" */
16519
17916
  'id'?: string;
@@ -16545,6 +17942,8 @@ type CreateServiceDeploymentResult = {
16545
17942
  'name': string;
16546
17943
  /** Namespace this resource is located within on the cluster. Example: "ns-8zy2mcjh9zn2" */
16547
17944
  'namespace'?: string;
17945
+ /** Load balancer DNS for the cluster. */
17946
+ 'loadBalancers'?: string[];
16548
17947
  };
16549
17948
  /** time of creation */
16550
17949
  'createdAt'?: string;
@@ -16641,6 +18040,13 @@ type CreateServiceDeploymentData = {
16641
18040
  };
16642
18041
  /** The maximum amount of time the process has to shut down after receiving a SIGTERM signal before it is forcefully shut down SIGKILL by the system. */
16643
18042
  'gracePeriodSeconds'?: number;
18043
+ /** Allow setting custom labels and annotations for workloads. */
18044
+ 'metadata'?: {
18045
+ /** Specify custom labels for the workload. */
18046
+ 'labels'?: any;
18047
+ /** Specify custom annotations for the workload as string or object. */
18048
+ 'annotations'?: any;
18049
+ };
16644
18050
  'internal': {
16645
18051
  /** ID of the build service to deploy Example: "example-build-service" */
16646
18052
  'id'?: string;
@@ -16702,6 +18108,13 @@ type CreateServiceDeploymentData = {
16702
18108
  };
16703
18109
  /** The maximum amount of time the process has to shut down after receiving a SIGTERM signal before it is forcefully shut down SIGKILL by the system. */
16704
18110
  'gracePeriodSeconds'?: number;
18111
+ /** Allow setting custom labels and annotations for workloads. */
18112
+ 'metadata'?: {
18113
+ /** Specify custom labels for the workload. */
18114
+ 'labels'?: any;
18115
+ /** Specify custom annotations for the workload as string or object. */
18116
+ 'annotations'?: any;
18117
+ };
16705
18118
  'external': {
16706
18119
  /** Image to be deployed. When not deploying from Dockerhub the URL must be specified. Example: "nginx:latest" */
16707
18120
  'imagePath': string;
@@ -16759,6 +18172,13 @@ type CreateServiceDeploymentData = {
16759
18172
  };
16760
18173
  /** The maximum amount of time the process has to shut down after receiving a SIGTERM signal before it is forcefully shut down SIGKILL by the system. */
16761
18174
  'gracePeriodSeconds'?: number;
18175
+ /** Allow setting custom labels and annotations for workloads. */
18176
+ 'metadata'?: {
18177
+ /** Specify custom labels for the workload. */
18178
+ 'labels'?: any;
18179
+ /** Specify custom annotations for the workload as string or object. */
18180
+ 'annotations'?: any;
18181
+ };
16762
18182
  };
16763
18183
  'ports'?: {
16764
18184
  /** The name used to identify the port. Example: "p01" */
@@ -16778,6 +18198,13 @@ type CreateServiceDeploymentData = {
16778
18198
  'type': 'basic-auth';
16779
18199
  }[];
16780
18200
  /** An array of IP address policies. */
18201
+ 'ip'?: {
18202
+ /** An array of IP addresses used for this rule */
18203
+ 'addresses': string[];
18204
+ /** The action for this rule. Example: "DENY" */
18205
+ 'action': 'ALLOW' | 'DENY';
18206
+ }[];
18207
+ /** An array of IP address policies. */
16781
18208
  'policies'?: {
16782
18209
  /** An array of IP addresses used for this rule */
16783
18210
  'addresses': string[];
@@ -16792,11 +18219,109 @@ type CreateServiceDeploymentData = {
16792
18219
  'directoryGroupIds'?: string[];
16793
18220
  /** Enforce internal traffic through SSO authentication flow */
16794
18221
  'validateInternalTraffic'?: boolean;
18222
+ /** Set SSO authentication cookie on root domain */
18223
+ 'setCookieOnRootDomain'?: boolean;
16795
18224
  /** Allow internal traffic from same or shared projects via public DNS to skip SSO authentication flow */
16796
18225
  'allowInternalTrafficViaPublicDns'?: boolean;
16797
18226
  };
18227
+ /** List of header authentication settings, it checks the presence of all headers and compares it against the expected value. Wildcard (*) is supported. */
18228
+ 'headers'?: any[];
16798
18229
  /** Mode used to verify multiple security features like ip policies and SSO authentication */
16799
18230
  'verificationMode'?: 'or' | 'and';
18231
+ 'securePathConfiguration'?: {
18232
+ /** Enable security policies on a path-level style */
18233
+ 'enabled'?: boolean;
18234
+ /** Allow internal traffic from same or shared projects via public DNS to skip all security policies */
18235
+ 'skipSecurityPoliciesForInternalTrafficViaPublicDns'?: boolean;
18236
+ 'rules'?: {
18237
+ /** Array of path objects which represent the paths and their priority for which the security policies will be enforced */
18238
+ 'paths': any[];
18239
+ /** Specify the way the path rule will behave when processing policies. This enables an allow-list/deny-list approach for access control on each path */
18240
+ 'accessMode': 'protected' | 'unprotected';
18241
+ 'securityPolicies'?: {
18242
+ 'orPolicies'?: {
18243
+ /** An array of credentials to access the service. */
18244
+ 'credentials'?: {
18245
+ /** The username to access the service Example: "admin" */
18246
+ 'username': string;
18247
+ /** The password to access the service with this username. Example: "password123" */
18248
+ 'password': string;
18249
+ /** The type of authentication used Example: "basic-auth" */
18250
+ 'type': 'basic-auth';
18251
+ }[];
18252
+ /** An array of IP address policies. */
18253
+ 'ip'?: {
18254
+ /** An array of IP addresses used for this rule */
18255
+ 'addresses': string[];
18256
+ /** The action for this rule. Example: "DENY" */
18257
+ 'action': 'ALLOW' | 'DENY';
18258
+ }[];
18259
+ /** An array of IP address policies. */
18260
+ 'policies'?: {
18261
+ /** An array of IP addresses used for this rule */
18262
+ 'addresses': string[];
18263
+ /** The action for this rule. Example: "DENY" */
18264
+ 'action': 'ALLOW' | 'DENY';
18265
+ }[];
18266
+ /** Configure port authentication via SSO */
18267
+ 'sso'?: {
18268
+ /** ID of the SSO organization that the user will have to be a member of */
18269
+ 'organizationId'?: string;
18270
+ /** Array of directory groups that will have access */
18271
+ 'directoryGroupIds'?: string[];
18272
+ /** Enforce internal traffic through SSO authentication flow */
18273
+ 'validateInternalTraffic'?: boolean;
18274
+ /** Set SSO authentication cookie on root domain */
18275
+ 'setCookieOnRootDomain'?: boolean;
18276
+ /** Allow internal traffic from same or shared projects via public DNS to skip SSO authentication flow */
18277
+ 'allowInternalTrafficViaPublicDns'?: boolean;
18278
+ };
18279
+ /** List of header authentication settings, it checks the presence of all headers and compares it against the expected value. Wildcard (*) is supported. */
18280
+ 'headers'?: any[];
18281
+ };
18282
+ 'requiredPolicies'?: {
18283
+ /** An array of credentials to access the service. */
18284
+ 'credentials'?: {
18285
+ /** The username to access the service Example: "admin" */
18286
+ 'username': string;
18287
+ /** The password to access the service with this username. Example: "password123" */
18288
+ 'password': string;
18289
+ /** The type of authentication used Example: "basic-auth" */
18290
+ 'type': 'basic-auth';
18291
+ }[];
18292
+ /** An array of IP address policies. */
18293
+ 'ip'?: {
18294
+ /** An array of IP addresses used for this rule */
18295
+ 'addresses': string[];
18296
+ /** The action for this rule. Example: "DENY" */
18297
+ 'action': 'ALLOW' | 'DENY';
18298
+ }[];
18299
+ /** An array of IP address policies. */
18300
+ 'policies'?: {
18301
+ /** An array of IP addresses used for this rule */
18302
+ 'addresses': string[];
18303
+ /** The action for this rule. Example: "DENY" */
18304
+ 'action': 'ALLOW' | 'DENY';
18305
+ }[];
18306
+ /** Configure port authentication via SSO */
18307
+ 'sso'?: {
18308
+ /** ID of the SSO organization that the user will have to be a member of */
18309
+ 'organizationId'?: string;
18310
+ /** Array of directory groups that will have access */
18311
+ 'directoryGroupIds'?: string[];
18312
+ /** Enforce internal traffic through SSO authentication flow */
18313
+ 'validateInternalTraffic'?: boolean;
18314
+ /** Set SSO authentication cookie on root domain */
18315
+ 'setCookieOnRootDomain'?: boolean;
18316
+ /** Allow internal traffic from same or shared projects via public DNS to skip SSO authentication flow */
18317
+ 'allowInternalTrafficViaPublicDns'?: boolean;
18318
+ };
18319
+ /** List of header authentication settings, it checks the presence of all headers and compares it against the expected value. Wildcard (*) is supported. */
18320
+ 'headers'?: any[];
18321
+ };
18322
+ };
18323
+ }[];
18324
+ };
16800
18325
  };
16801
18326
  /** An array of domains to redirect to this port. Each domain must first be verified and registered to your account. */
16802
18327
  'domains'?: string[];
@@ -16908,6 +18433,13 @@ type PutServiceDeploymentResult = {
16908
18433
  'type': 'basic-auth';
16909
18434
  }[];
16910
18435
  /** An array of IP address policies. */
18436
+ 'ip'?: {
18437
+ /** An array of IP addresses used for this rule */
18438
+ 'addresses': string[];
18439
+ /** The action for this rule. Example: "DENY" */
18440
+ 'action': 'ALLOW' | 'DENY';
18441
+ }[];
18442
+ /** An array of IP address policies. */
16911
18443
  'policies'?: {
16912
18444
  /** An array of IP addresses used for this rule */
16913
18445
  'addresses': string[];
@@ -16922,11 +18454,109 @@ type PutServiceDeploymentResult = {
16922
18454
  'directoryGroupIds'?: string[];
16923
18455
  /** Enforce internal traffic through SSO authentication flow */
16924
18456
  'validateInternalTraffic'?: boolean;
18457
+ /** Set SSO authentication cookie on root domain */
18458
+ 'setCookieOnRootDomain'?: boolean;
16925
18459
  /** Allow internal traffic from same or shared projects via public DNS to skip SSO authentication flow */
16926
18460
  'allowInternalTrafficViaPublicDns'?: boolean;
16927
18461
  };
18462
+ /** List of header authentication settings, it checks the presence of all headers and compares it against the expected value. Wildcard (*) is supported. */
18463
+ 'headers'?: any[];
16928
18464
  /** Mode used to verify multiple security features like ip policies and SSO authentication */
16929
18465
  'verificationMode'?: 'or' | 'and';
18466
+ 'securePathConfiguration'?: {
18467
+ /** Enable security policies on a path-level style */
18468
+ 'enabled'?: boolean;
18469
+ /** Allow internal traffic from same or shared projects via public DNS to skip all security policies */
18470
+ 'skipSecurityPoliciesForInternalTrafficViaPublicDns'?: boolean;
18471
+ 'rules'?: {
18472
+ /** Array of path objects which represent the paths and their priority for which the security policies will be enforced */
18473
+ 'paths': any[];
18474
+ /** Specify the way the path rule will behave when processing policies. This enables an allow-list/deny-list approach for access control on each path */
18475
+ 'accessMode': 'protected' | 'unprotected';
18476
+ 'securityPolicies'?: {
18477
+ 'orPolicies'?: {
18478
+ /** An array of credentials to access the service. */
18479
+ 'credentials'?: {
18480
+ /** The username to access the service Example: "admin" */
18481
+ 'username': string;
18482
+ /** The password to access the service with this username. Example: "password123" */
18483
+ 'password': string;
18484
+ /** The type of authentication used Example: "basic-auth" */
18485
+ 'type': 'basic-auth';
18486
+ }[];
18487
+ /** An array of IP address policies. */
18488
+ 'ip'?: {
18489
+ /** An array of IP addresses used for this rule */
18490
+ 'addresses': string[];
18491
+ /** The action for this rule. Example: "DENY" */
18492
+ 'action': 'ALLOW' | 'DENY';
18493
+ }[];
18494
+ /** An array of IP address policies. */
18495
+ 'policies'?: {
18496
+ /** An array of IP addresses used for this rule */
18497
+ 'addresses': string[];
18498
+ /** The action for this rule. Example: "DENY" */
18499
+ 'action': 'ALLOW' | 'DENY';
18500
+ }[];
18501
+ /** Configure port authentication via SSO */
18502
+ 'sso'?: {
18503
+ /** ID of the SSO organization that the user will have to be a member of */
18504
+ 'organizationId'?: string;
18505
+ /** Array of directory groups that will have access */
18506
+ 'directoryGroupIds'?: string[];
18507
+ /** Enforce internal traffic through SSO authentication flow */
18508
+ 'validateInternalTraffic'?: boolean;
18509
+ /** Set SSO authentication cookie on root domain */
18510
+ 'setCookieOnRootDomain'?: boolean;
18511
+ /** Allow internal traffic from same or shared projects via public DNS to skip SSO authentication flow */
18512
+ 'allowInternalTrafficViaPublicDns'?: boolean;
18513
+ };
18514
+ /** List of header authentication settings, it checks the presence of all headers and compares it against the expected value. Wildcard (*) is supported. */
18515
+ 'headers'?: any[];
18516
+ };
18517
+ 'requiredPolicies'?: {
18518
+ /** An array of credentials to access the service. */
18519
+ 'credentials'?: {
18520
+ /** The username to access the service Example: "admin" */
18521
+ 'username': string;
18522
+ /** The password to access the service with this username. Example: "password123" */
18523
+ 'password': string;
18524
+ /** The type of authentication used Example: "basic-auth" */
18525
+ 'type': 'basic-auth';
18526
+ }[];
18527
+ /** An array of IP address policies. */
18528
+ 'ip'?: {
18529
+ /** An array of IP addresses used for this rule */
18530
+ 'addresses': string[];
18531
+ /** The action for this rule. Example: "DENY" */
18532
+ 'action': 'ALLOW' | 'DENY';
18533
+ }[];
18534
+ /** An array of IP address policies. */
18535
+ 'policies'?: {
18536
+ /** An array of IP addresses used for this rule */
18537
+ 'addresses': string[];
18538
+ /** The action for this rule. Example: "DENY" */
18539
+ 'action': 'ALLOW' | 'DENY';
18540
+ }[];
18541
+ /** Configure port authentication via SSO */
18542
+ 'sso'?: {
18543
+ /** ID of the SSO organization that the user will have to be a member of */
18544
+ 'organizationId'?: string;
18545
+ /** Array of directory groups that will have access */
18546
+ 'directoryGroupIds'?: string[];
18547
+ /** Enforce internal traffic through SSO authentication flow */
18548
+ 'validateInternalTraffic'?: boolean;
18549
+ /** Set SSO authentication cookie on root domain */
18550
+ 'setCookieOnRootDomain'?: boolean;
18551
+ /** Allow internal traffic from same or shared projects via public DNS to skip SSO authentication flow */
18552
+ 'allowInternalTrafficViaPublicDns'?: boolean;
18553
+ };
18554
+ /** List of header authentication settings, it checks the presence of all headers and compares it against the expected value. Wildcard (*) is supported. */
18555
+ 'headers'?: any[];
18556
+ };
18557
+ };
18558
+ }[];
18559
+ };
16930
18560
  };
16931
18561
  /** An array of domains to redirect to this port. Each domain must first be verified and registered to your account. */
16932
18562
  'domains'?: string[];
@@ -17048,6 +18678,13 @@ type PutServiceDeploymentResult = {
17048
18678
  };
17049
18679
  /** The maximum amount of time the process has to shut down after receiving a SIGTERM signal before it is forcefully shut down SIGKILL by the system. */
17050
18680
  'gracePeriodSeconds'?: number;
18681
+ /** Allow setting custom labels and annotations for workloads. */
18682
+ 'metadata'?: {
18683
+ /** Specify custom labels for the workload. */
18684
+ 'labels'?: any;
18685
+ /** Specify custom annotations for the workload as string or object. */
18686
+ 'annotations'?: any;
18687
+ };
17051
18688
  'internal'?: {
17052
18689
  /** ID of the build service to deploy Example: "example-build-service" */
17053
18690
  'id'?: string;
@@ -17079,6 +18716,8 @@ type PutServiceDeploymentResult = {
17079
18716
  'name': string;
17080
18717
  /** Namespace this resource is located within on the cluster. Example: "ns-8zy2mcjh9zn2" */
17081
18718
  'namespace'?: string;
18719
+ /** Load balancer DNS for the cluster. */
18720
+ 'loadBalancers'?: string[];
17082
18721
  };
17083
18722
  /** time of creation */
17084
18723
  'createdAt'?: string;
@@ -17175,6 +18814,13 @@ type PutServiceDeploymentData = {
17175
18814
  };
17176
18815
  /** The maximum amount of time the process has to shut down after receiving a SIGTERM signal before it is forcefully shut down SIGKILL by the system. */
17177
18816
  'gracePeriodSeconds'?: number;
18817
+ /** Allow setting custom labels and annotations for workloads. */
18818
+ 'metadata'?: {
18819
+ /** Specify custom labels for the workload. */
18820
+ 'labels'?: any;
18821
+ /** Specify custom annotations for the workload as string or object. */
18822
+ 'annotations'?: any;
18823
+ };
17178
18824
  'internal': {
17179
18825
  /** ID of the build service to deploy Example: "example-build-service" */
17180
18826
  'id'?: string;
@@ -17236,6 +18882,13 @@ type PutServiceDeploymentData = {
17236
18882
  };
17237
18883
  /** The maximum amount of time the process has to shut down after receiving a SIGTERM signal before it is forcefully shut down SIGKILL by the system. */
17238
18884
  'gracePeriodSeconds'?: number;
18885
+ /** Allow setting custom labels and annotations for workloads. */
18886
+ 'metadata'?: {
18887
+ /** Specify custom labels for the workload. */
18888
+ 'labels'?: any;
18889
+ /** Specify custom annotations for the workload as string or object. */
18890
+ 'annotations'?: any;
18891
+ };
17239
18892
  'external': {
17240
18893
  /** Image to be deployed. When not deploying from Dockerhub the URL must be specified. Example: "nginx:latest" */
17241
18894
  'imagePath': string;
@@ -17293,6 +18946,13 @@ type PutServiceDeploymentData = {
17293
18946
  };
17294
18947
  /** The maximum amount of time the process has to shut down after receiving a SIGTERM signal before it is forcefully shut down SIGKILL by the system. */
17295
18948
  'gracePeriodSeconds'?: number;
18949
+ /** Allow setting custom labels and annotations for workloads. */
18950
+ 'metadata'?: {
18951
+ /** Specify custom labels for the workload. */
18952
+ 'labels'?: any;
18953
+ /** Specify custom annotations for the workload as string or object. */
18954
+ 'annotations'?: any;
18955
+ };
17296
18956
  };
17297
18957
  'ports'?: {
17298
18958
  /** The name used to identify the port. Example: "p01" */
@@ -17312,6 +18972,13 @@ type PutServiceDeploymentData = {
17312
18972
  'type': 'basic-auth';
17313
18973
  }[];
17314
18974
  /** An array of IP address policies. */
18975
+ 'ip'?: {
18976
+ /** An array of IP addresses used for this rule */
18977
+ 'addresses': string[];
18978
+ /** The action for this rule. Example: "DENY" */
18979
+ 'action': 'ALLOW' | 'DENY';
18980
+ }[];
18981
+ /** An array of IP address policies. */
17315
18982
  'policies'?: {
17316
18983
  /** An array of IP addresses used for this rule */
17317
18984
  'addresses': string[];
@@ -17326,11 +18993,109 @@ type PutServiceDeploymentData = {
17326
18993
  'directoryGroupIds'?: string[];
17327
18994
  /** Enforce internal traffic through SSO authentication flow */
17328
18995
  'validateInternalTraffic'?: boolean;
18996
+ /** Set SSO authentication cookie on root domain */
18997
+ 'setCookieOnRootDomain'?: boolean;
17329
18998
  /** Allow internal traffic from same or shared projects via public DNS to skip SSO authentication flow */
17330
18999
  'allowInternalTrafficViaPublicDns'?: boolean;
17331
19000
  };
19001
+ /** List of header authentication settings, it checks the presence of all headers and compares it against the expected value. Wildcard (*) is supported. */
19002
+ 'headers'?: any[];
17332
19003
  /** Mode used to verify multiple security features like ip policies and SSO authentication */
17333
19004
  'verificationMode'?: 'or' | 'and';
19005
+ 'securePathConfiguration'?: {
19006
+ /** Enable security policies on a path-level style */
19007
+ 'enabled'?: boolean;
19008
+ /** Allow internal traffic from same or shared projects via public DNS to skip all security policies */
19009
+ 'skipSecurityPoliciesForInternalTrafficViaPublicDns'?: boolean;
19010
+ 'rules'?: {
19011
+ /** Array of path objects which represent the paths and their priority for which the security policies will be enforced */
19012
+ 'paths': any[];
19013
+ /** Specify the way the path rule will behave when processing policies. This enables an allow-list/deny-list approach for access control on each path */
19014
+ 'accessMode': 'protected' | 'unprotected';
19015
+ 'securityPolicies'?: {
19016
+ 'orPolicies'?: {
19017
+ /** An array of credentials to access the service. */
19018
+ 'credentials'?: {
19019
+ /** The username to access the service Example: "admin" */
19020
+ 'username': string;
19021
+ /** The password to access the service with this username. Example: "password123" */
19022
+ 'password': string;
19023
+ /** The type of authentication used Example: "basic-auth" */
19024
+ 'type': 'basic-auth';
19025
+ }[];
19026
+ /** An array of IP address policies. */
19027
+ 'ip'?: {
19028
+ /** An array of IP addresses used for this rule */
19029
+ 'addresses': string[];
19030
+ /** The action for this rule. Example: "DENY" */
19031
+ 'action': 'ALLOW' | 'DENY';
19032
+ }[];
19033
+ /** An array of IP address policies. */
19034
+ 'policies'?: {
19035
+ /** An array of IP addresses used for this rule */
19036
+ 'addresses': string[];
19037
+ /** The action for this rule. Example: "DENY" */
19038
+ 'action': 'ALLOW' | 'DENY';
19039
+ }[];
19040
+ /** Configure port authentication via SSO */
19041
+ 'sso'?: {
19042
+ /** ID of the SSO organization that the user will have to be a member of */
19043
+ 'organizationId'?: string;
19044
+ /** Array of directory groups that will have access */
19045
+ 'directoryGroupIds'?: string[];
19046
+ /** Enforce internal traffic through SSO authentication flow */
19047
+ 'validateInternalTraffic'?: boolean;
19048
+ /** Set SSO authentication cookie on root domain */
19049
+ 'setCookieOnRootDomain'?: boolean;
19050
+ /** Allow internal traffic from same or shared projects via public DNS to skip SSO authentication flow */
19051
+ 'allowInternalTrafficViaPublicDns'?: boolean;
19052
+ };
19053
+ /** List of header authentication settings, it checks the presence of all headers and compares it against the expected value. Wildcard (*) is supported. */
19054
+ 'headers'?: any[];
19055
+ };
19056
+ 'requiredPolicies'?: {
19057
+ /** An array of credentials to access the service. */
19058
+ 'credentials'?: {
19059
+ /** The username to access the service Example: "admin" */
19060
+ 'username': string;
19061
+ /** The password to access the service with this username. Example: "password123" */
19062
+ 'password': string;
19063
+ /** The type of authentication used Example: "basic-auth" */
19064
+ 'type': 'basic-auth';
19065
+ }[];
19066
+ /** An array of IP address policies. */
19067
+ 'ip'?: {
19068
+ /** An array of IP addresses used for this rule */
19069
+ 'addresses': string[];
19070
+ /** The action for this rule. Example: "DENY" */
19071
+ 'action': 'ALLOW' | 'DENY';
19072
+ }[];
19073
+ /** An array of IP address policies. */
19074
+ 'policies'?: {
19075
+ /** An array of IP addresses used for this rule */
19076
+ 'addresses': string[];
19077
+ /** The action for this rule. Example: "DENY" */
19078
+ 'action': 'ALLOW' | 'DENY';
19079
+ }[];
19080
+ /** Configure port authentication via SSO */
19081
+ 'sso'?: {
19082
+ /** ID of the SSO organization that the user will have to be a member of */
19083
+ 'organizationId'?: string;
19084
+ /** Array of directory groups that will have access */
19085
+ 'directoryGroupIds'?: string[];
19086
+ /** Enforce internal traffic through SSO authentication flow */
19087
+ 'validateInternalTraffic'?: boolean;
19088
+ /** Set SSO authentication cookie on root domain */
19089
+ 'setCookieOnRootDomain'?: boolean;
19090
+ /** Allow internal traffic from same or shared projects via public DNS to skip SSO authentication flow */
19091
+ 'allowInternalTrafficViaPublicDns'?: boolean;
19092
+ };
19093
+ /** List of header authentication settings, it checks the presence of all headers and compares it against the expected value. Wildcard (*) is supported. */
19094
+ 'headers'?: any[];
19095
+ };
19096
+ };
19097
+ }[];
19098
+ };
17334
19099
  };
17335
19100
  /** An array of domains to redirect to this port. Each domain must first be verified and registered to your account. */
17336
19101
  'domains'?: string[];
@@ -17442,6 +19207,13 @@ type PatchServiceDeploymentResult = {
17442
19207
  'type': 'basic-auth';
17443
19208
  }[];
17444
19209
  /** An array of IP address policies. */
19210
+ 'ip'?: {
19211
+ /** An array of IP addresses used for this rule */
19212
+ 'addresses': string[];
19213
+ /** The action for this rule. Example: "DENY" */
19214
+ 'action': 'ALLOW' | 'DENY';
19215
+ }[];
19216
+ /** An array of IP address policies. */
17445
19217
  'policies'?: {
17446
19218
  /** An array of IP addresses used for this rule */
17447
19219
  'addresses': string[];
@@ -17456,11 +19228,109 @@ type PatchServiceDeploymentResult = {
17456
19228
  'directoryGroupIds'?: string[];
17457
19229
  /** Enforce internal traffic through SSO authentication flow */
17458
19230
  'validateInternalTraffic'?: boolean;
19231
+ /** Set SSO authentication cookie on root domain */
19232
+ 'setCookieOnRootDomain'?: boolean;
17459
19233
  /** Allow internal traffic from same or shared projects via public DNS to skip SSO authentication flow */
17460
19234
  'allowInternalTrafficViaPublicDns'?: boolean;
17461
19235
  };
19236
+ /** List of header authentication settings, it checks the presence of all headers and compares it against the expected value. Wildcard (*) is supported. */
19237
+ 'headers'?: any[];
17462
19238
  /** Mode used to verify multiple security features like ip policies and SSO authentication */
17463
19239
  'verificationMode'?: 'or' | 'and';
19240
+ 'securePathConfiguration'?: {
19241
+ /** Enable security policies on a path-level style */
19242
+ 'enabled'?: boolean;
19243
+ /** Allow internal traffic from same or shared projects via public DNS to skip all security policies */
19244
+ 'skipSecurityPoliciesForInternalTrafficViaPublicDns'?: boolean;
19245
+ 'rules'?: {
19246
+ /** Array of path objects which represent the paths and their priority for which the security policies will be enforced */
19247
+ 'paths': any[];
19248
+ /** Specify the way the path rule will behave when processing policies. This enables an allow-list/deny-list approach for access control on each path */
19249
+ 'accessMode': 'protected' | 'unprotected';
19250
+ 'securityPolicies'?: {
19251
+ 'orPolicies'?: {
19252
+ /** An array of credentials to access the service. */
19253
+ 'credentials'?: {
19254
+ /** The username to access the service Example: "admin" */
19255
+ 'username': string;
19256
+ /** The password to access the service with this username. Example: "password123" */
19257
+ 'password': string;
19258
+ /** The type of authentication used Example: "basic-auth" */
19259
+ 'type': 'basic-auth';
19260
+ }[];
19261
+ /** An array of IP address policies. */
19262
+ 'ip'?: {
19263
+ /** An array of IP addresses used for this rule */
19264
+ 'addresses': string[];
19265
+ /** The action for this rule. Example: "DENY" */
19266
+ 'action': 'ALLOW' | 'DENY';
19267
+ }[];
19268
+ /** An array of IP address policies. */
19269
+ 'policies'?: {
19270
+ /** An array of IP addresses used for this rule */
19271
+ 'addresses': string[];
19272
+ /** The action for this rule. Example: "DENY" */
19273
+ 'action': 'ALLOW' | 'DENY';
19274
+ }[];
19275
+ /** Configure port authentication via SSO */
19276
+ 'sso'?: {
19277
+ /** ID of the SSO organization that the user will have to be a member of */
19278
+ 'organizationId'?: string;
19279
+ /** Array of directory groups that will have access */
19280
+ 'directoryGroupIds'?: string[];
19281
+ /** Enforce internal traffic through SSO authentication flow */
19282
+ 'validateInternalTraffic'?: boolean;
19283
+ /** Set SSO authentication cookie on root domain */
19284
+ 'setCookieOnRootDomain'?: boolean;
19285
+ /** Allow internal traffic from same or shared projects via public DNS to skip SSO authentication flow */
19286
+ 'allowInternalTrafficViaPublicDns'?: boolean;
19287
+ };
19288
+ /** List of header authentication settings, it checks the presence of all headers and compares it against the expected value. Wildcard (*) is supported. */
19289
+ 'headers'?: any[];
19290
+ };
19291
+ 'requiredPolicies'?: {
19292
+ /** An array of credentials to access the service. */
19293
+ 'credentials'?: {
19294
+ /** The username to access the service Example: "admin" */
19295
+ 'username': string;
19296
+ /** The password to access the service with this username. Example: "password123" */
19297
+ 'password': string;
19298
+ /** The type of authentication used Example: "basic-auth" */
19299
+ 'type': 'basic-auth';
19300
+ }[];
19301
+ /** An array of IP address policies. */
19302
+ 'ip'?: {
19303
+ /** An array of IP addresses used for this rule */
19304
+ 'addresses': string[];
19305
+ /** The action for this rule. Example: "DENY" */
19306
+ 'action': 'ALLOW' | 'DENY';
19307
+ }[];
19308
+ /** An array of IP address policies. */
19309
+ 'policies'?: {
19310
+ /** An array of IP addresses used for this rule */
19311
+ 'addresses': string[];
19312
+ /** The action for this rule. Example: "DENY" */
19313
+ 'action': 'ALLOW' | 'DENY';
19314
+ }[];
19315
+ /** Configure port authentication via SSO */
19316
+ 'sso'?: {
19317
+ /** ID of the SSO organization that the user will have to be a member of */
19318
+ 'organizationId'?: string;
19319
+ /** Array of directory groups that will have access */
19320
+ 'directoryGroupIds'?: string[];
19321
+ /** Enforce internal traffic through SSO authentication flow */
19322
+ 'validateInternalTraffic'?: boolean;
19323
+ /** Set SSO authentication cookie on root domain */
19324
+ 'setCookieOnRootDomain'?: boolean;
19325
+ /** Allow internal traffic from same or shared projects via public DNS to skip SSO authentication flow */
19326
+ 'allowInternalTrafficViaPublicDns'?: boolean;
19327
+ };
19328
+ /** List of header authentication settings, it checks the presence of all headers and compares it against the expected value. Wildcard (*) is supported. */
19329
+ 'headers'?: any[];
19330
+ };
19331
+ };
19332
+ }[];
19333
+ };
17464
19334
  };
17465
19335
  /** An array of domains to redirect to this port. Each domain must first be verified and registered to your account. */
17466
19336
  'domains'?: string[];
@@ -17582,7 +19452,14 @@ type PatchServiceDeploymentResult = {
17582
19452
  };
17583
19453
  /** The maximum amount of time the process has to shut down after receiving a SIGTERM signal before it is forcefully shut down SIGKILL by the system. */
17584
19454
  'gracePeriodSeconds'?: number;
17585
- 'internal'?: {
19455
+ /** Allow setting custom labels and annotations for workloads. */
19456
+ 'metadata'?: {
19457
+ /** Specify custom labels for the workload. */
19458
+ 'labels'?: any;
19459
+ /** Specify custom annotations for the workload as string or object. */
19460
+ 'annotations'?: any;
19461
+ };
19462
+ 'internal'?: {
17586
19463
  /** ID of the build service to deploy Example: "example-build-service" */
17587
19464
  'id'?: string;
17588
19465
  /** Branch to deploy Example: "master" */
@@ -17613,6 +19490,8 @@ type PatchServiceDeploymentResult = {
17613
19490
  'name': string;
17614
19491
  /** Namespace this resource is located within on the cluster. Example: "ns-8zy2mcjh9zn2" */
17615
19492
  'namespace'?: string;
19493
+ /** Load balancer DNS for the cluster. */
19494
+ 'loadBalancers'?: string[];
17616
19495
  };
17617
19496
  /** time of creation */
17618
19497
  'createdAt'?: string;
@@ -17709,6 +19588,13 @@ type PatchServiceDeploymentData = {
17709
19588
  };
17710
19589
  /** The maximum amount of time the process has to shut down after receiving a SIGTERM signal before it is forcefully shut down SIGKILL by the system. */
17711
19590
  'gracePeriodSeconds'?: number;
19591
+ /** Allow setting custom labels and annotations for workloads. */
19592
+ 'metadata'?: {
19593
+ /** Specify custom labels for the workload. */
19594
+ 'labels'?: any;
19595
+ /** Specify custom annotations for the workload as string or object. */
19596
+ 'annotations'?: any;
19597
+ };
17712
19598
  'internal': {
17713
19599
  /** ID of the build service to deploy Example: "example-build-service" */
17714
19600
  'id'?: string;
@@ -17770,6 +19656,13 @@ type PatchServiceDeploymentData = {
17770
19656
  };
17771
19657
  /** The maximum amount of time the process has to shut down after receiving a SIGTERM signal before it is forcefully shut down SIGKILL by the system. */
17772
19658
  'gracePeriodSeconds'?: number;
19659
+ /** Allow setting custom labels and annotations for workloads. */
19660
+ 'metadata'?: {
19661
+ /** Specify custom labels for the workload. */
19662
+ 'labels'?: any;
19663
+ /** Specify custom annotations for the workload as string or object. */
19664
+ 'annotations'?: any;
19665
+ };
17773
19666
  'external': {
17774
19667
  /** Image to be deployed. When not deploying from Dockerhub the URL must be specified. Example: "nginx:latest" */
17775
19668
  'imagePath': string;
@@ -17827,6 +19720,13 @@ type PatchServiceDeploymentData = {
17827
19720
  };
17828
19721
  /** The maximum amount of time the process has to shut down after receiving a SIGTERM signal before it is forcefully shut down SIGKILL by the system. */
17829
19722
  'gracePeriodSeconds'?: number;
19723
+ /** Allow setting custom labels and annotations for workloads. */
19724
+ 'metadata'?: {
19725
+ /** Specify custom labels for the workload. */
19726
+ 'labels'?: any;
19727
+ /** Specify custom annotations for the workload as string or object. */
19728
+ 'annotations'?: any;
19729
+ };
17830
19730
  };
17831
19731
  'ports'?: {
17832
19732
  /** The name used to identify the port. Example: "p01" */
@@ -17846,6 +19746,13 @@ type PatchServiceDeploymentData = {
17846
19746
  'type': 'basic-auth';
17847
19747
  }[];
17848
19748
  /** An array of IP address policies. */
19749
+ 'ip'?: {
19750
+ /** An array of IP addresses used for this rule */
19751
+ 'addresses': string[];
19752
+ /** The action for this rule. Example: "DENY" */
19753
+ 'action': 'ALLOW' | 'DENY';
19754
+ }[];
19755
+ /** An array of IP address policies. */
17849
19756
  'policies'?: {
17850
19757
  /** An array of IP addresses used for this rule */
17851
19758
  'addresses': string[];
@@ -17860,11 +19767,109 @@ type PatchServiceDeploymentData = {
17860
19767
  'directoryGroupIds'?: string[];
17861
19768
  /** Enforce internal traffic through SSO authentication flow */
17862
19769
  'validateInternalTraffic'?: boolean;
19770
+ /** Set SSO authentication cookie on root domain */
19771
+ 'setCookieOnRootDomain'?: boolean;
17863
19772
  /** Allow internal traffic from same or shared projects via public DNS to skip SSO authentication flow */
17864
19773
  'allowInternalTrafficViaPublicDns'?: boolean;
17865
19774
  };
19775
+ /** List of header authentication settings, it checks the presence of all headers and compares it against the expected value. Wildcard (*) is supported. */
19776
+ 'headers'?: any[];
17866
19777
  /** Mode used to verify multiple security features like ip policies and SSO authentication */
17867
19778
  'verificationMode'?: 'or' | 'and';
19779
+ 'securePathConfiguration'?: {
19780
+ /** Enable security policies on a path-level style */
19781
+ 'enabled'?: boolean;
19782
+ /** Allow internal traffic from same or shared projects via public DNS to skip all security policies */
19783
+ 'skipSecurityPoliciesForInternalTrafficViaPublicDns'?: boolean;
19784
+ 'rules'?: {
19785
+ /** Array of path objects which represent the paths and their priority for which the security policies will be enforced */
19786
+ 'paths': any[];
19787
+ /** Specify the way the path rule will behave when processing policies. This enables an allow-list/deny-list approach for access control on each path */
19788
+ 'accessMode': 'protected' | 'unprotected';
19789
+ 'securityPolicies'?: {
19790
+ 'orPolicies'?: {
19791
+ /** An array of credentials to access the service. */
19792
+ 'credentials'?: {
19793
+ /** The username to access the service Example: "admin" */
19794
+ 'username': string;
19795
+ /** The password to access the service with this username. Example: "password123" */
19796
+ 'password': string;
19797
+ /** The type of authentication used Example: "basic-auth" */
19798
+ 'type': 'basic-auth';
19799
+ }[];
19800
+ /** An array of IP address policies. */
19801
+ 'ip'?: {
19802
+ /** An array of IP addresses used for this rule */
19803
+ 'addresses': string[];
19804
+ /** The action for this rule. Example: "DENY" */
19805
+ 'action': 'ALLOW' | 'DENY';
19806
+ }[];
19807
+ /** An array of IP address policies. */
19808
+ 'policies'?: {
19809
+ /** An array of IP addresses used for this rule */
19810
+ 'addresses': string[];
19811
+ /** The action for this rule. Example: "DENY" */
19812
+ 'action': 'ALLOW' | 'DENY';
19813
+ }[];
19814
+ /** Configure port authentication via SSO */
19815
+ 'sso'?: {
19816
+ /** ID of the SSO organization that the user will have to be a member of */
19817
+ 'organizationId'?: string;
19818
+ /** Array of directory groups that will have access */
19819
+ 'directoryGroupIds'?: string[];
19820
+ /** Enforce internal traffic through SSO authentication flow */
19821
+ 'validateInternalTraffic'?: boolean;
19822
+ /** Set SSO authentication cookie on root domain */
19823
+ 'setCookieOnRootDomain'?: boolean;
19824
+ /** Allow internal traffic from same or shared projects via public DNS to skip SSO authentication flow */
19825
+ 'allowInternalTrafficViaPublicDns'?: boolean;
19826
+ };
19827
+ /** List of header authentication settings, it checks the presence of all headers and compares it against the expected value. Wildcard (*) is supported. */
19828
+ 'headers'?: any[];
19829
+ };
19830
+ 'requiredPolicies'?: {
19831
+ /** An array of credentials to access the service. */
19832
+ 'credentials'?: {
19833
+ /** The username to access the service Example: "admin" */
19834
+ 'username': string;
19835
+ /** The password to access the service with this username. Example: "password123" */
19836
+ 'password': string;
19837
+ /** The type of authentication used Example: "basic-auth" */
19838
+ 'type': 'basic-auth';
19839
+ }[];
19840
+ /** An array of IP address policies. */
19841
+ 'ip'?: {
19842
+ /** An array of IP addresses used for this rule */
19843
+ 'addresses': string[];
19844
+ /** The action for this rule. Example: "DENY" */
19845
+ 'action': 'ALLOW' | 'DENY';
19846
+ }[];
19847
+ /** An array of IP address policies. */
19848
+ 'policies'?: {
19849
+ /** An array of IP addresses used for this rule */
19850
+ 'addresses': string[];
19851
+ /** The action for this rule. Example: "DENY" */
19852
+ 'action': 'ALLOW' | 'DENY';
19853
+ }[];
19854
+ /** Configure port authentication via SSO */
19855
+ 'sso'?: {
19856
+ /** ID of the SSO organization that the user will have to be a member of */
19857
+ 'organizationId'?: string;
19858
+ /** Array of directory groups that will have access */
19859
+ 'directoryGroupIds'?: string[];
19860
+ /** Enforce internal traffic through SSO authentication flow */
19861
+ 'validateInternalTraffic'?: boolean;
19862
+ /** Set SSO authentication cookie on root domain */
19863
+ 'setCookieOnRootDomain'?: boolean;
19864
+ /** Allow internal traffic from same or shared projects via public DNS to skip SSO authentication flow */
19865
+ 'allowInternalTrafficViaPublicDns'?: boolean;
19866
+ };
19867
+ /** List of header authentication settings, it checks the presence of all headers and compares it against the expected value. Wildcard (*) is supported. */
19868
+ 'headers'?: any[];
19869
+ };
19870
+ };
19871
+ }[];
19872
+ };
17868
19873
  };
17869
19874
  /** An array of domains to redirect to this port. Each domain must first be verified and registered to your account. */
17870
19875
  'domains'?: string[];
@@ -18184,11 +20189,19 @@ type GetServiceResult = {
18184
20189
  'directoryGroupIds'?: string[];
18185
20190
  /** Enforce internal traffic through SSO authentication flow */
18186
20191
  'validateInternalTraffic'?: boolean;
20192
+ /** Set SSO authentication cookie on root domain */
20193
+ 'setCookieOnRootDomain'?: boolean;
18187
20194
  /** Allow internal traffic from same or shared projects via public DNS to skip SSO authentication flow */
18188
20195
  'allowInternalTrafficViaPublicDns'?: boolean;
18189
20196
  };
18190
20197
  /** Mode used to verify multiple security features like ip policies and SSO authentication */
18191
20198
  'verificationMode'?: 'or' | 'and';
20199
+ /** List of header authentication settings, it checks the presence of all headers and compares it against the expected value. Wildcard (*) is supported. */
20200
+ 'headers'?: {
20201
+ 'regexMode'?: boolean;
20202
+ 'name'?: string;
20203
+ 'value': string;
20204
+ }[];
18192
20205
  };
18193
20206
  /** Disable routing on the default code.run domain for public HTTP ports with custom domains. */
18194
20207
  'disableNfDomain'?: boolean;
@@ -18201,6 +20214,8 @@ type GetServiceResult = {
18201
20214
  'name': string;
18202
20215
  /** Namespace this resource is located within on the cluster. Example: "ns-8zy2mcjh9zn2" */
18203
20216
  'namespace'?: string;
20217
+ /** Load balancer DNS for the cluster. */
20218
+ 'loadBalancers'?: string[];
18204
20219
  };
18205
20220
  };
18206
20221
  type GetServiceCall = (opts: GetServiceRequest) => Promise<ApiCallResponse<GetServiceResult>>;
@@ -18388,6 +20403,15 @@ type StartServiceBuildData = {
18388
20403
  'overrides'?: {
18389
20404
  /** Build arguments that will be set on this build only. In case of conflicts these values take precedence. Example: {"ARGUMENT_1":"abcdef","ARGUMENT_2":"12345"} */
18390
20405
  'buildArguments'?: any;
20406
+ /** Overrides for docker build settings. */
20407
+ 'docker'?: {
20408
+ /** The file path of the Dockerfile. Example: "/Dockerfile" */
20409
+ 'dockerFilePath'?: string;
20410
+ /** The working directory of the Dockerfile. Example: "/" */
20411
+ 'dockerWorkDir'?: string;
20412
+ /** If your Dockerfile contains multiple build stages, you can specify the target stage by entering its name here. */
20413
+ 'dockerfileTarget'?: string;
20414
+ };
18391
20415
  };
18392
20416
  };
18393
20417
  /** Start a new build for the given combined or build service. If given a commit sha, it will build that commit. Otherwise, the most recent relevant commit will be built. If the service provided is a build service, a branch name or pull request to build from is required. */
@@ -19127,11 +21151,19 @@ type GetServicePortsResult = {
19127
21151
  'directoryGroupIds'?: string[];
19128
21152
  /** Enforce internal traffic through SSO authentication flow */
19129
21153
  'validateInternalTraffic'?: boolean;
21154
+ /** Set SSO authentication cookie on root domain */
21155
+ 'setCookieOnRootDomain'?: boolean;
19130
21156
  /** Allow internal traffic from same or shared projects via public DNS to skip SSO authentication flow */
19131
21157
  'allowInternalTrafficViaPublicDns'?: boolean;
19132
21158
  };
19133
21159
  /** Mode used to verify multiple security features like ip policies and SSO authentication */
19134
21160
  'verificationMode'?: 'or' | 'and';
21161
+ /** List of header authentication settings, it checks the presence of all headers and compares it against the expected value. Wildcard (*) is supported. */
21162
+ 'headers'?: {
21163
+ 'regexMode'?: boolean;
21164
+ 'name'?: string;
21165
+ 'value': string;
21166
+ }[];
19135
21167
  };
19136
21168
  /** Disable routing on the default code.run domain for public HTTP ports with custom domains. */
19137
21169
  'disableNfDomain'?: boolean;
@@ -19192,6 +21224,13 @@ type UpdateServicePortsData = {
19192
21224
  'type': 'basic-auth';
19193
21225
  }[];
19194
21226
  /** An array of IP address policies. */
21227
+ 'ip'?: {
21228
+ /** An array of IP addresses used for this rule */
21229
+ 'addresses': string[];
21230
+ /** The action for this rule. Example: "DENY" */
21231
+ 'action': 'ALLOW' | 'DENY';
21232
+ }[];
21233
+ /** An array of IP address policies. */
19195
21234
  'policies'?: {
19196
21235
  /** An array of IP addresses used for this rule */
19197
21236
  'addresses': string[];
@@ -19206,11 +21245,109 @@ type UpdateServicePortsData = {
19206
21245
  'directoryGroupIds'?: string[];
19207
21246
  /** Enforce internal traffic through SSO authentication flow */
19208
21247
  'validateInternalTraffic'?: boolean;
21248
+ /** Set SSO authentication cookie on root domain */
21249
+ 'setCookieOnRootDomain'?: boolean;
19209
21250
  /** Allow internal traffic from same or shared projects via public DNS to skip SSO authentication flow */
19210
21251
  'allowInternalTrafficViaPublicDns'?: boolean;
19211
21252
  };
21253
+ /** List of header authentication settings, it checks the presence of all headers and compares it against the expected value. Wildcard (*) is supported. */
21254
+ 'headers'?: any[];
19212
21255
  /** Mode used to verify multiple security features like ip policies and SSO authentication */
19213
21256
  'verificationMode'?: 'or' | 'and';
21257
+ 'securePathConfiguration'?: {
21258
+ /** Enable security policies on a path-level style */
21259
+ 'enabled'?: boolean;
21260
+ /** Allow internal traffic from same or shared projects via public DNS to skip all security policies */
21261
+ 'skipSecurityPoliciesForInternalTrafficViaPublicDns'?: boolean;
21262
+ 'rules'?: {
21263
+ /** Array of path objects which represent the paths and their priority for which the security policies will be enforced */
21264
+ 'paths': any[];
21265
+ /** Specify the way the path rule will behave when processing policies. This enables an allow-list/deny-list approach for access control on each path */
21266
+ 'accessMode': 'protected' | 'unprotected';
21267
+ 'securityPolicies'?: {
21268
+ 'orPolicies'?: {
21269
+ /** An array of credentials to access the service. */
21270
+ 'credentials'?: {
21271
+ /** The username to access the service Example: "admin" */
21272
+ 'username': string;
21273
+ /** The password to access the service with this username. Example: "password123" */
21274
+ 'password': string;
21275
+ /** The type of authentication used Example: "basic-auth" */
21276
+ 'type': 'basic-auth';
21277
+ }[];
21278
+ /** An array of IP address policies. */
21279
+ 'ip'?: {
21280
+ /** An array of IP addresses used for this rule */
21281
+ 'addresses': string[];
21282
+ /** The action for this rule. Example: "DENY" */
21283
+ 'action': 'ALLOW' | 'DENY';
21284
+ }[];
21285
+ /** An array of IP address policies. */
21286
+ 'policies'?: {
21287
+ /** An array of IP addresses used for this rule */
21288
+ 'addresses': string[];
21289
+ /** The action for this rule. Example: "DENY" */
21290
+ 'action': 'ALLOW' | 'DENY';
21291
+ }[];
21292
+ /** Configure port authentication via SSO */
21293
+ 'sso'?: {
21294
+ /** ID of the SSO organization that the user will have to be a member of */
21295
+ 'organizationId'?: string;
21296
+ /** Array of directory groups that will have access */
21297
+ 'directoryGroupIds'?: string[];
21298
+ /** Enforce internal traffic through SSO authentication flow */
21299
+ 'validateInternalTraffic'?: boolean;
21300
+ /** Set SSO authentication cookie on root domain */
21301
+ 'setCookieOnRootDomain'?: boolean;
21302
+ /** Allow internal traffic from same or shared projects via public DNS to skip SSO authentication flow */
21303
+ 'allowInternalTrafficViaPublicDns'?: boolean;
21304
+ };
21305
+ /** List of header authentication settings, it checks the presence of all headers and compares it against the expected value. Wildcard (*) is supported. */
21306
+ 'headers'?: any[];
21307
+ };
21308
+ 'requiredPolicies'?: {
21309
+ /** An array of credentials to access the service. */
21310
+ 'credentials'?: {
21311
+ /** The username to access the service Example: "admin" */
21312
+ 'username': string;
21313
+ /** The password to access the service with this username. Example: "password123" */
21314
+ 'password': string;
21315
+ /** The type of authentication used Example: "basic-auth" */
21316
+ 'type': 'basic-auth';
21317
+ }[];
21318
+ /** An array of IP address policies. */
21319
+ 'ip'?: {
21320
+ /** An array of IP addresses used for this rule */
21321
+ 'addresses': string[];
21322
+ /** The action for this rule. Example: "DENY" */
21323
+ 'action': 'ALLOW' | 'DENY';
21324
+ }[];
21325
+ /** An array of IP address policies. */
21326
+ 'policies'?: {
21327
+ /** An array of IP addresses used for this rule */
21328
+ 'addresses': string[];
21329
+ /** The action for this rule. Example: "DENY" */
21330
+ 'action': 'ALLOW' | 'DENY';
21331
+ }[];
21332
+ /** Configure port authentication via SSO */
21333
+ 'sso'?: {
21334
+ /** ID of the SSO organization that the user will have to be a member of */
21335
+ 'organizationId'?: string;
21336
+ /** Array of directory groups that will have access */
21337
+ 'directoryGroupIds'?: string[];
21338
+ /** Enforce internal traffic through SSO authentication flow */
21339
+ 'validateInternalTraffic'?: boolean;
21340
+ /** Set SSO authentication cookie on root domain */
21341
+ 'setCookieOnRootDomain'?: boolean;
21342
+ /** Allow internal traffic from same or shared projects via public DNS to skip SSO authentication flow */
21343
+ 'allowInternalTrafficViaPublicDns'?: boolean;
21344
+ };
21345
+ /** List of header authentication settings, it checks the presence of all headers and compares it against the expected value. Wildcard (*) is supported. */
21346
+ 'headers'?: any[];
21347
+ };
21348
+ };
21349
+ }[];
21350
+ };
19214
21351
  };
19215
21352
  /** Disable routing on the default code.run domain for public HTTP ports with custom domains. */
19216
21353
  'disableNfDomain'?: boolean;
@@ -20065,8 +22202,15 @@ type ListTemplatesResult = {
20065
22202
  'name': string;
20066
22203
  /** Description of the template. Example: "This is a sample template." */
20067
22204
  'description'?: string;
20068
- /** The version of the Northflank API to run the template against. Example: "v1.1" */
20069
- 'apiVersion': 'v1.1';
22205
+ /** The version of the Northflank API to run the template against. Example: "v1.2" */
22206
+ 'apiVersion': 'v1.2';
22207
+ /** Options regarding how the template is run. */
22208
+ 'options'?: {
22209
+ /** If true, the template will run automatically whenever a change is made to it. */
22210
+ 'autorun'?: boolean;
22211
+ /** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
22212
+ 'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
22213
+ };
20070
22214
  /** Identifier for the template Example: "example-template" */
20071
22215
  'id': string;
20072
22216
  /** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
@@ -20105,8 +22249,8 @@ type CreateTemplateResult = {
20105
22249
  'name': string;
20106
22250
  /** Description of the template. Example: "This is a sample template." */
20107
22251
  'description'?: string;
20108
- /** The version of the Northflank API to run the template against. Example: "v1.1" */
20109
- 'apiVersion': 'v1.1';
22252
+ /** The version of the Northflank API to run the template against. Example: "v1.2" */
22253
+ 'apiVersion': 'v1.2';
20110
22254
  /** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
20111
22255
  'arguments'?: any;
20112
22256
  '$schema'?: string;
@@ -20120,11 +22264,13 @@ type CreateTemplateResult = {
20120
22264
  'selfHostedVcsId'?: string;
20121
22265
  /** By default, if you have multiple version control accounts of the same provider linked, Northflank will pick a linked account that has access to the repository. If `accountLogin` is provided, Northflank will instead use your linked account with that login name. Example: "github-user" */
20122
22266
  'accountLogin'?: string;
22267
+ /** Legacy key. Please used accountLogin instead. */
22268
+ 'vcsLinkId'?: string;
20123
22269
  /** URL of the Git repo to sync the template with. Example: "https://github.com/northflank-examples/remix-postgres-redis-demo" */
20124
22270
  'repoUrl': string;
20125
22271
  /** The name of the branch to use. Example: "main" */
20126
22272
  'branch': string;
20127
- /** The file path to the template in the repository. If using an existing template, it should be in JSON format. Example: "northflank.json" */
22273
+ /** The file path to the template in the repository. If using an existing template, it should be in JSON format. */
20128
22274
  'filePath': string;
20129
22275
  /** The SHA of the current commit that is being used for the template. Example: "8c7e040ee3737ddc3a713363ae72bbe960e9fb16" */
20130
22276
  'templateSha': string;
@@ -20145,10 +22291,33 @@ type CreateTemplateResult = {
20145
22291
  'name': string;
20146
22292
  /** Description of the template. Example: "This is a sample template." */
20147
22293
  'description'?: string;
20148
- /** The version of the Northflank API to run the template against. Example: "v1.1" */
20149
- 'apiVersion': 'v1.1';
22294
+ /** The version of the Northflank API to run the template against. Example: "v1.2" */
22295
+ 'apiVersion': 'v1.2';
22296
+ /** Options regarding how the template is run. */
22297
+ 'options'?: {
22298
+ /** If true, the template will run automatically whenever a change is made to it. */
22299
+ 'autorun'?: boolean;
22300
+ /** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
22301
+ 'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
22302
+ };
20150
22303
  /** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
20151
22304
  'arguments'?: any;
22305
+ 'gitops'?: {
22306
+ /** The VCS provider to use. Example: "github" */
22307
+ 'vcsService': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted' | 'azure';
22308
+ /** If projectType is self-hosted, the ID of the self-hosted vcs to use. */
22309
+ 'selfHostedVcsId'?: string;
22310
+ /** By default, if you have multiple version control accounts of the same provider linked, Northflank will pick a linked account that has access to the repository. If `accountLogin` is provided, Northflank will instead use your linked account with that login name. Example: "github-user" */
22311
+ 'accountLogin'?: string;
22312
+ /** Legacy key. Please used accountLogin instead. */
22313
+ 'vcsLinkId'?: string;
22314
+ /** URL of the Git repo to sync the template with. Example: "https://github.com/northflank-examples/remix-postgres-redis-demo" */
22315
+ 'repoUrl': string;
22316
+ /** The name of the branch to use. Example: "main" */
22317
+ 'branch': string;
22318
+ /** The file path to the template in the repository. If using an existing template, it should be in JSON format. */
22319
+ 'filePath': string;
22320
+ };
20152
22321
  '$schema'?: string;
20153
22322
  'spec': any;
20154
22323
  'refs'?: any;
@@ -20157,7 +22326,7 @@ type CreateTemplateResult = {
20157
22326
  /** Identifier for the template Example: "example-template" */
20158
22327
  'templateId': string;
20159
22328
  /** Status of the template run Example: "success" */
20160
- 'status': 'pending' | 'running' | 'success' | 'failure' | 'aborted' | 'aborting';
22329
+ 'status': 'pending' | 'running' | 'success' | 'failure' | 'aborted' | 'aborting' | 'queued' | 'unknown' | 'skipped';
20161
22330
  /** Whether the run has concluded (aborted, success, failed) Example: true */
20162
22331
  'concluded': boolean;
20163
22332
  /** Timestamp the run was created at. Example: "2021-01-01 12:00:00.000Z" */
@@ -20175,64 +22344,41 @@ type CreateTemplateData = {
20175
22344
  'name': string;
20176
22345
  /** Description of the template. Example: "This is a sample template." */
20177
22346
  'description'?: string;
20178
- /** The version of the Northflank API to run the template against. Example: "v1.1" */
20179
- 'apiVersion': 'v1.1';
20180
- /** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
20181
- 'arguments'?: any;
20182
- '$schema'?: string;
20183
- 'spec': any;
20184
- /** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
20185
- 'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
20186
- /** Argument overrides stored outside of the template. If GitOps is enabled, these will not be saved in version control. */
20187
- 'argumentOverrides'?: any;
20188
- /** Additional options for the template creation. */
20189
- 'options'?: {
20190
- /** If true, the template will be ran immediately after creation. Example: true */
20191
- 'runOnCreation'?: boolean;
20192
- /** Argument overrides for the initial run. Valid only if `runOnCreation` is `true`. */
20193
- 'runOnCreationArgumentOverrides'?: any;
20194
- /** If true, the template will run automatically whenever it is updated. */
20195
- 'autorun'?: boolean;
20196
- };
20197
- } | {
20198
- /** Name of the template. Example: "Example Template" */
20199
- 'name': string;
20200
- /** Description of the template. Example: "This is a sample template." */
20201
- 'description'?: string;
20202
- /** The version of the Northflank API to run the template against. Example: "v1.1" */
20203
- 'apiVersion': 'v1.1';
22347
+ /** The version of the Northflank API to run the template against. Example: "v1.2" */
22348
+ 'apiVersion': 'v1.2';
20204
22349
  /** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
20205
22350
  'arguments'?: any;
20206
- '$schema'?: string;
20207
- 'spec': any;
20208
- /** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
20209
- 'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
20210
- /** Argument overrides stored outside of the template. If GitOps is enabled, these will not be saved in version control. */
20211
- 'argumentOverrides'?: any;
20212
- /** Additional options for the template creation. */
20213
- 'options'?: {
20214
- /** If true, the template will be ran immediately after creation. Example: true */
20215
- 'runOnCreation'?: boolean;
20216
- /** Argument overrides for the initial run. Valid only if `runOnCreation` is `true`. */
20217
- 'runOnCreationArgumentOverrides'?: any;
20218
- /** If true, the template will run automatically whenever it is updated. */
20219
- 'autorun'?: boolean;
20220
- };
20221
- /** GitOps data for syncing this template with a file in version control. */
20222
- 'gitops': {
22351
+ 'gitops'?: {
20223
22352
  /** The VCS provider to use. Example: "github" */
20224
22353
  'vcsService': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted' | 'azure';
20225
22354
  /** If projectType is self-hosted, the ID of the self-hosted vcs to use. */
20226
22355
  'selfHostedVcsId'?: string;
20227
22356
  /** By default, if you have multiple version control accounts of the same provider linked, Northflank will pick a linked account that has access to the repository. If `accountLogin` is provided, Northflank will instead use your linked account with that login name. Example: "github-user" */
20228
22357
  'accountLogin'?: string;
22358
+ /** Legacy key. Please used accountLogin instead. */
22359
+ 'vcsLinkId'?: string;
20229
22360
  /** URL of the Git repo to sync the template with. Example: "https://github.com/northflank-examples/remix-postgres-redis-demo" */
20230
22361
  'repoUrl': string;
20231
22362
  /** The name of the branch to use. Example: "main" */
20232
22363
  'branch': string;
20233
- /** The file path to the template in the repository. If using an existing template, it should be in JSON format. Example: "northflank.json" */
22364
+ /** The file path to the template in the repository. If using an existing template, it should be in JSON format. */
20234
22365
  'filePath': string;
20235
22366
  };
22367
+ '$schema'?: string;
22368
+ 'spec': any;
22369
+ /** Argument overrides stored outside of the template. If GitOps is enabled, these will not be saved in version control. */
22370
+ 'argumentOverrides'?: any;
22371
+ /** Options regarding how the template is run. */
22372
+ 'options'?: {
22373
+ /** If true, the template will run automatically whenever a change is made to it. */
22374
+ 'autorun'?: boolean;
22375
+ /** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
22376
+ 'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
22377
+ /** If true, the template will be ran immediately after creation. Example: true */
22378
+ 'runOnCreation'?: boolean;
22379
+ /** Argument overrides for the initial run. Valid only if `runOnCreation` is `true`. */
22380
+ 'runOnCreationArgumentOverrides'?: any;
22381
+ };
20236
22382
  } | {
20237
22383
  /** Name of the template. Example: "Example Template" */
20238
22384
  'name': string;
@@ -20241,18 +22387,18 @@ type CreateTemplateData = {
20241
22387
  /** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
20242
22388
  'arguments'?: any;
20243
22389
  '$schema'?: string;
20244
- /** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
20245
- 'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
20246
22390
  /** Argument overrides stored outside of the template. If GitOps is enabled, these will not be saved in version control. */
20247
22391
  'argumentOverrides'?: any;
20248
- /** Additional options for the template creation. */
22392
+ /** Options regarding how the template is run. */
20249
22393
  'options'?: {
22394
+ /** If true, the template will run automatically whenever a change is made to it. */
22395
+ 'autorun'?: boolean;
22396
+ /** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
22397
+ 'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
20250
22398
  /** If true, the template will be ran immediately after creation. Example: true */
20251
22399
  'runOnCreation'?: boolean;
20252
22400
  /** Argument overrides for the initial run. Valid only if `runOnCreation` is `true`. */
20253
22401
  'runOnCreationArgumentOverrides'?: any;
20254
- /** If true, the template will run automatically whenever it is updated. */
20255
- 'autorun'?: boolean;
20256
22402
  };
20257
22403
  /** GitOps data for syncing this template with a file in version control. */
20258
22404
  'gitops': {
@@ -20262,11 +22408,13 @@ type CreateTemplateData = {
20262
22408
  'selfHostedVcsId'?: string;
20263
22409
  /** By default, if you have multiple version control accounts of the same provider linked, Northflank will pick a linked account that has access to the repository. If `accountLogin` is provided, Northflank will instead use your linked account with that login name. Example: "github-user" */
20264
22410
  'accountLogin'?: string;
22411
+ /** Legacy key. Please used accountLogin instead. */
22412
+ 'vcsLinkId'?: string;
20265
22413
  /** URL of the Git repo to sync the template with. Example: "https://github.com/northflank-examples/remix-postgres-redis-demo" */
20266
22414
  'repoUrl': string;
20267
22415
  /** The name of the branch to use. Example: "main" */
20268
22416
  'branch': string;
20269
- /** The file path to the template in the repository. If using an existing template, it should be in JSON format. Example: "northflank.json" */
22417
+ /** The file path to the template in the repository. If using an existing template, it should be in JSON format. */
20270
22418
  'filePath': string;
20271
22419
  };
20272
22420
  'project'?: any;
@@ -20285,8 +22433,8 @@ type GetTemplateResult = {
20285
22433
  'name': string;
20286
22434
  /** Description of the template. Example: "This is a sample template." */
20287
22435
  'description'?: string;
20288
- /** The version of the Northflank API to run the template against. Example: "v1.1" */
20289
- 'apiVersion': 'v1.1';
22436
+ /** The version of the Northflank API to run the template against. Example: "v1.2" */
22437
+ 'apiVersion': 'v1.2';
20290
22438
  /** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
20291
22439
  'arguments'?: any;
20292
22440
  '$schema'?: string;
@@ -20300,11 +22448,13 @@ type GetTemplateResult = {
20300
22448
  'selfHostedVcsId'?: string;
20301
22449
  /** By default, if you have multiple version control accounts of the same provider linked, Northflank will pick a linked account that has access to the repository. If `accountLogin` is provided, Northflank will instead use your linked account with that login name. Example: "github-user" */
20302
22450
  'accountLogin'?: string;
22451
+ /** Legacy key. Please used accountLogin instead. */
22452
+ 'vcsLinkId'?: string;
20303
22453
  /** URL of the Git repo to sync the template with. Example: "https://github.com/northflank-examples/remix-postgres-redis-demo" */
20304
22454
  'repoUrl': string;
20305
22455
  /** The name of the branch to use. Example: "main" */
20306
22456
  'branch': string;
20307
- /** The file path to the template in the repository. If using an existing template, it should be in JSON format. Example: "northflank.json" */
22457
+ /** The file path to the template in the repository. If using an existing template, it should be in JSON format. */
20308
22458
  'filePath': string;
20309
22459
  /** The SHA of the current commit that is being used for the template. Example: "8c7e040ee3737ddc3a713363ae72bbe960e9fb16" */
20310
22460
  'templateSha': string;
@@ -20352,8 +22502,8 @@ type UpdateTemplateResult = {
20352
22502
  'name': string;
20353
22503
  /** Description of the template. Example: "This is a sample template." */
20354
22504
  'description'?: string;
20355
- /** The version of the Northflank API to run the template against. Example: "v1.1" */
20356
- 'apiVersion': 'v1.1';
22505
+ /** The version of the Northflank API to run the template against. Example: "v1.2" */
22506
+ 'apiVersion': 'v1.2';
20357
22507
  /** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
20358
22508
  'arguments'?: any;
20359
22509
  '$schema'?: string;
@@ -20367,11 +22517,13 @@ type UpdateTemplateResult = {
20367
22517
  'selfHostedVcsId'?: string;
20368
22518
  /** By default, if you have multiple version control accounts of the same provider linked, Northflank will pick a linked account that has access to the repository. If `accountLogin` is provided, Northflank will instead use your linked account with that login name. Example: "github-user" */
20369
22519
  'accountLogin'?: string;
22520
+ /** Legacy key. Please used accountLogin instead. */
22521
+ 'vcsLinkId'?: string;
20370
22522
  /** URL of the Git repo to sync the template with. Example: "https://github.com/northflank-examples/remix-postgres-redis-demo" */
20371
22523
  'repoUrl': string;
20372
22524
  /** The name of the branch to use. Example: "main" */
20373
22525
  'branch': string;
20374
- /** The file path to the template in the repository. If using an existing template, it should be in JSON format. Example: "northflank.json" */
22526
+ /** The file path to the template in the repository. If using an existing template, it should be in JSON format. */
20375
22527
  'filePath': string;
20376
22528
  /** The SHA of the current commit that is being used for the template. Example: "8c7e040ee3737ddc3a713363ae72bbe960e9fb16" */
20377
22529
  'templateSha': string;
@@ -20392,10 +22544,33 @@ type UpdateTemplateResult = {
20392
22544
  'name': string;
20393
22545
  /** Description of the template. Example: "This is a sample template." */
20394
22546
  'description'?: string;
20395
- /** The version of the Northflank API to run the template against. Example: "v1.1" */
20396
- 'apiVersion': 'v1.1';
22547
+ /** The version of the Northflank API to run the template against. Example: "v1.2" */
22548
+ 'apiVersion': 'v1.2';
22549
+ /** Options regarding how the template is run. */
22550
+ 'options'?: {
22551
+ /** If true, the template will run automatically whenever a change is made to it. */
22552
+ 'autorun'?: boolean;
22553
+ /** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
22554
+ 'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
22555
+ };
20397
22556
  /** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
20398
22557
  'arguments'?: any;
22558
+ 'gitops'?: {
22559
+ /** The VCS provider to use. Example: "github" */
22560
+ 'vcsService': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted' | 'azure';
22561
+ /** If projectType is self-hosted, the ID of the self-hosted vcs to use. */
22562
+ 'selfHostedVcsId'?: string;
22563
+ /** By default, if you have multiple version control accounts of the same provider linked, Northflank will pick a linked account that has access to the repository. If `accountLogin` is provided, Northflank will instead use your linked account with that login name. Example: "github-user" */
22564
+ 'accountLogin'?: string;
22565
+ /** Legacy key. Please used accountLogin instead. */
22566
+ 'vcsLinkId'?: string;
22567
+ /** URL of the Git repo to sync the template with. Example: "https://github.com/northflank-examples/remix-postgres-redis-demo" */
22568
+ 'repoUrl': string;
22569
+ /** The name of the branch to use. Example: "main" */
22570
+ 'branch': string;
22571
+ /** The file path to the template in the repository. If using an existing template, it should be in JSON format. */
22572
+ 'filePath': string;
22573
+ };
20399
22574
  '$schema'?: string;
20400
22575
  'spec': any;
20401
22576
  'refs'?: any;
@@ -20404,7 +22579,7 @@ type UpdateTemplateResult = {
20404
22579
  /** Identifier for the template Example: "example-template" */
20405
22580
  'templateId': string;
20406
22581
  /** Status of the template run Example: "success" */
20407
- 'status': 'pending' | 'running' | 'success' | 'failure' | 'aborted' | 'aborting';
22582
+ 'status': 'pending' | 'running' | 'success' | 'failure' | 'aborted' | 'aborting' | 'queued' | 'unknown' | 'skipped';
20408
22583
  /** Whether the run has concluded (aborted, success, failed) Example: true */
20409
22584
  'concluded': boolean;
20410
22585
  /** Timestamp the run was created at. Example: "2021-01-01 12:00:00.000Z" */
@@ -20426,70 +22601,44 @@ type UpdateTemplateData = {
20426
22601
  'name': string;
20427
22602
  /** Description of the template. Example: "This is a sample template." */
20428
22603
  'description'?: string;
20429
- /** The version of the Northflank API to run the template against. Example: "v1.1" */
20430
- 'apiVersion': 'v1.1';
20431
- /** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
20432
- 'arguments'?: any;
20433
- '$schema'?: string;
20434
- 'spec': any;
20435
- /** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
20436
- 'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
20437
- /** Argument overrides stored outside of the template. If GitOps is enabled, these will not be saved in version control. */
20438
- 'argumentOverrides'?: any;
20439
- /** Additional options for the template creation. */
22604
+ /** The version of the Northflank API to run the template against. Example: "v1.2" */
22605
+ 'apiVersion': 'v1.2';
22606
+ /** Options regarding how the template is run. */
20440
22607
  'options'?: {
20441
- /** If true, the template will run automatically whenever it is updated. */
22608
+ /** If true, the template will run automatically whenever a change is made to it. */
20442
22609
  'autorun'?: boolean;
22610
+ /** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
22611
+ 'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
20443
22612
  };
20444
- } | {
20445
- /** Name of the template. Example: "Example Template" */
20446
- 'name': string;
20447
- /** Description of the template. Example: "This is a sample template." */
20448
- 'description'?: string;
20449
- /** The version of the Northflank API to run the template against. Example: "v1.1" */
20450
- 'apiVersion': 'v1.1';
20451
22613
  /** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
20452
22614
  'arguments'?: any;
20453
- '$schema'?: string;
20454
- 'spec': any;
20455
- /** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
20456
- 'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
20457
- /** Argument overrides stored outside of the template. If GitOps is enabled, these will not be saved in version control. */
20458
- 'argumentOverrides'?: any;
20459
- /** Additional options for the template creation. */
20460
- 'options'?: {
20461
- /** If true, the template will run automatically whenever it is updated. */
20462
- 'autorun'?: boolean;
20463
- };
20464
- /** GitOps data for syncing this template with a file in version control. If set to `null`, removes GitOps handling from this template. */
20465
- 'gitops': {
22615
+ 'gitops'?: {
20466
22616
  /** The VCS provider to use. Example: "github" */
20467
22617
  'vcsService': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted' | 'azure';
20468
22618
  /** If projectType is self-hosted, the ID of the self-hosted vcs to use. */
20469
22619
  'selfHostedVcsId'?: string;
20470
22620
  /** By default, if you have multiple version control accounts of the same provider linked, Northflank will pick a linked account that has access to the repository. If `accountLogin` is provided, Northflank will instead use your linked account with that login name. Example: "github-user" */
20471
22621
  'accountLogin'?: string;
22622
+ /** Legacy key. Please used accountLogin instead. */
22623
+ 'vcsLinkId'?: string;
20472
22624
  /** URL of the Git repo to sync the template with. Example: "https://github.com/northflank-examples/remix-postgres-redis-demo" */
20473
22625
  'repoUrl': string;
20474
22626
  /** The name of the branch to use. Example: "main" */
20475
22627
  'branch': string;
20476
- /** The file path to the template in the repository. If using an existing template, it should be in JSON format. Example: "northflank.json" */
22628
+ /** The file path to the template in the repository. If using an existing template, it should be in JSON format. */
20477
22629
  'filePath': string;
20478
22630
  };
22631
+ '$schema'?: string;
22632
+ 'spec': any;
22633
+ /** Argument overrides stored outside of the template. If GitOps is enabled, these will not be saved in version control. */
22634
+ 'argumentOverrides'?: any;
20479
22635
  } | {
20480
22636
  /** Name of the template. Example: "Example Template" */
20481
22637
  'name': string;
20482
22638
  /** Description of the template. Example: "This is a sample template." */
20483
22639
  'description'?: string;
20484
- /** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
20485
- 'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
20486
22640
  /** Argument overrides stored outside of the template. If GitOps is enabled, these will not be saved in version control. */
20487
22641
  'argumentOverrides'?: any;
20488
- /** Additional options for the template creation. */
20489
- 'options'?: {
20490
- /** If true, the template will run automatically whenever it is updated. */
20491
- 'autorun'?: boolean;
20492
- };
20493
22642
  /** GitOps data for syncing this template with a file in version control. If set to `null`, removes GitOps handling from this template. */
20494
22643
  'gitops': {
20495
22644
  /** The VCS provider to use. Example: "github" */
@@ -20498,11 +22647,13 @@ type UpdateTemplateData = {
20498
22647
  'selfHostedVcsId'?: string;
20499
22648
  /** By default, if you have multiple version control accounts of the same provider linked, Northflank will pick a linked account that has access to the repository. If `accountLogin` is provided, Northflank will instead use your linked account with that login name. Example: "github-user" */
20500
22649
  'accountLogin'?: string;
22650
+ /** Legacy key. Please used accountLogin instead. */
22651
+ 'vcsLinkId'?: string;
20501
22652
  /** URL of the Git repo to sync the template with. Example: "https://github.com/northflank-examples/remix-postgres-redis-demo" */
20502
22653
  'repoUrl': string;
20503
22654
  /** The name of the branch to use. Example: "main" */
20504
22655
  'branch': string;
20505
- /** The file path to the template in the repository. If using an existing template, it should be in JSON format. Example: "northflank.json" */
22656
+ /** The file path to the template in the repository. If using an existing template, it should be in JSON format. */
20506
22657
  'filePath': string;
20507
22658
  };
20508
22659
  };
@@ -20537,10 +22688,33 @@ type RunTemplateResult = {
20537
22688
  'name': string;
20538
22689
  /** Description of the template. Example: "This is a sample template." */
20539
22690
  'description'?: string;
20540
- /** The version of the Northflank API to run the template against. Example: "v1.1" */
20541
- 'apiVersion': 'v1.1';
22691
+ /** The version of the Northflank API to run the template against. Example: "v1.2" */
22692
+ 'apiVersion': 'v1.2';
22693
+ /** Options regarding how the template is run. */
22694
+ 'options'?: {
22695
+ /** If true, the template will run automatically whenever a change is made to it. */
22696
+ 'autorun'?: boolean;
22697
+ /** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
22698
+ 'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
22699
+ };
20542
22700
  /** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
20543
22701
  'arguments'?: any;
22702
+ 'gitops'?: {
22703
+ /** The VCS provider to use. Example: "github" */
22704
+ 'vcsService': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted' | 'azure';
22705
+ /** If projectType is self-hosted, the ID of the self-hosted vcs to use. */
22706
+ 'selfHostedVcsId'?: string;
22707
+ /** By default, if you have multiple version control accounts of the same provider linked, Northflank will pick a linked account that has access to the repository. If `accountLogin` is provided, Northflank will instead use your linked account with that login name. Example: "github-user" */
22708
+ 'accountLogin'?: string;
22709
+ /** Legacy key. Please used accountLogin instead. */
22710
+ 'vcsLinkId'?: string;
22711
+ /** URL of the Git repo to sync the template with. Example: "https://github.com/northflank-examples/remix-postgres-redis-demo" */
22712
+ 'repoUrl': string;
22713
+ /** The name of the branch to use. Example: "main" */
22714
+ 'branch': string;
22715
+ /** The file path to the template in the repository. If using an existing template, it should be in JSON format. */
22716
+ 'filePath': string;
22717
+ };
20544
22718
  '$schema'?: string;
20545
22719
  'spec': any;
20546
22720
  'refs'?: any;
@@ -20549,7 +22723,7 @@ type RunTemplateResult = {
20549
22723
  /** Identifier for the template Example: "example-template" */
20550
22724
  'templateId': string;
20551
22725
  /** Status of the template run Example: "success" */
20552
- 'status': 'pending' | 'running' | 'success' | 'failure' | 'aborted' | 'aborting';
22726
+ 'status': 'pending' | 'running' | 'success' | 'failure' | 'aborted' | 'aborting' | 'queued' | 'unknown' | 'skipped';
20553
22727
  /** Whether the run has concluded (aborted, success, failed) Example: true */
20554
22728
  'concluded': boolean;
20555
22729
  /** Timestamp the run was created at. Example: "2021-01-01 12:00:00.000Z" */
@@ -20585,14 +22759,21 @@ type ListTemplaterunsResult = {
20585
22759
  'name': string;
20586
22760
  /** Description of the template. Example: "This is a sample template." */
20587
22761
  'description'?: string;
20588
- /** The version of the Northflank API to run the template against. Example: "v1.1" */
20589
- 'apiVersion': 'v1.1';
22762
+ /** The version of the Northflank API to run the template against. Example: "v1.2" */
22763
+ 'apiVersion': 'v1.2';
22764
+ /** Options regarding how the template is run. */
22765
+ 'options'?: {
22766
+ /** If true, the template will run automatically whenever a change is made to it. */
22767
+ 'autorun'?: boolean;
22768
+ /** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
22769
+ 'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
22770
+ };
20590
22771
  /** Identifier for the template run Example: "3dd592f6-ce63-45ee-acf8-13dc5ec5235c" */
20591
22772
  'id': string;
20592
22773
  /** Identifier for the template Example: "example-template" */
20593
22774
  'templateId': string;
20594
22775
  /** Status of the template run Example: "success" */
20595
- 'status': 'pending' | 'running' | 'success' | 'failure' | 'aborted' | 'aborting';
22776
+ 'status': 'pending' | 'running' | 'success' | 'failure' | 'aborted' | 'aborting' | 'queued' | 'unknown' | 'skipped';
20596
22777
  /** Timestamp the run started at. Example: "2021-01-01 12:01:00.000Z" */
20597
22778
  'startedAt'?: string;
20598
22779
  /** Whether the run has concluded (aborted, success, failed) Example: true */
@@ -20635,10 +22816,33 @@ type GetTemplaterunResult = {
20635
22816
  'name': string;
20636
22817
  /** Description of the template. Example: "This is a sample template." */
20637
22818
  'description'?: string;
20638
- /** The version of the Northflank API to run the template against. Example: "v1.1" */
20639
- 'apiVersion': 'v1.1';
22819
+ /** The version of the Northflank API to run the template against. Example: "v1.2" */
22820
+ 'apiVersion': 'v1.2';
22821
+ /** Options regarding how the template is run. */
22822
+ 'options'?: {
22823
+ /** If true, the template will run automatically whenever a change is made to it. */
22824
+ 'autorun'?: boolean;
22825
+ /** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
22826
+ 'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
22827
+ };
20640
22828
  /** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
20641
22829
  'arguments'?: any;
22830
+ 'gitops'?: {
22831
+ /** The VCS provider to use. Example: "github" */
22832
+ 'vcsService': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted' | 'azure';
22833
+ /** If projectType is self-hosted, the ID of the self-hosted vcs to use. */
22834
+ 'selfHostedVcsId'?: string;
22835
+ /** By default, if you have multiple version control accounts of the same provider linked, Northflank will pick a linked account that has access to the repository. If `accountLogin` is provided, Northflank will instead use your linked account with that login name. Example: "github-user" */
22836
+ 'accountLogin'?: string;
22837
+ /** Legacy key. Please used accountLogin instead. */
22838
+ 'vcsLinkId'?: string;
22839
+ /** URL of the Git repo to sync the template with. Example: "https://github.com/northflank-examples/remix-postgres-redis-demo" */
22840
+ 'repoUrl': string;
22841
+ /** The name of the branch to use. Example: "main" */
22842
+ 'branch': string;
22843
+ /** The file path to the template in the repository. If using an existing template, it should be in JSON format. */
22844
+ 'filePath': string;
22845
+ };
20642
22846
  '$schema'?: string;
20643
22847
  'spec': any;
20644
22848
  'refs'?: any;
@@ -20647,7 +22851,7 @@ type GetTemplaterunResult = {
20647
22851
  /** Identifier for the template Example: "example-template" */
20648
22852
  'templateId': string;
20649
22853
  /** Status of the template run Example: "success" */
20650
- 'status': 'pending' | 'running' | 'success' | 'failure' | 'aborted' | 'aborting';
22854
+ 'status': 'pending' | 'running' | 'success' | 'failure' | 'aborted' | 'aborting' | 'queued' | 'unknown' | 'skipped';
20651
22855
  /** Whether the run has concluded (aborted, success, failed) Example: true */
20652
22856
  'concluded': boolean;
20653
22857
  /** Timestamp the run was created at. Example: "2021-01-01 12:00:00.000Z" */
@@ -20678,10 +22882,33 @@ type AbortTemplaterunResult = {
20678
22882
  'name': string;
20679
22883
  /** Description of the template. Example: "This is a sample template." */
20680
22884
  'description'?: string;
20681
- /** The version of the Northflank API to run the template against. Example: "v1.1" */
20682
- 'apiVersion': 'v1.1';
22885
+ /** The version of the Northflank API to run the template against. Example: "v1.2" */
22886
+ 'apiVersion': 'v1.2';
22887
+ /** Options regarding how the template is run. */
22888
+ 'options'?: {
22889
+ /** If true, the template will run automatically whenever a change is made to it. */
22890
+ 'autorun'?: boolean;
22891
+ /** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
22892
+ 'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
22893
+ };
20683
22894
  /** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
20684
22895
  'arguments'?: any;
22896
+ 'gitops'?: {
22897
+ /** The VCS provider to use. Example: "github" */
22898
+ 'vcsService': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted' | 'azure';
22899
+ /** If projectType is self-hosted, the ID of the self-hosted vcs to use. */
22900
+ 'selfHostedVcsId'?: string;
22901
+ /** By default, if you have multiple version control accounts of the same provider linked, Northflank will pick a linked account that has access to the repository. If `accountLogin` is provided, Northflank will instead use your linked account with that login name. Example: "github-user" */
22902
+ 'accountLogin'?: string;
22903
+ /** Legacy key. Please used accountLogin instead. */
22904
+ 'vcsLinkId'?: string;
22905
+ /** URL of the Git repo to sync the template with. Example: "https://github.com/northflank-examples/remix-postgres-redis-demo" */
22906
+ 'repoUrl': string;
22907
+ /** The name of the branch to use. Example: "main" */
22908
+ 'branch': string;
22909
+ /** The file path to the template in the repository. If using an existing template, it should be in JSON format. */
22910
+ 'filePath': string;
22911
+ };
20685
22912
  '$schema'?: string;
20686
22913
  'spec': any;
20687
22914
  'refs'?: any;
@@ -20690,7 +22917,7 @@ type AbortTemplaterunResult = {
20690
22917
  /** Identifier for the template Example: "example-template" */
20691
22918
  'templateId': string;
20692
22919
  /** Status of the template run Example: "success" */
20693
- 'status': 'pending' | 'running' | 'success' | 'failure' | 'aborted' | 'aborting';
22920
+ 'status': 'pending' | 'running' | 'success' | 'failure' | 'aborted' | 'aborting' | 'queued' | 'unknown' | 'skipped';
20694
22921
  /** Whether the run has concluded (aborted, success, failed) Example: true */
20695
22922
  'concluded': boolean;
20696
22923
  /** Timestamp the run was created at. Example: "2021-01-01 12:00:00.000Z" */
@@ -20758,6 +22985,7 @@ declare class ApiClient {
20758
22985
  };
20759
22986
  dnsId: GetDnsidCall;
20760
22987
  domain: GetDomainCall;
22988
+ domainCertificate: GetDomaincertificateCall;
20761
22989
  subdomain: GetSubdomainCall & {
20762
22990
  path: GetSubdomainPathCall;
20763
22991
  };
@@ -20959,6 +23187,27 @@ declare class ApiClient {
20959
23187
  tag: DeleteTagCall;
20960
23188
  template: DeleteTemplateCall;
20961
23189
  };
23190
+ cordon: {
23191
+ cloud: {
23192
+ cluster: {
23193
+ node: CordonCloudClusterNodeCall;
23194
+ };
23195
+ };
23196
+ };
23197
+ drain: {
23198
+ cloud: {
23199
+ cluster: {
23200
+ node: DrainCloudClusterNodeCall;
23201
+ };
23202
+ };
23203
+ };
23204
+ uncordon: {
23205
+ cloud: {
23206
+ cluster: {
23207
+ node: UncordonCloudClusterNodeCall;
23208
+ };
23209
+ };
23210
+ };
20962
23211
  import: {
20963
23212
  domainCertificate: ImportDomaincertificateCall;
20964
23213
  addon: {
@@ -21133,6 +23382,7 @@ declare class ApiClient {
21133
23382
  };
21134
23383
  dnsId: GetDnsidEndpoint;
21135
23384
  domain: GetDomainEndpoint;
23385
+ domainCertificate: GetDomaincertificateEndpoint;
21136
23386
  subdomain: GetSubdomainEndpoint & {
21137
23387
  path: GetSubdomainPathEndpoint;
21138
23388
  };
@@ -21318,6 +23568,27 @@ declare class ApiClient {
21318
23568
  tag: DeleteTagEndpoint;
21319
23569
  template: DeleteTemplateEndpoint;
21320
23570
  };
23571
+ cordon: {
23572
+ cloud: {
23573
+ cluster: {
23574
+ node: CordonCloudClusterNodeEndpoint;
23575
+ };
23576
+ };
23577
+ };
23578
+ drain: {
23579
+ cloud: {
23580
+ cluster: {
23581
+ node: DrainCloudClusterNodeEndpoint;
23582
+ };
23583
+ };
23584
+ };
23585
+ uncordon: {
23586
+ cloud: {
23587
+ cluster: {
23588
+ node: UncordonCloudClusterNodeEndpoint;
23589
+ };
23590
+ };
23591
+ };
21321
23592
  import: {
21322
23593
  domainCertificate: ImportDomaincertificateEndpoint;
21323
23594
  addon: {
@@ -21475,4 +23746,4 @@ type ApiClientOpts = {
21475
23746
  customUserAgent?: string;
21476
23747
  };
21477
23748
 
21478
- export { AbortAddonBackupCall, AbortAddonBackupEndpoint, AbortAddonBackupParameters, AbortAddonBackupRequest, AbortAddonBackupResult, AbortAddonRestoreCall, AbortAddonRestoreData, AbortAddonRestoreEndpoint, AbortAddonRestoreOptions, AbortAddonRestoreParameters, AbortAddonRestoreRequest, AbortAddonRestoreResult, AbortJobBuildCall, AbortJobBuildEndpoint, AbortJobBuildParameters, AbortJobBuildRequest, AbortJobBuildResult, AbortJobRunCall, AbortJobRunEndpoint, AbortJobRunParameters, AbortJobRunRequest, AbortJobRunResult, AbortReleaseflowrunCall, AbortReleaseflowrunEndpoint, AbortReleaseflowrunParameters, AbortReleaseflowrunRequest, AbortReleaseflowrunResult, AbortServiceBuildCall, AbortServiceBuildEndpoint, AbortServiceBuildParameters, AbortServiceBuildRequest, AbortServiceBuildResult, AbortTemplaterunCall, AbortTemplaterunEndpoint, AbortTemplaterunParameters, AbortTemplaterunRequest, AbortTemplaterunResult, AddDomainSubdomainCall, AddDomainSubdomainData, AddDomainSubdomainEndpoint, AddDomainSubdomainParameters, AddDomainSubdomainRequest, AddDomainSubdomainResult, AddRegistrycredentialsCall, AddRegistrycredentialsData, AddRegistrycredentialsEndpoint, AddRegistrycredentialsRequest, AddRegistrycredentialsResult, AddSubdomainPathCall, AddSubdomainPathData, AddSubdomainPathEndpoint, AddSubdomainPathParameters, AddSubdomainPathRequest, AddSubdomainPathResult, AddTagCall, AddTagData, AddTagEndpoint, AddTagRequest, AddTagResult, ApiCallError, ApiCallResponse, ApiClient, ApiClientContext, ApiClientContextProvider, ApiClientContextWrapper, ApiClientFileContextProvider, ApiClientInMemoryContextProvider, ApiClientOpts, ApiEndpoint, AssignSubdomainPathCall, AssignSubdomainPathData, AssignSubdomainPathEndpoint, AssignSubdomainPathParameters, AssignSubdomainPathRequest, AssignSubdomainPathResult, AssignSubdomainServiceCall, AssignSubdomainServiceData, AssignSubdomainServiceEndpoint, AssignSubdomainServiceParameters, AssignSubdomainServiceRequest, AssignSubdomainServiceResult, AttachVolumeCall, AttachVolumeData, AttachVolumeEndpoint, AttachVolumeParameters, AttachVolumeRequest, AttachVolumeResult, BackupAddonCall, BackupAddonData, BackupAddonEndpoint, BackupAddonParameters, BackupAddonRequest, BackupAddonResult, CommandResult, CreateAddonBackupscheduleCall, CreateAddonBackupscheduleData, CreateAddonBackupscheduleEndpoint, CreateAddonBackupscheduleParameters, CreateAddonBackupscheduleRequest, CreateAddonBackupscheduleResult, CreateAddonCall, CreateAddonData, CreateAddonEndpoint, CreateAddonParameters, CreateAddonRequest, CreateAddonResult, CreateCloudClusterCall, CreateCloudClusterData, CreateCloudClusterEndpoint, CreateCloudClusterRequest, CreateCloudClusterResult, CreateCloudDockerregistryCall, CreateCloudDockerregistryData, CreateCloudDockerregistryEndpoint, CreateCloudDockerregistryRequest, CreateCloudDockerregistryResult, CreateCloudIntegrationCall, CreateCloudIntegrationData, CreateCloudIntegrationEndpoint, CreateCloudIntegrationRequest, CreateCloudIntegrationResult, CreateCustomvcsTokenCall, CreateCustomvcsTokenEndpoint, CreateCustomvcsTokenOptions, CreateCustomvcsTokenParameters, CreateCustomvcsTokenRequest, CreateCustomvcsTokenResult, CreateDomainCall, CreateDomainData, CreateDomainEndpoint, CreateDomainRequest, CreateDomainResult, CreateJobCronCall, CreateJobCronData, CreateJobCronEndpoint, CreateJobCronParameters, CreateJobCronRequest, CreateJobCronResult, CreateJobManualCall, CreateJobManualData, CreateJobManualEndpoint, CreateJobManualParameters, CreateJobManualRequest, CreateJobManualResult, CreateLogsinkCall, CreateLogsinkData, CreateLogsinkEndpoint, CreateLogsinkRequest, CreateLogsinkResult, CreateNotificationCall, CreateNotificationData, CreateNotificationEndpoint, CreateNotificationParameters, CreateNotificationRequest, CreateNotificationResult, CreateProjectCall, CreateProjectData, CreateProjectEndpoint, CreateProjectRequest, CreateProjectResult, CreateSecretCall, CreateSecretData, CreateSecretEndpoint, CreateSecretParameters, CreateSecretRequest, CreateSecretResult, CreateServiceBuildCall, CreateServiceBuildData, CreateServiceBuildEndpoint, CreateServiceBuildParameters, CreateServiceBuildRequest, CreateServiceBuildResult, CreateServiceCombinedCall, CreateServiceCombinedData, CreateServiceCombinedEndpoint, CreateServiceCombinedParameters, CreateServiceCombinedRequest, CreateServiceCombinedResult, CreateServiceDeploymentCall, CreateServiceDeploymentData, CreateServiceDeploymentEndpoint, CreateServiceDeploymentParameters, CreateServiceDeploymentRequest, CreateServiceDeploymentResult, CreateTemplateCall, CreateTemplateData, CreateTemplateEndpoint, CreateTemplateRequest, CreateTemplateResult, CreateVolumeCall, CreateVolumeData, CreateVolumeEndpoint, CreateVolumeParameters, CreateVolumeRequest, CreateVolumeResult, DeleteAddonBackupscheduleCall, DeleteAddonBackupscheduleEndpoint, DeleteAddonBackupscheduleParameters, DeleteAddonBackupscheduleRequest, DeleteAddonBackupscheduleResult, DeleteAddonCall, DeleteAddonEndpoint, DeleteAddonParameters, DeleteAddonRequest, DeleteAddonResult, DeleteApiEndpoint, DeleteBackupCall, DeleteBackupEndpoint, DeleteBackupParameters, DeleteBackupRequest, DeleteBackupResult, DeleteCloudClusterCall, DeleteCloudClusterEndpoint, DeleteCloudClusterParameters, DeleteCloudClusterRequest, DeleteCloudClusterResult, DeleteCloudDockerregistryCall, DeleteCloudDockerregistryEndpoint, DeleteCloudDockerregistryParameters, DeleteCloudDockerregistryRequest, DeleteCloudDockerregistryResult, DeleteCloudIntegrationCall, DeleteCloudIntegrationEndpoint, DeleteCloudIntegrationParameters, DeleteCloudIntegrationRequest, DeleteCloudIntegrationResult, DeleteDomainCall, DeleteDomainEndpoint, DeleteDomainParameters, DeleteDomainRequest, DeleteDomainResult, DeleteJobCall, DeleteJobEndpoint, DeleteJobParameters, DeleteJobRequest, DeleteJobResult, DeleteLogsinkCall, DeleteLogsinkEndpoint, DeleteLogsinkParameters, DeleteLogsinkRequest, DeleteLogsinkResult, DeleteNotificationCall, DeleteNotificationEndpoint, DeleteNotificationParameters, DeleteNotificationRequest, DeleteNotificationResult, DeletePreviewtemplatepreviewCall, DeletePreviewtemplatepreviewEndpoint, DeletePreviewtemplatepreviewParameters, DeletePreviewtemplatepreviewRequest, DeletePreviewtemplatepreviewResult, DeleteProjectCall, DeleteProjectEndpoint, DeleteProjectOptions, DeleteProjectParameters, DeleteProjectRequest, DeleteProjectResult, DeleteRegistrycredentialsCall, DeleteRegistrycredentialsEndpoint, DeleteRegistrycredentialsParameters, DeleteRegistrycredentialsRequest, DeleteRegistrycredentialsResult, DeleteSecretCall, DeleteSecretEndpoint, DeleteSecretParameters, DeleteSecretRequest, DeleteSecretResult, DeleteSecretlinkCall, DeleteSecretlinkEndpoint, DeleteSecretlinkParameters, DeleteSecretlinkRequest, DeleteSecretlinkResult, DeleteServiceCall, DeleteServiceEndpoint, DeleteServiceOptions, DeleteServiceParameters, DeleteServiceRequest, DeleteServiceResult, DeleteSubdomainCall, DeleteSubdomainEndpoint, DeleteSubdomainParameters, DeleteSubdomainPathCall, DeleteSubdomainPathEndpoint, DeleteSubdomainPathParameters, DeleteSubdomainPathRequest, DeleteSubdomainPathResult, DeleteSubdomainRequest, DeleteSubdomainResult, DeleteTagCall, DeleteTagEndpoint, DeleteTagParameters, DeleteTagRequest, DeleteTagResult, DeleteTemplateCall, DeleteTemplateEndpoint, DeleteTemplateParameters, DeleteTemplateRequest, DeleteTemplateResult, DeleteVolumeCall, DeleteVolumeEndpoint, DeleteVolumeParameters, DeleteVolumeRequest, DeleteVolumeResult, DetachVolumeCall, DetachVolumeData, DetachVolumeEndpoint, DetachVolumeParameters, DetachVolumeRequest, DetachVolumeResult, DisableSubdomainCdnCall, DisableSubdomainCdnData, DisableSubdomainCdnEndpoint, DisableSubdomainCdnParameters, DisableSubdomainCdnRequest, DisableSubdomainCdnResult, EnableSubdomainCdnCall, EnableSubdomainCdnData, EnableSubdomainCdnEndpoint, EnableSubdomainCdnParameters, EnableSubdomainCdnRequest, EnableSubdomainCdnResult, ExecCommand, ExecCommandData, ExecCommandStandard, ExecSessionData, GetAddonBackupCall, GetAddonBackupDownloadCall, GetAddonBackupDownloadEndpoint, GetAddonBackupDownloadParameters, GetAddonBackupDownloadRequest, GetAddonBackupDownloadResult, GetAddonBackupEndpoint, GetAddonBackupLogsCall, GetAddonBackupParameters, GetAddonBackupRequest, GetAddonBackupRestoresCall, GetAddonBackupRestoresEndpoint, GetAddonBackupRestoresOptions, GetAddonBackupRestoresParameters, GetAddonBackupRestoresRequest, GetAddonBackupRestoresResult, GetAddonBackupResult, GetAddonBackupsCall, GetAddonBackupsEndpoint, GetAddonBackupsOptions, GetAddonBackupsParameters, GetAddonBackupsRequest, GetAddonBackupsResult, GetAddonBackupschedulesCall, GetAddonBackupschedulesEndpoint, GetAddonBackupschedulesOptions, GetAddonBackupschedulesParameters, GetAddonBackupschedulesRequest, GetAddonBackupschedulesResult, GetAddonCall, GetAddonContainersCall, GetAddonContainersEndpoint, GetAddonContainersOptions, GetAddonContainersParameters, GetAddonContainersRequest, GetAddonContainersResult, GetAddonCredentialsCall, GetAddonCredentialsEndpoint, GetAddonCredentialsParameters, GetAddonCredentialsRequest, GetAddonCredentialsResult, GetAddonEndpoint, GetAddonLogsCall, GetAddonMetricsCall, GetAddonMetricsRangeCall, GetAddonParameters, GetAddonPitrwindowCall, GetAddonPitrwindowEndpoint, GetAddonPitrwindowParameters, GetAddonPitrwindowRequest, GetAddonPitrwindowResult, GetAddonRequest, GetAddonRestoresCall, GetAddonRestoresEndpoint, GetAddonRestoresLogsCall, GetAddonRestoresOptions, GetAddonRestoresParameters, GetAddonRestoresRequest, GetAddonRestoresResult, GetAddonResult, GetAddonTypesCall, GetAddonTypesEndpoint, GetAddonTypesRequest, GetAddonTypesResult, GetAddonVersionCall, GetAddonVersionEndpoint, GetAddonVersionParameters, GetAddonVersionRequest, GetAddonVersionResult, GetApiEndpoint, GetCloudClusterCall, GetCloudClusterEndpoint, GetCloudClusterParameters, GetCloudClusterRequest, GetCloudClusterResult, GetCloudDockerregistryCall, GetCloudDockerregistryEndpoint, GetCloudDockerregistryParameters, GetCloudDockerregistryRequest, GetCloudDockerregistryResult, GetCloudIntegrationCall, GetCloudIntegrationEndpoint, GetCloudIntegrationParameters, GetCloudIntegrationRequest, GetCloudIntegrationResult, GetDnsidCall, GetDnsidEndpoint, GetDnsidRequest, GetDnsidResult, GetDomainCall, GetDomainEndpoint, GetDomainParameters, GetDomainRequest, GetDomainResult, GetInvoiceDetailsCall, GetInvoiceDetailsEndpoint, GetInvoiceDetailsOptions, GetInvoiceDetailsRequest, GetInvoiceDetailsResult, GetJobBranchesCall, GetJobBranchesEndpoint, GetJobBranchesOptions, GetJobBranchesParameters, GetJobBranchesRequest, GetJobBranchesResult, GetJobBuildCall, GetJobBuildEndpoint, GetJobBuildMetricsCall, GetJobBuildMetricsRangeCall, GetJobBuildParameters, GetJobBuildRequest, GetJobBuildResult, GetJobBuildargumentdetailsCall, GetJobBuildargumentdetailsEndpoint, GetJobBuildargumentdetailsParameters, GetJobBuildargumentdetailsRequest, GetJobBuildargumentdetailsResult, GetJobBuildargumentsCall, GetJobBuildargumentsEndpoint, GetJobBuildargumentsOptions, GetJobBuildargumentsParameters, GetJobBuildargumentsRequest, GetJobBuildargumentsResult, GetJobBuildlogsCall, GetJobBuildsCall, GetJobBuildsEndpoint, GetJobBuildsOptions, GetJobBuildsParameters, GetJobBuildsRequest, GetJobBuildsResult, GetJobCall, GetJobContainersCall, GetJobContainersEndpoint, GetJobContainersOptions, GetJobContainersParameters, GetJobContainersRequest, GetJobContainersResult, GetJobDeploymentCall, GetJobDeploymentEndpoint, GetJobDeploymentParameters, GetJobDeploymentRequest, GetJobDeploymentResult, GetJobEndpoint, GetJobHealthchecksCall, GetJobHealthchecksEndpoint, GetJobHealthchecksParameters, GetJobHealthchecksRequest, GetJobHealthchecksResult, GetJobLogsCall, GetJobMetricsCall, GetJobMetricsRangeCall, GetJobParameters, GetJobPullrequestsCall, GetJobPullrequestsEndpoint, GetJobPullrequestsOptions, GetJobPullrequestsParameters, GetJobPullrequestsRequest, GetJobPullrequestsResult, GetJobRequest, GetJobResult, GetJobRunCall, GetJobRunEndpoint, GetJobRunParameters, GetJobRunRequest, GetJobRunResult, GetJobRunsCall, GetJobRunsEndpoint, GetJobRunsOptions, GetJobRunsParameters, GetJobRunsRequest, GetJobRunsResult, GetJobRuntimeenvironmentCall, GetJobRuntimeenvironmentEndpoint, GetJobRuntimeenvironmentOptions, GetJobRuntimeenvironmentParameters, GetJobRuntimeenvironmentRequest, GetJobRuntimeenvironmentResult, GetJobRuntimeenvironmentdetailsCall, GetJobRuntimeenvironmentdetailsEndpoint, GetJobRuntimeenvironmentdetailsParameters, GetJobRuntimeenvironmentdetailsRequest, GetJobRuntimeenvironmentdetailsResult, GetLogsinkCall, GetLogsinkEndpoint, GetLogsinkParameters, GetLogsinkRequest, GetLogsinkResult, GetNotificationCall, GetNotificationEndpoint, GetNotificationParameters, GetNotificationRequest, GetNotificationResult, GetPipelineCall, GetPipelineEndpoint, GetPipelineParameters, GetPipelineRequest, GetPipelineResult, GetPreviewtemplateCall, GetPreviewtemplateEndpoint, GetPreviewtemplateOptions, GetPreviewtemplateParameters, GetPreviewtemplateRequest, GetPreviewtemplateResult, GetPreviewtemplaterunCall, GetPreviewtemplaterunEndpoint, GetPreviewtemplaterunParameters, GetPreviewtemplaterunRequest, GetPreviewtemplaterunResult, GetProjectCall, GetProjectEndpoint, GetProjectParameters, GetProjectRequest, GetProjectResult, GetRegistrycredentialsCall, GetRegistrycredentialsEndpoint, GetRegistrycredentialsParameters, GetRegistrycredentialsRequest, GetRegistrycredentialsResult, GetReleaseflowCall, GetReleaseflowEndpoint, GetReleaseflowParameters, GetReleaseflowRequest, GetReleaseflowResult, GetReleaseflowrunCall, GetReleaseflowrunEndpoint, GetReleaseflowrunParameters, GetReleaseflowrunRequest, GetReleaseflowrunResult, GetSecretCall, GetSecretEndpoint, GetSecretOptions, GetSecretParameters, GetSecretRequest, GetSecretResult, GetSecretdetailsCall, GetSecretdetailsEndpoint, GetSecretdetailsParameters, GetSecretdetailsRequest, GetSecretdetailsResult, GetSecretlinkCall, GetSecretlinkEndpoint, GetSecretlinkParameters, GetSecretlinkRequest, GetSecretlinkResult, GetServiceBranchesCall, GetServiceBranchesEndpoint, GetServiceBranchesOptions, GetServiceBranchesParameters, GetServiceBranchesRequest, GetServiceBranchesResult, GetServiceBuildCall, GetServiceBuildEndpoint, GetServiceBuildMetricsCall, GetServiceBuildMetricsRangeCall, GetServiceBuildParameters, GetServiceBuildRequest, GetServiceBuildResult, GetServiceBuildargumentdetailsCall, GetServiceBuildargumentdetailsEndpoint, GetServiceBuildargumentdetailsParameters, GetServiceBuildargumentdetailsRequest, GetServiceBuildargumentdetailsResult, GetServiceBuildargumentsCall, GetServiceBuildargumentsEndpoint, GetServiceBuildargumentsOptions, GetServiceBuildargumentsParameters, GetServiceBuildargumentsRequest, GetServiceBuildargumentsResult, GetServiceBuildlogsCall, GetServiceBuildsCall, GetServiceBuildsEndpoint, GetServiceBuildsOptions, GetServiceBuildsParameters, GetServiceBuildsRequest, GetServiceBuildsResult, GetServiceCall, GetServiceContainersCall, GetServiceContainersEndpoint, GetServiceContainersOptions, GetServiceContainersParameters, GetServiceContainersRequest, GetServiceContainersResult, GetServiceDeploymentCall, GetServiceDeploymentEndpoint, GetServiceDeploymentParameters, GetServiceDeploymentRequest, GetServiceDeploymentResult, GetServiceEndpoint, GetServiceHealthchecksCall, GetServiceHealthchecksEndpoint, GetServiceHealthchecksParameters, GetServiceHealthchecksRequest, GetServiceHealthchecksResult, GetServiceLogsCall, GetServiceMetricsCall, GetServiceMetricsRangeCall, GetServiceParameters, GetServicePortsCall, GetServicePortsEndpoint, GetServicePortsParameters, GetServicePortsRequest, GetServicePortsResult, GetServicePullrequestsCall, GetServicePullrequestsEndpoint, GetServicePullrequestsOptions, GetServicePullrequestsParameters, GetServicePullrequestsRequest, GetServicePullrequestsResult, GetServiceRequest, GetServiceResult, GetServiceRuntimeenvironmentCall, GetServiceRuntimeenvironmentEndpoint, GetServiceRuntimeenvironmentOptions, GetServiceRuntimeenvironmentParameters, GetServiceRuntimeenvironmentRequest, GetServiceRuntimeenvironmentResult, GetServiceRuntimeenvironmentdetailsCall, GetServiceRuntimeenvironmentdetailsEndpoint, GetServiceRuntimeenvironmentdetailsParameters, GetServiceRuntimeenvironmentdetailsRequest, GetServiceRuntimeenvironmentdetailsResult, GetSubdomainCall, GetSubdomainEndpoint, GetSubdomainParameters, GetSubdomainPathCall, GetSubdomainPathEndpoint, GetSubdomainPathParameters, GetSubdomainPathRequest, GetSubdomainPathResult, GetSubdomainRequest, GetSubdomainResult, GetTagCall, GetTagEndpoint, GetTagParameters, GetTagRequest, GetTagResult, GetTemplateCall, GetTemplateEndpoint, GetTemplateOptions, GetTemplateParameters, GetTemplateRequest, GetTemplateResult, GetTemplaterunCall, GetTemplaterunEndpoint, GetTemplaterunParameters, GetTemplaterunRequest, GetTemplaterunResult, GetVolumeCall, GetVolumeEndpoint, GetVolumeParameters, GetVolumeRequest, GetVolumeResult, ImportAddonBackupCall, ImportAddonBackupData, ImportAddonBackupEndpoint, ImportAddonBackupParameters, ImportAddonBackupRequest, ImportAddonBackupResult, ImportDomaincertificateCall, ImportDomaincertificateData, ImportDomaincertificateEndpoint, ImportDomaincertificateParameters, ImportDomaincertificateRequest, ImportDomaincertificateResult, ListAddonsCall, ListAddonsEndpoint, ListAddonsOptions, ListAddonsParameters, ListAddonsRequest, ListAddonsResult, ListBranchesCall, ListBranchesEndpoint, ListBranchesOptions, ListBranchesParameters, ListBranchesRequest, ListBranchesResult, ListCloudClusterNodesCall, ListCloudClusterNodesEndpoint, ListCloudClusterNodesOptions, ListCloudClusterNodesParameters, ListCloudClusterNodesRequest, ListCloudClusterNodesResult, ListCloudClustersCall, ListCloudClustersEndpoint, ListCloudClustersOptions, ListCloudClustersRequest, ListCloudClustersResult, ListCloudDockerregistryCall, ListCloudDockerregistryEndpoint, ListCloudDockerregistryOptions, ListCloudDockerregistryRequest, ListCloudDockerregistryResult, ListCloudIntegrationsCall, ListCloudIntegrationsEndpoint, ListCloudIntegrationsOptions, ListCloudIntegrationsRequest, ListCloudIntegrationsResult, ListCloudNodetypesCall, ListCloudNodetypesEndpoint, ListCloudNodetypesOptions, ListCloudNodetypesRequest, ListCloudNodetypesResult, ListCloudProvidersCall, ListCloudProvidersEndpoint, ListCloudProvidersRequest, ListCloudProvidersResult, ListCloudRegionsCall, ListCloudRegionsEndpoint, ListCloudRegionsOptions, ListCloudRegionsRequest, ListCloudRegionsResult, ListDomainsCall, ListDomainsEndpoint, ListDomainsOptions, ListDomainsRequest, ListDomainsResult, ListInvoicesCall, ListInvoicesEndpoint, ListInvoicesOptions, ListInvoicesRequest, ListInvoicesResult, ListJobsCall, ListJobsEndpoint, ListJobsOptions, ListJobsParameters, ListJobsRequest, ListJobsResult, ListLogsinksCall, ListLogsinksEndpoint, ListLogsinksOptions, ListLogsinksRequest, ListLogsinksResult, ListNotificationsCall, ListNotificationsEndpoint, ListNotificationsOptions, ListNotificationsRequest, ListNotificationsResult, ListPipelinesCall, ListPipelinesEndpoint, ListPipelinesOptions, ListPipelinesParameters, ListPipelinesRequest, ListPipelinesResult, ListPlansCall, ListPlansEndpoint, ListPlansRequest, ListPlansResult, ListPreviewtemplatepreviewsCall, ListPreviewtemplatepreviewsEndpoint, ListPreviewtemplatepreviewsOptions, ListPreviewtemplatepreviewsParameters, ListPreviewtemplatepreviewsRequest, ListPreviewtemplatepreviewsResult, ListPreviewtemplaterunsCall, ListPreviewtemplaterunsEndpoint, ListPreviewtemplaterunsOptions, ListPreviewtemplaterunsParameters, ListPreviewtemplaterunsRequest, ListPreviewtemplaterunsResult, ListProjectsCall, ListProjectsEndpoint, ListProjectsOptions, ListProjectsRequest, ListProjectsResult, ListRegionsCall, ListRegionsEndpoint, ListRegionsRequest, ListRegionsResult, ListRegistrycredentialsCall, ListRegistrycredentialsEndpoint, ListRegistrycredentialsOptions, ListRegistrycredentialsRequest, ListRegistrycredentialsResult, ListReleaseflowrunsCall, ListReleaseflowrunsEndpoint, ListReleaseflowrunsOptions, ListReleaseflowrunsParameters, ListReleaseflowrunsRequest, ListReleaseflowrunsResult, ListReposCall, ListReposEndpoint, ListReposOptions, ListReposRequest, ListReposResult, ListSecretsCall, ListSecretsEndpoint, ListSecretsOptions, ListSecretsParameters, ListSecretsRequest, ListSecretsResult, ListServicesCall, ListServicesEndpoint, ListServicesOptions, ListServicesParameters, ListServicesRequest, ListServicesResult, ListSubdomainPathCall, ListSubdomainPathEndpoint, ListSubdomainPathParameters, ListSubdomainPathRequest, ListSubdomainPathResult, ListTagsCall, ListTagsEndpoint, ListTagsOptions, ListTagsRequest, ListTagsResult, ListTemplaterunsCall, ListTemplaterunsEndpoint, ListTemplaterunsOptions, ListTemplaterunsParameters, ListTemplaterunsRequest, ListTemplaterunsResult, ListTemplatesCall, ListTemplatesEndpoint, ListTemplatesOptions, ListTemplatesRequest, ListTemplatesResult, ListVcsCall, ListVcsEndpoint, ListVcsRequest, ListVcsResult, ListVolumesCall, ListVolumesEndpoint, ListVolumesParameters, ListVolumesRequest, ListVolumesResult, LogLine, LogType, MetricType, MetricUnit, MetricValue, MetricsEntry, MetricsRangeRequestData, MetricsSingleRequestData, NorthflankApiCallError, NorthflankExecCommand, NorthflankLogFetch, NorthflankMetricFetch, NorthflankPortForwarder, PatchAddonCall, PatchAddonData, PatchAddonEndpoint, PatchAddonParameters, PatchAddonRequest, PatchAddonResult, PatchApiEndpoint, PatchJobCronCall, PatchJobCronData, PatchJobCronEndpoint, PatchJobCronParameters, PatchJobCronRequest, PatchJobCronResult, PatchJobManualCall, PatchJobManualData, PatchJobManualEndpoint, PatchJobManualParameters, PatchJobManualRequest, PatchJobManualResult, PatchProjectCall, PatchProjectData, PatchProjectEndpoint, PatchProjectParameters, PatchProjectRequest, PatchProjectResult, PatchSecretCall, PatchSecretData, PatchSecretEndpoint, PatchSecretParameters, PatchSecretRequest, PatchSecretResult, PatchServiceBuildCall, PatchServiceBuildData, PatchServiceBuildEndpoint, PatchServiceBuildParameters, PatchServiceBuildRequest, PatchServiceBuildResult, PatchServiceCombinedCall, PatchServiceCombinedData, PatchServiceCombinedEndpoint, PatchServiceCombinedParameters, PatchServiceCombinedRequest, PatchServiceCombinedResult, PatchServiceDeploymentCall, PatchServiceDeploymentData, PatchServiceDeploymentEndpoint, PatchServiceDeploymentParameters, PatchServiceDeploymentRequest, PatchServiceDeploymentResult, PatchTagCall, PatchTagData, PatchTagEndpoint, PatchTagParameters, PatchTagRequest, PatchTagResult, PauseAddonCall, PauseAddonEndpoint, PauseAddonParameters, PauseAddonRequest, PauseAddonResult, PauseJobCall, PauseJobEndpoint, PauseJobParameters, PauseJobRequest, PauseJobResult, PauseLogsinkCall, PauseLogsinkEndpoint, PauseLogsinkParameters, PauseLogsinkRequest, PauseLogsinkResult, PauseServiceCall, PauseServiceEndpoint, PauseServiceParameters, PauseServiceRequest, PauseServiceResult, PortForwardingInfo, PortForwardingResult, PostApiEndpoint, PutAddonCall, PutAddonData, PutAddonEndpoint, PutAddonParameters, PutAddonRequest, PutAddonResult, PutApiEndpoint, PutJobCronCall, PutJobCronData, PutJobCronEndpoint, PutJobCronParameters, PutJobCronRequest, PutJobCronResult, PutJobManualCall, PutJobManualData, PutJobManualEndpoint, PutJobManualParameters, PutJobManualRequest, PutJobManualResult, PutProjectCall, PutProjectData, PutProjectEndpoint, PutProjectRequest, PutProjectResult, PutSecretCall, PutSecretData, PutSecretEndpoint, PutSecretParameters, PutSecretRequest, PutSecretResult, PutServiceBuildCall, PutServiceBuildData, PutServiceBuildEndpoint, PutServiceBuildParameters, PutServiceBuildRequest, PutServiceBuildResult, PutServiceCombinedCall, PutServiceCombinedData, PutServiceCombinedEndpoint, PutServiceCombinedParameters, PutServiceCombinedRequest, PutServiceCombinedResult, PutServiceDeploymentCall, PutServiceDeploymentData, PutServiceDeploymentEndpoint, PutServiceDeploymentParameters, PutServiceDeploymentRequest, PutServiceDeploymentResult, PutTagCall, PutTagData, PutTagEndpoint, PutTagParameters, PutTagRequest, PutTagResult, ResetAddonCall, ResetAddonEndpoint, ResetAddonParameters, ResetAddonRequest, ResetAddonResult, RestartAddonCall, RestartAddonEndpoint, RestartAddonParameters, RestartAddonRequest, RestartAddonResult, RestartServiceCall, RestartServiceEndpoint, RestartServiceParameters, RestartServiceRequest, RestartServiceResult, RestoreAddonBackupCall, RestoreAddonBackupEndpoint, RestoreAddonBackupOptions, RestoreAddonBackupParameters, RestoreAddonBackupRequest, RestoreAddonBackupResult, ResumeAddonCall, ResumeAddonEndpoint, ResumeAddonParameters, ResumeAddonRequest, ResumeAddonResult, ResumeJobCall, ResumeJobData, ResumeJobEndpoint, ResumeJobParameters, ResumeJobRequest, ResumeJobResult, ResumeLogsinkCall, ResumeLogsinkEndpoint, ResumeLogsinkParameters, ResumeLogsinkRequest, ResumeLogsinkResult, ResumeServiceCall, ResumeServiceData, ResumeServiceEndpoint, ResumeServiceParameters, ResumeServiceRequest, ResumeServiceResult, RetainAddonBackupCall, RetainAddonBackupEndpoint, RetainAddonBackupParameters, RetainAddonBackupRequest, RetainAddonBackupResult, RunReleaseflowCall, RunReleaseflowData, RunReleaseflowEndpoint, RunReleaseflowParameters, RunReleaseflowRequest, RunReleaseflowResult, RunTemplateCall, RunTemplateData, RunTemplateEndpoint, RunTemplateParameters, RunTemplateRequest, RunTemplateResult, ScaleAddonCall, ScaleAddonData, ScaleAddonEndpoint, ScaleAddonParameters, ScaleAddonRequest, ScaleAddonResult, ScaleJobCall, ScaleJobData, ScaleJobEndpoint, ScaleJobParameters, ScaleJobRequest, ScaleJobResult, ScaleServiceCall, ScaleServiceData, ScaleServiceEndpoint, ScaleServiceParameters, ScaleServiceRequest, ScaleServiceResult, StartAddonPitrCall, StartAddonPitrData, StartAddonPitrEndpoint, StartAddonPitrParameters, StartAddonPitrRequest, StartAddonPitrResult, StartJobBuildCall, StartJobBuildData, StartJobBuildEndpoint, StartJobBuildParameters, StartJobBuildRequest, StartJobBuildResult, StartJobRunCall, StartJobRunData, StartJobRunEndpoint, StartJobRunParameters, StartJobRunRequest, StartJobRunResult, StartServiceBuildCall, StartServiceBuildData, StartServiceBuildEndpoint, StartServiceBuildParameters, StartServiceBuildRequest, StartServiceBuildResult, SuspendJobCall, SuspendJobData, SuspendJobEndpoint, SuspendJobParameters, SuspendJobRequest, SuspendJobResult, TailAddonBackupLogsCall, TailAddonLogsCall, TailAddonRestoresLogsCall, TailJobBuildlogsCall, TailJobLogsCall, TailServiceBuildlogsCall, TailServiceLogsCall, UnassignSubdomainCall, UnassignSubdomainEndpoint, UnassignSubdomainParameters, UnassignSubdomainPathCall, UnassignSubdomainPathEndpoint, UnassignSubdomainPathParameters, UnassignSubdomainPathRequest, UnassignSubdomainPathResult, UnassignSubdomainRequest, UnassignSubdomainResult, UpdateAddonNetworksettingsCall, UpdateAddonNetworksettingsData, UpdateAddonNetworksettingsEndpoint, UpdateAddonNetworksettingsParameters, UpdateAddonNetworksettingsRequest, UpdateAddonNetworksettingsResult, UpdateAddonSecurityCall, UpdateAddonSecurityData, UpdateAddonSecurityEndpoint, UpdateAddonSecurityParameters, UpdateAddonSecurityRequest, UpdateAddonSecurityResult, UpdateAddonVersionCall, UpdateAddonVersionData, UpdateAddonVersionEndpoint, UpdateAddonVersionParameters, UpdateAddonVersionRequest, UpdateAddonVersionResult, UpdateCloudClusterCall, UpdateCloudClusterData, UpdateCloudClusterEndpoint, UpdateCloudClusterParameters, UpdateCloudClusterRequest, UpdateCloudClusterResult, UpdateCloudIntegrationCall, UpdateCloudIntegrationData, UpdateCloudIntegrationEndpoint, UpdateCloudIntegrationParameters, UpdateCloudIntegrationRequest, UpdateCloudIntegrationResult, UpdateJobBuildargumentsCall, UpdateJobBuildargumentsData, UpdateJobBuildargumentsEndpoint, UpdateJobBuildargumentsParameters, UpdateJobBuildargumentsRequest, UpdateJobBuildargumentsResult, UpdateJobBuildoptionsCall, UpdateJobBuildoptionsData, UpdateJobBuildoptionsEndpoint, UpdateJobBuildoptionsParameters, UpdateJobBuildoptionsRequest, UpdateJobBuildoptionsResult, UpdateJobBuildsourceCall, UpdateJobBuildsourceData, UpdateJobBuildsourceEndpoint, UpdateJobBuildsourceParameters, UpdateJobBuildsourceRequest, UpdateJobBuildsourceResult, UpdateJobDeploymentCall, UpdateJobDeploymentData, UpdateJobDeploymentEndpoint, UpdateJobDeploymentParameters, UpdateJobDeploymentRequest, UpdateJobDeploymentResult, UpdateJobHealthchecksCall, UpdateJobHealthchecksData, UpdateJobHealthchecksEndpoint, UpdateJobHealthchecksParameters, UpdateJobHealthchecksRequest, UpdateJobHealthchecksResult, UpdateJobRuntimeenvironmentCall, UpdateJobRuntimeenvironmentData, UpdateJobRuntimeenvironmentEndpoint, UpdateJobRuntimeenvironmentParameters, UpdateJobRuntimeenvironmentRequest, UpdateJobRuntimeenvironmentResult, UpdateJobSettingsCall, UpdateJobSettingsData, UpdateJobSettingsEndpoint, UpdateJobSettingsParameters, UpdateJobSettingsRequest, UpdateJobSettingsResult, UpdateLogsinkCall, UpdateLogsinkData, UpdateLogsinkEndpoint, UpdateLogsinkParameters, UpdateLogsinkRequest, UpdateLogsinkResult, UpdateNotificationCall, UpdateNotificationData, UpdateNotificationEndpoint, UpdateNotificationParameters, UpdateNotificationRequest, UpdateNotificationResult, UpdatePreviewtemplateCall, UpdatePreviewtemplateData, UpdatePreviewtemplateEndpoint, UpdatePreviewtemplateParameters, UpdatePreviewtemplateRequest, UpdatePreviewtemplateResult, UpdateRegistrycredentialsCall, UpdateRegistrycredentialsData, UpdateRegistrycredentialsEndpoint, UpdateRegistrycredentialsParameters, UpdateRegistrycredentialsRequest, UpdateRegistrycredentialsResult, UpdateReleaseflowCall, UpdateReleaseflowData, UpdateReleaseflowEndpoint, UpdateReleaseflowParameters, UpdateReleaseflowRequest, UpdateReleaseflowResult, UpdateSecretCall, UpdateSecretData, UpdateSecretEndpoint, UpdateSecretParameters, UpdateSecretRequest, UpdateSecretResult, UpdateSecretlinkCall, UpdateSecretlinkData, UpdateSecretlinkEndpoint, UpdateSecretlinkParameters, UpdateSecretlinkRequest, UpdateSecretlinkResult, UpdateServiceBuildargumentsCall, UpdateServiceBuildargumentsData, UpdateServiceBuildargumentsEndpoint, UpdateServiceBuildargumentsParameters, UpdateServiceBuildargumentsRequest, UpdateServiceBuildargumentsResult, UpdateServiceBuildoptionsCall, UpdateServiceBuildoptionsData, UpdateServiceBuildoptionsEndpoint, UpdateServiceBuildoptionsParameters, UpdateServiceBuildoptionsRequest, UpdateServiceBuildoptionsResult, UpdateServiceBuildsourceCall, UpdateServiceBuildsourceData, UpdateServiceBuildsourceEndpoint, UpdateServiceBuildsourceParameters, UpdateServiceBuildsourceRequest, UpdateServiceBuildsourceResult, UpdateServiceDeploymentCall, UpdateServiceDeploymentData, UpdateServiceDeploymentEndpoint, UpdateServiceDeploymentParameters, UpdateServiceDeploymentRequest, UpdateServiceDeploymentResult, UpdateServiceHealthchecksCall, UpdateServiceHealthchecksData, UpdateServiceHealthchecksEndpoint, UpdateServiceHealthchecksParameters, UpdateServiceHealthchecksRequest, UpdateServiceHealthchecksResult, UpdateServicePortsCall, UpdateServicePortsData, UpdateServicePortsEndpoint, UpdateServicePortsParameters, UpdateServicePortsRequest, UpdateServicePortsResult, UpdateServiceRuntimeenvironmentCall, UpdateServiceRuntimeenvironmentData, UpdateServiceRuntimeenvironmentEndpoint, UpdateServiceRuntimeenvironmentParameters, UpdateServiceRuntimeenvironmentRequest, UpdateServiceRuntimeenvironmentResult, UpdateSubdomainPathCall, UpdateSubdomainPathData, UpdateSubdomainPathEndpoint, UpdateSubdomainPathParameters, UpdateSubdomainPathRequest, UpdateSubdomainPathResult, UpdateTemplateCall, UpdateTemplateData, UpdateTemplateEndpoint, UpdateTemplateParameters, UpdateTemplateRequest, UpdateTemplateResult, UpdateVolumeCall, UpdateVolumeData, UpdateVolumeEndpoint, UpdateVolumeParameters, UpdateVolumeRequest, UpdateVolumeResult, VerifyDomainCall, VerifyDomainEndpoint, VerifyDomainParameters, VerifyDomainRequest, VerifyDomainResult, VerifySubdomainCall, VerifySubdomainEndpoint, VerifySubdomainParameters, VerifySubdomainRequest, VerifySubdomainResult };
23749
+ export { AbortAddonBackupCall, AbortAddonBackupEndpoint, AbortAddonBackupParameters, AbortAddonBackupRequest, AbortAddonBackupResult, AbortAddonRestoreCall, AbortAddonRestoreData, AbortAddonRestoreEndpoint, AbortAddonRestoreOptions, AbortAddonRestoreParameters, AbortAddonRestoreRequest, AbortAddonRestoreResult, AbortJobBuildCall, AbortJobBuildEndpoint, AbortJobBuildParameters, AbortJobBuildRequest, AbortJobBuildResult, AbortJobRunCall, AbortJobRunEndpoint, AbortJobRunParameters, AbortJobRunRequest, AbortJobRunResult, AbortReleaseflowrunCall, AbortReleaseflowrunEndpoint, AbortReleaseflowrunParameters, AbortReleaseflowrunRequest, AbortReleaseflowrunResult, AbortServiceBuildCall, AbortServiceBuildEndpoint, AbortServiceBuildParameters, AbortServiceBuildRequest, AbortServiceBuildResult, AbortTemplaterunCall, AbortTemplaterunEndpoint, AbortTemplaterunParameters, AbortTemplaterunRequest, AbortTemplaterunResult, AddDomainSubdomainCall, AddDomainSubdomainData, AddDomainSubdomainEndpoint, AddDomainSubdomainParameters, AddDomainSubdomainRequest, AddDomainSubdomainResult, AddRegistrycredentialsCall, AddRegistrycredentialsData, AddRegistrycredentialsEndpoint, AddRegistrycredentialsRequest, AddRegistrycredentialsResult, AddSubdomainPathCall, AddSubdomainPathData, AddSubdomainPathEndpoint, AddSubdomainPathParameters, AddSubdomainPathRequest, AddSubdomainPathResult, AddTagCall, AddTagData, AddTagEndpoint, AddTagRequest, AddTagResult, ApiCallError, ApiCallResponse, ApiClient, ApiClientContext, ApiClientContextProvider, ApiClientContextWrapper, ApiClientFileContextProvider, ApiClientInMemoryContextProvider, ApiClientOpts, ApiEndpoint, AssignSubdomainPathCall, AssignSubdomainPathData, AssignSubdomainPathEndpoint, AssignSubdomainPathParameters, AssignSubdomainPathRequest, AssignSubdomainPathResult, AssignSubdomainServiceCall, AssignSubdomainServiceData, AssignSubdomainServiceEndpoint, AssignSubdomainServiceParameters, AssignSubdomainServiceRequest, AssignSubdomainServiceResult, AttachVolumeCall, AttachVolumeData, AttachVolumeEndpoint, AttachVolumeParameters, AttachVolumeRequest, AttachVolumeResult, BackupAddonCall, BackupAddonData, BackupAddonEndpoint, BackupAddonParameters, BackupAddonRequest, BackupAddonResult, CommandResult, CordonCloudClusterNodeCall, CordonCloudClusterNodeEndpoint, CordonCloudClusterNodeParameters, CordonCloudClusterNodeRequest, CordonCloudClusterNodeResult, CreateAddonBackupscheduleCall, CreateAddonBackupscheduleData, CreateAddonBackupscheduleEndpoint, CreateAddonBackupscheduleParameters, CreateAddonBackupscheduleRequest, CreateAddonBackupscheduleResult, CreateAddonCall, CreateAddonData, CreateAddonEndpoint, CreateAddonParameters, CreateAddonRequest, CreateAddonResult, CreateCloudClusterCall, CreateCloudClusterData, CreateCloudClusterEndpoint, CreateCloudClusterRequest, CreateCloudClusterResult, CreateCloudDockerregistryCall, CreateCloudDockerregistryData, CreateCloudDockerregistryEndpoint, CreateCloudDockerregistryRequest, CreateCloudDockerregistryResult, CreateCloudIntegrationCall, CreateCloudIntegrationData, CreateCloudIntegrationEndpoint, CreateCloudIntegrationRequest, CreateCloudIntegrationResult, CreateCustomvcsTokenCall, CreateCustomvcsTokenEndpoint, CreateCustomvcsTokenOptions, CreateCustomvcsTokenParameters, CreateCustomvcsTokenRequest, CreateCustomvcsTokenResult, CreateDomainCall, CreateDomainData, CreateDomainEndpoint, CreateDomainRequest, CreateDomainResult, CreateJobCronCall, CreateJobCronData, CreateJobCronEndpoint, CreateJobCronParameters, CreateJobCronRequest, CreateJobCronResult, CreateJobManualCall, CreateJobManualData, CreateJobManualEndpoint, CreateJobManualParameters, CreateJobManualRequest, CreateJobManualResult, CreateLogsinkCall, CreateLogsinkData, CreateLogsinkEndpoint, CreateLogsinkRequest, CreateLogsinkResult, CreateNotificationCall, CreateNotificationData, CreateNotificationEndpoint, CreateNotificationParameters, CreateNotificationRequest, CreateNotificationResult, CreateProjectCall, CreateProjectData, CreateProjectEndpoint, CreateProjectRequest, CreateProjectResult, CreateSecretCall, CreateSecretData, CreateSecretEndpoint, CreateSecretParameters, CreateSecretRequest, CreateSecretResult, CreateServiceBuildCall, CreateServiceBuildData, CreateServiceBuildEndpoint, CreateServiceBuildParameters, CreateServiceBuildRequest, CreateServiceBuildResult, CreateServiceCombinedCall, CreateServiceCombinedData, CreateServiceCombinedEndpoint, CreateServiceCombinedParameters, CreateServiceCombinedRequest, CreateServiceCombinedResult, CreateServiceDeploymentCall, CreateServiceDeploymentData, CreateServiceDeploymentEndpoint, CreateServiceDeploymentParameters, CreateServiceDeploymentRequest, CreateServiceDeploymentResult, CreateTemplateCall, CreateTemplateData, CreateTemplateEndpoint, CreateTemplateRequest, CreateTemplateResult, CreateVolumeCall, CreateVolumeData, CreateVolumeEndpoint, CreateVolumeParameters, CreateVolumeRequest, CreateVolumeResult, DeleteAddonBackupscheduleCall, DeleteAddonBackupscheduleEndpoint, DeleteAddonBackupscheduleParameters, DeleteAddonBackupscheduleRequest, DeleteAddonBackupscheduleResult, DeleteAddonCall, DeleteAddonEndpoint, DeleteAddonParameters, DeleteAddonRequest, DeleteAddonResult, DeleteApiEndpoint, DeleteBackupCall, DeleteBackupEndpoint, DeleteBackupParameters, DeleteBackupRequest, DeleteBackupResult, DeleteCloudClusterCall, DeleteCloudClusterEndpoint, DeleteCloudClusterParameters, DeleteCloudClusterRequest, DeleteCloudClusterResult, DeleteCloudDockerregistryCall, DeleteCloudDockerregistryEndpoint, DeleteCloudDockerregistryParameters, DeleteCloudDockerregistryRequest, DeleteCloudDockerregistryResult, DeleteCloudIntegrationCall, DeleteCloudIntegrationEndpoint, DeleteCloudIntegrationParameters, DeleteCloudIntegrationRequest, DeleteCloudIntegrationResult, DeleteDomainCall, DeleteDomainEndpoint, DeleteDomainParameters, DeleteDomainRequest, DeleteDomainResult, DeleteJobCall, DeleteJobEndpoint, DeleteJobParameters, DeleteJobRequest, DeleteJobResult, DeleteLogsinkCall, DeleteLogsinkEndpoint, DeleteLogsinkParameters, DeleteLogsinkRequest, DeleteLogsinkResult, DeleteNotificationCall, DeleteNotificationEndpoint, DeleteNotificationParameters, DeleteNotificationRequest, DeleteNotificationResult, DeletePreviewtemplatepreviewCall, DeletePreviewtemplatepreviewEndpoint, DeletePreviewtemplatepreviewParameters, DeletePreviewtemplatepreviewRequest, DeletePreviewtemplatepreviewResult, DeleteProjectCall, DeleteProjectEndpoint, DeleteProjectOptions, DeleteProjectParameters, DeleteProjectRequest, DeleteProjectResult, DeleteRegistrycredentialsCall, DeleteRegistrycredentialsEndpoint, DeleteRegistrycredentialsParameters, DeleteRegistrycredentialsRequest, DeleteRegistrycredentialsResult, DeleteSecretCall, DeleteSecretEndpoint, DeleteSecretParameters, DeleteSecretRequest, DeleteSecretResult, DeleteSecretlinkCall, DeleteSecretlinkEndpoint, DeleteSecretlinkParameters, DeleteSecretlinkRequest, DeleteSecretlinkResult, DeleteServiceCall, DeleteServiceEndpoint, DeleteServiceOptions, DeleteServiceParameters, DeleteServiceRequest, DeleteServiceResult, DeleteSubdomainCall, DeleteSubdomainEndpoint, DeleteSubdomainParameters, DeleteSubdomainPathCall, DeleteSubdomainPathEndpoint, DeleteSubdomainPathParameters, DeleteSubdomainPathRequest, DeleteSubdomainPathResult, DeleteSubdomainRequest, DeleteSubdomainResult, DeleteTagCall, DeleteTagEndpoint, DeleteTagParameters, DeleteTagRequest, DeleteTagResult, DeleteTemplateCall, DeleteTemplateEndpoint, DeleteTemplateParameters, DeleteTemplateRequest, DeleteTemplateResult, DeleteVolumeCall, DeleteVolumeEndpoint, DeleteVolumeParameters, DeleteVolumeRequest, DeleteVolumeResult, DetachVolumeCall, DetachVolumeData, DetachVolumeEndpoint, DetachVolumeParameters, DetachVolumeRequest, DetachVolumeResult, DisableSubdomainCdnCall, DisableSubdomainCdnData, DisableSubdomainCdnEndpoint, DisableSubdomainCdnParameters, DisableSubdomainCdnRequest, DisableSubdomainCdnResult, DrainCloudClusterNodeCall, DrainCloudClusterNodeEndpoint, DrainCloudClusterNodeParameters, DrainCloudClusterNodeRequest, DrainCloudClusterNodeResult, EnableSubdomainCdnCall, EnableSubdomainCdnData, EnableSubdomainCdnEndpoint, EnableSubdomainCdnParameters, EnableSubdomainCdnRequest, EnableSubdomainCdnResult, ExecCommand, ExecCommandData, ExecCommandStandard, ExecSessionData, GetAddonBackupCall, GetAddonBackupDownloadCall, GetAddonBackupDownloadEndpoint, GetAddonBackupDownloadParameters, GetAddonBackupDownloadRequest, GetAddonBackupDownloadResult, GetAddonBackupEndpoint, GetAddonBackupLogsCall, GetAddonBackupParameters, GetAddonBackupRequest, GetAddonBackupRestoresCall, GetAddonBackupRestoresEndpoint, GetAddonBackupRestoresOptions, GetAddonBackupRestoresParameters, GetAddonBackupRestoresRequest, GetAddonBackupRestoresResult, GetAddonBackupResult, GetAddonBackupsCall, GetAddonBackupsEndpoint, GetAddonBackupsOptions, GetAddonBackupsParameters, GetAddonBackupsRequest, GetAddonBackupsResult, GetAddonBackupschedulesCall, GetAddonBackupschedulesEndpoint, GetAddonBackupschedulesOptions, GetAddonBackupschedulesParameters, GetAddonBackupschedulesRequest, GetAddonBackupschedulesResult, GetAddonCall, GetAddonContainersCall, GetAddonContainersEndpoint, GetAddonContainersOptions, GetAddonContainersParameters, GetAddonContainersRequest, GetAddonContainersResult, GetAddonCredentialsCall, GetAddonCredentialsEndpoint, GetAddonCredentialsParameters, GetAddonCredentialsRequest, GetAddonCredentialsResult, GetAddonEndpoint, GetAddonLogsCall, GetAddonMetricsCall, GetAddonMetricsRangeCall, GetAddonParameters, GetAddonPitrwindowCall, GetAddonPitrwindowEndpoint, GetAddonPitrwindowParameters, GetAddonPitrwindowRequest, GetAddonPitrwindowResult, GetAddonRequest, GetAddonRestoresCall, GetAddonRestoresEndpoint, GetAddonRestoresLogsCall, GetAddonRestoresOptions, GetAddonRestoresParameters, GetAddonRestoresRequest, GetAddonRestoresResult, GetAddonResult, GetAddonTypesCall, GetAddonTypesEndpoint, GetAddonTypesRequest, GetAddonTypesResult, GetAddonVersionCall, GetAddonVersionEndpoint, GetAddonVersionParameters, GetAddonVersionRequest, GetAddonVersionResult, GetApiEndpoint, GetCloudClusterCall, GetCloudClusterEndpoint, GetCloudClusterParameters, GetCloudClusterRequest, GetCloudClusterResult, GetCloudDockerregistryCall, GetCloudDockerregistryEndpoint, GetCloudDockerregistryParameters, GetCloudDockerregistryRequest, GetCloudDockerregistryResult, GetCloudIntegrationCall, GetCloudIntegrationEndpoint, GetCloudIntegrationParameters, GetCloudIntegrationRequest, GetCloudIntegrationResult, GetDnsidCall, GetDnsidEndpoint, GetDnsidRequest, GetDnsidResult, GetDomainCall, GetDomainEndpoint, GetDomainParameters, GetDomainRequest, GetDomainResult, GetDomaincertificateCall, GetDomaincertificateEndpoint, GetDomaincertificateParameters, GetDomaincertificateRequest, GetDomaincertificateResult, GetInvoiceDetailsCall, GetInvoiceDetailsEndpoint, GetInvoiceDetailsOptions, GetInvoiceDetailsRequest, GetInvoiceDetailsResult, GetJobBranchesCall, GetJobBranchesEndpoint, GetJobBranchesOptions, GetJobBranchesParameters, GetJobBranchesRequest, GetJobBranchesResult, GetJobBuildCall, GetJobBuildEndpoint, GetJobBuildMetricsCall, GetJobBuildMetricsRangeCall, GetJobBuildParameters, GetJobBuildRequest, GetJobBuildResult, GetJobBuildargumentdetailsCall, GetJobBuildargumentdetailsEndpoint, GetJobBuildargumentdetailsParameters, GetJobBuildargumentdetailsRequest, GetJobBuildargumentdetailsResult, GetJobBuildargumentsCall, GetJobBuildargumentsEndpoint, GetJobBuildargumentsOptions, GetJobBuildargumentsParameters, GetJobBuildargumentsRequest, GetJobBuildargumentsResult, GetJobBuildlogsCall, GetJobBuildsCall, GetJobBuildsEndpoint, GetJobBuildsOptions, GetJobBuildsParameters, GetJobBuildsRequest, GetJobBuildsResult, GetJobCall, GetJobContainersCall, GetJobContainersEndpoint, GetJobContainersOptions, GetJobContainersParameters, GetJobContainersRequest, GetJobContainersResult, GetJobDeploymentCall, GetJobDeploymentEndpoint, GetJobDeploymentParameters, GetJobDeploymentRequest, GetJobDeploymentResult, GetJobEndpoint, GetJobHealthchecksCall, GetJobHealthchecksEndpoint, GetJobHealthchecksParameters, GetJobHealthchecksRequest, GetJobHealthchecksResult, GetJobLogsCall, GetJobMetricsCall, GetJobMetricsRangeCall, GetJobParameters, GetJobPullrequestsCall, GetJobPullrequestsEndpoint, GetJobPullrequestsOptions, GetJobPullrequestsParameters, GetJobPullrequestsRequest, GetJobPullrequestsResult, GetJobRequest, GetJobResult, GetJobRunCall, GetJobRunEndpoint, GetJobRunParameters, GetJobRunRequest, GetJobRunResult, GetJobRunsCall, GetJobRunsEndpoint, GetJobRunsOptions, GetJobRunsParameters, GetJobRunsRequest, GetJobRunsResult, GetJobRuntimeenvironmentCall, GetJobRuntimeenvironmentEndpoint, GetJobRuntimeenvironmentOptions, GetJobRuntimeenvironmentParameters, GetJobRuntimeenvironmentRequest, GetJobRuntimeenvironmentResult, GetJobRuntimeenvironmentdetailsCall, GetJobRuntimeenvironmentdetailsEndpoint, GetJobRuntimeenvironmentdetailsParameters, GetJobRuntimeenvironmentdetailsRequest, GetJobRuntimeenvironmentdetailsResult, GetLogsinkCall, GetLogsinkEndpoint, GetLogsinkParameters, GetLogsinkRequest, GetLogsinkResult, GetNotificationCall, GetNotificationEndpoint, GetNotificationParameters, GetNotificationRequest, GetNotificationResult, GetPipelineCall, GetPipelineEndpoint, GetPipelineParameters, GetPipelineRequest, GetPipelineResult, GetPreviewtemplateCall, GetPreviewtemplateEndpoint, GetPreviewtemplateOptions, GetPreviewtemplateParameters, GetPreviewtemplateRequest, GetPreviewtemplateResult, GetPreviewtemplaterunCall, GetPreviewtemplaterunEndpoint, GetPreviewtemplaterunParameters, GetPreviewtemplaterunRequest, GetPreviewtemplaterunResult, GetProjectCall, GetProjectEndpoint, GetProjectParameters, GetProjectRequest, GetProjectResult, GetRegistrycredentialsCall, GetRegistrycredentialsEndpoint, GetRegistrycredentialsParameters, GetRegistrycredentialsRequest, GetRegistrycredentialsResult, GetReleaseflowCall, GetReleaseflowEndpoint, GetReleaseflowParameters, GetReleaseflowRequest, GetReleaseflowResult, GetReleaseflowrunCall, GetReleaseflowrunEndpoint, GetReleaseflowrunParameters, GetReleaseflowrunRequest, GetReleaseflowrunResult, GetSecretCall, GetSecretEndpoint, GetSecretOptions, GetSecretParameters, GetSecretRequest, GetSecretResult, GetSecretdetailsCall, GetSecretdetailsEndpoint, GetSecretdetailsParameters, GetSecretdetailsRequest, GetSecretdetailsResult, GetSecretlinkCall, GetSecretlinkEndpoint, GetSecretlinkParameters, GetSecretlinkRequest, GetSecretlinkResult, GetServiceBranchesCall, GetServiceBranchesEndpoint, GetServiceBranchesOptions, GetServiceBranchesParameters, GetServiceBranchesRequest, GetServiceBranchesResult, GetServiceBuildCall, GetServiceBuildEndpoint, GetServiceBuildMetricsCall, GetServiceBuildMetricsRangeCall, GetServiceBuildParameters, GetServiceBuildRequest, GetServiceBuildResult, GetServiceBuildargumentdetailsCall, GetServiceBuildargumentdetailsEndpoint, GetServiceBuildargumentdetailsParameters, GetServiceBuildargumentdetailsRequest, GetServiceBuildargumentdetailsResult, GetServiceBuildargumentsCall, GetServiceBuildargumentsEndpoint, GetServiceBuildargumentsOptions, GetServiceBuildargumentsParameters, GetServiceBuildargumentsRequest, GetServiceBuildargumentsResult, GetServiceBuildlogsCall, GetServiceBuildsCall, GetServiceBuildsEndpoint, GetServiceBuildsOptions, GetServiceBuildsParameters, GetServiceBuildsRequest, GetServiceBuildsResult, GetServiceCall, GetServiceContainersCall, GetServiceContainersEndpoint, GetServiceContainersOptions, GetServiceContainersParameters, GetServiceContainersRequest, GetServiceContainersResult, GetServiceDeploymentCall, GetServiceDeploymentEndpoint, GetServiceDeploymentParameters, GetServiceDeploymentRequest, GetServiceDeploymentResult, GetServiceEndpoint, GetServiceHealthchecksCall, GetServiceHealthchecksEndpoint, GetServiceHealthchecksParameters, GetServiceHealthchecksRequest, GetServiceHealthchecksResult, GetServiceLogsCall, GetServiceMetricsCall, GetServiceMetricsRangeCall, GetServiceParameters, GetServicePortsCall, GetServicePortsEndpoint, GetServicePortsParameters, GetServicePortsRequest, GetServicePortsResult, GetServicePullrequestsCall, GetServicePullrequestsEndpoint, GetServicePullrequestsOptions, GetServicePullrequestsParameters, GetServicePullrequestsRequest, GetServicePullrequestsResult, GetServiceRequest, GetServiceResult, GetServiceRuntimeenvironmentCall, GetServiceRuntimeenvironmentEndpoint, GetServiceRuntimeenvironmentOptions, GetServiceRuntimeenvironmentParameters, GetServiceRuntimeenvironmentRequest, GetServiceRuntimeenvironmentResult, GetServiceRuntimeenvironmentdetailsCall, GetServiceRuntimeenvironmentdetailsEndpoint, GetServiceRuntimeenvironmentdetailsParameters, GetServiceRuntimeenvironmentdetailsRequest, GetServiceRuntimeenvironmentdetailsResult, GetSubdomainCall, GetSubdomainEndpoint, GetSubdomainParameters, GetSubdomainPathCall, GetSubdomainPathEndpoint, GetSubdomainPathParameters, GetSubdomainPathRequest, GetSubdomainPathResult, GetSubdomainRequest, GetSubdomainResult, GetTagCall, GetTagEndpoint, GetTagParameters, GetTagRequest, GetTagResult, GetTemplateCall, GetTemplateEndpoint, GetTemplateOptions, GetTemplateParameters, GetTemplateRequest, GetTemplateResult, GetTemplaterunCall, GetTemplaterunEndpoint, GetTemplaterunParameters, GetTemplaterunRequest, GetTemplaterunResult, GetVolumeCall, GetVolumeEndpoint, GetVolumeParameters, GetVolumeRequest, GetVolumeResult, ImportAddonBackupCall, ImportAddonBackupData, ImportAddonBackupEndpoint, ImportAddonBackupParameters, ImportAddonBackupRequest, ImportAddonBackupResult, ImportDomaincertificateCall, ImportDomaincertificateData, ImportDomaincertificateEndpoint, ImportDomaincertificateParameters, ImportDomaincertificateRequest, ImportDomaincertificateResult, ListAddonsCall, ListAddonsEndpoint, ListAddonsOptions, ListAddonsParameters, ListAddonsRequest, ListAddonsResult, ListBranchesCall, ListBranchesEndpoint, ListBranchesOptions, ListBranchesParameters, ListBranchesRequest, ListBranchesResult, ListCloudClusterNodesCall, ListCloudClusterNodesEndpoint, ListCloudClusterNodesOptions, ListCloudClusterNodesParameters, ListCloudClusterNodesRequest, ListCloudClusterNodesResult, ListCloudClustersCall, ListCloudClustersEndpoint, ListCloudClustersOptions, ListCloudClustersRequest, ListCloudClustersResult, ListCloudDockerregistryCall, ListCloudDockerregistryEndpoint, ListCloudDockerregistryOptions, ListCloudDockerregistryRequest, ListCloudDockerregistryResult, ListCloudIntegrationsCall, ListCloudIntegrationsEndpoint, ListCloudIntegrationsOptions, ListCloudIntegrationsRequest, ListCloudIntegrationsResult, ListCloudNodetypesCall, ListCloudNodetypesEndpoint, ListCloudNodetypesOptions, ListCloudNodetypesRequest, ListCloudNodetypesResult, ListCloudProvidersCall, ListCloudProvidersEndpoint, ListCloudProvidersRequest, ListCloudProvidersResult, ListCloudRegionsCall, ListCloudRegionsEndpoint, ListCloudRegionsOptions, ListCloudRegionsRequest, ListCloudRegionsResult, ListDomainsCall, ListDomainsEndpoint, ListDomainsOptions, ListDomainsRequest, ListDomainsResult, ListInvoicesCall, ListInvoicesEndpoint, ListInvoicesOptions, ListInvoicesRequest, ListInvoicesResult, ListJobsCall, ListJobsEndpoint, ListJobsOptions, ListJobsParameters, ListJobsRequest, ListJobsResult, ListLogsinksCall, ListLogsinksEndpoint, ListLogsinksOptions, ListLogsinksRequest, ListLogsinksResult, ListNotificationsCall, ListNotificationsEndpoint, ListNotificationsOptions, ListNotificationsRequest, ListNotificationsResult, ListPipelinesCall, ListPipelinesEndpoint, ListPipelinesOptions, ListPipelinesParameters, ListPipelinesRequest, ListPipelinesResult, ListPlansCall, ListPlansEndpoint, ListPlansRequest, ListPlansResult, ListPreviewtemplatepreviewsCall, ListPreviewtemplatepreviewsEndpoint, ListPreviewtemplatepreviewsOptions, ListPreviewtemplatepreviewsParameters, ListPreviewtemplatepreviewsRequest, ListPreviewtemplatepreviewsResult, ListPreviewtemplaterunsCall, ListPreviewtemplaterunsEndpoint, ListPreviewtemplaterunsOptions, ListPreviewtemplaterunsParameters, ListPreviewtemplaterunsRequest, ListPreviewtemplaterunsResult, ListProjectsCall, ListProjectsEndpoint, ListProjectsOptions, ListProjectsRequest, ListProjectsResult, ListRegionsCall, ListRegionsEndpoint, ListRegionsRequest, ListRegionsResult, ListRegistrycredentialsCall, ListRegistrycredentialsEndpoint, ListRegistrycredentialsOptions, ListRegistrycredentialsRequest, ListRegistrycredentialsResult, ListReleaseflowrunsCall, ListReleaseflowrunsEndpoint, ListReleaseflowrunsOptions, ListReleaseflowrunsParameters, ListReleaseflowrunsRequest, ListReleaseflowrunsResult, ListReposCall, ListReposEndpoint, ListReposOptions, ListReposRequest, ListReposResult, ListSecretsCall, ListSecretsEndpoint, ListSecretsOptions, ListSecretsParameters, ListSecretsRequest, ListSecretsResult, ListServicesCall, ListServicesEndpoint, ListServicesOptions, ListServicesParameters, ListServicesRequest, ListServicesResult, ListSubdomainPathCall, ListSubdomainPathEndpoint, ListSubdomainPathParameters, ListSubdomainPathRequest, ListSubdomainPathResult, ListTagsCall, ListTagsEndpoint, ListTagsOptions, ListTagsRequest, ListTagsResult, ListTemplaterunsCall, ListTemplaterunsEndpoint, ListTemplaterunsOptions, ListTemplaterunsParameters, ListTemplaterunsRequest, ListTemplaterunsResult, ListTemplatesCall, ListTemplatesEndpoint, ListTemplatesOptions, ListTemplatesRequest, ListTemplatesResult, ListVcsCall, ListVcsEndpoint, ListVcsRequest, ListVcsResult, ListVolumesCall, ListVolumesEndpoint, ListVolumesParameters, ListVolumesRequest, ListVolumesResult, LogLine, LogType, MetricType, MetricUnit, MetricValue, MetricsEntry, MetricsRangeRequestData, MetricsSingleRequestData, NorthflankApiCallError, NorthflankExecCommand, NorthflankLogFetch, NorthflankMetricFetch, NorthflankPortForwarder, PatchAddonCall, PatchAddonData, PatchAddonEndpoint, PatchAddonParameters, PatchAddonRequest, PatchAddonResult, PatchApiEndpoint, PatchJobCronCall, PatchJobCronData, PatchJobCronEndpoint, PatchJobCronParameters, PatchJobCronRequest, PatchJobCronResult, PatchJobManualCall, PatchJobManualData, PatchJobManualEndpoint, PatchJobManualParameters, PatchJobManualRequest, PatchJobManualResult, PatchProjectCall, PatchProjectData, PatchProjectEndpoint, PatchProjectParameters, PatchProjectRequest, PatchProjectResult, PatchSecretCall, PatchSecretData, PatchSecretEndpoint, PatchSecretParameters, PatchSecretRequest, PatchSecretResult, PatchServiceBuildCall, PatchServiceBuildData, PatchServiceBuildEndpoint, PatchServiceBuildParameters, PatchServiceBuildRequest, PatchServiceBuildResult, PatchServiceCombinedCall, PatchServiceCombinedData, PatchServiceCombinedEndpoint, PatchServiceCombinedParameters, PatchServiceCombinedRequest, PatchServiceCombinedResult, PatchServiceDeploymentCall, PatchServiceDeploymentData, PatchServiceDeploymentEndpoint, PatchServiceDeploymentParameters, PatchServiceDeploymentRequest, PatchServiceDeploymentResult, PatchTagCall, PatchTagData, PatchTagEndpoint, PatchTagParameters, PatchTagRequest, PatchTagResult, PauseAddonCall, PauseAddonEndpoint, PauseAddonParameters, PauseAddonRequest, PauseAddonResult, PauseJobCall, PauseJobEndpoint, PauseJobParameters, PauseJobRequest, PauseJobResult, PauseLogsinkCall, PauseLogsinkEndpoint, PauseLogsinkParameters, PauseLogsinkRequest, PauseLogsinkResult, PauseServiceCall, PauseServiceEndpoint, PauseServiceParameters, PauseServiceRequest, PauseServiceResult, PortForwardingInfo, PortForwardingResult, PostApiEndpoint, PutAddonCall, PutAddonData, PutAddonEndpoint, PutAddonParameters, PutAddonRequest, PutAddonResult, PutApiEndpoint, PutJobCronCall, PutJobCronData, PutJobCronEndpoint, PutJobCronParameters, PutJobCronRequest, PutJobCronResult, PutJobManualCall, PutJobManualData, PutJobManualEndpoint, PutJobManualParameters, PutJobManualRequest, PutJobManualResult, PutProjectCall, PutProjectData, PutProjectEndpoint, PutProjectRequest, PutProjectResult, PutSecretCall, PutSecretData, PutSecretEndpoint, PutSecretParameters, PutSecretRequest, PutSecretResult, PutServiceBuildCall, PutServiceBuildData, PutServiceBuildEndpoint, PutServiceBuildParameters, PutServiceBuildRequest, PutServiceBuildResult, PutServiceCombinedCall, PutServiceCombinedData, PutServiceCombinedEndpoint, PutServiceCombinedParameters, PutServiceCombinedRequest, PutServiceCombinedResult, PutServiceDeploymentCall, PutServiceDeploymentData, PutServiceDeploymentEndpoint, PutServiceDeploymentParameters, PutServiceDeploymentRequest, PutServiceDeploymentResult, PutTagCall, PutTagData, PutTagEndpoint, PutTagParameters, PutTagRequest, PutTagResult, ResetAddonCall, ResetAddonEndpoint, ResetAddonParameters, ResetAddonRequest, ResetAddonResult, RestartAddonCall, RestartAddonEndpoint, RestartAddonParameters, RestartAddonRequest, RestartAddonResult, RestartServiceCall, RestartServiceEndpoint, RestartServiceParameters, RestartServiceRequest, RestartServiceResult, RestoreAddonBackupCall, RestoreAddonBackupEndpoint, RestoreAddonBackupOptions, RestoreAddonBackupParameters, RestoreAddonBackupRequest, RestoreAddonBackupResult, ResumeAddonCall, ResumeAddonEndpoint, ResumeAddonParameters, ResumeAddonRequest, ResumeAddonResult, ResumeJobCall, ResumeJobData, ResumeJobEndpoint, ResumeJobParameters, ResumeJobRequest, ResumeJobResult, ResumeLogsinkCall, ResumeLogsinkEndpoint, ResumeLogsinkParameters, ResumeLogsinkRequest, ResumeLogsinkResult, ResumeServiceCall, ResumeServiceData, ResumeServiceEndpoint, ResumeServiceParameters, ResumeServiceRequest, ResumeServiceResult, RetainAddonBackupCall, RetainAddonBackupEndpoint, RetainAddonBackupParameters, RetainAddonBackupRequest, RetainAddonBackupResult, RunReleaseflowCall, RunReleaseflowData, RunReleaseflowEndpoint, RunReleaseflowParameters, RunReleaseflowRequest, RunReleaseflowResult, RunTemplateCall, RunTemplateData, RunTemplateEndpoint, RunTemplateParameters, RunTemplateRequest, RunTemplateResult, ScaleAddonCall, ScaleAddonData, ScaleAddonEndpoint, ScaleAddonParameters, ScaleAddonRequest, ScaleAddonResult, ScaleJobCall, ScaleJobData, ScaleJobEndpoint, ScaleJobParameters, ScaleJobRequest, ScaleJobResult, ScaleServiceCall, ScaleServiceData, ScaleServiceEndpoint, ScaleServiceParameters, ScaleServiceRequest, ScaleServiceResult, StartAddonPitrCall, StartAddonPitrData, StartAddonPitrEndpoint, StartAddonPitrParameters, StartAddonPitrRequest, StartAddonPitrResult, StartJobBuildCall, StartJobBuildData, StartJobBuildEndpoint, StartJobBuildParameters, StartJobBuildRequest, StartJobBuildResult, StartJobRunCall, StartJobRunData, StartJobRunEndpoint, StartJobRunParameters, StartJobRunRequest, StartJobRunResult, StartServiceBuildCall, StartServiceBuildData, StartServiceBuildEndpoint, StartServiceBuildParameters, StartServiceBuildRequest, StartServiceBuildResult, SuspendJobCall, SuspendJobData, SuspendJobEndpoint, SuspendJobParameters, SuspendJobRequest, SuspendJobResult, TailAddonBackupLogsCall, TailAddonLogsCall, TailAddonRestoresLogsCall, TailJobBuildlogsCall, TailJobLogsCall, TailServiceBuildlogsCall, TailServiceLogsCall, UnassignSubdomainCall, UnassignSubdomainEndpoint, UnassignSubdomainOptions, UnassignSubdomainParameters, UnassignSubdomainPathCall, UnassignSubdomainPathEndpoint, UnassignSubdomainPathParameters, UnassignSubdomainPathRequest, UnassignSubdomainPathResult, UnassignSubdomainRequest, UnassignSubdomainResult, UncordonCloudClusterNodeCall, UncordonCloudClusterNodeEndpoint, UncordonCloudClusterNodeParameters, UncordonCloudClusterNodeRequest, UncordonCloudClusterNodeResult, UpdateAddonNetworksettingsCall, UpdateAddonNetworksettingsData, UpdateAddonNetworksettingsEndpoint, UpdateAddonNetworksettingsParameters, UpdateAddonNetworksettingsRequest, UpdateAddonNetworksettingsResult, UpdateAddonSecurityCall, UpdateAddonSecurityData, UpdateAddonSecurityEndpoint, UpdateAddonSecurityParameters, UpdateAddonSecurityRequest, UpdateAddonSecurityResult, UpdateAddonVersionCall, UpdateAddonVersionData, UpdateAddonVersionEndpoint, UpdateAddonVersionParameters, UpdateAddonVersionRequest, UpdateAddonVersionResult, UpdateCloudClusterCall, UpdateCloudClusterData, UpdateCloudClusterEndpoint, UpdateCloudClusterParameters, UpdateCloudClusterRequest, UpdateCloudClusterResult, UpdateCloudIntegrationCall, UpdateCloudIntegrationData, UpdateCloudIntegrationEndpoint, UpdateCloudIntegrationParameters, UpdateCloudIntegrationRequest, UpdateCloudIntegrationResult, UpdateJobBuildargumentsCall, UpdateJobBuildargumentsData, UpdateJobBuildargumentsEndpoint, UpdateJobBuildargumentsParameters, UpdateJobBuildargumentsRequest, UpdateJobBuildargumentsResult, UpdateJobBuildoptionsCall, UpdateJobBuildoptionsData, UpdateJobBuildoptionsEndpoint, UpdateJobBuildoptionsParameters, UpdateJobBuildoptionsRequest, UpdateJobBuildoptionsResult, UpdateJobBuildsourceCall, UpdateJobBuildsourceData, UpdateJobBuildsourceEndpoint, UpdateJobBuildsourceParameters, UpdateJobBuildsourceRequest, UpdateJobBuildsourceResult, UpdateJobDeploymentCall, UpdateJobDeploymentData, UpdateJobDeploymentEndpoint, UpdateJobDeploymentParameters, UpdateJobDeploymentRequest, UpdateJobDeploymentResult, UpdateJobHealthchecksCall, UpdateJobHealthchecksData, UpdateJobHealthchecksEndpoint, UpdateJobHealthchecksParameters, UpdateJobHealthchecksRequest, UpdateJobHealthchecksResult, UpdateJobRuntimeenvironmentCall, UpdateJobRuntimeenvironmentData, UpdateJobRuntimeenvironmentEndpoint, UpdateJobRuntimeenvironmentParameters, UpdateJobRuntimeenvironmentRequest, UpdateJobRuntimeenvironmentResult, UpdateJobSettingsCall, UpdateJobSettingsData, UpdateJobSettingsEndpoint, UpdateJobSettingsParameters, UpdateJobSettingsRequest, UpdateJobSettingsResult, UpdateLogsinkCall, UpdateLogsinkData, UpdateLogsinkEndpoint, UpdateLogsinkParameters, UpdateLogsinkRequest, UpdateLogsinkResult, UpdateNotificationCall, UpdateNotificationData, UpdateNotificationEndpoint, UpdateNotificationParameters, UpdateNotificationRequest, UpdateNotificationResult, UpdatePreviewtemplateCall, UpdatePreviewtemplateData, UpdatePreviewtemplateEndpoint, UpdatePreviewtemplateParameters, UpdatePreviewtemplateRequest, UpdatePreviewtemplateResult, UpdateRegistrycredentialsCall, UpdateRegistrycredentialsData, UpdateRegistrycredentialsEndpoint, UpdateRegistrycredentialsParameters, UpdateRegistrycredentialsRequest, UpdateRegistrycredentialsResult, UpdateReleaseflowCall, UpdateReleaseflowData, UpdateReleaseflowEndpoint, UpdateReleaseflowParameters, UpdateReleaseflowRequest, UpdateReleaseflowResult, UpdateSecretCall, UpdateSecretData, UpdateSecretEndpoint, UpdateSecretParameters, UpdateSecretRequest, UpdateSecretResult, UpdateSecretlinkCall, UpdateSecretlinkData, UpdateSecretlinkEndpoint, UpdateSecretlinkParameters, UpdateSecretlinkRequest, UpdateSecretlinkResult, UpdateServiceBuildargumentsCall, UpdateServiceBuildargumentsData, UpdateServiceBuildargumentsEndpoint, UpdateServiceBuildargumentsParameters, UpdateServiceBuildargumentsRequest, UpdateServiceBuildargumentsResult, UpdateServiceBuildoptionsCall, UpdateServiceBuildoptionsData, UpdateServiceBuildoptionsEndpoint, UpdateServiceBuildoptionsParameters, UpdateServiceBuildoptionsRequest, UpdateServiceBuildoptionsResult, UpdateServiceBuildsourceCall, UpdateServiceBuildsourceData, UpdateServiceBuildsourceEndpoint, UpdateServiceBuildsourceParameters, UpdateServiceBuildsourceRequest, UpdateServiceBuildsourceResult, UpdateServiceDeploymentCall, UpdateServiceDeploymentData, UpdateServiceDeploymentEndpoint, UpdateServiceDeploymentParameters, UpdateServiceDeploymentRequest, UpdateServiceDeploymentResult, UpdateServiceHealthchecksCall, UpdateServiceHealthchecksData, UpdateServiceHealthchecksEndpoint, UpdateServiceHealthchecksParameters, UpdateServiceHealthchecksRequest, UpdateServiceHealthchecksResult, UpdateServicePortsCall, UpdateServicePortsData, UpdateServicePortsEndpoint, UpdateServicePortsParameters, UpdateServicePortsRequest, UpdateServicePortsResult, UpdateServiceRuntimeenvironmentCall, UpdateServiceRuntimeenvironmentData, UpdateServiceRuntimeenvironmentEndpoint, UpdateServiceRuntimeenvironmentParameters, UpdateServiceRuntimeenvironmentRequest, UpdateServiceRuntimeenvironmentResult, UpdateSubdomainPathCall, UpdateSubdomainPathData, UpdateSubdomainPathEndpoint, UpdateSubdomainPathParameters, UpdateSubdomainPathRequest, UpdateSubdomainPathResult, UpdateTemplateCall, UpdateTemplateData, UpdateTemplateEndpoint, UpdateTemplateParameters, UpdateTemplateRequest, UpdateTemplateResult, UpdateVolumeCall, UpdateVolumeData, UpdateVolumeEndpoint, UpdateVolumeParameters, UpdateVolumeRequest, UpdateVolumeResult, VerifyDomainCall, VerifyDomainEndpoint, VerifyDomainParameters, VerifyDomainRequest, VerifyDomainResult, VerifySubdomainCall, VerifySubdomainEndpoint, VerifySubdomainParameters, VerifySubdomainRequest, VerifySubdomainResult };