@northflank/js-client 0.9.0 → 0.9.1

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.
@@ -5,7 +5,6 @@ import { Stream } from 'node:stream';
5
5
  type Optional<T, K extends keyof T> = Omit<T, K> & Partial<T>;
6
6
  declare abstract class ApiClientContextProvider {
7
7
  private contextWrapper;
8
- constructor();
9
8
  protected loadContext(): void;
10
9
  getInfo(): string;
11
10
  storeContext(contextWrapper: ApiClientContextWrapper): void;
@@ -98,6 +97,7 @@ declare class ApiClientFileContextProvider extends ApiClientContextProvider {
98
97
 
99
98
  declare class ApiClientInMemoryContextProvider extends ApiClientContextProvider {
100
99
  private inMemoryContextWrapper;
100
+ constructor();
101
101
  loadContextWrapper(): ApiClientContextWrapper;
102
102
  protected writeContext(context: ApiClientContextWrapper): void;
103
103
  }
@@ -367,7 +367,7 @@ declare class NorthflankPortForwarder extends EventEmitter {
367
367
  addons: PortForwardingResult[][];
368
368
  }>;
369
369
  withServiceForwarding<T = any>(parameters: {
370
- teamId: string;
370
+ teamId?: string;
371
371
  projectId: string;
372
372
  serviceId: string;
373
373
  instanceId?: string;
@@ -1975,8 +1975,8 @@ type ListCloudClustersResult = {
1975
1975
  'description'?: string;
1976
1976
  /** Cloud provider to be used for the selected resource Example: "gcp" */
1977
1977
  'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'coreweave' | 'aiven' | 'backblaze' | 'akamai' | 'byok';
1978
- /** Region of the cluster. Example: "europe-west2" */
1979
- 'region': string;
1978
+ /** Region of the cluster. Can only be updated for BYOK clusters. Example: "europe-west2" */
1979
+ 'region'?: string;
1980
1980
  'status'?: {
1981
1981
  'state'?: {
1982
1982
  /** Current state of the cluster. Example: "running" */
@@ -2376,6 +2376,11 @@ type ListCloudClustersResult = {
2376
2376
  'byok'?: {
2377
2377
  'nodePoolProviderIdLabel': string;
2378
2378
  };
2379
+ /** Geographic coordinates of the cluster. Optional, used for CDN geo-routing. Only applicable when `provider` is `byok`. */
2380
+ 'coordinates'?: {
2381
+ 'latitude': number;
2382
+ 'longitude': number;
2383
+ };
2379
2384
  /** Auto-generated dns identifier for this cluster. Example: "xxxxxxxxxx" */
2380
2385
  'dns'?: string;
2381
2386
  /** The time the cluster was last updated. Example: "2021-01-20T11:19:53.175Z" */
@@ -2424,8 +2429,8 @@ type CreateCloudClusterResult = {
2424
2429
  'description'?: string;
2425
2430
  /** Cloud provider to be used for the selected resource Example: "gcp" */
2426
2431
  'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'coreweave' | 'aiven' | 'backblaze' | 'akamai' | 'byok';
2427
- /** Region of the cluster. Example: "europe-west2" */
2428
- 'region': string;
2432
+ /** Region of the cluster. Can only be updated for BYOK clusters. Example: "europe-west2" */
2433
+ 'region'?: string;
2429
2434
  'status'?: {
2430
2435
  'state'?: {
2431
2436
  /** Current state of the cluster. Example: "running" */
@@ -2828,6 +2833,11 @@ type CreateCloudClusterResult = {
2828
2833
  'byok'?: {
2829
2834
  'nodePoolProviderIdLabel': string;
2830
2835
  };
2836
+ /** Geographic coordinates of the cluster. Optional, used for CDN geo-routing. Only applicable when `provider` is `byok`. */
2837
+ 'coordinates'?: {
2838
+ 'latitude': number;
2839
+ 'longitude': number;
2840
+ };
2831
2841
  /** Auto-generated dns identifier for this cluster. Example: "xxxxxxxxxx" */
2832
2842
  'dns'?: string;
2833
2843
  /** The time the cluster was last updated. Example: "2021-01-20T11:19:53.175Z" */
@@ -2853,8 +2863,8 @@ type CreateCloudClusterData = {
2853
2863
  'description'?: string;
2854
2864
  /** Cloud provider to be used for the selected resource Example: "gcp" */
2855
2865
  'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'coreweave' | 'aiven' | 'backblaze' | 'akamai' | 'byok';
2856
- /** Region of the cluster. Example: "europe-west2" */
2857
- 'region': string;
2866
+ /** Region of the cluster. Can only be updated for BYOK clusters. Example: "europe-west2" */
2867
+ 'region'?: string;
2858
2868
  /** Deprecated: This field is no longer used, the version is now set by the platform. Example: "1.30" */
2859
2869
  'kubernetesVersion'?: string;
2860
2870
  /** Existing integration to use for this cluster. Example: "gcp-integration" */
@@ -3237,6 +3247,11 @@ type CreateCloudClusterData = {
3237
3247
  'byok'?: {
3238
3248
  'nodePoolProviderIdLabel': string;
3239
3249
  };
3250
+ /** Geographic coordinates of the cluster. Optional, used for CDN geo-routing. Only applicable when `provider` is `byok`. */
3251
+ 'coordinates'?: {
3252
+ 'latitude': number;
3253
+ 'longitude': number;
3254
+ };
3240
3255
  };
3241
3256
  /** Creates a new cluster. */
3242
3257
  declare class CreateCloudClusterEndpoint extends PostApiEndpoint<CreateCloudClusterRequest, CreateCloudClusterResult> {
@@ -3257,8 +3272,8 @@ type PutCloudClusterResult = {
3257
3272
  'description'?: string;
3258
3273
  /** Cloud provider to be used for the selected resource Example: "gcp" */
3259
3274
  'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'coreweave' | 'aiven' | 'backblaze' | 'akamai' | 'byok';
3260
- /** Region of the cluster. Example: "europe-west2" */
3261
- 'region': string;
3275
+ /** Region of the cluster. Can only be updated for BYOK clusters. Example: "europe-west2" */
3276
+ 'region'?: string;
3262
3277
  'status'?: {
3263
3278
  'state'?: {
3264
3279
  /** Current state of the cluster. Example: "running" */
@@ -3661,6 +3676,11 @@ type PutCloudClusterResult = {
3661
3676
  'byok'?: {
3662
3677
  'nodePoolProviderIdLabel': string;
3663
3678
  };
3679
+ /** Geographic coordinates of the cluster. Optional, used for CDN geo-routing. Only applicable when `provider` is `byok`. */
3680
+ 'coordinates'?: {
3681
+ 'latitude': number;
3682
+ 'longitude': number;
3683
+ };
3664
3684
  /** Auto-generated dns identifier for this cluster. Example: "xxxxxxxxxx" */
3665
3685
  'dns'?: string;
3666
3686
  /** The time the cluster was last updated. Example: "2021-01-20T11:19:53.175Z" */
@@ -3686,8 +3706,8 @@ type PutCloudClusterData = {
3686
3706
  'description'?: string;
3687
3707
  /** Cloud provider to be used for the selected resource Example: "gcp" */
3688
3708
  'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'coreweave' | 'aiven' | 'backblaze' | 'akamai' | 'byok';
3689
- /** Region of the cluster. Example: "europe-west2" */
3690
- 'region': string;
3709
+ /** Region of the cluster. Can only be updated for BYOK clusters. Example: "europe-west2" */
3710
+ 'region'?: string;
3691
3711
  /** Deprecated: This field is no longer used, the version is now set by the platform. Example: "1.30" */
3692
3712
  'kubernetesVersion'?: string;
3693
3713
  /** Existing integration to use for this cluster. Example: "gcp-integration" */
@@ -4070,6 +4090,11 @@ type PutCloudClusterData = {
4070
4090
  'byok'?: {
4071
4091
  'nodePoolProviderIdLabel': string;
4072
4092
  };
4093
+ /** Geographic coordinates of the cluster. Optional, used for CDN geo-routing. Only applicable when `provider` is `byok`. */
4094
+ 'coordinates'?: {
4095
+ 'latitude': number;
4096
+ 'longitude': number;
4097
+ };
4073
4098
  };
4074
4099
  /** Creates or update a cluster. */
4075
4100
  declare class PutCloudClusterEndpoint extends PutApiEndpoint<PutCloudClusterRequest, PutCloudClusterResult> {
@@ -4090,8 +4115,8 @@ type GetCloudClusterResult = {
4090
4115
  'description'?: string;
4091
4116
  /** Cloud provider to be used for the selected resource Example: "gcp" */
4092
4117
  'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'coreweave' | 'aiven' | 'backblaze' | 'akamai' | 'byok';
4093
- /** Region of the cluster. Example: "europe-west2" */
4094
- 'region': string;
4118
+ /** Region of the cluster. Can only be updated for BYOK clusters. Example: "europe-west2" */
4119
+ 'region'?: string;
4095
4120
  'status'?: {
4096
4121
  'state'?: {
4097
4122
  /** Current state of the cluster. Example: "running" */
@@ -4494,6 +4519,11 @@ type GetCloudClusterResult = {
4494
4519
  'byok'?: {
4495
4520
  'nodePoolProviderIdLabel': string;
4496
4521
  };
4522
+ /** Geographic coordinates of the cluster. Optional, used for CDN geo-routing. Only applicable when `provider` is `byok`. */
4523
+ 'coordinates'?: {
4524
+ 'latitude': number;
4525
+ 'longitude': number;
4526
+ };
4497
4527
  /** Auto-generated dns identifier for this cluster. Example: "xxxxxxxxxx" */
4498
4528
  'dns'?: string;
4499
4529
  /** The time the cluster was last updated. Example: "2021-01-20T11:19:53.175Z" */
@@ -4535,8 +4565,8 @@ type PatchCloudClusterResult = {
4535
4565
  'description'?: string;
4536
4566
  /** Cloud provider to be used for the selected resource Example: "gcp" */
4537
4567
  'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'coreweave' | 'aiven' | 'backblaze' | 'akamai' | 'byok';
4538
- /** Region of the cluster. Example: "europe-west2" */
4539
- 'region': string;
4568
+ /** Region of the cluster. Can only be updated for BYOK clusters. Example: "europe-west2" */
4569
+ 'region'?: string;
4540
4570
  'status'?: {
4541
4571
  'state'?: {
4542
4572
  /** Current state of the cluster. Example: "running" */
@@ -4939,6 +4969,11 @@ type PatchCloudClusterResult = {
4939
4969
  'byok'?: {
4940
4970
  'nodePoolProviderIdLabel': string;
4941
4971
  };
4972
+ /** Geographic coordinates of the cluster. Optional, used for CDN geo-routing. Only applicable when `provider` is `byok`. */
4973
+ 'coordinates'?: {
4974
+ 'latitude': number;
4975
+ 'longitude': number;
4976
+ };
4942
4977
  /** Auto-generated dns identifier for this cluster. Example: "xxxxxxxxxx" */
4943
4978
  'dns'?: string;
4944
4979
  /** The time the cluster was last updated. Example: "2021-01-20T11:19:53.175Z" */
@@ -4967,6 +5002,8 @@ type PatchCloudClusterData = {
4967
5002
  'name'?: string;
4968
5003
  /** The description of the cluster. Example: "This is a new cluster." */
4969
5004
  'description'?: string;
5005
+ /** Region of the cluster. Can only be updated for BYOK clusters. Example: "europe-west2" */
5006
+ 'region'?: string;
4970
5007
  /** Deprecated: This field is no longer used, the version is now set by the platform. Example: "1.30" */
4971
5008
  'kubernetesVersion'?: string;
4972
5009
  /** An array of node pools for BYOC or BYOK. */
@@ -5283,6 +5320,11 @@ type PatchCloudClusterData = {
5283
5320
  'byok'?: {
5284
5321
  'nodePoolProviderIdLabel': string;
5285
5322
  };
5323
+ /** Geographic coordinates of the cluster. Optional, used for CDN geo-routing. Only applicable when `provider` is `byok`. */
5324
+ 'coordinates'?: {
5325
+ 'latitude': number;
5326
+ 'longitude': number;
5327
+ };
5286
5328
  };
5287
5329
  /** Updates a cluster. */
5288
5330
  declare class PatchCloudClusterEndpoint extends PatchApiEndpoint<PatchCloudClusterRequest, PatchCloudClusterResult> {
@@ -6368,6 +6410,30 @@ declare class ListCloudRegionsEndpoint extends GetApiEndpointPaginated<ListCloud
6368
6410
  body: () => undefined;
6369
6411
  }
6370
6412
 
6413
+ type GetOrgdirectorygroupsResult = {
6414
+ /** An array of org directory groups. */
6415
+ 'directoryGroups': {
6416
+ /** ID of the directory group. Example: "directory_group_1234567890ABCDEFGHIJKLMNOP" */
6417
+ 'id': string;
6418
+ /** Display name of the directory group. */
6419
+ 'name': string;
6420
+ /** ID of the linked group from the Identity Provider (IdP). */
6421
+ 'idpId': string;
6422
+ 'createdAt': string;
6423
+ 'updatedAt': string;
6424
+ }[];
6425
+ };
6426
+ type GetOrgdirectorygroupsCall = (opts: GetOrgdirectorygroupsRequest) => Promise<ApiCallResponse<GetOrgdirectorygroupsResult>>;
6427
+ type GetOrgdirectorygroupsRequest = {};
6428
+ /** Lists the Directory Sync directory groups for the authenticated org. */
6429
+ declare class GetOrgdirectorygroupsEndpoint extends GetApiEndpoint<GetOrgdirectorygroupsRequest, GetOrgdirectorygroupsResult> {
6430
+ description: string;
6431
+ withAuth: boolean;
6432
+ requiredPermissions: string;
6433
+ endpointUrl: (opts: GetOrgdirectorygroupsRequest) => string;
6434
+ body: () => undefined;
6435
+ }
6436
+
6371
6437
  type GetDnsidResult = {
6372
6438
  /** The partially random string associated with the authenticated account, used for generating DNS entries. Example: "exam-1234" */
6373
6439
  'dns': string;
@@ -6698,9 +6764,11 @@ type AddDomainSubdomainParameters = {
6698
6764
  type AddDomainSubdomainData = {
6699
6765
  /** A subdomain to be added. Example: "site" */
6700
6766
  'subdomain': string;
6701
- /** Optional CDN configuration. Currently only available for select users. */
6767
+ /** The routing mode for the subdomain. Determines how traffic is routed. Once set, this cannot be changed. */
6768
+ 'routingMode'?: 'paths' | 'geoRouting';
6769
+ /** Optional CDN configuration. */
6702
6770
  'cdn'?: {
6703
- 'cloudfront'?: {
6771
+ 'northflank'?: {
6704
6772
  'enabled': boolean;
6705
6773
  };
6706
6774
  };
@@ -6725,6 +6793,56 @@ declare class AddDomainSubdomainEndpoint extends PostApiEndpoint<AddDomainSubdom
6725
6793
  body: (payload: AddDomainSubdomainRequest) => string;
6726
6794
  }
6727
6795
 
6796
+ type PutDomainSubdomainResult = {
6797
+ /** The record type to use for the DNS record to verify the subdomain - always CNAME for subdomains. Example: "CNAME" */
6798
+ 'recordType': string;
6799
+ /** The subdomain. Example: "site" */
6800
+ 'name': string;
6801
+ /** The full domain name with subdomain Example: "site.example.com" */
6802
+ 'fullName': string;
6803
+ /** The content to set the DNS record to Example: "site.example.com.user-1234.dns.northflank.app" */
6804
+ 'content': string;
6805
+ /** Whether the subdomain has been verified successfully and can be used. */
6806
+ 'verified': boolean;
6807
+ } | any;
6808
+ type PutDomainSubdomainCall = (opts: PutDomainSubdomainRequest) => Promise<ApiCallResponse<PutDomainSubdomainResult>>;
6809
+ type PutDomainSubdomainRequest = {
6810
+ parameters: PutDomainSubdomainParameters;
6811
+ data: PutDomainSubdomainData;
6812
+ };
6813
+ type PutDomainSubdomainParameters = {
6814
+ /** Name of the domain */
6815
+ 'domain': string;
6816
+ } | {
6817
+ /** ID of the team */
6818
+ 'teamId': string;
6819
+ /** Name of the domain */
6820
+ 'domain': string;
6821
+ };
6822
+ type PutDomainSubdomainData = {
6823
+ /** Subdomain prepended to the domain name Example: "site" */
6824
+ 'name': string;
6825
+ /** Optional advanced configuration for the subdomain. */
6826
+ 'options'?: {
6827
+ /** Desired TLS mode for the subdomain. */
6828
+ 'tlsMode'?: 'default' | 'passthrough';
6829
+ /** Minimum TLS protocol version for the subdomain. Only applicable for non-wildcard subdomains. */
6830
+ 'minTlsProtocolVersion'?: 'TLSV1_2' | 'TLSV1_3';
6831
+ /** The domain will be automatically verified on creation. Only configurable if the relevant feature flag is enabled for you account. */
6832
+ 'autoVerify'?: boolean;
6833
+ /** Alias domains which should be routable. Only configurable if the relevant feature flag is enabled for you account. */
6834
+ 'aliasDomains'?: string[];
6835
+ };
6836
+ };
6837
+ /** Updates subdomain to the domain. */
6838
+ declare class PutDomainSubdomainEndpoint extends PutApiEndpoint<PutDomainSubdomainRequest, PutDomainSubdomainResult> {
6839
+ description: string;
6840
+ withAuth: boolean;
6841
+ requiredPermissions: string;
6842
+ endpointUrl: (opts: PutDomainSubdomainRequest) => string;
6843
+ body: (payload: PutDomainSubdomainRequest) => string;
6844
+ }
6845
+
6728
6846
  type GetSubdomainResult = {
6729
6847
  /** The record type to use for the DNS record to verify the subdomain - always CNAME for subdomains. Example: "CNAME" */
6730
6848
  'recordType': string;
@@ -6745,12 +6863,7 @@ type GetSubdomainResult = {
6745
6863
  'refreshDare'?: string;
6746
6864
  };
6747
6865
  'cdn'?: {
6748
- 'cloudfront'?: {
6749
- 'enabled'?: boolean;
6750
- 'status'?: string;
6751
- 'deployedAt'?: string;
6752
- };
6753
- 'fastly'?: {
6866
+ 'northflank'?: {
6754
6867
  'enabled'?: boolean;
6755
6868
  'status'?: string;
6756
6869
  'options'?: {
@@ -6938,7 +7051,7 @@ type DisableSubdomainCdnParameters = {
6938
7051
  'subdomain': string;
6939
7052
  };
6940
7053
  type DisableSubdomainCdnData = {
6941
- /** Provider for which the CDN on the subdomain should be disabled. Example: "cloudfront" */
7054
+ /** Provider for which the CDN on the subdomain should be disabled. Example: "northflank" */
6942
7055
  'provider': string;
6943
7056
  };
6944
7057
  /** Removes the CDN integration from the given subdomain */
@@ -6970,7 +7083,7 @@ type EnableSubdomainCdnParameters = {
6970
7083
  'subdomain': string;
6971
7084
  };
6972
7085
  type EnableSubdomainCdnData = {
6973
- /** Provider for which a CDN on the subdomain should be enabled. Example: "fastly" */
7086
+ /** Provider for which a CDN on the subdomain should be enabled. Example: "northflank" */
6974
7087
  'provider': string;
6975
7088
  'options'?: {
6976
7089
  'service'?: {
@@ -7012,10 +7125,6 @@ type EnableSubdomainCdnData = {
7012
7125
  'ttl': number;
7013
7126
  }[];
7014
7127
  };
7015
- } | {
7016
- /** Provider for which a CDN on the subdomain should be enabled. Example: "cloudfront" */
7017
- 'provider': string;
7018
- 'options'?: any;
7019
7128
  };
7020
7129
  /** Enables a CDN integration on the given subdomain */
7021
7130
  declare class EnableSubdomainCdnEndpoint extends PostApiEndpoint<EnableSubdomainCdnRequest, EnableSubdomainCdnResult> {
@@ -11483,9 +11592,18 @@ type ListOrgrolesResult = {
11483
11592
  /** Description of the role. Example: "Role for developers." */
11484
11593
  'description'?: string;
11485
11594
  'restrictions': {
11486
- /** Whether restrictions are enabled. */
11487
11595
  'enabled': boolean;
11596
+ 'teams'?: {
11597
+ 'teamId': string;
11598
+ 'restrictions'?: {
11599
+ 'enabled': boolean;
11600
+ 'projects'?: string[];
11601
+ 'restrictionMode'?: 'in' | 'notIn';
11602
+ };
11603
+ }[];
11488
11604
  };
11605
+ /** An array of linked directory groups. Users belonging to any of these linked directory groups will automatically be a member of this role. */
11606
+ 'directoryGroups'?: string[];
11489
11607
  /** Creation time. Example: "2021-01-20T11:19:53.175Z" */
11490
11608
  'createdAt'?: string;
11491
11609
  /** Last updated. Example: "2021-01-20T11:19:53.175Z" */
@@ -11523,9 +11641,18 @@ type CreateOrgroleResult = {
11523
11641
  /** Description of the role. Example: "Role for developers." */
11524
11642
  'description'?: string;
11525
11643
  'restrictions': {
11526
- /** Whether restrictions are enabled. */
11527
11644
  'enabled': boolean;
11645
+ 'teams'?: {
11646
+ 'teamId': string;
11647
+ 'restrictions'?: {
11648
+ 'enabled': boolean;
11649
+ 'projects'?: string[];
11650
+ 'restrictionMode'?: 'in' | 'notIn';
11651
+ };
11652
+ }[];
11528
11653
  };
11654
+ /** An array of linked directory groups. Users belonging to any of these linked directory groups will automatically be a member of this role. */
11655
+ 'directoryGroups'?: string[];
11529
11656
  /** Creation time. Example: "2021-01-20T11:19:53.175Z" */
11530
11657
  'createdAt'?: string;
11531
11658
  /** Last updated. Example: "2021-01-20T11:19:53.175Z" */
@@ -11559,9 +11686,18 @@ type CreateOrgroleData = {
11559
11686
  };
11560
11687
  /** Access restrictions for this role. */
11561
11688
  'restrictions'?: {
11562
- /** Whether restrictions are enabled. */
11563
11689
  'enabled': boolean;
11690
+ 'teams'?: {
11691
+ 'teamId': string;
11692
+ 'restrictions'?: {
11693
+ 'enabled': boolean;
11694
+ 'projects'?: string[];
11695
+ 'restrictionMode'?: 'in' | 'notIn';
11696
+ };
11697
+ }[];
11564
11698
  };
11699
+ /** An array of linked directory groups. Users belonging to any of these linked directory groups will automatically be a member of this role. */
11700
+ 'directoryGroups'?: string[];
11565
11701
  };
11566
11702
  /** Creates a new platform role for the authenticated org. */
11567
11703
  declare class CreateOrgroleEndpoint extends PostApiEndpoint<CreateOrgroleRequest, CreateOrgroleResult> {
@@ -11572,7 +11708,7 @@ declare class CreateOrgroleEndpoint extends PostApiEndpoint<CreateOrgroleRequest
11572
11708
  body: (payload: CreateOrgroleRequest) => string;
11573
11709
  }
11574
11710
 
11575
- type GetOrgroleResult = {
11711
+ type PutOrgroleResult = {
11576
11712
  /** ID of the role. Example: "developer" */
11577
11713
  'id': string;
11578
11714
  /** Display name of the role. Example: "Developer" */
@@ -11580,9 +11716,18 @@ type GetOrgroleResult = {
11580
11716
  /** Description of the role. Example: "Role for developers." */
11581
11717
  'description'?: string;
11582
11718
  'restrictions': {
11583
- /** Whether restrictions are enabled. */
11584
11719
  'enabled': boolean;
11720
+ 'teams'?: {
11721
+ 'teamId': string;
11722
+ 'restrictions'?: {
11723
+ 'enabled': boolean;
11724
+ 'projects'?: string[];
11725
+ 'restrictionMode'?: 'in' | 'notIn';
11726
+ };
11727
+ }[];
11585
11728
  };
11729
+ /** An array of linked directory groups. Users belonging to any of these linked directory groups will automatically be a member of this role. */
11730
+ 'directoryGroups'?: string[];
11586
11731
  /** Creation time. Example: "2021-01-20T11:19:53.175Z" */
11587
11732
  'createdAt'?: string;
11588
11733
  /** Last updated. Example: "2021-01-20T11:19:53.175Z" */
@@ -11596,24 +11741,49 @@ type GetOrgroleResult = {
11596
11741
  'orgScope': string[];
11597
11742
  };
11598
11743
  };
11599
- type GetOrgroleCall = (opts: GetOrgroleRequest) => Promise<ApiCallResponse<GetOrgroleResult>>;
11600
- type GetOrgroleRequest = {
11601
- parameters: GetOrgroleParameters;
11744
+ type PutOrgroleCall = (opts: PutOrgroleRequest) => Promise<ApiCallResponse<PutOrgroleResult>>;
11745
+ type PutOrgroleRequest = {
11746
+ data: PutOrgroleData;
11602
11747
  };
11603
- type GetOrgroleParameters = {
11604
- /** ID of the org role */
11605
- 'roleId': string;
11748
+ type PutOrgroleData = {
11749
+ /** The name of the role. Example: "Developer" */
11750
+ 'name': string;
11751
+ /** A description of the role. Example: "Role for developers." */
11752
+ 'description'?: string;
11753
+ /** Permissions granted by this role. */
11754
+ 'permissions'?: {
11755
+ /** Team-level RBAC permission strings. */
11756
+ 'teamScope'?: string[];
11757
+ /** Project-level RBAC permission strings. */
11758
+ 'projectScope'?: string[];
11759
+ /** Org-level RBAC permission strings. */
11760
+ 'orgScope'?: string[];
11761
+ };
11762
+ /** Access restrictions for this role. */
11763
+ 'restrictions'?: {
11764
+ 'enabled': boolean;
11765
+ 'teams'?: {
11766
+ 'teamId': string;
11767
+ 'restrictions'?: {
11768
+ 'enabled': boolean;
11769
+ 'projects'?: string[];
11770
+ 'restrictionMode'?: 'in' | 'notIn';
11771
+ };
11772
+ }[];
11773
+ };
11774
+ /** An array of linked directory groups. Users belonging to any of these linked directory groups will automatically be a member of this role. */
11775
+ 'directoryGroups'?: string[];
11606
11776
  };
11607
- /** Gets details about a specific org platform role. */
11608
- declare class GetOrgroleEndpoint extends GetApiEndpoint<GetOrgroleRequest, GetOrgroleResult> {
11777
+ /** Creates role or updates all user-editable fields on a platform role for the authenticated org. */
11778
+ declare class PutOrgroleEndpoint extends PutApiEndpoint<PutOrgroleRequest, PutOrgroleResult> {
11609
11779
  description: string;
11610
11780
  withAuth: boolean;
11611
11781
  requiredPermissions: string;
11612
- endpointUrl: (opts: GetOrgroleRequest) => string;
11613
- body: () => undefined;
11782
+ endpointUrl: (opts: PutOrgroleRequest) => string;
11783
+ body: (payload: PutOrgroleRequest) => string;
11614
11784
  }
11615
11785
 
11616
- type UpdateOrgroleResult = {
11786
+ type GetOrgroleResult = {
11617
11787
  /** ID of the role. Example: "developer" */
11618
11788
  'id': string;
11619
11789
  /** Display name of the role. Example: "Developer" */
@@ -11621,9 +11791,18 @@ type UpdateOrgroleResult = {
11621
11791
  /** Description of the role. Example: "Role for developers." */
11622
11792
  'description'?: string;
11623
11793
  'restrictions': {
11624
- /** Whether restrictions are enabled. */
11625
11794
  'enabled': boolean;
11795
+ 'teams'?: {
11796
+ 'teamId': string;
11797
+ 'restrictions'?: {
11798
+ 'enabled': boolean;
11799
+ 'projects'?: string[];
11800
+ 'restrictionMode'?: 'in' | 'notIn';
11801
+ };
11802
+ }[];
11626
11803
  };
11804
+ /** An array of linked directory groups. Users belonging to any of these linked directory groups will automatically be a member of this role. */
11805
+ 'directoryGroups'?: string[];
11627
11806
  /** Creation time. Example: "2021-01-20T11:19:53.175Z" */
11628
11807
  'createdAt'?: string;
11629
11808
  /** Last updated. Example: "2021-01-20T11:19:53.175Z" */
@@ -11637,40 +11816,21 @@ type UpdateOrgroleResult = {
11637
11816
  'orgScope': string[];
11638
11817
  };
11639
11818
  };
11640
- type UpdateOrgroleCall = (opts: UpdateOrgroleRequest) => Promise<ApiCallResponse<UpdateOrgroleResult>>;
11641
- type UpdateOrgroleRequest = {
11642
- parameters: UpdateOrgroleParameters;
11643
- data: UpdateOrgroleData;
11819
+ type GetOrgroleCall = (opts: GetOrgroleRequest) => Promise<ApiCallResponse<GetOrgroleResult>>;
11820
+ type GetOrgroleRequest = {
11821
+ parameters: GetOrgroleParameters;
11644
11822
  };
11645
- type UpdateOrgroleParameters = {
11823
+ type GetOrgroleParameters = {
11646
11824
  /** ID of the org role */
11647
11825
  'roleId': string;
11648
11826
  };
11649
- type UpdateOrgroleData = {
11650
- /** A description of the role. Example: "Role for developers." */
11651
- 'description'?: string;
11652
- /** Permissions granted by this role. */
11653
- 'permissions': {
11654
- /** Team-level RBAC permission strings. */
11655
- 'teamScope'?: string[];
11656
- /** Project-level RBAC permission strings. */
11657
- 'projectScope'?: string[];
11658
- /** Org-level RBAC permission strings. */
11659
- 'orgScope'?: string[];
11660
- };
11661
- /** Access restrictions for this role. */
11662
- 'restrictions'?: {
11663
- /** Whether restrictions are enabled. */
11664
- 'enabled': boolean;
11665
- };
11666
- };
11667
- /** Replaces all user-editable fields on a platform role for the authenticated org. */
11668
- declare class UpdateOrgroleEndpoint extends PutApiEndpoint<UpdateOrgroleRequest, UpdateOrgroleResult> {
11827
+ /** Gets details about a specific org platform role. */
11828
+ declare class GetOrgroleEndpoint extends GetApiEndpoint<GetOrgroleRequest, GetOrgroleResult> {
11669
11829
  description: string;
11670
11830
  withAuth: boolean;
11671
11831
  requiredPermissions: string;
11672
- endpointUrl: (opts: UpdateOrgroleRequest) => string;
11673
- body: (payload: UpdateOrgroleRequest) => string;
11832
+ endpointUrl: (opts: GetOrgroleRequest) => string;
11833
+ body: () => undefined;
11674
11834
  }
11675
11835
 
11676
11836
  type PatchOrgroleResult = {
@@ -11681,9 +11841,18 @@ type PatchOrgroleResult = {
11681
11841
  /** Description of the role. Example: "Role for developers." */
11682
11842
  'description'?: string;
11683
11843
  'restrictions': {
11684
- /** Whether restrictions are enabled. */
11685
11844
  'enabled': boolean;
11845
+ 'teams'?: {
11846
+ 'teamId': string;
11847
+ 'restrictions'?: {
11848
+ 'enabled': boolean;
11849
+ 'projects'?: string[];
11850
+ 'restrictionMode'?: 'in' | 'notIn';
11851
+ };
11852
+ }[];
11686
11853
  };
11854
+ /** An array of linked directory groups. Users belonging to any of these linked directory groups will automatically be a member of this role. */
11855
+ 'directoryGroups'?: string[];
11687
11856
  /** Creation time. Example: "2021-01-20T11:19:53.175Z" */
11688
11857
  'createdAt'?: string;
11689
11858
  /** Last updated. Example: "2021-01-20T11:19:53.175Z" */
@@ -11707,8 +11876,6 @@ type PatchOrgroleParameters = {
11707
11876
  'roleId': string;
11708
11877
  };
11709
11878
  type PatchOrgroleData = {
11710
- /** The name of the role. Example: "Developer" */
11711
- 'name'?: string;
11712
11879
  /** A description of the role. Example: "Role for developers." */
11713
11880
  'description'?: string;
11714
11881
  /** Permissions granted by this role. */
@@ -11722,9 +11889,18 @@ type PatchOrgroleData = {
11722
11889
  };
11723
11890
  /** Access restrictions for this role. */
11724
11891
  'restrictions'?: {
11725
- /** Whether restrictions are enabled. */
11726
11892
  'enabled': boolean;
11893
+ 'teams'?: {
11894
+ 'teamId': string;
11895
+ 'restrictions'?: {
11896
+ 'enabled': boolean;
11897
+ 'projects'?: string[];
11898
+ 'restrictionMode'?: 'in' | 'notIn';
11899
+ };
11900
+ }[];
11727
11901
  };
11902
+ /** An array of linked directory groups. Users belonging to any of these linked directory groups will automatically be a member of this role. */
11903
+ 'directoryGroups'?: string[];
11728
11904
  };
11729
11905
  /** Partially updates a platform role for the authenticated org. */
11730
11906
  declare class PatchOrgroleEndpoint extends PatchApiEndpoint<PatchOrgroleRequest, PatchOrgroleResult> {
@@ -12680,7 +12856,7 @@ type CreateAddonResult = {
12680
12856
  }[];
12681
12857
  'typeSpecificSettings'?: {
12682
12858
  /** Redis only: Key eviction policy at memory pressure. */
12683
- 'redisMaxMemoryPolicy'?: 'noeviction' | 'allkeys-lru' | 'allkeys-lfu' | 'volatile-lru' | 'volatile-lfu' | 'allkeys-random' | 'volatile-random' | 'volatile-ttl';
12859
+ 'redisMaxMemoryPolicy'?: 'noeviction' | 'allkeys-lru' | 'allkeys-lfu' | 'volatile-lru' | 'volatile-lfu' | 'allkeys-random' | 'volatile-random' | 'volatile-ttl' | 'volatile-lrm' | 'allkeys-lrm';
12684
12860
  /** Redis only: Deploy Redis with Sentinel high availability. Default: false */
12685
12861
  'redisSentinelEnabled'?: boolean;
12686
12862
  /** PostgreSQL only: Configure wal_level setting. */
@@ -12872,7 +13048,7 @@ type CreateAddonData = {
12872
13048
  }[];
12873
13049
  'typeSpecificSettings'?: {
12874
13050
  /** Redis only: Key eviction policy at memory pressure. */
12875
- 'redisMaxMemoryPolicy'?: 'noeviction' | 'allkeys-lru' | 'allkeys-lfu' | 'volatile-lru' | 'volatile-lfu' | 'allkeys-random' | 'volatile-random' | 'volatile-ttl';
13051
+ 'redisMaxMemoryPolicy'?: 'noeviction' | 'allkeys-lru' | 'allkeys-lfu' | 'volatile-lru' | 'volatile-lfu' | 'allkeys-random' | 'volatile-random' | 'volatile-ttl' | 'volatile-lrm' | 'allkeys-lrm';
12876
13052
  /** Redis only: Deploy Redis with Sentinel high availability. Default: false */
12877
13053
  'redisSentinelEnabled'?: boolean;
12878
13054
  /** PostgreSQL only: Configure wal_level setting. */
@@ -13017,7 +13193,7 @@ type PutAddonResult = {
13017
13193
  }[];
13018
13194
  'typeSpecificSettings'?: {
13019
13195
  /** Redis only: Key eviction policy at memory pressure. */
13020
- 'redisMaxMemoryPolicy'?: 'noeviction' | 'allkeys-lru' | 'allkeys-lfu' | 'volatile-lru' | 'volatile-lfu' | 'allkeys-random' | 'volatile-random' | 'volatile-ttl';
13196
+ 'redisMaxMemoryPolicy'?: 'noeviction' | 'allkeys-lru' | 'allkeys-lfu' | 'volatile-lru' | 'volatile-lfu' | 'allkeys-random' | 'volatile-random' | 'volatile-ttl' | 'volatile-lrm' | 'allkeys-lrm';
13021
13197
  /** Redis only: Deploy Redis with Sentinel high availability. Default: false */
13022
13198
  'redisSentinelEnabled'?: boolean;
13023
13199
  /** PostgreSQL only: Configure wal_level setting. */
@@ -13209,7 +13385,7 @@ type PutAddonData = {
13209
13385
  }[];
13210
13386
  'typeSpecificSettings'?: {
13211
13387
  /** Redis only: Key eviction policy at memory pressure. */
13212
- 'redisMaxMemoryPolicy'?: 'noeviction' | 'allkeys-lru' | 'allkeys-lfu' | 'volatile-lru' | 'volatile-lfu' | 'allkeys-random' | 'volatile-random' | 'volatile-ttl';
13388
+ 'redisMaxMemoryPolicy'?: 'noeviction' | 'allkeys-lru' | 'allkeys-lfu' | 'volatile-lru' | 'volatile-lfu' | 'allkeys-random' | 'volatile-random' | 'volatile-ttl' | 'volatile-lrm' | 'allkeys-lrm';
13213
13389
  /** Redis only: Deploy Redis with Sentinel high availability. Default: false */
13214
13390
  'redisSentinelEnabled'?: boolean;
13215
13391
  /** PostgreSQL only: Configure wal_level setting. */
@@ -13449,7 +13625,7 @@ type PatchAddonResult = {
13449
13625
  }[];
13450
13626
  'typeSpecificSettings'?: {
13451
13627
  /** Redis only: Key eviction policy at memory pressure. */
13452
- 'redisMaxMemoryPolicy'?: 'noeviction' | 'allkeys-lru' | 'allkeys-lfu' | 'volatile-lru' | 'volatile-lfu' | 'allkeys-random' | 'volatile-random' | 'volatile-ttl';
13628
+ 'redisMaxMemoryPolicy'?: 'noeviction' | 'allkeys-lru' | 'allkeys-lfu' | 'volatile-lru' | 'volatile-lfu' | 'allkeys-random' | 'volatile-random' | 'volatile-ttl' | 'volatile-lrm' | 'allkeys-lrm';
13453
13629
  /** Redis only: Deploy Redis with Sentinel high availability. Default: false */
13454
13630
  'redisSentinelEnabled'?: boolean;
13455
13631
  /** PostgreSQL only: Configure wal_level setting. */
@@ -13618,7 +13794,7 @@ type PatchAddonData = {
13618
13794
  }[];
13619
13795
  'typeSpecificSettings'?: {
13620
13796
  /** Redis only: Key eviction policy at memory pressure. */
13621
- 'redisMaxMemoryPolicy'?: 'noeviction' | 'allkeys-lru' | 'allkeys-lfu' | 'volatile-lru' | 'volatile-lfu' | 'allkeys-random' | 'volatile-random' | 'volatile-ttl';
13797
+ 'redisMaxMemoryPolicy'?: 'noeviction' | 'allkeys-lru' | 'allkeys-lfu' | 'volatile-lru' | 'volatile-lfu' | 'allkeys-random' | 'volatile-random' | 'volatile-ttl' | 'volatile-lrm' | 'allkeys-lrm';
13622
13798
  /** Redis only: Deploy Redis with Sentinel high availability. Default: false */
13623
13799
  'redisSentinelEnabled'?: boolean;
13624
13800
  /** PostgreSQL only: Configure wal_level setting. */
@@ -21995,11 +22171,11 @@ declare class SuspendJobEndpoint extends PostApiEndpoint<SuspendJobRequest, Susp
21995
22171
  }
21996
22172
 
21997
22173
  type ListLlmmodeldeploymentsResult = {
21998
- /** An array of LLM model deployments in this project. */
22174
+ /** An array of AI models in this project. */
21999
22175
  'llmModelDeployments': {
22000
- /** The name of the LLM model deployment. Example: "deepseek-v3-deployment" */
22176
+ /** The name of the AI model. Example: "deepseek-v3-deployment" */
22001
22177
  'name': string;
22002
- /** A description of the LLM model deployment. Example: "A deployment for DeepSeek V3 model" */
22178
+ /** A description of the AI model. Example: "A deployment for DeepSeek V3 model" */
22003
22179
  'description'?: string;
22004
22180
  /** An array of previously defined tags to help identify and group the resource. */
22005
22181
  'tags'?: string[];
@@ -22059,21 +22235,21 @@ type ListLlmmodeldeploymentsResult = {
22059
22235
  };
22060
22236
  };
22061
22237
  };
22062
- /** The unique identifier of the LLM model deployment. */
22238
+ /** The unique identifier of the AI model. */
22063
22239
  'id': string;
22064
- /** ID of the project that the LLM model deployment belongs to Example: "default-project" */
22240
+ /** ID of the project that the AI model belongs to Example: "default-project" */
22065
22241
  'projectId': string;
22066
22242
  /** The entity ID (team) this deployment belongs to. */
22067
22243
  'entityId': string;
22068
22244
  'entityType': 'user' | 'team' | 'org';
22069
22245
  /** The user who created this deployment. */
22070
22246
  'creatorId': string;
22071
- /** DNS configuration for the LLM model deployment. */
22247
+ /** DNS configuration for the AI model. */
22072
22248
  'dns': {
22073
22249
  'base': string;
22074
22250
  'zone': string;
22075
22251
  };
22076
- /** An array of ports for the LLM model deployment. */
22252
+ /** An array of ports for the AI model. */
22077
22253
  'ports': {
22078
22254
  /** The id used to identify the port across requests. */
22079
22255
  'id': string;
@@ -22090,7 +22266,7 @@ type ListLlmmodeldeploymentsResult = {
22090
22266
  /** Disable routing on the default code.run domain for public HTTP ports with custom domains. */
22091
22267
  'disableNfDomain'?: boolean;
22092
22268
  }[];
22093
- /** The current status of the LLM model deployment. */
22269
+ /** The current status of the AI model. */
22094
22270
  'status': 'pending' | 'provisioning' | 'starting' | 'crashed' | 'paused' | 'running' | 'deleting';
22095
22271
  /** time of creation */
22096
22272
  'createdAt'?: string;
@@ -22122,7 +22298,7 @@ type ListLlmmodeldeploymentsOptions = {
22122
22298
  /** The cursor returned from the previous page of results, used to request the next page. */
22123
22299
  'cursor'?: string;
22124
22300
  };
22125
- /** Lists all LLM model deployments for a project */
22301
+ /** Lists all AI models for a project */
22126
22302
  declare class ListLlmmodeldeploymentsEndpoint extends GetApiEndpointPaginated<ListLlmmodeldeploymentsRequest, ListLlmmodeldeploymentsResult> {
22127
22303
  description: string;
22128
22304
  withAuth: boolean;
@@ -22147,9 +22323,9 @@ type CreateLlmmodeldeploymentParameters = {
22147
22323
  'projectId': string;
22148
22324
  };
22149
22325
  type CreateLlmmodeldeploymentData = {
22150
- /** The name of the LLM model deployment. Example: "deepseek-v3-deployment" */
22326
+ /** The name of the AI model. Example: "deepseek-v3-deployment" */
22151
22327
  'name': string;
22152
- /** A description of the LLM model deployment. Example: "A deployment for DeepSeek V3 model" */
22328
+ /** A description of the AI model. Example: "A deployment for DeepSeek V3 model" */
22153
22329
  'description'?: string;
22154
22330
  /** An array of previously defined tags to help identify and group the resource. */
22155
22331
  'tags'?: string[];
@@ -22224,7 +22400,7 @@ type CreateLlmmodeldeploymentData = {
22224
22400
  };
22225
22401
  };
22226
22402
  };
22227
- /** Create an LLM model deployment */
22403
+ /** Create an AI model */
22228
22404
  declare class CreateLlmmodeldeploymentEndpoint extends PostApiEndpoint<CreateLlmmodeldeploymentRequest, CreateLlmmodeldeploymentResult> {
22229
22405
  description: string;
22230
22406
  withAuth: boolean;
@@ -22234,9 +22410,9 @@ declare class CreateLlmmodeldeploymentEndpoint extends PostApiEndpoint<CreateLlm
22234
22410
  }
22235
22411
 
22236
22412
  type GetLlmmodeldeploymentResult = {
22237
- /** The name of the LLM model deployment. Example: "deepseek-v3-deployment" */
22413
+ /** The name of the AI model. Example: "deepseek-v3-deployment" */
22238
22414
  'name': string;
22239
- /** A description of the LLM model deployment. Example: "A deployment for DeepSeek V3 model" */
22415
+ /** A description of the AI model. Example: "A deployment for DeepSeek V3 model" */
22240
22416
  'description'?: string;
22241
22417
  /** An array of previously defined tags to help identify and group the resource. */
22242
22418
  'tags'?: string[];
@@ -22296,21 +22472,21 @@ type GetLlmmodeldeploymentResult = {
22296
22472
  };
22297
22473
  };
22298
22474
  };
22299
- /** The unique identifier of the LLM model deployment. */
22475
+ /** The unique identifier of the AI model. */
22300
22476
  'id': string;
22301
- /** ID of the project that the LLM model deployment belongs to Example: "default-project" */
22477
+ /** ID of the project that the AI model belongs to Example: "default-project" */
22302
22478
  'projectId': string;
22303
22479
  /** The entity ID (team) this deployment belongs to. */
22304
22480
  'entityId': string;
22305
22481
  'entityType': 'user' | 'team' | 'org';
22306
22482
  /** The user who created this deployment. */
22307
22483
  'creatorId': string;
22308
- /** DNS configuration for the LLM model deployment. */
22484
+ /** DNS configuration for the AI model. */
22309
22485
  'dns': {
22310
22486
  'base': string;
22311
22487
  'zone': string;
22312
22488
  };
22313
- /** An array of ports for the LLM model deployment. */
22489
+ /** An array of ports for the AI model. */
22314
22490
  'ports': {
22315
22491
  /** The id used to identify the port across requests. */
22316
22492
  'id': string;
@@ -22327,7 +22503,7 @@ type GetLlmmodeldeploymentResult = {
22327
22503
  /** Disable routing on the default code.run domain for public HTTP ports with custom domains. */
22328
22504
  'disableNfDomain'?: boolean;
22329
22505
  }[];
22330
- /** The current status of the LLM model deployment. */
22506
+ /** The current status of the AI model. */
22331
22507
  'status': 'pending' | 'provisioning' | 'starting' | 'crashed' | 'paused' | 'running' | 'deleting';
22332
22508
  /** time of creation */
22333
22509
  'createdAt'?: string;
@@ -22341,17 +22517,17 @@ type GetLlmmodeldeploymentRequest = {
22341
22517
  type GetLlmmodeldeploymentParameters = {
22342
22518
  /** ID of the project */
22343
22519
  'projectId': string;
22344
- /** ID of the LLM model deployment */
22520
+ /** ID of the AI model */
22345
22521
  'llmModelDeploymentId': string;
22346
22522
  } | {
22347
22523
  /** ID of the team */
22348
22524
  'teamId': string;
22349
22525
  /** ID of the project */
22350
22526
  'projectId': string;
22351
- /** ID of the LLM model deployment */
22527
+ /** ID of the AI model */
22352
22528
  'llmModelDeploymentId': string;
22353
22529
  };
22354
- /** Gets details about an LLM model deployment */
22530
+ /** Gets details about an AI model */
22355
22531
  declare class GetLlmmodeldeploymentEndpoint extends GetApiEndpoint<GetLlmmodeldeploymentRequest, GetLlmmodeldeploymentResult> {
22356
22532
  description: string;
22357
22533
  withAuth: boolean;
@@ -22369,20 +22545,20 @@ type UpdateLlmmodeldeploymentRequest = {
22369
22545
  type UpdateLlmmodeldeploymentParameters = {
22370
22546
  /** ID of the project */
22371
22547
  'projectId': string;
22372
- /** ID of the LLM model deployment */
22548
+ /** ID of the AI model */
22373
22549
  'llmModelDeploymentId': string;
22374
22550
  } | {
22375
22551
  /** ID of the team */
22376
22552
  'teamId': string;
22377
22553
  /** ID of the project */
22378
22554
  'projectId': string;
22379
- /** ID of the LLM model deployment */
22555
+ /** ID of the AI model */
22380
22556
  'llmModelDeploymentId': string;
22381
22557
  };
22382
22558
  type UpdateLlmmodeldeploymentData = {
22383
- /** The name of the LLM model deployment. Example: "deepseek-v3-deployment" */
22559
+ /** The name of the AI model. Example: "deepseek-v3-deployment" */
22384
22560
  'name'?: string;
22385
- /** A description of the LLM model deployment. Example: "A deployment for DeepSeek V3 model" */
22561
+ /** A description of the AI model. Example: "A deployment for DeepSeek V3 model" */
22386
22562
  'description'?: string;
22387
22563
  /** An array of previously defined tags to help identify and group the resource. */
22388
22564
  'tags'?: string[];
@@ -22454,7 +22630,7 @@ type UpdateLlmmodeldeploymentData = {
22454
22630
  };
22455
22631
  };
22456
22632
  };
22457
- /** Updates an LLM model deployment */
22633
+ /** Updates an AI model */
22458
22634
  declare class UpdateLlmmodeldeploymentEndpoint extends PostApiEndpoint<UpdateLlmmodeldeploymentRequest, UpdateLlmmodeldeploymentResult> {
22459
22635
  description: string;
22460
22636
  withAuth: boolean;
@@ -22471,17 +22647,17 @@ type DeleteLlmmodeldeploymentRequest = {
22471
22647
  type DeleteLlmmodeldeploymentParameters = {
22472
22648
  /** ID of the project */
22473
22649
  'projectId': string;
22474
- /** ID of the LLM model deployment */
22650
+ /** ID of the AI model */
22475
22651
  'llmModelDeploymentId': string;
22476
22652
  } | {
22477
22653
  /** ID of the team */
22478
22654
  'teamId': string;
22479
22655
  /** ID of the project */
22480
22656
  'projectId': string;
22481
- /** ID of the LLM model deployment */
22657
+ /** ID of the AI model */
22482
22658
  'llmModelDeploymentId': string;
22483
22659
  };
22484
- /** Delete an LLM model deployment */
22660
+ /** Delete an AI model */
22485
22661
  declare class DeleteLlmmodeldeploymentEndpoint extends DeleteApiEndpoint<DeleteLlmmodeldeploymentRequest, DeleteLlmmodeldeploymentResult> {
22486
22662
  description: string;
22487
22663
  withAuth: boolean;
@@ -22703,7 +22879,7 @@ type UpdatePreviewtemplateData = {
22703
22879
  /** Options regarding how the template is run. */
22704
22880
  'options'?: {
22705
22881
  /** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
22706
- 'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
22882
+ 'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid' | 'latest' | 'replace';
22707
22883
  /** The format of the automatically generated preview name. This is a parsed ref string. */
22708
22884
  'nameFormat'?: string;
22709
22885
  /** If true, the preview name will default to the front of the resource name. */
@@ -22929,7 +23105,7 @@ type RunPreviewtemplateResult = {
22929
23105
  'templateSha': string;
22930
23106
  };
22931
23107
  /** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
22932
- 'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
23108
+ 'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid' | 'latest' | 'replace';
22933
23109
  'options': {
22934
23110
  /** Whether autorun is enabled */
22935
23111
  'autorun': boolean;
@@ -22980,7 +23156,7 @@ type ListPreviewtemplaterunsResult = {
22980
23156
  /** Options regarding how the template is run. */
22981
23157
  'options'?: {
22982
23158
  /** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
22983
- 'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
23159
+ 'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid' | 'latest' | 'replace';
22984
23160
  /** The format of the automatically generated preview name. This is a parsed ref string. */
22985
23161
  'nameFormat'?: string;
22986
23162
  /** If true, the preview name will default to the front of the resource name. */
@@ -23083,7 +23259,7 @@ type GetPreviewtemplaterunResult = {
23083
23259
  /** Options regarding how the template is run. */
23084
23260
  'options'?: {
23085
23261
  /** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
23086
- 'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
23262
+ 'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid' | 'latest' | 'replace';
23087
23263
  /** The format of the automatically generated preview name. This is a parsed ref string. */
23088
23264
  'nameFormat'?: string;
23089
23265
  /** If true, the preview name will default to the front of the resource name. */
@@ -23247,7 +23423,7 @@ type GetReleaseflowResult = {
23247
23423
  /** Options regarding how the template is run. */
23248
23424
  'options'?: {
23249
23425
  /** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
23250
- 'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
23426
+ 'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid' | 'latest' | 'replace';
23251
23427
  /** If `true`, the template will not run when triggered by git. */
23252
23428
  'paused'?: boolean;
23253
23429
  };
@@ -23272,7 +23448,7 @@ type GetReleaseflowResult = {
23272
23448
  'richInputs'?: any[];
23273
23449
  'spec': any;
23274
23450
  /** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
23275
- 'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
23451
+ 'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid' | 'latest' | 'replace';
23276
23452
  /** The stage of the pipeline this release flow belongs to. Example: "Development" */
23277
23453
  'stage'?: string;
23278
23454
  /** Status of the template run Example: "success" */
@@ -23366,7 +23542,7 @@ type UpdateReleaseflowData = {
23366
23542
  /** Options regarding how the template is run. */
23367
23543
  'options'?: {
23368
23544
  /** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
23369
- 'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
23545
+ 'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid' | 'latest' | 'replace';
23370
23546
  /** If `true`, the template will not run when triggered by git. */
23371
23547
  'paused'?: boolean;
23372
23548
  };
@@ -23545,7 +23721,7 @@ type GetReleaseflowrunResult = {
23545
23721
  /** Options regarding how the template is run. */
23546
23722
  'options'?: {
23547
23723
  /** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
23548
- 'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
23724
+ 'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid' | 'latest' | 'replace';
23549
23725
  /** If `true`, the template will not run when triggered by git. */
23550
23726
  'paused'?: boolean;
23551
23727
  };
@@ -23652,7 +23828,7 @@ type AbortReleaseflowrunResult = {
23652
23828
  /** Options regarding how the template is run. */
23653
23829
  'options'?: {
23654
23830
  /** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
23655
- 'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
23831
+ 'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid' | 'latest' | 'replace';
23656
23832
  /** If `true`, the template will not run when triggered by git. */
23657
23833
  'paused'?: boolean;
23658
23834
  };
@@ -23742,7 +23918,7 @@ type ListPreviewblueprintsResult = {
23742
23918
  /** If true, the template will run automatically whenever a change is made to it. */
23743
23919
  'autorun'?: boolean;
23744
23920
  /** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
23745
- 'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
23921
+ 'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid' | 'latest' | 'replace';
23746
23922
  };
23747
23923
  /** Identifier for the preview blueprint Example: "example-workflow" */
23748
23924
  'id': string;
@@ -23829,7 +24005,7 @@ type CreatePreviewblueprintData = {
23829
24005
  /** Options regarding how the template is run. */
23830
24006
  'options'?: {
23831
24007
  /** Defines the concurrency behaviour of the template with respect to parallel runs. */
23832
- 'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
24008
+ 'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid' | 'latest' | 'replace';
23833
24009
  /** The format of the automatically generated preview name. This is a parsed ref string. */
23834
24010
  'nameFormat'?: string;
23835
24011
  /** If true, the preview name will default to the front of the resource name. */
@@ -23919,7 +24095,7 @@ type GetPreviewblueprintResult = {
23919
24095
  /** Options regarding how the template is run. */
23920
24096
  'options'?: {
23921
24097
  /** Defines the concurrency behaviour of the template with respect to parallel runs. */
23922
- 'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
24098
+ 'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid' | 'latest' | 'replace';
23923
24099
  /** The format of the automatically generated preview name. This is a parsed ref string. */
23924
24100
  'nameFormat'?: string;
23925
24101
  /** If true, the preview name will default to the front of the resource name. */
@@ -23969,7 +24145,7 @@ type GetPreviewblueprintResult = {
23969
24145
  'argumentOverrides'?: any;
23970
24146
  'triggers'?: any[];
23971
24147
  /** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
23972
- 'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
24148
+ 'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid' | 'latest' | 'replace';
23973
24149
  /** Status of the template run Example: "success" */
23974
24150
  'status': 'pending' | 'running' | 'success' | 'failure' | 'aborted' | 'aborting' | 'queued' | 'unknown' | 'skipped' | 'waiting' | 'retrying' | 'async_wait' | 'approval_wait';
23975
24151
  /** Whether triggers are paused for this preview blueprint. If `true`, Git triggers and webhook triggers will not run the preview blueprint. */
@@ -24049,7 +24225,7 @@ type UpdatePreviewblueprintData = {
24049
24225
  /** Options regarding how the template is run. */
24050
24226
  'options'?: {
24051
24227
  /** Defines the concurrency behaviour of the template with respect to parallel runs. */
24052
- 'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
24228
+ 'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid' | 'latest' | 'replace';
24053
24229
  /** The format of the automatically generated preview name. This is a parsed ref string. */
24054
24230
  'nameFormat'?: string;
24055
24231
  /** If true, the preview name will default to the front of the resource name. */
@@ -24254,6 +24430,45 @@ declare class PauseBlueprinttemplatepreviewEndpoint extends PostApiEndpoint<Paus
24254
24430
  body: () => undefined;
24255
24431
  }
24256
24432
 
24433
+ type ResetBlueprinttemplatepreviewResult = {
24434
+ /** The time the preview will expire. */
24435
+ 'expiryTime': string;
24436
+ };
24437
+ type ResetBlueprinttemplatepreviewCall = (opts: ResetBlueprinttemplatepreviewRequest) => Promise<ApiCallResponse<ResetBlueprinttemplatepreviewResult>>;
24438
+ type ResetBlueprinttemplatepreviewRequest = {
24439
+ parameters: ResetBlueprinttemplatepreviewParameters;
24440
+ data: ResetBlueprinttemplatepreviewData;
24441
+ };
24442
+ type ResetBlueprinttemplatepreviewParameters = {
24443
+ /** ID of the project */
24444
+ 'projectId': string;
24445
+ /** ID of the preview blueprint */
24446
+ 'previewBlueprintId': string;
24447
+ /** ID of the preview */
24448
+ 'previewId': string;
24449
+ } | {
24450
+ /** ID of the team */
24451
+ 'teamId': string;
24452
+ /** ID of the project */
24453
+ 'projectId': string;
24454
+ /** ID of the preview blueprint */
24455
+ 'previewBlueprintId': string;
24456
+ /** ID of the preview */
24457
+ 'previewId': string;
24458
+ };
24459
+ type ResetBlueprinttemplatepreviewData = {
24460
+ /** If provided, the preview environment will expire after this amount of time, in minutes. */
24461
+ 'lifetime'?: number;
24462
+ };
24463
+ /** Reset the expiry of a preview environment generated by a preview blueprint. */
24464
+ declare class ResetBlueprinttemplatepreviewEndpoint extends PostApiEndpoint<ResetBlueprinttemplatepreviewRequest, ResetBlueprinttemplatepreviewResult> {
24465
+ description: string;
24466
+ withAuth: boolean;
24467
+ requiredPermissions: string;
24468
+ endpointUrl: (opts: ResetBlueprinttemplatepreviewRequest) => string;
24469
+ body: (payload: ResetBlueprinttemplatepreviewRequest) => string;
24470
+ }
24471
+
24257
24472
  type ResumeBlueprinttemplatepreviewResult = any;
24258
24473
  type ResumeBlueprinttemplatepreviewCall = (opts: ResumeBlueprinttemplatepreviewRequest) => Promise<ApiCallResponse<ResumeBlueprinttemplatepreviewResult>>;
24259
24474
  type ResumeBlueprinttemplatepreviewRequest = {
@@ -24418,7 +24633,7 @@ type GetPreviewblueprintrunResult = {
24418
24633
  /** Options regarding how the template is run. */
24419
24634
  'options'?: {
24420
24635
  /** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
24421
- 'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
24636
+ 'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid' | 'latest' | 'replace';
24422
24637
  /** If `true`, the template will not run when triggered by git. */
24423
24638
  'paused'?: boolean;
24424
24639
  };
@@ -24521,7 +24736,7 @@ type AbortPreviewblueprintrunResult = {
24521
24736
  /** Options regarding how the template is run. */
24522
24737
  'options'?: {
24523
24738
  /** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
24524
- 'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
24739
+ 'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid' | 'latest' | 'replace';
24525
24740
  /** If `true`, the template will not run when triggered by git. */
24526
24741
  'paused'?: boolean;
24527
24742
  };
@@ -34649,7 +34864,7 @@ type ListWorkflowsResult = {
34649
34864
  /** If true, the template will run automatically whenever a change is made to it. */
34650
34865
  'autorun'?: boolean;
34651
34866
  /** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
34652
- 'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
34867
+ 'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid' | 'latest' | 'replace';
34653
34868
  };
34654
34869
  /** Identifier for the workflow Example: "example-workflow" */
34655
34870
  'id': string;
@@ -34736,7 +34951,7 @@ type CreateWorkflowData = {
34736
34951
  /** If true, the template will run automatically whenever a change is made to it. */
34737
34952
  'autorun'?: boolean;
34738
34953
  /** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
34739
- 'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
34954
+ 'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid' | 'latest' | 'replace';
34740
34955
  };
34741
34956
  /** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
34742
34957
  'argumentOverrides'?: any;
@@ -34788,7 +35003,7 @@ type GetWorkflowResult = {
34788
35003
  /** If true, the template will run automatically whenever a change is made to it. */
34789
35004
  'autorun'?: boolean;
34790
35005
  /** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
34791
- 'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
35006
+ 'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid' | 'latest' | 'replace';
34792
35007
  };
34793
35008
  /** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
34794
35009
  'argumentOverrides'?: any;
@@ -34796,7 +35011,7 @@ type GetWorkflowResult = {
34796
35011
  'stageId'?: string | null | string;
34797
35012
  'triggers'?: any[];
34798
35013
  /** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
34799
- 'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
35014
+ 'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid' | 'latest' | 'replace';
34800
35015
  /** Status of the template run Example: "success" */
34801
35016
  'status': 'pending' | 'running' | 'success' | 'failure' | 'aborted' | 'aborting' | 'queued' | 'unknown' | 'skipped' | 'waiting' | 'retrying' | 'async_wait' | 'approval_wait';
34802
35017
  /** Whether triggers are paused for this workflow. If `true`, Git triggers and webhook triggers will not run the workflow. */
@@ -34880,7 +35095,7 @@ type UpdateWorkflowData = {
34880
35095
  /** If true, the template will run automatically whenever a change is made to it. */
34881
35096
  'autorun'?: boolean;
34882
35097
  /** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
34883
- 'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
35098
+ 'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid' | 'latest' | 'replace';
34884
35099
  };
34885
35100
  /** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
34886
35101
  'argumentOverrides'?: any;
@@ -35031,7 +35246,7 @@ type GetWorkflowrunResult = {
35031
35246
  /** Options regarding how the template is run. */
35032
35247
  'options'?: {
35033
35248
  /** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
35034
- 'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
35249
+ 'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid' | 'latest' | 'replace';
35035
35250
  /** If `true`, the template will not run when triggered by git. */
35036
35251
  'paused'?: boolean;
35037
35252
  };
@@ -35134,7 +35349,7 @@ type AbortWorkflowrunResult = {
35134
35349
  /** Options regarding how the template is run. */
35135
35350
  'options'?: {
35136
35351
  /** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
35137
- 'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
35352
+ 'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid' | 'latest' | 'replace';
35138
35353
  /** If `true`, the template will not run when triggered by git. */
35139
35354
  'paused'?: boolean;
35140
35355
  };
@@ -36088,13 +36303,10 @@ type ListTeamrolesResult = {
36088
36303
  'name': string;
36089
36304
  /** Description of the role. Example: "Role for developers." */
36090
36305
  'description'?: string;
36091
- 'restrictions': {
36092
- /** Whether project restrictions are enabled. */
36306
+ 'restrictions'?: {
36093
36307
  'enabled': boolean;
36094
- /** Restricted project IDs. */
36095
- 'projects': string[];
36096
- /** Restriction mode. */
36097
- 'restrictionMode'?: string;
36308
+ 'projects'?: string[];
36309
+ 'restrictionMode'?: 'in' | 'notIn';
36098
36310
  };
36099
36311
  /** Creation time. Example: "2021-01-20T11:19:53.175Z" */
36100
36312
  'createdAt'?: string;
@@ -36137,13 +36349,10 @@ type CreateTeamroleResult = {
36137
36349
  'name': string;
36138
36350
  /** Description of the role. Example: "Role for developers." */
36139
36351
  'description'?: string;
36140
- 'restrictions': {
36141
- /** Whether project restrictions are enabled. */
36352
+ 'restrictions'?: {
36142
36353
  'enabled': boolean;
36143
- /** Restricted project IDs. */
36144
- 'projects': string[];
36145
- /** Restriction mode. */
36146
- 'restrictionMode'?: string;
36354
+ 'projects'?: string[];
36355
+ 'restrictionMode'?: 'in' | 'notIn';
36147
36356
  };
36148
36357
  /** Creation time. Example: "2021-01-20T11:19:53.175Z" */
36149
36358
  'createdAt'?: string;
@@ -36179,15 +36388,10 @@ type CreateTeamroleData = {
36179
36388
  };
36180
36389
  /** Project access restrictions for this role. */
36181
36390
  'restrictions'?: {
36182
- /** Whether project restrictions are enabled. */
36183
36391
  'enabled': boolean;
36184
- /** Project IDs this role is restricted to. */
36185
36392
  'projects'?: string[];
36186
- /** Whether the restriction is inclusive or exclusive. */
36187
- 'restrictionMode'?: 'in' | 'not-in';
36393
+ 'restrictionMode'?: 'in' | 'notIn';
36188
36394
  };
36189
- /** User IDs to assign to this role on creation. */
36190
- 'members'?: string[];
36191
36395
  };
36192
36396
  /** Creates a new platform role for a team. */
36193
36397
  declare class CreateTeamroleEndpoint extends PostApiEndpoint<CreateTeamroleRequest, CreateTeamroleResult> {
@@ -36198,20 +36402,17 @@ declare class CreateTeamroleEndpoint extends PostApiEndpoint<CreateTeamroleReque
36198
36402
  body: (payload: CreateTeamroleRequest) => string;
36199
36403
  }
36200
36404
 
36201
- type GetTeamroleResult = {
36405
+ type PutTeamroleResult = {
36202
36406
  /** ID of the role. Example: "developer" */
36203
36407
  'id': string;
36204
36408
  /** Display name of the role. Example: "Developer" */
36205
36409
  'name': string;
36206
36410
  /** Description of the role. Example: "Role for developers." */
36207
36411
  'description'?: string;
36208
- 'restrictions': {
36209
- /** Whether project restrictions are enabled. */
36412
+ 'restrictions'?: {
36210
36413
  'enabled': boolean;
36211
- /** Restricted project IDs. */
36212
- 'projects': string[];
36213
- /** Restriction mode. */
36214
- 'restrictionMode'?: string;
36414
+ 'projects'?: string[];
36415
+ 'restrictionMode'?: 'in' | 'notIn';
36215
36416
  };
36216
36417
  /** Creation time. Example: "2021-01-20T11:19:53.175Z" */
36217
36418
  'createdAt'?: string;
@@ -36224,39 +36425,54 @@ type GetTeamroleResult = {
36224
36425
  'projectScope': string[];
36225
36426
  };
36226
36427
  };
36227
- type GetTeamroleCall = (opts: GetTeamroleRequest) => Promise<ApiCallResponse<GetTeamroleResult>>;
36228
- type GetTeamroleRequest = {
36229
- parameters: GetTeamroleParameters;
36428
+ type PutTeamroleCall = (opts: PutTeamroleRequest) => Promise<ApiCallResponse<PutTeamroleResult>>;
36429
+ type PutTeamroleRequest = {
36430
+ parameters: PutTeamroleParameters;
36431
+ data: PutTeamroleData;
36230
36432
  };
36231
- type GetTeamroleParameters = {
36433
+ type PutTeamroleParameters = {
36232
36434
  /** ID of the team */
36233
36435
  'teamId': string;
36234
- /** ID of the team role */
36235
- 'roleId': string;
36236
36436
  };
36237
- /** Gets details about a specific platform role. */
36238
- declare class GetTeamroleEndpoint extends GetApiEndpoint<GetTeamroleRequest, GetTeamroleResult> {
36437
+ type PutTeamroleData = {
36438
+ /** The name of the role. Example: "Developer" */
36439
+ 'name': string;
36440
+ /** A description of the role. Example: "Role for developers." */
36441
+ 'description'?: string;
36442
+ /** Permissions granted by this role. */
36443
+ 'permissions'?: {
36444
+ /** Team-level RBAC permission strings. */
36445
+ 'teamScope'?: string[];
36446
+ /** Project-level RBAC permission strings. */
36447
+ 'projectScope'?: string[];
36448
+ };
36449
+ /** Project access restrictions for this role. */
36450
+ 'restrictions'?: {
36451
+ 'enabled': boolean;
36452
+ 'projects'?: string[];
36453
+ 'restrictionMode'?: 'in' | 'notIn';
36454
+ };
36455
+ };
36456
+ /** Creates role or updates all user-editable fields on a platform role. */
36457
+ declare class PutTeamroleEndpoint extends PutApiEndpoint<PutTeamroleRequest, PutTeamroleResult> {
36239
36458
  description: string;
36240
36459
  withAuth: boolean;
36241
36460
  requiredPermissions: string;
36242
- endpointUrl: (opts: GetTeamroleRequest) => string;
36243
- body: () => undefined;
36461
+ endpointUrl: (opts: PutTeamroleRequest) => string;
36462
+ body: (payload: PutTeamroleRequest) => string;
36244
36463
  }
36245
36464
 
36246
- type PutTeamroleResult = {
36465
+ type GetTeamroleResult = {
36247
36466
  /** ID of the role. Example: "developer" */
36248
36467
  'id': string;
36249
36468
  /** Display name of the role. Example: "Developer" */
36250
36469
  'name': string;
36251
36470
  /** Description of the role. Example: "Role for developers." */
36252
36471
  'description'?: string;
36253
- 'restrictions': {
36254
- /** Whether project restrictions are enabled. */
36472
+ 'restrictions'?: {
36255
36473
  'enabled': boolean;
36256
- /** Restricted project IDs. */
36257
- 'projects': string[];
36258
- /** Restriction mode. */
36259
- 'restrictionMode'?: string;
36474
+ 'projects'?: string[];
36475
+ 'restrictionMode'?: 'in' | 'notIn';
36260
36476
  };
36261
36477
  /** Creation time. Example: "2021-01-20T11:19:53.175Z" */
36262
36478
  'createdAt'?: string;
@@ -36269,44 +36485,23 @@ type PutTeamroleResult = {
36269
36485
  'projectScope': string[];
36270
36486
  };
36271
36487
  };
36272
- type PutTeamroleCall = (opts: PutTeamroleRequest) => Promise<ApiCallResponse<PutTeamroleResult>>;
36273
- type PutTeamroleRequest = {
36274
- parameters: PutTeamroleParameters;
36275
- data: PutTeamroleData;
36488
+ type GetTeamroleCall = (opts: GetTeamroleRequest) => Promise<ApiCallResponse<GetTeamroleResult>>;
36489
+ type GetTeamroleRequest = {
36490
+ parameters: GetTeamroleParameters;
36276
36491
  };
36277
- type PutTeamroleParameters = {
36492
+ type GetTeamroleParameters = {
36278
36493
  /** ID of the team */
36279
36494
  'teamId': string;
36280
36495
  /** ID of the team role */
36281
36496
  'roleId': string;
36282
36497
  };
36283
- type PutTeamroleData = {
36284
- /** A description of the role. Example: "Role for developers." */
36285
- 'description'?: string;
36286
- /** Permissions granted by this role. */
36287
- 'permissions': {
36288
- /** Team-level RBAC permission strings. */
36289
- 'teamScope'?: string[];
36290
- /** Project-level RBAC permission strings. */
36291
- 'projectScope'?: string[];
36292
- };
36293
- /** Project access restrictions for this role. */
36294
- 'restrictions'?: {
36295
- /** Whether project restrictions are enabled. */
36296
- 'enabled': boolean;
36297
- /** Project IDs this role is restricted to. */
36298
- 'projects'?: string[];
36299
- /** Whether the restriction is inclusive or exclusive. */
36300
- 'restrictionMode'?: 'in' | 'not-in';
36301
- };
36302
- };
36303
- /** Fully replaces a platform role for a team. */
36304
- declare class PutTeamroleEndpoint extends PutApiEndpoint<PutTeamroleRequest, PutTeamroleResult> {
36498
+ /** Gets details about a specific platform role. */
36499
+ declare class GetTeamroleEndpoint extends GetApiEndpoint<GetTeamroleRequest, GetTeamroleResult> {
36305
36500
  description: string;
36306
36501
  withAuth: boolean;
36307
36502
  requiredPermissions: string;
36308
- endpointUrl: (opts: PutTeamroleRequest) => string;
36309
- body: (payload: PutTeamroleRequest) => string;
36503
+ endpointUrl: (opts: GetTeamroleRequest) => string;
36504
+ body: () => undefined;
36310
36505
  }
36311
36506
 
36312
36507
  type PatchTeamroleResult = {
@@ -36316,13 +36511,10 @@ type PatchTeamroleResult = {
36316
36511
  'name': string;
36317
36512
  /** Description of the role. Example: "Role for developers." */
36318
36513
  'description'?: string;
36319
- 'restrictions': {
36320
- /** Whether project restrictions are enabled. */
36514
+ 'restrictions'?: {
36321
36515
  'enabled': boolean;
36322
- /** Restricted project IDs. */
36323
- 'projects': string[];
36324
- /** Restriction mode. */
36325
- 'restrictionMode'?: string;
36516
+ 'projects'?: string[];
36517
+ 'restrictionMode'?: 'in' | 'notIn';
36326
36518
  };
36327
36519
  /** Creation time. Example: "2021-01-20T11:19:53.175Z" */
36328
36520
  'createdAt'?: string;
@@ -36347,8 +36539,6 @@ type PatchTeamroleParameters = {
36347
36539
  'roleId': string;
36348
36540
  };
36349
36541
  type PatchTeamroleData = {
36350
- /** The name of the role. Example: "Developer" */
36351
- 'name'?: string;
36352
36542
  /** A description of the role. Example: "Role for developers." */
36353
36543
  'description'?: string;
36354
36544
  /** Permissions granted by this role. */
@@ -36360,15 +36550,10 @@ type PatchTeamroleData = {
36360
36550
  };
36361
36551
  /** Project access restrictions for this role. */
36362
36552
  'restrictions'?: {
36363
- /** Whether project restrictions are enabled. */
36364
36553
  'enabled': boolean;
36365
- /** Project IDs this role is restricted to. */
36366
36554
  'projects'?: string[];
36367
- /** Whether the restriction is inclusive or exclusive. */
36368
- 'restrictionMode'?: 'in' | 'not-in';
36555
+ 'restrictionMode'?: 'in' | 'notIn';
36369
36556
  };
36370
- /** Full list of user IDs assigned to this role. */
36371
- 'members'?: string[];
36372
36557
  };
36373
36558
  /** Updates a platform role for a team. */
36374
36559
  declare class PatchTeamroleEndpoint extends PatchApiEndpoint<PatchTeamroleRequest, PatchTeamroleResult> {
@@ -36460,12 +36645,12 @@ type ListTemplatesResult = {
36460
36645
  /** If true, the template will run automatically whenever a change is made to it. */
36461
36646
  'autorun'?: boolean;
36462
36647
  /** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
36463
- 'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
36648
+ 'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid' | 'latest' | 'replace';
36464
36649
  };
36465
36650
  /** Identifier for the template Example: "example-template" */
36466
36651
  'id': string;
36467
36652
  /** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
36468
- 'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
36653
+ 'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid' | 'latest' | 'replace';
36469
36654
  /** time of creation */
36470
36655
  'createdAt'?: string;
36471
36656
  /** time of update */
@@ -36534,7 +36719,7 @@ type CreateTemplateResult = {
36534
36719
  'templateSha': string;
36535
36720
  };
36536
36721
  /** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
36537
- 'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
36722
+ 'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid' | 'latest' | 'replace';
36538
36723
  'options': {
36539
36724
  /** Whether autorun is enabled */
36540
36725
  'autorun': boolean;
@@ -36556,7 +36741,7 @@ type CreateTemplateResult = {
36556
36741
  /** If true, the template will run automatically whenever a change is made to it. */
36557
36742
  'autorun'?: boolean;
36558
36743
  /** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
36559
- 'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
36744
+ 'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid' | 'latest' | 'replace';
36560
36745
  };
36561
36746
  /** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
36562
36747
  'arguments'?: any;
@@ -36635,7 +36820,7 @@ type CreateTemplateData = {
36635
36820
  /** If true, the template will run automatically whenever a change is made to it. */
36636
36821
  'autorun'?: boolean;
36637
36822
  /** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
36638
- 'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
36823
+ 'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid' | 'latest' | 'replace';
36639
36824
  /** If true, the template will be ran immediately after creation. Example: true */
36640
36825
  'runOnCreation'?: boolean;
36641
36826
  /** Argument overrides for the initial run. Valid only if `runOnCreation` is `true`. */
@@ -36655,7 +36840,7 @@ type CreateTemplateData = {
36655
36840
  /** If true, the template will run automatically whenever a change is made to it. */
36656
36841
  'autorun'?: boolean;
36657
36842
  /** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
36658
- 'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
36843
+ 'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid' | 'latest' | 'replace';
36659
36844
  /** If true, the template will be ran immediately after creation. Example: true */
36660
36845
  'runOnCreation'?: boolean;
36661
36846
  /** Argument overrides for the initial run. Valid only if `runOnCreation` is `true`. */
@@ -36721,7 +36906,7 @@ type GetTemplateResult = {
36721
36906
  'templateSha': string;
36722
36907
  };
36723
36908
  /** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
36724
- 'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
36909
+ 'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid' | 'latest' | 'replace';
36725
36910
  'options': {
36726
36911
  /** Whether autorun is enabled */
36727
36912
  'autorun': boolean;
@@ -36798,7 +36983,7 @@ type UpdateTemplateResult = {
36798
36983
  'templateSha': string;
36799
36984
  };
36800
36985
  /** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
36801
- 'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
36986
+ 'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid' | 'latest' | 'replace';
36802
36987
  'options': {
36803
36988
  /** Whether autorun is enabled */
36804
36989
  'autorun': boolean;
@@ -36820,7 +37005,7 @@ type UpdateTemplateResult = {
36820
37005
  /** If true, the template will run automatically whenever a change is made to it. */
36821
37006
  'autorun'?: boolean;
36822
37007
  /** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
36823
- 'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
37008
+ 'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid' | 'latest' | 'replace';
36824
37009
  };
36825
37010
  /** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
36826
37011
  'arguments'?: any;
@@ -36883,7 +37068,7 @@ type UpdateTemplateData = {
36883
37068
  /** If true, the template will run automatically whenever a change is made to it. */
36884
37069
  'autorun'?: boolean;
36885
37070
  /** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
36886
- 'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
37071
+ 'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid' | 'latest' | 'replace';
36887
37072
  };
36888
37073
  /** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
36889
37074
  'arguments'?: any;
@@ -36976,7 +37161,7 @@ type RunTemplateResult = {
36976
37161
  /** If true, the template will run automatically whenever a change is made to it. */
36977
37162
  'autorun'?: boolean;
36978
37163
  /** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
36979
- 'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
37164
+ 'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid' | 'latest' | 'replace';
36980
37165
  };
36981
37166
  /** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
36982
37167
  'arguments'?: any;
@@ -37053,7 +37238,7 @@ type ListTemplaterunsResult = {
37053
37238
  /** If true, the template will run automatically whenever a change is made to it. */
37054
37239
  'autorun'?: boolean;
37055
37240
  /** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
37056
- 'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
37241
+ 'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid' | 'latest' | 'replace';
37057
37242
  };
37058
37243
  /** Identifier for the template run Example: "3dd592f6-ce63-45ee-acf8-13dc5ec5235c" */
37059
37244
  'id': string;
@@ -37122,7 +37307,7 @@ type GetTemplaterunResult = {
37122
37307
  /** If true, the template will run automatically whenever a change is made to it. */
37123
37308
  'autorun'?: boolean;
37124
37309
  /** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
37125
- 'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
37310
+ 'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid' | 'latest' | 'replace';
37126
37311
  };
37127
37312
  /** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
37128
37313
  'arguments'?: any;
@@ -37196,7 +37381,7 @@ type AbortTemplaterunResult = {
37196
37381
  /** If true, the template will run automatically whenever a change is made to it. */
37197
37382
  'autorun'?: boolean;
37198
37383
  /** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
37199
- 'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
37384
+ 'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid' | 'latest' | 'replace';
37200
37385
  };
37201
37386
  /** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
37202
37387
  'arguments'?: any;
@@ -37326,6 +37511,7 @@ declare class ApiClient {
37326
37511
  cluster: GetCloudClusterCall;
37327
37512
  integration: GetCloudIntegrationCall;
37328
37513
  };
37514
+ orgDirectoryGroups: GetOrgdirectorygroupsCall;
37329
37515
  dnsId: GetDnsidCall;
37330
37516
  domain: GetDomainCall;
37331
37517
  domainCertificate: GetDomaincertificateCall;
@@ -37594,10 +37780,14 @@ declare class ApiClient {
37594
37780
  cluster: PutCloudClusterCall;
37595
37781
  integration: PutCloudIntegrationCall;
37596
37782
  };
37783
+ domain: {
37784
+ subdomain: PutDomainSubdomainCall;
37785
+ };
37597
37786
  egressIp: PutEgressipCall;
37598
37787
  gradualRolloutStrategy: PutGradualrolloutstrategyCall;
37599
37788
  sshIdentities: PutSshidentitiesCall;
37600
37789
  loadBalancer: PutLoadbalancerCall;
37790
+ orgRole: PutOrgroleCall;
37601
37791
  project: PutProjectCall;
37602
37792
  addon: PutAddonCall;
37603
37793
  job: PutJobCall & {
@@ -37670,7 +37860,6 @@ declare class ApiClient {
37670
37860
  notification: UpdateNotificationCall;
37671
37861
  registryCredentials: UpdateRegistrycredentialsCall;
37672
37862
  sshIdentities: UpdateSshidentitiesCall;
37673
- orgRole: UpdateOrgroleCall;
37674
37863
  addon: {
37675
37864
  networkSettings: UpdateAddonNetworksettingsCall;
37676
37865
  security: UpdateAddonSecurityCall;
@@ -37756,6 +37945,7 @@ declare class ApiClient {
37756
37945
  };
37757
37946
  reset: {
37758
37947
  addon: ResetAddonCall;
37948
+ blueprintTemplatePreview: ResetBlueprinttemplatepreviewCall;
37759
37949
  };
37760
37950
  restart: {
37761
37951
  addon: RestartAddonCall;
@@ -37842,6 +38032,7 @@ declare class ApiClient {
37842
38032
  cluster: GetCloudClusterEndpoint;
37843
38033
  integration: GetCloudIntegrationEndpoint;
37844
38034
  };
38035
+ orgDirectoryGroups: GetOrgdirectorygroupsEndpoint;
37845
38036
  dnsId: GetDnsidEndpoint;
37846
38037
  domain: GetDomainEndpoint;
37847
38038
  domainCertificate: GetDomaincertificateEndpoint;
@@ -38094,10 +38285,14 @@ declare class ApiClient {
38094
38285
  cluster: PutCloudClusterEndpoint;
38095
38286
  integration: PutCloudIntegrationEndpoint;
38096
38287
  };
38288
+ domain: {
38289
+ subdomain: PutDomainSubdomainEndpoint;
38290
+ };
38097
38291
  egressIp: PutEgressipEndpoint;
38098
38292
  gradualRolloutStrategy: PutGradualrolloutstrategyEndpoint;
38099
38293
  sshIdentities: PutSshidentitiesEndpoint;
38100
38294
  loadBalancer: PutLoadbalancerEndpoint;
38295
+ orgRole: PutOrgroleEndpoint;
38101
38296
  project: PutProjectEndpoint;
38102
38297
  addon: PutAddonEndpoint;
38103
38298
  job: PutJobEndpoint & {
@@ -38170,7 +38365,6 @@ declare class ApiClient {
38170
38365
  notification: UpdateNotificationEndpoint;
38171
38366
  registryCredentials: UpdateRegistrycredentialsEndpoint;
38172
38367
  sshIdentities: UpdateSshidentitiesEndpoint;
38173
- orgRole: UpdateOrgroleEndpoint;
38174
38368
  addon: {
38175
38369
  networkSettings: UpdateAddonNetworksettingsEndpoint;
38176
38370
  security: UpdateAddonSecurityEndpoint;
@@ -38256,6 +38450,7 @@ declare class ApiClient {
38256
38450
  };
38257
38451
  reset: {
38258
38452
  addon: ResetAddonEndpoint;
38453
+ blueprintTemplatePreview: ResetBlueprinttemplatepreviewEndpoint;
38259
38454
  };
38260
38455
  restart: {
38261
38456
  addon: RestartAddonEndpoint;
@@ -38296,5 +38491,5 @@ declare class ApiClient {
38296
38491
  protected baseUrl: () => string | undefined;
38297
38492
  }
38298
38493
 
38299
- export { AbortAddonBackupEndpoint, AbortAddonRestoreEndpoint, AbortJobBuildEndpoint, AbortJobRunEndpoint, AbortPreviewblueprintrunEndpoint, AbortReleaseflowrunEndpoint, AbortServiceBuildEndpoint, AbortTemplaterunEndpoint, AbortWorkflowrunEndpoint, AddBackupdestinationEndpoint, AddDomainSubdomainEndpoint, AddRegistrycredentialsEndpoint, AddSshidentitiesEndpoint, AddSubdomainPathEndpoint, AddTagEndpoint, ApiClient, ApiClientContextProvider, ApiClientFileContextProvider, ApiClientInMemoryContextProvider, ApiEndpoint, AssignSubdomainPathEndpoint, AssignSubdomainServiceEndpoint, AttachVolumeEndpoint, BackupAddonEndpoint, BackupVolumeEndpoint, CopyType, CordonCloudClusterNodeEndpoint, CreateAddonBackupscheduleEndpoint, CreateAddonEndpoint, CreateCloudClusterEndpoint, CreateCloudIntegrationEndpoint, CreateCustomvcsTokenEndpoint, CreateDomainEndpoint, CreateEgressipEndpoint, CreateExternaladdonEndpoint, CreateGlobalsecretEndpoint, CreateGradualrolloutstrategyEndpoint, CreateJobCronEndpoint, CreateJobEndpoint, CreateJobManualEndpoint, CreateLlmmodeldeploymentEndpoint, CreateLoadbalancerEndpoint, CreateLogsinkEndpoint, CreateNotificationEndpoint, CreateOrgroleEndpoint, CreateOrgrolememberEndpoint, CreatePreviewblueprintEndpoint, CreateProjectEndpoint, CreateSecretEndpoint, CreateServiceBuildEndpoint, CreateServiceCombinedEndpoint, CreateServiceDeploymentEndpoint, CreateTeamEndpoint, CreateTeammemberinviteEndpoint, CreateTeamroleEndpoint, CreateTeamrolememberEndpoint, CreateTemplateEndpoint, CreateVolumeEndpoint, CreateWorkflowEndpoint, DeleteAddonBackupscheduleEndpoint, DeleteAddonEndpoint, DeleteApiEndpoint, DeleteBackupEndpoint, DeleteBackupdestinationEndpoint, DeleteBlueprinttemplatepreviewEndpoint, DeleteCloudClusterEndpoint, DeleteCloudIntegrationEndpoint, DeleteDomainEndpoint, DeleteEgressipEndpoint, DeleteExternaladdonEndpoint, DeleteGlobalsecretEndpoint, DeleteGradualrolloutstrategyEndpoint, DeleteJobEndpoint, DeleteLlmmodeldeploymentEndpoint, DeleteLoadbalancerEndpoint, DeleteLogsinkEndpoint, DeleteNotificationEndpoint, DeleteOrgroleEndpoint, DeleteOrgrolememberEndpoint, DeletePipelinetemplatepreviewEndpoint, DeletePreviewblueprintEndpoint, DeleteProjectEndpoint, DeleteRegistrycredentialsEndpoint, DeleteSecretEndpoint, DeleteSecretlinkEndpoint, DeleteServiceEndpoint, DeleteSshidentitiesEndpoint, DeleteSubdomainEndpoint, DeleteSubdomainPathEndpoint, DeleteTagEndpoint, DeleteTeammemberEndpoint, DeleteTeamroleEndpoint, DeleteTeamrolememberEndpoint, DeleteTemplateEndpoint, DeleteVolumeBackupEndpoint, DeleteVolumeEndpoint, DetachVolumeEndpoint, DisableSubdomainCdnEndpoint, DrainCloudClusterNodeEndpoint, EnableSubdomainCdnEndpoint, ExecCommandStandard, GetAddonBackupDownloadEndpoint, GetAddonBackupEndpoint, GetAddonBackupRestoresEndpoint, GetAddonBackupsEndpoint, GetAddonBackupschedulesEndpoint, GetAddonContainersEndpoint, GetAddonCredentialsEndpoint, GetAddonEndpoint, GetAddonRestoresEndpoint, GetAddonTypesEndpoint, GetAddonVersionEndpoint, GetApiEndpoint, GetApiEndpointPaginated, GetBackupdestinationEndpoint, GetCloudClusterEndpoint, GetCloudIntegrationEndpoint, GetDnsidEndpoint, GetDomainEndpoint, GetDomaincertificateEndpoint, GetEgressipEndpoint, GetExternaladdonEndpoint, GetGlobalsecretEndpoint, GetInvoiceDetailsEndpoint, GetJobBranchesEndpoint, GetJobBuildEndpoint, GetJobBuildargumentdetailsEndpoint, GetJobBuildargumentsEndpoint, GetJobBuildsEndpoint, GetJobContainersEndpoint, GetJobDeploymentEndpoint, GetJobEndpoint, GetJobHealthchecksEndpoint, GetJobPullrequestsEndpoint, GetJobRunEndpoint, GetJobRunsEndpoint, GetJobRuntimeenvironmentEndpoint, GetJobRuntimeenvironmentdetailsEndpoint, GetLlmmodeldeploymentEndpoint, GetLoadbalancerEndpoint, GetLogsinkEndpoint, GetNotificationEndpoint, GetOrgroleEndpoint, GetPipelineEndpoint, GetPreviewblueprintEndpoint, GetPreviewblueprintrunEndpoint, GetPreviewtemplateEndpoint, GetPreviewtemplaterunEndpoint, GetProjectEndpoint, GetRegistrycredentialsEndpoint, GetReleaseflowEndpoint, GetReleaseflowrunEndpoint, GetSecretEndpoint, GetSecretdetailsEndpoint, GetSecretlinkEndpoint, GetServiceBranchesEndpoint, GetServiceBuildEndpoint, GetServiceBuildargumentdetailsEndpoint, GetServiceBuildargumentsEndpoint, GetServiceBuildsEndpoint, GetServiceContainersEndpoint, GetServiceDeploymentEndpoint, GetServiceEndpoint, GetServiceHealthchecksEndpoint, GetServicePortsEndpoint, GetServicePullrequestsEndpoint, GetServiceRuntimeenvironmentEndpoint, GetServiceRuntimeenvironmentdetailsEndpoint, GetSshidentitiesEndpoint, GetSubdomainEndpoint, GetSubdomainPathEndpoint, GetTagEndpoint, GetTeamEndpoint, GetTeamroleEndpoint, GetTemplateEndpoint, GetTemplaterunEndpoint, GetVolumeBackupEndpoint, GetVolumeBackupsEndpoint, GetVolumeEndpoint, GetWorkflowEndpoint, GetWorkflowrunEndpoint, ImportAddonBackupEndpoint, ImportDomaincertificateEndpoint, ListAddonsEndpoint, ListBackupdestinationsEndpoint, ListBackupdestinationsbackupsEndpoint, ListBlueprinttemplatepreviewsEndpoint, ListBranchesEndpoint, ListCloudClusterNodesEndpoint, ListCloudClustersEndpoint, ListCloudIntegrationsEndpoint, ListCloudNodetypesEndpoint, ListCloudProvidersEndpoint, ListCloudRegionsEndpoint, ListDomainsEndpoint, ListEgressipsEndpoint, ListExternaladdonsEndpoint, ListGlobalsecretsEndpoint, ListInvoicesEndpoint, ListJobsEndpoint, ListLlmmodeldeploymentsEndpoint, ListLoadbalancersEndpoint, ListLogsinksEndpoint, ListNotificationsEndpoint, ListOrgrolesEndpoint, ListPipelinesEndpoint, ListPipelinetemplatepreviewsEndpoint, ListPlansEndpoint, ListPreviewblueprintrunsEndpoint, ListPreviewblueprintsEndpoint, ListPreviewtemplaterunsEndpoint, ListProjectsEndpoint, ListRegionsEndpoint, ListRegistrycredentialsEndpoint, ListReleaseflowrunsEndpoint, ListReposEndpoint, ListSecretsEndpoint, ListServicesEndpoint, ListSshidentitiesEndpoint, ListSubdomainPathEndpoint, ListTagsEndpoint, ListTeammembersEndpoint, ListTeamrolesEndpoint, ListTeamsEndpoint, ListTemplaterunsEndpoint, ListTemplatesEndpoint, ListVcsEndpoint, ListVolumesEndpoint, ListWorkflowrunsEndpoint, ListWorkflowsEndpoint, LogType, MetricType, NorthflankApiCallError, NorthflankExecCommand, NorthflankFileCopy, NorthflankLogFetch, NorthflankMetricFetch, NorthflankPortForwarder, PatchAddonEndpoint, PatchApiEndpoint, PatchBackupdestinationEndpoint, PatchCloudClusterEndpoint, PatchCloudIntegrationEndpoint, PatchEgressipEndpoint, PatchGlobalsecretEndpoint, PatchGradualrolloutstrategyEndpoint, PatchJobCronEndpoint, PatchJobEndpoint, PatchJobManualEndpoint, PatchLoadbalancerEndpoint, PatchOrgroleEndpoint, PatchProjectEndpoint, PatchSecretEndpoint, PatchServiceBuildEndpoint, PatchServiceCombinedEndpoint, PatchServiceDeploymentEndpoint, PatchTagEndpoint, PatchTeamEndpoint, PatchTeamroleEndpoint, PauseAddonEndpoint, PauseBlueprinttemplatepreviewEndpoint, PauseJobEndpoint, PauseLogsinkEndpoint, PauseServiceEndpoint, PostApiEndpoint, PutAddonEndpoint, PutApiEndpoint, PutCloudClusterEndpoint, PutCloudIntegrationEndpoint, PutEgressipEndpoint, PutGlobalsecretEndpoint, PutGradualrolloutstrategyEndpoint, PutJobCronEndpoint, PutJobEndpoint, PutJobManualEndpoint, PutLoadbalancerEndpoint, PutProjectEndpoint, PutSecretEndpoint, PutServiceBuildEndpoint, PutServiceCombinedEndpoint, PutServiceDeploymentEndpoint, PutSshidentitiesEndpoint, PutTagEndpoint, PutTeamroleEndpoint, ResetAddonEndpoint, RestartAddonEndpoint, RestartServiceEndpoint, RestoreAddonBackupEndpoint, ResumeAddonEndpoint, ResumeBlueprinttemplatepreviewEndpoint, ResumeJobEndpoint, ResumeLogsinkEndpoint, ResumeServiceEndpoint, RetainAddonBackupEndpoint, RunPreviewblueprintEndpoint, RunPreviewtemplateEndpoint, RunReleaseflowEndpoint, RunTemplateEndpoint, RunWorkflowEndpoint, ScaleAddonEndpoint, ScaleJobEndpoint, ScaleServiceEndpoint, StartJobBuildEndpoint, StartJobRunEndpoint, StartServiceBuildEndpoint, SuspendJobEndpoint, UnassignSubdomainEndpoint, UnassignSubdomainPathEndpoint, UncordonCloudClusterNodeEndpoint, UpdateAddonNetworksettingsEndpoint, UpdateAddonSecurityEndpoint, UpdateAddonVersionEndpoint, UpdateExternaladdonEndpoint, UpdateJobBuildargumentsEndpoint, UpdateJobBuildoptionsEndpoint, UpdateJobBuildsourceEndpoint, UpdateJobDeploymentEndpoint, UpdateJobHealthchecksEndpoint, UpdateJobRuntimeenvironmentEndpoint, UpdateJobSettingsEndpoint, UpdateLlmmodeldeploymentEndpoint, UpdateLogsinkEndpoint, UpdateNotificationEndpoint, UpdateOrgroleEndpoint, UpdatePreviewblueprintEndpoint, UpdatePreviewtemplateEndpoint, UpdateRegistrycredentialsEndpoint, UpdateReleaseflowEndpoint, UpdateSecretEndpoint, UpdateSecretlinkEndpoint, UpdateServiceBuildargumentsEndpoint, UpdateServiceBuildoptionsEndpoint, UpdateServiceBuildsourceEndpoint, UpdateServiceDeploymentEndpoint, UpdateServiceHealthchecksEndpoint, UpdateServicePortsEndpoint, UpdateServiceRuntimeenvironmentEndpoint, UpdateSshidentitiesEndpoint, UpdateSubdomainPathEndpoint, UpdateTemplateEndpoint, UpdateVolumeEndpoint, UpdateWorkflowEndpoint, VerifyDomainEndpoint, VerifySubdomainEndpoint };
38300
- export type { AbortAddonBackupCall, AbortAddonBackupParameters, AbortAddonBackupRequest, AbortAddonBackupResult, AbortAddonRestoreCall, AbortAddonRestoreData, AbortAddonRestoreOptions, AbortAddonRestoreParameters, AbortAddonRestoreRequest, AbortAddonRestoreResult, AbortJobBuildCall, AbortJobBuildParameters, AbortJobBuildRequest, AbortJobBuildResult, AbortJobRunCall, AbortJobRunParameters, AbortJobRunRequest, AbortJobRunResult, AbortPreviewblueprintrunCall, AbortPreviewblueprintrunParameters, AbortPreviewblueprintrunRequest, AbortPreviewblueprintrunResult, AbortReleaseflowrunCall, AbortReleaseflowrunParameters, AbortReleaseflowrunRequest, AbortReleaseflowrunResult, AbortServiceBuildCall, AbortServiceBuildParameters, AbortServiceBuildRequest, AbortServiceBuildResult, AbortTemplaterunCall, AbortTemplaterunParameters, AbortTemplaterunRequest, AbortTemplaterunResult, AbortWorkflowrunCall, AbortWorkflowrunParameters, AbortWorkflowrunRequest, AbortWorkflowrunResult, AddBackupdestinationCall, AddBackupdestinationData, AddBackupdestinationParameters, AddBackupdestinationRequest, AddBackupdestinationResult, AddDomainSubdomainCall, AddDomainSubdomainData, AddDomainSubdomainParameters, AddDomainSubdomainRequest, AddDomainSubdomainResult, AddRegistrycredentialsCall, AddRegistrycredentialsData, AddRegistrycredentialsParameters, AddRegistrycredentialsRequest, AddRegistrycredentialsResult, AddSshidentitiesCall, AddSshidentitiesData, AddSshidentitiesParameters, AddSshidentitiesRequest, AddSshidentitiesResult, AddSubdomainPathCall, AddSubdomainPathData, AddSubdomainPathParameters, AddSubdomainPathRequest, AddSubdomainPathResult, AddTagCall, AddTagData, AddTagParameters, AddTagRequest, AddTagResult, ApiCallError, ApiCallResponse, ApiClientContext, ApiClientContextWrapper, ApiClientOpts, AssignSubdomainPathCall, AssignSubdomainPathData, AssignSubdomainPathParameters, AssignSubdomainPathRequest, AssignSubdomainPathResult, AssignSubdomainServiceCall, AssignSubdomainServiceData, AssignSubdomainServiceParameters, AssignSubdomainServiceRequest, AssignSubdomainServiceResult, AttachVolumeCall, AttachVolumeData, AttachVolumeParameters, AttachVolumeRequest, AttachVolumeResult, BackupAddonCall, BackupAddonData, BackupAddonParameters, BackupAddonRequest, BackupAddonResult, BackupVolumeCall, BackupVolumeData, BackupVolumeParameters, BackupVolumeRequest, BackupVolumeResult, CommandResult, CordonCloudClusterNodeCall, CordonCloudClusterNodeParameters, CordonCloudClusterNodeRequest, CordonCloudClusterNodeResult, CreateAddonBackupscheduleCall, CreateAddonBackupscheduleData, CreateAddonBackupscheduleParameters, CreateAddonBackupscheduleRequest, CreateAddonBackupscheduleResult, CreateAddonCall, CreateAddonData, CreateAddonParameters, CreateAddonRequest, CreateAddonResult, CreateCloudClusterCall, CreateCloudClusterData, CreateCloudClusterParameters, CreateCloudClusterRequest, CreateCloudClusterResult, CreateCloudIntegrationCall, CreateCloudIntegrationData, CreateCloudIntegrationParameters, CreateCloudIntegrationRequest, CreateCloudIntegrationResult, CreateCustomvcsTokenCall, CreateCustomvcsTokenOptions, CreateCustomvcsTokenParameters, CreateCustomvcsTokenRequest, CreateCustomvcsTokenResult, CreateDomainCall, CreateDomainData, CreateDomainParameters, CreateDomainRequest, CreateDomainResult, CreateEgressipCall, CreateEgressipData, CreateEgressipParameters, CreateEgressipRequest, CreateEgressipResult, CreateExternaladdonCall, CreateExternaladdonData, CreateExternaladdonParameters, CreateExternaladdonRequest, CreateExternaladdonResult, CreateGlobalsecretCall, CreateGlobalsecretData, CreateGlobalsecretParameters, CreateGlobalsecretRequest, CreateGlobalsecretResult, CreateGradualrolloutstrategyCall, CreateGradualrolloutstrategyData, CreateGradualrolloutstrategyParameters, CreateGradualrolloutstrategyRequest, CreateGradualrolloutstrategyResult, CreateJobCall, CreateJobCronCall, CreateJobCronData, CreateJobCronParameters, CreateJobCronRequest, CreateJobCronResult, CreateJobData, CreateJobManualCall, CreateJobManualData, CreateJobManualParameters, CreateJobManualRequest, CreateJobManualResult, CreateJobParameters, CreateJobRequest, CreateJobResult, CreateLlmmodeldeploymentCall, CreateLlmmodeldeploymentData, CreateLlmmodeldeploymentParameters, CreateLlmmodeldeploymentRequest, CreateLlmmodeldeploymentResult, CreateLoadbalancerCall, CreateLoadbalancerData, CreateLoadbalancerParameters, CreateLoadbalancerRequest, CreateLoadbalancerResult, CreateLogsinkCall, CreateLogsinkData, CreateLogsinkParameters, CreateLogsinkRequest, CreateLogsinkResult, CreateNotificationCall, CreateNotificationData, CreateNotificationParameters, CreateNotificationRequest, CreateNotificationResult, CreateOrgroleCall, CreateOrgroleData, CreateOrgroleRequest, CreateOrgroleResult, CreateOrgrolememberCall, CreateOrgrolememberData, CreateOrgrolememberParameters, CreateOrgrolememberRequest, CreateOrgrolememberResult, CreatePreviewblueprintCall, CreatePreviewblueprintData, CreatePreviewblueprintParameters, CreatePreviewblueprintRequest, CreatePreviewblueprintResult, CreateProjectCall, CreateProjectData, CreateProjectParameters, CreateProjectRequest, CreateProjectResult, CreateSecretCall, CreateSecretData, CreateSecretParameters, CreateSecretRequest, CreateSecretResult, CreateServiceBuildCall, CreateServiceBuildData, CreateServiceBuildParameters, CreateServiceBuildRequest, CreateServiceBuildResult, CreateServiceCombinedCall, CreateServiceCombinedData, CreateServiceCombinedParameters, CreateServiceCombinedRequest, CreateServiceCombinedResult, CreateServiceDeploymentCall, CreateServiceDeploymentData, CreateServiceDeploymentParameters, CreateServiceDeploymentRequest, CreateServiceDeploymentResult, CreateTeamCall, CreateTeamData, CreateTeamRequest, CreateTeamResult, CreateTeammemberinviteCall, CreateTeammemberinviteData, CreateTeammemberinviteParameters, CreateTeammemberinviteRequest, CreateTeammemberinviteResult, CreateTeamroleCall, CreateTeamroleData, CreateTeamroleParameters, CreateTeamroleRequest, CreateTeamroleResult, CreateTeamrolememberCall, CreateTeamrolememberData, CreateTeamrolememberParameters, CreateTeamrolememberRequest, CreateTeamrolememberResult, CreateTemplateCall, CreateTemplateData, CreateTemplateParameters, CreateTemplateRequest, CreateTemplateResult, CreateVolumeCall, CreateVolumeData, CreateVolumeParameters, CreateVolumeRequest, CreateVolumeResult, CreateWorkflowCall, CreateWorkflowData, CreateWorkflowParameters, CreateWorkflowRequest, CreateWorkflowResult, DeleteAddonBackupscheduleCall, DeleteAddonBackupscheduleParameters, DeleteAddonBackupscheduleRequest, DeleteAddonBackupscheduleResult, DeleteAddonCall, DeleteAddonParameters, DeleteAddonRequest, DeleteAddonResult, DeleteBackupCall, DeleteBackupParameters, DeleteBackupRequest, DeleteBackupResult, DeleteBackupdestinationCall, DeleteBackupdestinationParameters, DeleteBackupdestinationRequest, DeleteBackupdestinationResult, DeleteBlueprinttemplatepreviewCall, DeleteBlueprinttemplatepreviewParameters, DeleteBlueprinttemplatepreviewRequest, DeleteBlueprinttemplatepreviewResult, DeleteCloudClusterCall, DeleteCloudClusterParameters, DeleteCloudClusterRequest, DeleteCloudClusterResult, DeleteCloudIntegrationCall, DeleteCloudIntegrationParameters, DeleteCloudIntegrationRequest, DeleteCloudIntegrationResult, DeleteDomainCall, DeleteDomainParameters, DeleteDomainRequest, DeleteDomainResult, DeleteEgressipCall, DeleteEgressipParameters, DeleteEgressipRequest, DeleteEgressipResult, DeleteExternaladdonCall, DeleteExternaladdonParameters, DeleteExternaladdonRequest, DeleteExternaladdonResult, DeleteGlobalsecretCall, DeleteGlobalsecretParameters, DeleteGlobalsecretRequest, DeleteGlobalsecretResult, DeleteGradualrolloutstrategyCall, DeleteGradualrolloutstrategyParameters, DeleteGradualrolloutstrategyRequest, DeleteGradualrolloutstrategyResult, DeleteJobCall, DeleteJobParameters, DeleteJobRequest, DeleteJobResult, DeleteLlmmodeldeploymentCall, DeleteLlmmodeldeploymentParameters, DeleteLlmmodeldeploymentRequest, DeleteLlmmodeldeploymentResult, DeleteLoadbalancerCall, DeleteLoadbalancerParameters, DeleteLoadbalancerRequest, DeleteLoadbalancerResult, DeleteLogsinkCall, DeleteLogsinkParameters, DeleteLogsinkRequest, DeleteLogsinkResult, DeleteNotificationCall, DeleteNotificationParameters, DeleteNotificationRequest, DeleteNotificationResult, DeleteOrgroleCall, DeleteOrgroleParameters, DeleteOrgroleRequest, DeleteOrgroleResult, DeleteOrgrolememberCall, DeleteOrgrolememberParameters, DeleteOrgrolememberRequest, DeleteOrgrolememberResult, DeletePipelinetemplatepreviewCall, DeletePipelinetemplatepreviewParameters, DeletePipelinetemplatepreviewRequest, DeletePipelinetemplatepreviewResult, DeletePreviewblueprintCall, DeletePreviewblueprintParameters, DeletePreviewblueprintRequest, DeletePreviewblueprintResult, DeleteProjectCall, DeleteProjectOptions, DeleteProjectParameters, DeleteProjectRequest, DeleteProjectResult, DeleteRegistrycredentialsCall, DeleteRegistrycredentialsParameters, DeleteRegistrycredentialsRequest, DeleteRegistrycredentialsResult, DeleteSecretCall, DeleteSecretParameters, DeleteSecretRequest, DeleteSecretResult, DeleteSecretlinkCall, DeleteSecretlinkParameters, DeleteSecretlinkRequest, DeleteSecretlinkResult, DeleteServiceCall, DeleteServiceOptions, DeleteServiceParameters, DeleteServiceRequest, DeleteServiceResult, DeleteSshidentitiesCall, DeleteSshidentitiesParameters, DeleteSshidentitiesRequest, DeleteSshidentitiesResult, DeleteSubdomainCall, DeleteSubdomainParameters, DeleteSubdomainPathCall, DeleteSubdomainPathParameters, DeleteSubdomainPathRequest, DeleteSubdomainPathResult, DeleteSubdomainRequest, DeleteSubdomainResult, DeleteTagCall, DeleteTagParameters, DeleteTagRequest, DeleteTagResult, DeleteTeammemberCall, DeleteTeammemberParameters, DeleteTeammemberRequest, DeleteTeammemberResult, DeleteTeamroleCall, DeleteTeamroleParameters, DeleteTeamroleRequest, DeleteTeamroleResult, DeleteTeamrolememberCall, DeleteTeamrolememberParameters, DeleteTeamrolememberRequest, DeleteTeamrolememberResult, DeleteTemplateCall, DeleteTemplateParameters, DeleteTemplateRequest, DeleteTemplateResult, DeleteVolumeBackupCall, DeleteVolumeBackupParameters, DeleteVolumeBackupRequest, DeleteVolumeBackupResult, DeleteVolumeCall, DeleteVolumeParameters, DeleteVolumeRequest, DeleteVolumeResult, DetachVolumeCall, DetachVolumeData, DetachVolumeParameters, DetachVolumeRequest, DetachVolumeResult, DisableSubdomainCdnCall, DisableSubdomainCdnData, DisableSubdomainCdnParameters, DisableSubdomainCdnRequest, DisableSubdomainCdnResult, DownloadOptions, DrainCloudClusterNodeCall, DrainCloudClusterNodeParameters, DrainCloudClusterNodeRequest, DrainCloudClusterNodeResult, EnableSubdomainCdnCall, EnableSubdomainCdnData, EnableSubdomainCdnParameters, EnableSubdomainCdnRequest, EnableSubdomainCdnResult, ExecCommand, ExecCommandData, ExecSessionData, GetAddonBackupCall, GetAddonBackupDownloadCall, GetAddonBackupDownloadParameters, GetAddonBackupDownloadRequest, GetAddonBackupDownloadResult, GetAddonBackupLogsCall, GetAddonBackupParameters, GetAddonBackupRequest, GetAddonBackupRestoresCall, GetAddonBackupRestoresOptions, GetAddonBackupRestoresParameters, GetAddonBackupRestoresRequest, GetAddonBackupRestoresResult, GetAddonBackupResult, GetAddonBackupsCall, GetAddonBackupsOptions, GetAddonBackupsParameters, GetAddonBackupsRequest, GetAddonBackupsResult, GetAddonBackupschedulesCall, GetAddonBackupschedulesOptions, GetAddonBackupschedulesParameters, GetAddonBackupschedulesRequest, GetAddonBackupschedulesResult, GetAddonCall, GetAddonContainersCall, GetAddonContainersOptions, GetAddonContainersParameters, GetAddonContainersRequest, GetAddonContainersResult, GetAddonCredentialsCall, GetAddonCredentialsParameters, GetAddonCredentialsRequest, GetAddonCredentialsResult, GetAddonLogsCall, GetAddonMetricsCall, GetAddonMetricsRangeCall, GetAddonParameters, GetAddonRequest, GetAddonRestoresCall, GetAddonRestoresLogsCall, GetAddonRestoresOptions, GetAddonRestoresParameters, GetAddonRestoresRequest, GetAddonRestoresResult, GetAddonResult, GetAddonTypesCall, GetAddonTypesRequest, GetAddonTypesResult, GetAddonVersionCall, GetAddonVersionParameters, GetAddonVersionRequest, GetAddonVersionResult, GetBackupdestinationCall, GetBackupdestinationParameters, GetBackupdestinationRequest, GetBackupdestinationResult, GetCloudClusterCall, GetCloudClusterParameters, GetCloudClusterRequest, GetCloudClusterResult, GetCloudIntegrationCall, GetCloudIntegrationParameters, GetCloudIntegrationRequest, GetCloudIntegrationResult, GetDnsidCall, GetDnsidParameters, GetDnsidRequest, GetDnsidResult, GetDomainCall, GetDomainParameters, GetDomainRequest, GetDomainResult, GetDomaincertificateCall, GetDomaincertificateParameters, GetDomaincertificateRequest, GetDomaincertificateResult, GetEgressipCall, GetEgressipParameters, GetEgressipRequest, GetEgressipResult, GetExternaladdonCall, GetExternaladdonParameters, GetExternaladdonRequest, GetExternaladdonResult, GetGlobalsecretCall, GetGlobalsecretParameters, GetGlobalsecretRequest, GetGlobalsecretResult, GetInvoiceDetailsCall, GetInvoiceDetailsOptions, GetInvoiceDetailsParameters, GetInvoiceDetailsRequest, GetInvoiceDetailsResult, GetJobBranchesCall, GetJobBranchesOptions, GetJobBranchesParameters, GetJobBranchesRequest, GetJobBranchesResult, GetJobBuildCall, GetJobBuildMetricsCall, GetJobBuildMetricsRangeCall, GetJobBuildParameters, GetJobBuildRequest, GetJobBuildResult, GetJobBuildargumentdetailsCall, GetJobBuildargumentdetailsParameters, GetJobBuildargumentdetailsRequest, GetJobBuildargumentdetailsResult, GetJobBuildargumentsCall, GetJobBuildargumentsOptions, GetJobBuildargumentsParameters, GetJobBuildargumentsRequest, GetJobBuildargumentsResult, GetJobBuildlogsCall, GetJobBuildsCall, GetJobBuildsOptions, GetJobBuildsParameters, GetJobBuildsRequest, GetJobBuildsResult, GetJobCall, GetJobContainersCall, GetJobContainersOptions, GetJobContainersParameters, GetJobContainersRequest, GetJobContainersResult, GetJobDeploymentCall, GetJobDeploymentParameters, GetJobDeploymentRequest, GetJobDeploymentResult, GetJobHealthchecksCall, GetJobHealthchecksParameters, GetJobHealthchecksRequest, GetJobHealthchecksResult, GetJobLogsCall, GetJobMetricsCall, GetJobMetricsRangeCall, GetJobParameters, GetJobPullrequestsCall, GetJobPullrequestsOptions, GetJobPullrequestsParameters, GetJobPullrequestsRequest, GetJobPullrequestsResult, GetJobRequest, GetJobResult, GetJobRunCall, GetJobRunParameters, GetJobRunRequest, GetJobRunResult, GetJobRunsCall, GetJobRunsOptions, GetJobRunsParameters, GetJobRunsRequest, GetJobRunsResult, GetJobRuntimeenvironmentCall, GetJobRuntimeenvironmentOptions, GetJobRuntimeenvironmentParameters, GetJobRuntimeenvironmentRequest, GetJobRuntimeenvironmentResult, GetJobRuntimeenvironmentdetailsCall, GetJobRuntimeenvironmentdetailsParameters, GetJobRuntimeenvironmentdetailsRequest, GetJobRuntimeenvironmentdetailsResult, GetLlmmodeldeploymentCall, GetLlmmodeldeploymentParameters, GetLlmmodeldeploymentRequest, GetLlmmodeldeploymentResult, GetLoadbalancerCall, GetLoadbalancerParameters, GetLoadbalancerRequest, GetLoadbalancerResult, GetLogsinkCall, GetLogsinkParameters, GetLogsinkRequest, GetLogsinkResult, GetNotificationCall, GetNotificationParameters, GetNotificationRequest, GetNotificationResult, GetOrgroleCall, GetOrgroleParameters, GetOrgroleRequest, GetOrgroleResult, GetPipelineCall, GetPipelineParameters, GetPipelineRequest, GetPipelineResult, GetPreviewblueprintCall, GetPreviewblueprintParameters, GetPreviewblueprintRequest, GetPreviewblueprintResult, GetPreviewblueprintrunCall, GetPreviewblueprintrunParameters, GetPreviewblueprintrunRequest, GetPreviewblueprintrunResult, GetPreviewtemplateCall, GetPreviewtemplateOptions, GetPreviewtemplateParameters, GetPreviewtemplateRequest, GetPreviewtemplateResult, GetPreviewtemplaterunCall, GetPreviewtemplaterunParameters, GetPreviewtemplaterunRequest, GetPreviewtemplaterunResult, GetProjectCall, GetProjectParameters, GetProjectRequest, GetProjectResult, GetRegistrycredentialsCall, GetRegistrycredentialsParameters, GetRegistrycredentialsRequest, GetRegistrycredentialsResult, GetReleaseflowCall, GetReleaseflowParameters, GetReleaseflowRequest, GetReleaseflowResult, GetReleaseflowrunCall, GetReleaseflowrunParameters, GetReleaseflowrunRequest, GetReleaseflowrunResult, GetSecretCall, GetSecretOptions, GetSecretParameters, GetSecretRequest, GetSecretResult, GetSecretdetailsCall, GetSecretdetailsParameters, GetSecretdetailsRequest, GetSecretdetailsResult, GetSecretlinkCall, GetSecretlinkParameters, GetSecretlinkRequest, GetSecretlinkResult, GetServiceBranchesCall, GetServiceBranchesOptions, GetServiceBranchesParameters, GetServiceBranchesRequest, GetServiceBranchesResult, GetServiceBuildCall, GetServiceBuildMetricsCall, GetServiceBuildMetricsRangeCall, GetServiceBuildParameters, GetServiceBuildRequest, GetServiceBuildResult, GetServiceBuildargumentdetailsCall, GetServiceBuildargumentdetailsParameters, GetServiceBuildargumentdetailsRequest, GetServiceBuildargumentdetailsResult, GetServiceBuildargumentsCall, GetServiceBuildargumentsOptions, GetServiceBuildargumentsParameters, GetServiceBuildargumentsRequest, GetServiceBuildargumentsResult, GetServiceBuildlogsCall, GetServiceBuildsCall, GetServiceBuildsOptions, GetServiceBuildsParameters, GetServiceBuildsRequest, GetServiceBuildsResult, GetServiceCall, GetServiceContainersCall, GetServiceContainersOptions, GetServiceContainersParameters, GetServiceContainersRequest, GetServiceContainersResult, GetServiceDeploymentCall, GetServiceDeploymentParameters, GetServiceDeploymentRequest, GetServiceDeploymentResult, GetServiceHealthchecksCall, GetServiceHealthchecksParameters, GetServiceHealthchecksRequest, GetServiceHealthchecksResult, GetServiceLogsCall, GetServiceMetricsCall, GetServiceMetricsRangeCall, GetServiceParameters, GetServicePortsCall, GetServicePortsParameters, GetServicePortsRequest, GetServicePortsResult, GetServicePullrequestsCall, GetServicePullrequestsOptions, GetServicePullrequestsParameters, GetServicePullrequestsRequest, GetServicePullrequestsResult, GetServiceRequest, GetServiceResult, GetServiceRuntimeenvironmentCall, GetServiceRuntimeenvironmentOptions, GetServiceRuntimeenvironmentParameters, GetServiceRuntimeenvironmentRequest, GetServiceRuntimeenvironmentResult, GetServiceRuntimeenvironmentdetailsCall, GetServiceRuntimeenvironmentdetailsParameters, GetServiceRuntimeenvironmentdetailsRequest, GetServiceRuntimeenvironmentdetailsResult, GetSshidentitiesCall, GetSshidentitiesParameters, GetSshidentitiesRequest, GetSshidentitiesResult, GetSubdomainCall, GetSubdomainParameters, GetSubdomainPathCall, GetSubdomainPathParameters, GetSubdomainPathRequest, GetSubdomainPathResult, GetSubdomainRequest, GetSubdomainResult, GetTagCall, GetTagParameters, GetTagRequest, GetTagResult, GetTeamCall, GetTeamParameters, GetTeamRequest, GetTeamResult, GetTeamroleCall, GetTeamroleParameters, GetTeamroleRequest, GetTeamroleResult, GetTemplateCall, GetTemplateOptions, GetTemplateParameters, GetTemplateRequest, GetTemplateResult, GetTemplaterunCall, GetTemplaterunParameters, GetTemplaterunRequest, GetTemplaterunResult, GetVolumeBackupCall, GetVolumeBackupParameters, GetVolumeBackupRequest, GetVolumeBackupResult, GetVolumeBackupsCall, GetVolumeBackupsOptions, GetVolumeBackupsParameters, GetVolumeBackupsRequest, GetVolumeBackupsResult, GetVolumeCall, GetVolumeParameters, GetVolumeRequest, GetVolumeResult, GetWorkflowCall, GetWorkflowParameters, GetWorkflowRequest, GetWorkflowResult, GetWorkflowrunCall, GetWorkflowrunParameters, GetWorkflowrunRequest, GetWorkflowrunResult, ImportAddonBackupCall, ImportAddonBackupData, ImportAddonBackupParameters, ImportAddonBackupRequest, ImportAddonBackupResult, ImportDomaincertificateCall, ImportDomaincertificateData, ImportDomaincertificateParameters, ImportDomaincertificateRequest, ImportDomaincertificateResult, ListAddonsCall, ListAddonsOptions, ListAddonsParameters, ListAddonsRequest, ListAddonsResult, ListBackupdestinationsCall, ListBackupdestinationsOptions, ListBackupdestinationsParameters, ListBackupdestinationsRequest, ListBackupdestinationsResult, ListBackupdestinationsbackupsCall, ListBackupdestinationsbackupsOptions, ListBackupdestinationsbackupsParameters, ListBackupdestinationsbackupsRequest, ListBackupdestinationsbackupsResult, ListBlueprinttemplatepreviewsCall, ListBlueprinttemplatepreviewsOptions, ListBlueprinttemplatepreviewsParameters, ListBlueprinttemplatepreviewsRequest, ListBlueprinttemplatepreviewsResult, ListBranchesCall, ListBranchesOptions, ListBranchesParameters, ListBranchesRequest, ListBranchesResult, ListCloudClusterNodesCall, ListCloudClusterNodesOptions, ListCloudClusterNodesParameters, ListCloudClusterNodesRequest, ListCloudClusterNodesResult, ListCloudClustersCall, ListCloudClustersOptions, ListCloudClustersParameters, ListCloudClustersRequest, ListCloudClustersResult, ListCloudIntegrationsCall, ListCloudIntegrationsOptions, ListCloudIntegrationsParameters, ListCloudIntegrationsRequest, ListCloudIntegrationsResult, ListCloudNodetypesCall, ListCloudNodetypesOptions, ListCloudNodetypesRequest, ListCloudNodetypesResult, ListCloudProvidersCall, ListCloudProvidersRequest, ListCloudProvidersResult, ListCloudRegionsCall, ListCloudRegionsOptions, ListCloudRegionsRequest, ListCloudRegionsResult, ListDomainsCall, ListDomainsOptions, ListDomainsParameters, ListDomainsRequest, ListDomainsResult, ListEgressipsCall, ListEgressipsOptions, ListEgressipsParameters, ListEgressipsRequest, ListEgressipsResult, ListExternaladdonsCall, ListExternaladdonsOptions, ListExternaladdonsParameters, ListExternaladdonsRequest, ListExternaladdonsResult, ListGlobalsecretsCall, ListGlobalsecretsOptions, ListGlobalsecretsParameters, ListGlobalsecretsRequest, ListGlobalsecretsResult, ListInvoicesCall, ListInvoicesOptions, ListInvoicesParameters, ListInvoicesRequest, ListInvoicesResult, ListJobsCall, ListJobsOptions, ListJobsParameters, ListJobsRequest, ListJobsResult, ListLlmmodeldeploymentsCall, ListLlmmodeldeploymentsOptions, ListLlmmodeldeploymentsParameters, ListLlmmodeldeploymentsRequest, ListLlmmodeldeploymentsResult, ListLoadbalancersCall, ListLoadbalancersOptions, ListLoadbalancersParameters, ListLoadbalancersRequest, ListLoadbalancersResult, ListLogsinksCall, ListLogsinksOptions, ListLogsinksParameters, ListLogsinksRequest, ListLogsinksResult, ListNotificationsCall, ListNotificationsOptions, ListNotificationsParameters, ListNotificationsRequest, ListNotificationsResult, ListOrgrolesCall, ListOrgrolesOptions, ListOrgrolesRequest, ListOrgrolesResult, ListPipelinesCall, ListPipelinesOptions, ListPipelinesParameters, ListPipelinesRequest, ListPipelinesResult, ListPipelinetemplatepreviewsCall, ListPipelinetemplatepreviewsOptions, ListPipelinetemplatepreviewsParameters, ListPipelinetemplatepreviewsRequest, ListPipelinetemplatepreviewsResult, ListPlansCall, ListPlansRequest, ListPlansResult, ListPreviewblueprintrunsCall, ListPreviewblueprintrunsOptions, ListPreviewblueprintrunsParameters, ListPreviewblueprintrunsRequest, ListPreviewblueprintrunsResult, ListPreviewblueprintsCall, ListPreviewblueprintsOptions, ListPreviewblueprintsParameters, ListPreviewblueprintsRequest, ListPreviewblueprintsResult, ListPreviewtemplaterunsCall, ListPreviewtemplaterunsOptions, ListPreviewtemplaterunsParameters, ListPreviewtemplaterunsRequest, ListPreviewtemplaterunsResult, ListProjectsCall, ListProjectsOptions, ListProjectsParameters, ListProjectsRequest, ListProjectsResult, ListRegionsCall, ListRegionsRequest, ListRegionsResult, ListRegistrycredentialsCall, ListRegistrycredentialsOptions, ListRegistrycredentialsParameters, ListRegistrycredentialsRequest, ListRegistrycredentialsResult, ListReleaseflowrunsCall, ListReleaseflowrunsOptions, ListReleaseflowrunsParameters, ListReleaseflowrunsRequest, ListReleaseflowrunsResult, ListReposCall, ListReposOptions, ListReposParameters, ListReposRequest, ListReposResult, ListSecretsCall, ListSecretsOptions, ListSecretsParameters, ListSecretsRequest, ListSecretsResult, ListServicesCall, ListServicesOptions, ListServicesParameters, ListServicesRequest, ListServicesResult, ListSshidentitiesCall, ListSshidentitiesOptions, ListSshidentitiesParameters, ListSshidentitiesRequest, ListSshidentitiesResult, ListSubdomainPathCall, ListSubdomainPathParameters, ListSubdomainPathRequest, ListSubdomainPathResult, ListTagsCall, ListTagsOptions, ListTagsParameters, ListTagsRequest, ListTagsResult, ListTeammembersCall, ListTeammembersOptions, ListTeammembersParameters, ListTeammembersRequest, ListTeammembersResult, ListTeamrolesCall, ListTeamrolesOptions, ListTeamrolesParameters, ListTeamrolesRequest, ListTeamrolesResult, ListTeamsCall, ListTeamsOptions, ListTeamsRequest, ListTeamsResult, ListTemplaterunsCall, ListTemplaterunsOptions, ListTemplaterunsParameters, ListTemplaterunsRequest, ListTemplaterunsResult, ListTemplatesCall, ListTemplatesOptions, ListTemplatesParameters, ListTemplatesRequest, ListTemplatesResult, ListVcsCall, ListVcsParameters, ListVcsRequest, ListVcsResult, ListVolumesCall, ListVolumesOptions, ListVolumesParameters, ListVolumesRequest, ListVolumesResult, ListWorkflowrunsCall, ListWorkflowrunsOptions, ListWorkflowrunsParameters, ListWorkflowrunsRequest, ListWorkflowrunsResult, ListWorkflowsCall, ListWorkflowsOptions, ListWorkflowsParameters, ListWorkflowsRequest, ListWorkflowsResult, LogLine, MetricUnit, MetricValue, MetricsEntry, MetricsRangeRequestData, MetricsSingleRequestData, PatchAddonCall, PatchAddonData, PatchAddonParameters, PatchAddonRequest, PatchAddonResult, PatchBackupdestinationCall, PatchBackupdestinationData, PatchBackupdestinationParameters, PatchBackupdestinationRequest, PatchBackupdestinationResult, PatchCloudClusterCall, PatchCloudClusterData, PatchCloudClusterParameters, PatchCloudClusterRequest, PatchCloudClusterResult, PatchCloudIntegrationCall, PatchCloudIntegrationData, PatchCloudIntegrationParameters, PatchCloudIntegrationRequest, PatchCloudIntegrationResult, PatchEgressipCall, PatchEgressipData, PatchEgressipParameters, PatchEgressipRequest, PatchEgressipResult, PatchGlobalsecretCall, PatchGlobalsecretData, PatchGlobalsecretParameters, PatchGlobalsecretRequest, PatchGlobalsecretResult, PatchGradualrolloutstrategyCall, PatchGradualrolloutstrategyData, PatchGradualrolloutstrategyParameters, PatchGradualrolloutstrategyRequest, PatchGradualrolloutstrategyResult, PatchJobCall, PatchJobCronCall, PatchJobCronData, PatchJobCronParameters, PatchJobCronRequest, PatchJobCronResult, PatchJobData, PatchJobManualCall, PatchJobManualData, PatchJobManualParameters, PatchJobManualRequest, PatchJobManualResult, PatchJobParameters, PatchJobRequest, PatchJobResult, PatchLoadbalancerCall, PatchLoadbalancerData, PatchLoadbalancerParameters, PatchLoadbalancerRequest, PatchLoadbalancerResult, PatchOrgroleCall, PatchOrgroleData, PatchOrgroleParameters, PatchOrgroleRequest, PatchOrgroleResult, PatchProjectCall, PatchProjectData, PatchProjectParameters, PatchProjectRequest, PatchProjectResult, PatchSecretCall, PatchSecretData, PatchSecretParameters, PatchSecretRequest, PatchSecretResult, PatchServiceBuildCall, PatchServiceBuildData, PatchServiceBuildParameters, PatchServiceBuildRequest, PatchServiceBuildResult, PatchServiceCombinedCall, PatchServiceCombinedData, PatchServiceCombinedParameters, PatchServiceCombinedRequest, PatchServiceCombinedResult, PatchServiceDeploymentCall, PatchServiceDeploymentData, PatchServiceDeploymentParameters, PatchServiceDeploymentRequest, PatchServiceDeploymentResult, PatchTagCall, PatchTagData, PatchTagParameters, PatchTagRequest, PatchTagResult, PatchTeamCall, PatchTeamData, PatchTeamParameters, PatchTeamRequest, PatchTeamResult, PatchTeamroleCall, PatchTeamroleData, PatchTeamroleParameters, PatchTeamroleRequest, PatchTeamroleResult, PauseAddonCall, PauseAddonParameters, PauseAddonRequest, PauseAddonResult, PauseBlueprinttemplatepreviewCall, PauseBlueprinttemplatepreviewParameters, PauseBlueprinttemplatepreviewRequest, PauseBlueprinttemplatepreviewResult, PauseJobCall, PauseJobParameters, PauseJobRequest, PauseJobResult, PauseLogsinkCall, PauseLogsinkParameters, PauseLogsinkRequest, PauseLogsinkResult, PauseServiceCall, PauseServiceParameters, PauseServiceRequest, PauseServiceResult, PortForwardingInfo, PortForwardingResult, PutAddonCall, PutAddonData, PutAddonParameters, PutAddonRequest, PutAddonResult, PutCloudClusterCall, PutCloudClusterData, PutCloudClusterParameters, PutCloudClusterRequest, PutCloudClusterResult, PutCloudIntegrationCall, PutCloudIntegrationData, PutCloudIntegrationParameters, PutCloudIntegrationRequest, PutCloudIntegrationResult, PutEgressipCall, PutEgressipData, PutEgressipParameters, PutEgressipRequest, PutEgressipResult, PutGlobalsecretCall, PutGlobalsecretData, PutGlobalsecretParameters, PutGlobalsecretRequest, PutGlobalsecretResult, PutGradualrolloutstrategyCall, PutGradualrolloutstrategyData, PutGradualrolloutstrategyParameters, PutGradualrolloutstrategyRequest, PutGradualrolloutstrategyResult, PutJobCall, PutJobCronCall, PutJobCronData, PutJobCronParameters, PutJobCronRequest, PutJobCronResult, PutJobData, PutJobManualCall, PutJobManualData, PutJobManualParameters, PutJobManualRequest, PutJobManualResult, PutJobParameters, PutJobRequest, PutJobResult, PutLoadbalancerCall, PutLoadbalancerData, PutLoadbalancerParameters, PutLoadbalancerRequest, PutLoadbalancerResult, PutProjectCall, PutProjectData, PutProjectParameters, PutProjectRequest, PutProjectResult, PutSecretCall, PutSecretData, PutSecretParameters, PutSecretRequest, PutSecretResult, PutServiceBuildCall, PutServiceBuildData, PutServiceBuildParameters, PutServiceBuildRequest, PutServiceBuildResult, PutServiceCombinedCall, PutServiceCombinedData, PutServiceCombinedParameters, PutServiceCombinedRequest, PutServiceCombinedResult, PutServiceDeploymentCall, PutServiceDeploymentData, PutServiceDeploymentParameters, PutServiceDeploymentRequest, PutServiceDeploymentResult, PutSshidentitiesCall, PutSshidentitiesData, PutSshidentitiesParameters, PutSshidentitiesRequest, PutSshidentitiesResult, PutTagCall, PutTagData, PutTagParameters, PutTagRequest, PutTagResult, PutTeamroleCall, PutTeamroleData, PutTeamroleParameters, PutTeamroleRequest, PutTeamroleResult, ResetAddonCall, ResetAddonParameters, ResetAddonRequest, ResetAddonResult, RestartAddonCall, RestartAddonParameters, RestartAddonRequest, RestartAddonResult, RestartServiceCall, RestartServiceParameters, RestartServiceRequest, RestartServiceResult, RestoreAddonBackupCall, RestoreAddonBackupOptions, RestoreAddonBackupParameters, RestoreAddonBackupRequest, RestoreAddonBackupResult, ResumeAddonCall, ResumeAddonParameters, ResumeAddonRequest, ResumeAddonResult, ResumeBlueprinttemplatepreviewCall, ResumeBlueprinttemplatepreviewParameters, ResumeBlueprinttemplatepreviewRequest, ResumeBlueprinttemplatepreviewResult, ResumeJobCall, ResumeJobData, ResumeJobParameters, ResumeJobRequest, ResumeJobResult, ResumeLogsinkCall, ResumeLogsinkParameters, ResumeLogsinkRequest, ResumeLogsinkResult, ResumeServiceCall, ResumeServiceData, ResumeServiceParameters, ResumeServiceRequest, ResumeServiceResult, RetainAddonBackupCall, RetainAddonBackupParameters, RetainAddonBackupRequest, RetainAddonBackupResult, RunPreviewblueprintCall, RunPreviewblueprintData, RunPreviewblueprintParameters, RunPreviewblueprintRequest, RunPreviewblueprintResult, RunPreviewtemplateCall, RunPreviewtemplateData, RunPreviewtemplateParameters, RunPreviewtemplateRequest, RunPreviewtemplateResult, RunReleaseflowCall, RunReleaseflowData, RunReleaseflowParameters, RunReleaseflowRequest, RunReleaseflowResult, RunTemplateCall, RunTemplateData, RunTemplateParameters, RunTemplateRequest, RunTemplateResult, RunWorkflowCall, RunWorkflowData, RunWorkflowParameters, RunWorkflowRequest, RunWorkflowResult, ScaleAddonCall, ScaleAddonData, ScaleAddonParameters, ScaleAddonRequest, ScaleAddonResult, ScaleJobCall, ScaleJobData, ScaleJobParameters, ScaleJobRequest, ScaleJobResult, ScaleServiceCall, ScaleServiceData, ScaleServiceParameters, ScaleServiceRequest, ScaleServiceResult, StartJobBuildCall, StartJobBuildData, StartJobBuildParameters, StartJobBuildRequest, StartJobBuildResult, StartJobRunCall, StartJobRunData, StartJobRunParameters, StartJobRunRequest, StartJobRunResult, StartServiceBuildCall, StartServiceBuildData, StartServiceBuildParameters, StartServiceBuildRequest, StartServiceBuildResult, SuspendJobCall, SuspendJobData, SuspendJobParameters, SuspendJobRequest, SuspendJobResult, TailAddonBackupLogsCall, TailAddonLogsCall, TailAddonRestoresLogsCall, TailJobBuildlogsCall, TailJobLogsCall, TailServiceBuildlogsCall, TailServiceLogsCall, UnassignSubdomainCall, UnassignSubdomainOptions, UnassignSubdomainParameters, UnassignSubdomainPathCall, UnassignSubdomainPathParameters, UnassignSubdomainPathRequest, UnassignSubdomainPathResult, UnassignSubdomainRequest, UnassignSubdomainResult, UncordonCloudClusterNodeCall, UncordonCloudClusterNodeParameters, UncordonCloudClusterNodeRequest, UncordonCloudClusterNodeResult, UpdateAddonNetworksettingsCall, UpdateAddonNetworksettingsData, UpdateAddonNetworksettingsParameters, UpdateAddonNetworksettingsRequest, UpdateAddonNetworksettingsResult, UpdateAddonSecurityCall, UpdateAddonSecurityData, UpdateAddonSecurityParameters, UpdateAddonSecurityRequest, UpdateAddonSecurityResult, UpdateAddonVersionCall, UpdateAddonVersionData, UpdateAddonVersionParameters, UpdateAddonVersionRequest, UpdateAddonVersionResult, UpdateExternaladdonCall, UpdateExternaladdonData, UpdateExternaladdonParameters, UpdateExternaladdonRequest, UpdateExternaladdonResult, UpdateJobBuildargumentsCall, UpdateJobBuildargumentsData, UpdateJobBuildargumentsParameters, UpdateJobBuildargumentsRequest, UpdateJobBuildargumentsResult, UpdateJobBuildoptionsCall, UpdateJobBuildoptionsData, UpdateJobBuildoptionsParameters, UpdateJobBuildoptionsRequest, UpdateJobBuildoptionsResult, UpdateJobBuildsourceCall, UpdateJobBuildsourceData, UpdateJobBuildsourceParameters, UpdateJobBuildsourceRequest, UpdateJobBuildsourceResult, UpdateJobDeploymentCall, UpdateJobDeploymentData, UpdateJobDeploymentParameters, UpdateJobDeploymentRequest, UpdateJobDeploymentResult, UpdateJobHealthchecksCall, UpdateJobHealthchecksData, UpdateJobHealthchecksParameters, UpdateJobHealthchecksRequest, UpdateJobHealthchecksResult, UpdateJobRuntimeenvironmentCall, UpdateJobRuntimeenvironmentData, UpdateJobRuntimeenvironmentParameters, UpdateJobRuntimeenvironmentRequest, UpdateJobRuntimeenvironmentResult, UpdateJobSettingsCall, UpdateJobSettingsData, UpdateJobSettingsParameters, UpdateJobSettingsRequest, UpdateJobSettingsResult, UpdateLlmmodeldeploymentCall, UpdateLlmmodeldeploymentData, UpdateLlmmodeldeploymentParameters, UpdateLlmmodeldeploymentRequest, UpdateLlmmodeldeploymentResult, UpdateLogsinkCall, UpdateLogsinkData, UpdateLogsinkParameters, UpdateLogsinkRequest, UpdateLogsinkResult, UpdateNotificationCall, UpdateNotificationData, UpdateNotificationParameters, UpdateNotificationRequest, UpdateNotificationResult, UpdateOrgroleCall, UpdateOrgroleData, UpdateOrgroleParameters, UpdateOrgroleRequest, UpdateOrgroleResult, UpdatePreviewblueprintCall, UpdatePreviewblueprintData, UpdatePreviewblueprintParameters, UpdatePreviewblueprintRequest, UpdatePreviewblueprintResult, UpdatePreviewtemplateCall, UpdatePreviewtemplateData, UpdatePreviewtemplateParameters, UpdatePreviewtemplateRequest, UpdatePreviewtemplateResult, UpdateRegistrycredentialsCall, UpdateRegistrycredentialsData, UpdateRegistrycredentialsParameters, UpdateRegistrycredentialsRequest, UpdateRegistrycredentialsResult, UpdateReleaseflowCall, UpdateReleaseflowData, UpdateReleaseflowParameters, UpdateReleaseflowRequest, UpdateReleaseflowResult, UpdateSecretCall, UpdateSecretData, UpdateSecretParameters, UpdateSecretRequest, UpdateSecretResult, UpdateSecretlinkCall, UpdateSecretlinkData, UpdateSecretlinkParameters, UpdateSecretlinkRequest, UpdateSecretlinkResult, UpdateServiceBuildargumentsCall, UpdateServiceBuildargumentsData, UpdateServiceBuildargumentsParameters, UpdateServiceBuildargumentsRequest, UpdateServiceBuildargumentsResult, UpdateServiceBuildoptionsCall, UpdateServiceBuildoptionsData, UpdateServiceBuildoptionsParameters, UpdateServiceBuildoptionsRequest, UpdateServiceBuildoptionsResult, UpdateServiceBuildsourceCall, UpdateServiceBuildsourceData, UpdateServiceBuildsourceParameters, UpdateServiceBuildsourceRequest, UpdateServiceBuildsourceResult, UpdateServiceDeploymentCall, UpdateServiceDeploymentData, UpdateServiceDeploymentParameters, UpdateServiceDeploymentRequest, UpdateServiceDeploymentResult, UpdateServiceHealthchecksCall, UpdateServiceHealthchecksData, UpdateServiceHealthchecksParameters, UpdateServiceHealthchecksRequest, UpdateServiceHealthchecksResult, UpdateServicePortsCall, UpdateServicePortsData, UpdateServicePortsParameters, UpdateServicePortsRequest, UpdateServicePortsResult, UpdateServiceRuntimeenvironmentCall, UpdateServiceRuntimeenvironmentData, UpdateServiceRuntimeenvironmentParameters, UpdateServiceRuntimeenvironmentRequest, UpdateServiceRuntimeenvironmentResult, UpdateSshidentitiesCall, UpdateSshidentitiesData, UpdateSshidentitiesParameters, UpdateSshidentitiesRequest, UpdateSshidentitiesResult, UpdateSubdomainPathCall, UpdateSubdomainPathData, UpdateSubdomainPathParameters, UpdateSubdomainPathRequest, UpdateSubdomainPathResult, UpdateTemplateCall, UpdateTemplateData, UpdateTemplateParameters, UpdateTemplateRequest, UpdateTemplateResult, UpdateVolumeCall, UpdateVolumeData, UpdateVolumeParameters, UpdateVolumeRequest, UpdateVolumeResult, UpdateWorkflowCall, UpdateWorkflowData, UpdateWorkflowParameters, UpdateWorkflowRequest, UpdateWorkflowResult, UploadOptions, VerifyDomainCall, VerifyDomainParameters, VerifyDomainRequest, VerifyDomainResult, VerifySubdomainCall, VerifySubdomainParameters, VerifySubdomainRequest, VerifySubdomainResult };
38494
+ export { AbortAddonBackupEndpoint, AbortAddonRestoreEndpoint, AbortJobBuildEndpoint, AbortJobRunEndpoint, AbortPreviewblueprintrunEndpoint, AbortReleaseflowrunEndpoint, AbortServiceBuildEndpoint, AbortTemplaterunEndpoint, AbortWorkflowrunEndpoint, AddBackupdestinationEndpoint, AddDomainSubdomainEndpoint, AddRegistrycredentialsEndpoint, AddSshidentitiesEndpoint, AddSubdomainPathEndpoint, AddTagEndpoint, ApiClient, ApiClientContextProvider, ApiClientFileContextProvider, ApiClientInMemoryContextProvider, ApiEndpoint, AssignSubdomainPathEndpoint, AssignSubdomainServiceEndpoint, AttachVolumeEndpoint, BackupAddonEndpoint, BackupVolumeEndpoint, CopyType, CordonCloudClusterNodeEndpoint, CreateAddonBackupscheduleEndpoint, CreateAddonEndpoint, CreateCloudClusterEndpoint, CreateCloudIntegrationEndpoint, CreateCustomvcsTokenEndpoint, CreateDomainEndpoint, CreateEgressipEndpoint, CreateExternaladdonEndpoint, CreateGlobalsecretEndpoint, CreateGradualrolloutstrategyEndpoint, CreateJobCronEndpoint, CreateJobEndpoint, CreateJobManualEndpoint, CreateLlmmodeldeploymentEndpoint, CreateLoadbalancerEndpoint, CreateLogsinkEndpoint, CreateNotificationEndpoint, CreateOrgroleEndpoint, CreateOrgrolememberEndpoint, CreatePreviewblueprintEndpoint, CreateProjectEndpoint, CreateSecretEndpoint, CreateServiceBuildEndpoint, CreateServiceCombinedEndpoint, CreateServiceDeploymentEndpoint, CreateTeamEndpoint, CreateTeammemberinviteEndpoint, CreateTeamroleEndpoint, CreateTeamrolememberEndpoint, CreateTemplateEndpoint, CreateVolumeEndpoint, CreateWorkflowEndpoint, DeleteAddonBackupscheduleEndpoint, DeleteAddonEndpoint, DeleteApiEndpoint, DeleteBackupEndpoint, DeleteBackupdestinationEndpoint, DeleteBlueprinttemplatepreviewEndpoint, DeleteCloudClusterEndpoint, DeleteCloudIntegrationEndpoint, DeleteDomainEndpoint, DeleteEgressipEndpoint, DeleteExternaladdonEndpoint, DeleteGlobalsecretEndpoint, DeleteGradualrolloutstrategyEndpoint, DeleteJobEndpoint, DeleteLlmmodeldeploymentEndpoint, DeleteLoadbalancerEndpoint, DeleteLogsinkEndpoint, DeleteNotificationEndpoint, DeleteOrgroleEndpoint, DeleteOrgrolememberEndpoint, DeletePipelinetemplatepreviewEndpoint, DeletePreviewblueprintEndpoint, DeleteProjectEndpoint, DeleteRegistrycredentialsEndpoint, DeleteSecretEndpoint, DeleteSecretlinkEndpoint, DeleteServiceEndpoint, DeleteSshidentitiesEndpoint, DeleteSubdomainEndpoint, DeleteSubdomainPathEndpoint, DeleteTagEndpoint, DeleteTeammemberEndpoint, DeleteTeamroleEndpoint, DeleteTeamrolememberEndpoint, DeleteTemplateEndpoint, DeleteVolumeBackupEndpoint, DeleteVolumeEndpoint, DetachVolumeEndpoint, DisableSubdomainCdnEndpoint, DrainCloudClusterNodeEndpoint, EnableSubdomainCdnEndpoint, ExecCommandStandard, GetAddonBackupDownloadEndpoint, GetAddonBackupEndpoint, GetAddonBackupRestoresEndpoint, GetAddonBackupsEndpoint, GetAddonBackupschedulesEndpoint, GetAddonContainersEndpoint, GetAddonCredentialsEndpoint, GetAddonEndpoint, GetAddonRestoresEndpoint, GetAddonTypesEndpoint, GetAddonVersionEndpoint, GetApiEndpoint, GetApiEndpointPaginated, GetBackupdestinationEndpoint, GetCloudClusterEndpoint, GetCloudIntegrationEndpoint, GetDnsidEndpoint, GetDomainEndpoint, GetDomaincertificateEndpoint, GetEgressipEndpoint, GetExternaladdonEndpoint, GetGlobalsecretEndpoint, GetInvoiceDetailsEndpoint, GetJobBranchesEndpoint, GetJobBuildEndpoint, GetJobBuildargumentdetailsEndpoint, GetJobBuildargumentsEndpoint, GetJobBuildsEndpoint, GetJobContainersEndpoint, GetJobDeploymentEndpoint, GetJobEndpoint, GetJobHealthchecksEndpoint, GetJobPullrequestsEndpoint, GetJobRunEndpoint, GetJobRunsEndpoint, GetJobRuntimeenvironmentEndpoint, GetJobRuntimeenvironmentdetailsEndpoint, GetLlmmodeldeploymentEndpoint, GetLoadbalancerEndpoint, GetLogsinkEndpoint, GetNotificationEndpoint, GetOrgdirectorygroupsEndpoint, GetOrgroleEndpoint, GetPipelineEndpoint, GetPreviewblueprintEndpoint, GetPreviewblueprintrunEndpoint, GetPreviewtemplateEndpoint, GetPreviewtemplaterunEndpoint, GetProjectEndpoint, GetRegistrycredentialsEndpoint, GetReleaseflowEndpoint, GetReleaseflowrunEndpoint, GetSecretEndpoint, GetSecretdetailsEndpoint, GetSecretlinkEndpoint, GetServiceBranchesEndpoint, GetServiceBuildEndpoint, GetServiceBuildargumentdetailsEndpoint, GetServiceBuildargumentsEndpoint, GetServiceBuildsEndpoint, GetServiceContainersEndpoint, GetServiceDeploymentEndpoint, GetServiceEndpoint, GetServiceHealthchecksEndpoint, GetServicePortsEndpoint, GetServicePullrequestsEndpoint, GetServiceRuntimeenvironmentEndpoint, GetServiceRuntimeenvironmentdetailsEndpoint, GetSshidentitiesEndpoint, GetSubdomainEndpoint, GetSubdomainPathEndpoint, GetTagEndpoint, GetTeamEndpoint, GetTeamroleEndpoint, GetTemplateEndpoint, GetTemplaterunEndpoint, GetVolumeBackupEndpoint, GetVolumeBackupsEndpoint, GetVolumeEndpoint, GetWorkflowEndpoint, GetWorkflowrunEndpoint, ImportAddonBackupEndpoint, ImportDomaincertificateEndpoint, ListAddonsEndpoint, ListBackupdestinationsEndpoint, ListBackupdestinationsbackupsEndpoint, ListBlueprinttemplatepreviewsEndpoint, ListBranchesEndpoint, ListCloudClusterNodesEndpoint, ListCloudClustersEndpoint, ListCloudIntegrationsEndpoint, ListCloudNodetypesEndpoint, ListCloudProvidersEndpoint, ListCloudRegionsEndpoint, ListDomainsEndpoint, ListEgressipsEndpoint, ListExternaladdonsEndpoint, ListGlobalsecretsEndpoint, ListInvoicesEndpoint, ListJobsEndpoint, ListLlmmodeldeploymentsEndpoint, ListLoadbalancersEndpoint, ListLogsinksEndpoint, ListNotificationsEndpoint, ListOrgrolesEndpoint, ListPipelinesEndpoint, ListPipelinetemplatepreviewsEndpoint, ListPlansEndpoint, ListPreviewblueprintrunsEndpoint, ListPreviewblueprintsEndpoint, ListPreviewtemplaterunsEndpoint, ListProjectsEndpoint, ListRegionsEndpoint, ListRegistrycredentialsEndpoint, ListReleaseflowrunsEndpoint, ListReposEndpoint, ListSecretsEndpoint, ListServicesEndpoint, ListSshidentitiesEndpoint, ListSubdomainPathEndpoint, ListTagsEndpoint, ListTeammembersEndpoint, ListTeamrolesEndpoint, ListTeamsEndpoint, ListTemplaterunsEndpoint, ListTemplatesEndpoint, ListVcsEndpoint, ListVolumesEndpoint, ListWorkflowrunsEndpoint, ListWorkflowsEndpoint, LogType, MetricType, NorthflankApiCallError, NorthflankExecCommand, NorthflankFileCopy, NorthflankLogFetch, NorthflankMetricFetch, NorthflankPortForwarder, PatchAddonEndpoint, PatchApiEndpoint, PatchBackupdestinationEndpoint, PatchCloudClusterEndpoint, PatchCloudIntegrationEndpoint, PatchEgressipEndpoint, PatchGlobalsecretEndpoint, PatchGradualrolloutstrategyEndpoint, PatchJobCronEndpoint, PatchJobEndpoint, PatchJobManualEndpoint, PatchLoadbalancerEndpoint, PatchOrgroleEndpoint, PatchProjectEndpoint, PatchSecretEndpoint, PatchServiceBuildEndpoint, PatchServiceCombinedEndpoint, PatchServiceDeploymentEndpoint, PatchTagEndpoint, PatchTeamEndpoint, PatchTeamroleEndpoint, PauseAddonEndpoint, PauseBlueprinttemplatepreviewEndpoint, PauseJobEndpoint, PauseLogsinkEndpoint, PauseServiceEndpoint, PostApiEndpoint, PutAddonEndpoint, PutApiEndpoint, PutCloudClusterEndpoint, PutCloudIntegrationEndpoint, PutDomainSubdomainEndpoint, PutEgressipEndpoint, PutGlobalsecretEndpoint, PutGradualrolloutstrategyEndpoint, PutJobCronEndpoint, PutJobEndpoint, PutJobManualEndpoint, PutLoadbalancerEndpoint, PutOrgroleEndpoint, PutProjectEndpoint, PutSecretEndpoint, PutServiceBuildEndpoint, PutServiceCombinedEndpoint, PutServiceDeploymentEndpoint, PutSshidentitiesEndpoint, PutTagEndpoint, PutTeamroleEndpoint, ResetAddonEndpoint, ResetBlueprinttemplatepreviewEndpoint, RestartAddonEndpoint, RestartServiceEndpoint, RestoreAddonBackupEndpoint, ResumeAddonEndpoint, ResumeBlueprinttemplatepreviewEndpoint, ResumeJobEndpoint, ResumeLogsinkEndpoint, ResumeServiceEndpoint, RetainAddonBackupEndpoint, RunPreviewblueprintEndpoint, RunPreviewtemplateEndpoint, RunReleaseflowEndpoint, RunTemplateEndpoint, RunWorkflowEndpoint, ScaleAddonEndpoint, ScaleJobEndpoint, ScaleServiceEndpoint, StartJobBuildEndpoint, StartJobRunEndpoint, StartServiceBuildEndpoint, SuspendJobEndpoint, UnassignSubdomainEndpoint, UnassignSubdomainPathEndpoint, UncordonCloudClusterNodeEndpoint, UpdateAddonNetworksettingsEndpoint, UpdateAddonSecurityEndpoint, UpdateAddonVersionEndpoint, UpdateExternaladdonEndpoint, UpdateJobBuildargumentsEndpoint, UpdateJobBuildoptionsEndpoint, UpdateJobBuildsourceEndpoint, UpdateJobDeploymentEndpoint, UpdateJobHealthchecksEndpoint, UpdateJobRuntimeenvironmentEndpoint, UpdateJobSettingsEndpoint, UpdateLlmmodeldeploymentEndpoint, UpdateLogsinkEndpoint, UpdateNotificationEndpoint, UpdatePreviewblueprintEndpoint, UpdatePreviewtemplateEndpoint, UpdateRegistrycredentialsEndpoint, UpdateReleaseflowEndpoint, UpdateSecretEndpoint, UpdateSecretlinkEndpoint, UpdateServiceBuildargumentsEndpoint, UpdateServiceBuildoptionsEndpoint, UpdateServiceBuildsourceEndpoint, UpdateServiceDeploymentEndpoint, UpdateServiceHealthchecksEndpoint, UpdateServicePortsEndpoint, UpdateServiceRuntimeenvironmentEndpoint, UpdateSshidentitiesEndpoint, UpdateSubdomainPathEndpoint, UpdateTemplateEndpoint, UpdateVolumeEndpoint, UpdateWorkflowEndpoint, VerifyDomainEndpoint, VerifySubdomainEndpoint };
38495
+ export type { AbortAddonBackupCall, AbortAddonBackupParameters, AbortAddonBackupRequest, AbortAddonBackupResult, AbortAddonRestoreCall, AbortAddonRestoreData, AbortAddonRestoreOptions, AbortAddonRestoreParameters, AbortAddonRestoreRequest, AbortAddonRestoreResult, AbortJobBuildCall, AbortJobBuildParameters, AbortJobBuildRequest, AbortJobBuildResult, AbortJobRunCall, AbortJobRunParameters, AbortJobRunRequest, AbortJobRunResult, AbortPreviewblueprintrunCall, AbortPreviewblueprintrunParameters, AbortPreviewblueprintrunRequest, AbortPreviewblueprintrunResult, AbortReleaseflowrunCall, AbortReleaseflowrunParameters, AbortReleaseflowrunRequest, AbortReleaseflowrunResult, AbortServiceBuildCall, AbortServiceBuildParameters, AbortServiceBuildRequest, AbortServiceBuildResult, AbortTemplaterunCall, AbortTemplaterunParameters, AbortTemplaterunRequest, AbortTemplaterunResult, AbortWorkflowrunCall, AbortWorkflowrunParameters, AbortWorkflowrunRequest, AbortWorkflowrunResult, AddBackupdestinationCall, AddBackupdestinationData, AddBackupdestinationParameters, AddBackupdestinationRequest, AddBackupdestinationResult, AddDomainSubdomainCall, AddDomainSubdomainData, AddDomainSubdomainParameters, AddDomainSubdomainRequest, AddDomainSubdomainResult, AddRegistrycredentialsCall, AddRegistrycredentialsData, AddRegistrycredentialsParameters, AddRegistrycredentialsRequest, AddRegistrycredentialsResult, AddSshidentitiesCall, AddSshidentitiesData, AddSshidentitiesParameters, AddSshidentitiesRequest, AddSshidentitiesResult, AddSubdomainPathCall, AddSubdomainPathData, AddSubdomainPathParameters, AddSubdomainPathRequest, AddSubdomainPathResult, AddTagCall, AddTagData, AddTagParameters, AddTagRequest, AddTagResult, ApiCallError, ApiCallResponse, ApiClientContext, ApiClientContextWrapper, ApiClientOpts, AssignSubdomainPathCall, AssignSubdomainPathData, AssignSubdomainPathParameters, AssignSubdomainPathRequest, AssignSubdomainPathResult, AssignSubdomainServiceCall, AssignSubdomainServiceData, AssignSubdomainServiceParameters, AssignSubdomainServiceRequest, AssignSubdomainServiceResult, AttachVolumeCall, AttachVolumeData, AttachVolumeParameters, AttachVolumeRequest, AttachVolumeResult, BackupAddonCall, BackupAddonData, BackupAddonParameters, BackupAddonRequest, BackupAddonResult, BackupVolumeCall, BackupVolumeData, BackupVolumeParameters, BackupVolumeRequest, BackupVolumeResult, CommandResult, CordonCloudClusterNodeCall, CordonCloudClusterNodeParameters, CordonCloudClusterNodeRequest, CordonCloudClusterNodeResult, CreateAddonBackupscheduleCall, CreateAddonBackupscheduleData, CreateAddonBackupscheduleParameters, CreateAddonBackupscheduleRequest, CreateAddonBackupscheduleResult, CreateAddonCall, CreateAddonData, CreateAddonParameters, CreateAddonRequest, CreateAddonResult, CreateCloudClusterCall, CreateCloudClusterData, CreateCloudClusterParameters, CreateCloudClusterRequest, CreateCloudClusterResult, CreateCloudIntegrationCall, CreateCloudIntegrationData, CreateCloudIntegrationParameters, CreateCloudIntegrationRequest, CreateCloudIntegrationResult, CreateCustomvcsTokenCall, CreateCustomvcsTokenOptions, CreateCustomvcsTokenParameters, CreateCustomvcsTokenRequest, CreateCustomvcsTokenResult, CreateDomainCall, CreateDomainData, CreateDomainParameters, CreateDomainRequest, CreateDomainResult, CreateEgressipCall, CreateEgressipData, CreateEgressipParameters, CreateEgressipRequest, CreateEgressipResult, CreateExternaladdonCall, CreateExternaladdonData, CreateExternaladdonParameters, CreateExternaladdonRequest, CreateExternaladdonResult, CreateGlobalsecretCall, CreateGlobalsecretData, CreateGlobalsecretParameters, CreateGlobalsecretRequest, CreateGlobalsecretResult, CreateGradualrolloutstrategyCall, CreateGradualrolloutstrategyData, CreateGradualrolloutstrategyParameters, CreateGradualrolloutstrategyRequest, CreateGradualrolloutstrategyResult, CreateJobCall, CreateJobCronCall, CreateJobCronData, CreateJobCronParameters, CreateJobCronRequest, CreateJobCronResult, CreateJobData, CreateJobManualCall, CreateJobManualData, CreateJobManualParameters, CreateJobManualRequest, CreateJobManualResult, CreateJobParameters, CreateJobRequest, CreateJobResult, CreateLlmmodeldeploymentCall, CreateLlmmodeldeploymentData, CreateLlmmodeldeploymentParameters, CreateLlmmodeldeploymentRequest, CreateLlmmodeldeploymentResult, CreateLoadbalancerCall, CreateLoadbalancerData, CreateLoadbalancerParameters, CreateLoadbalancerRequest, CreateLoadbalancerResult, CreateLogsinkCall, CreateLogsinkData, CreateLogsinkParameters, CreateLogsinkRequest, CreateLogsinkResult, CreateNotificationCall, CreateNotificationData, CreateNotificationParameters, CreateNotificationRequest, CreateNotificationResult, CreateOrgroleCall, CreateOrgroleData, CreateOrgroleRequest, CreateOrgroleResult, CreateOrgrolememberCall, CreateOrgrolememberData, CreateOrgrolememberParameters, CreateOrgrolememberRequest, CreateOrgrolememberResult, CreatePreviewblueprintCall, CreatePreviewblueprintData, CreatePreviewblueprintParameters, CreatePreviewblueprintRequest, CreatePreviewblueprintResult, CreateProjectCall, CreateProjectData, CreateProjectParameters, CreateProjectRequest, CreateProjectResult, CreateSecretCall, CreateSecretData, CreateSecretParameters, CreateSecretRequest, CreateSecretResult, CreateServiceBuildCall, CreateServiceBuildData, CreateServiceBuildParameters, CreateServiceBuildRequest, CreateServiceBuildResult, CreateServiceCombinedCall, CreateServiceCombinedData, CreateServiceCombinedParameters, CreateServiceCombinedRequest, CreateServiceCombinedResult, CreateServiceDeploymentCall, CreateServiceDeploymentData, CreateServiceDeploymentParameters, CreateServiceDeploymentRequest, CreateServiceDeploymentResult, CreateTeamCall, CreateTeamData, CreateTeamRequest, CreateTeamResult, CreateTeammemberinviteCall, CreateTeammemberinviteData, CreateTeammemberinviteParameters, CreateTeammemberinviteRequest, CreateTeammemberinviteResult, CreateTeamroleCall, CreateTeamroleData, CreateTeamroleParameters, CreateTeamroleRequest, CreateTeamroleResult, CreateTeamrolememberCall, CreateTeamrolememberData, CreateTeamrolememberParameters, CreateTeamrolememberRequest, CreateTeamrolememberResult, CreateTemplateCall, CreateTemplateData, CreateTemplateParameters, CreateTemplateRequest, CreateTemplateResult, CreateVolumeCall, CreateVolumeData, CreateVolumeParameters, CreateVolumeRequest, CreateVolumeResult, CreateWorkflowCall, CreateWorkflowData, CreateWorkflowParameters, CreateWorkflowRequest, CreateWorkflowResult, DeleteAddonBackupscheduleCall, DeleteAddonBackupscheduleParameters, DeleteAddonBackupscheduleRequest, DeleteAddonBackupscheduleResult, DeleteAddonCall, DeleteAddonParameters, DeleteAddonRequest, DeleteAddonResult, DeleteBackupCall, DeleteBackupParameters, DeleteBackupRequest, DeleteBackupResult, DeleteBackupdestinationCall, DeleteBackupdestinationParameters, DeleteBackupdestinationRequest, DeleteBackupdestinationResult, DeleteBlueprinttemplatepreviewCall, DeleteBlueprinttemplatepreviewParameters, DeleteBlueprinttemplatepreviewRequest, DeleteBlueprinttemplatepreviewResult, DeleteCloudClusterCall, DeleteCloudClusterParameters, DeleteCloudClusterRequest, DeleteCloudClusterResult, DeleteCloudIntegrationCall, DeleteCloudIntegrationParameters, DeleteCloudIntegrationRequest, DeleteCloudIntegrationResult, DeleteDomainCall, DeleteDomainParameters, DeleteDomainRequest, DeleteDomainResult, DeleteEgressipCall, DeleteEgressipParameters, DeleteEgressipRequest, DeleteEgressipResult, DeleteExternaladdonCall, DeleteExternaladdonParameters, DeleteExternaladdonRequest, DeleteExternaladdonResult, DeleteGlobalsecretCall, DeleteGlobalsecretParameters, DeleteGlobalsecretRequest, DeleteGlobalsecretResult, DeleteGradualrolloutstrategyCall, DeleteGradualrolloutstrategyParameters, DeleteGradualrolloutstrategyRequest, DeleteGradualrolloutstrategyResult, DeleteJobCall, DeleteJobParameters, DeleteJobRequest, DeleteJobResult, DeleteLlmmodeldeploymentCall, DeleteLlmmodeldeploymentParameters, DeleteLlmmodeldeploymentRequest, DeleteLlmmodeldeploymentResult, DeleteLoadbalancerCall, DeleteLoadbalancerParameters, DeleteLoadbalancerRequest, DeleteLoadbalancerResult, DeleteLogsinkCall, DeleteLogsinkParameters, DeleteLogsinkRequest, DeleteLogsinkResult, DeleteNotificationCall, DeleteNotificationParameters, DeleteNotificationRequest, DeleteNotificationResult, DeleteOrgroleCall, DeleteOrgroleParameters, DeleteOrgroleRequest, DeleteOrgroleResult, DeleteOrgrolememberCall, DeleteOrgrolememberParameters, DeleteOrgrolememberRequest, DeleteOrgrolememberResult, DeletePipelinetemplatepreviewCall, DeletePipelinetemplatepreviewParameters, DeletePipelinetemplatepreviewRequest, DeletePipelinetemplatepreviewResult, DeletePreviewblueprintCall, DeletePreviewblueprintParameters, DeletePreviewblueprintRequest, DeletePreviewblueprintResult, DeleteProjectCall, DeleteProjectOptions, DeleteProjectParameters, DeleteProjectRequest, DeleteProjectResult, DeleteRegistrycredentialsCall, DeleteRegistrycredentialsParameters, DeleteRegistrycredentialsRequest, DeleteRegistrycredentialsResult, DeleteSecretCall, DeleteSecretParameters, DeleteSecretRequest, DeleteSecretResult, DeleteSecretlinkCall, DeleteSecretlinkParameters, DeleteSecretlinkRequest, DeleteSecretlinkResult, DeleteServiceCall, DeleteServiceOptions, DeleteServiceParameters, DeleteServiceRequest, DeleteServiceResult, DeleteSshidentitiesCall, DeleteSshidentitiesParameters, DeleteSshidentitiesRequest, DeleteSshidentitiesResult, DeleteSubdomainCall, DeleteSubdomainParameters, DeleteSubdomainPathCall, DeleteSubdomainPathParameters, DeleteSubdomainPathRequest, DeleteSubdomainPathResult, DeleteSubdomainRequest, DeleteSubdomainResult, DeleteTagCall, DeleteTagParameters, DeleteTagRequest, DeleteTagResult, DeleteTeammemberCall, DeleteTeammemberParameters, DeleteTeammemberRequest, DeleteTeammemberResult, DeleteTeamroleCall, DeleteTeamroleParameters, DeleteTeamroleRequest, DeleteTeamroleResult, DeleteTeamrolememberCall, DeleteTeamrolememberParameters, DeleteTeamrolememberRequest, DeleteTeamrolememberResult, DeleteTemplateCall, DeleteTemplateParameters, DeleteTemplateRequest, DeleteTemplateResult, DeleteVolumeBackupCall, DeleteVolumeBackupParameters, DeleteVolumeBackupRequest, DeleteVolumeBackupResult, DeleteVolumeCall, DeleteVolumeParameters, DeleteVolumeRequest, DeleteVolumeResult, DetachVolumeCall, DetachVolumeData, DetachVolumeParameters, DetachVolumeRequest, DetachVolumeResult, DisableSubdomainCdnCall, DisableSubdomainCdnData, DisableSubdomainCdnParameters, DisableSubdomainCdnRequest, DisableSubdomainCdnResult, DownloadOptions, DrainCloudClusterNodeCall, DrainCloudClusterNodeParameters, DrainCloudClusterNodeRequest, DrainCloudClusterNodeResult, EnableSubdomainCdnCall, EnableSubdomainCdnData, EnableSubdomainCdnParameters, EnableSubdomainCdnRequest, EnableSubdomainCdnResult, ExecCommand, ExecCommandData, ExecSessionData, GetAddonBackupCall, GetAddonBackupDownloadCall, GetAddonBackupDownloadParameters, GetAddonBackupDownloadRequest, GetAddonBackupDownloadResult, GetAddonBackupLogsCall, GetAddonBackupParameters, GetAddonBackupRequest, GetAddonBackupRestoresCall, GetAddonBackupRestoresOptions, GetAddonBackupRestoresParameters, GetAddonBackupRestoresRequest, GetAddonBackupRestoresResult, GetAddonBackupResult, GetAddonBackupsCall, GetAddonBackupsOptions, GetAddonBackupsParameters, GetAddonBackupsRequest, GetAddonBackupsResult, GetAddonBackupschedulesCall, GetAddonBackupschedulesOptions, GetAddonBackupschedulesParameters, GetAddonBackupschedulesRequest, GetAddonBackupschedulesResult, GetAddonCall, GetAddonContainersCall, GetAddonContainersOptions, GetAddonContainersParameters, GetAddonContainersRequest, GetAddonContainersResult, GetAddonCredentialsCall, GetAddonCredentialsParameters, GetAddonCredentialsRequest, GetAddonCredentialsResult, GetAddonLogsCall, GetAddonMetricsCall, GetAddonMetricsRangeCall, GetAddonParameters, GetAddonRequest, GetAddonRestoresCall, GetAddonRestoresLogsCall, GetAddonRestoresOptions, GetAddonRestoresParameters, GetAddonRestoresRequest, GetAddonRestoresResult, GetAddonResult, GetAddonTypesCall, GetAddonTypesRequest, GetAddonTypesResult, GetAddonVersionCall, GetAddonVersionParameters, GetAddonVersionRequest, GetAddonVersionResult, GetBackupdestinationCall, GetBackupdestinationParameters, GetBackupdestinationRequest, GetBackupdestinationResult, GetCloudClusterCall, GetCloudClusterParameters, GetCloudClusterRequest, GetCloudClusterResult, GetCloudIntegrationCall, GetCloudIntegrationParameters, GetCloudIntegrationRequest, GetCloudIntegrationResult, GetDnsidCall, GetDnsidParameters, GetDnsidRequest, GetDnsidResult, GetDomainCall, GetDomainParameters, GetDomainRequest, GetDomainResult, GetDomaincertificateCall, GetDomaincertificateParameters, GetDomaincertificateRequest, GetDomaincertificateResult, GetEgressipCall, GetEgressipParameters, GetEgressipRequest, GetEgressipResult, GetExternaladdonCall, GetExternaladdonParameters, GetExternaladdonRequest, GetExternaladdonResult, GetGlobalsecretCall, GetGlobalsecretParameters, GetGlobalsecretRequest, GetGlobalsecretResult, GetInvoiceDetailsCall, GetInvoiceDetailsOptions, GetInvoiceDetailsParameters, GetInvoiceDetailsRequest, GetInvoiceDetailsResult, GetJobBranchesCall, GetJobBranchesOptions, GetJobBranchesParameters, GetJobBranchesRequest, GetJobBranchesResult, GetJobBuildCall, GetJobBuildMetricsCall, GetJobBuildMetricsRangeCall, GetJobBuildParameters, GetJobBuildRequest, GetJobBuildResult, GetJobBuildargumentdetailsCall, GetJobBuildargumentdetailsParameters, GetJobBuildargumentdetailsRequest, GetJobBuildargumentdetailsResult, GetJobBuildargumentsCall, GetJobBuildargumentsOptions, GetJobBuildargumentsParameters, GetJobBuildargumentsRequest, GetJobBuildargumentsResult, GetJobBuildlogsCall, GetJobBuildsCall, GetJobBuildsOptions, GetJobBuildsParameters, GetJobBuildsRequest, GetJobBuildsResult, GetJobCall, GetJobContainersCall, GetJobContainersOptions, GetJobContainersParameters, GetJobContainersRequest, GetJobContainersResult, GetJobDeploymentCall, GetJobDeploymentParameters, GetJobDeploymentRequest, GetJobDeploymentResult, GetJobHealthchecksCall, GetJobHealthchecksParameters, GetJobHealthchecksRequest, GetJobHealthchecksResult, GetJobLogsCall, GetJobMetricsCall, GetJobMetricsRangeCall, GetJobParameters, GetJobPullrequestsCall, GetJobPullrequestsOptions, GetJobPullrequestsParameters, GetJobPullrequestsRequest, GetJobPullrequestsResult, GetJobRequest, GetJobResult, GetJobRunCall, GetJobRunParameters, GetJobRunRequest, GetJobRunResult, GetJobRunsCall, GetJobRunsOptions, GetJobRunsParameters, GetJobRunsRequest, GetJobRunsResult, GetJobRuntimeenvironmentCall, GetJobRuntimeenvironmentOptions, GetJobRuntimeenvironmentParameters, GetJobRuntimeenvironmentRequest, GetJobRuntimeenvironmentResult, GetJobRuntimeenvironmentdetailsCall, GetJobRuntimeenvironmentdetailsParameters, GetJobRuntimeenvironmentdetailsRequest, GetJobRuntimeenvironmentdetailsResult, GetLlmmodeldeploymentCall, GetLlmmodeldeploymentParameters, GetLlmmodeldeploymentRequest, GetLlmmodeldeploymentResult, GetLoadbalancerCall, GetLoadbalancerParameters, GetLoadbalancerRequest, GetLoadbalancerResult, GetLogsinkCall, GetLogsinkParameters, GetLogsinkRequest, GetLogsinkResult, GetNotificationCall, GetNotificationParameters, GetNotificationRequest, GetNotificationResult, GetOrgdirectorygroupsCall, GetOrgdirectorygroupsRequest, GetOrgdirectorygroupsResult, GetOrgroleCall, GetOrgroleParameters, GetOrgroleRequest, GetOrgroleResult, GetPipelineCall, GetPipelineParameters, GetPipelineRequest, GetPipelineResult, GetPreviewblueprintCall, GetPreviewblueprintParameters, GetPreviewblueprintRequest, GetPreviewblueprintResult, GetPreviewblueprintrunCall, GetPreviewblueprintrunParameters, GetPreviewblueprintrunRequest, GetPreviewblueprintrunResult, GetPreviewtemplateCall, GetPreviewtemplateOptions, GetPreviewtemplateParameters, GetPreviewtemplateRequest, GetPreviewtemplateResult, GetPreviewtemplaterunCall, GetPreviewtemplaterunParameters, GetPreviewtemplaterunRequest, GetPreviewtemplaterunResult, GetProjectCall, GetProjectParameters, GetProjectRequest, GetProjectResult, GetRegistrycredentialsCall, GetRegistrycredentialsParameters, GetRegistrycredentialsRequest, GetRegistrycredentialsResult, GetReleaseflowCall, GetReleaseflowParameters, GetReleaseflowRequest, GetReleaseflowResult, GetReleaseflowrunCall, GetReleaseflowrunParameters, GetReleaseflowrunRequest, GetReleaseflowrunResult, GetSecretCall, GetSecretOptions, GetSecretParameters, GetSecretRequest, GetSecretResult, GetSecretdetailsCall, GetSecretdetailsParameters, GetSecretdetailsRequest, GetSecretdetailsResult, GetSecretlinkCall, GetSecretlinkParameters, GetSecretlinkRequest, GetSecretlinkResult, GetServiceBranchesCall, GetServiceBranchesOptions, GetServiceBranchesParameters, GetServiceBranchesRequest, GetServiceBranchesResult, GetServiceBuildCall, GetServiceBuildMetricsCall, GetServiceBuildMetricsRangeCall, GetServiceBuildParameters, GetServiceBuildRequest, GetServiceBuildResult, GetServiceBuildargumentdetailsCall, GetServiceBuildargumentdetailsParameters, GetServiceBuildargumentdetailsRequest, GetServiceBuildargumentdetailsResult, GetServiceBuildargumentsCall, GetServiceBuildargumentsOptions, GetServiceBuildargumentsParameters, GetServiceBuildargumentsRequest, GetServiceBuildargumentsResult, GetServiceBuildlogsCall, GetServiceBuildsCall, GetServiceBuildsOptions, GetServiceBuildsParameters, GetServiceBuildsRequest, GetServiceBuildsResult, GetServiceCall, GetServiceContainersCall, GetServiceContainersOptions, GetServiceContainersParameters, GetServiceContainersRequest, GetServiceContainersResult, GetServiceDeploymentCall, GetServiceDeploymentParameters, GetServiceDeploymentRequest, GetServiceDeploymentResult, GetServiceHealthchecksCall, GetServiceHealthchecksParameters, GetServiceHealthchecksRequest, GetServiceHealthchecksResult, GetServiceLogsCall, GetServiceMetricsCall, GetServiceMetricsRangeCall, GetServiceParameters, GetServicePortsCall, GetServicePortsParameters, GetServicePortsRequest, GetServicePortsResult, GetServicePullrequestsCall, GetServicePullrequestsOptions, GetServicePullrequestsParameters, GetServicePullrequestsRequest, GetServicePullrequestsResult, GetServiceRequest, GetServiceResult, GetServiceRuntimeenvironmentCall, GetServiceRuntimeenvironmentOptions, GetServiceRuntimeenvironmentParameters, GetServiceRuntimeenvironmentRequest, GetServiceRuntimeenvironmentResult, GetServiceRuntimeenvironmentdetailsCall, GetServiceRuntimeenvironmentdetailsParameters, GetServiceRuntimeenvironmentdetailsRequest, GetServiceRuntimeenvironmentdetailsResult, GetSshidentitiesCall, GetSshidentitiesParameters, GetSshidentitiesRequest, GetSshidentitiesResult, GetSubdomainCall, GetSubdomainParameters, GetSubdomainPathCall, GetSubdomainPathParameters, GetSubdomainPathRequest, GetSubdomainPathResult, GetSubdomainRequest, GetSubdomainResult, GetTagCall, GetTagParameters, GetTagRequest, GetTagResult, GetTeamCall, GetTeamParameters, GetTeamRequest, GetTeamResult, GetTeamroleCall, GetTeamroleParameters, GetTeamroleRequest, GetTeamroleResult, GetTemplateCall, GetTemplateOptions, GetTemplateParameters, GetTemplateRequest, GetTemplateResult, GetTemplaterunCall, GetTemplaterunParameters, GetTemplaterunRequest, GetTemplaterunResult, GetVolumeBackupCall, GetVolumeBackupParameters, GetVolumeBackupRequest, GetVolumeBackupResult, GetVolumeBackupsCall, GetVolumeBackupsOptions, GetVolumeBackupsParameters, GetVolumeBackupsRequest, GetVolumeBackupsResult, GetVolumeCall, GetVolumeParameters, GetVolumeRequest, GetVolumeResult, GetWorkflowCall, GetWorkflowParameters, GetWorkflowRequest, GetWorkflowResult, GetWorkflowrunCall, GetWorkflowrunParameters, GetWorkflowrunRequest, GetWorkflowrunResult, ImportAddonBackupCall, ImportAddonBackupData, ImportAddonBackupParameters, ImportAddonBackupRequest, ImportAddonBackupResult, ImportDomaincertificateCall, ImportDomaincertificateData, ImportDomaincertificateParameters, ImportDomaincertificateRequest, ImportDomaincertificateResult, ListAddonsCall, ListAddonsOptions, ListAddonsParameters, ListAddonsRequest, ListAddonsResult, ListBackupdestinationsCall, ListBackupdestinationsOptions, ListBackupdestinationsParameters, ListBackupdestinationsRequest, ListBackupdestinationsResult, ListBackupdestinationsbackupsCall, ListBackupdestinationsbackupsOptions, ListBackupdestinationsbackupsParameters, ListBackupdestinationsbackupsRequest, ListBackupdestinationsbackupsResult, ListBlueprinttemplatepreviewsCall, ListBlueprinttemplatepreviewsOptions, ListBlueprinttemplatepreviewsParameters, ListBlueprinttemplatepreviewsRequest, ListBlueprinttemplatepreviewsResult, ListBranchesCall, ListBranchesOptions, ListBranchesParameters, ListBranchesRequest, ListBranchesResult, ListCloudClusterNodesCall, ListCloudClusterNodesOptions, ListCloudClusterNodesParameters, ListCloudClusterNodesRequest, ListCloudClusterNodesResult, ListCloudClustersCall, ListCloudClustersOptions, ListCloudClustersParameters, ListCloudClustersRequest, ListCloudClustersResult, ListCloudIntegrationsCall, ListCloudIntegrationsOptions, ListCloudIntegrationsParameters, ListCloudIntegrationsRequest, ListCloudIntegrationsResult, ListCloudNodetypesCall, ListCloudNodetypesOptions, ListCloudNodetypesRequest, ListCloudNodetypesResult, ListCloudProvidersCall, ListCloudProvidersRequest, ListCloudProvidersResult, ListCloudRegionsCall, ListCloudRegionsOptions, ListCloudRegionsRequest, ListCloudRegionsResult, ListDomainsCall, ListDomainsOptions, ListDomainsParameters, ListDomainsRequest, ListDomainsResult, ListEgressipsCall, ListEgressipsOptions, ListEgressipsParameters, ListEgressipsRequest, ListEgressipsResult, ListExternaladdonsCall, ListExternaladdonsOptions, ListExternaladdonsParameters, ListExternaladdonsRequest, ListExternaladdonsResult, ListGlobalsecretsCall, ListGlobalsecretsOptions, ListGlobalsecretsParameters, ListGlobalsecretsRequest, ListGlobalsecretsResult, ListInvoicesCall, ListInvoicesOptions, ListInvoicesParameters, ListInvoicesRequest, ListInvoicesResult, ListJobsCall, ListJobsOptions, ListJobsParameters, ListJobsRequest, ListJobsResult, ListLlmmodeldeploymentsCall, ListLlmmodeldeploymentsOptions, ListLlmmodeldeploymentsParameters, ListLlmmodeldeploymentsRequest, ListLlmmodeldeploymentsResult, ListLoadbalancersCall, ListLoadbalancersOptions, ListLoadbalancersParameters, ListLoadbalancersRequest, ListLoadbalancersResult, ListLogsinksCall, ListLogsinksOptions, ListLogsinksParameters, ListLogsinksRequest, ListLogsinksResult, ListNotificationsCall, ListNotificationsOptions, ListNotificationsParameters, ListNotificationsRequest, ListNotificationsResult, ListOrgrolesCall, ListOrgrolesOptions, ListOrgrolesRequest, ListOrgrolesResult, ListPipelinesCall, ListPipelinesOptions, ListPipelinesParameters, ListPipelinesRequest, ListPipelinesResult, ListPipelinetemplatepreviewsCall, ListPipelinetemplatepreviewsOptions, ListPipelinetemplatepreviewsParameters, ListPipelinetemplatepreviewsRequest, ListPipelinetemplatepreviewsResult, ListPlansCall, ListPlansRequest, ListPlansResult, ListPreviewblueprintrunsCall, ListPreviewblueprintrunsOptions, ListPreviewblueprintrunsParameters, ListPreviewblueprintrunsRequest, ListPreviewblueprintrunsResult, ListPreviewblueprintsCall, ListPreviewblueprintsOptions, ListPreviewblueprintsParameters, ListPreviewblueprintsRequest, ListPreviewblueprintsResult, ListPreviewtemplaterunsCall, ListPreviewtemplaterunsOptions, ListPreviewtemplaterunsParameters, ListPreviewtemplaterunsRequest, ListPreviewtemplaterunsResult, ListProjectsCall, ListProjectsOptions, ListProjectsParameters, ListProjectsRequest, ListProjectsResult, ListRegionsCall, ListRegionsRequest, ListRegionsResult, ListRegistrycredentialsCall, ListRegistrycredentialsOptions, ListRegistrycredentialsParameters, ListRegistrycredentialsRequest, ListRegistrycredentialsResult, ListReleaseflowrunsCall, ListReleaseflowrunsOptions, ListReleaseflowrunsParameters, ListReleaseflowrunsRequest, ListReleaseflowrunsResult, ListReposCall, ListReposOptions, ListReposParameters, ListReposRequest, ListReposResult, ListSecretsCall, ListSecretsOptions, ListSecretsParameters, ListSecretsRequest, ListSecretsResult, ListServicesCall, ListServicesOptions, ListServicesParameters, ListServicesRequest, ListServicesResult, ListSshidentitiesCall, ListSshidentitiesOptions, ListSshidentitiesParameters, ListSshidentitiesRequest, ListSshidentitiesResult, ListSubdomainPathCall, ListSubdomainPathParameters, ListSubdomainPathRequest, ListSubdomainPathResult, ListTagsCall, ListTagsOptions, ListTagsParameters, ListTagsRequest, ListTagsResult, ListTeammembersCall, ListTeammembersOptions, ListTeammembersParameters, ListTeammembersRequest, ListTeammembersResult, ListTeamrolesCall, ListTeamrolesOptions, ListTeamrolesParameters, ListTeamrolesRequest, ListTeamrolesResult, ListTeamsCall, ListTeamsOptions, ListTeamsRequest, ListTeamsResult, ListTemplaterunsCall, ListTemplaterunsOptions, ListTemplaterunsParameters, ListTemplaterunsRequest, ListTemplaterunsResult, ListTemplatesCall, ListTemplatesOptions, ListTemplatesParameters, ListTemplatesRequest, ListTemplatesResult, ListVcsCall, ListVcsParameters, ListVcsRequest, ListVcsResult, ListVolumesCall, ListVolumesOptions, ListVolumesParameters, ListVolumesRequest, ListVolumesResult, ListWorkflowrunsCall, ListWorkflowrunsOptions, ListWorkflowrunsParameters, ListWorkflowrunsRequest, ListWorkflowrunsResult, ListWorkflowsCall, ListWorkflowsOptions, ListWorkflowsParameters, ListWorkflowsRequest, ListWorkflowsResult, LogLine, MetricUnit, MetricValue, MetricsEntry, MetricsRangeRequestData, MetricsSingleRequestData, PatchAddonCall, PatchAddonData, PatchAddonParameters, PatchAddonRequest, PatchAddonResult, PatchBackupdestinationCall, PatchBackupdestinationData, PatchBackupdestinationParameters, PatchBackupdestinationRequest, PatchBackupdestinationResult, PatchCloudClusterCall, PatchCloudClusterData, PatchCloudClusterParameters, PatchCloudClusterRequest, PatchCloudClusterResult, PatchCloudIntegrationCall, PatchCloudIntegrationData, PatchCloudIntegrationParameters, PatchCloudIntegrationRequest, PatchCloudIntegrationResult, PatchEgressipCall, PatchEgressipData, PatchEgressipParameters, PatchEgressipRequest, PatchEgressipResult, PatchGlobalsecretCall, PatchGlobalsecretData, PatchGlobalsecretParameters, PatchGlobalsecretRequest, PatchGlobalsecretResult, PatchGradualrolloutstrategyCall, PatchGradualrolloutstrategyData, PatchGradualrolloutstrategyParameters, PatchGradualrolloutstrategyRequest, PatchGradualrolloutstrategyResult, PatchJobCall, PatchJobCronCall, PatchJobCronData, PatchJobCronParameters, PatchJobCronRequest, PatchJobCronResult, PatchJobData, PatchJobManualCall, PatchJobManualData, PatchJobManualParameters, PatchJobManualRequest, PatchJobManualResult, PatchJobParameters, PatchJobRequest, PatchJobResult, PatchLoadbalancerCall, PatchLoadbalancerData, PatchLoadbalancerParameters, PatchLoadbalancerRequest, PatchLoadbalancerResult, PatchOrgroleCall, PatchOrgroleData, PatchOrgroleParameters, PatchOrgroleRequest, PatchOrgroleResult, PatchProjectCall, PatchProjectData, PatchProjectParameters, PatchProjectRequest, PatchProjectResult, PatchSecretCall, PatchSecretData, PatchSecretParameters, PatchSecretRequest, PatchSecretResult, PatchServiceBuildCall, PatchServiceBuildData, PatchServiceBuildParameters, PatchServiceBuildRequest, PatchServiceBuildResult, PatchServiceCombinedCall, PatchServiceCombinedData, PatchServiceCombinedParameters, PatchServiceCombinedRequest, PatchServiceCombinedResult, PatchServiceDeploymentCall, PatchServiceDeploymentData, PatchServiceDeploymentParameters, PatchServiceDeploymentRequest, PatchServiceDeploymentResult, PatchTagCall, PatchTagData, PatchTagParameters, PatchTagRequest, PatchTagResult, PatchTeamCall, PatchTeamData, PatchTeamParameters, PatchTeamRequest, PatchTeamResult, PatchTeamroleCall, PatchTeamroleData, PatchTeamroleParameters, PatchTeamroleRequest, PatchTeamroleResult, PauseAddonCall, PauseAddonParameters, PauseAddonRequest, PauseAddonResult, PauseBlueprinttemplatepreviewCall, PauseBlueprinttemplatepreviewParameters, PauseBlueprinttemplatepreviewRequest, PauseBlueprinttemplatepreviewResult, PauseJobCall, PauseJobParameters, PauseJobRequest, PauseJobResult, PauseLogsinkCall, PauseLogsinkParameters, PauseLogsinkRequest, PauseLogsinkResult, PauseServiceCall, PauseServiceParameters, PauseServiceRequest, PauseServiceResult, PortForwardingInfo, PortForwardingResult, PutAddonCall, PutAddonData, PutAddonParameters, PutAddonRequest, PutAddonResult, PutCloudClusterCall, PutCloudClusterData, PutCloudClusterParameters, PutCloudClusterRequest, PutCloudClusterResult, PutCloudIntegrationCall, PutCloudIntegrationData, PutCloudIntegrationParameters, PutCloudIntegrationRequest, PutCloudIntegrationResult, PutDomainSubdomainCall, PutDomainSubdomainData, PutDomainSubdomainParameters, PutDomainSubdomainRequest, PutDomainSubdomainResult, PutEgressipCall, PutEgressipData, PutEgressipParameters, PutEgressipRequest, PutEgressipResult, PutGlobalsecretCall, PutGlobalsecretData, PutGlobalsecretParameters, PutGlobalsecretRequest, PutGlobalsecretResult, PutGradualrolloutstrategyCall, PutGradualrolloutstrategyData, PutGradualrolloutstrategyParameters, PutGradualrolloutstrategyRequest, PutGradualrolloutstrategyResult, PutJobCall, PutJobCronCall, PutJobCronData, PutJobCronParameters, PutJobCronRequest, PutJobCronResult, PutJobData, PutJobManualCall, PutJobManualData, PutJobManualParameters, PutJobManualRequest, PutJobManualResult, PutJobParameters, PutJobRequest, PutJobResult, PutLoadbalancerCall, PutLoadbalancerData, PutLoadbalancerParameters, PutLoadbalancerRequest, PutLoadbalancerResult, PutOrgroleCall, PutOrgroleData, PutOrgroleRequest, PutOrgroleResult, PutProjectCall, PutProjectData, PutProjectParameters, PutProjectRequest, PutProjectResult, PutSecretCall, PutSecretData, PutSecretParameters, PutSecretRequest, PutSecretResult, PutServiceBuildCall, PutServiceBuildData, PutServiceBuildParameters, PutServiceBuildRequest, PutServiceBuildResult, PutServiceCombinedCall, PutServiceCombinedData, PutServiceCombinedParameters, PutServiceCombinedRequest, PutServiceCombinedResult, PutServiceDeploymentCall, PutServiceDeploymentData, PutServiceDeploymentParameters, PutServiceDeploymentRequest, PutServiceDeploymentResult, PutSshidentitiesCall, PutSshidentitiesData, PutSshidentitiesParameters, PutSshidentitiesRequest, PutSshidentitiesResult, PutTagCall, PutTagData, PutTagParameters, PutTagRequest, PutTagResult, PutTeamroleCall, PutTeamroleData, PutTeamroleParameters, PutTeamroleRequest, PutTeamroleResult, ResetAddonCall, ResetAddonParameters, ResetAddonRequest, ResetAddonResult, ResetBlueprinttemplatepreviewCall, ResetBlueprinttemplatepreviewData, ResetBlueprinttemplatepreviewParameters, ResetBlueprinttemplatepreviewRequest, ResetBlueprinttemplatepreviewResult, RestartAddonCall, RestartAddonParameters, RestartAddonRequest, RestartAddonResult, RestartServiceCall, RestartServiceParameters, RestartServiceRequest, RestartServiceResult, RestoreAddonBackupCall, RestoreAddonBackupOptions, RestoreAddonBackupParameters, RestoreAddonBackupRequest, RestoreAddonBackupResult, ResumeAddonCall, ResumeAddonParameters, ResumeAddonRequest, ResumeAddonResult, ResumeBlueprinttemplatepreviewCall, ResumeBlueprinttemplatepreviewParameters, ResumeBlueprinttemplatepreviewRequest, ResumeBlueprinttemplatepreviewResult, ResumeJobCall, ResumeJobData, ResumeJobParameters, ResumeJobRequest, ResumeJobResult, ResumeLogsinkCall, ResumeLogsinkParameters, ResumeLogsinkRequest, ResumeLogsinkResult, ResumeServiceCall, ResumeServiceData, ResumeServiceParameters, ResumeServiceRequest, ResumeServiceResult, RetainAddonBackupCall, RetainAddonBackupParameters, RetainAddonBackupRequest, RetainAddonBackupResult, RunPreviewblueprintCall, RunPreviewblueprintData, RunPreviewblueprintParameters, RunPreviewblueprintRequest, RunPreviewblueprintResult, RunPreviewtemplateCall, RunPreviewtemplateData, RunPreviewtemplateParameters, RunPreviewtemplateRequest, RunPreviewtemplateResult, RunReleaseflowCall, RunReleaseflowData, RunReleaseflowParameters, RunReleaseflowRequest, RunReleaseflowResult, RunTemplateCall, RunTemplateData, RunTemplateParameters, RunTemplateRequest, RunTemplateResult, RunWorkflowCall, RunWorkflowData, RunWorkflowParameters, RunWorkflowRequest, RunWorkflowResult, ScaleAddonCall, ScaleAddonData, ScaleAddonParameters, ScaleAddonRequest, ScaleAddonResult, ScaleJobCall, ScaleJobData, ScaleJobParameters, ScaleJobRequest, ScaleJobResult, ScaleServiceCall, ScaleServiceData, ScaleServiceParameters, ScaleServiceRequest, ScaleServiceResult, StartJobBuildCall, StartJobBuildData, StartJobBuildParameters, StartJobBuildRequest, StartJobBuildResult, StartJobRunCall, StartJobRunData, StartJobRunParameters, StartJobRunRequest, StartJobRunResult, StartServiceBuildCall, StartServiceBuildData, StartServiceBuildParameters, StartServiceBuildRequest, StartServiceBuildResult, SuspendJobCall, SuspendJobData, SuspendJobParameters, SuspendJobRequest, SuspendJobResult, TailAddonBackupLogsCall, TailAddonLogsCall, TailAddonRestoresLogsCall, TailJobBuildlogsCall, TailJobLogsCall, TailServiceBuildlogsCall, TailServiceLogsCall, UnassignSubdomainCall, UnassignSubdomainOptions, UnassignSubdomainParameters, UnassignSubdomainPathCall, UnassignSubdomainPathParameters, UnassignSubdomainPathRequest, UnassignSubdomainPathResult, UnassignSubdomainRequest, UnassignSubdomainResult, UncordonCloudClusterNodeCall, UncordonCloudClusterNodeParameters, UncordonCloudClusterNodeRequest, UncordonCloudClusterNodeResult, UpdateAddonNetworksettingsCall, UpdateAddonNetworksettingsData, UpdateAddonNetworksettingsParameters, UpdateAddonNetworksettingsRequest, UpdateAddonNetworksettingsResult, UpdateAddonSecurityCall, UpdateAddonSecurityData, UpdateAddonSecurityParameters, UpdateAddonSecurityRequest, UpdateAddonSecurityResult, UpdateAddonVersionCall, UpdateAddonVersionData, UpdateAddonVersionParameters, UpdateAddonVersionRequest, UpdateAddonVersionResult, UpdateExternaladdonCall, UpdateExternaladdonData, UpdateExternaladdonParameters, UpdateExternaladdonRequest, UpdateExternaladdonResult, UpdateJobBuildargumentsCall, UpdateJobBuildargumentsData, UpdateJobBuildargumentsParameters, UpdateJobBuildargumentsRequest, UpdateJobBuildargumentsResult, UpdateJobBuildoptionsCall, UpdateJobBuildoptionsData, UpdateJobBuildoptionsParameters, UpdateJobBuildoptionsRequest, UpdateJobBuildoptionsResult, UpdateJobBuildsourceCall, UpdateJobBuildsourceData, UpdateJobBuildsourceParameters, UpdateJobBuildsourceRequest, UpdateJobBuildsourceResult, UpdateJobDeploymentCall, UpdateJobDeploymentData, UpdateJobDeploymentParameters, UpdateJobDeploymentRequest, UpdateJobDeploymentResult, UpdateJobHealthchecksCall, UpdateJobHealthchecksData, UpdateJobHealthchecksParameters, UpdateJobHealthchecksRequest, UpdateJobHealthchecksResult, UpdateJobRuntimeenvironmentCall, UpdateJobRuntimeenvironmentData, UpdateJobRuntimeenvironmentParameters, UpdateJobRuntimeenvironmentRequest, UpdateJobRuntimeenvironmentResult, UpdateJobSettingsCall, UpdateJobSettingsData, UpdateJobSettingsParameters, UpdateJobSettingsRequest, UpdateJobSettingsResult, UpdateLlmmodeldeploymentCall, UpdateLlmmodeldeploymentData, UpdateLlmmodeldeploymentParameters, UpdateLlmmodeldeploymentRequest, UpdateLlmmodeldeploymentResult, UpdateLogsinkCall, UpdateLogsinkData, UpdateLogsinkParameters, UpdateLogsinkRequest, UpdateLogsinkResult, UpdateNotificationCall, UpdateNotificationData, UpdateNotificationParameters, UpdateNotificationRequest, UpdateNotificationResult, UpdatePreviewblueprintCall, UpdatePreviewblueprintData, UpdatePreviewblueprintParameters, UpdatePreviewblueprintRequest, UpdatePreviewblueprintResult, UpdatePreviewtemplateCall, UpdatePreviewtemplateData, UpdatePreviewtemplateParameters, UpdatePreviewtemplateRequest, UpdatePreviewtemplateResult, UpdateRegistrycredentialsCall, UpdateRegistrycredentialsData, UpdateRegistrycredentialsParameters, UpdateRegistrycredentialsRequest, UpdateRegistrycredentialsResult, UpdateReleaseflowCall, UpdateReleaseflowData, UpdateReleaseflowParameters, UpdateReleaseflowRequest, UpdateReleaseflowResult, UpdateSecretCall, UpdateSecretData, UpdateSecretParameters, UpdateSecretRequest, UpdateSecretResult, UpdateSecretlinkCall, UpdateSecretlinkData, UpdateSecretlinkParameters, UpdateSecretlinkRequest, UpdateSecretlinkResult, UpdateServiceBuildargumentsCall, UpdateServiceBuildargumentsData, UpdateServiceBuildargumentsParameters, UpdateServiceBuildargumentsRequest, UpdateServiceBuildargumentsResult, UpdateServiceBuildoptionsCall, UpdateServiceBuildoptionsData, UpdateServiceBuildoptionsParameters, UpdateServiceBuildoptionsRequest, UpdateServiceBuildoptionsResult, UpdateServiceBuildsourceCall, UpdateServiceBuildsourceData, UpdateServiceBuildsourceParameters, UpdateServiceBuildsourceRequest, UpdateServiceBuildsourceResult, UpdateServiceDeploymentCall, UpdateServiceDeploymentData, UpdateServiceDeploymentParameters, UpdateServiceDeploymentRequest, UpdateServiceDeploymentResult, UpdateServiceHealthchecksCall, UpdateServiceHealthchecksData, UpdateServiceHealthchecksParameters, UpdateServiceHealthchecksRequest, UpdateServiceHealthchecksResult, UpdateServicePortsCall, UpdateServicePortsData, UpdateServicePortsParameters, UpdateServicePortsRequest, UpdateServicePortsResult, UpdateServiceRuntimeenvironmentCall, UpdateServiceRuntimeenvironmentData, UpdateServiceRuntimeenvironmentParameters, UpdateServiceRuntimeenvironmentRequest, UpdateServiceRuntimeenvironmentResult, UpdateSshidentitiesCall, UpdateSshidentitiesData, UpdateSshidentitiesParameters, UpdateSshidentitiesRequest, UpdateSshidentitiesResult, UpdateSubdomainPathCall, UpdateSubdomainPathData, UpdateSubdomainPathParameters, UpdateSubdomainPathRequest, UpdateSubdomainPathResult, UpdateTemplateCall, UpdateTemplateData, UpdateTemplateParameters, UpdateTemplateRequest, UpdateTemplateResult, UpdateVolumeCall, UpdateVolumeData, UpdateVolumeParameters, UpdateVolumeRequest, UpdateVolumeResult, UpdateWorkflowCall, UpdateWorkflowData, UpdateWorkflowParameters, UpdateWorkflowRequest, UpdateWorkflowResult, UploadOptions, VerifyDomainCall, VerifyDomainParameters, VerifyDomainRequest, VerifyDomainResult, VerifySubdomainCall, VerifySubdomainParameters, VerifySubdomainRequest, VerifySubdomainResult };