Skip to content

Commit 29538c1

Browse files
1 parent 009abd8 commit 29538c1

21 files changed

+282
-2156
lines changed

clients/google-api-services-compute/alpha/2.0.0/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-compute</artifactId>
25-
<version>alpha-rev20240730-2.0.0</version>
25+
<version>alpha-rev20240805-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-compute:alpha-rev20240730-2.0.0'
38+
implementation 'com.google.apis:google-api-services-compute:alpha-rev20240805-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-compute/alpha/2.0.0/com/google/api/services/compute/Compute.java

Lines changed: 0 additions & 1044 deletions
Large diffs are not rendered by default.

clients/google-api-services-compute/alpha/2.0.0/com/google/api/services/compute/model/BackendCustomMetric.java

Lines changed: 24 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -47,13 +47,14 @@ public final class BackendCustomMetric extends com.google.api.client.json.Generi
4747
private java.lang.Float maxUtilization;
4848

4949
/**
50-
* Name of a custom utilization signal. The name must be 1-24 characters long, and comply with
51-
* RFC1035. Specifically, the name must be 1-24 characters long and match the regular expression
52-
* [a-z]([-a-z0-9]*[a-z0-9])? which means the first character must be a lowercase letter, and all
53-
* following characters must be a dash, lowercase letter, or digit, except the last character,
54-
* which cannot be a dash. For usage guidelines, see Custom Metrics balancing mode. This field can
55-
* only be used for a global or regional backend service with the loadBalancingScheme set to
56-
* EXTERNAL_MANAGED, INTERNAL_MANAGED INTERNAL_SELF_MANAGED.
50+
* Name of a custom utilization signal. The name must be 1-64 characters long, and comply with
51+
* relaxed RFC1035. Specifically, the name must be 1-64 characters long and match the regular
52+
* expression [a-z]([-_.a-z0-9]*[a-z0-9])? which means the first character must be a lowercase
53+
* letter, and all following characters must be a dash, period, underscore, lowercase letter, or
54+
* digit, except the last character, which cannot be a dash, period, or underscore. For usage
55+
* guidelines, see Custom Metrics balancing mode. This field can only be used for a global or
56+
* regional backend service with the loadBalancingScheme set to EXTERNAL_MANAGED, INTERNAL_MANAGED
57+
* INTERNAL_SELF_MANAGED.
5758
* The value may be {@code null}.
5859
*/
5960
@com.google.api.client.util.Key
@@ -98,27 +99,29 @@ public BackendCustomMetric setMaxUtilization(java.lang.Float maxUtilization) {
9899
}
99100

100101
/**
101-
* Name of a custom utilization signal. The name must be 1-24 characters long, and comply with
102-
* RFC1035. Specifically, the name must be 1-24 characters long and match the regular expression
103-
* [a-z]([-a-z0-9]*[a-z0-9])? which means the first character must be a lowercase letter, and all
104-
* following characters must be a dash, lowercase letter, or digit, except the last character,
105-
* which cannot be a dash. For usage guidelines, see Custom Metrics balancing mode. This field can
106-
* only be used for a global or regional backend service with the loadBalancingScheme set to
107-
* EXTERNAL_MANAGED, INTERNAL_MANAGED INTERNAL_SELF_MANAGED.
102+
* Name of a custom utilization signal. The name must be 1-64 characters long, and comply with
103+
* relaxed RFC1035. Specifically, the name must be 1-64 characters long and match the regular
104+
* expression [a-z]([-_.a-z0-9]*[a-z0-9])? which means the first character must be a lowercase
105+
* letter, and all following characters must be a dash, period, underscore, lowercase letter, or
106+
* digit, except the last character, which cannot be a dash, period, or underscore. For usage
107+
* guidelines, see Custom Metrics balancing mode. This field can only be used for a global or
108+
* regional backend service with the loadBalancingScheme set to EXTERNAL_MANAGED, INTERNAL_MANAGED
109+
* INTERNAL_SELF_MANAGED.
108110
* @return value or {@code null} for none
109111
*/
110112
public java.lang.String getName() {
111113
return name;
112114
}
113115

114116
/**
115-
* Name of a custom utilization signal. The name must be 1-24 characters long, and comply with
116-
* RFC1035. Specifically, the name must be 1-24 characters long and match the regular expression
117-
* [a-z]([-a-z0-9]*[a-z0-9])? which means the first character must be a lowercase letter, and all
118-
* following characters must be a dash, lowercase letter, or digit, except the last character,
119-
* which cannot be a dash. For usage guidelines, see Custom Metrics balancing mode. This field can
120-
* only be used for a global or regional backend service with the loadBalancingScheme set to
121-
* EXTERNAL_MANAGED, INTERNAL_MANAGED INTERNAL_SELF_MANAGED.
117+
* Name of a custom utilization signal. The name must be 1-64 characters long, and comply with
118+
* relaxed RFC1035. Specifically, the name must be 1-64 characters long and match the regular
119+
* expression [a-z]([-_.a-z0-9]*[a-z0-9])? which means the first character must be a lowercase
120+
* letter, and all following characters must be a dash, period, underscore, lowercase letter, or
121+
* digit, except the last character, which cannot be a dash, period, or underscore. For usage
122+
* guidelines, see Custom Metrics balancing mode. This field can only be used for a global or
123+
* regional backend service with the loadBalancingScheme set to EXTERNAL_MANAGED, INTERNAL_MANAGED
124+
* INTERNAL_SELF_MANAGED.
122125
* @param name name or {@code null} for none
123126
*/
124127
public BackendCustomMetric setName(java.lang.String name) {

clients/google-api-services-compute/alpha/2.0.0/com/google/api/services/compute/model/FutureReservationStatusExistingMatchingUsageInfo.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public final class FutureReservationStatusExistingMatchingUsageInfo extends com.
4242
* The value may be {@code null}.
4343
*/
4444
@com.google.api.client.util.Key
45-
private String timestamp;
45+
private java.lang.String timestamp;
4646

4747
/**
4848
* Count to represent min(FR total_count,
@@ -67,15 +67,15 @@ public FutureReservationStatusExistingMatchingUsageInfo setCount(java.lang.Long
6767
* Timestamp when the matching usage was calculated
6868
* @return value or {@code null} for none
6969
*/
70-
public String getTimestamp() {
70+
public java.lang.String getTimestamp() {
7171
return timestamp;
7272
}
7373

7474
/**
7575
* Timestamp when the matching usage was calculated
7676
* @param timestamp timestamp or {@code null} for none
7777
*/
78-
public FutureReservationStatusExistingMatchingUsageInfo setTimestamp(String timestamp) {
78+
public FutureReservationStatusExistingMatchingUsageInfo setTimestamp(java.lang.String timestamp) {
7979
this.timestamp = timestamp;
8080
return this;
8181
}

0 commit comments

Comments
 (0)