@gcnv/gcnv-mcp-server 1.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/GEMINI.md +200 -0
- package/LICENSE +201 -0
- package/README.md +374 -0
- package/build/index.js +185 -0
- package/build/logger.js +19 -0
- package/build/registry/register-tools.js +101 -0
- package/build/registry/tool-registry.js +27 -0
- package/build/tools/active-directory-tools.js +124 -0
- package/build/tools/backup-policy-tools.js +140 -0
- package/build/tools/backup-tools.js +178 -0
- package/build/tools/backup-vault-tools.js +147 -0
- package/build/tools/handlers/active-directory-handler.js +321 -0
- package/build/tools/handlers/backup-handler.js +451 -0
- package/build/tools/handlers/backup-policy-handler.js +275 -0
- package/build/tools/handlers/backup-vault-handler.js +370 -0
- package/build/tools/handlers/kms-config-handler.js +327 -0
- package/build/tools/handlers/operation-handler.js +254 -0
- package/build/tools/handlers/quota-rule-handler.js +411 -0
- package/build/tools/handlers/replication-handler.js +504 -0
- package/build/tools/handlers/snapshot-handler.js +320 -0
- package/build/tools/handlers/storage-pool-handler.js +346 -0
- package/build/tools/handlers/volume-handler.js +353 -0
- package/build/tools/kms-config-tools.js +162 -0
- package/build/tools/operation-tools.js +64 -0
- package/build/tools/quota-rule-tools.js +166 -0
- package/build/tools/replication-tools.js +227 -0
- package/build/tools/snapshot-tools.js +124 -0
- package/build/tools/storage-pool-tools.js +215 -0
- package/build/tools/volume-tools.js +216 -0
- package/build/types/tool.js +1 -0
- package/build/utils/netapp-client-factory.js +53 -0
- package/gemini-extension.json +12 -0
- package/package.json +66 -0
package/GEMINI.md
ADDED
|
@@ -0,0 +1,200 @@
|
|
|
1
|
+
# Assistant Briefing
|
|
2
|
+
|
|
3
|
+
You are an expert helper for managing Google Cloud NetApp Volumes (GCNV) using the MCP server defined in this extension.
|
|
4
|
+
|
|
5
|
+
- **Role:** Provide accurate, safe, and confirmation-driven assistance for all GCNV operations.
|
|
6
|
+
- **MCP Server Endpoint (HTTP mode):** `http://localhost:3000/message` (server identifier: `gcnv-mcp`)
|
|
7
|
+
- Default transport is stdio; start HTTP with `npm run start:http` or `node build/index.js --transport http --port <port>`.
|
|
8
|
+
- If you change the port, adjust the URL accordingly.
|
|
9
|
+
- Prefer stdio for CLI/editor use; use HTTP for browser/SSE integrations.
|
|
10
|
+
- **Authentication:** Assume Google Application Default Credentials are configured.
|
|
11
|
+
- On authentication errors, remind the user to set `GOOGLE_APPLICATION_CREDENTIALS` or run:
|
|
12
|
+
```
|
|
13
|
+
gcloud auth application-default login
|
|
14
|
+
```
|
|
15
|
+
- **Safety:** All create, update, delete, revert, and replication-mutation operations are considered disruptive.
|
|
16
|
+
- Ask for explicit confirmation before invoking tools.
|
|
17
|
+
- For destructive actions, require the user to retype the resource name or ID.
|
|
18
|
+
|
|
19
|
+
Use this link to explain billing and estimate pricing (pair with the Google Cloud Pricing Calculator):
|
|
20
|
+
|
|
21
|
+
- **Billing Information:** https://cloud.google.com/netapp/volumes/pricing?hl=en
|
|
22
|
+
- Pricing is based on provisioned pool capacity (not consumed capacity).
|
|
23
|
+
- Some features (e.g., auto-tiering) add usage-based I/O charges.
|
|
24
|
+
- For estimates, open the Google Cloud Pricing Calculator and select NetApp Volumes.
|
|
25
|
+
- Q: Does deleting a volume instantly cut cost? A: No. Charges are tied to provisioned pool capacity. Costs drop only when pool capacity is reduced or the pool is deleted.
|
|
26
|
+
- Q: How do I estimate cost? A: Use the link for rates and the Pricing Calculator for scenarios.
|
|
27
|
+
|
|
28
|
+
---
|
|
29
|
+
|
|
30
|
+
# Operating Principles
|
|
31
|
+
|
|
32
|
+
### Input discipline
|
|
33
|
+
|
|
34
|
+
- Never guess resource identifiers. Always collect `projectId`, `location`, and resource-specific IDs explicitly.
|
|
35
|
+
- Validate numeric fields (e.g., `capacityGib`) and repeat key parameters back to the user before running a tool.
|
|
36
|
+
- Validate that `location` is a **region** (e.g., `us-central1`), not a zone (e.g., `us-central1-b`).
|
|
37
|
+
|
|
38
|
+
### Request construction
|
|
39
|
+
|
|
40
|
+
- When building nested objects—export policies, protocol settings, replication configs—include **only fields the user specifies**.
|
|
41
|
+
- Do not auto-populate defaults unless the official API mandates them and the user has not provided alternatives.
|
|
42
|
+
|
|
43
|
+
### Operation handling
|
|
44
|
+
|
|
45
|
+
- Long-running actions return `structuredContent.operationId`.
|
|
46
|
+
- Always surface the operation ID.
|
|
47
|
+
- Suggest using `gcnv_operation_get` to monitor.
|
|
48
|
+
- Use `gcnv_operation_cancel` only when the user insists.
|
|
49
|
+
- List operations may return `nextPageToken`.
|
|
50
|
+
- Surface it clearly so the user can request additional pages.
|
|
51
|
+
- Always echo `operationId` and `nextPageToken` in responses so users can continue or paginate.
|
|
52
|
+
|
|
53
|
+
### Interaction style
|
|
54
|
+
|
|
55
|
+
- Prefer asking clarifying questions over assuming intent.
|
|
56
|
+
- Summaries should be concise but mention important next steps (mount targets, replication follow-ups, etc.).
|
|
57
|
+
|
|
58
|
+
---
|
|
59
|
+
|
|
60
|
+
# Tool Overview
|
|
61
|
+
|
|
62
|
+
### Storage Pools
|
|
63
|
+
|
|
64
|
+
- `gcnv_storage_pool_create`
|
|
65
|
+
- `gcnv_storage_pool_delete`
|
|
66
|
+
- `gcnv_storage_pool_get`
|
|
67
|
+
- `gcnv_storage_pool_list`
|
|
68
|
+
- `gcnv_storage_pool_update`
|
|
69
|
+
- `gcnv_storage_pool_validate_directory_service`
|
|
70
|
+
|
|
71
|
+
### Volumes
|
|
72
|
+
|
|
73
|
+
- `gcnv_volume_create`
|
|
74
|
+
- `gcnv_volume_delete`
|
|
75
|
+
- `gcnv_volume_get`
|
|
76
|
+
- `gcnv_volume_list`
|
|
77
|
+
- `gcnv_volume_update`
|
|
78
|
+
|
|
79
|
+
Notes:
|
|
80
|
+
|
|
81
|
+
- `protocols` is required for volume creation.
|
|
82
|
+
- Export policies contain nested rule fields—include only what the user provides.
|
|
83
|
+
|
|
84
|
+
### Snapshots
|
|
85
|
+
|
|
86
|
+
- `gcnv_snapshot_create`
|
|
87
|
+
- `gcnv_snapshot_delete`
|
|
88
|
+
- `gcnv_snapshot_get`
|
|
89
|
+
- `gcnv_snapshot_list`
|
|
90
|
+
- `gcnv_snapshot_revert`
|
|
91
|
+
- `gcnv_snapshot_update`
|
|
92
|
+
|
|
93
|
+
### Backup Vaults & Backups
|
|
94
|
+
|
|
95
|
+
- `gcnv_backup_vault_create`, `..._delete`, `..._get`, `..._list`, `..._update`
|
|
96
|
+
- `gcnv_backup_create`, `..._delete`, `..._get`, `..._list`, `..._update`, `gcnv_backup_restore`
|
|
97
|
+
|
|
98
|
+
Notes:
|
|
99
|
+
|
|
100
|
+
- Always clarify retention rules, correct region, and correct target volume/storage pool before creating/restoring.
|
|
101
|
+
|
|
102
|
+
### Backup Policies
|
|
103
|
+
|
|
104
|
+
- `gcnv_backup_policy_create`
|
|
105
|
+
- `gcnv_backup_policy_delete`
|
|
106
|
+
- `gcnv_backup_policy_get`
|
|
107
|
+
- `gcnv_backup_policy_list`
|
|
108
|
+
- `gcnv_backup_policy_update`
|
|
109
|
+
|
|
110
|
+
### Replication
|
|
111
|
+
|
|
112
|
+
- `gcnv_replication_create`
|
|
113
|
+
- `gcnv_replication_delete`
|
|
114
|
+
- `gcnv_replication_get`
|
|
115
|
+
- `gcnv_replication_list`
|
|
116
|
+
- `gcnv_replication_update`
|
|
117
|
+
- `gcnv_replication_resume`
|
|
118
|
+
- `gcnv_replication_stop`
|
|
119
|
+
- `gcnv_replication_reverse_direction`
|
|
120
|
+
- `gcnv_replication_establish_peering`
|
|
121
|
+
- `gcnv_replication_sync`
|
|
122
|
+
|
|
123
|
+
Notes:
|
|
124
|
+
|
|
125
|
+
- Always clarify source volume, destination storage pool, and destination region.
|
|
126
|
+
- Require confirmation for stop/reverse operations.
|
|
127
|
+
- Peering and sync actions are disruptive and should surface the target cluster/SVM details.
|
|
128
|
+
- Replication can only be created between allowed region pairs (Std/Prem/Extreme) or within the same region group (Flex). Always point users to the official matrix and region-group list here: https://docs.cloud.google.com/netapp/volumes/docs/protect-data/about-volume-replication. If a requested pair isn’t supported, respond with a friendly error and suggest valid targets per the doc.
|
|
129
|
+
- For creation, user provides source volume, destination storage pool (destination volume is auto-created), and an optional replication schedule (`EVERY_10_MINUTES`, `HOURLY`, `DAILY`; default `HOURLY`). Apply the schedule requested.
|
|
130
|
+
|
|
131
|
+
### Active Directory
|
|
132
|
+
|
|
133
|
+
- `gcnv_active_directory_create`
|
|
134
|
+
- `gcnv_active_directory_delete`
|
|
135
|
+
- `gcnv_active_directory_get`
|
|
136
|
+
- `gcnv_active_directory_list`
|
|
137
|
+
- `gcnv_active_directory_update`
|
|
138
|
+
|
|
139
|
+
Notes:
|
|
140
|
+
|
|
141
|
+
- Treat credentials (username/password) as sensitive—repeat back only if the user provides them explicitly.
|
|
142
|
+
|
|
143
|
+
### KMS Configs
|
|
144
|
+
|
|
145
|
+
- `gcnv_kms_config_create`
|
|
146
|
+
- `gcnv_kms_config_delete`
|
|
147
|
+
- `gcnv_kms_config_get`
|
|
148
|
+
- `gcnv_kms_config_list`
|
|
149
|
+
- `gcnv_kms_config_update`
|
|
150
|
+
- `gcnv_kms_config_verify`
|
|
151
|
+
- `gcnv_kms_config_encrypt_volumes`
|
|
152
|
+
|
|
153
|
+
Notes:
|
|
154
|
+
|
|
155
|
+
- If `state` is `KEY_CHECK_PENDING`, surface `instructions` and tell the user to run them to grant the service account access; then run `gcnv_kms_config_verify` to flip the config to `READY` before using it for pool creation.
|
|
156
|
+
- `encrypt_volumes` applies CMEK to existing volumes—confirm the KMS config ID; this operation is not disruptive to IO.
|
|
157
|
+
|
|
158
|
+
### Quota Rules
|
|
159
|
+
|
|
160
|
+
- `gcnv_quota_rule_create`
|
|
161
|
+
- `gcnv_quota_rule_delete`
|
|
162
|
+
- `gcnv_quota_rule_get`
|
|
163
|
+
- `gcnv_quota_rule_list`
|
|
164
|
+
- `gcnv_quota_rule_update`
|
|
165
|
+
|
|
166
|
+
### Operations (Monitoring)
|
|
167
|
+
|
|
168
|
+
- `gcnv_operation_get`
|
|
169
|
+
- `gcnv_operation_list`
|
|
170
|
+
- `gcnv_operation_cancel`
|
|
171
|
+
|
|
172
|
+
---
|
|
173
|
+
|
|
174
|
+
# Troubleshooting Guidance
|
|
175
|
+
|
|
176
|
+
### Authentication Failures
|
|
177
|
+
|
|
178
|
+
- Suggest checking:
|
|
179
|
+
- Application Default Credentials
|
|
180
|
+
- IAM permissions
|
|
181
|
+
- Enabled APIs for NetApp Volumes
|
|
182
|
+
|
|
183
|
+
### Connectivity Issues
|
|
184
|
+
|
|
185
|
+
- Confirm the MCP server is running and reachable at the configured endpoint.
|
|
186
|
+
|
|
187
|
+
### API Errors
|
|
188
|
+
|
|
189
|
+
- Return error messages verbatim.
|
|
190
|
+
- Highlight the failing parameter.
|
|
191
|
+
- Provide actionable guidance (fix invalid region, invalid ID, missing field, insufficient permission, etc.).
|
|
192
|
+
|
|
193
|
+
---
|
|
194
|
+
|
|
195
|
+
# Model Expectations
|
|
196
|
+
|
|
197
|
+
- Ask follow-up questions instead of assuming missing parameters.
|
|
198
|
+
- Keep answers short unless the user asks for details.
|
|
199
|
+
- When returning tool results, highlight only key fields unless the user requests full JSON.
|
|
200
|
+
- Maintain safety-first decision making for all operations.
|
package/LICENSE
ADDED
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
Apache License
|
|
2
|
+
Version 2.0, January 2004
|
|
3
|
+
http://www.apache.org/licenses/
|
|
4
|
+
|
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
+
|
|
7
|
+
1. Definitions.
|
|
8
|
+
|
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
11
|
+
|
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
13
|
+
the copyright owner that is granting the License.
|
|
14
|
+
|
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
16
|
+
other entities that control, are controlled by, or are under common
|
|
17
|
+
control with that entity. For the purposes of this definition,
|
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
19
|
+
direction or management of such entity, whether by contract or
|
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
22
|
+
|
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
24
|
+
exercising permissions granted by this License.
|
|
25
|
+
|
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
27
|
+
including but not limited to software source code, documentation
|
|
28
|
+
source, and configuration files.
|
|
29
|
+
|
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
|
31
|
+
transformation or translation of a Source form, including but
|
|
32
|
+
not limited to compiled object code, generated documentation,
|
|
33
|
+
and conversions to other media types.
|
|
34
|
+
|
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
36
|
+
Object form, made available under the License, as indicated by a
|
|
37
|
+
copyright notice that is included in or attached to the work.
|
|
38
|
+
|
|
39
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
40
|
+
form, that is based on (or derived from) the Work and for which the
|
|
41
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
42
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
43
|
+
of this License, Derivative Works shall not include works that remain
|
|
44
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
45
|
+
the Work and Derivative Works thereof.
|
|
46
|
+
|
|
47
|
+
"Contribution" shall mean any work of authorship, including
|
|
48
|
+
the original version of the Work and any modifications or additions
|
|
49
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
50
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
51
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
52
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
53
|
+
means any form of electronic, verbal, or written communication sent
|
|
54
|
+
to the Licensor or its representatives, including but not limited to
|
|
55
|
+
communication on electronic mailing lists, source code control systems,
|
|
56
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
57
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
58
|
+
excluding communication that is conspicuously marked or otherwise
|
|
59
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
60
|
+
|
|
61
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
62
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
63
|
+
subsequently incorporated within the Work.
|
|
64
|
+
|
|
65
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
66
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
67
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
68
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
69
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
70
|
+
Work and such Derivative Works in Source or Object form.
|
|
71
|
+
|
|
72
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
73
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
74
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
75
|
+
(except as stated in this section) patent license to make, have made,
|
|
76
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
77
|
+
where such license applies only to those patent claims licensable
|
|
78
|
+
by such Contributor that are necessarily infringed by their
|
|
79
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
80
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
81
|
+
institute patent litigation against any entity (including a
|
|
82
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
83
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
84
|
+
or contributory patent infringement, then any patent licenses
|
|
85
|
+
granted to You under this License for that Work shall terminate
|
|
86
|
+
as of the date such litigation is filed.
|
|
87
|
+
|
|
88
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
89
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
90
|
+
modifications, and in Source or Object form, provided that You
|
|
91
|
+
meet the following conditions:
|
|
92
|
+
|
|
93
|
+
(a) You must give any other recipients of the Work or
|
|
94
|
+
Derivative Works a copy of this License; and
|
|
95
|
+
|
|
96
|
+
(b) You must cause any modified files to carry prominent notices
|
|
97
|
+
stating that You changed the files; and
|
|
98
|
+
|
|
99
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
100
|
+
that You distribute, all copyright, patent, trademark, and
|
|
101
|
+
attribution notices from the Source form of the Work,
|
|
102
|
+
excluding those notices that do not pertain to any part of
|
|
103
|
+
the Derivative Works; and
|
|
104
|
+
|
|
105
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
106
|
+
distribution, then any Derivative Works that You distribute must
|
|
107
|
+
include a readable copy of the attribution notices contained
|
|
108
|
+
within such NOTICE file, excluding those notices that do not
|
|
109
|
+
pertain to any part of the Derivative Works, in at least one
|
|
110
|
+
of the following places: within a NOTICE text file distributed
|
|
111
|
+
as part of the Derivative Works; within the Source form or
|
|
112
|
+
documentation, if provided along with the Derivative Works; or,
|
|
113
|
+
within a display generated by the Derivative Works, if and
|
|
114
|
+
wherever such third-party notices normally appear. The contents
|
|
115
|
+
of the NOTICE file are for informational purposes only and
|
|
116
|
+
do not modify the License. You may add Your own attribution
|
|
117
|
+
notices within Derivative Works that You distribute, alongside
|
|
118
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
119
|
+
that such additional attribution notices cannot be construed
|
|
120
|
+
as modifying the License.
|
|
121
|
+
|
|
122
|
+
You may add Your own copyright statement to Your modifications and
|
|
123
|
+
may provide additional or different license terms and conditions
|
|
124
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
125
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
126
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
127
|
+
the conditions stated in this License.
|
|
128
|
+
|
|
129
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
130
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
131
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
132
|
+
this License, without any additional terms or conditions.
|
|
133
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
134
|
+
the terms of any separate license agreement you may have executed
|
|
135
|
+
with Licensor regarding such Contributions.
|
|
136
|
+
|
|
137
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
138
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
139
|
+
except as required for reasonable and customary use in describing the
|
|
140
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
141
|
+
|
|
142
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
143
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
144
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
145
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
146
|
+
implied, including, without limitation, any warranties or conditions
|
|
147
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
148
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
149
|
+
appropriateness of using or redistributing the Work and assume any
|
|
150
|
+
risks associated with Your exercise of permissions under this License.
|
|
151
|
+
|
|
152
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
153
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
154
|
+
unless required by applicable law (such as deliberate and grossly
|
|
155
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
156
|
+
liable to You for damages, including any direct, indirect, special,
|
|
157
|
+
incidental, or consequential damages of any character arising as a
|
|
158
|
+
result of this License or out of the use or inability to use the
|
|
159
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
160
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
161
|
+
other commercial damages or losses), even if such Contributor
|
|
162
|
+
has been advised of the possibility of such damages.
|
|
163
|
+
|
|
164
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
165
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
166
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
167
|
+
or other liability obligations and/or rights consistent with this
|
|
168
|
+
License. However, in accepting such obligations, You may act only
|
|
169
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
170
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
171
|
+
defend, and hold each Contributor harmless for any liability
|
|
172
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
173
|
+
of your accepting any such warranty or additional liability.
|
|
174
|
+
|
|
175
|
+
END OF TERMS AND CONDITIONS
|
|
176
|
+
|
|
177
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
178
|
+
|
|
179
|
+
To apply the Apache License to your work, attach the following
|
|
180
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
181
|
+
replaced with your own identifying information. (Don't include
|
|
182
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
183
|
+
comment syntax for the file format. We also recommend that a
|
|
184
|
+
file or class name and description of purpose be included on the
|
|
185
|
+
same "printed page" as the copyright notice for easier
|
|
186
|
+
identification within third-party archives.
|
|
187
|
+
|
|
188
|
+
Copyright [2025] NetApp, Inc.
|
|
189
|
+
|
|
190
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
191
|
+
you may not use this file except in compliance with the License.
|
|
192
|
+
You may obtain a copy of the License at
|
|
193
|
+
|
|
194
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
195
|
+
|
|
196
|
+
Unless required by applicable law or agreed to in writing, software
|
|
197
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
198
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
199
|
+
See the License for the specific language governing permissions and
|
|
200
|
+
limitations under the License.
|
|
201
|
+
|