google-cloud-netapp-v1 2.8.0 → 2.10.0

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.
Files changed (28) hide show
  1. checksums.yaml +4 -4
  2. data/lib/google/cloud/netapp/v1/active_directory_pb.rb +2 -25
  3. data/lib/google/cloud/netapp/v1/backup_pb.rb +2 -25
  4. data/lib/google/cloud/netapp/v1/backup_policy_pb.rb +2 -25
  5. data/lib/google/cloud/netapp/v1/backup_vault_pb.rb +2 -25
  6. data/lib/google/cloud/netapp/v1/cloud_netapp_service_pb.rb +4 -25
  7. data/lib/google/cloud/netapp/v1/cloud_netapp_service_services_pb.rb +15 -0
  8. data/lib/google/cloud/netapp/v1/common_pb.rb +3 -24
  9. data/lib/google/cloud/netapp/v1/host_group_pb.rb +2 -25
  10. data/lib/google/cloud/netapp/v1/kms_pb.rb +2 -25
  11. data/lib/google/cloud/netapp/v1/netapp/client.rb +526 -0
  12. data/lib/google/cloud/netapp/v1/netapp/rest/client.rb +491 -0
  13. data/lib/google/cloud/netapp/v1/netapp/rest/service_stub.rb +308 -0
  14. data/lib/google/cloud/netapp/v1/ontap_pb.rb +31 -0
  15. data/lib/google/cloud/netapp/v1/quota_rule_pb.rb +2 -25
  16. data/lib/google/cloud/netapp/v1/replication_pb.rb +2 -28
  17. data/lib/google/cloud/netapp/v1/snapshot_pb.rb +2 -25
  18. data/lib/google/cloud/netapp/v1/storage_pool_pb.rb +4 -26
  19. data/lib/google/cloud/netapp/v1/version.rb +1 -1
  20. data/lib/google/cloud/netapp/v1/volume_pb.rb +5 -26
  21. data/proto_docs/google/api/client.rb +145 -29
  22. data/proto_docs/google/cloud/netapp/v1/backup.rb +1 -0
  23. data/proto_docs/google/cloud/netapp/v1/common.rb +0 -3
  24. data/proto_docs/google/cloud/netapp/v1/ontap.rb +140 -0
  25. data/proto_docs/google/cloud/netapp/v1/storage_pool.rb +20 -3
  26. data/proto_docs/google/cloud/netapp/v1/volume.rb +53 -1
  27. data/proto_docs/google/protobuf/struct.rb +108 -0
  28. metadata +5 -2
