-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathFILES
1353 lines (1353 loc) · 46.8 KB
/
FILES
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
.gitignore
.openapi-generator-ignore
.travis.yml
README.md
api/openapi.yaml
api_account_info.go
api_application_actions.go
api_application_configuration.go
api_application_custom_domain.go
api_application_deployment_history.go
api_application_deployment_restriction.go
api_application_environment_variable.go
api_application_logs.go
api_application_main_calls.go
api_application_secret.go
api_applications.go
api_backups.go
api_billing.go
api_cloud_provider.go
api_cloud_provider_credentials.go
api_clusters.go
api_container_actions.go
api_container_configuration.go
api_container_custom_domain.go
api_container_deployment_history.go
api_container_environment_variable.go
api_container_logs.go
api_container_main_calls.go
api_container_registries.go
api_container_secret.go
api_containers.go
api_database_actions.go
api_database_application.go
api_database_deployment_history.go
api_database_main_calls.go
api_databases.go
api_default.go
api_deployment_queue_actions.go
api_deployment_stage_main_calls.go
api_environment.go
api_environment_actions.go
api_environment_deployment_history.go
api_environment_deployment_rule.go
api_environment_export.go
api_environment_logs.go
api_environment_main_calls.go
api_environment_secret.go
api_environment_variable.go
api_environments.go
api_git_repositories.go
api_github_app.go
api_helm_actions.go
api_helm_configuration.go
api_helm_custom_domain.go
api_helm_deployment_history.go
api_helm_deployment_restriction.go
api_helm_main_calls.go
api_helm_repositories.go
api_helms.go
api_job_actions.go
api_job_configuration.go
api_job_deployment_history.go
api_job_deployment_restriction.go
api_job_environment_variable.go
api_job_main_calls.go
api_job_secret.go
api_jobs.go
api_lifecycle_template_main_calls.go
api_members.go
api_organization_account_git_repositories.go
api_organization_annotations_group.go
api_organization_api_token.go
api_organization_cluster_lock.go
api_organization_custom_role.go
api_organization_event.go
api_organization_labels_group.go
api_organization_main_calls.go
api_organization_webhook.go
api_project_deployment_rule.go
api_project_environment_variable.go
api_project_main_calls.go
api_project_secret.go
api_projects.go
api_referral_rewards.go
api_user_sign_up.go
api_variable_main_calls.go
client.go
configuration.go
docs/APIVariableScopeEnum.md
docs/APIVariableTypeEnum.md
docs/AccountInfo.md
docs/AccountInfoAPI.md
docs/AccountInfoEditRequest.md
docs/Annotation.md
docs/AnnotationsGroupAssociatedItemType.md
docs/Application.md
docs/ApplicationActionsAPI.md
docs/ApplicationAdvancedSettings.md
docs/ApplicationConfigurationAPI.md
docs/ApplicationCustomDomainAPI.md
docs/ApplicationDeploymentHistoryAPI.md
docs/ApplicationDeploymentRestriction.md
docs/ApplicationDeploymentRestrictionAPI.md
docs/ApplicationDeploymentRestrictionRequest.md
docs/ApplicationDeploymentRestrictionResponseList.md
docs/ApplicationEditRequest.md
docs/ApplicationEnvironmentVariableAPI.md
docs/ApplicationGitRepository.md
docs/ApplicationGitRepositoryRequest.md
docs/ApplicationLogsAPI.md
docs/ApplicationMainCallsAPI.md
docs/ApplicationNetwork.md
docs/ApplicationNetworkRequest.md
docs/ApplicationRequest.md
docs/ApplicationResponseList.md
docs/ApplicationSecretAPI.md
docs/ApplicationsAPI.md
docs/AvailableContainerRegistryResponse.md
docs/AvailableContainerRegistryResponseList.md
docs/AvailableHelmRepositoryResponse.md
docs/AvailableHelmRepositoryResponseList.md
docs/AwsCredentialsRequest.md
docs/AwsRoleClusterCredentials.md
docs/AwsRoleCredentialsRequest.md
docs/AwsStaticClusterCredentials.md
docs/AwsStaticCredentialsRequest.md
docs/Backup.md
docs/BackupPaginatedResponseList.md
docs/BackupRequest.md
docs/BackupResponseList.md
docs/BackupsAPI.md
docs/Base.md
docs/BaseJobResponse.md
docs/BaseJobResponseAllOfSource.md
docs/BaseJobResponseAllOfSourceOneOf.md
docs/BaseJobResponseAllOfSourceOneOf1.md
docs/BillingAPI.md
docs/BillingExternalId.md
docs/BillingInfo.md
docs/BillingInfoRequest.md
docs/BillingStatus.md
docs/Budget.md
docs/BuildModeEnum.md
docs/CancelEnvironmentDeploymentRequest.md
docs/CheckedCustomDomainResponse.md
docs/CheckedCustomDomainStatus.md
docs/CheckedCustomDomainsResponse.md
docs/CleanFailedJob200Response.md
docs/CleanFailedJobs200Response.md
docs/CleanFailedJobsRequest.md
docs/CloneEnvironmentRequest.md
docs/CloneServiceRequest.md
docs/CloudProvider.md
docs/CloudProviderAPI.md
docs/CloudProviderCredentialsAPI.md
docs/CloudProviderEnum.md
docs/CloudProviderResponseList.md
docs/Cluster.md
docs/ClusterAdvancedSettings.md
docs/ClusterCloudProviderInfo.md
docs/ClusterCloudProviderInfoCredentials.md
docs/ClusterCloudProviderInfoRequest.md
docs/ClusterCredentials.md
docs/ClusterCredentialsResponseList.md
docs/ClusterDeleteMode.md
docs/ClusterDeploymentStatusEnum.md
docs/ClusterFeatureAwsExistingVpc.md
docs/ClusterFeatureAwsExistingVpcResponse.md
docs/ClusterFeatureBooleanResponse.md
docs/ClusterFeatureGcpExistingVpc.md
docs/ClusterFeatureGcpExistingVpcResponse.md
docs/ClusterFeatureKarpenterParameters.md
docs/ClusterFeatureKarpenterParametersResponse.md
docs/ClusterFeatureResponse.md
docs/ClusterFeatureResponseAcceptedValuesInner.md
docs/ClusterFeatureResponseList.md
docs/ClusterFeatureResponseTypeEnum.md
docs/ClusterFeatureResponseValueObject.md
docs/ClusterFeatureStringResponse.md
docs/ClusterInstanceAttributes.md
docs/ClusterInstanceGpuInfo.md
docs/ClusterInstanceTypeResponseList.md
docs/ClusterInstanceTypeResponseListResultsInner.md
docs/ClusterKarpenterPrivateSubnetIdsPutRequest.md
docs/ClusterLock.md
docs/ClusterLockList.md
docs/ClusterLockRequest.md
docs/ClusterLogs.md
docs/ClusterLogsDetails.md
docs/ClusterLogsError.md
docs/ClusterLogsErrorEventDetails.md
docs/ClusterLogsErrorEventDetailsTransmitter.md
docs/ClusterLogsErrorUnderlyingError.md
docs/ClusterLogsMessage.md
docs/ClusterLogsResponseList.md
docs/ClusterReadinessStatus.md
docs/ClusterRegion.md
docs/ClusterRegionResponseList.md
docs/ClusterRequest.md
docs/ClusterRequestFeaturesInner.md
docs/ClusterRequestFeaturesInnerValue.md
docs/ClusterResponseList.md
docs/ClusterRoutingTable.md
docs/ClusterRoutingTableRequest.md
docs/ClusterRoutingTableResultsInner.md
docs/ClusterStateEnum.md
docs/ClusterStatus.md
docs/ClusterStatusResponseList.md
docs/ClustersAPI.md
docs/Commit.md
docs/CommitResponseList.md
docs/CompanySizeEnum.md
docs/ContainerActionsAPI.md
docs/ContainerAdvancedSettings.md
docs/ContainerConfigurationAPI.md
docs/ContainerCustomDomainAPI.md
docs/ContainerDeployRequest.md
docs/ContainerDeploymentHistoryAPI.md
docs/ContainerEnvironmentVariableAPI.md
docs/ContainerImageCheckRequest.md
docs/ContainerLogsAPI.md
docs/ContainerMainCallsAPI.md
docs/ContainerNetwork.md
docs/ContainerNetworkRequest.md
docs/ContainerRegistriesAPI.md
docs/ContainerRegistryAssociatedServiceType.md
docs/ContainerRegistryAssociatedServicesResponse.md
docs/ContainerRegistryAssociatedServicesResponseList.md
docs/ContainerRegistryKindEnum.md
docs/ContainerRegistryProviderDetailsResponse.md
docs/ContainerRegistryRequest.md
docs/ContainerRegistryRequestConfig.md
docs/ContainerRegistryResponse.md
docs/ContainerRegistryResponseAllOfCluster.md
docs/ContainerRegistryResponseAllOfConfig.md
docs/ContainerRegistryResponseList.md
docs/ContainerRequest.md
docs/ContainerResponse.md
docs/ContainerResponseList.md
docs/ContainerSecretAPI.md
docs/ContainerSource.md
docs/ContainerVersionResponse.md
docs/ContainerVersionResponseList.md
docs/ContainersAPI.md
docs/Cost.md
docs/CostRange.md
docs/CpuArchitectureEnum.md
docs/CreateEnvironmentModeEnum.md
docs/CreateEnvironmentRequest.md
docs/Credentials.md
docs/CredentialsRequest.md
docs/CreditCard.md
docs/CreditCardRequest.md
docs/CreditCardResponseList.md
docs/CronJobResponse.md
docs/CronJobResponseAllOfSchedule.md
docs/CronJobResponseAllOfScheduleCronjob.md
docs/CurrentCost.md
docs/CustomDomain.md
docs/CustomDomainRequest.md
docs/CustomDomainResponseList.md
docs/CustomDomainStatusEnum.md
docs/Database.md
docs/DatabaseAccessibilityEnum.md
docs/DatabaseActionsAPI.md
docs/DatabaseApplicationAPI.md
docs/DatabaseConfiguration.md
docs/DatabaseConfigurationResponseList.md
docs/DatabaseDeploymentHistoryAPI.md
docs/DatabaseEditRequest.md
docs/DatabaseMainCallsAPI.md
docs/DatabaseModeEnum.md
docs/DatabaseRequest.md
docs/DatabaseResponseList.md
docs/DatabaseTypeEnum.md
docs/DatabaseVersionMode.md
docs/DatabasesAPI.md
docs/DefaultAPI.md
docs/DeleteMemberRequest.md
docs/DeployAllRequest.md
docs/DeployAllRequestApplicationsInner.md
docs/DeployAllRequestContainersInner.md
docs/DeployAllRequestHelmsInner.md
docs/DeployAllRequestJobsInner.md
docs/DeployRequest.md
docs/DeploymentHistory.md
docs/DeploymentHistoryActionStatus.md
docs/DeploymentHistoryApplication.md
docs/DeploymentHistoryAuditingData.md
docs/DeploymentHistoryContainer.md
docs/DeploymentHistoryDatabase.md
docs/DeploymentHistoryEnvironment.md
docs/DeploymentHistoryEnvironmentPaginatedResponseList.md
docs/DeploymentHistoryEnvironmentPaginatedResponseListV2.md
docs/DeploymentHistoryEnvironmentV2.md
docs/DeploymentHistoryEnvironmentV2Identifier.md
docs/DeploymentHistoryHelmResponse.md
docs/DeploymentHistoryHelmResponseAllOfRepository.md
docs/DeploymentHistoryJobResponse.md
docs/DeploymentHistoryJobResponseAllOfSchedule.md
docs/DeploymentHistoryPaginatedResponseList.md
docs/DeploymentHistoryService.md
docs/DeploymentHistoryServiceDetails.md
docs/DeploymentHistoryServiceDetailsOneOf.md
docs/DeploymentHistoryServiceDetailsOneOf1.md
docs/DeploymentHistoryServiceDetailsOneOf2.md
docs/DeploymentHistoryServiceDetailsOneOf2Schedule.md
docs/DeploymentHistoryServiceDetailsOneOf3.md
docs/DeploymentHistoryServiceDetailsOneOf3Repository.md
docs/DeploymentHistoryServiceIdentifier.md
docs/DeploymentHistoryServicePaginatedResponseListV2.md
docs/DeploymentHistoryStage.md
docs/DeploymentHistoryStatusEnum.md
docs/DeploymentHistoryTriggerAction.md
docs/DeploymentQueueActionsAPI.md
docs/DeploymentRestrictionModeEnum.md
docs/DeploymentRestrictionTypeEnum.md
docs/DeploymentStageMainCallsAPI.md
docs/DeploymentStageRequest.md
docs/DeploymentStageResponse.md
docs/DeploymentStageResponseList.md
docs/DeploymentStageServiceResponse.md
docs/DeploymentStageWithServicesStatuses.md
docs/DockerfileCheckRequest.md
docs/DockerfileCheckResponse.md
docs/EnvDeploymentStatus.md
docs/Environment.md
docs/EnvironmentAPI.md
docs/EnvironmentActionsAPI.md
docs/EnvironmentAllOfCloudProvider.md
docs/EnvironmentDeploymentHistoryAPI.md
docs/EnvironmentDeploymentRule.md
docs/EnvironmentDeploymentRuleAPI.md
docs/EnvironmentDeploymentRuleEditRequest.md
docs/EnvironmentDeploymentStatusEnum.md
docs/EnvironmentEditRequest.md
docs/EnvironmentExportAPI.md
docs/EnvironmentLog.md
docs/EnvironmentLogResponseList.md
docs/EnvironmentLogScope.md
docs/EnvironmentLogTypeEnum.md
docs/EnvironmentLogs.md
docs/EnvironmentLogsAPI.md
docs/EnvironmentLogsDetails.md
docs/EnvironmentLogsDetailsStage.md
docs/EnvironmentLogsDetailsTransmitter.md
docs/EnvironmentLogsError.md
docs/EnvironmentLogsErrorUnderlyingError.md
docs/EnvironmentLogsMessage.md
docs/EnvironmentMainCallsAPI.md
docs/EnvironmentModeEnum.md
docs/EnvironmentResponseList.md
docs/EnvironmentSecretAPI.md
docs/EnvironmentServiceIdsAllRequest.md
docs/EnvironmentStats.md
docs/EnvironmentStatsResponseList.md
docs/EnvironmentStatus.md
docs/EnvironmentStatusEventOriginEnum.md
docs/EnvironmentStatusList.md
docs/EnvironmentStatuses.md
docs/EnvironmentStatusesWithStages.md
docs/EnvironmentStatusesWithStagesPreCheckStage.md
docs/EnvironmentTotalNumber.md
docs/EnvironmentVariable.md
docs/EnvironmentVariableAPI.md
docs/EnvironmentVariableAlias.md
docs/EnvironmentVariableEditRequest.md
docs/EnvironmentVariableOverride.md
docs/EnvironmentVariableRequest.md
docs/EnvironmentVariableResponseList.md
docs/EnvironmentsAPI.md
docs/GcpCredentialsRequest.md
docs/GenericClusterCredentials.md
docs/GenericObjectCurrentCost.md
docs/GetClusterKubernetesEvents200Response.md
docs/GetClusterKubernetesEvents200ResponseResultsInner.md
docs/GetClusterTokenByClusterId200Response.md
docs/GetClusterTokenByClusterId200ResponseStatus.md
docs/GitAuthProvider.md
docs/GitAuthProviderResponseList.md
docs/GitFileCheckRequest.md
docs/GitProviderEnum.md
docs/GitRepositoriesAPI.md
docs/GitRepository.md
docs/GitRepositoryBranch.md
docs/GitRepositoryBranchResponseList.md
docs/GitRepositoryResponseList.md
docs/GitTokenAssociatedServiceResponse.md
docs/GitTokenAssociatedServiceType.md
docs/GitTokenAssociatedServicesResponseList.md
docs/GitTokenRequest.md
docs/GitTokenResponse.md
docs/GitTokenResponseList.md
docs/GithubAppAPI.md
docs/Healthcheck.md
docs/HelmActionsAPI.md
docs/HelmAdvancedSettings.md
docs/HelmCheckRequest.md
docs/HelmConfigurationAPI.md
docs/HelmCustomDomainAPI.md
docs/HelmDefaultValuesRequest.md
docs/HelmDefaultValuesRequestAllOfSource.md
docs/HelmDeployRequest.md
docs/HelmDeploymentHistoryAPI.md
docs/HelmDeploymentRestrictionAPI.md
docs/HelmDeploymentRestrictionRequest.md
docs/HelmDeploymentRestrictionResponse.md
docs/HelmDeploymentRestrictionResponseList.md
docs/HelmForceEvent.md
docs/HelmGitRepositoryRequest.md
docs/HelmMainCallsAPI.md
docs/HelmPortProtocolEnum.md
docs/HelmPortRequest.md
docs/HelmPortRequestPortsInner.md
docs/HelmPortRequestPortsInnerAllOfOneOf.md
docs/HelmPortRequestPortsInnerAllOfOneOf1.md
docs/HelmPortResponseBase.md
docs/HelmPortResponseWithServiceName.md
docs/HelmPortResponseWithServiceSelectors.md
docs/HelmRepositoriesAPI.md
docs/HelmRepositoryAssociatedServiceType.md
docs/HelmRepositoryAssociatedServicesResponse.md
docs/HelmRepositoryAssociatedServicesResponseList.md
docs/HelmRepositoryKindEnum.md
docs/HelmRepositoryRequest.md
docs/HelmRepositoryRequestConfig.md
docs/HelmRepositoryResponse.md
docs/HelmRepositoryResponseAllOfConfig.md
docs/HelmRepositoryResponseList.md
docs/HelmRequest.md
docs/HelmRequestAllOfSource.md
docs/HelmRequestAllOfSourceOneOf.md
docs/HelmRequestAllOfSourceOneOf1.md
docs/HelmRequestAllOfSourceOneOf1HelmRepository.md
docs/HelmRequestAllOfValuesOverride.md
docs/HelmRequestAllOfValuesOverrideFile.md
docs/HelmRequestAllOfValuesOverrideFileGit.md
docs/HelmRequestAllOfValuesOverrideFileRaw.md
docs/HelmRequestAllOfValuesOverrideFileRawValues.md
docs/HelmResponse.md
docs/HelmResponseAllOfPorts.md
docs/HelmResponseAllOfSource.md
docs/HelmResponseAllOfSourceOneOf.md
docs/HelmResponseAllOfSourceOneOf1.md
docs/HelmResponseAllOfValuesOverride.md
docs/HelmResponseAllOfValuesOverrideFile.md
docs/HelmResponseAllOfValuesOverrideFileGit.md
docs/HelmResponseAllOfValuesOverrideFileRaw.md
docs/HelmResponseAllOfValuesOverrideFileRawValues.md
docs/HelmResponseList.md
docs/HelmSourceGitResponse.md
docs/HelmSourceRepositoryResponse.md
docs/HelmSourceRepositoryResponseRepository.md
docs/HelmVersionResponse.md
docs/HelmVersionResponseList.md
docs/HelmsAPI.md
docs/InviteMember.md
docs/InviteMemberRequest.md
docs/InviteMemberResponseList.md
docs/InviteMemberRoleEnum.md
docs/InviteStatusEnum.md
docs/Invoice.md
docs/InvoiceResponseList.md
docs/InvoiceStatusEnum.md
docs/JobActionsAPI.md
docs/JobAdvancedSettings.md
docs/JobConfigurationAPI.md
docs/JobCronSchedule.md
docs/JobDeployRequest.md
docs/JobDeploymentHistoryAPI.md
docs/JobDeploymentRestrictionAPI.md
docs/JobDeploymentRestrictionRequest.md
docs/JobDeploymentRestrictionResponse.md
docs/JobDeploymentRestrictionResponseList.md
docs/JobEnvironmentVariableAPI.md
docs/JobForceEvent.md
docs/JobLifecycleTypeEnum.md
docs/JobLifecyleSchedule.md
docs/JobMainCallsAPI.md
docs/JobRequest.md
docs/JobRequestAllOfSchedule.md
docs/JobRequestAllOfScheduleCronjob.md
docs/JobRequestAllOfScheduleOnStart.md
docs/JobRequestAllOfSource.md
docs/JobRequestAllOfSourceDocker.md
docs/JobRequestAllOfSourceImage.md
docs/JobResponse.md
docs/JobResponseList.md
docs/JobScheduleEvent.md
docs/JobSecretAPI.md
docs/JobSourceDockerResponse.md
docs/JobsAPI.md
docs/KarpenterDefaultNodePoolOverride.md
docs/KarpenterNodePool.md
docs/KarpenterNodePoolConsolidation.md
docs/KarpenterNodePoolLimits.md
docs/KarpenterNodePoolRequirement.md
docs/KarpenterNodePoolRequirementKey.md
docs/KarpenterNodePoolRequirementOperator.md
docs/KarpenterStableNodePoolOverride.md
docs/Key.md
docs/KubernetesEnum.md
docs/KubernetesMetadata.md
docs/KubernetesSelector.md
docs/KubernetesService.md
docs/KubernetesServicePort.md
docs/KubernetesServiceResponseList.md
docs/KubernetesServiceSpec.md
docs/Label.md
docs/LabelsGroupAssociatedItemType.md
docs/LifecycleJobResponse.md
docs/LifecycleJobResponseAllOfSchedule.md
docs/LifecycleTemplateListResponse.md
docs/LifecycleTemplateListResponseResultsInner.md
docs/LifecycleTemplateMainCallsAPI.md
docs/LifecycleTemplateResponse.md
docs/LifecycleTemplateResponseEventsInner.md
docs/LifecycleTemplateResponseResources.md
docs/LifecycleTemplateResponseVariablesInner.md
docs/LifecycleTemplateResponseVariablesInnerFile.md
docs/Link.md
docs/LinkResponseList.md
docs/LinkedServiceTypeEnum.md
docs/ListContainerDeploymentHistory200Response.md
docs/ListDatabaseDeploymentHistory200Response.md
docs/ListDeploymentRequestByEnvironmentId200Response.md
docs/ListDeploymentRequestByServiceId200Response.md
docs/ListHelmDeploymentHistory200Response.md
docs/ListJobDeploymentHistory200Response.md
docs/ListOrganizationAnnotationsGroup200Response.md
docs/ListOrganizationLabelsGroup200Response.md
docs/ListServicesByEnvironmentId200Response.md
docs/ListServicesByEnvironmentId200ResponseResultsInner.md
docs/ListServicesByOrganizationId200Response.md
docs/Log.md
docs/LogResponseList.md
docs/ManagedDatabaseInstanceTypeResponse.md
docs/ManagedDatabaseInstanceTypeResponseList.md
docs/ManagedDatabaseTypeResponse.md
docs/ManagedDatabaseTypeResponseList.md
docs/Member.md
docs/MemberResponseList.md
docs/MemberRoleUpdateRequest.md
docs/MembersAPI.md
docs/OnPremiseCredentialsRequest.md
docs/Organization.md
docs/OrganizationAccountGitRepositoriesAPI.md
docs/OrganizationAllOfOrganizationPlan.md
docs/OrganizationAnnotationsGroupAPI.md
docs/OrganizationAnnotationsGroupAssociatedItemsResponseList.md
docs/OrganizationAnnotationsGroupAssociatedItemsResponseListResultsInner.md
docs/OrganizationAnnotationsGroupCreateRequest.md
docs/OrganizationAnnotationsGroupEnrichedResponse.md
docs/OrganizationAnnotationsGroupResponse.md
docs/OrganizationAnnotationsGroupScopeEnum.md
docs/OrganizationApiToken.md
docs/OrganizationApiTokenAPI.md
docs/OrganizationApiTokenCreate.md
docs/OrganizationApiTokenCreateRequest.md
docs/OrganizationApiTokenResponseList.md
docs/OrganizationApiTokenScope.md
docs/OrganizationAvailableRole.md
docs/OrganizationAvailableRoleList.md
docs/OrganizationBillingUsageReportRequest.md
docs/OrganizationBillingUsageReportResponse.md
docs/OrganizationChangePlanRequest.md
docs/OrganizationClusterLockAPI.md
docs/OrganizationContainerAutoDeployRequest.md
docs/OrganizationContainerPreviewRequest.md
docs/OrganizationCreditCodeRequest.md
docs/OrganizationCurrentCost.md
docs/OrganizationCustomRole.md
docs/OrganizationCustomRoleAPI.md
docs/OrganizationCustomRoleClusterPermission.md
docs/OrganizationCustomRoleClusterPermissionsInner.md
docs/OrganizationCustomRoleCreateRequest.md
docs/OrganizationCustomRoleList.md
docs/OrganizationCustomRoleProjectPermission.md
docs/OrganizationCustomRoleProjectPermissionsInner.md
docs/OrganizationCustomRoleUpdateRequest.md
docs/OrganizationCustomRoleUpdateRequestClusterPermissionsInner.md
docs/OrganizationCustomRoleUpdateRequestProjectPermissionsInner.md
docs/OrganizationCustomRoleUpdateRequestProjectPermissionsInnerPermissionsInner.md
docs/OrganizationEditRequest.md
docs/OrganizationEventAPI.md
docs/OrganizationEventOrigin.md
docs/OrganizationEventResponse.md
docs/OrganizationEventResponseList.md
docs/OrganizationEventResponseListLinks.md
docs/OrganizationEventSubTargetType.md
docs/OrganizationEventTargetResponseList.md
docs/OrganizationEventTargetType.md
docs/OrganizationEventType.md
docs/OrganizationGithubAppConnectRequest.md
docs/OrganizationJobAutoDeployRequest.md
docs/OrganizationLabelsGroupAPI.md
docs/OrganizationLabelsGroupAssociatedItemsResponseList.md
docs/OrganizationLabelsGroupAssociatedItemsResponseListResultsInner.md
docs/OrganizationLabelsGroupCreateRequest.md
docs/OrganizationLabelsGroupEnrichedResponse.md
docs/OrganizationLabelsGroupResponse.md
docs/OrganizationMainCallsAPI.md
docs/OrganizationRequest.md
docs/OrganizationResponseList.md
docs/OrganizationWebhookAPI.md
docs/OrganizationWebhookCreateRequest.md
docs/OrganizationWebhookCreateResponse.md
docs/OrganizationWebhookEventEnum.md
docs/OrganizationWebhookKindEnum.md
docs/OrganizationWebhookResponse.md
docs/OrganizationWebhookResponseList.md
docs/PaginationData.md
docs/PlanEnum.md
docs/PortProtocolEnum.md
docs/Probe.md
docs/ProbeType.md
docs/ProbeTypeExec.md
docs/ProbeTypeGrpc.md
docs/ProbeTypeHttp.md
docs/ProbeTypeTcp.md
docs/Project.md
docs/ProjectCurrentCost.md
docs/ProjectCurrentCostResponseList.md
docs/ProjectDeploymentRule.md
docs/ProjectDeploymentRuleAPI.md
docs/ProjectDeploymentRuleRequest.md
docs/ProjectDeploymentRuleResponseList.md
docs/ProjectDeploymentRulesPriorityOrderRequest.md
docs/ProjectEnvironmentVariableAPI.md
docs/ProjectMainCallsAPI.md
docs/ProjectRequest.md
docs/ProjectResponseList.md
docs/ProjectSecretAPI.md
docs/ProjectStats.md
docs/ProjectStatsResponseList.md
docs/ProjectsAPI.md
docs/QueuedDeploymentRequestForService.md
docs/QueuedDeploymentRequestForServiceAuditingData.md
docs/QueuedDeploymentRequestForServiceIdentifier.md
docs/QueuedDeploymentRequestWithStages.md
docs/QueuedDeploymentRequestWithStagesAuditingData.md
docs/QueuedDeploymentRequestWithStagesIdentifier.md
docs/QueuedDeploymentRequestWithStagesStagesInner.md
docs/QueuedDeploymentRequestWithStagesStagesInnerServicesInner.md
docs/QueuedDeploymentRequestWithStagesStagesInnerServicesInnerDetails.md
docs/QueuedDeploymentRequestWithStagesStagesInnerServicesInnerDetailsOneOf.md
docs/QueuedDeploymentRequestWithStagesStagesInnerServicesInnerIdentifier.md
docs/RebootServicesRequest.md
docs/ReferenceObject.md
docs/ReferenceObjectStatus.md
docs/ReferenceObjectStatusResponseList.md
docs/Referral.md
docs/ReferralRewardsAPI.md
docs/RegistryMirroringModeEnum.md
docs/RewardClaim.md
docs/ScalewayClusterCredentials.md
docs/ScalewayCredentialsRequest.md
docs/Secret.md
docs/SecretAlias.md
docs/SecretEditRequest.md
docs/SecretOverride.md
docs/SecretRequest.md
docs/SecretResponseList.md
docs/Service.md
docs/ServiceActionEnum.md
docs/ServiceActionStatusEnum.md
docs/ServiceAnnotationRequest.md
docs/ServiceDeploymentStatusEnum.md
docs/ServiceLabelRequest.md
docs/ServiceLightResponse.md
docs/ServicePort.md
docs/ServicePortRequest.md
docs/ServicePortRequestPortsInner.md
docs/ServiceStepMetric.md
docs/ServiceStepMetricNameEnum.md
docs/ServiceStepMetrics.md
docs/ServiceStorage.md
docs/ServiceStorageRequest.md
docs/ServiceStorageRequestStorageInner.md
docs/ServiceStorageStorageInner.md
docs/ServiceTotalNumber.md
docs/ServiceTypeEnum.md
docs/ServiceTypeForVariableEnum.md
docs/SignUp.md
docs/SignUpRequest.md
docs/Stage.md
docs/StageStatusEnum.md
docs/StageStepMetric.md
docs/StageStepMetricNameEnum.md
docs/StageStepMetrics.md
docs/StateEnum.md
docs/Status.md
docs/StatusDetails.md
docs/StatusKindEnum.md
docs/StepMetricStatusEnum.md
docs/StorageTypeEnum.md
docs/TransferOwnershipRequest.md
docs/TypeOfUseEnum.md
docs/User.md
docs/UserResponseList.md
docs/UserSignUpAPI.md
docs/Value.md
docs/VariableAlias.md
docs/VariableAliasRequest.md
docs/VariableEditRequest.md
docs/VariableImport.md
docs/VariableImportRequest.md
docs/VariableImportRequestVarsInner.md
docs/VariableImportSuccessfulImportedVariablesInner.md
docs/VariableMainCallsAPI.md
docs/VariableOverride.md
docs/VariableOverrideRequest.md
docs/VariableRequest.md
docs/VariableResponse.md
docs/VariableResponseList.md
docs/Version.md
docs/VersionResponseList.md
docs/WeekdayEnum.md
git_push.sh
go.mod
go.sum
model_account_info.go
model_account_info_edit_request.go
model_annotation.go
model_annotations_group_associated_item_type.go
model_api_variable_scope_enum.go
model_api_variable_type_enum.go
model_application.go
model_application_advanced_settings.go
model_application_deployment_restriction.go
model_application_deployment_restriction_request.go
model_application_deployment_restriction_response_list.go
model_application_edit_request.go
model_application_git_repository.go
model_application_git_repository_request.go
model_application_network.go
model_application_network_request.go
model_application_request.go
model_application_response_list.go
model_available_container_registry_response.go
model_available_container_registry_response_list.go
model_available_helm_repository_response.go
model_available_helm_repository_response_list.go
model_aws_credentials_request.go
model_aws_role_cluster_credentials.go
model_aws_role_credentials_request.go
model_aws_static_cluster_credentials.go
model_aws_static_credentials_request.go
model_backup.go
model_backup_paginated_response_list.go
model_backup_request.go
model_backup_response_list.go
model_base.go
model_base_job_response.go
model_base_job_response_all_of_source.go
model_base_job_response_all_of_source_one_of.go
model_base_job_response_all_of_source_one_of_1.go
model_billing_external_id.go
model_billing_info.go
model_billing_info_request.go
model_billing_status.go
model_budget.go
model_build_mode_enum.go
model_cancel_environment_deployment_request.go
model_checked_custom_domain_response.go
model_checked_custom_domain_status.go
model_checked_custom_domains_response.go
model_clean_failed_job_200_response.go
model_clean_failed_jobs_200_response.go
model_clean_failed_jobs_request.go
model_clone_environment_request.go
model_clone_service_request.go
model_cloud_provider.go
model_cloud_provider_enum.go
model_cloud_provider_response_list.go
model_cluster.go
model_cluster_advanced_settings.go
model_cluster_cloud_provider_info.go
model_cluster_cloud_provider_info_credentials.go
model_cluster_cloud_provider_info_request.go
model_cluster_credentials.go
model_cluster_credentials_response_list.go
model_cluster_delete_mode.go
model_cluster_deployment_status_enum.go
model_cluster_feature_aws_existing_vpc.go
model_cluster_feature_aws_existing_vpc_response.go
model_cluster_feature_boolean_response.go
model_cluster_feature_gcp_existing_vpc.go
model_cluster_feature_gcp_existing_vpc_response.go
model_cluster_feature_karpenter_parameters.go
model_cluster_feature_karpenter_parameters_response.go
model_cluster_feature_response.go
model_cluster_feature_response_accepted_values_inner.go
model_cluster_feature_response_list.go
model_cluster_feature_response_type_enum.go
model_cluster_feature_response_value_object.go
model_cluster_feature_string_response.go
model_cluster_instance_attributes.go
model_cluster_instance_gpu_info.go
model_cluster_instance_type_response_list.go
model_cluster_instance_type_response_list_results_inner.go
model_cluster_karpenter_private_subnet_ids_put_request.go
model_cluster_lock.go
model_cluster_lock_list.go
model_cluster_lock_request.go
model_cluster_logs.go
model_cluster_logs_details.go
model_cluster_logs_error.go
model_cluster_logs_error_event_details.go
model_cluster_logs_error_event_details_transmitter.go
model_cluster_logs_error_underlying_error.go
model_cluster_logs_message.go
model_cluster_logs_response_list.go
model_cluster_readiness_status.go
model_cluster_region.go
model_cluster_region_response_list.go
model_cluster_request.go
model_cluster_request_features_inner.go
model_cluster_request_features_inner_value.go
model_cluster_response_list.go
model_cluster_routing_table.go
model_cluster_routing_table_request.go
model_cluster_routing_table_results_inner.go
model_cluster_state_enum.go
model_cluster_status.go
model_cluster_status_response_list.go
model_commit.go
model_commit_response_list.go
model_company_size_enum.go
model_container_advanced_settings.go
model_container_deploy_request.go
model_container_image_check_request.go
model_container_network.go
model_container_network_request.go
model_container_registry_associated_service_type.go
model_container_registry_associated_services_response.go
model_container_registry_associated_services_response_list.go
model_container_registry_kind_enum.go
model_container_registry_provider_details_response.go
model_container_registry_request.go
model_container_registry_request_config.go
model_container_registry_response.go
model_container_registry_response_all_of_cluster.go
model_container_registry_response_all_of_config.go
model_container_registry_response_list.go
model_container_request.go
model_container_response.go
model_container_response_list.go
model_container_source.go
model_container_version_response.go
model_container_version_response_list.go
model_cost.go
model_cost_range.go
model_cpu_architecture_enum.go
model_create_environment_mode_enum.go
model_create_environment_request.go
model_credentials.go
model_credentials_request.go
model_credit_card.go
model_credit_card_request.go
model_credit_card_response_list.go
model_cron_job_response.go
model_cron_job_response_all_of_schedule.go
model_cron_job_response_all_of_schedule_cronjob.go
model_current_cost.go
model_custom_domain.go
model_custom_domain_request.go
model_custom_domain_response_list.go
model_custom_domain_status_enum.go
model_database.go
model_database_accessibility_enum.go
model_database_configuration.go
model_database_configuration_response_list.go
model_database_edit_request.go
model_database_mode_enum.go
model_database_request.go
model_database_response_list.go
model_database_type_enum.go
model_database_version_mode.go
model_delete_member_request.go
model_deploy_all_request.go
model_deploy_all_request_applications_inner.go
model_deploy_all_request_containers_inner.go
model_deploy_all_request_helms_inner.go
model_deploy_all_request_jobs_inner.go
model_deploy_request.go
model_deployment_history.go
model_deployment_history_action_status.go
model_deployment_history_application.go
model_deployment_history_auditing_data.go
model_deployment_history_container.go
model_deployment_history_database.go
model_deployment_history_environment.go
model_deployment_history_environment_paginated_response_list.go
model_deployment_history_environment_paginated_response_list_v2.go
model_deployment_history_environment_v2.go
model_deployment_history_environment_v2_identifier.go
model_deployment_history_helm_response.go
model_deployment_history_helm_response_all_of_repository.go
model_deployment_history_job_response.go
model_deployment_history_job_response_all_of_schedule.go
model_deployment_history_paginated_response_list.go
model_deployment_history_service.go
model_deployment_history_service_details.go
model_deployment_history_service_details_one_of.go
model_deployment_history_service_details_one_of_1.go
model_deployment_history_service_details_one_of_2.go
model_deployment_history_service_details_one_of_2_schedule.go
model_deployment_history_service_details_one_of_3.go
model_deployment_history_service_details_one_of_3_repository.go
model_deployment_history_service_identifier.go
model_deployment_history_service_paginated_response_list_v2.go
model_deployment_history_stage.go
model_deployment_history_status_enum.go
model_deployment_history_trigger_action.go
model_deployment_restriction_mode_enum.go
model_deployment_restriction_type_enum.go
model_deployment_stage_request.go
model_deployment_stage_response.go
model_deployment_stage_response_list.go
model_deployment_stage_service_response.go
model_deployment_stage_with_services_statuses.go
model_dockerfile_check_request.go
model_dockerfile_check_response.go
model_env_deployment_status.go
model_environment.go
model_environment_all_of_cloud_provider.go
model_environment_deployment_rule.go
model_environment_deployment_rule_edit_request.go
model_environment_deployment_status_enum.go
model_environment_edit_request.go
model_environment_log.go
model_environment_log_response_list.go
model_environment_log_scope.go
model_environment_log_type_enum.go
model_environment_logs.go
model_environment_logs_details.go
model_environment_logs_details_stage.go
model_environment_logs_details_transmitter.go
model_environment_logs_error.go
model_environment_logs_error_underlying_error.go
model_environment_logs_message.go
model_environment_mode_enum.go
model_environment_response_list.go
model_environment_service_ids_all_request.go
model_environment_stats.go
model_environment_stats_response_list.go
model_environment_status.go
model_environment_status_event_origin_enum.go
model_environment_status_list.go
model_environment_statuses.go
model_environment_statuses_with_stages.go
model_environment_statuses_with_stages_pre_check_stage.go
model_environment_total_number.go
model_environment_variable.go
model_environment_variable_alias.go
model_environment_variable_edit_request.go
model_environment_variable_override.go
model_environment_variable_request.go
model_environment_variable_response_list.go
model_gcp_credentials_request.go
model_generic_cluster_credentials.go
model_generic_object_current_cost.go
model_get_cluster_kubernetes_events_200_response.go
model_get_cluster_kubernetes_events_200_response_results_inner.go
model_get_cluster_token_by_cluster_id_200_response.go
model_get_cluster_token_by_cluster_id_200_response_status.go
model_git_auth_provider.go
model_git_auth_provider_response_list.go
model_git_file_check_request.go
model_git_provider_enum.go
model_git_repository.go
model_git_repository_branch.go
model_git_repository_branch_response_list.go
model_git_repository_response_list.go
model_git_token_associated_service_response.go
model_git_token_associated_service_type.go
model_git_token_associated_services_response_list.go
model_git_token_request.go
model_git_token_response.go
model_git_token_response_list.go
model_healthcheck.go
model_helm_advanced_settings.go
model_helm_check_request.go
model_helm_default_values_request.go
model_helm_default_values_request_all_of_source.go
model_helm_deploy_request.go
model_helm_deployment_restriction_request.go
model_helm_deployment_restriction_response.go
model_helm_deployment_restriction_response_list.go
model_helm_force_event.go
model_helm_git_repository_request.go
model_helm_port_protocol_enum.go
model_helm_port_request.go
model_helm_port_request_ports_inner.go
model_helm_port_request_ports_inner_all_of_one_of.go
model_helm_port_request_ports_inner_all_of_one_of_1.go
model_helm_port_response_base.go
model_helm_port_response_with_service_name.go
model_helm_port_response_with_service_selectors.go