Skip to content
Closed
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: 1 addition & 1 deletion services/loadbalancer/oas_commit
Original file line number Diff line number Diff line change
@@ -1 +1 @@
10774896634990c655a523f5f0fabd6e2be9e216
b0b8472dbda9d5f57844ecdb747888008b0814f1
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