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
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-cloudnumberregistry</artifactId>
<version>v1alpha-rev20260506-2.0.0</version>
<version>v1alpha-rev20260527-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-cloudnumberregistry:v1alpha-rev20260506-2.0.0'
implementation 'com.google.apis:google-api-services-cloudnumberregistry:v1alpha-rev20260527-2.0.0'
}
```

Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -31,28 +31,28 @@
public final class AggregatedData extends com.google.api.client.json.GenericJson {

/**
* Output only. Number of custom ranges in the RegistryBook.
* Output only. Number of CustomRanges in the RegistryBook.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.Integer customRangesCount;

/**
* Output only. Number of custom realms in the RegistryBook.
* Output only. Number of custom Realms in the RegistryBook.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.Integer customRealmsCount;

/**
* Output only. Number of discovered ranges in the RegistryBook.
* Output only. Number of DiscoveredRanges in the RegistryBook.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.Integer discoveredRangesCount;

/**
* Output only. Number of discovered realms in the RegistryBook.
* Output only. Number of discovered Realms in the RegistryBook.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
Expand All @@ -66,15 +66,15 @@ public final class AggregatedData extends com.google.api.client.json.GenericJson
private java.lang.Integer uniqueScopesCount;

/**
* Output only. Number of custom ranges in the RegistryBook.
* Output only. Number of CustomRanges in the RegistryBook.
* @return value or {@code null} for none
*/
public java.lang.Integer getCustomRangesCount() {
return customRangesCount;
}

/**
* Output only. Number of custom ranges in the RegistryBook.
* Output only. Number of CustomRanges in the RegistryBook.
* @param customRangesCount customRangesCount or {@code null} for none
*/
public AggregatedData setCustomRangesCount(java.lang.Integer customRangesCount) {
Expand All @@ -83,15 +83,15 @@ public AggregatedData setCustomRangesCount(java.lang.Integer customRangesCount)
}

/**
* Output only. Number of custom realms in the RegistryBook.
* Output only. Number of custom Realms in the RegistryBook.
* @return value or {@code null} for none
*/
public java.lang.Integer getCustomRealmsCount() {
return customRealmsCount;
}

/**
* Output only. Number of custom realms in the RegistryBook.
* Output only. Number of custom Realms in the RegistryBook.
* @param customRealmsCount customRealmsCount or {@code null} for none
*/
public AggregatedData setCustomRealmsCount(java.lang.Integer customRealmsCount) {
Expand All @@ -100,15 +100,15 @@ public AggregatedData setCustomRealmsCount(java.lang.Integer customRealmsCount)
}

/**
* Output only. Number of discovered ranges in the RegistryBook.
* Output only. Number of DiscoveredRanges in the RegistryBook.
* @return value or {@code null} for none
*/
public java.lang.Integer getDiscoveredRangesCount() {
return discoveredRangesCount;
}

/**
* Output only. Number of discovered ranges in the RegistryBook.
* Output only. Number of DiscoveredRanges in the RegistryBook.
* @param discoveredRangesCount discoveredRangesCount or {@code null} for none
*/
public AggregatedData setDiscoveredRangesCount(java.lang.Integer discoveredRangesCount) {
Expand All @@ -117,15 +117,15 @@ public AggregatedData setDiscoveredRangesCount(java.lang.Integer discoveredRange
}

/**
* Output only. Number of discovered realms in the RegistryBook.
* Output only. Number of discovered Realms in the RegistryBook.
* @return value or {@code null} for none
*/
public java.lang.Integer getDiscoveredRealmsCount() {
return discoveredRealmsCount;
}

/**
* Output only. Number of discovered realms in the RegistryBook.
* Output only. Number of discovered Realms in the RegistryBook.
* @param discoveredRealmsCount discoveredRealmsCount or {@code null} for none
*/
public AggregatedData setDiscoveredRealmsCount(java.lang.Integer discoveredRealmsCount) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
package com.google.api.services.cloudnumberregistry.v1alpha.model;

/**
* Message describing Attribute object
* A key-value pair representing a custom attribute associated with a resource.
*
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
* transmitted over HTTP when working with the Cloud Number Registry API. For a detailed explanation
Expand All @@ -31,29 +31,29 @@
public final class Attribute extends com.google.api.client.json.GenericJson {

/**
* Required. Key of attribute
* Required. The key of the attribute.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String key;

/**
* Required. Value of attribute
* Required. The value of the attribute.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String value;

/**
* Required. Key of attribute
* Required. The key of the attribute.
* @return value or {@code null} for none
*/
public java.lang.String getKey() {
return key;
}

/**
* Required. Key of attribute
* Required. The key of the attribute.
* @param key key or {@code null} for none
*/
public Attribute setKey(java.lang.String key) {
Expand All @@ -62,15 +62,15 @@ public Attribute setKey(java.lang.String key) {
}

/**
* Required. Value of attribute
* Required. The value of the attribute.
* @return value or {@code null} for none
*/
public java.lang.String getValue() {
return value;
}

/**
* Required. Value of attribute
* Required. The value of the attribute.
* @param value value or {@code null} for none
*/
public Attribute setValue(java.lang.String value) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
package com.google.api.services.cloudnumberregistry.v1alpha.model;

/**
* Message for response to checking the availability of IpamAdminScopes
* Response message for the CloudNumberRegistry.CheckAvailabilityIpamAdminScopes method.
*
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
* transmitted over HTTP when working with the Cloud Number Registry API. For a detailed explanation
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
package com.google.api.services.cloudnumberregistry.v1alpha.model;

/**
* Message for cleaning up a IpamAdminScope
* Request message for the CloudNumberRegistry.CleanupIpamAdminScope method.
*
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
* transmitted over HTTP when working with the Cloud Number Registry API. For a detailed explanation
Expand Down
Loading