google-apis-netapp_v1 0.7.0 → 0.9.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 43458bc83bffe4d0a5c3c4818ba20c1de02ae6b8dc6e888937489367d1a47a98
4
- data.tar.gz: a9e714d98119f95bbeb5123b851bd426511ba19835f793ed7c1b78410263c8b4
3
+ metadata.gz: 33087e56deb4c9a9b157f1642c5670f94ddf60fe43fed21f13af1acbcdca6390
4
+ data.tar.gz: 83cde7d0ef003fbd92f076a8204b8deaaf1ba7e90b6f2e2ff3d75616ca416d98
5
5
  SHA512:
6
- metadata.gz: e0781e9f1f53591b93c58ac301d9bd9224b62b922f6a0a36757d51ea82bc491983b2c7b12c30bb1f285931418f3c9a7bddfbb4587d83d11881cd858788c7788a
7
- data.tar.gz: adfe9e175b2ec9f291458997d28dd3f4f45b4b4e38fe2b854a54cfb83e9f502c1aa320de9f4f0de8e040d76b7e31388b69a833e623df3bbcc0c22daccf4c7084
6
+ metadata.gz: 2e9f493607f0ccc01c86647cf70f646fd783775e5a0ee793263113e9cf88ce60bf69c0363447447869d683227272aee7330bc8512d86d83f2a1049264fd71ebd
7
+ data.tar.gz: 5d3aef6a0a606cc0bf84781d015c2c226c121174f53d8517aaa697b2325dbdb8d6c6a0ce20baac9a8c437959c5cf072129b85433b7c195f7ff2055f753c66da6
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-netapp_v1
2
2
 
3
+ ### v0.9.0 (2025-05-21)
4
+
5
+ * Regenerated from discovery document revision 20250515
6
+
7
+ ### v0.8.0 (2025-05-04)
8
+
9
+ * Regenerated using generator version 0.17.0
10
+
3
11
  ### v0.7.0 (2025-04-20)
4
12
 
5
13
  * Regenerated from discovery document revision 20250326
