diff --git a/packages/google-cloud-netapp/.gitattributes b/packages/google-cloud-netapp/.gitattributes new file mode 100644 index 000000000000..33739cb74e44 --- /dev/null +++ b/packages/google-cloud-netapp/.gitattributes @@ -0,0 +1,4 @@ +*.ts text eol=lf +*.js text eol=lf +protos/* linguist-generated +**/api-extractor.json linguist-language=JSON-with-Comments diff --git a/packages/google-cloud-netapp/CODE_OF_CONDUCT.md b/packages/google-cloud-netapp/CODE_OF_CONDUCT.md new file mode 100644 index 000000000000..2add2547a812 --- /dev/null +++ b/packages/google-cloud-netapp/CODE_OF_CONDUCT.md @@ -0,0 +1,94 @@ + +# Code of Conduct + +## Our Pledge + +In the interest of fostering an open and welcoming environment, we as +contributors and maintainers pledge to making participation in our project and +our community a harassment-free experience for everyone, regardless of age, body +size, disability, ethnicity, gender identity and expression, level of +experience, education, socio-economic status, nationality, personal appearance, +race, religion, or sexual identity and orientation. + +## Our Standards + +Examples of behavior that contributes to creating a positive environment +include: + +* Using welcoming and inclusive language +* Being respectful of differing viewpoints and experiences +* Gracefully accepting constructive criticism +* Focusing on what is best for the community +* Showing empathy towards other community members + +Examples of unacceptable behavior by participants include: + +* The use of sexualized language or imagery and unwelcome sexual attention or + advances +* Trolling, insulting/derogatory comments, and personal or political attacks +* Public or private harassment +* Publishing others' private information, such as a physical or electronic + address, without explicit permission +* Other conduct which could reasonably be considered inappropriate in a + professional setting + +## Our Responsibilities + +Project maintainers are responsible for clarifying the standards of acceptable +behavior and are expected to take appropriate and fair corrective action in +response to any instances of unacceptable behavior. + +Project maintainers have the right and responsibility to remove, edit, or reject +comments, commits, code, wiki edits, issues, and other contributions that are +not aligned to this Code of Conduct, or to ban temporarily or permanently any +contributor for other behaviors that they deem inappropriate, threatening, +offensive, or harmful. + +## Scope + +This Code of Conduct applies both within project spaces and in public spaces +when an individual is representing the project or its community. Examples of +representing a project or community include using an official project e-mail +address, posting via an official social media account, or acting as an appointed +representative at an online or offline event. Representation of a project may be +further defined and clarified by project maintainers. + +This Code of Conduct also applies outside the project spaces when the Project +Steward has a reasonable belief that an individual's behavior may have a +negative impact on the project or its community. + +## Conflict Resolution + +We do not believe that all conflict is bad; healthy debate and disagreement +often yield positive results. However, it is never okay to be disrespectful or +to engage in behavior that violates the project’s code of conduct. + +If you see someone violating the code of conduct, you are encouraged to address +the behavior directly with those involved. Many issues can be resolved quickly +and easily, and this gives people more control over the outcome of their +dispute. If you are unable to resolve the matter for any reason, or if the +behavior is threatening or harassing, report it. We are dedicated to providing +an environment where participants feel welcome and safe. + +Reports should be directed to *googleapis-stewards@google.com*, the +Project Steward(s) for *Google Cloud Client Libraries*. It is the Project Steward’s duty to +receive and address reported violations of the code of conduct. They will then +work with a committee consisting of representatives from the Open Source +Programs Office and the Google Open Source Strategy team. If for any reason you +are uncomfortable reaching out to the Project Steward, please email +opensource@google.com. + +We will investigate every complaint, but you may not receive a direct response. +We will use our discretion in determining when and how to follow up on reported +incidents, which may range from not taking action to permanent expulsion from +the project and project-sponsored spaces. We will notify the accused of the +report and provide them an opportunity to discuss it before any action is taken. +The identity of the reporter will be omitted from the details of the report +supplied to the accused. In potentially harmful situations, such as ongoing +harassment or threats to anyone's safety, we may take action without notice. + +## Attribution + +This Code of Conduct is adapted from the Contributor Covenant, version 1.4, +available at +https://www.contributor-covenant.org/version/1/4/code-of-conduct.html \ No newline at end of file diff --git a/packages/google-cloud-netapp/CONTRIBUTING.md b/packages/google-cloud-netapp/CONTRIBUTING.md new file mode 100644 index 000000000000..46b5bf762126 --- /dev/null +++ b/packages/google-cloud-netapp/CONTRIBUTING.md @@ -0,0 +1,76 @@ +# How to become a contributor and submit your own code + +**Table of contents** + +* [Contributor License Agreements](#contributor-license-agreements) +* [Contributing a patch](#contributing-a-patch) +* [Running the tests](#running-the-tests) +* [Releasing the library](#releasing-the-library) + +## Contributor License Agreements + +We'd love to accept your sample apps and patches! Before we can take them, we +have to jump a couple of legal hurdles. + +Please fill out either the individual or corporate Contributor License Agreement +(CLA). + + * If you are an individual writing original source code and you're sure you + own the intellectual property, then you'll need to sign an [individual CLA](https://developers.google.com/open-source/cla/individual). + * If you work for a company that wants to allow you to contribute your work, + then you'll need to sign a [corporate CLA](https://developers.google.com/open-source/cla/corporate). + +Follow either of the two links above to access the appropriate CLA and +instructions for how to sign and return it. Once we receive it, we'll be able to +accept your pull requests. + +## Contributing A Patch + +1. Submit an issue describing your proposed change to the repo in question. +1. The repo owner will respond to your issue promptly. +1. If your proposed change is accepted, and you haven't already done so, sign a + Contributor License Agreement (see details above). +1. Fork the desired repo, develop and test your code changes. +1. Ensure that your code adheres to the existing style in the code to which + you are contributing. +1. Ensure that your code has an appropriate set of tests which all pass. +1. Title your pull request following [Conventional Commits](https://www.conventionalcommits.org/) styling. +1. Submit a pull request. + +### Before you begin + +1. [Select or create a Cloud Platform project][projects]. +1. [Enable billing for your project][billing]. +1. [Enable the Netapp API][enable_api]. +1. [Set up authentication with a service account][auth] so you can access the + API from your local workstation. + + +## Running the tests + +1. [Prepare your environment for Node.js setup][setup]. + +1. Install dependencies: + + npm install + +1. Run the tests: + + # Run unit tests. + npm test + + # Run sample integration tests. + npm run samples-test + + # Run all system tests. + npm run system-test + +1. Lint (and maybe fix) any changes: + + npm run fix + +[setup]: https://cloud.google.com/nodejs/docs/setup +[projects]: https://console.cloud.google.com/project +[billing]: https://support.google.com/cloud/answer/6293499#enable-billing +[enable_api]: https://console.cloud.google.com/flows/enableapi?apiid=netapp.googleapis.com +[auth]: https://cloud.google.com/docs/authentication/getting-started \ No newline at end of file diff --git a/packages/google-cloud-netapp/LICENSE b/packages/google-cloud-netapp/LICENSE new file mode 100644 index 000000000000..d64569567334 --- /dev/null +++ b/packages/google-cloud-netapp/LICENSE @@ -0,0 +1,202 @@ + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/packages/google-cloud-netapp/protos/google/cloud/netapp/v1/common.proto b/packages/google-cloud-netapp/protos/google/cloud/netapp/v1/common.proto index 789ad87e8bed..d73116f1b372 100644 --- a/packages/google-cloud-netapp/protos/google/cloud/netapp/v1/common.proto +++ b/packages/google-cloud-netapp/protos/google/cloud/netapp/v1/common.proto @@ -89,6 +89,20 @@ enum StoragePoolType { UNIFIED = 2; } +// Defines the scale-type of a UNIFIED Storage Pool. +enum ScaleType { + // Unspecified scale type. + SCALE_TYPE_UNSPECIFIED = 0; + + // Represents standard capacity and performance scale-type. + // Suitable for general purpose workloads. + SCALE_TYPE_DEFAULT = 1; + + // Represents higher capacity and performance scale-type. + // Suitable for more demanding workloads. + SCALE_TYPE_SCALEOUT = 2; +} + // Schedule for Hybrid Replication. // New enum values may be added in future to support different frequency of // replication. diff --git a/packages/google-cloud-netapp/protos/google/cloud/netapp/v1/storage_pool.proto b/packages/google-cloud-netapp/protos/google/cloud/netapp/v1/storage_pool.proto index 7bbca2f75887..6d7d0a090b73 100644 --- a/packages/google-cloud-netapp/protos/google/cloud/netapp/v1/storage_pool.proto +++ b/packages/google-cloud-netapp/protos/google/cloud/netapp/v1/storage_pool.proto @@ -323,6 +323,10 @@ message StoragePool { // GCNV ONTAP Mode APIs. If not specified during creation, it defaults to // `DEFAULT`. optional Mode mode = 36 [(google.api.field_behavior) = OPTIONAL]; + + // Optional. The scale type of the storage pool. Defaults to + // `SCALE_TYPE_DEFAULT` if not specified. + ScaleType scale_type = 38 [(google.api.field_behavior) = OPTIONAL]; } // ValidateDirectoryServiceRequest validates the directory service policy diff --git a/packages/google-cloud-netapp/protos/google/cloud/netapp/v1/volume.proto b/packages/google-cloud-netapp/protos/google/cloud/netapp/v1/volume.proto index d5526eaefd41..8b90c83e5602 100644 --- a/packages/google-cloud-netapp/protos/google/cloud/netapp/v1/volume.proto +++ b/packages/google-cloud-netapp/protos/google/cloud/netapp/v1/volume.proto @@ -423,7 +423,9 @@ message Volume { [(google.api.field_behavior) = OPTIONAL]; // Optional. Flag indicating if the volume will be a large capacity volume or - // a regular volume. + // a regular volume. This field is used for legacy FILE pools. For Unified + // pools, use the `large_capacity_config` field instead. This field and + // `large_capacity_config` are mutually exclusive. bool large_capacity = 32 [(google.api.field_behavior) = OPTIONAL]; // Optional. Flag indicating if the volume will have an IP address per node @@ -464,11 +466,28 @@ message Volume { repeated BlockDevice block_devices = 45 [(google.api.field_behavior) = OPTIONAL]; + // Optional. Large capacity config for the volume. + // Enables and configures large capacity for volumes in Unified pools with + // File protocols. Not applicable for Block protocols in Unified pools. + // This field and the legacy `large_capacity` boolean field + // are mutually exclusive. + LargeCapacityConfig large_capacity_config = 46 + [(google.api.field_behavior) = OPTIONAL]; + // Output only. If this volume is a clone, this field contains details about // the clone. CloneDetails clone_details = 47 [(google.api.field_behavior) = OUTPUT_ONLY]; } +// 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. +message LargeCapacityConfig { + // Optional. The number of internal constituents (e.g., FlexVols) for this + // large volume. The minimum number of constituents is 2. + int32 constituent_count = 1 [(google.api.field_behavior) = OPTIONAL]; +} + // Defines the export policy for the volume. message ExportPolicy { // Required. List of export policy rules diff --git a/packages/google-cloud-netapp/protos/protos.d.ts b/packages/google-cloud-netapp/protos/protos.d.ts index ebfa437a676d..01639c5941b2 100644 --- a/packages/google-cloud-netapp/protos/protos.d.ts +++ b/packages/google-cloud-netapp/protos/protos.d.ts @@ -5977,6 +5977,13 @@ export namespace google { UNIFIED = 2 } + /** ScaleType enum. */ + enum ScaleType { + SCALE_TYPE_UNSPECIFIED = 0, + SCALE_TYPE_DEFAULT = 1, + SCALE_TYPE_SCALEOUT = 2 + } + /** HybridReplicationSchedule enum. */ enum HybridReplicationSchedule { HYBRID_REPLICATION_SCHEDULE_UNSPECIFIED = 0, @@ -11621,6 +11628,9 @@ export namespace google { /** Volume blockDevices */ blockDevices?: (google.cloud.netapp.v1.IBlockDevice[]|null); + /** Volume largeCapacityConfig */ + largeCapacityConfig?: (google.cloud.netapp.v1.ILargeCapacityConfig|null); + /** Volume cloneDetails */ cloneDetails?: (google.cloud.netapp.v1.Volume.ICloneDetails|null); } @@ -11760,6 +11770,9 @@ export namespace google { /** Volume blockDevices. */ public blockDevices: google.cloud.netapp.v1.IBlockDevice[]; + /** Volume largeCapacityConfig. */ + public largeCapacityConfig?: (google.cloud.netapp.v1.ILargeCapacityConfig|null); + /** Volume cloneDetails. */ public cloneDetails?: (google.cloud.netapp.v1.Volume.ICloneDetails|null); @@ -11967,6 +11980,103 @@ export namespace google { } } + /** Properties of a LargeCapacityConfig. */ + interface ILargeCapacityConfig { + + /** LargeCapacityConfig constituentCount */ + constituentCount?: (number|null); + } + + /** Represents a LargeCapacityConfig. */ + class LargeCapacityConfig implements ILargeCapacityConfig { + + /** + * Constructs a new LargeCapacityConfig. + * @param [properties] Properties to set + */ + constructor(properties?: google.cloud.netapp.v1.ILargeCapacityConfig); + + /** LargeCapacityConfig constituentCount. */ + public constituentCount: number; + + /** + * Creates a new LargeCapacityConfig instance using the specified properties. + * @param [properties] Properties to set + * @returns LargeCapacityConfig instance + */ + public static create(properties?: google.cloud.netapp.v1.ILargeCapacityConfig): google.cloud.netapp.v1.LargeCapacityConfig; + + /** + * Encodes the specified LargeCapacityConfig message. Does not implicitly {@link google.cloud.netapp.v1.LargeCapacityConfig.verify|verify} messages. + * @param message LargeCapacityConfig message or plain object to encode + * @param [writer] Writer to encode to + * @returns Writer + */ + public static encode(message: google.cloud.netapp.v1.ILargeCapacityConfig, writer?: $protobuf.Writer): $protobuf.Writer; + + /** + * Encodes the specified LargeCapacityConfig message, length delimited. Does not implicitly {@link google.cloud.netapp.v1.LargeCapacityConfig.verify|verify} messages. + * @param message LargeCapacityConfig message or plain object to encode + * @param [writer] Writer to encode to + * @returns Writer + */ + public static encodeDelimited(message: google.cloud.netapp.v1.ILargeCapacityConfig, writer?: $protobuf.Writer): $protobuf.Writer; + + /** + * Decodes a LargeCapacityConfig message from the specified reader or buffer. + * @param reader Reader or buffer to decode from + * @param [length] Message length if known beforehand + * @returns LargeCapacityConfig + * @throws {Error} If the payload is not a reader or valid buffer + * @throws {$protobuf.util.ProtocolError} If required fields are missing + */ + public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.cloud.netapp.v1.LargeCapacityConfig; + + /** + * Decodes a LargeCapacityConfig message from the specified reader or buffer, length delimited. + * @param reader Reader or buffer to decode from + * @returns LargeCapacityConfig + * @throws {Error} If the payload is not a reader or valid buffer + * @throws {$protobuf.util.ProtocolError} If required fields are missing + */ + public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.cloud.netapp.v1.LargeCapacityConfig; + + /** + * Verifies a LargeCapacityConfig message. + * @param message Plain object to verify + * @returns `null` if valid, otherwise the reason why it is not + */ + public static verify(message: { [k: string]: any }): (string|null); + + /** + * Creates a LargeCapacityConfig message from a plain object. Also converts values to their respective internal types. + * @param object Plain object + * @returns LargeCapacityConfig + */ + public static fromObject(object: { [k: string]: any }): google.cloud.netapp.v1.LargeCapacityConfig; + + /** + * Creates a plain object from a LargeCapacityConfig message. Also converts values to other types if specified. + * @param message LargeCapacityConfig + * @param [options] Conversion options + * @returns Plain object + */ + public static toObject(message: google.cloud.netapp.v1.LargeCapacityConfig, options?: $protobuf.IConversionOptions): { [k: string]: any }; + + /** + * Converts this LargeCapacityConfig to JSON. + * @returns JSON object + */ + public toJSON(): { [k: string]: any }; + + /** + * Gets the default type url for LargeCapacityConfig + * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") + * @returns The default type url + */ + public static getTypeUrl(typeUrlPrefix?: string): string; + } + /** Properties of an ExportPolicy. */ interface IExportPolicy { @@ -15914,6 +16024,9 @@ export namespace google { /** StoragePool mode */ mode?: (google.cloud.netapp.v1.Mode|keyof typeof google.cloud.netapp.v1.Mode|null); + + /** StoragePool scaleType */ + scaleType?: (google.cloud.netapp.v1.ScaleType|keyof typeof google.cloud.netapp.v1.ScaleType|null); } /** Represents a StoragePool. */ @@ -16024,6 +16137,9 @@ export namespace google { /** StoragePool mode. */ public mode?: (google.cloud.netapp.v1.Mode|keyof typeof google.cloud.netapp.v1.Mode|null); + /** StoragePool scaleType. */ + public scaleType: (google.cloud.netapp.v1.ScaleType|keyof typeof google.cloud.netapp.v1.ScaleType); + /** * Creates a new StoragePool instance using the specified properties. * @param [properties] Properties to set diff --git a/packages/google-cloud-netapp/protos/protos.js b/packages/google-cloud-netapp/protos/protos.js index 43bea2b29fb1..ad8f2ad492a7 100644 --- a/packages/google-cloud-netapp/protos/protos.js +++ b/packages/google-cloud-netapp/protos/protos.js @@ -14060,6 +14060,22 @@ return values; })(); + /** + * ScaleType enum. + * @name google.cloud.netapp.v1.ScaleType + * @enum {number} + * @property {number} SCALE_TYPE_UNSPECIFIED=0 SCALE_TYPE_UNSPECIFIED value + * @property {number} SCALE_TYPE_DEFAULT=1 SCALE_TYPE_DEFAULT value + * @property {number} SCALE_TYPE_SCALEOUT=2 SCALE_TYPE_SCALEOUT value + */ + v1.ScaleType = (function() { + var valuesById = {}, values = Object.create(valuesById); + values[valuesById[0] = "SCALE_TYPE_UNSPECIFIED"] = 0; + values[valuesById[1] = "SCALE_TYPE_DEFAULT"] = 1; + values[valuesById[2] = "SCALE_TYPE_SCALEOUT"] = 2; + return values; + })(); + /** * HybridReplicationSchedule enum. * @name google.cloud.netapp.v1.HybridReplicationSchedule @@ -27880,6 +27896,7 @@ * @property {google.cloud.netapp.v1.ICacheParameters|null} [cacheParameters] Volume cacheParameters * @property {number|Long|null} [hotTierSizeUsedGib] Volume hotTierSizeUsedGib * @property {Array.|null} [blockDevices] Volume blockDevices + * @property {google.cloud.netapp.v1.ILargeCapacityConfig|null} [largeCapacityConfig] Volume largeCapacityConfig * @property {google.cloud.netapp.v1.Volume.ICloneDetails|null} [cloneDetails] Volume cloneDetails */ @@ -28240,6 +28257,14 @@ */ Volume.prototype.blockDevices = $util.emptyArray; + /** + * Volume largeCapacityConfig. + * @member {google.cloud.netapp.v1.ILargeCapacityConfig|null|undefined} largeCapacityConfig + * @memberof google.cloud.netapp.v1.Volume + * @instance + */ + Volume.prototype.largeCapacityConfig = null; + /** * Volume cloneDetails. * @member {google.cloud.netapp.v1.Volume.ICloneDetails|null|undefined} cloneDetails @@ -28386,6 +28411,8 @@ if (message.blockDevices != null && message.blockDevices.length) for (var i = 0; i < message.blockDevices.length; ++i) $root.google.cloud.netapp.v1.BlockDevice.encode(message.blockDevices[i], writer.uint32(/* id 45, wireType 2 =*/362).fork()).ldelim(); + if (message.largeCapacityConfig != null && Object.hasOwnProperty.call(message, "largeCapacityConfig")) + $root.google.cloud.netapp.v1.LargeCapacityConfig.encode(message.largeCapacityConfig, writer.uint32(/* id 46, wireType 2 =*/370).fork()).ldelim(); if (message.cloneDetails != null && Object.hasOwnProperty.call(message, "cloneDetails")) $root.google.cloud.netapp.v1.Volume.CloneDetails.encode(message.cloneDetails, writer.uint32(/* id 47, wireType 2 =*/378).fork()).ldelim(); return writer; @@ -28636,6 +28663,10 @@ message.blockDevices.push($root.google.cloud.netapp.v1.BlockDevice.decode(reader, reader.uint32())); break; } + case 46: { + message.largeCapacityConfig = $root.google.cloud.netapp.v1.LargeCapacityConfig.decode(reader, reader.uint32()); + break; + } case 47: { message.cloneDetails = $root.google.cloud.netapp.v1.Volume.CloneDetails.decode(reader, reader.uint32()); break; @@ -28912,6 +28943,11 @@ return "blockDevices." + error; } } + if (message.largeCapacityConfig != null && message.hasOwnProperty("largeCapacityConfig")) { + var error = $root.google.cloud.netapp.v1.LargeCapacityConfig.verify(message.largeCapacityConfig); + if (error) + return "largeCapacityConfig." + error; + } if (message.cloneDetails != null && message.hasOwnProperty("cloneDetails")) { var error = $root.google.cloud.netapp.v1.Volume.CloneDetails.verify(message.cloneDetails); if (error) @@ -29298,6 +29334,11 @@ message.blockDevices[i] = $root.google.cloud.netapp.v1.BlockDevice.fromObject(object.blockDevices[i]); } } + if (object.largeCapacityConfig != null) { + if (typeof object.largeCapacityConfig !== "object") + throw TypeError(".google.cloud.netapp.v1.Volume.largeCapacityConfig: object expected"); + message.largeCapacityConfig = $root.google.cloud.netapp.v1.LargeCapacityConfig.fromObject(object.largeCapacityConfig); + } if (object.cloneDetails != null) { if (typeof object.cloneDetails !== "object") throw TypeError(".google.cloud.netapp.v1.Volume.cloneDetails: object expected"); @@ -29379,6 +29420,7 @@ object.hotTierSizeUsedGib = options.longs === String ? long.toString() : options.longs === Number ? long.toNumber() : long; } else object.hotTierSizeUsedGib = options.longs === String ? "0" : 0; + object.largeCapacityConfig = null; object.cloneDetails = null; } if (message.name != null && message.hasOwnProperty("name")) @@ -29502,6 +29544,8 @@ for (var j = 0; j < message.blockDevices.length; ++j) object.blockDevices[j] = $root.google.cloud.netapp.v1.BlockDevice.toObject(message.blockDevices[j], options); } + if (message.largeCapacityConfig != null && message.hasOwnProperty("largeCapacityConfig")) + object.largeCapacityConfig = $root.google.cloud.netapp.v1.LargeCapacityConfig.toObject(message.largeCapacityConfig, options); if (message.cloneDetails != null && message.hasOwnProperty("cloneDetails")) object.cloneDetails = $root.google.cloud.netapp.v1.Volume.CloneDetails.toObject(message.cloneDetails, options); return object; @@ -29832,6 +29876,211 @@ return Volume; })(); + v1.LargeCapacityConfig = (function() { + + /** + * Properties of a LargeCapacityConfig. + * @memberof google.cloud.netapp.v1 + * @interface ILargeCapacityConfig + * @property {number|null} [constituentCount] LargeCapacityConfig constituentCount + */ + + /** + * Constructs a new LargeCapacityConfig. + * @memberof google.cloud.netapp.v1 + * @classdesc Represents a LargeCapacityConfig. + * @implements ILargeCapacityConfig + * @constructor + * @param {google.cloud.netapp.v1.ILargeCapacityConfig=} [properties] Properties to set + */ + function LargeCapacityConfig(properties) { + if (properties) + for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) + if (properties[keys[i]] != null) + this[keys[i]] = properties[keys[i]]; + } + + /** + * LargeCapacityConfig constituentCount. + * @member {number} constituentCount + * @memberof google.cloud.netapp.v1.LargeCapacityConfig + * @instance + */ + LargeCapacityConfig.prototype.constituentCount = 0; + + /** + * Creates a new LargeCapacityConfig instance using the specified properties. + * @function create + * @memberof google.cloud.netapp.v1.LargeCapacityConfig + * @static + * @param {google.cloud.netapp.v1.ILargeCapacityConfig=} [properties] Properties to set + * @returns {google.cloud.netapp.v1.LargeCapacityConfig} LargeCapacityConfig instance + */ + LargeCapacityConfig.create = function create(properties) { + return new LargeCapacityConfig(properties); + }; + + /** + * Encodes the specified LargeCapacityConfig message. Does not implicitly {@link google.cloud.netapp.v1.LargeCapacityConfig.verify|verify} messages. + * @function encode + * @memberof google.cloud.netapp.v1.LargeCapacityConfig + * @static + * @param {google.cloud.netapp.v1.ILargeCapacityConfig} message LargeCapacityConfig message or plain object to encode + * @param {$protobuf.Writer} [writer] Writer to encode to + * @returns {$protobuf.Writer} Writer + */ + LargeCapacityConfig.encode = function encode(message, writer) { + if (!writer) + writer = $Writer.create(); + if (message.constituentCount != null && Object.hasOwnProperty.call(message, "constituentCount")) + writer.uint32(/* id 1, wireType 0 =*/8).int32(message.constituentCount); + return writer; + }; + + /** + * Encodes the specified LargeCapacityConfig message, length delimited. Does not implicitly {@link google.cloud.netapp.v1.LargeCapacityConfig.verify|verify} messages. + * @function encodeDelimited + * @memberof google.cloud.netapp.v1.LargeCapacityConfig + * @static + * @param {google.cloud.netapp.v1.ILargeCapacityConfig} message LargeCapacityConfig message or plain object to encode + * @param {$protobuf.Writer} [writer] Writer to encode to + * @returns {$protobuf.Writer} Writer + */ + LargeCapacityConfig.encodeDelimited = function encodeDelimited(message, writer) { + return this.encode(message, writer).ldelim(); + }; + + /** + * Decodes a LargeCapacityConfig message from the specified reader or buffer. + * @function decode + * @memberof google.cloud.netapp.v1.LargeCapacityConfig + * @static + * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from + * @param {number} [length] Message length if known beforehand + * @returns {google.cloud.netapp.v1.LargeCapacityConfig} LargeCapacityConfig + * @throws {Error} If the payload is not a reader or valid buffer + * @throws {$protobuf.util.ProtocolError} If required fields are missing + */ + LargeCapacityConfig.decode = function decode(reader, length, error) { + if (!(reader instanceof $Reader)) + reader = $Reader.create(reader); + var end = length === undefined ? reader.len : reader.pos + length, message = new $root.google.cloud.netapp.v1.LargeCapacityConfig(); + while (reader.pos < end) { + var tag = reader.uint32(); + if (tag === error) + break; + switch (tag >>> 3) { + case 1: { + message.constituentCount = reader.int32(); + break; + } + default: + reader.skipType(tag & 7); + break; + } + } + return message; + }; + + /** + * Decodes a LargeCapacityConfig message from the specified reader or buffer, length delimited. + * @function decodeDelimited + * @memberof google.cloud.netapp.v1.LargeCapacityConfig + * @static + * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from + * @returns {google.cloud.netapp.v1.LargeCapacityConfig} LargeCapacityConfig + * @throws {Error} If the payload is not a reader or valid buffer + * @throws {$protobuf.util.ProtocolError} If required fields are missing + */ + LargeCapacityConfig.decodeDelimited = function decodeDelimited(reader) { + if (!(reader instanceof $Reader)) + reader = new $Reader(reader); + return this.decode(reader, reader.uint32()); + }; + + /** + * Verifies a LargeCapacityConfig message. + * @function verify + * @memberof google.cloud.netapp.v1.LargeCapacityConfig + * @static + * @param {Object.} message Plain object to verify + * @returns {string|null} `null` if valid, otherwise the reason why it is not + */ + LargeCapacityConfig.verify = function verify(message) { + if (typeof message !== "object" || message === null) + return "object expected"; + if (message.constituentCount != null && message.hasOwnProperty("constituentCount")) + if (!$util.isInteger(message.constituentCount)) + return "constituentCount: integer expected"; + return null; + }; + + /** + * Creates a LargeCapacityConfig message from a plain object. Also converts values to their respective internal types. + * @function fromObject + * @memberof google.cloud.netapp.v1.LargeCapacityConfig + * @static + * @param {Object.} object Plain object + * @returns {google.cloud.netapp.v1.LargeCapacityConfig} LargeCapacityConfig + */ + LargeCapacityConfig.fromObject = function fromObject(object) { + if (object instanceof $root.google.cloud.netapp.v1.LargeCapacityConfig) + return object; + var message = new $root.google.cloud.netapp.v1.LargeCapacityConfig(); + if (object.constituentCount != null) + message.constituentCount = object.constituentCount | 0; + return message; + }; + + /** + * Creates a plain object from a LargeCapacityConfig message. Also converts values to other types if specified. + * @function toObject + * @memberof google.cloud.netapp.v1.LargeCapacityConfig + * @static + * @param {google.cloud.netapp.v1.LargeCapacityConfig} message LargeCapacityConfig + * @param {$protobuf.IConversionOptions} [options] Conversion options + * @returns {Object.} Plain object + */ + LargeCapacityConfig.toObject = function toObject(message, options) { + if (!options) + options = {}; + var object = {}; + if (options.defaults) + object.constituentCount = 0; + if (message.constituentCount != null && message.hasOwnProperty("constituentCount")) + object.constituentCount = message.constituentCount; + return object; + }; + + /** + * Converts this LargeCapacityConfig to JSON. + * @function toJSON + * @memberof google.cloud.netapp.v1.LargeCapacityConfig + * @instance + * @returns {Object.} JSON object + */ + LargeCapacityConfig.prototype.toJSON = function toJSON() { + return this.constructor.toObject(this, $protobuf.util.toJSONOptions); + }; + + /** + * Gets the default type url for LargeCapacityConfig + * @function getTypeUrl + * @memberof google.cloud.netapp.v1.LargeCapacityConfig + * @static + * @param {string} [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") + * @returns {string} The default type url + */ + LargeCapacityConfig.getTypeUrl = function getTypeUrl(typeUrlPrefix) { + if (typeUrlPrefix === undefined) { + typeUrlPrefix = "type.googleapis.com"; + } + return typeUrlPrefix + "/google.cloud.netapp.v1.LargeCapacityConfig"; + }; + + return LargeCapacityConfig; + })(); + v1.ExportPolicy = (function() { /** @@ -40156,6 +40405,7 @@ * @property {number|Long|null} [hotTierSizeUsedGib] StoragePool hotTierSizeUsedGib * @property {google.cloud.netapp.v1.StoragePoolType|null} [type] StoragePool type * @property {google.cloud.netapp.v1.Mode|null} [mode] StoragePool mode + * @property {google.cloud.netapp.v1.ScaleType|null} [scaleType] StoragePool scaleType */ /** @@ -40438,6 +40688,14 @@ */ StoragePool.prototype.mode = null; + /** + * StoragePool scaleType. + * @member {google.cloud.netapp.v1.ScaleType} scaleType + * @memberof google.cloud.netapp.v1.StoragePool + * @instance + */ + StoragePool.prototype.scaleType = 0; + // OneOf field names bound to virtual getters and setters var $oneOfFields; @@ -40556,6 +40814,8 @@ writer.uint32(/* id 35, wireType 0 =*/280).int32(message.type); if (message.mode != null && Object.hasOwnProperty.call(message, "mode")) writer.uint32(/* id 36, wireType 0 =*/288).int32(message.mode); + if (message.scaleType != null && Object.hasOwnProperty.call(message, "scaleType")) + writer.uint32(/* id 38, wireType 0 =*/304).int32(message.scaleType); return writer; }; @@ -40743,6 +41003,10 @@ message.mode = reader.int32(); break; } + case 38: { + message.scaleType = reader.int32(); + break; + } default: reader.skipType(tag & 7); break; @@ -40936,6 +41200,15 @@ break; } } + if (message.scaleType != null && message.hasOwnProperty("scaleType")) + switch (message.scaleType) { + default: + return "scaleType: enum value expected"; + case 0: + case 1: + case 2: + break; + } return null; }; @@ -41210,6 +41483,26 @@ message.mode = 2; break; } + switch (object.scaleType) { + default: + if (typeof object.scaleType === "number") { + message.scaleType = object.scaleType; + break; + } + break; + case "SCALE_TYPE_UNSPECIFIED": + case 0: + message.scaleType = 0; + break; + case "SCALE_TYPE_DEFAULT": + case 1: + message.scaleType = 1; + break; + case "SCALE_TYPE_SCALEOUT": + case 2: + message.scaleType = 2; + break; + } return message; }; @@ -41285,6 +41578,7 @@ object.hotTierSizeUsedGib = options.longs === String ? long.toString() : options.longs === Number ? long.toNumber() : long; } else object.hotTierSizeUsedGib = options.longs === String ? "0" : 0; + object.scaleType = options.enums === String ? "SCALE_TYPE_UNSPECIFIED" : 0; } if (message.name != null && message.hasOwnProperty("name")) object.name = message.name; @@ -41389,6 +41683,8 @@ if (options.oneofs) object._mode = "mode"; } + if (message.scaleType != null && message.hasOwnProperty("scaleType")) + object.scaleType = options.enums === String ? $root.google.cloud.netapp.v1.ScaleType[message.scaleType] === undefined ? message.scaleType : $root.google.cloud.netapp.v1.ScaleType[message.scaleType] : message.scaleType; return object; }; diff --git a/packages/google-cloud-netapp/protos/protos.json b/packages/google-cloud-netapp/protos/protos.json index f5efdb48005a..58494bf8b9db 100644 --- a/packages/google-cloud-netapp/protos/protos.json +++ b/packages/google-cloud-netapp/protos/protos.json @@ -3012,6 +3012,13 @@ "UNIFIED": 2 } }, + "ScaleType": { + "values": { + "SCALE_TYPE_UNSPECIFIED": 0, + "SCALE_TYPE_DEFAULT": 1, + "SCALE_TYPE_SCALEOUT": 2 + } + }, "HybridReplicationSchedule": { "values": { "HYBRID_REPLICATION_SCHEDULE_UNSPECIFIED": 0, @@ -4757,6 +4764,13 @@ "(google.api.field_behavior)": "OPTIONAL" } }, + "largeCapacityConfig": { + "type": "LargeCapacityConfig", + "id": 46, + "options": { + "(google.api.field_behavior)": "OPTIONAL" + } + }, "cloneDetails": { "type": "CloneDetails", "id": 47, @@ -4809,6 +4823,17 @@ } } }, + "LargeCapacityConfig": { + "fields": { + "constituentCount": { + "type": "int32", + "id": 1, + "options": { + "(google.api.field_behavior)": "OPTIONAL" + } + } + } + }, "ExportPolicy": { "fields": { "rules": { @@ -6411,6 +6436,13 @@ "(google.api.field_behavior)": "OPTIONAL", "proto3_optional": true } + }, + "scaleType": { + "type": "ScaleType", + "id": 38, + "options": { + "(google.api.field_behavior)": "OPTIONAL" + } } }, "nested": {