google-apis-netapp_v1 0.21.0 → 0.23.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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 718c1d364ec9a05cd69ef1ab60df116127ffe629206b5f4de3ca659d763c8e6c
|
|
4
|
+
data.tar.gz: 212e94ef03a9b26335753b3957bfca2fef5b0cd38a1d2caf50adb54c69966ba2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 48e95b15c8d785d0ad259cd0669406324e337d68053d9c530340370e4c43dade523d7567f7912d8164a0df0623cbadf00b62274f84b93a54e34b3ea90da18ab4
|
|
7
|
+
data.tar.gz: 32f110ede0156c774d2c6973b79d05b55bad5df881658d1a3067bc0a29439fa0c0e35a64d52cda82ed197d08c58aecb4ad1499962a644c2944e7ace918462eeb
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-netapp_v1
|
|
2
2
|
|
|
3
|
+
### v0.23.0 (2026-01-11)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260106
|
|
6
|
+
|
|
7
|
+
### v0.22.0 (2025-12-14)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20251209
|
|
10
|
+
|
|
3
11
|
### v0.21.0 (2025-12-07)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20251116
|
|
@@ -492,6 +492,13 @@ module Google
|
|
|
492
492
|
# @return [String]
|
|
493
493
|
attr_accessor :backup_vault_type
|
|
494
494
|
|
|
495
|
+
# Output only. The crypto key version used to encrypt the backup vault. Format:
|
|
496
|
+
# projects/`project`/locations/`location`/keyRings/`key_ring`/cryptoKeys/`
|
|
497
|
+
# crypto_key`/cryptoKeyVersions/`crypto_key_version`
|
|
498
|
+
# Corresponds to the JSON property `backupsCryptoKeyVersion`
|
|
499
|
+
# @return [String]
|
|
500
|
+
attr_accessor :backups_crypto_key_version
|
|
501
|
+
|
|
495
502
|
# Output only. Create time of the backup vault.
|
|
496
503
|
# Corresponds to the JSON property `createTime`
|
|
497
504
|
# @return [String]
|
|
@@ -508,6 +515,17 @@ module Google
|
|
|
508
515
|
# @return [String]
|
|
509
516
|
attr_accessor :destination_backup_vault
|
|
510
517
|
|
|
518
|
+
# Output only. Field indicating encryption state of CMEK backups.
|
|
519
|
+
# Corresponds to the JSON property `encryptionState`
|
|
520
|
+
# @return [String]
|
|
521
|
+
attr_accessor :encryption_state
|
|
522
|
+
|
|
523
|
+
# Optional. Specifies the KMS config to be used for backup encryption. Format:
|
|
524
|
+
# projects/`project`/locations/`location`/kmsConfigs/`kms_config`
|
|
525
|
+
# Corresponds to the JSON property `kmsConfig`
|
|
526
|
+
# @return [String]
|
|
527
|
+
attr_accessor :kms_config
|
|
528
|
+
|
|
511
529
|
# Resource labels to represent user provided metadata.
|
|
512
530
|
# Corresponds to the JSON property `labels`
|
|
513
531
|
# @return [Hash<String,String>]
|
|
@@ -545,9 +563,12 @@ module Google
|
|
|
545
563
|
@backup_region = args[:backup_region] if args.key?(:backup_region)
|
|
546
564
|
@backup_retention_policy = args[:backup_retention_policy] if args.key?(:backup_retention_policy)
|
|
547
565
|
@backup_vault_type = args[:backup_vault_type] if args.key?(:backup_vault_type)
|
|
566
|
+
@backups_crypto_key_version = args[:backups_crypto_key_version] if args.key?(:backups_crypto_key_version)
|
|
548
567
|
@create_time = args[:create_time] if args.key?(:create_time)
|
|
549
568
|
@description = args[:description] if args.key?(:description)
|
|
550
569
|
@destination_backup_vault = args[:destination_backup_vault] if args.key?(:destination_backup_vault)
|
|
570
|
+
@encryption_state = args[:encryption_state] if args.key?(:encryption_state)
|
|
571
|
+
@kms_config = args[:kms_config] if args.key?(:kms_config)
|
|
551
572
|
@labels = args[:labels] if args.key?(:labels)
|
|
552
573
|
@name = args[:name] if args.key?(:name)
|
|
553
574
|
@source_backup_vault = args[:source_backup_vault] if args.key?(:source_backup_vault)
|
|
@@ -567,13 +588,13 @@ module Google
|
|
|
567
588
|
# @return [Array<String>]
|
|
568
589
|
attr_accessor :host_groups
|
|
569
590
|
|
|
570
|
-
# Output only. Device identifier of the
|
|
571
|
-
# lun_serial_number for iSCSI volumes
|
|
591
|
+
# Output only. Device identifier of the block volume. This represents `
|
|
592
|
+
# lun_serial_number` for iSCSI volumes.
|
|
572
593
|
# Corresponds to the JSON property `identifier`
|
|
573
594
|
# @return [String]
|
|
574
595
|
attr_accessor :identifier
|
|
575
596
|
|
|
576
|
-
# Optional. User-defined name for the block device, unique within the
|
|
597
|
+
# Optional. User-defined name for the block device, unique within the volume. In
|
|
577
598
|
# case no user input is provided, name will be autogenerated in the backend. The
|
|
578
599
|
# name must meet the following requirements: * Be between 1 and 255 characters
|
|
579
600
|
# long. * Contain only uppercase or lowercase letters (A-Z, a-z), numbers (0-9),
|
|
@@ -589,9 +610,9 @@ module Google
|
|
|
589
610
|
# @return [String]
|
|
590
611
|
attr_accessor :os_type
|
|
591
612
|
|
|
592
|
-
# Optional. The size of the block device in GiB. Any value provided
|
|
593
|
-
# field during
|
|
594
|
-
# managed and will be set to match the parent Volume's `capacity_gib`.
|
|
613
|
+
# Optional. The size of the block device in GiB. Any value provided for the `
|
|
614
|
+
# size_gib` field during volume creation is ignored. The block device's size is
|
|
615
|
+
# system-managed and will be set to match the parent Volume's `capacity_gib`.
|
|
595
616
|
# Corresponds to the JSON property `sizeGib`
|
|
596
617
|
# @return [Fixnum]
|
|
597
618
|
attr_accessor :size_gib
|
|
@@ -614,6 +635,17 @@ module Google
|
|
|
614
635
|
class CacheConfig
|
|
615
636
|
include Google::Apis::Core::Hashable
|
|
616
637
|
|
|
638
|
+
# Pre-populate cache volume with data from the origin volume.
|
|
639
|
+
# Corresponds to the JSON property `cachePrePopulate`
|
|
640
|
+
# @return [Google::Apis::NetappV1::CachePrePopulate]
|
|
641
|
+
attr_accessor :cache_pre_populate
|
|
642
|
+
|
|
643
|
+
# Output only. State of the prepopulation job indicating how the prepopulation
|
|
644
|
+
# is progressing.
|
|
645
|
+
# Corresponds to the JSON property `cachePrePopulateState`
|
|
646
|
+
# @return [String]
|
|
647
|
+
attr_accessor :cache_pre_populate_state
|
|
648
|
+
|
|
617
649
|
# Optional. Flag indicating whether a CIFS change notification is enabled for
|
|
618
650
|
# the FlexCache volume.
|
|
619
651
|
# Corresponds to the JSON property `cifsChangeNotifyEnabled`
|
|
@@ -621,13 +653,23 @@ module Google
|
|
|
621
653
|
attr_accessor :cifs_change_notify_enabled
|
|
622
654
|
alias_method :cifs_change_notify_enabled?, :cifs_change_notify_enabled
|
|
623
655
|
|
|
656
|
+
# Optional. Flag indicating whether writeback is enabled for the FlexCache
|
|
657
|
+
# volume.
|
|
658
|
+
# Corresponds to the JSON property `writebackEnabled`
|
|
659
|
+
# @return [Boolean]
|
|
660
|
+
attr_accessor :writeback_enabled
|
|
661
|
+
alias_method :writeback_enabled?, :writeback_enabled
|
|
662
|
+
|
|
624
663
|
def initialize(**args)
|
|
625
664
|
update!(**args)
|
|
626
665
|
end
|
|
627
666
|
|
|
628
667
|
# Update properties of this object
|
|
629
668
|
def update!(**args)
|
|
669
|
+
@cache_pre_populate = args[:cache_pre_populate] if args.key?(:cache_pre_populate)
|
|
670
|
+
@cache_pre_populate_state = args[:cache_pre_populate_state] if args.key?(:cache_pre_populate_state)
|
|
630
671
|
@cifs_change_notify_enabled = args[:cifs_change_notify_enabled] if args.key?(:cifs_change_notify_enabled)
|
|
672
|
+
@writeback_enabled = args[:writeback_enabled] if args.key?(:writeback_enabled)
|
|
631
673
|
end
|
|
632
674
|
end
|
|
633
675
|
|
|
@@ -651,7 +693,7 @@ module Google
|
|
|
651
693
|
# @return [String]
|
|
652
694
|
attr_accessor :command
|
|
653
695
|
|
|
654
|
-
# Optional.
|
|
696
|
+
# Optional. Indicates whether the cache volume has global file lock enabled.
|
|
655
697
|
# Corresponds to the JSON property `enableGlobalFileLock`
|
|
656
698
|
# @return [Boolean]
|
|
657
699
|
attr_accessor :enable_global_file_lock
|
|
@@ -713,6 +755,40 @@ module Google
|
|
|
713
755
|
end
|
|
714
756
|
end
|
|
715
757
|
|
|
758
|
+
# Pre-populate cache volume with data from the origin volume.
|
|
759
|
+
class CachePrePopulate
|
|
760
|
+
include Google::Apis::Core::Hashable
|
|
761
|
+
|
|
762
|
+
# Optional. List of directory-paths to be excluded for pre-population for the
|
|
763
|
+
# FlexCache volume.
|
|
764
|
+
# Corresponds to the JSON property `excludePathList`
|
|
765
|
+
# @return [Array<String>]
|
|
766
|
+
attr_accessor :exclude_path_list
|
|
767
|
+
|
|
768
|
+
# Optional. List of directory-paths to be pre-populated for the FlexCache volume.
|
|
769
|
+
# Corresponds to the JSON property `pathList`
|
|
770
|
+
# @return [Array<String>]
|
|
771
|
+
attr_accessor :path_list
|
|
772
|
+
|
|
773
|
+
# Optional. Flag indicating whether the directories listed with the pathList
|
|
774
|
+
# need to be recursively pre-populated.
|
|
775
|
+
# Corresponds to the JSON property `recursion`
|
|
776
|
+
# @return [Boolean]
|
|
777
|
+
attr_accessor :recursion
|
|
778
|
+
alias_method :recursion?, :recursion
|
|
779
|
+
|
|
780
|
+
def initialize(**args)
|
|
781
|
+
update!(**args)
|
|
782
|
+
end
|
|
783
|
+
|
|
784
|
+
# Update properties of this object
|
|
785
|
+
def update!(**args)
|
|
786
|
+
@exclude_path_list = args[:exclude_path_list] if args.key?(:exclude_path_list)
|
|
787
|
+
@path_list = args[:path_list] if args.key?(:path_list)
|
|
788
|
+
@recursion = args[:recursion] if args.key?(:recursion)
|
|
789
|
+
end
|
|
790
|
+
end
|
|
791
|
+
|
|
716
792
|
# The request message for Operations.CancelOperation.
|
|
717
793
|
class CancelOperationRequest
|
|
718
794
|
include Google::Apis::Core::Hashable
|
|
@@ -1138,8 +1214,8 @@ module Google
|
|
|
1138
1214
|
# @return [String]
|
|
1139
1215
|
attr_accessor :create_time
|
|
1140
1216
|
|
|
1141
|
-
# Required. Customer managed crypto key resource full name. Format: projects/`
|
|
1142
|
-
# project`/locations/`location`/keyRings/`key_ring`/cryptoKeys/`crypto_key
|
|
1217
|
+
# Required. Customer managed crypto key resource full name. Format: `projects/`
|
|
1218
|
+
# project`/locations/`location`/keyRings/`key_ring`/cryptoKeys/`crypto_key``.
|
|
1143
1219
|
# Corresponds to the JSON property `cryptoKeyName`
|
|
1144
1220
|
# @return [String]
|
|
1145
1221
|
attr_accessor :crypto_key_name
|
|
@@ -1654,6 +1730,12 @@ module Google
|
|
|
1654
1730
|
class LocationMetadata
|
|
1655
1731
|
include Google::Apis::Core::Hashable
|
|
1656
1732
|
|
|
1733
|
+
# Output only. Indicates if the location has ONTAP Proxy support.
|
|
1734
|
+
# Corresponds to the JSON property `hasOntapProxy`
|
|
1735
|
+
# @return [Boolean]
|
|
1736
|
+
attr_accessor :has_ontap_proxy
|
|
1737
|
+
alias_method :has_ontap_proxy?, :has_ontap_proxy
|
|
1738
|
+
|
|
1657
1739
|
# Output only. Indicates if the location has VCP support.
|
|
1658
1740
|
# Corresponds to the JSON property `hasVcp`
|
|
1659
1741
|
# @return [Boolean]
|
|
@@ -1676,6 +1758,7 @@ module Google
|
|
|
1676
1758
|
|
|
1677
1759
|
# Update properties of this object
|
|
1678
1760
|
def update!(**args)
|
|
1761
|
+
@has_ontap_proxy = args[:has_ontap_proxy] if args.key?(:has_ontap_proxy)
|
|
1679
1762
|
@has_vcp = args[:has_vcp] if args.key?(:has_vcp)
|
|
1680
1763
|
@supported_flex_performance = args[:supported_flex_performance] if args.key?(:supported_flex_performance)
|
|
1681
1764
|
@supported_service_levels = args[:supported_service_levels] if args.key?(:supported_service_levels)
|
|
@@ -2097,13 +2180,14 @@ module Google
|
|
|
2097
2180
|
# @return [String]
|
|
2098
2181
|
attr_accessor :backup
|
|
2099
2182
|
|
|
2100
|
-
# Required. List of files to be restored
|
|
2101
|
-
#
|
|
2183
|
+
# Required. List of files to be restored, specified by their absolute path in
|
|
2184
|
+
# the source volume.
|
|
2102
2185
|
# Corresponds to the JSON property `fileList`
|
|
2103
2186
|
# @return [Array<String>]
|
|
2104
2187
|
attr_accessor :file_list
|
|
2105
2188
|
|
|
2106
|
-
# Optional. Absolute directory path in the destination volume.
|
|
2189
|
+
# Optional. Absolute directory path in the destination volume. This is required
|
|
2190
|
+
# if the `file_list` is provided.
|
|
2107
2191
|
# Corresponds to the JSON property `restoreDestinationPath`
|
|
2108
2192
|
# @return [String]
|
|
2109
2193
|
attr_accessor :restore_destination_path
|
|
@@ -2210,7 +2294,7 @@ module Google
|
|
|
2210
2294
|
attr_accessor :allowed_clients
|
|
2211
2295
|
|
|
2212
2296
|
# Optional. An integer representing the anonymous user ID. Range is 0 to
|
|
2213
|
-
# 4294967295. Required when squash_mode is ROOT_SQUASH or ALL_SQUASH
|
|
2297
|
+
# 4294967295. Required when `squash_mode` is `ROOT_SQUASH` or `ALL_SQUASH`.
|
|
2214
2298
|
# Corresponds to the JSON property `anonUid`
|
|
2215
2299
|
# @return [Fixnum]
|
|
2216
2300
|
attr_accessor :anon_uid
|
|
@@ -2646,8 +2730,9 @@ module Google
|
|
|
2646
2730
|
attr_accessor :total_throughput_mibps
|
|
2647
2731
|
|
|
2648
2732
|
# Optional. Type of the storage pool. This field is used to control whether the
|
|
2649
|
-
# pool supports FILE based volumes only or UNIFIED (both FILE and BLOCK)
|
|
2650
|
-
#
|
|
2733
|
+
# pool supports `FILE` based volumes only or `UNIFIED` (both `FILE` and `BLOCK`)
|
|
2734
|
+
# volumes or `UNIFIED_LARGE_CAPACITY` (both `FILE` and `BLOCK`) volumes with
|
|
2735
|
+
# large capacity. If not specified during creation, it defaults to `FILE`.
|
|
2651
2736
|
# Corresponds to the JSON property `type`
|
|
2652
2737
|
# @return [String]
|
|
2653
2738
|
attr_accessor :type
|
|
@@ -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.
|
|
19
|
+
GEM_VERSION = "0.23.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260106"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -76,6 +76,12 @@ module Google
|
|
|
76
76
|
include Google::Apis::Core::JsonObjectSupport
|
|
77
77
|
end
|
|
78
78
|
|
|
79
|
+
class CachePrePopulate
|
|
80
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
81
|
+
|
|
82
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
83
|
+
end
|
|
84
|
+
|
|
79
85
|
class CancelOperationRequest
|
|
80
86
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
81
87
|
|
|
@@ -493,9 +499,12 @@ module Google
|
|
|
493
499
|
property :backup_retention_policy, as: 'backupRetentionPolicy', class: Google::Apis::NetappV1::BackupRetentionPolicy, decorator: Google::Apis::NetappV1::BackupRetentionPolicy::Representation
|
|
494
500
|
|
|
495
501
|
property :backup_vault_type, as: 'backupVaultType'
|
|
502
|
+
property :backups_crypto_key_version, as: 'backupsCryptoKeyVersion'
|
|
496
503
|
property :create_time, as: 'createTime'
|
|
497
504
|
property :description, as: 'description'
|
|
498
505
|
property :destination_backup_vault, as: 'destinationBackupVault'
|
|
506
|
+
property :encryption_state, as: 'encryptionState'
|
|
507
|
+
property :kms_config, as: 'kmsConfig'
|
|
499
508
|
hash :labels, as: 'labels'
|
|
500
509
|
property :name, as: 'name'
|
|
501
510
|
property :source_backup_vault, as: 'sourceBackupVault'
|
|
@@ -518,7 +527,11 @@ module Google
|
|
|
518
527
|
class CacheConfig
|
|
519
528
|
# @private
|
|
520
529
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
530
|
+
property :cache_pre_populate, as: 'cachePrePopulate', class: Google::Apis::NetappV1::CachePrePopulate, decorator: Google::Apis::NetappV1::CachePrePopulate::Representation
|
|
531
|
+
|
|
532
|
+
property :cache_pre_populate_state, as: 'cachePrePopulateState'
|
|
521
533
|
property :cifs_change_notify_enabled, as: 'cifsChangeNotifyEnabled'
|
|
534
|
+
property :writeback_enabled, as: 'writebackEnabled'
|
|
522
535
|
end
|
|
523
536
|
end
|
|
524
537
|
|
|
@@ -540,6 +553,15 @@ module Google
|
|
|
540
553
|
end
|
|
541
554
|
end
|
|
542
555
|
|
|
556
|
+
class CachePrePopulate
|
|
557
|
+
# @private
|
|
558
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
559
|
+
collection :exclude_path_list, as: 'excludePathList'
|
|
560
|
+
collection :path_list, as: 'pathList'
|
|
561
|
+
property :recursion, as: 'recursion'
|
|
562
|
+
end
|
|
563
|
+
end
|
|
564
|
+
|
|
543
565
|
class CancelOperationRequest
|
|
544
566
|
# @private
|
|
545
567
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -807,6 +829,7 @@ module Google
|
|
|
807
829
|
class LocationMetadata
|
|
808
830
|
# @private
|
|
809
831
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
832
|
+
property :has_ontap_proxy, as: 'hasOntapProxy'
|
|
810
833
|
property :has_vcp, as: 'hasVcp'
|
|
811
834
|
collection :supported_flex_performance, as: 'supportedFlexPerformance'
|
|
812
835
|
collection :supported_service_levels, as: 'supportedServiceLevels'
|
|
@@ -984,8 +984,8 @@ module Google
|
|
|
984
984
|
execute_or_queue_command(command, &block)
|
|
985
985
|
end
|
|
986
986
|
|
|
987
|
-
# Returns a list of host groups in a location
|
|
988
|
-
# groups across all locations.
|
|
987
|
+
# Returns a list of host groups in a `location`. Use `-` as location to list
|
|
988
|
+
# host groups across all locations.
|
|
989
989
|
# @param [String] parent
|
|
990
990
|
# Required. Parent value for ListHostGroupsRequest
|
|
991
991
|
# @param [String] filter
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-netapp_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.23.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -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.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-netapp_v1/v0.23.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:
|