Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@
- **Feature:** Add fields `usedCredentials` and `usedLoadbalancers` to `GetQuotaResponse`
- **Improvement:** Support additional properties in models
- `loadbalancer`:
- [v0.4.0](services/loadbalancer/CHANGELOG.md#v040)
- Deprecation of methods `serverNameIndicators`, `setServerNameIndicators` and `getServerNameIndicators` in `Listener` model class
- [v0.3.0](services/loadbalancer/CHANGELOG.md#v030)
- **Feature:** Add new fields `AltPort` and `HttpHealthCheck` to `ActiveHealthCheck`
- [v0.2.1](services/loadbalancer/CHANGELOG.md#v021)
Expand Down
3 changes: 3 additions & 0 deletions services/loadbalancer/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## v0.4.0
- Deprecation of methods `serverNameIndicators`, `setServerNameIndicators` and `getServerNameIndicators` in `Listener` model class

## v0.3.0
- **Feature:** Add new fields `AltPort` and `HttpHealthCheck` to `ActiveHealthCheck`

Expand Down
2 changes: 1 addition & 1 deletion services/loadbalancer/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.3.0
0.4.0
2 changes: 1 addition & 1 deletion services/loadbalancer/oas_commit
Original file line number Diff line number Diff line change
@@ -1 +1 @@
10774896634990c655a523f5f0fabd6e2be9e216
95de5cba3201a683657cb472d5fa30aa768f19cc
Original file line number Diff line number Diff line change
Expand Up @@ -1592,9 +1592,8 @@ private okhttp3.Call getQuotaValidateBeforeCall(
}

/**
* Get the quota of Load Balancers in a project. Retrieves the configured Load Balancer quota
* for the project. Limit can be changed via service request. There can be 3 times as many
* observability credentials as Load Balancers.
* Get the quota of Network Load Balancers in a project. Retrieves the configured Network Load
* Balancer quota for the project. Limit can be changed via service request.
*
* @param projectId (required)
* @param region (required)
Expand All @@ -1621,9 +1620,8 @@ public GetQuotaResponse getQuota(
}

/**
* Get the quota of Load Balancers in a project. Retrieves the configured Load Balancer quota
* for the project. Limit can be changed via service request. There can be 3 times as many
* observability credentials as Load Balancers.
* Get the quota of Network Load Balancers in a project. Retrieves the configured Network Load
* Balancer quota for the project. Limit can be changed via service request.
*
* @param projectId (required)
* @param region (required)
Expand Down Expand Up @@ -1651,9 +1649,9 @@ public ApiResponse<GetQuotaResponse> getQuotaWithHttpInfo(
}

/**
* Get the quota of Load Balancers in a project. (asynchronously) Retrieves the configured Load
* Balancer quota for the project. Limit can be changed via service request. There can be 3
* times as many observability credentials as Load Balancers.
* Get the quota of Network Load Balancers in a project. (asynchronously) Retrieves the
* configured Network Load Balancer quota for the project. Limit can be changed via service
* request.
*
* @param projectId (required)
* @param region (required)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public GetQuotaResponse maxCredentials(@javax.annotation.Nullable Integer maxCre

/**
* The maximum number of observability credentials that can be stored in this project. minimum:
* -1 maximum: 999
* -1 maximum: 1000000
*
* @return maxCredentials
*/
Expand All @@ -99,8 +99,7 @@ public GetQuotaResponse maxLoadBalancers(@javax.annotation.Nullable Integer maxL
}

/**
* The maximum number of load balancing servers in this project. Unlimited if set to -1.
* minimum: -1 maximum: 1000000
* The maximum number of load balancing servers in this project. minimum: -1 maximum: 1000000
*
* @return maxLoadBalancers
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,7 @@ public static void validateJsonElement(JsonElement jsonElement) throws IOExcepti

public static final String SERIALIZED_NAME_SERVER_NAME_INDICATORS = "serverNameIndicators";

@Deprecated
@SerializedName(SERIALIZED_NAME_SERVER_NAME_INDICATORS)
@javax.annotation.Nullable private List<ServerNameIndicator> serverNameIndicators = new ArrayList<>();

Expand Down Expand Up @@ -212,6 +213,7 @@ public void setProtocol(@javax.annotation.Nullable ProtocolEnum protocol) {
this.protocol = protocol;
}

@Deprecated
public Listener serverNameIndicators(
@javax.annotation.Nullable List<ServerNameIndicator> serverNameIndicators) {
this.serverNameIndicators = serverNameIndicators;
Expand All @@ -231,11 +233,14 @@ public Listener addServerNameIndicatorsItem(ServerNameIndicator serverNameIndica
* listener.
*
* @return serverNameIndicators
* @deprecated
*/
@Deprecated
@javax.annotation.Nullable public List<ServerNameIndicator> getServerNameIndicators() {
return serverNameIndicators;
}

@Deprecated
public void setServerNameIndicators(
@javax.annotation.Nullable List<ServerNameIndicator> serverNameIndicators) {
this.serverNameIndicators = serverNameIndicators;
Expand Down