@@ -0,0 +1,108 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Copyright 2026 Google LLC
4
+ #
5
+ # Licensed under the Apache License, Version 2.0 (the "License");
6
+ # you may not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # https://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing, software
12
+ # distributed under the License is distributed on an "AS IS" BASIS,
13
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ # See the License for the specific language governing permissions and
15
+ # limitations under the License.
16
+
17
+ # Auto-generated by gapic-generator-ruby. DO NOT EDIT!
18
+
19
+
20
+ module Google
21
+ module Protobuf
22
+ # `Struct` represents a structured data value, consisting of fields
23
+ # which map to dynamically typed values. In some languages, `Struct`
24
+ # might be supported by a native representation. For example, in
25
+ # scripting languages like JS a struct is represented as an
26
+ # object. The details of that representation are described together
27
+ # with the proto support for the language.
28
+ #
29
+ # The JSON representation for `Struct` is JSON object.
30
+ # @!attribute [rw] fields
31
+ # @return [::Google::Protobuf::Map{::String => ::Google::Protobuf::Value}]
32
+ # Unordered map of dynamically typed values.
33
+ class Struct
34
+ include ::Google::Protobuf::MessageExts
35
+ extend ::Google::Protobuf::MessageExts::ClassMethods
36
+
37
+ # @!attribute [rw] key
38
+ # @return [::String]
39
+ # @!attribute [rw] value
40
+ # @return [::Google::Protobuf::Value]
41
+ class FieldsEntry
42
+ include ::Google::Protobuf::MessageExts
43
+ extend ::Google::Protobuf::MessageExts::ClassMethods
44
+ end
45
+ end
46
+
47
+ # `Value` represents a dynamically typed value which can be either
48
+ # null, a number, a string, a boolean, a recursive struct value, or a
49
+ # list of values. A producer of value is expected to set one of these
50
+ # variants. Absence of any variant indicates an error.
51
+ #
52
+ # The JSON representation for `Value` is JSON value.
53
+ # @!attribute [rw] null_value
54
+ # @return [::Google::Protobuf::NullValue]
55
+ # Represents a null value.
56
+ #
57
+ # Note: The following fields are mutually exclusive: `null_value`, `number_value`, `string_value`, `bool_value`, `struct_value`, `list_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
58
+ # @!attribute [rw] number_value
59
+ # @return [::Float]
60
+ # Represents a double value.
61
+ #
62
+ # Note: The following fields are mutually exclusive: `number_value`, `null_value`, `string_value`, `bool_value`, `struct_value`, `list_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
63
+ # @!attribute [rw] string_value
64
+ # @return [::String]
65
+ # Represents a string value.
66
+ #
67
+ # Note: The following fields are mutually exclusive: `string_value`, `null_value`, `number_value`, `bool_value`, `struct_value`, `list_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
68
+ # @!attribute [rw] bool_value
69
+ # @return [::Boolean]
70
+ # Represents a boolean value.
71
+ #
72
+ # Note: The following fields are mutually exclusive: `bool_value`, `null_value`, `number_value`, `string_value`, `struct_value`, `list_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
73
+ # @!attribute [rw] struct_value
74
+ # @return [::Google::Protobuf::Struct]
75
+ # Represents a structured value.
76
+ #
77
+ # Note: The following fields are mutually exclusive: `struct_value`, `null_value`, `number_value`, `string_value`, `bool_value`, `list_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
78
+ # @!attribute [rw] list_value
79
+ # @return [::Google::Protobuf::ListValue]
80
+ # Represents a repeated `Value`.
81
+ #
82
+ # Note: The following fields are mutually exclusive: `list_value`, `null_value`, `number_value`, `string_value`, `bool_value`, `struct_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
83
+ class Value
84
+ include ::Google::Protobuf::MessageExts
85
+ extend ::Google::Protobuf::MessageExts::ClassMethods
86
+ end
87
+
88
+ # `ListValue` is a wrapper around a repeated field of values.
89
+ #
90
+ # The JSON representation for `ListValue` is JSON array.
91
+ # @!attribute [rw] values
92
+ # @return [::Array<::Google::Protobuf::Value>]
93
+ # Repeated field of dynamically typed values.
94
+ class ListValue
95
+ include ::Google::Protobuf::MessageExts
96
+ extend ::Google::Protobuf::MessageExts::ClassMethods
97
+ end
98
+
99
+ # `NullValue` is a singleton enumeration to represent the null value for the
100
+ # `Value` type union.
101
+ #
102
+ # The JSON representation for `NullValue` is JSON `null`.
103
+ module NullValue
104
+ # Null value.
105
+ NULL_VALUE = 0
106
+ end
107
+ end
108
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-netapp-v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.8.0
4
+ version: 2.10.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -86,6 +86,7 @@ files:
86
86
  - lib/google/cloud/netapp/v1/netapp/rest/client.rb
87
87
  - lib/google/cloud/netapp/v1/netapp/rest/operations.rb
88
88
  - lib/google/cloud/netapp/v1/netapp/rest/service_stub.rb
89
+ - lib/google/cloud/netapp/v1/ontap_pb.rb
89
90
  - lib/google/cloud/netapp/v1/quota_rule_pb.rb
90
91
  - lib/google/cloud/netapp/v1/replication_pb.rb
91
92
  - lib/google/cloud/netapp/v1/rest.rb
@@ -107,6 +108,7 @@ files:
107
108
  - proto_docs/google/cloud/netapp/v1/common.rb
108
109
  - proto_docs/google/cloud/netapp/v1/host_group.rb
109
110
  - proto_docs/google/cloud/netapp/v1/kms.rb
111
+ - proto_docs/google/cloud/netapp/v1/ontap.rb
110
112
  - proto_docs/google/cloud/netapp/v1/quota_rule.rb
111
113
  - proto_docs/google/cloud/netapp/v1/replication.rb
112
114
  - proto_docs/google/cloud/netapp/v1/snapshot.rb
@@ -117,6 +119,7 @@ files:
117
119
  - proto_docs/google/protobuf/duration.rb
118
120
  - proto_docs/google/protobuf/empty.rb
119
121
  - proto_docs/google/protobuf/field_mask.rb
122
+ - proto_docs/google/protobuf/struct.rb
120
123
  - proto_docs/google/protobuf/timestamp.rb
121
124
  - proto_docs/google/rpc/status.rb
122
125
  homepage: https://github.com/googleapis/google-cloud-ruby
@@ -130,7 +133,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
130
133
  requirements:
131
134
  - - ">="
132
135
  - !ruby/object:Gem::Version
133
- version: '3.1'
136
+ version: '3.2'
134
137
  required_rubygems_version: !ruby/object:Gem::Requirement
135
138
  requirements:
136
139
  - - ">="