google-apis-netapp_v1 0.13.0 → 0.14.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: 5a0fd1d4262a920d84b21d6332d9e7de37e47e8923077c5d1d042838d8cfe2ec
|
4
|
+
data.tar.gz: fe12b8d8f2fea657cfff031203cd9fa3aadd20d7584ff9a3c8653ccc2dc4f4be
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 057fbfe2eaaca25b2e5f83d3dde9ea963ae7b71a550c13ddc50d1ef13e49fd1bafbb5c97f8605df214f304a390a1b4b19075687f953dcab21e79a92affd1b63f
|
7
|
+
data.tar.gz: 7ea54a8e48c13dbf32c09e5c03363a9aab67e9d0ba6c3d782a264185a513d823e80a4a2f78beec154283ffedb2ed6eb8b0ad8ccba6f4129aadf9a703744ec2f4
|
data/CHANGELOG.md
CHANGED
@@ -839,11 +839,21 @@ module Google
|
|
839
839
|
# @return [String]
|
840
840
|
attr_accessor :description
|
841
841
|
|
842
|
+
# Optional. Type of the hybrid replication.
|
843
|
+
# Corresponds to the JSON property `hybridReplicationType`
|
844
|
+
# @return [String]
|
845
|
+
attr_accessor :hybrid_replication_type
|
846
|
+
|
842
847
|
# Optional. Labels to be added to the replication as the key value pairs.
|
843
848
|
# Corresponds to the JSON property `labels`
|
844
849
|
# @return [Hash<String,String>]
|
845
850
|
attr_accessor :labels
|
846
851
|
|
852
|
+
# Optional. Constituent volume count for large volume.
|
853
|
+
# Corresponds to the JSON property `largeVolumeConstituentCount`
|
854
|
+
# @return [Fixnum]
|
855
|
+
attr_accessor :large_volume_constituent_count
|
856
|
+
|
847
857
|
# Required. Name of the user's local source cluster to be peered with the
|
848
858
|
# destination cluster.
|
849
859
|
# Corresponds to the JSON property `peerClusterName`
|
@@ -872,6 +882,11 @@ module Google
|
|
872
882
|
# @return [String]
|
873
883
|
attr_accessor :replication
|
874
884
|
|
885
|
+
# Optional. Replication Schedule for the replication created.
|
886
|
+
# Corresponds to the JSON property `replicationSchedule`
|
887
|
+
# @return [String]
|
888
|
+
attr_accessor :replication_schedule
|
889
|
+
|
875
890
|
def initialize(**args)
|
876
891
|
update!(**args)
|
877
892
|
end
|
@@ -880,12 +895,15 @@ module Google
|
|
880
895
|
def update!(**args)
|
881
896
|
@cluster_location = args[:cluster_location] if args.key?(:cluster_location)
|
882
897
|
@description = args[:description] if args.key?(:description)
|
898
|
+
@hybrid_replication_type = args[:hybrid_replication_type] if args.key?(:hybrid_replication_type)
|
883
899
|
@labels = args[:labels] if args.key?(:labels)
|
900
|
+
@large_volume_constituent_count = args[:large_volume_constituent_count] if args.key?(:large_volume_constituent_count)
|
884
901
|
@peer_cluster_name = args[:peer_cluster_name] if args.key?(:peer_cluster_name)
|
885
902
|
@peer_ip_addresses = args[:peer_ip_addresses] if args.key?(:peer_ip_addresses)
|
886
903
|
@peer_svm_name = args[:peer_svm_name] if args.key?(:peer_svm_name)
|
887
904
|
@peer_volume_name = args[:peer_volume_name] if args.key?(:peer_volume_name)
|
888
905
|
@replication = args[:replication] if args.key?(:replication)
|
906
|
+
@replication_schedule = args[:replication_schedule] if args.key?(:replication_schedule)
|
889
907
|
end
|
890
908
|
end
|
891
909
|
|
@@ -1727,6 +1745,11 @@ module Google
|
|
1727
1745
|
# @return [String]
|
1728
1746
|
attr_accessor :hybrid_replication_type
|
1729
1747
|
|
1748
|
+
# UserCommands contains the commands to be executed by the customer.
|
1749
|
+
# Corresponds to the JSON property `hybridReplicationUserCommands`
|
1750
|
+
# @return [Google::Apis::NetappV1::UserCommands]
|
1751
|
+
attr_accessor :hybrid_replication_user_commands
|
1752
|
+
|
1730
1753
|
# Resource labels to represent user provided metadata.
|
1731
1754
|
# Corresponds to the JSON property `labels`
|
1732
1755
|
# @return [Hash<String,String>]
|
@@ -1789,6 +1812,7 @@ module Google
|
|
1789
1812
|
@healthy = args[:healthy] if args.key?(:healthy)
|
1790
1813
|
@hybrid_peering_details = args[:hybrid_peering_details] if args.key?(:hybrid_peering_details)
|
1791
1814
|
@hybrid_replication_type = args[:hybrid_replication_type] if args.key?(:hybrid_replication_type)
|
1815
|
+
@hybrid_replication_user_commands = args[:hybrid_replication_user_commands] if args.key?(:hybrid_replication_user_commands)
|
1792
1816
|
@labels = args[:labels] if args.key?(:labels)
|
1793
1817
|
@mirror_state = args[:mirror_state] if args.key?(:mirror_state)
|
1794
1818
|
@name = args[:name] if args.key?(:name)
|
@@ -2476,6 +2500,25 @@ module Google
|
|
2476
2500
|
end
|
2477
2501
|
end
|
2478
2502
|
|
2503
|
+
# UserCommands contains the commands to be executed by the customer.
|
2504
|
+
class UserCommands
|
2505
|
+
include Google::Apis::Core::Hashable
|
2506
|
+
|
2507
|
+
# Output only. List of commands to be executed by the customer.
|
2508
|
+
# Corresponds to the JSON property `commands`
|
2509
|
+
# @return [Array<String>]
|
2510
|
+
attr_accessor :commands
|
2511
|
+
|
2512
|
+
def initialize(**args)
|
2513
|
+
update!(**args)
|
2514
|
+
end
|
2515
|
+
|
2516
|
+
# Update properties of this object
|
2517
|
+
def update!(**args)
|
2518
|
+
@commands = args[:commands] if args.key?(:commands)
|
2519
|
+
end
|
2520
|
+
end
|
2521
|
+
|
2479
2522
|
# ValidateDirectoryServiceRequest validates the directory service policy
|
2480
2523
|
# attached to the storage pool.
|
2481
2524
|
class ValidateDirectoryServiceRequest
|
@@ -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.14.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 = "20250817"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -328,6 +328,12 @@ module Google
|
|
328
328
|
include Google::Apis::Core::JsonObjectSupport
|
329
329
|
end
|
330
330
|
|
331
|
+
class UserCommands
|
332
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
333
|
+
|
334
|
+
include Google::Apis::Core::JsonObjectSupport
|
335
|
+
end
|
336
|
+
|
331
337
|
class ValidateDirectoryServiceRequest
|
332
338
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
333
339
|
|
@@ -545,12 +551,15 @@ module Google
|
|
545
551
|
class Representation < Google::Apis::Core::JsonRepresentation
|
546
552
|
property :cluster_location, as: 'clusterLocation'
|
547
553
|
property :description, as: 'description'
|
554
|
+
property :hybrid_replication_type, as: 'hybridReplicationType'
|
548
555
|
hash :labels, as: 'labels'
|
556
|
+
property :large_volume_constituent_count, as: 'largeVolumeConstituentCount'
|
549
557
|
property :peer_cluster_name, as: 'peerClusterName'
|
550
558
|
collection :peer_ip_addresses, as: 'peerIpAddresses'
|
551
559
|
property :peer_svm_name, as: 'peerSvmName'
|
552
560
|
property :peer_volume_name, as: 'peerVolumeName'
|
553
561
|
property :replication, as: 'replication'
|
562
|
+
property :replication_schedule, as: 'replicationSchedule'
|
554
563
|
end
|
555
564
|
end
|
556
565
|
|
@@ -781,6 +790,8 @@ module Google
|
|
781
790
|
property :hybrid_peering_details, as: 'hybridPeeringDetails', class: Google::Apis::NetappV1::HybridPeeringDetails, decorator: Google::Apis::NetappV1::HybridPeeringDetails::Representation
|
782
791
|
|
783
792
|
property :hybrid_replication_type, as: 'hybridReplicationType'
|
793
|
+
property :hybrid_replication_user_commands, as: 'hybridReplicationUserCommands', class: Google::Apis::NetappV1::UserCommands, decorator: Google::Apis::NetappV1::UserCommands::Representation
|
794
|
+
|
784
795
|
hash :labels, as: 'labels'
|
785
796
|
property :mirror_state, as: 'mirrorState'
|
786
797
|
property :name, as: 'name'
|
@@ -952,6 +963,13 @@ module Google
|
|
952
963
|
end
|
953
964
|
end
|
954
965
|
|
966
|
+
class UserCommands
|
967
|
+
# @private
|
968
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
969
|
+
collection :commands, as: 'commands'
|
970
|
+
end
|
971
|
+
end
|
972
|
+
|
955
973
|
class ValidateDirectoryServiceRequest
|
956
974
|
# @private
|
957
975
|
class Representation < Google::Apis::Core::JsonRepresentation
|
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.14.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.14.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:
|