data/OVERVIEW.md CHANGED
@@ -83,7 +83,7 @@ The [product documentation](https://cloud.google.com/netapp/) may provide guidan
83
83
 
84
84
  ## Supported Ruby versions
85
85
 
86
- This library is supported on Ruby 2.7+.
86
+ This library is supported on Ruby 3.1+.
87
87
 
88
88
  Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
89
89
 
@@ -212,6 +212,11 @@ module Google
212
212
  # @return [String]
213
213
  attr_accessor :description
214
214
 
215
+ # Output only. The time until which the backup is not deletable.
216
+ # Corresponds to the JSON property `enforcedRetentionEndTime`
217
+ # @return [String]
218
+ attr_accessor :enforced_retention_end_time
219
+
215
220
  # Resource labels to represent user provided metadata.
216
221
  # Corresponds to the JSON property `labels`
217
222
  # @return [Hash<String,String>]
@@ -278,6 +283,7 @@ module Google
278
283
  @chain_storage_bytes = args[:chain_storage_bytes] if args.key?(:chain_storage_bytes)
279
284
  @create_time = args[:create_time] if args.key?(:create_time)
280
285
  @description = args[:description] if args.key?(:description)
286
+ @enforced_retention_end_time = args[:enforced_retention_end_time] if args.key?(:enforced_retention_end_time)
281
287
  @labels = args[:labels] if args.key?(:labels)
282
288
  @name = args[:name] if args.key?(:name)
283
289
  @satisfies_pzi = args[:satisfies_pzi] if args.key?(:satisfies_pzi)
@@ -411,6 +417,61 @@ module Google
411
417
  end
412
418
  end
413
419
 
420
+ # Retention policy for backups in the backup vault
421
+ class BackupRetentionPolicy
422
+ include Google::Apis::Core::Hashable
423
+
424
+ # Required. Minimum retention duration in days for backups in the backup vault.
425
+ # Corresponds to the JSON property `backupMinimumEnforcedRetentionDays`
426
+ # @return [Fixnum]
427
+ attr_accessor :backup_minimum_enforced_retention_days
428
+
429
+ # Optional. Indicates if the daily backups are immutable. Atleast one of
430
+ # daily_backup_immutable, weekly_backup_immutable, monthly_backup_immutable and
431
+ # manual_backup_immutable must be true.
432
+ # Corresponds to the JSON property `dailyBackupImmutable`
433
+ # @return [Boolean]
434
+ attr_accessor :daily_backup_immutable
435
+ alias_method :daily_backup_immutable?, :daily_backup_immutable
436
+
437
+ # Optional. Indicates if the manual backups are immutable. Atleast one of
438
+ # daily_backup_immutable, weekly_backup_immutable, monthly_backup_immutable and
439
+ # manual_backup_immutable must be true.
440
+ # Corresponds to the JSON property `manualBackupImmutable`
441
+ # @return [Boolean]
442
+ attr_accessor :manual_backup_immutable
443
+ alias_method :manual_backup_immutable?, :manual_backup_immutable
444
+
445
+ # Optional. Indicates if the monthly backups are immutable. Atleast one of
446
+ # daily_backup_immutable, weekly_backup_immutable, monthly_backup_immutable and
447
+ # manual_backup_immutable must be true.
448
+ # Corresponds to the JSON property `monthlyBackupImmutable`
449
+ # @return [Boolean]
450
+ attr_accessor :monthly_backup_immutable
451
+ alias_method :monthly_backup_immutable?, :monthly_backup_immutable
452
+
453
+ # Optional. Indicates if the weekly backups are immutable. Atleast one of
454
+ # daily_backup_immutable, weekly_backup_immutable, monthly_backup_immutable and
455
+ # manual_backup_immutable must be true.
456
+ # Corresponds to the JSON property `weeklyBackupImmutable`
457
+ # @return [Boolean]
458
+ attr_accessor :weekly_backup_immutable
459
+ alias_method :weekly_backup_immutable?, :weekly_backup_immutable
460
+
461
+ def initialize(**args)
462
+ update!(**args)
463
+ end
464
+
465
+ # Update properties of this object
466
+ def update!(**args)
467
+ @backup_minimum_enforced_retention_days = args[:backup_minimum_enforced_retention_days] if args.key?(:backup_minimum_enforced_retention_days)
468
+ @daily_backup_immutable = args[:daily_backup_immutable] if args.key?(:daily_backup_immutable)
469
+ @manual_backup_immutable = args[:manual_backup_immutable] if args.key?(:manual_backup_immutable)
470
+ @monthly_backup_immutable = args[:monthly_backup_immutable] if args.key?(:monthly_backup_immutable)
471
+ @weekly_backup_immutable = args[:weekly_backup_immutable] if args.key?(:weekly_backup_immutable)
472
+ end
473
+ end
474
+
414
475
  # A NetApp BackupVault.
415
476
  class BackupVault
416
477
  include Google::Apis::Core::Hashable
@@ -421,6 +482,11 @@ module Google
421
482
  # @return [String]
422
483
  attr_accessor :backup_region
423
484
 
485
+ # Retention policy for backups in the backup vault
486
+ # Corresponds to the JSON property `backupRetentionPolicy`
487
+ # @return [Google::Apis::NetappV1::BackupRetentionPolicy]
488
+ attr_accessor :backup_retention_policy
489
+
424
490
  # Optional. Type of backup vault to be created. Default is IN_REGION.
425
491
  # Corresponds to the JSON property `backupVaultType`
426
492
  # @return [String]
@@ -477,6 +543,7 @@ module Google
477
543
  # Update properties of this object
478
544
  def update!(**args)
479
545
  @backup_region = args[:backup_region] if args.key?(:backup_region)
546
+ @backup_retention_policy = args[:backup_retention_policy] if args.key?(:backup_retention_policy)
480
547
  @backup_vault_type = args[:backup_vault_type] if args.key?(:backup_vault_type)
481
548
  @create_time = args[:create_time] if args.key?(:create_time)
482
549
  @description = args[:description] if args.key?(:description)
@@ -2098,6 +2165,13 @@ module Google
2098
2165
  # @return [String]
2099
2166
  attr_accessor :create_time
2100
2167
 
2168
+ # Optional. True if using Independent Scaling of capacity and performance (
2169
+ # Hyperdisk) By default set to false
2170
+ # Corresponds to the JSON property `customPerformanceEnabled`
2171
+ # @return [Boolean]
2172
+ attr_accessor :custom_performance_enabled
2173
+ alias_method :custom_performance_enabled?, :custom_performance_enabled
2174
+
2101
2175
  # Optional. Description of the storage pool
2102
2176
  # Corresponds to the JSON property `description`
2103
2177
  # @return [String]
@@ -2180,6 +2254,17 @@ module Google
2180
2254
  # @return [String]
2181
2255
  attr_accessor :state_details
2182
2256
 
2257
+ # Optional. Custom Performance Total IOPS of the pool If not provided, it will
2258
+ # be calculated based on the total_throughput_mibps
2259
+ # Corresponds to the JSON property `totalIops`
2260
+ # @return [Fixnum]
2261
+ attr_accessor :total_iops
2262
+
2263
+ # Optional. Custom Performance Total Throughput of the pool (in MiB/s)
2264
+ # Corresponds to the JSON property `totalThroughputMibps`
2265
+ # @return [Fixnum]
2266
+ attr_accessor :total_throughput_mibps
2267
+
2183
2268
  # Output only. Allocated size of all volumes in GIB in the storage pool
2184
2269
  # Corresponds to the JSON property `volumeCapacityGib`
2185
2270
  # @return [Fixnum]
@@ -2205,6 +2290,7 @@ module Google
2205
2290
  @allow_auto_tiering = args[:allow_auto_tiering] if args.key?(:allow_auto_tiering)
2206
2291
  @capacity_gib = args[:capacity_gib] if args.key?(:capacity_gib)
2207
2292
  @create_time = args[:create_time] if args.key?(:create_time)
2293
+ @custom_performance_enabled = args[:custom_performance_enabled] if args.key?(:custom_performance_enabled)
2208
2294
  @description = args[:description] if args.key?(:description)
2209
2295
  @encryption_type = args[:encryption_type] if args.key?(:encryption_type)
2210
2296
  @global_access_allowed = args[:global_access_allowed] if args.key?(:global_access_allowed)
@@ -2220,6 +2306,8 @@ module Google
2220
2306
  @service_level = args[:service_level] if args.key?(:service_level)
2221
2307
  @state = args[:state] if args.key?(:state)
2222
2308
  @state_details = args[:state_details] if args.key?(:state_details)
2309
+ @total_iops = args[:total_iops] if args.key?(:total_iops)
2310
+ @total_throughput_mibps = args[:total_throughput_mibps] if args.key?(:total_throughput_mibps)
2223
2311
  @volume_capacity_gib = args[:volume_capacity_gib] if args.key?(:volume_capacity_gib)
2224
2312
  @volume_count = args[:volume_count] if args.key?(:volume_count)
2225
2313
  @zone = args[:zone] if args.key?(:zone)
@@ -2315,7 +2403,7 @@ module Google
2315
2403
  # @return [String]
2316
2404
  attr_accessor :total_transfer_duration
2317
2405
 
2318
- # Cumulative bytes trasferred so far for the replication relatinonship.
2406
+ # Cumulative bytes transferred so far for the replication relationship.
2319
2407
  # Corresponds to the JSON property `transferBytes`
2320
2408
  # @return [Fixnum]
2321
2409
  attr_accessor :transfer_bytes
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module NetappV1
18
18
  # Version of the google-apis-netapp_v1 gem
19
- GEM_VERSION = "0.7.0"
19
+ GEM_VERSION = "0.9.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.16.0"
22
+ GENERATOR_VERSION = "0.17.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250326"
25
+ REVISION = "20250515"
26
26
  end
27
27
  end
28
28
  end
@@ -46,6 +46,12 @@ module Google
46
46
  include Google::Apis::Core::JsonObjectSupport
47
47
  end
48
48
 
49
+ class BackupRetentionPolicy
50
+ class Representation < Google::Apis::Core::JsonRepresentation; end
51
+
52
+ include Google::Apis::Core::JsonObjectSupport
53
+ end
54
+
49
55
  class BackupVault
50
56
  class Representation < Google::Apis::Core::JsonRepresentation; end
51
57
 
@@ -388,6 +394,7 @@ module Google
388
394
  property :chain_storage_bytes, :numeric_string => true, as: 'chainStorageBytes'
389
395
  property :create_time, as: 'createTime'
390
396
  property :description, as: 'description'
397
+ property :enforced_retention_end_time, as: 'enforcedRetentionEndTime'
391
398
  hash :labels, as: 'labels'
392
399
  property :name, as: 'name'
393
400
  property :satisfies_pzi, as: 'satisfiesPzi'
@@ -426,10 +433,23 @@ module Google
426
433
  end
427
434
  end
428
435
 
436
+ class BackupRetentionPolicy
437
+ # @private
438
+ class Representation < Google::Apis::Core::JsonRepresentation
439
+ property :backup_minimum_enforced_retention_days, as: 'backupMinimumEnforcedRetentionDays'
440
+ property :daily_backup_immutable, as: 'dailyBackupImmutable'
441
+ property :manual_backup_immutable, as: 'manualBackupImmutable'
442
+ property :monthly_backup_immutable, as: 'monthlyBackupImmutable'
443
+ property :weekly_backup_immutable, as: 'weeklyBackupImmutable'
444
+ end
445
+ end
446
+
429
447
  class BackupVault
430
448
  # @private
431
449
  class Representation < Google::Apis::Core::JsonRepresentation
432
450
  property :backup_region, as: 'backupRegion'
451
+ property :backup_retention_policy, as: 'backupRetentionPolicy', class: Google::Apis::NetappV1::BackupRetentionPolicy, decorator: Google::Apis::NetappV1::BackupRetentionPolicy::Representation
452
+
433
453
  property :backup_vault_type, as: 'backupVaultType'
434
454
  property :create_time, as: 'createTime'
435
455
  property :description, as: 'description'
@@ -868,6 +888,7 @@ module Google
868
888
  property :allow_auto_tiering, as: 'allowAutoTiering'
869
889
  property :capacity_gib, :numeric_string => true, as: 'capacityGib'
870
890
  property :create_time, as: 'createTime'
891
+ property :custom_performance_enabled, as: 'customPerformanceEnabled'
871
892
  property :description, as: 'description'
872
893
  property :encryption_type, as: 'encryptionType'
873
894
  property :global_access_allowed, as: 'globalAccessAllowed'
@@ -883,6 +904,8 @@ module Google
883
904
  property :service_level, as: 'serviceLevel'
884
905
  property :state, as: 'state'
885
906
  property :state_details, as: 'stateDetails'
907
+ property :total_iops, :numeric_string => true, as: 'totalIops'
908
+ property :total_throughput_mibps, :numeric_string => true, as: 'totalThroughputMibps'
886
909
  property :volume_capacity_gib, :numeric_string => true, as: 'volumeCapacityGib'
887
910
  property :volume_count, as: 'volumeCount'
888
911
  property :zone, as: 'zone'
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-netapp_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.0
4
+ version: 0.9.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-04-20 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: google-apis-core
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-netapp_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-netapp_v1/v0.7.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-netapp_v1/v0.9.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-netapp_v1
62
62
  rdoc_options: []
63
63
  require_paths:
@@ -66,14 +66,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
66
66
  requirements:
67
67
  - - ">="
68
68
  - !ruby/object:Gem::Version
69
- version: '2.7'
69
+ version: '3.1'
70
70
  required_rubygems_version: !ruby/object:Gem::Requirement
71
71
  requirements:
72
72
  - - ">="
73
73
  - !ruby/object:Gem::Version
74
74
  version: '0'
75
75
  requirements: []
76
- rubygems_version: 3.6.5
76
+ rubygems_version: 3.6.9
77
77
  specification_version: 4
78
78
  summary: Simple REST client for NetApp API V1
79
79
  test_files: []