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
4 changes: 2 additions & 2 deletions clients/google-api-services-netapp/v1/2.0.0/README.md
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-netapp</artifactId>
<version>v1-rev20260318-2.0.0</version>
<version>v1-rev20260326-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-netapp:v1-rev20260318-2.0.0'
implementation 'com.google.apis:google-api-services-netapp:v1-rev20260326-2.0.0'
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -312,10 +312,14 @@ public Get set(String parameterName, Object value) {
}
}
/**
* Lists information about the supported locations for this service. This method can be called in
* two ways: * **List all public locations:** Use the path `GET /v1/locations`. * **List project-
* visible locations:** Use the path `GET /v1/projects/{project_id}/locations`. This may include
* public locations as well as private or other locations specifically visible to the project.
* Lists information about the supported locations for this service. This method lists locations
* based on the resource scope provided in the [ListLocationsRequest.name] field: * **Global
* locations**: If `name` is empty, the method lists the public locations available to all projects.
* * **Project-specific locations**: If `name` follows the format `projects/{project}`, the method
* lists locations visible to that specific project. This includes public, private, or other
* project-specific locations enabled for the project. For gRPC and client library implementations,
* the resource name is passed as the `name` field. For direct service calls, the resource name is
* incorporated into the request path based on the specific service implementation and version.
*
* Create a request for the method "locations.list".
*
Expand All @@ -339,10 +343,15 @@ public class List extends NetAppFilesRequest<com.google.api.services.netapp.v1.m
java.util.regex.Pattern.compile("^projects/[^/]+$");

/**
* Lists information about the supported locations for this service. This method can be called in
* two ways: * **List all public locations:** Use the path `GET /v1/locations`. * **List project-
* visible locations:** Use the path `GET /v1/projects/{project_id}/locations`. This may include
* public locations as well as private or other locations specifically visible to the project.
* Lists information about the supported locations for this service. This method lists locations
* based on the resource scope provided in the [ListLocationsRequest.name] field: * **Global
* locations**: If `name` is empty, the method lists the public locations available to all
* projects. * **Project-specific locations**: If `name` follows the format `projects/{project}`,
* the method lists locations visible to that specific project. This includes public, private, or
* other project-specific locations enabled for the project. For gRPC and client library
* implementations, the resource name is passed as the `name` field. For direct service calls, the
* resource name is incorporated into the request path based on the specific service
* implementation and version.
*
* Create a request for the method "locations.list".
*
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -206,14 +206,6 @@ public final class StoragePool extends com.google.api.client.json.GenericJson {
@com.google.api.client.util.Key
private java.lang.Boolean satisfiesPzs;

/**
* Optional. The effective scale tier of the storage pool. If `scale_tier` is not specified during
* creation, this defaults to `SCALE_TIER_STANDARD`.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String scaleTier;

/**
* Required. Service level of the storage pool
* The value may be {@code null}.
Expand Down Expand Up @@ -704,25 +696,6 @@ public StoragePool setSatisfiesPzs(java.lang.Boolean satisfiesPzs) {
return this;
}

/**
* Optional. The effective scale tier of the storage pool. If `scale_tier` is not specified during
* creation, this defaults to `SCALE_TIER_STANDARD`.
* @return value or {@code null} for none
*/
public java.lang.String getScaleTier() {
return scaleTier;
}

/**
* Optional. The effective scale tier of the storage pool. If `scale_tier` is not specified during
* creation, this defaults to `SCALE_TIER_STANDARD`.
* @param scaleTier scaleTier or {@code null} for none
*/
public StoragePool setScaleTier(java.lang.String scaleTier) {
this.scaleTier = scaleTier;
return this;
}

