├── .editorconfig ├── .gen ├── cloudinfo │ ├── .gitignore │ ├── .openapi-generator-ignore │ ├── .openapi-generator │ │ └── VERSION │ ├── README.md │ ├── api │ │ └── openapi.yaml │ ├── api_continents.go │ ├── api_images.go │ ├── api_products.go │ ├── api_provider.go │ ├── api_providers.go │ ├── api_region.go │ ├── api_regions.go │ ├── api_service.go │ ├── api_services.go │ ├── api_versions.go │ ├── client.go │ ├── configuration.go │ ├── docs │ │ ├── AttributeResponse.md │ │ ├── Continent.md │ │ ├── ContinentsApi.md │ │ ├── GetRegionResp.md │ │ ├── Image.md │ │ ├── ImagesApi.md │ │ ├── LocationVersion.md │ │ ├── ProductDetails.md │ │ ├── ProductDetailsResponse.md │ │ ├── ProductsApi.md │ │ ├── Provider.md │ │ ├── ProviderApi.md │ │ ├── ProviderResponse.md │ │ ├── ProvidersApi.md │ │ ├── ProvidersResponse.md │ │ ├── Region.md │ │ ├── RegionApi.md │ │ ├── RegionsApi.md │ │ ├── Service.md │ │ ├── ServiceApi.md │ │ ├── ServiceResponse.md │ │ ├── ServicesApi.md │ │ ├── ServicesResponse.md │ │ ├── VersionsApi.md │ │ └── ZonePrice.md │ ├── model_attribute_response.go │ ├── model_continent.go │ ├── model_get_region_resp.go │ ├── model_image.go │ ├── model_location_version.go │ ├── model_product_details.go │ ├── model_product_details_response.go │ ├── model_provider.go │ ├── model_provider_response.go │ ├── model_providers_response.go │ ├── model_region.go │ ├── model_service.go │ ├── model_service_response.go │ ├── model_services_response.go │ ├── model_zone_price.go │ └── response.go ├── pipeline │ ├── .gitignore │ ├── .openapi-generator-ignore │ ├── .openapi-generator │ │ └── VERSION │ ├── README.md │ ├── api │ │ └── openapi.yaml │ ├── api_ark.go │ ├── api_ark_backups.go │ ├── api_ark_buckets.go │ ├── api_ark_restores.go │ ├── api_ark_schedules.go │ ├── api_auth.go │ ├── api_clustergroup_deployments.go │ ├── api_clustergroup_features.go │ ├── api_clustergroups.go │ ├── api_clusters.go │ ├── api_common.go │ ├── api_deployments.go │ ├── api_google.go │ ├── api_helm.go │ ├── api_images.go │ ├── api_info.go │ ├── api_integrated_services.go │ ├── api_network.go │ ├── api_organizations.go │ ├── api_pipeline.go │ ├── api_processes.go │ ├── api_scanlog.go │ ├── api_secrets.go │ ├── api_storage.go │ ├── api_users.go │ ├── api_whitelist.go │ ├── client.go │ ├── configuration.go │ ├── docs │ │ ├── ActivateIntegratedServiceRequest.md │ │ ├── AmazonAutoScalingGroup.md │ │ ├── AmazonAutoScalingGroupSize.md │ │ ├── AmazonProviderConfig.md │ │ ├── ApiClusterGroup.md │ │ ├── ApiCreateRequest.md │ │ ├── ApiCreateResponse.md │ │ ├── ApiFeatureResponse.md │ │ ├── ApiMember.md │ │ ├── ApiUpdateRequest.md │ │ ├── ApiUpdateResponse.md │ │ ├── ArkApi.md │ │ ├── ArkBackupsApi.md │ │ ├── ArkBucketsApi.md │ │ ├── ArkRestoresApi.md │ │ ├── ArkSchedulesApi.md │ │ ├── AuthApi.md │ │ ├── AzureBlobStorageProps.md │ │ ├── BackupBucketResponse.md │ │ ├── BackupOptions.md │ │ ├── BackupResponse.md │ │ ├── BackupServiceResponse.md │ │ ├── BasePostHook.md │ │ ├── BaseUpdateNodePoolOptions.md │ │ ├── BaseUpdateNodePoolRequest.md │ │ ├── BucketInfo.md │ │ ├── BucketInfoSecret.md │ │ ├── ClusterConfig.md │ │ ├── ClusterImage.md │ │ ├── ClustergroupDeploymentsApi.md │ │ ├── ClustergroupFeaturesApi.md │ │ ├── ClustergroupsApi.md │ │ ├── ClustersApi.md │ │ ├── CommonApi.md │ │ ├── CommonError.md │ │ ├── CreateAksProperties.md │ │ ├── CreateAksPropertiesAks.md │ │ ├── CreateAmazonObjectStoreBucketProperties.md │ │ ├── CreateAzureObjectStoreBucketProperties.md │ │ ├── CreateBackupBucketRequest.md │ │ ├── CreateBackupRequest.md │ │ ├── CreateBackupResponse.md │ │ ├── CreateClusterRequest.md │ │ ├── CreateClusterRequestBase.md │ │ ├── CreateClusterRequestV2.md │ │ ├── CreateClusterResponse202.md │ │ ├── CreateEksProperties.md │ │ ├── CreateEksPropertiesEks.md │ │ ├── CreateGkeProperties.md │ │ ├── CreateGkePropertiesGke.md │ │ ├── CreateGkePropertiesGkeMaster.md │ │ ├── CreateGoogleObjectStoreBucketProperties.md │ │ ├── CreateNodePoolRequest.md │ │ ├── CreateObjectStoreBucketProperties.md │ │ ├── CreateObjectStoreBucketRequest.md │ │ ├── CreateObjectStoreBucketResponse.md │ │ ├── CreatePkeClusterKubernetes.md │ │ ├── CreatePkeClusterKubernetesCri.md │ │ ├── CreatePkeClusterKubernetesNetwork.md │ │ ├── CreatePkeClusterKubernetesOidc.md │ │ ├── CreatePkeClusterRequestBase.md │ │ ├── CreatePkeClusterRequestBaseAllOf.md │ │ ├── CreatePkeOnAzureClusterRequest.md │ │ ├── CreatePkeOnAzureClusterRequestAllOf.md │ │ ├── CreatePkeOnVsphereClusterRequest.md │ │ ├── CreatePkeOnVsphereClusterRequestAllOf.md │ │ ├── CreatePkeProperties.md │ │ ├── CreatePkePropertiesCri.md │ │ ├── CreatePkePropertiesKubernetes.md │ │ ├── CreatePkePropertiesKubernetesRbac.md │ │ ├── CreatePkePropertiesNetwork.md │ │ ├── CreateResourceGroup.md │ │ ├── CreateRestoreRequest.md │ │ ├── CreateRestoreResponse.md │ │ ├── CreateScheduleRequest.md │ │ ├── CreateScheduleResponse.md │ │ ├── CreateSecretRequest.md │ │ ├── CreateSecretResponse.md │ │ ├── CreateUpdateDeploymentRequest.md │ │ ├── CreateUpdateDeploymentResponse.md │ │ ├── DeleteBackupBucketResponse.md │ │ ├── DeleteBackupResponse.md │ │ ├── DeleteDeploymentResponse.md │ │ ├── DeleteRestoreResponse.md │ │ ├── DeleteScheduleResponse.md │ │ ├── DeployedBackupBucketResponse.md │ │ ├── DeploymentClusterGroupDeployment.md │ │ ├── DeploymentCreateUpdateDeploymentResponse.md │ │ ├── DeploymentDeploymentInfo.md │ │ ├── DeploymentListDeploymentResponse.md │ │ ├── DeploymentTargetClusterStatus.md │ │ ├── DeploymentsApi.md │ │ ├── DisableArkResponse.md │ │ ├── EksAuthConfig.md │ │ ├── EksAuthConfigRoles.md │ │ ├── EksAuthConfigUsers.md │ │ ├── EksEncryptionConfig.md │ │ ├── EksEncryptionConfigProvider.md │ │ ├── EksIam.md │ │ ├── EksNodePool.md │ │ ├── EksNodePoolAllOf.md │ │ ├── EksNodePoolVolumeEncryption.md │ │ ├── EksSubnet.md │ │ ├── EksUpdateClusterRequest.md │ │ ├── EksUpdateNodePoolRequest.md │ │ ├── EksUpdateNodePoolRequestAllOf.md │ │ ├── EksVpc.md │ │ ├── EnableArkRequest.md │ │ ├── EnableArkResponse.md │ │ ├── EndpointItem.md │ │ ├── Error.md │ │ ├── GenericNodePool.md │ │ ├── GetClusterBootstrapResponse.md │ │ ├── GetClusterStatusResponse.md │ │ ├── GetDeploymentResponse.md │ │ ├── GetLeaderElectionResponse.md │ │ ├── GetPkeCommandsResponse.md │ │ ├── GoogleApi.md │ │ ├── GoogleProject.md │ │ ├── GoogleProjects.md │ │ ├── HelmApi.md │ │ ├── HelmChartDetailsResponse.md │ │ ├── HelmChartDetailsResponseChart.md │ │ ├── HelmChartDetailsResponseChartMaintainers.md │ │ ├── HelmChartDetailsResponseVersions.md │ │ ├── HelmRepoListItem.md │ │ ├── HelmReposAddRequest.md │ │ ├── HelmReposDeleteResponse.md │ │ ├── HelmReposModifyRequest.md │ │ ├── HelmReposUpdateResponse.md │ │ ├── ImagesApi.md │ │ ├── InfoApi.md │ │ ├── InstallSecretRequest.md │ │ ├── InstallSecretRequestSpecItem.md │ │ ├── InstallSecretResponse.md │ │ ├── InstallSecretsRequest.md │ │ ├── InstallSecretsRequestQuery.md │ │ ├── IntegratedServiceDetails.md │ │ ├── IntegratedServicesApi.md │ │ ├── Labels.md │ │ ├── ListDeploymentsResponseItem.md │ │ ├── ListEndpointsResponse.md │ │ ├── ListNodesResponse.md │ │ ├── ListNodesResponseMetadata.md │ │ ├── NamespaceItem.md │ │ ├── NamespaceListResponse.md │ │ ├── NetworkApi.md │ │ ├── NodeItem.md │ │ ├── NodeItemMetadata.md │ │ ├── NodeItemSpec.md │ │ ├── NodeItemStatus.md │ │ ├── NodeItemStatusAddresses.md │ │ ├── NodeItemStatusAllocatable.md │ │ ├── NodeItemStatusCapacity.md │ │ ├── NodeItemStatusConditions.md │ │ ├── NodeItemStatusDaemonEndpoints.md │ │ ├── NodeItemStatusImages.md │ │ ├── NodeItemStatusNodeInfo.md │ │ ├── NodePool.md │ │ ├── NodePoolAutoScaling.md │ │ ├── NodePoolStatus.md │ │ ├── NodePoolStatusAmazon.md │ │ ├── NodePoolStatusAzure.md │ │ ├── NodePoolStatusGoogle.md │ │ ├── NodePoolStatusInformation.md │ │ ├── NodePoolStatusVSphere.md │ │ ├── NodePoolSummary.md │ │ ├── NodePools.md │ │ ├── NodePoolsAzure.md │ │ ├── NodePoolsGoogle.md │ │ ├── NodePoolsPke.md │ │ ├── NodepoolLabels.md │ │ ├── OidcConfig.md │ │ ├── OrganizationListItemResponse.md │ │ ├── OrganizationsApi.md │ │ ├── PipelineApi.md │ │ ├── PkeAwsUpdateNodePoolRequest.md │ │ ├── PkeAwsUpdateNodePoolRequestAllOf.md │ │ ├── PkeClusterHttpProxy.md │ │ ├── PkeClusterHttpProxyOptions.md │ │ ├── PkeClusterReadinessResponse.md │ │ ├── PkeClusterReadinessResponseMaster.md │ │ ├── PkeHosts.md │ │ ├── PkeOnAzureClusterNetwork.md │ │ ├── PkeOnAzureNodePool.md │ │ ├── PkeOnAzureNodePoolSubnet.md │ │ ├── PkeOnVsphereNodePool.md │ │ ├── PodCondition.md │ │ ├── PodItem.md │ │ ├── PodItemLabels.md │ │ ├── PostHooks.md │ │ ├── PostLeaderElectionRequest.md │ │ ├── PostLeaderElectionResponse.md │ │ ├── PostReadyPkeNodeRequest.md │ │ ├── Process.md │ │ ├── ProcessEvent.md │ │ ├── ProcessStatus.md │ │ ├── ProcessesApi.md │ │ ├── ReleaseWhiteListItem.md │ │ ├── ReportPkeNodeStatusRequest.md │ │ ├── ReportPkeNodeStatusResponse.md │ │ ├── RequestedResources.md │ │ ├── Resource.md │ │ ├── ResourceGroupCreated.md │ │ ├── ResourceSummary.md │ │ ├── RestoreResponse.md │ │ ├── RestoreResultErrors.md │ │ ├── RestoreResultWarnings.md │ │ ├── RestoreResultsResponse.md │ │ ├── RouteTableInfo.md │ │ ├── ScanLogItem.md │ │ ├── ScanLogItemImage.md │ │ ├── ScanlogApi.md │ │ ├── ScheduleResponse.md │ │ ├── SecretItem.md │ │ ├── SecretKeyValueAmazon.md │ │ ├── SecretKeyValueAzure.md │ │ ├── SecretKeyValueGeneric.md │ │ ├── SecretKeyValueGoogle.md │ │ ├── SecretKeyValueKubernetes.md │ │ ├── SecretKeyValueTls.md │ │ ├── SecretTypeResponse.md │ │ ├── SecretTypeResponseFields.md │ │ ├── SecretsApi.md │ │ ├── StorageApi.md │ │ ├── SubnetInfo.md │ │ ├── TokenCreateRequest.md │ │ ├── TokenCreateResponse.md │ │ ├── TokenListResponseItem.md │ │ ├── UpdateAzureProperties.md │ │ ├── UpdateAzurePropertiesAzure.md │ │ ├── UpdateClusterRequest.md │ │ ├── UpdateClusterRequestDeprecated.md │ │ ├── UpdateClusterRequestV2.md │ │ ├── UpdateEksProperties.md │ │ ├── UpdateEksPropertiesEks.md │ │ ├── UpdateGoogleProperties.md │ │ ├── UpdateGooglePropertiesMaster.md │ │ ├── UpdateIntegratedServiceRequest.md │ │ ├── UpdateNodePoolDrainOptions.md │ │ ├── UpdateNodePoolRequest.md │ │ ├── UpdateNodePoolResponse.md │ │ ├── UpdateNodePoolsAzure.md │ │ ├── UpdateNodePoolsGoogle.md │ │ ├── UpdateNodePoolsPke.md │ │ ├── UpdatePkeOnAzureClusterRequest.md │ │ ├── UpdatePkeOnVsphereClusterRequest.md │ │ ├── UpdatePkeProperties.md │ │ ├── UpdatePkePropertiesPke.md │ │ ├── UrlItem.md │ │ ├── User.md │ │ ├── UsersApi.md │ │ ├── VersionResponse.md │ │ ├── VpcNetworkInfo.md │ │ └── WhitelistApi.md │ ├── model_activate_integrated_service_request.go │ ├── model_amazon_auto_scaling_group.go │ ├── model_amazon_auto_scaling_group_size.go │ ├── model_amazon_provider_config.go │ ├── model_api_cluster_group.go │ ├── model_api_create_request.go │ ├── model_api_create_response.go │ ├── model_api_feature_response.go │ ├── model_api_member.go │ ├── model_api_update_request.go │ ├── model_api_update_response.go │ ├── model_azure_blob_storage_props.go │ ├── model_backup_bucket_response.go │ ├── model_backup_options.go │ ├── model_backup_response.go │ ├── model_backup_service_response.go │ ├── model_base_post_hook.go │ ├── model_base_update_node_pool_options.go │ ├── model_base_update_node_pool_request.go │ ├── model_bucket_info.go │ ├── model_bucket_info_secret.go │ ├── model_cluster_config.go │ ├── model_cluster_image.go │ ├── model_common_error.go │ ├── model_create_aks_properties.go │ ├── model_create_aks_properties_aks.go │ ├── model_create_amazon_object_store_bucket_properties.go │ ├── model_create_azure_object_store_bucket_properties.go │ ├── model_create_backup_bucket_request.go │ ├── model_create_backup_request.go │ ├── model_create_backup_response.go │ ├── model_create_cluster_request.go │ ├── model_create_cluster_request_base.go │ ├── model_create_cluster_request_v2.go │ ├── model_create_cluster_response_202.go │ ├── model_create_eks_properties.go │ ├── model_create_eks_properties_eks.go │ ├── model_create_gke_properties.go │ ├── model_create_gke_properties_gke.go │ ├── model_create_gke_properties_gke_master.go │ ├── model_create_google_object_store_bucket_properties.go │ ├── model_create_node_pool_request.go │ ├── model_create_object_store_bucket_properties.go │ ├── model_create_object_store_bucket_request.go │ ├── model_create_object_store_bucket_response.go │ ├── model_create_pke_cluster_kubernetes.go │ ├── model_create_pke_cluster_kubernetes_cri.go │ ├── model_create_pke_cluster_kubernetes_network.go │ ├── model_create_pke_cluster_kubernetes_oidc.go │ ├── model_create_pke_cluster_request_base.go │ ├── model_create_pke_cluster_request_base_all_of.go │ ├── model_create_pke_on_azure_cluster_request.go │ ├── model_create_pke_on_azure_cluster_request_all_of.go │ ├── model_create_pke_on_vsphere_cluster_request.go │ ├── model_create_pke_on_vsphere_cluster_request_all_of.go │ ├── model_create_pke_properties.go │ ├── model_create_pke_properties_cri.go │ ├── model_create_pke_properties_kubernetes.go │ ├── model_create_pke_properties_kubernetes_rbac.go │ ├── model_create_pke_properties_network.go │ ├── model_create_resource_group.go │ ├── model_create_restore_request.go │ ├── model_create_restore_response.go │ ├── model_create_schedule_request.go │ ├── model_create_schedule_response.go │ ├── model_create_secret_request.go │ ├── model_create_secret_response.go │ ├── model_create_update_deployment_request.go │ ├── model_create_update_deployment_response.go │ ├── model_delete_backup_bucket_response.go │ ├── model_delete_backup_response.go │ ├── model_delete_deployment_response.go │ ├── model_delete_restore_response.go │ ├── model_delete_schedule_response.go │ ├── model_deployed_backup_bucket_response.go │ ├── model_deployment_cluster_group_deployment.go │ ├── model_deployment_create_update_deployment_response.go │ ├── model_deployment_deployment_info.go │ ├── model_deployment_list_deployment_response.go │ ├── model_deployment_target_cluster_status.go │ ├── model_disable_ark_response.go │ ├── model_eks_auth_config.go │ ├── model_eks_auth_config_roles.go │ ├── model_eks_auth_config_users.go │ ├── model_eks_encryption_config.go │ ├── model_eks_encryption_config_provider.go │ ├── model_eks_iam.go │ ├── model_eks_node_pool.go │ ├── model_eks_node_pool_all_of.go │ ├── model_eks_node_pool_volume_encryption.go │ ├── model_eks_subnet.go │ ├── model_eks_update_cluster_request.go │ ├── model_eks_update_node_pool_request.go │ ├── model_eks_update_node_pool_request_all_of.go │ ├── model_eks_vpc.go │ ├── model_enable_ark_request.go │ ├── model_enable_ark_response.go │ ├── model_endpoint_item.go │ ├── model_error.go │ ├── model_generic_node_pool.go │ ├── model_get_cluster_bootstrap_response.go │ ├── model_get_cluster_status_response.go │ ├── model_get_deployment_response.go │ ├── model_get_leader_election_response.go │ ├── model_get_pke_commands_response.go │ ├── model_google_project.go │ ├── model_google_projects.go │ ├── model_helm_chart_details_response.go │ ├── model_helm_chart_details_response_chart.go │ ├── model_helm_chart_details_response_chart_maintainers.go │ ├── model_helm_chart_details_response_versions.go │ ├── model_helm_repo_list_item.go │ ├── model_helm_repos_add_request.go │ ├── model_helm_repos_delete_response.go │ ├── model_helm_repos_modify_request.go │ ├── model_helm_repos_update_response.go │ ├── model_install_secret_request.go │ ├── model_install_secret_request_spec_item.go │ ├── model_install_secret_response.go │ ├── model_install_secrets_request.go │ ├── model_install_secrets_request_query.go │ ├── model_integrated_service_details.go │ ├── model_labels.go │ ├── model_list_deployments_response_item.go │ ├── model_list_endpoints_response.go │ ├── model_list_nodes_response.go │ ├── model_list_nodes_response_metadata.go │ ├── model_namespace_item.go │ ├── model_namespace_list_response.go │ ├── model_node_item.go │ ├── model_node_item_metadata.go │ ├── model_node_item_spec.go │ ├── model_node_item_status.go │ ├── model_node_item_status_addresses.go │ ├── model_node_item_status_allocatable.go │ ├── model_node_item_status_capacity.go │ ├── model_node_item_status_conditions.go │ ├── model_node_item_status_daemon_endpoints.go │ ├── model_node_item_status_images.go │ ├── model_node_item_status_node_info.go │ ├── model_node_pool.go │ ├── model_node_pool_auto_scaling.go │ ├── model_node_pool_status.go │ ├── model_node_pool_status_amazon.go │ ├── model_node_pool_status_azure.go │ ├── model_node_pool_status_google.go │ ├── model_node_pool_status_information.go │ ├── model_node_pool_status_v_sphere.go │ ├── model_node_pool_summary.go │ ├── model_node_pools.go │ ├── model_node_pools_azure.go │ ├── model_node_pools_google.go │ ├── model_node_pools_pke.go │ ├── model_nodepool_labels.go │ ├── model_oidc_config.go │ ├── model_organization_list_item_response.go │ ├── model_pke_aws_update_node_pool_request.go │ ├── model_pke_aws_update_node_pool_request_all_of.go │ ├── model_pke_cluster_http_proxy.go │ ├── model_pke_cluster_http_proxy_options.go │ ├── model_pke_cluster_readiness_response.go │ ├── model_pke_cluster_readiness_response_master.go │ ├── model_pke_hosts.go │ ├── model_pke_on_azure_cluster_network.go │ ├── model_pke_on_azure_node_pool.go │ ├── model_pke_on_azure_node_pool_subnet.go │ ├── model_pke_on_vsphere_node_pool.go │ ├── model_pod_condition.go │ ├── model_pod_item.go │ ├── model_pod_item_labels.go │ ├── model_post_hooks.go │ ├── model_post_leader_election_request.go │ ├── model_post_leader_election_response.go │ ├── model_post_ready_pke_node_request.go │ ├── model_process.go │ ├── model_process_event.go │ ├── model_process_status.go │ ├── model_release_white_list_item.go │ ├── model_report_pke_node_status_request.go │ ├── model_report_pke_node_status_response.go │ ├── model_requested_resources.go │ ├── model_resource.go │ ├── model_resource_group_created.go │ ├── model_resource_summary.go │ ├── model_restore_response.go │ ├── model_restore_result_errors.go │ ├── model_restore_result_warnings.go │ ├── model_restore_results_response.go │ ├── model_route_table_info.go │ ├── model_scan_log_item.go │ ├── model_scan_log_item_image.go │ ├── model_schedule_response.go │ ├── model_secret_item.go │ ├── model_secret_key_value_amazon.go │ ├── model_secret_key_value_azure.go │ ├── model_secret_key_value_generic.go │ ├── model_secret_key_value_google.go │ ├── model_secret_key_value_kubernetes.go │ ├── model_secret_key_value_tls.go │ ├── model_secret_type_response.go │ ├── model_secret_type_response_fields.go │ ├── model_subnet_info.go │ ├── model_token_create_request.go │ ├── model_token_create_response.go │ ├── model_token_list_response_item.go │ ├── model_update_azure_properties.go │ ├── model_update_azure_properties_azure.go │ ├── model_update_cluster_request.go │ ├── model_update_cluster_request_deprecated.go │ ├── model_update_cluster_request_v2.go │ ├── model_update_eks_properties.go │ ├── model_update_eks_properties_eks.go │ ├── model_update_google_properties.go │ ├── model_update_google_properties_master.go │ ├── model_update_integrated_service_request.go │ ├── model_update_node_pool_drain_options.go │ ├── model_update_node_pool_request.go │ ├── model_update_node_pool_response.go │ ├── model_update_node_pools_azure.go │ ├── model_update_node_pools_google.go │ ├── model_update_node_pools_pke.go │ ├── model_update_pke_on_azure_cluster_request.go │ ├── model_update_pke_on_vsphere_cluster_request.go │ ├── model_update_pke_properties.go │ ├── model_update_pke_properties_pke.go │ ├── model_url_item.go │ ├── model_user.go │ ├── model_version_response.go │ ├── model_vpc_network_info.go │ ├── response.go │ └── version.go └── telescopes │ ├── .gitignore │ ├── .openapi-generator-ignore │ ├── .openapi-generator │ └── VERSION │ ├── README.md │ ├── api │ └── openapi.yaml │ ├── api_recommend.go │ ├── client.go │ ├── configuration.go │ ├── docs │ ├── ClusterRecommendationAccuracy.md │ ├── ClusterRecommendationReq.md │ ├── ClusterRecommendationResp.md │ ├── GetRecommendationParams.md │ ├── NodePool.md │ ├── NodePoolDesc.md │ ├── Provider.md │ ├── RecommendApi.md │ ├── RecommendClusterRequest.md │ ├── RecommendClusterScaleOutRequest.md │ ├── RecommendMultiClusterRequest.md │ ├── RecommendationResponse.md │ └── VirtualMachine.md │ ├── model_cluster_recommendation_accuracy.go │ ├── model_cluster_recommendation_req.go │ ├── model_cluster_recommendation_resp.go │ ├── model_get_recommendation_params.go │ ├── model_node_pool.go │ ├── model_node_pool_desc.go │ ├── model_provider.go │ ├── model_recommend_cluster_request.go │ ├── model_recommend_cluster_scale_out_request.go │ ├── model_recommend_multi_cluster_request.go │ ├── model_recommendation_response.go │ ├── model_virtual_machine.go │ └── response.go ├── .github ├── dependabot.yml └── workflows │ ├── ci.yaml │ ├── release-stable.yaml │ └── release-unstable.yaml ├── .gitignore ├── .golangci.yml ├── .goreleaser.unstable.yml ├── .goreleaser.yml ├── .idea ├── banzai-cli.iml ├── copyright │ ├── Banzai_Cloud.xml │ └── profiles_settings.xml ├── externalDependencies.xml ├── go.imports.xml ├── modules.xml ├── runConfigurations │ └── Tests.xml └── scopes │ └── Go_files.xml ├── .licensei.toml ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── cmd ├── banzai │ └── main.go ├── docs │ └── generate.go └── root.go ├── go.mod ├── go.sum ├── internal └── cli │ ├── auth │ ├── base.go │ ├── login.go │ └── oidc.go │ ├── cli.go │ ├── command │ ├── bucket │ │ ├── bucket.go │ │ ├── cmd.go │ │ ├── create.go │ │ ├── delete.go │ │ ├── get.go │ │ └── list.go │ ├── cluster │ │ ├── base.go │ │ ├── cmd.go │ │ ├── config.go │ │ ├── context │ │ │ └── context.go │ │ ├── create.go │ │ ├── delete.go │ │ ├── get.go │ │ ├── helm.go │ │ ├── import.go │ │ ├── integratedservice │ │ │ ├── cmd.go │ │ │ ├── list.go │ │ │ ├── services │ │ │ │ ├── activate.go │ │ │ │ ├── backup │ │ │ │ │ ├── common.go │ │ │ │ │ ├── create.go │ │ │ │ │ ├── delete.go │ │ │ │ │ ├── disable.go │ │ │ │ │ ├── enable.go │ │ │ │ │ ├── list.go │ │ │ │ │ └── status.go │ │ │ │ ├── common.go │ │ │ │ ├── deactivate.go │ │ │ │ ├── dns │ │ │ │ │ ├── common.go │ │ │ │ │ ├── manager.go │ │ │ │ │ └── spec.go │ │ │ │ ├── expiry │ │ │ │ │ ├── manager.go │ │ │ │ │ └── spec.go │ │ │ │ ├── get.go │ │ │ │ ├── ingress │ │ │ │ │ ├── common.go │ │ │ │ │ ├── manager.go │ │ │ │ │ ├── spec.go │ │ │ │ │ ├── spec_test.go │ │ │ │ │ └── utils.go │ │ │ │ ├── logging │ │ │ │ │ ├── common.go │ │ │ │ │ ├── error.go │ │ │ │ │ ├── manager.go │ │ │ │ │ └── spec.go │ │ │ │ ├── monitoring │ │ │ │ │ ├── common.go │ │ │ │ │ ├── error.go │ │ │ │ │ ├── manager.go │ │ │ │ │ └── spec.go │ │ │ │ ├── securityscan │ │ │ │ │ ├── common.go │ │ │ │ │ └── manager.go │ │ │ │ ├── update.go │ │ │ │ └── vault │ │ │ │ │ ├── common.go │ │ │ │ │ └── manager.go │ │ │ └── utils │ │ │ │ └── util.go │ │ ├── list.go │ │ ├── node │ │ │ ├── cmd.go │ │ │ ├── node_list.go │ │ │ └── node_ssh.go │ │ ├── nodepool │ │ │ ├── cmd.go │ │ │ ├── create.go │ │ │ ├── delete.go │ │ │ ├── list.go │ │ │ ├── update.go │ │ │ └── update │ │ │ │ ├── cancel.go │ │ │ │ ├── tail.go │ │ │ │ └── util.go │ │ ├── restore │ │ │ ├── common.go │ │ │ ├── create.go │ │ │ ├── delete.go │ │ │ ├── list.go │ │ │ └── result.go │ │ ├── shell.go │ │ ├── templates.go │ │ └── update.go │ ├── cmd.go │ ├── completion │ │ └── cmd.go │ ├── controlplane │ │ ├── cmd.go │ │ ├── custom.go │ │ ├── debug.go │ │ ├── down.go │ │ ├── ec2.go │ │ ├── exec.go │ │ ├── init.go │ │ ├── installer_options.go │ │ ├── kind.go │ │ ├── pke.go │ │ ├── up.go │ │ └── utils.go │ ├── login │ │ ├── login.go │ │ └── oidc.go │ ├── organization │ │ ├── cmd.go │ │ ├── list.go │ │ └── select.go │ ├── process │ │ ├── cancel.go │ │ ├── cmd.go │ │ ├── list.go │ │ └── tail.go │ └── secret │ │ ├── cmd.go │ │ ├── create.go │ │ ├── delete.go │ │ ├── get.go │ │ ├── install.go │ │ └── list.go │ ├── format │ ├── bucket.go │ ├── cluster.go │ ├── common.go │ ├── node_pools.go │ ├── organization.go │ ├── process.go │ ├── secret.go │ └── service.go │ ├── input │ ├── bucket.go │ ├── check.go │ ├── cloud.go │ ├── locations.go │ ├── number.go │ ├── organization.go │ ├── questions.go │ ├── resourcegroup.go │ └── secret.go │ ├── log.go │ ├── output │ └── output.go │ └── utils │ ├── http2curl.go │ └── utils.go ├── pkg ├── formatting │ ├── formatting.go │ └── formatting_test.go ├── kubectlversion │ └── kubectlversion.go ├── process │ └── process.go ├── spinner │ ├── spinner.go │ └── status.go ├── sshconnector │ ├── connector.go │ ├── direct.go │ └── pod.go └── stringslice │ └── stringslice.go └── scripts ├── check-header.sh ├── getcli.sh ├── test_getcli.sh └── trigger-docs-update.sh /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | charset = utf-8 5 | end_of_line = lf 6 | indent_size = 4 7 | indent_style = space 8 | insert_final_newline = true 9 | trim_trailing_whitespace = true 10 | 11 | [*.go] 12 | indent_style = tab 13 | 14 | [{Makefile,*.mk}] 15 | indent_style = tab 16 | -------------------------------------------------------------------------------- /.gen/cloudinfo/.gitignore: -------------------------------------------------------------------------------- 1 | # Compiled Object files, Static and Dynamic libs (Shared Objects) 2 | *.o 3 | *.a 4 | *.so 5 | 6 | # Folders 7 | _obj 8 | _test 9 | 10 | # Architecture specific extensions/prefixes 11 | *.[568vq] 12 | [568vq].out 13 | 14 | *.cgo1.go 15 | *.cgo2.c 16 | _cgo_defun.c 17 | _cgo_gotypes.go 18 | _cgo_export.* 19 | 20 | _testmain.go 21 | 22 | *.exe 23 | *.test 24 | *.prof 25 | -------------------------------------------------------------------------------- /.gen/cloudinfo/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 4.3.1 -------------------------------------------------------------------------------- /.gen/cloudinfo/docs/AttributeResponse.md: -------------------------------------------------------------------------------- 1 | # AttributeResponse 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **AttributeName** | **string** | | [optional] 8 | **AttributeValues** | **[]float64** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /.gen/cloudinfo/docs/Continent.md: -------------------------------------------------------------------------------- 1 | # Continent 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Name** | **string** | | [optional] 8 | **Regions** | [**[]Region**](Region.md) | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /.gen/cloudinfo/docs/GetRegionResp.md: -------------------------------------------------------------------------------- 1 | # GetRegionResp 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Id** | **string** | | [optional] 8 | **Name** | **string** | | [optional] 9 | **Zones** | **[]string** | | [optional] 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | 13 | 14 | -------------------------------------------------------------------------------- /.gen/cloudinfo/docs/Image.md: -------------------------------------------------------------------------------- 1 | # Image 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **CreationDate** | [**time.Time**](time.Time.md) | | [optional] 8 | **Gpu** | **bool** | | [optional] 9 | **Name** | **string** | | [optional] 10 | **Tags** | **map[string]string** | | [optional] 11 | **Version** | **string** | | [optional] 12 | 13 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 14 | 15 | 16 | -------------------------------------------------------------------------------- /.gen/cloudinfo/docs/LocationVersion.md: -------------------------------------------------------------------------------- 1 | # LocationVersion 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Default** | **string** | | [optional] 8 | **Location** | **string** | | [optional] 9 | **Versions** | **[]string** | | [optional] 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | 13 | 14 | -------------------------------------------------------------------------------- /.gen/cloudinfo/docs/ProductDetailsResponse.md: -------------------------------------------------------------------------------- 1 | # ProductDetailsResponse 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Products** | [**[]ProductDetails**](ProductDetails.md) | Products represents a slice of products for a given provider (VMs with attributes and process) | [optional] 8 | **ScrapingTime** | **string** | ScrapingTime represents scraping time for a given provider in milliseconds | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /.gen/cloudinfo/docs/Provider.md: -------------------------------------------------------------------------------- 1 | # Provider 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Provider** | **string** | | [optional] 8 | **Services** | [**[]Service**](Service.md) | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /.gen/cloudinfo/docs/ProviderResponse.md: -------------------------------------------------------------------------------- 1 | # ProviderResponse 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Provider** | [**Provider**](Provider.md) | | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /.gen/cloudinfo/docs/ProvidersResponse.md: -------------------------------------------------------------------------------- 1 | # ProvidersResponse 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Providers** | [**[]Provider**](Provider.md) | | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /.gen/cloudinfo/docs/Region.md: -------------------------------------------------------------------------------- 1 | # Region 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Id** | **string** | | [optional] 8 | **Name** | **string** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /.gen/cloudinfo/docs/Service.md: -------------------------------------------------------------------------------- 1 | # Service 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **IsStatic** | **bool** | | [optional] 8 | **Service** | **string** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /.gen/cloudinfo/docs/ServiceResponse.md: -------------------------------------------------------------------------------- 1 | # ServiceResponse 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Service** | [**Service**](Service.md) | | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /.gen/cloudinfo/docs/ServicesResponse.md: -------------------------------------------------------------------------------- 1 | # ServicesResponse 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Services** | [**[]Service**](Service.md) | | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /.gen/cloudinfo/docs/ZonePrice.md: -------------------------------------------------------------------------------- 1 | # ZonePrice 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Price** | **float64** | | [optional] 8 | **Zone** | **string** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /.gen/cloudinfo/model_attribute_response.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Product Info. 3 | * 4 | * The product info application uses the cloud provider APIs to asynchronously fetch and parse instance type attributes and prices, while storing the results in an in memory cache and making it available as structured data through a REST API. 5 | * 6 | * API version: 0.13.0 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package cloudinfo 13 | // AttributeResponse AttributeResponse holds attribute values 14 | type AttributeResponse struct { 15 | AttributeName string `json:"attributeName,omitempty"` 16 | AttributeValues []float64 `json:"attributeValues,omitempty"` 17 | } 18 | -------------------------------------------------------------------------------- /.gen/cloudinfo/model_continent.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Product Info. 3 | * 4 | * The product info application uses the cloud provider APIs to asynchronously fetch and parse instance type attributes and prices, while storing the results in an in memory cache and making it available as structured data through a REST API. 5 | * 6 | * API version: 0.13.0 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package cloudinfo 13 | // Continent Continent holds continent and regions of a cloud provider 14 | type Continent struct { 15 | Name string `json:"name,omitempty"` 16 | Regions []Region `json:"regions,omitempty"` 17 | } 18 | -------------------------------------------------------------------------------- /.gen/cloudinfo/model_provider.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Product Info. 3 | * 4 | * The product info application uses the cloud provider APIs to asynchronously fetch and parse instance type attributes and prices, while storing the results in an in memory cache and making it available as structured data through a REST API. 5 | * 6 | * API version: 0.13.0 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package cloudinfo 13 | // Provider Provider represents a cloud provider 14 | type Provider struct { 15 | Provider string `json:"provider,omitempty"` 16 | Services []Service `json:"services,omitempty"` 17 | } 18 | -------------------------------------------------------------------------------- /.gen/cloudinfo/model_provider_response.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Product Info. 3 | * 4 | * The product info application uses the cloud provider APIs to asynchronously fetch and parse instance type attributes and prices, while storing the results in an in memory cache and making it available as structured data through a REST API. 5 | * 6 | * API version: 0.13.0 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package cloudinfo 13 | // ProviderResponse ProviderResponse is the response used for the requested provider 14 | type ProviderResponse struct { 15 | Provider Provider `json:"provider,omitempty"` 16 | } 17 | -------------------------------------------------------------------------------- /.gen/cloudinfo/model_providers_response.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Product Info. 3 | * 4 | * The product info application uses the cloud provider APIs to asynchronously fetch and parse instance type attributes and prices, while storing the results in an in memory cache and making it available as structured data through a REST API. 5 | * 6 | * API version: 0.13.0 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package cloudinfo 13 | // ProvidersResponse ProvidersResponse is the response used for the supported providers 14 | type ProvidersResponse struct { 15 | Providers []Provider `json:"providers,omitempty"` 16 | } 17 | -------------------------------------------------------------------------------- /.gen/cloudinfo/model_region.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Product Info. 3 | * 4 | * The product info application uses the cloud provider APIs to asynchronously fetch and parse instance type attributes and prices, while storing the results in an in memory cache and making it available as structured data through a REST API. 5 | * 6 | * API version: 0.13.0 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package cloudinfo 13 | // Region Region hold the id and name of a cloud provider region 14 | type Region struct { 15 | Id string `json:"id,omitempty"` 16 | Name string `json:"name,omitempty"` 17 | } 18 | -------------------------------------------------------------------------------- /.gen/cloudinfo/model_service.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Product Info. 3 | * 4 | * The product info application uses the cloud provider APIs to asynchronously fetch and parse instance type attributes and prices, while storing the results in an in memory cache and making it available as structured data through a REST API. 5 | * 6 | * API version: 0.13.0 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package cloudinfo 13 | // Service it's intended to implement the ServiceDescriber interface 14 | type Service struct { 15 | IsStatic bool `json:"isStatic,omitempty"` 16 | Service string `json:"service,omitempty"` 17 | } 18 | -------------------------------------------------------------------------------- /.gen/cloudinfo/model_service_response.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Product Info. 3 | * 4 | * The product info application uses the cloud provider APIs to asynchronously fetch and parse instance type attributes and prices, while storing the results in an in memory cache and making it available as structured data through a REST API. 5 | * 6 | * API version: 0.13.0 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package cloudinfo 13 | // ServiceResponse ServiceResponse holds the list of available services 14 | type ServiceResponse struct { 15 | Service Service `json:"service,omitempty"` 16 | } 17 | -------------------------------------------------------------------------------- /.gen/cloudinfo/model_services_response.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Product Info. 3 | * 4 | * The product info application uses the cloud provider APIs to asynchronously fetch and parse instance type attributes and prices, while storing the results in an in memory cache and making it available as structured data through a REST API. 5 | * 6 | * API version: 0.13.0 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package cloudinfo 13 | // ServicesResponse ServicesResponse holds the list of available services 14 | type ServicesResponse struct { 15 | Services []Service `json:"services,omitempty"` 16 | } 17 | -------------------------------------------------------------------------------- /.gen/cloudinfo/model_zone_price.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Product Info. 3 | * 4 | * The product info application uses the cloud provider APIs to asynchronously fetch and parse instance type attributes and prices, while storing the results in an in memory cache and making it available as structured data through a REST API. 5 | * 6 | * API version: 0.13.0 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package cloudinfo 13 | // ZonePrice ZonePrice struct for displaying price information per zone 14 | type ZonePrice struct { 15 | Price float64 `json:"price,omitempty"` 16 | Zone string `json:"zone,omitempty"` 17 | } 18 | -------------------------------------------------------------------------------- /.gen/pipeline/.gitignore: -------------------------------------------------------------------------------- 1 | # Compiled Object files, Static and Dynamic libs (Shared Objects) 2 | *.o 3 | *.a 4 | *.so 5 | 6 | # Folders 7 | _obj 8 | _test 9 | 10 | # Architecture specific extensions/prefixes 11 | *.[568vq] 12 | [568vq].out 13 | 14 | *.cgo1.go 15 | *.cgo2.c 16 | _cgo_defun.c 17 | _cgo_gotypes.go 18 | _cgo_export.* 19 | 20 | _testmain.go 21 | 22 | *.exe 23 | *.test 24 | *.prof 25 | -------------------------------------------------------------------------------- /.gen/pipeline/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 4.3.1 -------------------------------------------------------------------------------- /.gen/pipeline/docs/ActivateIntegratedServiceRequest.md: -------------------------------------------------------------------------------- 1 | # ActivateIntegratedServiceRequest 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Spec** | [**map[string]interface{}**](.md) | | 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/AmazonAutoScalingGroupSize.md: -------------------------------------------------------------------------------- 1 | # AmazonAutoScalingGroupSize 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Min** | **int32** | | 8 | **Max** | **int32** | | 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/AmazonProviderConfig.md: -------------------------------------------------------------------------------- 1 | # AmazonProviderConfig 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **AutoScalingGroup** | [**AmazonAutoScalingGroup**](AmazonAutoScalingGroup.md) | | 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/ApiClusterGroup.md: -------------------------------------------------------------------------------- 1 | # ApiClusterGroup 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **EnabledFeatures** | **[]string** | | [optional] 8 | **Id** | **int32** | | [optional] 9 | **Members** | [**[]ApiMember**](api.Member.md) | | [optional] 10 | **Name** | **string** | | [optional] 11 | **OrganizationId** | **int32** | | [optional] 12 | **Uid** | **string** | | [optional] 13 | 14 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 15 | 16 | 17 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/ApiCreateRequest.md: -------------------------------------------------------------------------------- 1 | # ApiCreateRequest 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Members** | **[]int32** | | [optional] 8 | **Name** | **string** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/ApiCreateResponse.md: -------------------------------------------------------------------------------- 1 | # ApiCreateResponse 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Id** | **int32** | | [optional] 8 | **Name** | **string** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/ApiMember.md: -------------------------------------------------------------------------------- 1 | # ApiMember 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Cloud** | **string** | | [optional] 8 | **Distribution** | **string** | | [optional] 9 | **Id** | **int32** | | [optional] 10 | **Name** | **string** | | [optional] 11 | **Status** | **string** | | [optional] 12 | 13 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 14 | 15 | 16 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/ApiUpdateRequest.md: -------------------------------------------------------------------------------- 1 | # ApiUpdateRequest 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Members** | **[]int32** | | [optional] 8 | **Name** | **string** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/ApiUpdateResponse.md: -------------------------------------------------------------------------------- 1 | # ApiUpdateResponse 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Id** | **int32** | | [optional] 8 | **Name** | **string** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/AzureBlobStorageProps.md: -------------------------------------------------------------------------------- 1 | # AzureBlobStorageProps 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **ResourceGroup** | **string** | | 8 | **StorageAccount** | **string** | | 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/BackupBucketResponse.md: -------------------------------------------------------------------------------- 1 | # BackupBucketResponse 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Id** | **int32** | | [optional] 8 | **Name** | **string** | | [optional] 9 | **Cloud** | **string** | | [optional] 10 | **SecretId** | **string** | | [optional] 11 | **Status** | **string** | | [optional] 12 | **InUse** | **bool** | | [optional] 13 | 14 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 15 | 16 | 17 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/BackupOptions.md: -------------------------------------------------------------------------------- 1 | # BackupOptions 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **IncludedNamespaces** | **[]string** | | [optional] 8 | **IncludedResources** | **[]string** | | [optional] 9 | **ExcludedNamespaces** | **[]string** | | [optional] 10 | **ExcludedResources** | **[]string** | | [optional] 11 | **SnapshotVolumes** | **bool** | | [optional] 12 | **IncludeClusterResources** | **bool** | | [optional] 13 | 14 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 15 | 16 | 17 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/BackupServiceResponse.md: -------------------------------------------------------------------------------- 1 | # BackupServiceResponse 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Enabled** | **bool** | | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/BasePostHook.md: -------------------------------------------------------------------------------- 1 | # BasePostHook 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **PostHookFunctionName** | [**map[string]interface{}**](.md) | | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/BaseUpdateNodePoolRequest.md: -------------------------------------------------------------------------------- 1 | # BaseUpdateNodePoolRequest 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Size** | **int32** | Node pool size. | 8 | **Labels** | **map[string]string** | Node pool labels. | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/BucketInfoSecret.md: -------------------------------------------------------------------------------- 1 | # BucketInfoSecret 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Id** | **string** | | 8 | **Name** | **string** | | [optional] 9 | **AccessId** | **string** | the secret identifier of the azure access information | [optional] 10 | **AccessName** | **string** | the secret name of the azure access information | [optional] 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | 14 | 15 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/ClusterConfig.md: -------------------------------------------------------------------------------- 1 | # ClusterConfig 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Status** | **int32** | | [optional] 8 | **Data** | **string** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/ClusterImage.md: -------------------------------------------------------------------------------- 1 | # ClusterImage 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **ImageName** | **string** | | [optional] 8 | **ImageTag** | **string** | | [optional] 9 | **ImageDigest** | **string** | | [optional] 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | 13 | 14 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/CommonError.md: -------------------------------------------------------------------------------- 1 | # CommonError 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Code** | **int32** | HTTP status code | [optional] 8 | **Message** | **string** | Error message | [optional] 9 | **Error** | **string** | Error message | [optional] 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | 13 | 14 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/CreateAksProperties.md: -------------------------------------------------------------------------------- 1 | # CreateAksProperties 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Aks** | [**CreateAksPropertiesAks**](CreateAKSProperties_aks.md) | | 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/CreateAksPropertiesAks.md: -------------------------------------------------------------------------------- 1 | # CreateAksPropertiesAks 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **ResourceGroup** | **string** | | 8 | **KubernetesVersion** | **string** | | 9 | **NodePools** | [**map[string]NodePoolsAzure**](NodePoolsAzure.md) | | 10 | **VnetSubnetID** | **string** | | [optional] 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | 14 | 15 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/CreateAmazonObjectStoreBucketProperties.md: -------------------------------------------------------------------------------- 1 | # CreateAmazonObjectStoreBucketProperties 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Location** | **string** | | 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/CreateAzureObjectStoreBucketProperties.md: -------------------------------------------------------------------------------- 1 | # CreateAzureObjectStoreBucketProperties 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **StorageAccount** | **string** | | 8 | **Location** | **string** | | 9 | **ResourceGroup** | **string** | | 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | 13 | 14 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/CreateBackupRequest.md: -------------------------------------------------------------------------------- 1 | # CreateBackupRequest 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Name** | **string** | | 8 | **Ttl** | **string** | | 9 | **Labels** | [**Labels**](Labels.md) | | [optional] 10 | **Options** | [**BackupOptions**](BackupOptions.md) | | [optional] 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | 14 | 15 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/CreateBackupResponse.md: -------------------------------------------------------------------------------- 1 | # CreateBackupResponse 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Id** | **int32** | | [optional] 8 | **Status** | **int32** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/CreateClusterRequestBase.md: -------------------------------------------------------------------------------- 1 | # CreateClusterRequestBase 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Name** | **string** | | 8 | **SecretId** | **string** | | [optional] 9 | **SecretName** | **string** | | [optional] 10 | **SshSecretId** | **string** | | [optional] 11 | **Type** | **string** | | 12 | 13 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 14 | 15 | 16 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/CreateClusterRequestV2.md: -------------------------------------------------------------------------------- 1 | # CreateClusterRequestV2 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Name** | **string** | | 8 | **SecretId** | **string** | | [optional] 9 | **SecretName** | **string** | | [optional] 10 | **SshSecretId** | **string** | | [optional] 11 | **Type** | **string** | | 12 | 13 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 14 | 15 | 16 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/CreateClusterResponse202.md: -------------------------------------------------------------------------------- 1 | # CreateClusterResponse202 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Name** | **string** | | [optional] 8 | **Id** | **int32** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/CreateEksProperties.md: -------------------------------------------------------------------------------- 1 | # CreateEksProperties 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Eks** | [**CreateEksPropertiesEks**](CreateEKSProperties_eks.md) | | 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/CreateGkeProperties.md: -------------------------------------------------------------------------------- 1 | # CreateGkeProperties 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Gke** | [**CreateGkePropertiesGke**](CreateGKEProperties_gke.md) | | 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/CreateGkePropertiesGkeMaster.md: -------------------------------------------------------------------------------- 1 | # CreateGkePropertiesGkeMaster 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Version** | **string** | | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/CreateGoogleObjectStoreBucketProperties.md: -------------------------------------------------------------------------------- 1 | # CreateGoogleObjectStoreBucketProperties 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Location** | **string** | | 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/CreateObjectStoreBucketRequest.md: -------------------------------------------------------------------------------- 1 | # CreateObjectStoreBucketRequest 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **SecretId** | **string** | | [optional] 8 | **SecretName** | **string** | | [optional] 9 | **Name** | **string** | | 10 | **Properties** | [**CreateObjectStoreBucketProperties**](CreateObjectStoreBucketProperties.md) | | 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | 14 | 15 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/CreateObjectStoreBucketResponse.md: -------------------------------------------------------------------------------- 1 | # CreateObjectStoreBucketResponse 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Name** | **string** | | 8 | **Cloud** | **string** | | 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/CreatePkeClusterKubernetesCri.md: -------------------------------------------------------------------------------- 1 | # CreatePkeClusterKubernetesCri 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Runtime** | **string** | | [optional] 8 | **RuntimeConfig** | [**map[string]interface{}**](.md) | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/CreatePkeClusterKubernetesNetwork.md: -------------------------------------------------------------------------------- 1 | # CreatePkeClusterKubernetesNetwork 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **ServiceCIDR** | **string** | | [optional] 8 | **PodCIDR** | **string** | | [optional] 9 | **Provider** | **string** | | [optional] 10 | **ProviderConfig** | [**map[string]interface{}**](.md) | | [optional] 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | 14 | 15 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/CreatePkeClusterKubernetesOidc.md: -------------------------------------------------------------------------------- 1 | # CreatePkeClusterKubernetesOidc 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Enabled** | **bool** | | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/CreatePkeClusterRequestBaseAllOf.md: -------------------------------------------------------------------------------- 1 | # CreatePkeClusterRequestBaseAllOf 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Kubernetes** | [**CreatePkeClusterKubernetes**](CreatePKEClusterKubernetes.md) | | 8 | **Proxy** | [**PkeClusterHttpProxy**](PKEClusterHTTPProxy.md) | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/CreatePkeProperties.md: -------------------------------------------------------------------------------- 1 | # CreatePkeProperties 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Network** | [**CreatePkePropertiesNetwork**](CreatePKEProperties_network.md) | | 8 | **NodePools** | [**[]NodePoolsPke**](NodePoolsPKE.md) | | 9 | **Kubernetes** | [**CreatePkePropertiesKubernetes**](CreatePKEProperties_kubernetes.md) | | 10 | **Cri** | [**CreatePkePropertiesCri**](CreatePKEProperties_cri.md) | | 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | 14 | 15 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/CreatePkePropertiesCri.md: -------------------------------------------------------------------------------- 1 | # CreatePkePropertiesCri 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Runtime** | **string** | | 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/CreatePkePropertiesKubernetes.md: -------------------------------------------------------------------------------- 1 | # CreatePkePropertiesKubernetes 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Version** | **string** | | 8 | **Rbac** | [**CreatePkePropertiesKubernetesRbac**](CreatePKEProperties_kubernetes_rbac.md) | | 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/CreatePkePropertiesKubernetesRbac.md: -------------------------------------------------------------------------------- 1 | # CreatePkePropertiesKubernetesRbac 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Enabled** | **bool** | | 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/CreatePkePropertiesNetwork.md: -------------------------------------------------------------------------------- 1 | # CreatePkePropertiesNetwork 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **ApiServerAddress** | **string** | | 8 | **ServiceCIDR** | **string** | | 9 | **PodCIDR** | **string** | | 10 | **Provider** | **string** | | 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | 14 | 15 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/CreateResourceGroup.md: -------------------------------------------------------------------------------- 1 | # CreateResourceGroup 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Name** | **string** | | 8 | **Location** | **string** | | 9 | **SecretId** | **string** | | 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | 13 | 14 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/CreateRestoreRequest.md: -------------------------------------------------------------------------------- 1 | # CreateRestoreRequest 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **BackupName** | **string** | | 8 | **Options** | [**BackupOptions**](BackupOptions.md) | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/CreateRestoreResponse.md: -------------------------------------------------------------------------------- 1 | # CreateRestoreResponse 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Restore** | [**RestoreResponse**](RestoreResponse.md) | | [optional] 8 | **Status** | **int32** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/CreateScheduleRequest.md: -------------------------------------------------------------------------------- 1 | # CreateScheduleRequest 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Name** | **string** | | 8 | **Schedule** | **string** | | 9 | **Ttl** | **string** | | 10 | **Labels** | [**Labels**](Labels.md) | | [optional] 11 | **Options** | [**BackupOptions**](BackupOptions.md) | | [optional] 12 | 13 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 14 | 15 | 16 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/CreateScheduleResponse.md: -------------------------------------------------------------------------------- 1 | # CreateScheduleResponse 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Name** | **string** | | [optional] 8 | **Status** | **int32** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/CreateSecretRequest.md: -------------------------------------------------------------------------------- 1 | # CreateSecretRequest 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Name** | **string** | | 8 | **Type** | **string** | | 9 | **Tags** | **[]string** | | [optional] 10 | **Values** | [**map[string]interface{}**](.md) | | 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | 14 | 15 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/CreateSecretResponse.md: -------------------------------------------------------------------------------- 1 | # CreateSecretResponse 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Name** | **string** | | 8 | **Type** | **string** | | 9 | **Id** | **string** | | 10 | **Error** | **string** | | [optional] 11 | **UpdatedAt** | [**time.Time**](time.Time.md) | | [optional] 12 | **UpdatedBy** | **string** | | [optional] 13 | **Version** | **int32** | | [optional] 14 | **Tags** | **[]string** | | [optional] 15 | 16 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 17 | 18 | 19 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/CreateUpdateDeploymentResponse.md: -------------------------------------------------------------------------------- 1 | # CreateUpdateDeploymentResponse 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **ReleaseName** | **string** | | [optional] 8 | **Notes** | **string** | deployment notes in base64 encoded format | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/DeleteBackupBucketResponse.md: -------------------------------------------------------------------------------- 1 | # DeleteBackupBucketResponse 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Id** | **int32** | | [optional] 8 | **Status** | **int32** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/DeleteBackupResponse.md: -------------------------------------------------------------------------------- 1 | # DeleteBackupResponse 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Id** | **int32** | | [optional] 8 | **Status** | **int32** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/DeleteDeploymentResponse.md: -------------------------------------------------------------------------------- 1 | # DeleteDeploymentResponse 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Status** | **int32** | | [optional] 8 | **Message** | **string** | | [optional] 9 | **Name** | **string** | | [optional] 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | 13 | 14 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/DeleteRestoreResponse.md: -------------------------------------------------------------------------------- 1 | # DeleteRestoreResponse 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Id** | **int32** | | [optional] 8 | **Status** | **int32** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/DeleteScheduleResponse.md: -------------------------------------------------------------------------------- 1 | # DeleteScheduleResponse 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Name** | **string** | | [optional] 8 | **Status** | **int32** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/DeploymentCreateUpdateDeploymentResponse.md: -------------------------------------------------------------------------------- 1 | # DeploymentCreateUpdateDeploymentResponse 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **ReleaseName** | **string** | | [optional] 8 | **TargetClusters** | [**[]DeploymentTargetClusterStatus**](deployment.TargetClusterStatus.md) | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/DisableArkResponse.md: -------------------------------------------------------------------------------- 1 | # DisableArkResponse 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Status** | **int32** | | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/EksAuthConfig.md: -------------------------------------------------------------------------------- 1 | # EksAuthConfig 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **MapRoles** | [**[]EksAuthConfigRoles**](EKSAuthConfigRoles.md) | | [optional] 8 | **MapUsers** | [**[]EksAuthConfigUsers**](EKSAuthConfigUsers.md) | | [optional] 9 | **MapAccounts** | **[]string** | | [optional] 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | 13 | 14 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/EksAuthConfigRoles.md: -------------------------------------------------------------------------------- 1 | # EksAuthConfigRoles 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Groups** | **[]string** | | [optional] 8 | **Username** | **string** | | [optional] 9 | **Rolearn** | **string** | | [optional] 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | 13 | 14 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/EksAuthConfigUsers.md: -------------------------------------------------------------------------------- 1 | # EksAuthConfigUsers 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Groups** | **[]string** | | [optional] 8 | **Username** | **string** | | [optional] 9 | **Userarn** | **string** | | [optional] 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | 13 | 14 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/EksEncryptionConfig.md: -------------------------------------------------------------------------------- 1 | # EksEncryptionConfig 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Provider** | [**EksEncryptionConfigProvider**](EKSEncryptionConfigProvider.md) | | [optional] 8 | **Resources** | **[]string** | Resource kinds to encrypt with the corresponding encryption provider. | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/EksEncryptionConfigProvider.md: -------------------------------------------------------------------------------- 1 | # EksEncryptionConfigProvider 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **KeyARN** | **string** | A customer master key to use for encryption. More information can be found at https://docs.aws.amazon.com/kms/latest/developerguide/create-keys.html. | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/EksNodePoolVolumeEncryption.md: -------------------------------------------------------------------------------- 1 | # EksNodePoolVolumeEncryption 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Enabled** | **bool** | Indicator of encrypted node pool node volumes. | 8 | **EncryptionKeyARN** | **string** | KMS key ARN to use for node volume encryption. | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/EksSubnet.md: -------------------------------------------------------------------------------- 1 | # EksSubnet 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **SubnetId** | **string** | Id of existing subnet to use for creating the EKS cluster. If not provided new subnet will be created. | [optional] 8 | **Cidr** | **string** | The CIDR range for the subnet in case new Subnet is created. | [optional] 9 | **AvailabilityZone** | **string** | The AZ to create the subnet into. | [optional] 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | 13 | 14 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/EksUpdateClusterRequest.md: -------------------------------------------------------------------------------- 1 | # EksUpdateClusterRequest 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Version** | **string** | | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/EksVpc.md: -------------------------------------------------------------------------------- 1 | # EksVpc 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **VpcId** | **string** | The identifier of existing VPC to be used for creating the EKS cluster. If not provided a new VPC is created for the cluster. | [optional] 8 | **Cidr** | **string** | The CIDR range for the VPC in case new VPC is created. | [optional] [default to 192.168.0.0/16] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/EnableArkResponse.md: -------------------------------------------------------------------------------- 1 | # EnableArkResponse 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Status** | **int32** | | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/EndpointItem.md: -------------------------------------------------------------------------------- 1 | # EndpointItem 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Name** | **string** | | [optional] 8 | **Host** | **string** | | [optional] 9 | **Urls** | [**[]UrlItem**](URLItem.md) | | [optional] 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | 13 | 14 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/GenericNodePool.md: -------------------------------------------------------------------------------- 1 | # GenericNodePool 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Name** | **string** | Node pool name. | 8 | **Size** | **int32** | Node pool size. | 9 | **Labels** | **map[string]string** | Node pool labels. | [optional] 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | 13 | 14 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/GetClusterBootstrapResponse.md: -------------------------------------------------------------------------------- 1 | # GetClusterBootstrapResponse 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Token** | **string** | | [optional] 8 | **DiscoveryTokenCaCertHash** | **string** | | [optional] 9 | **MasterAddress** | **string** | | [optional] 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | 13 | 14 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/GetLeaderElectionResponse.md: -------------------------------------------------------------------------------- 1 | # GetLeaderElectionResponse 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Hostname** | **string** | | 8 | **Ip** | **string** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/GetPkeCommandsResponse.md: -------------------------------------------------------------------------------- 1 | # GetPkeCommandsResponse 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **AdditionalProperties** | **string** | | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/GoogleProject.md: -------------------------------------------------------------------------------- 1 | # GoogleProject 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Name** | **string** | | [optional] 8 | **ProjectId** | **string** | | [optional] 9 | **ProjectNumber** | **string** | | [optional] 10 | **LifecycleState** | **string** | | [optional] 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | 14 | 15 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/GoogleProjects.md: -------------------------------------------------------------------------------- 1 | # GoogleProjects 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Projects** | [**[]GoogleProject**](GoogleProject.md) | | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/HelmChartDetailsResponse.md: -------------------------------------------------------------------------------- 1 | # HelmChartDetailsResponse 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Name** | **string** | | [optional] 8 | **Repo** | **string** | | [optional] 9 | **Versions** | [**[]HelmChartDetailsResponseVersions**](HelmChartDetailsResponse_versions.md) | | [optional] 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | 13 | 14 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/HelmChartDetailsResponseChartMaintainers.md: -------------------------------------------------------------------------------- 1 | # HelmChartDetailsResponseChartMaintainers 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Name** | **string** | | [optional] 8 | **Email** | **string** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/HelmChartDetailsResponseVersions.md: -------------------------------------------------------------------------------- 1 | # HelmChartDetailsResponseVersions 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Chart** | [**HelmChartDetailsResponseChart**](HelmChartDetailsResponse_chart.md) | | [optional] 8 | **Values** | **string** | | [optional] 9 | **Readme** | **string** | | [optional] 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | 13 | 14 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/HelmRepoListItem.md: -------------------------------------------------------------------------------- 1 | # HelmRepoListItem 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Name** | **string** | | [optional] 8 | **Cache** | **string** | | [optional] 9 | **Url** | **string** | | [optional] 10 | **CertFile** | **string** | | [optional] 11 | **KeyFile** | **string** | | [optional] 12 | **CaFile** | **string** | | [optional] 13 | **PasswordSecretRef** | **string** | | [optional] 14 | **TlsSecretRef** | **string** | | [optional] 15 | 16 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 17 | 18 | 19 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/HelmReposAddRequest.md: -------------------------------------------------------------------------------- 1 | # HelmReposAddRequest 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Name** | **string** | | 8 | **Url** | **string** | | 9 | **CertFile** | **string** | | [optional] 10 | **KeyFile** | **string** | | [optional] 11 | **CaFile** | **string** | | [optional] 12 | **PasswordSecretRef** | **string** | | [optional] 13 | **TlsSecretRef** | **string** | | [optional] 14 | 15 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 16 | 17 | 18 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/HelmReposDeleteResponse.md: -------------------------------------------------------------------------------- 1 | # HelmReposDeleteResponse 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Status** | **int32** | | [optional] 8 | **Message** | **string** | | [optional] 9 | **Name** | **string** | | [optional] 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | 13 | 14 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/HelmReposModifyRequest.md: -------------------------------------------------------------------------------- 1 | # HelmReposModifyRequest 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Name** | **string** | | [optional] 8 | **Url** | **string** | | [optional] 9 | **CertFile** | **string** | | [optional] 10 | **KeyFile** | **string** | | [optional] 11 | **CaFile** | **string** | | [optional] 12 | **PasswordSecretRef** | **string** | | [optional] 13 | **TlsSecretRef** | **string** | | [optional] 14 | 15 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 16 | 17 | 18 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/HelmReposUpdateResponse.md: -------------------------------------------------------------------------------- 1 | # HelmReposUpdateResponse 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Status** | **int32** | | [optional] 8 | **Message** | **string** | | [optional] 9 | **Name** | **string** | | [optional] 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | 13 | 14 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/InstallSecretRequest.md: -------------------------------------------------------------------------------- 1 | # InstallSecretRequest 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **SourceSecretName** | **string** | | [optional] 8 | **Namespace** | **string** | | 9 | **Spec** | [**map[string]InstallSecretRequestSpecItem**](InstallSecretRequestSpecItem.md) | | [optional] 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | 13 | 14 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/InstallSecretRequestSpecItem.md: -------------------------------------------------------------------------------- 1 | # InstallSecretRequestSpecItem 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Source** | **string** | | [optional] 8 | **SourceMap** | **map[string]string** | | [optional] 9 | **Value** | **string** | | [optional] 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | 13 | 14 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/InstallSecretResponse.md: -------------------------------------------------------------------------------- 1 | # InstallSecretResponse 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Name** | **string** | | 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/InstallSecretsRequest.md: -------------------------------------------------------------------------------- 1 | # InstallSecretsRequest 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Namespace** | **string** | | 8 | **Query** | [**InstallSecretsRequestQuery**](InstallSecretsRequest_query.md) | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/InstallSecretsRequestQuery.md: -------------------------------------------------------------------------------- 1 | # InstallSecretsRequestQuery 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Type** | **string** | | [optional] 8 | **Ids** | **[]string** | | [optional] 9 | **Tags** | **[]string** | | [optional] 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | 13 | 14 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/IntegratedServiceDetails.md: -------------------------------------------------------------------------------- 1 | # IntegratedServiceDetails 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Output** | [**map[string]interface{}**](.md) | | [optional] 8 | **Spec** | [**map[string]interface{}**](.md) | | [optional] 9 | **Status** | **string** | | 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | 13 | 14 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/Labels.md: -------------------------------------------------------------------------------- 1 | # Labels 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **BackupType** | **string** | | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/ListEndpointsResponse.md: -------------------------------------------------------------------------------- 1 | # ListEndpointsResponse 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Endpoints** | [**[]EndpointItem**](EndpointItem.md) | | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/ListNodesResponse.md: -------------------------------------------------------------------------------- 1 | # ListNodesResponse 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Metadata** | [**ListNodesResponseMetadata**](ListNodesResponse_metadata.md) | | [optional] 8 | **Items** | [**[]NodeItem**](NodeItem.md) | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/ListNodesResponseMetadata.md: -------------------------------------------------------------------------------- 1 | # ListNodesResponseMetadata 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **SelfLink** | **string** | | [optional] 8 | **ResourceVersion** | **string** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/NamespaceItem.md: -------------------------------------------------------------------------------- 1 | # NamespaceItem 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Name** | **string** | | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/NamespaceListResponse.md: -------------------------------------------------------------------------------- 1 | # NamespaceListResponse 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Namespaces** | [**[]NamespaceItem**](NamespaceItem.md) | | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/NodeItem.md: -------------------------------------------------------------------------------- 1 | # NodeItem 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Metadata** | [**NodeItemMetadata**](NodeItem_metadata.md) | | [optional] 8 | **Spec** | [**NodeItemSpec**](NodeItem_spec.md) | | [optional] 9 | **Status** | [**NodeItemStatus**](NodeItem_status.md) | | [optional] 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | 13 | 14 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/NodeItemMetadata.md: -------------------------------------------------------------------------------- 1 | # NodeItemMetadata 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Name** | **string** | | [optional] 8 | **SelfLink** | **string** | | [optional] 9 | **Uid** | **string** | | [optional] 10 | **ResourceVersion** | **string** | | [optional] 11 | **CreationTimestamp** | **string** | | [optional] 12 | **Labels** | **map[string]string** | | [optional] 13 | **Annotations** | **map[string]string** | | [optional] 14 | 15 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 16 | 17 | 18 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/NodeItemSpec.md: -------------------------------------------------------------------------------- 1 | # NodeItemSpec 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **PodCIDR** | **string** | | [optional] 8 | **ExternalID** | **string** | | [optional] 9 | **ProviderID** | **string** | | [optional] 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | 13 | 14 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/NodeItemStatusAddresses.md: -------------------------------------------------------------------------------- 1 | # NodeItemStatusAddresses 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Type** | **string** | | [optional] 8 | **Address** | **string** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/NodeItemStatusAllocatable.md: -------------------------------------------------------------------------------- 1 | # NodeItemStatusAllocatable 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Cpu** | **string** | | [optional] 8 | **Memory** | **string** | | [optional] 9 | **Pods** | **string** | | [optional] 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | 13 | 14 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/NodeItemStatusCapacity.md: -------------------------------------------------------------------------------- 1 | # NodeItemStatusCapacity 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Cpu** | **string** | | [optional] 8 | **Memory** | **string** | | [optional] 9 | **Pods** | **string** | | [optional] 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | 13 | 14 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/NodeItemStatusConditions.md: -------------------------------------------------------------------------------- 1 | # NodeItemStatusConditions 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Type** | **string** | | [optional] 8 | **Status** | **string** | | [optional] 9 | **LastHeartbeatTime** | **string** | | [optional] 10 | **LastTransitionTime** | **string** | | [optional] 11 | **Reason** | **string** | | [optional] 12 | **Message** | **string** | | [optional] 13 | 14 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 15 | 16 | 17 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/NodeItemStatusDaemonEndpoints.md: -------------------------------------------------------------------------------- 1 | # NodeItemStatusDaemonEndpoints 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **KubeletEndpoint** | **map[string]interface{}** | | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/NodeItemStatusImages.md: -------------------------------------------------------------------------------- 1 | # NodeItemStatusImages 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Name** | **[]string** | | [optional] 8 | **SizeBytes** | **int64** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/NodePoolAutoScaling.md: -------------------------------------------------------------------------------- 1 | # NodePoolAutoScaling 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Enabled** | **bool** | Enable node pool autoscaling. | [optional] 8 | **MinSize** | **int32** | Minimum node pool size. | 9 | **MaxSize** | **int32** | Maximum node pool size. | 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | 13 | 14 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/NodePoolStatusAzure.md: -------------------------------------------------------------------------------- 1 | # NodePoolStatusAzure 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Autoscaling** | **bool** | | [optional] 8 | **Count** | **int32** | | [optional] 9 | **MinCount** | **int32** | | [optional] 10 | **MaxCount** | **int32** | | [optional] 11 | **InstanceType** | **string** | | [optional] 12 | **ResourceSummary** | [**map[string]ResourceSummary**](ResourceSummary.md) | | [optional] 13 | 14 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 15 | 16 | 17 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/NodePoolStatusGoogle.md: -------------------------------------------------------------------------------- 1 | # NodePoolStatusGoogle 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Autoscaling** | **bool** | | [optional] 8 | **Count** | **int32** | | [optional] 9 | **MinCount** | **int32** | | [optional] 10 | **MaxCount** | **int32** | | [optional] 11 | **InstanceType** | **string** | | [optional] 12 | **ResourceSummary** | [**map[string]ResourceSummary**](ResourceSummary.md) | | [optional] 13 | 14 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 15 | 16 | 17 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/NodePoolStatusInformation.md: -------------------------------------------------------------------------------- 1 | # NodePoolStatusInformation 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Status** | **string** | Current status of the node pool. | [optional] 8 | **StatusMessage** | **string** | Details and reasoning about the status value. | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/NodePoolStatusVSphere.md: -------------------------------------------------------------------------------- 1 | # NodePoolStatusVSphere 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Count** | **int32** | | [optional] 8 | **Ram** | **int32** | | [optional] 9 | **Vcpu** | **int32** | | [optional] 10 | **Template** | **string** | | [optional] 11 | **ResourceSummary** | [**map[string]ResourceSummary**](ResourceSummary.md) | | [optional] 12 | 13 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 14 | 15 | 16 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/NodePools.md: -------------------------------------------------------------------------------- 1 | # NodePools 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **NodePools** | [**map[string]NodePool**](NodePool.md) | | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/NodePoolsAzure.md: -------------------------------------------------------------------------------- 1 | # NodePoolsAzure 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Autoscaling** | **bool** | | [optional] 8 | **Count** | **int32** | | 9 | **MinCount** | **int32** | | [optional] 10 | **MaxCount** | **int32** | | [optional] 11 | **InstanceType** | **string** | | 12 | **Labels** | **map[string]string** | | [optional] 13 | 14 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 15 | 16 | 17 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/NodePoolsGoogle.md: -------------------------------------------------------------------------------- 1 | # NodePoolsGoogle 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Autoscaling** | **bool** | | [optional] 8 | **Preemptible** | **bool** | | [optional] 9 | **Count** | **int32** | | 10 | **MinCount** | **int32** | | [optional] 11 | **MaxCount** | **int32** | | [optional] 12 | **InstanceType** | **string** | | 13 | **Labels** | **map[string]string** | | [optional] 14 | 15 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 16 | 17 | 18 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/NodepoolLabels.md: -------------------------------------------------------------------------------- 1 | # NodepoolLabels 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Name** | **string** | | [optional] 8 | **Value** | **string** | | [optional] 9 | **Reserved** | **bool** | | [optional] 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | 13 | 14 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/OidcConfig.md: -------------------------------------------------------------------------------- 1 | # OidcConfig 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Enabled** | **bool** | | [optional] 8 | **IdpUrl** | **string** | | [optional] 9 | **ClientId** | **string** | | [optional] 10 | **ClientSecret** | **string** | | [optional] 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | 14 | 15 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/OrganizationListItemResponse.md: -------------------------------------------------------------------------------- 1 | # OrganizationListItemResponse 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Id** | **int32** | | [optional] 8 | **CreatedAt** | **string** | | [optional] 9 | **UpdatedAt** | **string** | | [optional] 10 | **Name** | **string** | | [optional] 11 | **NormalizedName** | **string** | | [optional] 12 | 13 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 14 | 15 | 16 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/PkeClusterHttpProxy.md: -------------------------------------------------------------------------------- 1 | # PkeClusterHttpProxy 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Http** | [**PkeClusterHttpProxyOptions**](PKEClusterHTTPProxyOptions.md) | | [optional] 8 | **Https** | [**PkeClusterHttpProxyOptions**](PKEClusterHTTPProxyOptions.md) | | [optional] 9 | **Exceptions** | **[]string** | | [optional] 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | 13 | 14 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/PkeClusterHttpProxyOptions.md: -------------------------------------------------------------------------------- 1 | # PkeClusterHttpProxyOptions 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Host** | **string** | host of the proxy | 8 | **Port** | **int32** | port the proxy is available on | [optional] 9 | **SecretId** | **string** | ID of the secret containing the username and password for the proxy | [optional] 10 | **Scheme** | **string** | Scheme of the proxy | [optional] 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | 14 | 15 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/PkeClusterReadinessResponse.md: -------------------------------------------------------------------------------- 1 | # PkeClusterReadinessResponse 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Master** | [**PkeClusterReadinessResponseMaster**](PKEClusterReadinessResponse_master.md) | | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/PkeClusterReadinessResponseMaster.md: -------------------------------------------------------------------------------- 1 | # PkeClusterReadinessResponseMaster 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Ready** | **bool** | true when the node has been reported to be ready | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/PkeHosts.md: -------------------------------------------------------------------------------- 1 | # PkeHosts 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Name** | **string** | | 8 | **PrivateIP** | **string** | | 9 | **Roles** | **[]string** | | 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | 13 | 14 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/PkeOnAzureClusterNetwork.md: -------------------------------------------------------------------------------- 1 | # PkeOnAzureClusterNetwork 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Name** | **string** | | [optional] 8 | **Cidr** | **string** | When referencing an already existing virtual network this field does not need to be specified. | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/PkeOnAzureNodePoolSubnet.md: -------------------------------------------------------------------------------- 1 | # PkeOnAzureNodePoolSubnet 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Name** | **string** | | [optional] 8 | **Cidr** | **string** | When referencing an already existing subnetwork this field does not need to be specified. | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/PodCondition.md: -------------------------------------------------------------------------------- 1 | # PodCondition 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Type** | **string** | | [optional] 8 | **Status** | **string** | | [optional] 9 | **LastProbeTime** | **string** | | [optional] 10 | **LastTransitionTime** | **string** | | [optional] 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | 14 | 15 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/PodItemLabels.md: -------------------------------------------------------------------------------- 1 | # PodItemLabels 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **App** | **string** | | [optional] 8 | **Chart** | **string** | | [optional] 9 | **Release** | **string** | | [optional] 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | 13 | 14 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/PostHooks.md: -------------------------------------------------------------------------------- 1 | # PostHooks 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **PostHookFunctionName** | [**map[string]interface{}**](.md) | | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/PostLeaderElectionRequest.md: -------------------------------------------------------------------------------- 1 | # PostLeaderElectionRequest 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Hostname** | **string** | | 8 | **Ip** | **string** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/PostLeaderElectionResponse.md: -------------------------------------------------------------------------------- 1 | # PostLeaderElectionResponse 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Hostname** | **string** | | 8 | **Ip** | **string** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/ProcessEvent.md: -------------------------------------------------------------------------------- 1 | # ProcessEvent 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Id** | **int32** | | [optional] 8 | **ProcessId** | **string** | | [optional] 9 | **Type** | **string** | | [optional] 10 | **Log** | **string** | | [optional] 11 | **Status** | [**ProcessStatus**](ProcessStatus.md) | | [optional] 12 | **Timestamp** | [**time.Time**](time.Time.md) | | [optional] 13 | 14 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 15 | 16 | 17 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/ProcessStatus.md: -------------------------------------------------------------------------------- 1 | # ProcessStatus 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | 11 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/ReleaseWhiteListItem.md: -------------------------------------------------------------------------------- 1 | # ReleaseWhiteListItem 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Name** | **string** | | 8 | **Owner** | **string** | | 9 | **Reason** | **string** | | [optional] 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | 13 | 14 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/ReportPkeNodeStatusResponse.md: -------------------------------------------------------------------------------- 1 | # ReportPkeNodeStatusResponse 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **ProcessId** | **string** | ID of the registered process | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/Resource.md: -------------------------------------------------------------------------------- 1 | # Resource 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Capacity** | **string** | | [optional] 8 | **Allocatable** | **string** | | [optional] 9 | **Limit** | **string** | | [optional] 10 | **Request** | **string** | | [optional] 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | 14 | 15 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/ResourceGroupCreated.md: -------------------------------------------------------------------------------- 1 | # ResourceGroupCreated 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Name** | **string** | | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/ResourceSummary.md: -------------------------------------------------------------------------------- 1 | # ResourceSummary 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Cpu** | [**Resource**](Resource.md) | | [optional] 8 | **Memory** | [**Resource**](Resource.md) | | [optional] 9 | **Status** | **string** | | [optional] 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | 13 | 14 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/RestoreResponse.md: -------------------------------------------------------------------------------- 1 | # RestoreResponse 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Id** | **int32** | | [optional] 8 | **Uid** | **string** | | [optional] 9 | **Name** | **string** | | [optional] 10 | **BackupName** | **string** | | [optional] 11 | **Options** | [**BackupOptions**](BackupOptions.md) | | [optional] 12 | **Status** | **string** | | [optional] 13 | **Warnings** | **int32** | | [optional] 14 | **Errors** | **int32** | | [optional] 15 | 16 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 17 | 18 | 19 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/RestoreResultErrors.md: -------------------------------------------------------------------------------- 1 | # RestoreResultErrors 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Ark** | **[]string** | | [optional] 8 | **Cluster** | **[]string** | | [optional] 9 | **Namespaces** | [**map[string][]string**](array.md) | | [optional] 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | 13 | 14 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/RestoreResultWarnings.md: -------------------------------------------------------------------------------- 1 | # RestoreResultWarnings 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Ark** | **[]string** | | [optional] 8 | **Cluster** | **[]string** | | [optional] 9 | **Namespaces** | [**map[string][]string**](array.md) | | [optional] 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | 13 | 14 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/RestoreResultsResponse.md: -------------------------------------------------------------------------------- 1 | # RestoreResultsResponse 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Errors** | [**RestoreResultErrors**](RestoreResultErrors.md) | | [optional] 8 | **Warnings** | [**RestoreResultWarnings**](RestoreResultWarnings.md) | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/RouteTableInfo.md: -------------------------------------------------------------------------------- 1 | # RouteTableInfo 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Id** | **string** | Identifier of the route table | 8 | **Name** | **string** | Name of the route table | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/ScanLogItem.md: -------------------------------------------------------------------------------- 1 | # ScanLogItem 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **ReleaseName** | **string** | | [optional] 8 | **Resource** | **string** | | [optional] 9 | **Image** | [**[]ScanLogItemImage**](ScanLogItemImage.md) | | [optional] 10 | **Result** | **[]string** | | [optional] 11 | **Action** | **string** | | [optional] 12 | 13 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 14 | 15 | 16 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/ScanLogItemImage.md: -------------------------------------------------------------------------------- 1 | # ScanLogItemImage 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **ImageName** | **string** | | [optional] 8 | **ImageTag** | **string** | | [optional] 9 | **ImageDigest** | **string** | | [optional] 10 | **LastUpdated** | **string** | | [optional] 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | 14 | 15 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/SecretItem.md: -------------------------------------------------------------------------------- 1 | # SecretItem 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Id** | **string** | | [optional] 8 | **Name** | **string** | | [optional] 9 | **Type** | **string** | | [optional] 10 | **UpdatedAt** | [**time.Time**](time.Time.md) | | [optional] 11 | **UpdatedBy** | **string** | | [optional] 12 | **Tags** | **[]string** | | [optional] 13 | **Values** | [**map[string]interface{}**](.md) | | [optional] 14 | 15 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 16 | 17 | 18 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/SecretKeyValueAmazon.md: -------------------------------------------------------------------------------- 1 | # SecretKeyValueAmazon 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **AWS_ACCESS_KEY_ID** | **string** | | 8 | **AWS_SECRET_ACCESS_KEY** | **string** | | 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/SecretKeyValueAzure.md: -------------------------------------------------------------------------------- 1 | # SecretKeyValueAzure 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **AZURE_CLIENT_ID** | **string** | | 8 | **AZURE_CLIENT_SECRET** | **string** | | 9 | **AZURE_TENANT_ID** | **string** | | 10 | **AZURE_SUBSCRIPTION_ID** | **string** | | 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | 14 | 15 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/SecretKeyValueGeneric.md: -------------------------------------------------------------------------------- 1 | # SecretKeyValueGeneric 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Any** | **string** | | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/SecretKeyValueKubernetes.md: -------------------------------------------------------------------------------- 1 | # SecretKeyValueKubernetes 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **K8Sconfig** | **string** | | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/SecretKeyValueTls.md: -------------------------------------------------------------------------------- 1 | # SecretKeyValueTls 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Hosts** | **string** | | 8 | **Validity** | **string** | | [optional] 9 | **CaCert** | **string** | | [optional] 10 | **CaKey** | **string** | | [optional] 11 | **ServerCert** | **string** | | [optional] 12 | **ServerKey** | **string** | | [optional] 13 | **ClientCert** | **string** | | [optional] 14 | **ClientKey** | **string** | | [optional] 15 | 16 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 17 | 18 | 19 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/SecretTypeResponse.md: -------------------------------------------------------------------------------- 1 | # SecretTypeResponse 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Fields** | [**[]SecretTypeResponseFields**](SecretTypeResponse_fields.md) | | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/SecretTypeResponseFields.md: -------------------------------------------------------------------------------- 1 | # SecretTypeResponseFields 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Name** | **string** | | [optional] 8 | **Required** | **bool** | | [optional] 9 | **IsSafeToDisplay** | **bool** | | [optional] 10 | **Description** | **string** | | [optional] 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | 14 | 15 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/SubnetInfo.md: -------------------------------------------------------------------------------- 1 | # SubnetInfo 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Cidrs** | **[]string** | The IPv4 CIDR blocks assigned to the subnet | 8 | **Id** | **string** | Identifier of the subnetwork | 9 | **Location** | **string** | The location of the subnetwork. | [optional] 10 | **Name** | **string** | Name of the subnetwork | [optional] 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | 14 | 15 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/TokenCreateRequest.md: -------------------------------------------------------------------------------- 1 | # TokenCreateRequest 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Name** | **string** | | [optional] 8 | **VirtualUser** | **string** | | [optional] 9 | **ExpiresAt** | Pointer to [**time.Time**](time.Time.md) | | [optional] 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | 13 | 14 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/TokenCreateResponse.md: -------------------------------------------------------------------------------- 1 | # TokenCreateResponse 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Id** | **string** | | 8 | **Token** | **string** | | 9 | **Name** | **string** | | 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | 13 | 14 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/TokenListResponseItem.md: -------------------------------------------------------------------------------- 1 | # TokenListResponseItem 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Id** | **string** | | 8 | **CreatedAt** | **string** | | 9 | **Name** | **string** | | 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | 13 | 14 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/UpdateAzureProperties.md: -------------------------------------------------------------------------------- 1 | # UpdateAzureProperties 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Azure** | [**UpdateAzurePropertiesAzure**](UpdateAzureProperties_azure.md) | | 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/UpdateAzurePropertiesAzure.md: -------------------------------------------------------------------------------- 1 | # UpdateAzurePropertiesAzure 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **NodePools** | [**map[string]UpdateNodePoolsAzure**](UpdateNodePoolsAzure.md) | | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/UpdateClusterRequest.md: -------------------------------------------------------------------------------- 1 | # UpdateClusterRequest 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Version** | **string** | | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/UpdateClusterRequestDeprecated.md: -------------------------------------------------------------------------------- 1 | # UpdateClusterRequestDeprecated 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Cloud** | **string** | | 8 | **Properties** | [**map[string]interface{}**](.md) | | 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/UpdateClusterRequestV2.md: -------------------------------------------------------------------------------- 1 | # UpdateClusterRequestV2 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Nodepools** | [**[]PkeOnVsphereNodePool**](PKEOnVsphereNodePool.md) | | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/UpdateEksProperties.md: -------------------------------------------------------------------------------- 1 | # UpdateEksProperties 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Eks** | [**UpdateEksPropertiesEks**](UpdateEksProperties_eks.md) | | 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/UpdateEksPropertiesEks.md: -------------------------------------------------------------------------------- 1 | # UpdateEksPropertiesEks 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **NodePools** | [**map[string]EksNodePool**](EKSNodePool.md) | | 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/UpdateGoogleProperties.md: -------------------------------------------------------------------------------- 1 | # UpdateGoogleProperties 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Master** | [**UpdateGooglePropertiesMaster**](UpdateGoogleProperties_master.md) | | [optional] 8 | **NodeVersion** | **string** | | [optional] 9 | **NodePools** | [**map[string]UpdateNodePoolsGoogle**](UpdateNodePoolsGoogle.md) | | [optional] 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | 13 | 14 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/UpdateGooglePropertiesMaster.md: -------------------------------------------------------------------------------- 1 | # UpdateGooglePropertiesMaster 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Version** | **string** | | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/UpdateIntegratedServiceRequest.md: -------------------------------------------------------------------------------- 1 | # UpdateIntegratedServiceRequest 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Spec** | [**map[string]interface{}**](.md) | | 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/UpdateNodePoolDrainOptions.md: -------------------------------------------------------------------------------- 1 | # UpdateNodePoolDrainOptions 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Timeout** | **int32** | How long should drain wait for pod eviction (in seconds) | [optional] [default to 0] 8 | **FailOnError** | **bool** | Whether the process should fail if draining fails/times out. | [optional] [default to false] 9 | **PodSelector** | **string** | Only evict those pods that matches this selector. | [optional] [default to ] 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | 13 | 14 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/UpdateNodePoolResponse.md: -------------------------------------------------------------------------------- 1 | # UpdateNodePoolResponse 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **ProcessId** | **string** | Node pool update process ID. | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/UpdateNodePoolsAzure.md: -------------------------------------------------------------------------------- 1 | # UpdateNodePoolsAzure 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Autoscaling** | **bool** | | [optional] 8 | **Count** | **int32** | | 9 | **MinCount** | **int32** | | [optional] 10 | **MaxCount** | **int32** | | [optional] 11 | **InstanceType** | **string** | | [optional] 12 | **Labels** | **map[string]string** | | [optional] 13 | **VnetSubnetID** | **string** | | [optional] 14 | 15 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 16 | 17 | 18 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/UpdateNodePoolsGoogle.md: -------------------------------------------------------------------------------- 1 | # UpdateNodePoolsGoogle 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Autoscaling** | **bool** | | [optional] 8 | **Count** | **int32** | | 9 | **MinCount** | **int32** | | [optional] 10 | **MaxCount** | **int32** | | [optional] 11 | **InstanceType** | **string** | | [optional] 12 | 13 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 14 | 15 | 16 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/UpdatePkeOnAzureClusterRequest.md: -------------------------------------------------------------------------------- 1 | # UpdatePkeOnAzureClusterRequest 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Nodepools** | [**[]PkeOnAzureNodePool**](PKEOnAzureNodePool.md) | | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/UpdatePkeOnVsphereClusterRequest.md: -------------------------------------------------------------------------------- 1 | # UpdatePkeOnVsphereClusterRequest 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Nodepools** | [**[]PkeOnVsphereNodePool**](PKEOnVsphereNodePool.md) | | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/UpdatePkeProperties.md: -------------------------------------------------------------------------------- 1 | # UpdatePkeProperties 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Pke** | [**UpdatePkePropertiesPke**](UpdatePKEProperties_pke.md) | | 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/UpdatePkePropertiesPke.md: -------------------------------------------------------------------------------- 1 | # UpdatePkePropertiesPke 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **NodePools** | [**map[string]UpdateNodePoolsPke**](UpdateNodePoolsPKE.md) | | 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/UrlItem.md: -------------------------------------------------------------------------------- 1 | # UrlItem 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Servicename** | **string** | | [optional] 8 | **Url** | **string** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/User.md: -------------------------------------------------------------------------------- 1 | # User 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Id** | **int32** | | [optional] 8 | **CreatedAt** | **string** | | [optional] 9 | **UpdatedAt** | **string** | | [optional] 10 | **Name** | **string** | | [optional] 11 | **Email** | **string** | | [optional] 12 | **Login** | **string** | | [optional] 13 | **Image** | **string** | | [optional] 14 | **Organizations** | [**map[string]interface{}**](.md) | | [optional] 15 | 16 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 17 | 18 | 19 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/VersionResponse.md: -------------------------------------------------------------------------------- 1 | # VersionResponse 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Version** | **string** | | [optional] 8 | **CommitHash** | **string** | | [optional] 9 | **BuildDate** | **string** | | [optional] 10 | **GoVersion** | **string** | | [optional] 11 | **Os** | **string** | | [optional] 12 | **Arch** | **string** | | [optional] 13 | **Compiler** | **string** | | [optional] 14 | **InstanceUuid** | **string** | | [optional] 15 | 16 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 17 | 18 | 19 | -------------------------------------------------------------------------------- /.gen/pipeline/docs/VpcNetworkInfo.md: -------------------------------------------------------------------------------- 1 | # VpcNetworkInfo 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Cidrs** | **[]string** | The IPv4 CIDR blocks assigned to the VPC network | 8 | **Id** | **string** | Identifier of the VPC network | 9 | **Name** | **string** | Name of the VPC network | [optional] 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | 13 | 14 | -------------------------------------------------------------------------------- /.gen/pipeline/model_activate_integrated_service_request.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // ActivateIntegratedServiceRequest struct for ActivateIntegratedServiceRequest 14 | type ActivateIntegratedServiceRequest struct { 15 | Spec map[string]interface{} `json:"spec"` 16 | } 17 | -------------------------------------------------------------------------------- /.gen/pipeline/model_amazon_auto_scaling_group_size.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // AmazonAutoScalingGroupSize struct for AmazonAutoScalingGroupSize 14 | type AmazonAutoScalingGroupSize struct { 15 | Min int32 `json:"min"` 16 | Max int32 `json:"max"` 17 | } 18 | -------------------------------------------------------------------------------- /.gen/pipeline/model_amazon_provider_config.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // AmazonProviderConfig struct for AmazonProviderConfig 14 | type AmazonProviderConfig struct { 15 | AutoScalingGroup AmazonAutoScalingGroup `json:"autoScalingGroup"` 16 | } 17 | -------------------------------------------------------------------------------- /.gen/pipeline/model_api_create_request.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // ApiCreateRequest struct for ApiCreateRequest 14 | type ApiCreateRequest struct { 15 | Members []int32 `json:"members,omitempty"` 16 | Name string `json:"name,omitempty"` 17 | } 18 | -------------------------------------------------------------------------------- /.gen/pipeline/model_api_create_response.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // ApiCreateResponse struct for ApiCreateResponse 14 | type ApiCreateResponse struct { 15 | Id int32 `json:"id,omitempty"` 16 | Name string `json:"name,omitempty"` 17 | } 18 | -------------------------------------------------------------------------------- /.gen/pipeline/model_api_update_request.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // ApiUpdateRequest struct for ApiUpdateRequest 14 | type ApiUpdateRequest struct { 15 | Members []int32 `json:"members,omitempty"` 16 | Name string `json:"name,omitempty"` 17 | } 18 | -------------------------------------------------------------------------------- /.gen/pipeline/model_api_update_response.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // ApiUpdateResponse struct for ApiUpdateResponse 14 | type ApiUpdateResponse struct { 15 | Id int32 `json:"id,omitempty"` 16 | Name string `json:"name,omitempty"` 17 | } 18 | -------------------------------------------------------------------------------- /.gen/pipeline/model_azure_blob_storage_props.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // AzureBlobStorageProps struct for AzureBlobStorageProps 14 | type AzureBlobStorageProps struct { 15 | ResourceGroup string `json:"resourceGroup"` 16 | StorageAccount string `json:"storageAccount"` 17 | } 18 | -------------------------------------------------------------------------------- /.gen/pipeline/model_backup_service_response.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // BackupServiceResponse struct for BackupServiceResponse 14 | type BackupServiceResponse struct { 15 | Enabled bool `json:"enabled,omitempty"` 16 | } 17 | -------------------------------------------------------------------------------- /.gen/pipeline/model_base_post_hook.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // BasePostHook struct for BasePostHook 14 | type BasePostHook struct { 15 | PostHookFunctionName map[string]interface{} `json:"PostHookFunctionName,omitempty"` 16 | } 17 | -------------------------------------------------------------------------------- /.gen/pipeline/model_cluster_config.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // ClusterConfig struct for ClusterConfig 14 | type ClusterConfig struct { 15 | Status int32 `json:"status,omitempty"` 16 | Data string `json:"data,omitempty"` 17 | } 18 | -------------------------------------------------------------------------------- /.gen/pipeline/model_cluster_image.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // ClusterImage struct for ClusterImage 14 | type ClusterImage struct { 15 | ImageName string `json:"imageName,omitempty"` 16 | ImageTag string `json:"imageTag,omitempty"` 17 | ImageDigest string `json:"imageDigest,omitempty"` 18 | } 19 | -------------------------------------------------------------------------------- /.gen/pipeline/model_create_aks_properties.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // CreateAksProperties struct for CreateAksProperties 14 | type CreateAksProperties struct { 15 | Aks CreateAksPropertiesAks `json:"aks"` 16 | } 17 | -------------------------------------------------------------------------------- /.gen/pipeline/model_create_amazon_object_store_bucket_properties.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // CreateAmazonObjectStoreBucketProperties struct for CreateAmazonObjectStoreBucketProperties 14 | type CreateAmazonObjectStoreBucketProperties struct { 15 | Location string `json:"location"` 16 | } 17 | -------------------------------------------------------------------------------- /.gen/pipeline/model_create_backup_request.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // CreateBackupRequest struct for CreateBackupRequest 14 | type CreateBackupRequest struct { 15 | Name string `json:"name"` 16 | Ttl string `json:"ttl"` 17 | Labels Labels `json:"labels,omitempty"` 18 | Options BackupOptions `json:"options,omitempty"` 19 | } 20 | -------------------------------------------------------------------------------- /.gen/pipeline/model_create_backup_response.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // CreateBackupResponse struct for CreateBackupResponse 14 | type CreateBackupResponse struct { 15 | Id int32 `json:"id,omitempty"` 16 | Status int32 `json:"status,omitempty"` 17 | } 18 | -------------------------------------------------------------------------------- /.gen/pipeline/model_create_cluster_response_202.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // CreateClusterResponse202 struct for CreateClusterResponse202 14 | type CreateClusterResponse202 struct { 15 | Name string `json:"name,omitempty"` 16 | Id int32 `json:"id,omitempty"` 17 | } 18 | -------------------------------------------------------------------------------- /.gen/pipeline/model_create_eks_properties.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // CreateEksProperties struct for CreateEksProperties 14 | type CreateEksProperties struct { 15 | Eks CreateEksPropertiesEks `json:"eks"` 16 | } 17 | -------------------------------------------------------------------------------- /.gen/pipeline/model_create_gke_properties.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // CreateGkeProperties struct for CreateGkeProperties 14 | type CreateGkeProperties struct { 15 | Gke CreateGkePropertiesGke `json:"gke"` 16 | } 17 | -------------------------------------------------------------------------------- /.gen/pipeline/model_create_gke_properties_gke_master.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // CreateGkePropertiesGkeMaster struct for CreateGkePropertiesGkeMaster 14 | type CreateGkePropertiesGkeMaster struct { 15 | Version string `json:"version,omitempty"` 16 | } 17 | -------------------------------------------------------------------------------- /.gen/pipeline/model_create_google_object_store_bucket_properties.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // CreateGoogleObjectStoreBucketProperties struct for CreateGoogleObjectStoreBucketProperties 14 | type CreateGoogleObjectStoreBucketProperties struct { 15 | Location string `json:"location"` 16 | } 17 | -------------------------------------------------------------------------------- /.gen/pipeline/model_create_object_store_bucket_response.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // CreateObjectStoreBucketResponse struct for CreateObjectStoreBucketResponse 14 | type CreateObjectStoreBucketResponse struct { 15 | Name string `json:"name"` 16 | Cloud string `json:"cloud"` 17 | } 18 | -------------------------------------------------------------------------------- /.gen/pipeline/model_create_pke_cluster_kubernetes_cri.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // CreatePkeClusterKubernetesCri struct for CreatePkeClusterKubernetesCri 14 | type CreatePkeClusterKubernetesCri struct { 15 | Runtime string `json:"runtime,omitempty"` 16 | RuntimeConfig map[string]interface{} `json:"runtimeConfig,omitempty"` 17 | } 18 | -------------------------------------------------------------------------------- /.gen/pipeline/model_create_pke_cluster_kubernetes_oidc.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // CreatePkeClusterKubernetesOidc struct for CreatePkeClusterKubernetesOidc 14 | type CreatePkeClusterKubernetesOidc struct { 15 | Enabled bool `json:"enabled,omitempty"` 16 | } 17 | -------------------------------------------------------------------------------- /.gen/pipeline/model_create_pke_properties_cri.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // CreatePkePropertiesCri struct for CreatePkePropertiesCri 14 | type CreatePkePropertiesCri struct { 15 | Runtime string `json:"runtime"` 16 | } 17 | -------------------------------------------------------------------------------- /.gen/pipeline/model_create_pke_properties_kubernetes.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // CreatePkePropertiesKubernetes struct for CreatePkePropertiesKubernetes 14 | type CreatePkePropertiesKubernetes struct { 15 | Version string `json:"version"` 16 | Rbac CreatePkePropertiesKubernetesRbac `json:"rbac"` 17 | } 18 | -------------------------------------------------------------------------------- /.gen/pipeline/model_create_pke_properties_kubernetes_rbac.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // CreatePkePropertiesKubernetesRbac struct for CreatePkePropertiesKubernetesRbac 14 | type CreatePkePropertiesKubernetesRbac struct { 15 | Enabled bool `json:"enabled"` 16 | } 17 | -------------------------------------------------------------------------------- /.gen/pipeline/model_create_resource_group.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // CreateResourceGroup struct for CreateResourceGroup 14 | type CreateResourceGroup struct { 15 | Name string `json:"name"` 16 | Location string `json:"location"` 17 | SecretId string `json:"secretId"` 18 | } 19 | -------------------------------------------------------------------------------- /.gen/pipeline/model_create_restore_request.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // CreateRestoreRequest struct for CreateRestoreRequest 14 | type CreateRestoreRequest struct { 15 | BackupName string `json:"backupName"` 16 | Options BackupOptions `json:"options,omitempty"` 17 | } 18 | -------------------------------------------------------------------------------- /.gen/pipeline/model_create_restore_response.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // CreateRestoreResponse struct for CreateRestoreResponse 14 | type CreateRestoreResponse struct { 15 | Restore RestoreResponse `json:"restore,omitempty"` 16 | Status int32 `json:"status,omitempty"` 17 | } 18 | -------------------------------------------------------------------------------- /.gen/pipeline/model_create_schedule_response.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // CreateScheduleResponse struct for CreateScheduleResponse 14 | type CreateScheduleResponse struct { 15 | Name string `json:"name,omitempty"` 16 | Status int32 `json:"status,omitempty"` 17 | } 18 | -------------------------------------------------------------------------------- /.gen/pipeline/model_create_secret_request.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // CreateSecretRequest struct for CreateSecretRequest 14 | type CreateSecretRequest struct { 15 | Name string `json:"name"` 16 | Type string `json:"type"` 17 | Tags []string `json:"tags,omitempty"` 18 | Values map[string]interface{} `json:"values"` 19 | } 20 | -------------------------------------------------------------------------------- /.gen/pipeline/model_delete_backup_bucket_response.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // DeleteBackupBucketResponse struct for DeleteBackupBucketResponse 14 | type DeleteBackupBucketResponse struct { 15 | Id int32 `json:"id,omitempty"` 16 | Status int32 `json:"status,omitempty"` 17 | } 18 | -------------------------------------------------------------------------------- /.gen/pipeline/model_delete_backup_response.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // DeleteBackupResponse struct for DeleteBackupResponse 14 | type DeleteBackupResponse struct { 15 | Id int32 `json:"id,omitempty"` 16 | Status int32 `json:"status,omitempty"` 17 | } 18 | -------------------------------------------------------------------------------- /.gen/pipeline/model_delete_deployment_response.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // DeleteDeploymentResponse struct for DeleteDeploymentResponse 14 | type DeleteDeploymentResponse struct { 15 | Status int32 `json:"status,omitempty"` 16 | Message string `json:"message,omitempty"` 17 | Name string `json:"name,omitempty"` 18 | } 19 | -------------------------------------------------------------------------------- /.gen/pipeline/model_delete_restore_response.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // DeleteRestoreResponse struct for DeleteRestoreResponse 14 | type DeleteRestoreResponse struct { 15 | Id int32 `json:"id,omitempty"` 16 | Status int32 `json:"status,omitempty"` 17 | } 18 | -------------------------------------------------------------------------------- /.gen/pipeline/model_delete_schedule_response.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // DeleteScheduleResponse struct for DeleteScheduleResponse 14 | type DeleteScheduleResponse struct { 15 | Name string `json:"name,omitempty"` 16 | Status int32 `json:"status,omitempty"` 17 | } 18 | -------------------------------------------------------------------------------- /.gen/pipeline/model_disable_ark_response.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // DisableArkResponse struct for DisableArkResponse 14 | type DisableArkResponse struct { 15 | Status int32 `json:"status,omitempty"` 16 | } 17 | -------------------------------------------------------------------------------- /.gen/pipeline/model_eks_auth_config.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // EksAuthConfig struct for EksAuthConfig 14 | type EksAuthConfig struct { 15 | MapRoles []EksAuthConfigRoles `json:"mapRoles,omitempty"` 16 | MapUsers []EksAuthConfigUsers `json:"mapUsers,omitempty"` 17 | MapAccounts []string `json:"mapAccounts,omitempty"` 18 | } 19 | -------------------------------------------------------------------------------- /.gen/pipeline/model_eks_auth_config_roles.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // EksAuthConfigRoles struct for EksAuthConfigRoles 14 | type EksAuthConfigRoles struct { 15 | Groups []string `json:"groups,omitempty"` 16 | Username string `json:"username,omitempty"` 17 | Rolearn string `json:"rolearn,omitempty"` 18 | } 19 | -------------------------------------------------------------------------------- /.gen/pipeline/model_eks_auth_config_users.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // EksAuthConfigUsers struct for EksAuthConfigUsers 14 | type EksAuthConfigUsers struct { 15 | Groups []string `json:"groups,omitempty"` 16 | Username string `json:"username,omitempty"` 17 | Userarn string `json:"userarn,omitempty"` 18 | } 19 | -------------------------------------------------------------------------------- /.gen/pipeline/model_eks_update_cluster_request.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // EksUpdateClusterRequest struct for EksUpdateClusterRequest 14 | type EksUpdateClusterRequest struct { 15 | Version string `json:"version,omitempty"` 16 | } 17 | -------------------------------------------------------------------------------- /.gen/pipeline/model_enable_ark_response.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // EnableArkResponse struct for EnableArkResponse 14 | type EnableArkResponse struct { 15 | Status int32 `json:"status,omitempty"` 16 | } 17 | -------------------------------------------------------------------------------- /.gen/pipeline/model_endpoint_item.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // EndpointItem struct for EndpointItem 14 | type EndpointItem struct { 15 | Name string `json:"name,omitempty"` 16 | Host string `json:"host,omitempty"` 17 | Urls []UrlItem `json:"urls,omitempty"` 18 | } 19 | -------------------------------------------------------------------------------- /.gen/pipeline/model_get_leader_election_response.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // GetLeaderElectionResponse struct for GetLeaderElectionResponse 14 | type GetLeaderElectionResponse struct { 15 | Hostname string `json:"hostname"` 16 | Ip string `json:"ip,omitempty"` 17 | } 18 | -------------------------------------------------------------------------------- /.gen/pipeline/model_get_pke_commands_response.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // GetPkeCommandsResponse struct for GetPkeCommandsResponse 14 | type GetPkeCommandsResponse struct { 15 | AdditionalProperties string `json:"additionalProperties,omitempty"` 16 | } 17 | -------------------------------------------------------------------------------- /.gen/pipeline/model_google_projects.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // GoogleProjects List of Google Cloud projects. 14 | type GoogleProjects struct { 15 | Projects []GoogleProject `json:"projects,omitempty"` 16 | } 17 | -------------------------------------------------------------------------------- /.gen/pipeline/model_helm_chart_details_response_chart_maintainers.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // HelmChartDetailsResponseChartMaintainers struct for HelmChartDetailsResponseChartMaintainers 14 | type HelmChartDetailsResponseChartMaintainers struct { 15 | Name string `json:"name,omitempty"` 16 | Email string `json:"email,omitempty"` 17 | } 18 | -------------------------------------------------------------------------------- /.gen/pipeline/model_helm_repos_delete_response.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // HelmReposDeleteResponse struct for HelmReposDeleteResponse 14 | type HelmReposDeleteResponse struct { 15 | Status int32 `json:"status,omitempty"` 16 | Message string `json:"message,omitempty"` 17 | Name string `json:"name,omitempty"` 18 | } 19 | -------------------------------------------------------------------------------- /.gen/pipeline/model_helm_repos_update_response.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // HelmReposUpdateResponse struct for HelmReposUpdateResponse 14 | type HelmReposUpdateResponse struct { 15 | Status int32 `json:"status,omitempty"` 16 | Message string `json:"message,omitempty"` 17 | Name string `json:"name,omitempty"` 18 | } 19 | -------------------------------------------------------------------------------- /.gen/pipeline/model_install_secret_response.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // InstallSecretResponse struct for InstallSecretResponse 14 | type InstallSecretResponse struct { 15 | Name string `json:"name"` 16 | } 17 | -------------------------------------------------------------------------------- /.gen/pipeline/model_install_secrets_request.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // InstallSecretsRequest struct for InstallSecretsRequest 14 | type InstallSecretsRequest struct { 15 | Namespace string `json:"namespace"` 16 | Query InstallSecretsRequestQuery `json:"query,omitempty"` 17 | } 18 | -------------------------------------------------------------------------------- /.gen/pipeline/model_install_secrets_request_query.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // InstallSecretsRequestQuery struct for InstallSecretsRequestQuery 14 | type InstallSecretsRequestQuery struct { 15 | Type string `json:"type,omitempty"` 16 | Ids []string `json:"ids,omitempty"` 17 | Tags []string `json:"tags,omitempty"` 18 | } 19 | -------------------------------------------------------------------------------- /.gen/pipeline/model_labels.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // Labels struct for Labels 14 | type Labels struct { 15 | BackupType string `json:"backup-type,omitempty"` 16 | } 17 | -------------------------------------------------------------------------------- /.gen/pipeline/model_list_endpoints_response.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // ListEndpointsResponse struct for ListEndpointsResponse 14 | type ListEndpointsResponse struct { 15 | Endpoints []EndpointItem `json:"endpoints,omitempty"` 16 | } 17 | -------------------------------------------------------------------------------- /.gen/pipeline/model_list_nodes_response.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // ListNodesResponse struct for ListNodesResponse 14 | type ListNodesResponse struct { 15 | Metadata ListNodesResponseMetadata `json:"metadata,omitempty"` 16 | Items []NodeItem `json:"items,omitempty"` 17 | } 18 | -------------------------------------------------------------------------------- /.gen/pipeline/model_list_nodes_response_metadata.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // ListNodesResponseMetadata struct for ListNodesResponseMetadata 14 | type ListNodesResponseMetadata struct { 15 | SelfLink string `json:"selfLink,omitempty"` 16 | ResourceVersion string `json:"resourceVersion,omitempty"` 17 | } 18 | -------------------------------------------------------------------------------- /.gen/pipeline/model_namespace_item.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // NamespaceItem struct for NamespaceItem 14 | type NamespaceItem struct { 15 | Name string `json:"name,omitempty"` 16 | } 17 | -------------------------------------------------------------------------------- /.gen/pipeline/model_namespace_list_response.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // NamespaceListResponse struct for NamespaceListResponse 14 | type NamespaceListResponse struct { 15 | Namespaces []NamespaceItem `json:"namespaces,omitempty"` 16 | } 17 | -------------------------------------------------------------------------------- /.gen/pipeline/model_node_item.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // NodeItem struct for NodeItem 14 | type NodeItem struct { 15 | Metadata NodeItemMetadata `json:"metadata,omitempty"` 16 | Spec NodeItemSpec `json:"spec,omitempty"` 17 | Status NodeItemStatus `json:"status,omitempty"` 18 | } 19 | -------------------------------------------------------------------------------- /.gen/pipeline/model_node_item_spec.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // NodeItemSpec struct for NodeItemSpec 14 | type NodeItemSpec struct { 15 | PodCIDR string `json:"podCIDR,omitempty"` 16 | ExternalID string `json:"externalID,omitempty"` 17 | ProviderID string `json:"providerID,omitempty"` 18 | } 19 | -------------------------------------------------------------------------------- /.gen/pipeline/model_node_item_status_addresses.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // NodeItemStatusAddresses struct for NodeItemStatusAddresses 14 | type NodeItemStatusAddresses struct { 15 | Type string `json:"type,omitempty"` 16 | Address string `json:"address,omitempty"` 17 | } 18 | -------------------------------------------------------------------------------- /.gen/pipeline/model_node_item_status_allocatable.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // NodeItemStatusAllocatable struct for NodeItemStatusAllocatable 14 | type NodeItemStatusAllocatable struct { 15 | Cpu string `json:"cpu,omitempty"` 16 | Memory string `json:"memory,omitempty"` 17 | Pods string `json:"pods,omitempty"` 18 | } 19 | -------------------------------------------------------------------------------- /.gen/pipeline/model_node_item_status_capacity.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // NodeItemStatusCapacity struct for NodeItemStatusCapacity 14 | type NodeItemStatusCapacity struct { 15 | Cpu string `json:"cpu,omitempty"` 16 | Memory string `json:"memory,omitempty"` 17 | Pods string `json:"pods,omitempty"` 18 | } 19 | -------------------------------------------------------------------------------- /.gen/pipeline/model_node_item_status_daemon_endpoints.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // NodeItemStatusDaemonEndpoints struct for NodeItemStatusDaemonEndpoints 14 | type NodeItemStatusDaemonEndpoints struct { 15 | KubeletEndpoint map[string]interface{} `json:"kubeletEndpoint,omitempty"` 16 | } 17 | -------------------------------------------------------------------------------- /.gen/pipeline/model_node_item_status_images.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // NodeItemStatusImages struct for NodeItemStatusImages 14 | type NodeItemStatusImages struct { 15 | Name []string `json:"name,omitempty"` 16 | SizeBytes int64 `json:"sizeBytes,omitempty"` 17 | } 18 | -------------------------------------------------------------------------------- /.gen/pipeline/model_node_pools.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // NodePools An associative collection of node pool objects keyed by their name. 14 | type NodePools struct { 15 | NodePools map[string]NodePool `json:"nodePools,omitempty"` 16 | } 17 | -------------------------------------------------------------------------------- /.gen/pipeline/model_nodepool_labels.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // NodepoolLabels struct for NodepoolLabels 14 | type NodepoolLabels struct { 15 | Name string `json:"name,omitempty"` 16 | Value string `json:"value,omitempty"` 17 | Reserved bool `json:"reserved,omitempty"` 18 | } 19 | -------------------------------------------------------------------------------- /.gen/pipeline/model_oidc_config.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // OidcConfig struct for OidcConfig 14 | type OidcConfig struct { 15 | Enabled bool `json:"enabled,omitempty"` 16 | IdpUrl string `json:"idpUrl,omitempty"` 17 | ClientId string `json:"clientId,omitempty"` 18 | ClientSecret string `json:"clientSecret,omitempty"` 19 | } 20 | -------------------------------------------------------------------------------- /.gen/pipeline/model_pke_cluster_readiness_response.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // PkeClusterReadinessResponse struct for PkeClusterReadinessResponse 14 | type PkeClusterReadinessResponse struct { 15 | Master PkeClusterReadinessResponseMaster `json:"master,omitempty"` 16 | } 17 | -------------------------------------------------------------------------------- /.gen/pipeline/model_pke_cluster_readiness_response_master.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // PkeClusterReadinessResponseMaster struct for PkeClusterReadinessResponseMaster 14 | type PkeClusterReadinessResponseMaster struct { 15 | // true when the node has been reported to be ready 16 | Ready bool `json:"ready,omitempty"` 17 | } 18 | -------------------------------------------------------------------------------- /.gen/pipeline/model_pke_hosts.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // PkeHosts struct for PkeHosts 14 | type PkeHosts struct { 15 | Name string `json:"name"` 16 | PrivateIP string `json:"privateIP"` 17 | Roles []string `json:"roles"` 18 | } 19 | -------------------------------------------------------------------------------- /.gen/pipeline/model_pod_item_labels.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // PodItemLabels struct for PodItemLabels 14 | type PodItemLabels struct { 15 | App string `json:"app,omitempty"` 16 | Chart string `json:"chart,omitempty"` 17 | Release string `json:"release,omitempty"` 18 | } 19 | -------------------------------------------------------------------------------- /.gen/pipeline/model_post_hooks.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // PostHooks struct for PostHooks 14 | type PostHooks struct { 15 | PostHookFunctionName map[string]interface{} `json:"PostHookFunctionName,omitempty"` 16 | } 17 | -------------------------------------------------------------------------------- /.gen/pipeline/model_post_leader_election_request.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // PostLeaderElectionRequest struct for PostLeaderElectionRequest 14 | type PostLeaderElectionRequest struct { 15 | Hostname string `json:"hostname"` 16 | Ip string `json:"ip,omitempty"` 17 | } 18 | -------------------------------------------------------------------------------- /.gen/pipeline/model_post_leader_election_response.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // PostLeaderElectionResponse struct for PostLeaderElectionResponse 14 | type PostLeaderElectionResponse struct { 15 | Hostname string `json:"hostname"` 16 | Ip string `json:"ip,omitempty"` 17 | } 18 | -------------------------------------------------------------------------------- /.gen/pipeline/model_release_white_list_item.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // ReleaseWhiteListItem struct for ReleaseWhiteListItem 14 | type ReleaseWhiteListItem struct { 15 | Name string `json:"name"` 16 | Owner string `json:"owner"` 17 | Reason string `json:"reason,omitempty"` 18 | } 19 | -------------------------------------------------------------------------------- /.gen/pipeline/model_report_pke_node_status_response.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // ReportPkeNodeStatusResponse struct for ReportPkeNodeStatusResponse 14 | type ReportPkeNodeStatusResponse struct { 15 | // ID of the registered process 16 | ProcessId string `json:"processId,omitempty"` 17 | } 18 | -------------------------------------------------------------------------------- /.gen/pipeline/model_resource.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // Resource struct for Resource 14 | type Resource struct { 15 | Capacity string `json:"capacity,omitempty"` 16 | Allocatable string `json:"allocatable,omitempty"` 17 | Limit string `json:"limit,omitempty"` 18 | Request string `json:"request,omitempty"` 19 | } 20 | -------------------------------------------------------------------------------- /.gen/pipeline/model_resource_group_created.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // ResourceGroupCreated struct for ResourceGroupCreated 14 | type ResourceGroupCreated struct { 15 | Name string `json:"name,omitempty"` 16 | } 17 | -------------------------------------------------------------------------------- /.gen/pipeline/model_resource_summary.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // ResourceSummary struct for ResourceSummary 14 | type ResourceSummary struct { 15 | Cpu Resource `json:"cpu,omitempty"` 16 | Memory Resource `json:"memory,omitempty"` 17 | Status string `json:"status,omitempty"` 18 | } 19 | -------------------------------------------------------------------------------- /.gen/pipeline/model_restore_result_errors.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // RestoreResultErrors struct for RestoreResultErrors 14 | type RestoreResultErrors struct { 15 | Ark []string `json:"ark,omitempty"` 16 | Cluster []string `json:"cluster,omitempty"` 17 | Namespaces map[string][]string `json:"namespaces,omitempty"` 18 | } 19 | -------------------------------------------------------------------------------- /.gen/pipeline/model_restore_result_warnings.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // RestoreResultWarnings struct for RestoreResultWarnings 14 | type RestoreResultWarnings struct { 15 | Ark []string `json:"ark,omitempty"` 16 | Cluster []string `json:"cluster,omitempty"` 17 | Namespaces map[string][]string `json:"namespaces,omitempty"` 18 | } 19 | -------------------------------------------------------------------------------- /.gen/pipeline/model_restore_results_response.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // RestoreResultsResponse struct for RestoreResultsResponse 14 | type RestoreResultsResponse struct { 15 | Errors RestoreResultErrors `json:"errors,omitempty"` 16 | Warnings RestoreResultWarnings `json:"warnings,omitempty"` 17 | } 18 | -------------------------------------------------------------------------------- /.gen/pipeline/model_route_table_info.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // RouteTableInfo struct for RouteTableInfo 14 | type RouteTableInfo struct { 15 | // Identifier of the route table 16 | Id string `json:"id"` 17 | // Name of the route table 18 | Name string `json:"name,omitempty"` 19 | } 20 | -------------------------------------------------------------------------------- /.gen/pipeline/model_secret_key_value_amazon.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // SecretKeyValueAmazon struct for SecretKeyValueAmazon 14 | type SecretKeyValueAmazon struct { 15 | AWS_ACCESS_KEY_ID string `json:"AWS_ACCESS_KEY_ID"` 16 | AWS_SECRET_ACCESS_KEY string `json:"AWS_SECRET_ACCESS_KEY"` 17 | } 18 | -------------------------------------------------------------------------------- /.gen/pipeline/model_secret_key_value_generic.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // SecretKeyValueGeneric struct for SecretKeyValueGeneric 14 | type SecretKeyValueGeneric struct { 15 | Any string `json:"any,omitempty"` 16 | } 17 | -------------------------------------------------------------------------------- /.gen/pipeline/model_secret_key_value_kubernetes.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // SecretKeyValueKubernetes struct for SecretKeyValueKubernetes 14 | type SecretKeyValueKubernetes struct { 15 | K8Sconfig string `json:"K8Sconfig,omitempty"` 16 | } 17 | -------------------------------------------------------------------------------- /.gen/pipeline/model_secret_type_response.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // SecretTypeResponse struct for SecretTypeResponse 14 | type SecretTypeResponse struct { 15 | Fields []SecretTypeResponseFields `json:"fields,omitempty"` 16 | } 17 | -------------------------------------------------------------------------------- /.gen/pipeline/model_token_create_response.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // TokenCreateResponse struct for TokenCreateResponse 14 | type TokenCreateResponse struct { 15 | Id string `json:"id"` 16 | Token string `json:"token"` 17 | Name string `json:"name"` 18 | } 19 | -------------------------------------------------------------------------------- /.gen/pipeline/model_token_list_response_item.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // TokenListResponseItem struct for TokenListResponseItem 14 | type TokenListResponseItem struct { 15 | Id string `json:"id"` 16 | CreatedAt string `json:"createdAt"` 17 | Name string `json:"name"` 18 | } 19 | -------------------------------------------------------------------------------- /.gen/pipeline/model_update_azure_properties.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // UpdateAzureProperties struct for UpdateAzureProperties 14 | type UpdateAzureProperties struct { 15 | Azure UpdateAzurePropertiesAzure `json:"azure"` 16 | } 17 | -------------------------------------------------------------------------------- /.gen/pipeline/model_update_azure_properties_azure.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // UpdateAzurePropertiesAzure struct for UpdateAzurePropertiesAzure 14 | type UpdateAzurePropertiesAzure struct { 15 | NodePools map[string]UpdateNodePoolsAzure `json:"nodePools,omitempty"` 16 | } 17 | -------------------------------------------------------------------------------- /.gen/pipeline/model_update_cluster_request.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // UpdateClusterRequest struct for UpdateClusterRequest 14 | type UpdateClusterRequest struct { 15 | Version string `json:"version,omitempty"` 16 | } 17 | -------------------------------------------------------------------------------- /.gen/pipeline/model_update_cluster_request_deprecated.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // UpdateClusterRequestDeprecated struct for UpdateClusterRequestDeprecated 14 | type UpdateClusterRequestDeprecated struct { 15 | Cloud string `json:"cloud"` 16 | Properties map[string]interface{} `json:"properties"` 17 | } 18 | -------------------------------------------------------------------------------- /.gen/pipeline/model_update_cluster_request_v2.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // UpdateClusterRequestV2 struct for UpdateClusterRequestV2 14 | type UpdateClusterRequestV2 struct { 15 | Nodepools []PkeOnVsphereNodePool `json:"nodepools,omitempty"` 16 | } 17 | -------------------------------------------------------------------------------- /.gen/pipeline/model_update_eks_properties.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // UpdateEksProperties struct for UpdateEksProperties 14 | type UpdateEksProperties struct { 15 | Eks UpdateEksPropertiesEks `json:"eks"` 16 | } 17 | -------------------------------------------------------------------------------- /.gen/pipeline/model_update_eks_properties_eks.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // UpdateEksPropertiesEks struct for UpdateEksPropertiesEks 14 | type UpdateEksPropertiesEks struct { 15 | NodePools map[string]EksNodePool `json:"nodePools"` 16 | } 17 | -------------------------------------------------------------------------------- /.gen/pipeline/model_update_google_properties_master.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // UpdateGooglePropertiesMaster struct for UpdateGooglePropertiesMaster 14 | type UpdateGooglePropertiesMaster struct { 15 | Version string `json:"version,omitempty"` 16 | } 17 | -------------------------------------------------------------------------------- /.gen/pipeline/model_update_integrated_service_request.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // UpdateIntegratedServiceRequest struct for UpdateIntegratedServiceRequest 14 | type UpdateIntegratedServiceRequest struct { 15 | Spec map[string]interface{} `json:"spec"` 16 | } 17 | -------------------------------------------------------------------------------- /.gen/pipeline/model_update_node_pool_response.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // UpdateNodePoolResponse struct for UpdateNodePoolResponse 14 | type UpdateNodePoolResponse struct { 15 | // Node pool update process ID. 16 | ProcessId string `json:"processId,omitempty"` 17 | } 18 | -------------------------------------------------------------------------------- /.gen/pipeline/model_update_pke_on_azure_cluster_request.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // UpdatePkeOnAzureClusterRequest struct for UpdatePkeOnAzureClusterRequest 14 | type UpdatePkeOnAzureClusterRequest struct { 15 | Nodepools []PkeOnAzureNodePool `json:"nodepools,omitempty"` 16 | } 17 | -------------------------------------------------------------------------------- /.gen/pipeline/model_update_pke_on_vsphere_cluster_request.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // UpdatePkeOnVsphereClusterRequest struct for UpdatePkeOnVsphereClusterRequest 14 | type UpdatePkeOnVsphereClusterRequest struct { 15 | Nodepools []PkeOnVsphereNodePool `json:"nodepools,omitempty"` 16 | } 17 | -------------------------------------------------------------------------------- /.gen/pipeline/model_update_pke_properties.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // UpdatePkeProperties struct for UpdatePkeProperties 14 | type UpdatePkeProperties struct { 15 | Pke UpdatePkePropertiesPke `json:"pke"` 16 | } 17 | -------------------------------------------------------------------------------- /.gen/pipeline/model_update_pke_properties_pke.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // UpdatePkePropertiesPke struct for UpdatePkePropertiesPke 14 | type UpdatePkePropertiesPke struct { 15 | NodePools map[string]UpdateNodePoolsPke `json:"nodePools"` 16 | } 17 | -------------------------------------------------------------------------------- /.gen/pipeline/model_url_item.go: -------------------------------------------------------------------------------- 1 | /* 2 | * Pipeline API 3 | * 4 | * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. 5 | * 6 | * API version: latest 7 | * Contact: info@banzaicloud.com 8 | */ 9 | 10 | // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. 11 | 12 | package pipeline 13 | // UrlItem struct for UrlItem 14 | type UrlItem struct { 15 | Servicename string `json:"servicename,omitempty"` 16 | Url string `json:"url,omitempty"` 17 | } 18 | -------------------------------------------------------------------------------- /.gen/pipeline/version.go: -------------------------------------------------------------------------------- 1 | package pipeline 2 | 3 | const PipelineVersion = "0.76.0" 4 | -------------------------------------------------------------------------------- /.gen/telescopes/.gitignore: -------------------------------------------------------------------------------- 1 | # Compiled Object files, Static and Dynamic libs (Shared Objects) 2 | *.o 3 | *.a 4 | *.so 5 | 6 | # Folders 7 | _obj 8 | _test 9 | 10 | # Architecture specific extensions/prefixes 11 | *.[568vq] 12 | [568vq].out 13 | 14 | *.cgo1.go 15 | *.cgo2.c 16 | _cgo_defun.c 17 | _cgo_gotypes.go 18 | _cgo_export.* 19 | 20 | _testmain.go 21 | 22 | *.exe 23 | *.test 24 | *.prof 25 | -------------------------------------------------------------------------------- /.gen/telescopes/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 4.3.1 -------------------------------------------------------------------------------- /.gen/telescopes/docs/GetRecommendationParams.md: -------------------------------------------------------------------------------- 1 | # GetRecommendationParams 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Provider** | **string** | in:path | [optional] 8 | **Region** | **string** | in:path | [optional] 9 | **Service** | **string** | in:path | [optional] 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | 13 | 14 | -------------------------------------------------------------------------------- /.gen/telescopes/docs/NodePool.md: -------------------------------------------------------------------------------- 1 | # NodePool 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Role** | **string** | Role in the cluster, eg. master or worker | [optional] 8 | **SumNodes** | **int64** | Recommended number of nodes in the node pool | [optional] 9 | **Vm** | [**VirtualMachine**](VirtualMachine.md) | | [optional] 10 | **VmClass** | **string** | Specifies if the recommended node pool consists of regular or spot/preemptible instance types | [optional] 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | 14 | 15 | -------------------------------------------------------------------------------- /.gen/telescopes/docs/NodePoolDesc.md: -------------------------------------------------------------------------------- 1 | # NodePoolDesc 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **InstanceType** | **string** | Instance type of VMs in the node pool | [optional] 8 | **SumNodes** | **int64** | Number of VMs in the node pool | [optional] 9 | **VmClass** | **string** | Signals that the node pool consists of regular or spot/preemptible instance types | [optional] 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | 13 | 14 | -------------------------------------------------------------------------------- /.gen/telescopes/docs/Provider.md: -------------------------------------------------------------------------------- 1 | # Provider 2 | 3 | ## Properties 4 | 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **Provider** | **string** | | [optional] 8 | **Services** | **[]string** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- 1 | version: 2 2 | 3 | updates: 4 | - package-ecosystem: "docker" 5 | directory: "/" 6 | labels: 7 | - "dependencies" 8 | schedule: 9 | interval: "daily" 10 | 11 | - package-ecosystem: "github-actions" 12 | directory: "/" 13 | labels: 14 | - "dependencies" 15 | schedule: 16 | interval: "daily" 17 | -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- 1 | linters: 2 | enable-all: true 3 | disable: 4 | - funlen 5 | - gomnd 6 | - maligned 7 | - wsl 8 | 9 | # TODO: fix these 10 | - stylecheck 11 | - bodyclose 12 | - deadcode 13 | - dupl 14 | - errcheck 15 | - gas 16 | - gochecknoglobals 17 | - gochecknoinits 18 | - gocritic 19 | - gocyclo 20 | - gocognit 21 | - gofmt 22 | - goimports 23 | - golint 24 | - lll 25 | - megacheck 26 | - varcheck 27 | - godox 28 | 29 | linters-settings: 30 | golint: 31 | min-confidence: 0.1 32 | -------------------------------------------------------------------------------- /.idea/banzai-cli.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | -------------------------------------------------------------------------------- /.idea/externalDependencies.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /.idea/go.imports.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 8 | 9 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.idea/runConfigurations/Tests.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.idea/scopes/Go_files.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /scripts/trigger-docs-update.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euf 4 | 5 | RELEASE_TAG="$1" 6 | OWNER='banzaicloud' 7 | REPO='banzaicloud.github.io' 8 | WORKFLOW='cli-docgen.yml' 9 | 10 | function main() 11 | { 12 | curl \ 13 | -X POST \ 14 | -H "Accept: application/vnd.github+json" \ 15 | -H "Authorization: token ${GITHUB_TOKEN}" \ 16 | "https://api.github.com/repos/${OWNER}/${REPO}/actions/workflows/${WORKFLOW}/dispatches" \ 17 | -d "{\"ref\":\"gh-pages\",\"inputs\":{\"cli\":\"banzai-cli\", \"cli-release-tag\": \"${RELEASE_TAG}\", \"cli-base-path\":\"/docs/pipeline/cli/reference/\"}}" 18 | } 19 | 20 | main "$@" 21 | --------------------------------------------------------------------------------