diff --git a/services/lbapplication/api_default.go b/services/lbapplication/api_default.go index 8236caefc..a775a2b58 100644 --- a/services/lbapplication/api_default.go +++ b/services/lbapplication/api_default.go @@ -1,7 +1,7 @@ /* Application Load Balancer API -This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. +### DEPRECATED! This service, lb-application, is no longer maintained. Please use the alb service, version v2beta2 instead This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. API version: 1beta.0.0 */ @@ -159,7 +159,7 @@ func (r ApiCreateCredentialsRequest) Execute() (*CreateCredentialsResponse, erro /* CreateCredentials: Create credentials for observability of the application load balancer -Creates and stores credentials for use with Application Load Balancer Observability. +Deprecated: Creates and stores credentials for use with Application Load Balancer Observability. For example, when using ARGUS, credentials must first be created via the ARGUS API and then stored with this endpoint to be used by the Application Load Balancer. @@ -176,6 +176,12 @@ func (a *APIClient) CreateCredentials(ctx context.Context, projectId string) Api } } +/* +Deprecated: Creates and stores credentials for use with Application Load Balancer Observability. + + For example, when using ARGUS, credentials must first be created via the ARGUS API + and then stored with this endpoint to be used by the Application Load Balancer. +*/ func (a *APIClient) CreateCredentialsExecute(ctx context.Context, projectId string) (*CreateCredentialsResponse, error) { r := ApiCreateCredentialsRequest{ apiService: a.defaultApi, @@ -318,7 +324,7 @@ func (r ApiCreateLoadBalancerRequest) Execute() (*LoadBalancer, error) { /* CreateLoadBalancer: Create an application load balancer in a project -Creates an Application Load Balancer. +Deprecated: Creates an Application Load Balancer. The default load balancing algorithm is Maglev, and selecting a different algorithm is currently not supported. @@ -334,6 +340,11 @@ func (a *APIClient) CreateLoadBalancer(ctx context.Context, projectId string) Ap } } +/* +Deprecated: Creates an Application Load Balancer. + + The default load balancing algorithm is Maglev, and selecting a different algorithm is currently not supported. +*/ func (a *APIClient) CreateLoadBalancerExecute(ctx context.Context, projectId string) (*LoadBalancer, error) { r := ApiCreateLoadBalancerRequest{ apiService: a.defaultApi, @@ -458,7 +469,7 @@ func (r ApiDeleteCredentialsRequest) Execute() (map[string]interface{}, error) { /* DeleteCredentials: Delete a single credential in a project. -Deletes the stored Observability credentials. +Deprecated: Deletes the stored Observability credentials. @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param projectId @@ -474,6 +485,9 @@ func (a *APIClient) DeleteCredentials(ctx context.Context, projectId string, cre } } +/* +Deprecated: Deletes the stored Observability credentials. +*/ func (a *APIClient) DeleteCredentialsExecute(ctx context.Context, projectId string, credentialsRef string) (map[string]interface{}, error) { r := ApiDeleteCredentialsRequest{ apiService: a.defaultApi, @@ -599,7 +613,7 @@ func (r ApiDeleteLoadBalancerRequest) Execute() (map[string]interface{}, error) /* DeleteLoadBalancer: Delete a given load balancer in a project. -Deletes the specified Application Load Balancer. +Deprecated: Deletes the specified Application Load Balancer. @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param projectId @@ -615,6 +629,9 @@ func (a *APIClient) DeleteLoadBalancer(ctx context.Context, projectId string, na } } +/* +Deprecated: Deletes the specified Application Load Balancer. +*/ func (a *APIClient) DeleteLoadBalancerExecute(ctx context.Context, projectId string, name string) (map[string]interface{}, error) { r := ApiDeleteLoadBalancerRequest{ apiService: a.defaultApi, @@ -1037,7 +1054,7 @@ func (r ApiGetCredentialsRequest) Execute() (*GetCredentialsResponse, error) { /* GetCredentials: Get a single credential reference in a project. -Gets the stored Observability credentials. +Deprecated: Gets the stored Observability credentials. @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param projectId @@ -1053,6 +1070,9 @@ func (a *APIClient) GetCredentials(ctx context.Context, projectId string, creden } } +/* +Deprecated: Gets the stored Observability credentials. +*/ func (a *APIClient) GetCredentialsExecute(ctx context.Context, projectId string, credentialsRef string) (*GetCredentialsResponse, error) { r := ApiGetCredentialsRequest{ apiService: a.defaultApi, @@ -1178,7 +1198,7 @@ func (r ApiGetLoadBalancerRequest) Execute() (*LoadBalancer, error) { /* GetLoadBalancer: Get a single application load balancer in a project. -Retrieves details of a specific Application Load Balancer in a project. +Deprecated: Retrieves details of a specific Application Load Balancer in a project. Includes creation and update information, current status, and any error descriptions. @@ -1196,6 +1216,11 @@ func (a *APIClient) GetLoadBalancer(ctx context.Context, projectId string, name } } +/* +Deprecated: Retrieves details of a specific Application Load Balancer in a project. + + Includes creation and update information, current status, and any error descriptions. +*/ func (a *APIClient) GetLoadBalancerExecute(ctx context.Context, projectId string, name string) (*LoadBalancer, error) { r := ApiGetLoadBalancerRequest{ apiService: a.defaultApi, @@ -1319,7 +1344,7 @@ func (r ApiGetQuotaRequest) Execute() (*GetQuotaResponse, error) { /* GetQuota: Get the quota of application load balancers and target pools in a project. -Retrieves the configured Application Load Balancer quota for the project. +Deprecated: Retrieves the configured Application Load Balancer quota for the project. The default quota is 3. @@ -1335,6 +1360,11 @@ func (a *APIClient) GetQuota(ctx context.Context, projectId string) ApiGetQuotaR } } +/* +Deprecated: Retrieves the configured Application Load Balancer quota for the project. + + The default quota is 3. +*/ func (a *APIClient) GetQuotaExecute(ctx context.Context, projectId string) (*GetQuotaResponse, error) { r := ApiGetQuotaRequest{ apiService: a.defaultApi, @@ -1600,7 +1630,7 @@ func (r ApiListCredentialsRequest) Execute() (*ListCredentialsResponse, error) { /* ListCredentials: List all credentials in a project. -Lists the stored Observability credentials. +Deprecated: Lists the stored Observability credentials. @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param projectId @@ -1614,6 +1644,9 @@ func (a *APIClient) ListCredentials(ctx context.Context, projectId string) ApiLi } } +/* +Deprecated: Lists the stored Observability credentials. +*/ func (a *APIClient) ListCredentialsExecute(ctx context.Context, projectId string) (*ListCredentialsResponse, error) { r := ApiListCredentialsRequest{ apiService: a.defaultApi, @@ -1758,7 +1791,7 @@ func (r ApiListLoadBalancersRequest) Execute() (*ListLoadBalancersResponse, erro /* ListLoadBalancers: List load balancers in a project. -Lists all Application Load Balancers in a project. +Deprecated: Lists all Application Load Balancers in a project. Includes details from creation or updates, along with their status and any error descriptions. @@ -1774,6 +1807,11 @@ func (a *APIClient) ListLoadBalancers(ctx context.Context, projectId string) Api } } +/* +Deprecated: Lists all Application Load Balancers in a project. + + Includes details from creation or updates, along with their status and any error descriptions. +*/ func (a *APIClient) ListLoadBalancersExecute(ctx context.Context, projectId string) (*ListLoadBalancersResponse, error) { r := ApiListLoadBalancersRequest{ apiService: a.defaultApi, @@ -1894,7 +1932,7 @@ func (r ApiListPlansRequest) Execute() (*ListPlansResponse, error) { /* ListPlans: List available service plans. -Lists the configured service plans for a project. +Deprecated: Lists the configured service plans for a project. @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @return ApiListPlansRequest @@ -1906,6 +1944,9 @@ func (a *APIClient) ListPlans(ctx context.Context) ApiListPlansRequest { } } +/* +Deprecated: Lists the configured service plans for a project. +*/ func (a *APIClient) ListPlansExecute(ctx context.Context) (*ListPlansResponse, error) { r := ApiListPlansRequest{ apiService: a.defaultApi, @@ -2040,7 +2081,7 @@ func (r ApiUpdateCredentialsRequest) Execute() (*UpdateCredentialsResponse, erro /* UpdateCredentials: Update credentials for observability in a project. -Updates the stored Observability credentials. +Deprecated: Updates the stored Observability credentials. @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param projectId @@ -2056,6 +2097,9 @@ func (a *APIClient) UpdateCredentials(ctx context.Context, projectId string, cre } } +/* +Deprecated: Updates the stored Observability credentials. +*/ func (a *APIClient) UpdateCredentialsExecute(ctx context.Context, projectId string, credentialsRef string) (*UpdateCredentialsResponse, error) { r := ApiUpdateCredentialsRequest{ apiService: a.defaultApi, @@ -2192,7 +2236,7 @@ func (r ApiUpdateLoadBalancerRequest) Execute() (*LoadBalancer, error) { /* UpdateLoadBalancer: Update a load balancer in a project. -Updates an existing Application Load Balancer by modifying its listeners and target pools. +Deprecated: Updates an existing Application Load Balancer by modifying its listeners and target pools. Ensure the resource version is current to maintain concurrency safety. The default load balancing algorithm is Maglev, and selecting a different algorithm is currently not supported. @@ -2211,6 +2255,12 @@ func (a *APIClient) UpdateLoadBalancer(ctx context.Context, projectId string, na } } +/* +Deprecated: Updates an existing Application Load Balancer by modifying its listeners and target pools. + + Ensure the resource version is current to maintain concurrency safety. + The default load balancing algorithm is Maglev, and selecting a different algorithm is currently not supported. +*/ func (a *APIClient) UpdateLoadBalancerExecute(ctx context.Context, projectId string, name string) (*LoadBalancer, error) { r := ApiUpdateLoadBalancerRequest{ apiService: a.defaultApi, @@ -2349,7 +2399,7 @@ func (r ApiUpdateTargetPoolRequest) Execute() (*TargetPool, error) { /* UpdateTargetPool: Update a single target pool of a load balancer in a project. -Replaces the content of a specific target pool in the Application Load Balancer (useful for adding or removing target servers). +Deprecated: Replaces the content of a specific target pool in the Application Load Balancer (useful for adding or removing target servers). Only updates the specified target pool, leaving others unchanged. Cannot be used to create or rename target pools. @@ -2370,6 +2420,12 @@ func (a *APIClient) UpdateTargetPool(ctx context.Context, projectId string, name } } +/* +Deprecated: Replaces the content of a specific target pool in the Application Load Balancer (useful for adding or removing target servers). + + Only updates the specified target pool, leaving others unchanged. + Cannot be used to create or rename target pools. +*/ func (a *APIClient) UpdateTargetPoolExecute(ctx context.Context, projectId string, name string, targetPoolName string) (*TargetPool, error) { r := ApiUpdateTargetPoolRequest{ apiService: a.defaultApi, diff --git a/services/lbapplication/api_default_test.go b/services/lbapplication/api_default_test.go index 375b523ef..be03bebde 100644 --- a/services/lbapplication/api_default_test.go +++ b/services/lbapplication/api_default_test.go @@ -25,7 +25,7 @@ func Test_lbapplication_DefaultApiService(t *testing.T) { t.Run("Test DefaultApiService CreateCredentials", func(t *testing.T) { _apiUrlPath := "/v1beta/projects/{projectId}/credentials" - projectIdValue := "projectId" + projectIdValue := "projectId-value" _apiUrlPath = strings.Replace(_apiUrlPath, "{"+"projectId"+"}", url.PathEscape(ParameterValueToString(projectIdValue, "projectId")), -1) testDefaultApiServeMux := http.NewServeMux() @@ -78,7 +78,7 @@ func Test_lbapplication_DefaultApiService(t *testing.T) { t.Run("Test DefaultApiService CreateLoadBalancer", func(t *testing.T) { _apiUrlPath := "/v1beta/projects/{projectId}/load-balancers" - projectIdValue := "projectId" + projectIdValue := "projectId-value" _apiUrlPath = strings.Replace(_apiUrlPath, "{"+"projectId"+"}", url.PathEscape(ParameterValueToString(projectIdValue, "projectId")), -1) testDefaultApiServeMux := http.NewServeMux() @@ -131,9 +131,9 @@ func Test_lbapplication_DefaultApiService(t *testing.T) { t.Run("Test DefaultApiService DeleteCredentials", func(t *testing.T) { _apiUrlPath := "/v1beta/projects/{projectId}/credentials/{credentialsRef}" - projectIdValue := "projectId" + projectIdValue := "projectId-value" _apiUrlPath = strings.Replace(_apiUrlPath, "{"+"projectId"+"}", url.PathEscape(ParameterValueToString(projectIdValue, "projectId")), -1) - credentialsRefValue := "credentialsRef" + credentialsRefValue := "credentialsRef-value" _apiUrlPath = strings.Replace(_apiUrlPath, "{"+"credentialsRef"+"}", url.PathEscape(ParameterValueToString(credentialsRefValue, "credentialsRef")), -1) testDefaultApiServeMux := http.NewServeMux() @@ -186,9 +186,9 @@ func Test_lbapplication_DefaultApiService(t *testing.T) { t.Run("Test DefaultApiService DeleteLoadBalancer", func(t *testing.T) { _apiUrlPath := "/v1beta/projects/{projectId}/load-balancers/{name}" - projectIdValue := "projectId" + projectIdValue := "projectId-value" _apiUrlPath = strings.Replace(_apiUrlPath, "{"+"projectId"+"}", url.PathEscape(ParameterValueToString(projectIdValue, "projectId")), -1) - nameValue := "name" + nameValue := "name-value" _apiUrlPath = strings.Replace(_apiUrlPath, "{"+"name"+"}", url.PathEscape(ParameterValueToString(nameValue, "name")), -1) testDefaultApiServeMux := http.NewServeMux() @@ -241,7 +241,7 @@ func Test_lbapplication_DefaultApiService(t *testing.T) { t.Run("Test DefaultApiService DisableService", func(t *testing.T) { _apiUrlPath := "/v1beta/projects/{projectId}" - projectIdValue := "projectId" + projectIdValue := "projectId-value" _apiUrlPath = strings.Replace(_apiUrlPath, "{"+"projectId"+"}", url.PathEscape(ParameterValueToString(projectIdValue, "projectId")), -1) testDefaultApiServeMux := http.NewServeMux() @@ -293,7 +293,7 @@ func Test_lbapplication_DefaultApiService(t *testing.T) { t.Run("Test DefaultApiService EnableService", func(t *testing.T) { _apiUrlPath := "/v1beta/projects/{projectId}" - projectIdValue := "projectId" + projectIdValue := "projectId-value" _apiUrlPath = strings.Replace(_apiUrlPath, "{"+"projectId"+"}", url.PathEscape(ParameterValueToString(projectIdValue, "projectId")), -1) testDefaultApiServeMux := http.NewServeMux() @@ -345,9 +345,9 @@ func Test_lbapplication_DefaultApiService(t *testing.T) { t.Run("Test DefaultApiService GetCredentials", func(t *testing.T) { _apiUrlPath := "/v1beta/projects/{projectId}/credentials/{credentialsRef}" - projectIdValue := "projectId" + projectIdValue := "projectId-value" _apiUrlPath = strings.Replace(_apiUrlPath, "{"+"projectId"+"}", url.PathEscape(ParameterValueToString(projectIdValue, "projectId")), -1) - credentialsRefValue := "credentialsRef" + credentialsRefValue := "credentialsRef-value" _apiUrlPath = strings.Replace(_apiUrlPath, "{"+"credentialsRef"+"}", url.PathEscape(ParameterValueToString(credentialsRefValue, "credentialsRef")), -1) testDefaultApiServeMux := http.NewServeMux() @@ -400,9 +400,9 @@ func Test_lbapplication_DefaultApiService(t *testing.T) { t.Run("Test DefaultApiService GetLoadBalancer", func(t *testing.T) { _apiUrlPath := "/v1beta/projects/{projectId}/load-balancers/{name}" - projectIdValue := "projectId" + projectIdValue := "projectId-value" _apiUrlPath = strings.Replace(_apiUrlPath, "{"+"projectId"+"}", url.PathEscape(ParameterValueToString(projectIdValue, "projectId")), -1) - nameValue := "name" + nameValue := "name-value" _apiUrlPath = strings.Replace(_apiUrlPath, "{"+"name"+"}", url.PathEscape(ParameterValueToString(nameValue, "name")), -1) testDefaultApiServeMux := http.NewServeMux() @@ -455,7 +455,7 @@ func Test_lbapplication_DefaultApiService(t *testing.T) { t.Run("Test DefaultApiService GetQuota", func(t *testing.T) { _apiUrlPath := "/v1beta/projects/{projectId}/quota" - projectIdValue := "projectId" + projectIdValue := "projectId-value" _apiUrlPath = strings.Replace(_apiUrlPath, "{"+"projectId"+"}", url.PathEscape(ParameterValueToString(projectIdValue, "projectId")), -1) testDefaultApiServeMux := http.NewServeMux() @@ -507,7 +507,7 @@ func Test_lbapplication_DefaultApiService(t *testing.T) { t.Run("Test DefaultApiService GetServiceStatus", func(t *testing.T) { _apiUrlPath := "/v1beta/projects/{projectId}" - projectIdValue := "projectId" + projectIdValue := "projectId-value" _apiUrlPath = strings.Replace(_apiUrlPath, "{"+"projectId"+"}", url.PathEscape(ParameterValueToString(projectIdValue, "projectId")), -1) testDefaultApiServeMux := http.NewServeMux() @@ -559,7 +559,7 @@ func Test_lbapplication_DefaultApiService(t *testing.T) { t.Run("Test DefaultApiService ListCredentials", func(t *testing.T) { _apiUrlPath := "/v1beta/projects/{projectId}/credentials" - projectIdValue := "projectId" + projectIdValue := "projectId-value" _apiUrlPath = strings.Replace(_apiUrlPath, "{"+"projectId"+"}", url.PathEscape(ParameterValueToString(projectIdValue, "projectId")), -1) testDefaultApiServeMux := http.NewServeMux() @@ -611,7 +611,7 @@ func Test_lbapplication_DefaultApiService(t *testing.T) { t.Run("Test DefaultApiService ListLoadBalancers", func(t *testing.T) { _apiUrlPath := "/v1beta/projects/{projectId}/load-balancers" - projectIdValue := "projectId" + projectIdValue := "projectId-value" _apiUrlPath = strings.Replace(_apiUrlPath, "{"+"projectId"+"}", url.PathEscape(ParameterValueToString(projectIdValue, "projectId")), -1) testDefaultApiServeMux := http.NewServeMux() @@ -711,9 +711,9 @@ func Test_lbapplication_DefaultApiService(t *testing.T) { t.Run("Test DefaultApiService UpdateCredentials", func(t *testing.T) { _apiUrlPath := "/v1beta/projects/{projectId}/credentials/{credentialsRef}" - projectIdValue := "projectId" + projectIdValue := "projectId-value" _apiUrlPath = strings.Replace(_apiUrlPath, "{"+"projectId"+"}", url.PathEscape(ParameterValueToString(projectIdValue, "projectId")), -1) - credentialsRefValue := "credentialsRef" + credentialsRefValue := "credentialsRef-value" _apiUrlPath = strings.Replace(_apiUrlPath, "{"+"credentialsRef"+"}", url.PathEscape(ParameterValueToString(credentialsRefValue, "credentialsRef")), -1) testDefaultApiServeMux := http.NewServeMux() @@ -767,9 +767,9 @@ func Test_lbapplication_DefaultApiService(t *testing.T) { t.Run("Test DefaultApiService UpdateLoadBalancer", func(t *testing.T) { _apiUrlPath := "/v1beta/projects/{projectId}/load-balancers/{name}" - projectIdValue := "projectId" + projectIdValue := "projectId-value" _apiUrlPath = strings.Replace(_apiUrlPath, "{"+"projectId"+"}", url.PathEscape(ParameterValueToString(projectIdValue, "projectId")), -1) - nameValue := "name" + nameValue := "name-value" _apiUrlPath = strings.Replace(_apiUrlPath, "{"+"name"+"}", url.PathEscape(ParameterValueToString(nameValue, "name")), -1) testDefaultApiServeMux := http.NewServeMux() @@ -823,11 +823,11 @@ func Test_lbapplication_DefaultApiService(t *testing.T) { t.Run("Test DefaultApiService UpdateTargetPool", func(t *testing.T) { _apiUrlPath := "/v1beta/projects/{projectId}/load-balancers/{name}/target-pools/{targetPoolName}" - projectIdValue := "projectId" + projectIdValue := "projectId-value" _apiUrlPath = strings.Replace(_apiUrlPath, "{"+"projectId"+"}", url.PathEscape(ParameterValueToString(projectIdValue, "projectId")), -1) - nameValue := "name" + nameValue := "name-value" _apiUrlPath = strings.Replace(_apiUrlPath, "{"+"name"+"}", url.PathEscape(ParameterValueToString(nameValue, "name")), -1) - targetPoolNameValue := "targetPoolName" + targetPoolNameValue := "targetPoolName-value" _apiUrlPath = strings.Replace(_apiUrlPath, "{"+"targetPoolName"+"}", url.PathEscape(ParameterValueToString(targetPoolNameValue, "targetPoolName")), -1) testDefaultApiServeMux := http.NewServeMux() diff --git a/services/lbapplication/client.go b/services/lbapplication/client.go index 79406adb6..1fe66a02f 100644 --- a/services/lbapplication/client.go +++ b/services/lbapplication/client.go @@ -1,7 +1,7 @@ /* Application Load Balancer API -This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. +### DEPRECATED! This service, lb-application, is no longer maintained. Please use the alb service, version v2beta2 instead This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. API version: 1beta.0.0 */ @@ -308,7 +308,7 @@ func (c *APIClient) prepareRequest( var body *bytes.Buffer // Detect postBody type and post. - if postBody != nil { + if !IsNil(postBody) { contentType := headerParams["Content-Type"] if contentType == "" { contentType = detectContentType(postBody) diff --git a/services/lbapplication/configuration.go b/services/lbapplication/configuration.go index 23ba6d090..697bcaaef 100644 --- a/services/lbapplication/configuration.go +++ b/services/lbapplication/configuration.go @@ -1,7 +1,7 @@ /* Application Load Balancer API -This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. +### DEPRECATED! This service, lb-application, is no longer maintained. Please use the alb service, version v2beta2 instead This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. API version: 1beta.0.0 */ @@ -18,7 +18,7 @@ import ( func NewConfiguration() *config.Configuration { cfg := &config.Configuration{ DefaultHeader: make(map[string]string), - UserAgent: "OpenAPI-Generator/1.0.0/go", + UserAgent: "stackit-sdk-go/lbapplication", Debug: false, Servers: config.ServerConfigurations{ { diff --git a/services/lbapplication/model_active_health_check.go b/services/lbapplication/model_active_health_check.go index 3409a88fc..30ec1732e 100644 --- a/services/lbapplication/model_active_health_check.go +++ b/services/lbapplication/model_active_health_check.go @@ -1,7 +1,7 @@ /* Application Load Balancer API -This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. +### DEPRECATED! This service, lb-application, is no longer maintained. Please use the alb service, version v2beta2 instead This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. API version: 1beta.0.0 */ diff --git a/services/lbapplication/model_certificate_config.go b/services/lbapplication/model_certificate_config.go index b1ae159a3..fa1794bfc 100644 --- a/services/lbapplication/model_certificate_config.go +++ b/services/lbapplication/model_certificate_config.go @@ -1,7 +1,7 @@ /* Application Load Balancer API -This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. +### DEPRECATED! This service, lb-application, is no longer maintained. Please use the alb service, version v2beta2 instead This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. API version: 1beta.0.0 */ diff --git a/services/lbapplication/model_cookie_persistence.go b/services/lbapplication/model_cookie_persistence.go index f0d511aec..860a8dbd9 100644 --- a/services/lbapplication/model_cookie_persistence.go +++ b/services/lbapplication/model_cookie_persistence.go @@ -1,7 +1,7 @@ /* Application Load Balancer API -This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. +### DEPRECATED! This service, lb-application, is no longer maintained. Please use the alb service, version v2beta2 instead This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. API version: 1beta.0.0 */ diff --git a/services/lbapplication/model_create_credentials_payload.go b/services/lbapplication/model_create_credentials_payload.go index e78fd80c1..2f72fad02 100644 --- a/services/lbapplication/model_create_credentials_payload.go +++ b/services/lbapplication/model_create_credentials_payload.go @@ -1,7 +1,7 @@ /* Application Load Balancer API -This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. +### DEPRECATED! This service, lb-application, is no longer maintained. Please use the alb service, version v2beta2 instead This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. API version: 1beta.0.0 */ diff --git a/services/lbapplication/model_create_credentials_response.go b/services/lbapplication/model_create_credentials_response.go index 864519caa..330180a68 100644 --- a/services/lbapplication/model_create_credentials_response.go +++ b/services/lbapplication/model_create_credentials_response.go @@ -1,7 +1,7 @@ /* Application Load Balancer API -This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. +### DEPRECATED! This service, lb-application, is no longer maintained. Please use the alb service, version v2beta2 instead This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. API version: 1beta.0.0 */ diff --git a/services/lbapplication/model_create_load_balancer_payload.go b/services/lbapplication/model_create_load_balancer_payload.go index facc96954..83a6b06c9 100644 --- a/services/lbapplication/model_create_load_balancer_payload.go +++ b/services/lbapplication/model_create_load_balancer_payload.go @@ -1,7 +1,7 @@ /* Application Load Balancer API -This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. +### DEPRECATED! This service, lb-application, is no longer maintained. Please use the alb service, version v2beta2 instead This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. API version: 1beta.0.0 */ diff --git a/services/lbapplication/model_credentials_response.go b/services/lbapplication/model_credentials_response.go index 520cf5748..2b72d0295 100644 --- a/services/lbapplication/model_credentials_response.go +++ b/services/lbapplication/model_credentials_response.go @@ -1,7 +1,7 @@ /* Application Load Balancer API -This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. +### DEPRECATED! This service, lb-application, is no longer maintained. Please use the alb service, version v2beta2 instead This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. API version: 1beta.0.0 */ diff --git a/services/lbapplication/model_get_credentials_response.go b/services/lbapplication/model_get_credentials_response.go index 354b235cc..1dd649319 100644 --- a/services/lbapplication/model_get_credentials_response.go +++ b/services/lbapplication/model_get_credentials_response.go @@ -1,7 +1,7 @@ /* Application Load Balancer API -This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. +### DEPRECATED! This service, lb-application, is no longer maintained. Please use the alb service, version v2beta2 instead This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. API version: 1beta.0.0 */ diff --git a/services/lbapplication/model_get_quota_response.go b/services/lbapplication/model_get_quota_response.go index 91b0a48c7..0bc438008 100644 --- a/services/lbapplication/model_get_quota_response.go +++ b/services/lbapplication/model_get_quota_response.go @@ -1,7 +1,7 @@ /* Application Load Balancer API -This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. +### DEPRECATED! This service, lb-application, is no longer maintained. Please use the alb service, version v2beta2 instead This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. API version: 1beta.0.0 */ diff --git a/services/lbapplication/model_get_service_status_response.go b/services/lbapplication/model_get_service_status_response.go index ef55edb39..39893fdbe 100644 --- a/services/lbapplication/model_get_service_status_response.go +++ b/services/lbapplication/model_get_service_status_response.go @@ -1,7 +1,7 @@ /* Application Load Balancer API -This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. +### DEPRECATED! This service, lb-application, is no longer maintained. Please use the alb service, version v2beta2 instead This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. API version: 1beta.0.0 */ diff --git a/services/lbapplication/model_google_protobuf_any.go b/services/lbapplication/model_google_protobuf_any.go index b12eb82c1..1499863b5 100644 --- a/services/lbapplication/model_google_protobuf_any.go +++ b/services/lbapplication/model_google_protobuf_any.go @@ -1,7 +1,7 @@ /* Application Load Balancer API -This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. +### DEPRECATED! This service, lb-application, is no longer maintained. Please use the alb service, version v2beta2 instead This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. API version: 1beta.0.0 */ diff --git a/services/lbapplication/model_header.go b/services/lbapplication/model_header.go index 34a076b57..857c2f26c 100644 --- a/services/lbapplication/model_header.go +++ b/services/lbapplication/model_header.go @@ -1,7 +1,7 @@ /* Application Load Balancer API -This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. +### DEPRECATED! This service, lb-application, is no longer maintained. Please use the alb service, version v2beta2 instead This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. API version: 1beta.0.0 */ diff --git a/services/lbapplication/model_http_config.go b/services/lbapplication/model_http_config.go index ac5348237..976e19091 100644 --- a/services/lbapplication/model_http_config.go +++ b/services/lbapplication/model_http_config.go @@ -1,7 +1,7 @@ /* Application Load Balancer API -This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. +### DEPRECATED! This service, lb-application, is no longer maintained. Please use the alb service, version v2beta2 instead This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. API version: 1beta.0.0 */ diff --git a/services/lbapplication/model_http_health_checks.go b/services/lbapplication/model_http_health_checks.go index 3eecfd884..8efdf3fa7 100644 --- a/services/lbapplication/model_http_health_checks.go +++ b/services/lbapplication/model_http_health_checks.go @@ -1,7 +1,7 @@ /* Application Load Balancer API -This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. +### DEPRECATED! This service, lb-application, is no longer maintained. Please use the alb service, version v2beta2 instead This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. API version: 1beta.0.0 */ diff --git a/services/lbapplication/model_list_credentials_response.go b/services/lbapplication/model_list_credentials_response.go index 2b6a06e19..91c40df57 100644 --- a/services/lbapplication/model_list_credentials_response.go +++ b/services/lbapplication/model_list_credentials_response.go @@ -1,7 +1,7 @@ /* Application Load Balancer API -This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. +### DEPRECATED! This service, lb-application, is no longer maintained. Please use the alb service, version v2beta2 instead This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. API version: 1beta.0.0 */ diff --git a/services/lbapplication/model_list_load_balancers_response.go b/services/lbapplication/model_list_load_balancers_response.go index f6084c135..ef4bfcf96 100644 --- a/services/lbapplication/model_list_load_balancers_response.go +++ b/services/lbapplication/model_list_load_balancers_response.go @@ -1,7 +1,7 @@ /* Application Load Balancer API -This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. +### DEPRECATED! This service, lb-application, is no longer maintained. Please use the alb service, version v2beta2 instead This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. API version: 1beta.0.0 */ diff --git a/services/lbapplication/model_list_plans_response.go b/services/lbapplication/model_list_plans_response.go index 1baf5d189..f9663c31d 100644 --- a/services/lbapplication/model_list_plans_response.go +++ b/services/lbapplication/model_list_plans_response.go @@ -1,7 +1,7 @@ /* Application Load Balancer API -This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. +### DEPRECATED! This service, lb-application, is no longer maintained. Please use the alb service, version v2beta2 instead This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. API version: 1beta.0.0 */ diff --git a/services/lbapplication/model_listener.go b/services/lbapplication/model_listener.go index 07456a62f..94fd63643 100644 --- a/services/lbapplication/model_listener.go +++ b/services/lbapplication/model_listener.go @@ -1,7 +1,7 @@ /* Application Load Balancer API -This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. +### DEPRECATED! This service, lb-application, is no longer maintained. Please use the alb service, version v2beta2 instead This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. API version: 1beta.0.0 */ diff --git a/services/lbapplication/model_load_balancer.go b/services/lbapplication/model_load_balancer.go index 6b639f36f..98ce6312f 100644 --- a/services/lbapplication/model_load_balancer.go +++ b/services/lbapplication/model_load_balancer.go @@ -1,7 +1,7 @@ /* Application Load Balancer API -This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. +### DEPRECATED! This service, lb-application, is no longer maintained. Please use the alb service, version v2beta2 instead This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. API version: 1beta.0.0 */ diff --git a/services/lbapplication/model_load_balancer_error.go b/services/lbapplication/model_load_balancer_error.go index c2bc60efb..04052f7c5 100644 --- a/services/lbapplication/model_load_balancer_error.go +++ b/services/lbapplication/model_load_balancer_error.go @@ -1,7 +1,7 @@ /* Application Load Balancer API -This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. +### DEPRECATED! This service, lb-application, is no longer maintained. Please use the alb service, version v2beta2 instead This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. API version: 1beta.0.0 */ diff --git a/services/lbapplication/model_load_balancer_options.go b/services/lbapplication/model_load_balancer_options.go index 82c0cc6ec..511087fdb 100644 --- a/services/lbapplication/model_load_balancer_options.go +++ b/services/lbapplication/model_load_balancer_options.go @@ -1,7 +1,7 @@ /* Application Load Balancer API -This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. +### DEPRECATED! This service, lb-application, is no longer maintained. Please use the alb service, version v2beta2 instead This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. API version: 1beta.0.0 */ diff --git a/services/lbapplication/model_loadbalancer_option_access_control.go b/services/lbapplication/model_loadbalancer_option_access_control.go index 7c2fde916..d73c79df5 100644 --- a/services/lbapplication/model_loadbalancer_option_access_control.go +++ b/services/lbapplication/model_loadbalancer_option_access_control.go @@ -1,7 +1,7 @@ /* Application Load Balancer API -This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. +### DEPRECATED! This service, lb-application, is no longer maintained. Please use the alb service, version v2beta2 instead This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. API version: 1beta.0.0 */ diff --git a/services/lbapplication/model_loadbalancer_option_logs.go b/services/lbapplication/model_loadbalancer_option_logs.go index 096ffd401..a39e8cde2 100644 --- a/services/lbapplication/model_loadbalancer_option_logs.go +++ b/services/lbapplication/model_loadbalancer_option_logs.go @@ -1,7 +1,7 @@ /* Application Load Balancer API -This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. +### DEPRECATED! This service, lb-application, is no longer maintained. Please use the alb service, version v2beta2 instead This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. API version: 1beta.0.0 */ diff --git a/services/lbapplication/model_loadbalancer_option_metrics.go b/services/lbapplication/model_loadbalancer_option_metrics.go index 7ac5264e5..2f920f295 100644 --- a/services/lbapplication/model_loadbalancer_option_metrics.go +++ b/services/lbapplication/model_loadbalancer_option_metrics.go @@ -1,7 +1,7 @@ /* Application Load Balancer API -This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. +### DEPRECATED! This service, lb-application, is no longer maintained. Please use the alb service, version v2beta2 instead This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. API version: 1beta.0.0 */ diff --git a/services/lbapplication/model_loadbalancer_option_observability.go b/services/lbapplication/model_loadbalancer_option_observability.go index a5d70dab4..9d5ca9a02 100644 --- a/services/lbapplication/model_loadbalancer_option_observability.go +++ b/services/lbapplication/model_loadbalancer_option_observability.go @@ -1,7 +1,7 @@ /* Application Load Balancer API -This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. +### DEPRECATED! This service, lb-application, is no longer maintained. Please use the alb service, version v2beta2 instead This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. API version: 1beta.0.0 */ diff --git a/services/lbapplication/model_matcher.go b/services/lbapplication/model_matcher.go index 0f205209e..932160319 100644 --- a/services/lbapplication/model_matcher.go +++ b/services/lbapplication/model_matcher.go @@ -1,7 +1,7 @@ /* Application Load Balancer API -This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. +### DEPRECATED! This service, lb-application, is no longer maintained. Please use the alb service, version v2beta2 instead This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. API version: 1beta.0.0 */ diff --git a/services/lbapplication/model_network.go b/services/lbapplication/model_network.go index e1e10317d..b86e93d41 100644 --- a/services/lbapplication/model_network.go +++ b/services/lbapplication/model_network.go @@ -1,7 +1,7 @@ /* Application Load Balancer API -This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. +### DEPRECATED! This service, lb-application, is no longer maintained. Please use the alb service, version v2beta2 instead This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. API version: 1beta.0.0 */ diff --git a/services/lbapplication/model_plan_details.go b/services/lbapplication/model_plan_details.go index 3fb2540d6..60de37ecd 100644 --- a/services/lbapplication/model_plan_details.go +++ b/services/lbapplication/model_plan_details.go @@ -1,7 +1,7 @@ /* Application Load Balancer API -This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. +### DEPRECATED! This service, lb-application, is no longer maintained. Please use the alb service, version v2beta2 instead This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. API version: 1beta.0.0 */ diff --git a/services/lbapplication/model_protocol_options_https.go b/services/lbapplication/model_protocol_options_https.go index 8fa733e81..e4713421b 100644 --- a/services/lbapplication/model_protocol_options_https.go +++ b/services/lbapplication/model_protocol_options_https.go @@ -1,7 +1,7 @@ /* Application Load Balancer API -This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. +### DEPRECATED! This service, lb-application, is no longer maintained. Please use the alb service, version v2beta2 instead This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. API version: 1beta.0.0 */ diff --git a/services/lbapplication/model_query_parameters.go b/services/lbapplication/model_query_parameters.go index fcb915944..0c856ca9a 100644 --- a/services/lbapplication/model_query_parameters.go +++ b/services/lbapplication/model_query_parameters.go @@ -1,7 +1,7 @@ /* Application Load Balancer API -This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. +### DEPRECATED! This service, lb-application, is no longer maintained. Please use the alb service, version v2beta2 instead This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. API version: 1beta.0.0 */ diff --git a/services/lbapplication/model_rule.go b/services/lbapplication/model_rule.go index f45d20b8e..fa905b6f6 100644 --- a/services/lbapplication/model_rule.go +++ b/services/lbapplication/model_rule.go @@ -1,7 +1,7 @@ /* Application Load Balancer API -This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. +### DEPRECATED! This service, lb-application, is no longer maintained. Please use the alb service, version v2beta2 instead This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. API version: 1beta.0.0 */ diff --git a/services/lbapplication/model_status.go b/services/lbapplication/model_status.go index 34384841c..b07b44184 100644 --- a/services/lbapplication/model_status.go +++ b/services/lbapplication/model_status.go @@ -1,7 +1,7 @@ /* Application Load Balancer API -This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. +### DEPRECATED! This service, lb-application, is no longer maintained. Please use the alb service, version v2beta2 instead This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. API version: 1beta.0.0 */ diff --git a/services/lbapplication/model_target.go b/services/lbapplication/model_target.go index bc5cedc3e..18193ae3d 100644 --- a/services/lbapplication/model_target.go +++ b/services/lbapplication/model_target.go @@ -1,7 +1,7 @@ /* Application Load Balancer API -This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. +### DEPRECATED! This service, lb-application, is no longer maintained. Please use the alb service, version v2beta2 instead This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. API version: 1beta.0.0 */ diff --git a/services/lbapplication/model_target_pool.go b/services/lbapplication/model_target_pool.go index 296d73caf..10e913b2f 100644 --- a/services/lbapplication/model_target_pool.go +++ b/services/lbapplication/model_target_pool.go @@ -1,7 +1,7 @@ /* Application Load Balancer API -This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. +### DEPRECATED! This service, lb-application, is no longer maintained. Please use the alb service, version v2beta2 instead This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. API version: 1beta.0.0 */ diff --git a/services/lbapplication/model_update_credentials_payload.go b/services/lbapplication/model_update_credentials_payload.go index df63904a0..7b61f05ff 100644 --- a/services/lbapplication/model_update_credentials_payload.go +++ b/services/lbapplication/model_update_credentials_payload.go @@ -1,7 +1,7 @@ /* Application Load Balancer API -This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. +### DEPRECATED! This service, lb-application, is no longer maintained. Please use the alb service, version v2beta2 instead This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. API version: 1beta.0.0 */ diff --git a/services/lbapplication/model_update_credentials_response.go b/services/lbapplication/model_update_credentials_response.go index 871796f42..556325578 100644 --- a/services/lbapplication/model_update_credentials_response.go +++ b/services/lbapplication/model_update_credentials_response.go @@ -1,7 +1,7 @@ /* Application Load Balancer API -This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. +### DEPRECATED! This service, lb-application, is no longer maintained. Please use the alb service, version v2beta2 instead This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. API version: 1beta.0.0 */ diff --git a/services/lbapplication/model_update_load_balancer_payload.go b/services/lbapplication/model_update_load_balancer_payload.go index 388a22360..e4c9d077a 100644 --- a/services/lbapplication/model_update_load_balancer_payload.go +++ b/services/lbapplication/model_update_load_balancer_payload.go @@ -1,7 +1,7 @@ /* Application Load Balancer API -This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. +### DEPRECATED! This service, lb-application, is no longer maintained. Please use the alb service, version v2beta2 instead This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. API version: 1beta.0.0 */ diff --git a/services/lbapplication/model_update_target_pool_payload.go b/services/lbapplication/model_update_target_pool_payload.go index d8123f329..545ff74f8 100644 --- a/services/lbapplication/model_update_target_pool_payload.go +++ b/services/lbapplication/model_update_target_pool_payload.go @@ -1,7 +1,7 @@ /* Application Load Balancer API -This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. +### DEPRECATED! This service, lb-application, is no longer maintained. Please use the alb service, version v2beta2 instead This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. API version: 1beta.0.0 */ diff --git a/services/lbapplication/utils.go b/services/lbapplication/utils.go index 41f25bf0e..b07c51304 100644 --- a/services/lbapplication/utils.go +++ b/services/lbapplication/utils.go @@ -1,7 +1,7 @@ /* Application Load Balancer API -This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. +### DEPRECATED! This service, lb-application, is no longer maintained. Please use the alb service, version v2beta2 instead This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each application load balancer provided, two VMs are deployed in your OpenStack project subject to a fee. API version: 1beta.0.0 */