/**
* Required. Service level of the storage pool
* @return value or {@code null} for none
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -164,13 +164,6 @@ public final class Volume extends com.google.api.client.json.GenericJson {
@com.google.api.client.util.Key
private java.lang.Boolean largeCapacity;

/**
* Optional. Large capacity config for the volume.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private LargeCapacityConfig largeCapacityConfig;

/**
* Output only. Flag indicating if the volume is NFS LDAP enabled or not.
* The value may be {@code null}.
Expand Down Expand Up @@ -670,23 +663,6 @@ public Volume setLargeCapacity(java.lang.Boolean largeCapacity) {
return this;
}

/**
* Optional. Large capacity config for the volume.
* @return value or {@code null} for none
*/
public LargeCapacityConfig getLargeCapacityConfig() {
return largeCapacityConfig;
}

/**
* Optional. Large capacity config for the volume.
* @param largeCapacityConfig largeCapacityConfig or {@code null} for none
*/
public Volume setLargeCapacityConfig(LargeCapacityConfig largeCapacityConfig) {
this.largeCapacityConfig = largeCapacityConfig;
return this;
}

/**
* Output only. Flag indicating if the volume is NFS LDAP enabled or not.
* @return value or {@code null} for none
Expand Down
4 changes: 2 additions & 2 deletions clients/google-api-services-netapp/v1/2.0.0/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@

<groupId>com.google.apis</groupId>
<artifactId>google-api-services-netapp</artifactId>
<version>v1-rev20260318-2.0.0</version>
<name>NetApp API v1-rev20260318-2.0.0</name>
<version>v1-rev20260326-2.0.0</version>
<name>NetApp API v1-rev20260326-2.0.0</name>
<packaging>jar</packaging>

<inceptionYear>2011</inceptionYear>
Expand Down
4 changes: 2 additions & 2 deletions clients/google-api-services-netapp/v1/README.md
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-netapp</artifactId>
<version>v1-rev20260318-2.0.0</version>
<version>v1-rev20260326-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-netapp:v1-rev20260318-2.0.0'
implementation 'com.google.apis:google-api-services-netapp:v1-rev20260326-2.0.0'
}
```

Expand Down
4 changes: 2 additions & 2 deletions clients/google-api-services-netapp/v1beta1/2.0.0/README.md
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-netapp</artifactId>
<version>v1beta1-rev20260318-2.0.0</version>
<version>v1beta1-rev20260326-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-netapp:v1beta1-rev20260318-2.0.0'
implementation 'com.google.apis:google-api-services-netapp:v1beta1-rev20260326-2.0.0'
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -312,10 +312,14 @@ public Get set(String parameterName, Object value) {
}
}
/**
* Lists information about the supported locations for this service. This method can be called in
* two ways: * **List all public locations:** Use the path `GET /v1/locations`. * **List project-
* visible locations:** Use the path `GET /v1/projects/{project_id}/locations`. This may include
* public locations as well as private or other locations specifically visible to the project.
* Lists information about the supported locations for this service. This method lists locations
* based on the resource scope provided in the [ListLocationsRequest.name] field: * **Global
* locations**: If `name` is empty, the method lists the public locations available to all projects.
* * **Project-specific locations**: If `name` follows the format `projects/{project}`, the method
* lists locations visible to that specific project. This includes public, private, or other
* project-specific locations enabled for the project. For gRPC and client library implementations,
* the resource name is passed as the `name` field. For direct service calls, the resource name is
* incorporated into the request path based on the specific service implementation and version.
*
* Create a request for the method "locations.list".
*
Expand All @@ -339,10 +343,15 @@ public class List extends NetAppFilesRequest<com.google.api.services.netapp.v1be
java.util.regex.Pattern.compile("^projects/[^/]+$");

/**
* Lists information about the supported locations for this service. This method can be called in
* two ways: * **List all public locations:** Use the path `GET /v1/locations`. * **List project-
* visible locations:** Use the path `GET /v1/projects/{project_id}/locations`. This may include
* public locations as well as private or other locations specifically visible to the project.
* Lists information about the supported locations for this service. This method lists locations
* based on the resource scope provided in the [ListLocationsRequest.name] field: * **Global
* locations**: If `name` is empty, the method lists the public locations available to all
* projects. * **Project-specific locations**: If `name` follows the format `projects/{project}`,
* the method lists locations visible to that specific project. This includes public, private, or
* other project-specific locations enabled for the project. For gRPC and client library
* implementations, the resource name is passed as the `name` field. For direct service calls, the
* resource name is incorporated into the request path based on the specific service
* implementation and version.
*
* Create a request for the method "locations.list".
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
package com.google.api.services.netapp.v1beta1.model;

/**
* Configuration for a Large Capacity Volume. A Large Capacity Volume supports sizes ranging from 12
* TiB to 20 PiB, it is composed of multiple internal constituents, and must be created in a large
* capacity pool.
* Configuration for a Large Capacity Volume. A Large Capacity Volume supports sizes ranging from
* 4.8 TiB to 20 PiB, it is composed of multiple internal constituents, and must be created in a
* large capacity pool.
*
* <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 NetApp API. For a detailed explanation see:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -207,13 +207,21 @@ public final class StoragePool extends com.google.api.client.json.GenericJson {
private java.lang.Boolean satisfiesPzs;

/**
* Optional. The effective scale tier of the storage pool. If `scale_tier` is not specified during
* creation, this defaults to `SCALE_TIER_STANDARD`.
* Optional. Deprecated: Use scale_type instead. The effective scale tier of the storage pool. If
* `scale_tier` is not specified during creation, this defaults to `SCALE_TIER_STANDARD`.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String scaleTier;

/**
* Optional. The scale type of the storage pool. Defaults to `SCALE_TYPE_DEFAULT` if not
* specified.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String scaleType;

/**
* Required. Service level of the storage pool
* The value may be {@code null}.
Expand Down Expand Up @@ -705,24 +713,43 @@ public StoragePool setSatisfiesPzs(java.lang.Boolean satisfiesPzs) {
}

/**
* Optional. The effective scale tier of the storage pool. If `scale_tier` is not specified during
* creation, this defaults to `SCALE_TIER_STANDARD`.
* Optional. Deprecated: Use scale_type instead. The effective scale tier of the storage pool. If
* `scale_tier` is not specified during creation, this defaults to `SCALE_TIER_STANDARD`.
* @return value or {@code null} for none
*/
public java.lang.String getScaleTier() {
return scaleTier;
}

/**
* Optional. The effective scale tier of the storage pool. If `scale_tier` is not specified during
* creation, this defaults to `SCALE_TIER_STANDARD`.
* Optional. Deprecated: Use scale_type instead. The effective scale tier of the storage pool. If
* `scale_tier` is not specified during creation, this defaults to `SCALE_TIER_STANDARD`.
* @param scaleTier scaleTier or {@code null} for none
*/
public StoragePool setScaleTier(java.lang.String scaleTier) {
this.scaleTier = scaleTier;
return this;
}

/**
* Optional. The scale type of the storage pool. Defaults to `SCALE_TYPE_DEFAULT` if not
* specified.
* @return value or {@code null} for none
*/
public java.lang.String getScaleType() {
return scaleType;
}

/**
* Optional. The scale type of the storage pool. Defaults to `SCALE_TYPE_DEFAULT` if not
* specified.
* @param scaleType scaleType or {@code null} for none
*/
public StoragePool setScaleType(java.lang.String scaleType) {
this.scaleType = scaleType;
return this;
}

/**
* Required. Service level of the storage pool
* @return value or {@code null} for none
Expand Down
4 changes: 2 additions & 2 deletions clients/google-api-services-netapp/v1beta1/2.0.0/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@

<groupId>com.google.apis</groupId>
<artifactId>google-api-services-netapp</artifactId>
<version>v1beta1-rev20260318-2.0.0</version>
<name>NetApp API v1beta1-rev20260318-2.0.0</name>
<version>v1beta1-rev20260326-2.0.0</version>
<name>NetApp API v1beta1-rev20260326-2.0.0</name>
<packaging>jar</packaging>

<inceptionYear>2011</inceptionYear>
Expand Down
Loading