google-cloud-netapp-v1 2.9.0 → 2.11.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 +4 -4
- data/lib/google/cloud/netapp/v1/cloud_netapp_service_pb.rb +2 -1
- data/lib/google/cloud/netapp/v1/cloud_netapp_service_services_pb.rb +15 -0
- data/lib/google/cloud/netapp/v1/common_pb.rb +2 -1
- data/lib/google/cloud/netapp/v1/netapp/client.rb +526 -0
- data/lib/google/cloud/netapp/v1/netapp/rest/client.rb +491 -0
- data/lib/google/cloud/netapp/v1/netapp/rest/service_stub.rb +308 -0
- data/lib/google/cloud/netapp/v1/ontap_pb.rb +31 -0
- data/lib/google/cloud/netapp/v1/storage_pool_pb.rb +2 -1
- data/lib/google/cloud/netapp/v1/version.rb +1 -1
- data/lib/google/cloud/netapp/v1/volume_pb.rb +4 -1
- data/proto_docs/google/api/client.rb +149 -29
- data/proto_docs/google/cloud/netapp/v1/backup.rb +1 -0
- data/proto_docs/google/cloud/netapp/v1/common.rb +13 -2
- data/proto_docs/google/cloud/netapp/v1/ontap.rb +140 -0
- data/proto_docs/google/cloud/netapp/v1/storage_pool.rb +24 -3
- data/proto_docs/google/cloud/netapp/v1/volume.rb +75 -2
- data/proto_docs/google/protobuf/struct.rb +108 -0
- metadata +4 -1
|
@@ -593,6 +593,46 @@ module Google
|
|
|
593
593
|
end
|
|
594
594
|
end
|
|
595
595
|
|
|
596
|
+
##
|
|
597
|
+
# Baseline implementation for the establish_volume_peering REST call
|
|
598
|
+
#
|
|
599
|
+
# @param request_pb [::Google::Cloud::NetApp::V1::EstablishVolumePeeringRequest]
|
|
600
|
+
# A request object representing the call parameters. Required.
|
|
601
|
+
# @param options [::Gapic::CallOptions]
|
|
602
|
+
# Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
|
|
603
|
+
#
|
|
604
|
+
# @yield [result, operation] Access the result along with the TransportOperation object
|
|
605
|
+
# @yieldparam result [::Google::Longrunning::Operation]
|
|
606
|
+
# @yieldparam operation [::Gapic::Rest::TransportOperation]
|
|
607
|
+
#
|
|
608
|
+
# @return [::Google::Longrunning::Operation]
|
|
609
|
+
# A result object deserialized from the server's reply
|
|
610
|
+
def establish_volume_peering request_pb, options = nil
|
|
611
|
+
raise ::ArgumentError, "request must be provided" if request_pb.nil?
|
|
612
|
+
|
|
613
|
+
verb, uri, query_string_params, body = ServiceStub.transcode_establish_volume_peering_request request_pb
|
|
614
|
+
query_string_params = if query_string_params.any?
|
|
615
|
+
query_string_params.to_h { |p| p.split "=", 2 }
|
|
616
|
+
else
|
|
617
|
+
{}
|
|
618
|
+
end
|
|
619
|
+
|
|
620
|
+
response = @client_stub.make_http_request(
|
|
621
|
+
verb,
|
|
622
|
+
uri: uri,
|
|
623
|
+
body: body || "",
|
|
624
|
+
params: query_string_params,
|
|
625
|
+
method_name: "establish_volume_peering",
|
|
626
|
+
options: options
|
|
627
|
+
)
|
|
628
|
+
operation = ::Gapic::Rest::TransportOperation.new response
|
|
629
|
+
result = ::Google::Longrunning::Operation.decode_json response.body, ignore_unknown_fields: true
|
|
630
|
+
catch :response do
|
|
631
|
+
yield result, operation if block_given?
|
|
632
|
+
result
|
|
633
|
+
end
|
|
634
|
+
end
|
|
635
|
+
|
|
596
636
|
##
|
|
597
637
|
# Baseline implementation for the list_snapshots REST call
|
|
598
638
|
#
|
|
@@ -2713,6 +2753,166 @@ module Google
|
|
|
2713
2753
|
end
|
|
2714
2754
|
end
|
|
2715
2755
|
|
|
2756
|
+
##
|
|
2757
|
+
# Baseline implementation for the execute_ontap_post REST call
|
|
2758
|
+
#
|
|
2759
|
+
# @param request_pb [::Google::Cloud::NetApp::V1::ExecuteOntapPostRequest]
|
|
2760
|
+
# A request object representing the call parameters. Required.
|
|
2761
|
+
# @param options [::Gapic::CallOptions]
|
|
2762
|
+
# Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
|
|
2763
|
+
#
|
|
2764
|
+
# @yield [result, operation] Access the result along with the TransportOperation object
|
|
2765
|
+
# @yieldparam result [::Google::Cloud::NetApp::V1::ExecuteOntapPostResponse]
|
|
2766
|
+
# @yieldparam operation [::Gapic::Rest::TransportOperation]
|
|
2767
|
+
#
|
|
2768
|
+
# @return [::Google::Cloud::NetApp::V1::ExecuteOntapPostResponse]
|
|
2769
|
+
# A result object deserialized from the server's reply
|
|
2770
|
+
def execute_ontap_post request_pb, options = nil
|
|
2771
|
+
raise ::ArgumentError, "request must be provided" if request_pb.nil?
|
|
2772
|
+
|
|
2773
|
+
verb, uri, query_string_params, body = ServiceStub.transcode_execute_ontap_post_request request_pb
|
|
2774
|
+
query_string_params = if query_string_params.any?
|
|
2775
|
+
query_string_params.to_h { |p| p.split "=", 2 }
|
|
2776
|
+
else
|
|
2777
|
+
{}
|
|
2778
|
+
end
|
|
2779
|
+
|
|
2780
|
+
response = @client_stub.make_http_request(
|
|
2781
|
+
verb,
|
|
2782
|
+
uri: uri,
|
|
2783
|
+
body: body || "",
|
|
2784
|
+
params: query_string_params,
|
|
2785
|
+
method_name: "execute_ontap_post",
|
|
2786
|
+
options: options
|
|
2787
|
+
)
|
|
2788
|
+
operation = ::Gapic::Rest::TransportOperation.new response
|
|
2789
|
+
result = ::Google::Cloud::NetApp::V1::ExecuteOntapPostResponse.decode_json response.body, ignore_unknown_fields: true
|
|
2790
|
+
catch :response do
|
|
2791
|
+
yield result, operation if block_given?
|
|
2792
|
+
result
|
|
2793
|
+
end
|
|
2794
|
+
end
|
|
2795
|
+
|
|
2796
|
+
##
|
|
2797
|
+
# Baseline implementation for the execute_ontap_get REST call
|
|
2798
|
+
#
|
|
2799
|
+
# @param request_pb [::Google::Cloud::NetApp::V1::ExecuteOntapGetRequest]
|
|
2800
|
+
# A request object representing the call parameters. Required.
|
|
2801
|
+
# @param options [::Gapic::CallOptions]
|
|
2802
|
+
# Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
|
|
2803
|
+
#
|
|
2804
|
+
# @yield [result, operation] Access the result along with the TransportOperation object
|
|
2805
|
+
# @yieldparam result [::Google::Cloud::NetApp::V1::ExecuteOntapGetResponse]
|
|
2806
|
+
# @yieldparam operation [::Gapic::Rest::TransportOperation]
|
|
2807
|
+
#
|
|
2808
|
+
# @return [::Google::Cloud::NetApp::V1::ExecuteOntapGetResponse]
|
|
2809
|
+
# A result object deserialized from the server's reply
|
|
2810
|
+
def execute_ontap_get request_pb, options = nil
|
|
2811
|
+
raise ::ArgumentError, "request must be provided" if request_pb.nil?
|
|
2812
|
+
|
|
2813
|
+
verb, uri, query_string_params, body = ServiceStub.transcode_execute_ontap_get_request request_pb
|
|
2814
|
+
query_string_params = if query_string_params.any?
|
|
2815
|
+
query_string_params.to_h { |p| p.split "=", 2 }
|
|
2816
|
+
else
|
|
2817
|
+
{}
|
|
2818
|
+
end
|
|
2819
|
+
|
|
2820
|
+
response = @client_stub.make_http_request(
|
|
2821
|
+
verb,
|
|
2822
|
+
uri: uri,
|
|
2823
|
+
body: body || "",
|
|
2824
|
+
params: query_string_params,
|
|
2825
|
+
method_name: "execute_ontap_get",
|
|
2826
|
+
options: options
|
|
2827
|
+
)
|
|
2828
|
+
operation = ::Gapic::Rest::TransportOperation.new response
|
|
2829
|
+
result = ::Google::Cloud::NetApp::V1::ExecuteOntapGetResponse.decode_json response.body, ignore_unknown_fields: true
|
|
2830
|
+
catch :response do
|
|
2831
|
+
yield result, operation if block_given?
|
|
2832
|
+
result
|
|
2833
|
+
end
|
|
2834
|
+
end
|
|
2835
|
+
|
|
2836
|
+
##
|
|
2837
|
+
# Baseline implementation for the execute_ontap_delete REST call
|
|
2838
|
+
#
|
|
2839
|
+
# @param request_pb [::Google::Cloud::NetApp::V1::ExecuteOntapDeleteRequest]
|
|
2840
|
+
# A request object representing the call parameters. Required.
|
|
2841
|
+
# @param options [::Gapic::CallOptions]
|
|
2842
|
+
# Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
|
|
2843
|
+
#
|
|
2844
|
+
# @yield [result, operation] Access the result along with the TransportOperation object
|
|
2845
|
+
# @yieldparam result [::Google::Cloud::NetApp::V1::ExecuteOntapDeleteResponse]
|
|
2846
|
+
# @yieldparam operation [::Gapic::Rest::TransportOperation]
|
|
2847
|
+
#
|
|
2848
|
+
# @return [::Google::Cloud::NetApp::V1::ExecuteOntapDeleteResponse]
|
|
2849
|
+
# A result object deserialized from the server's reply
|
|
2850
|
+
def execute_ontap_delete request_pb, options = nil
|
|
2851
|
+
raise ::ArgumentError, "request must be provided" if request_pb.nil?
|
|
2852
|
+
|
|
2853
|
+
verb, uri, query_string_params, body = ServiceStub.transcode_execute_ontap_delete_request request_pb
|
|
2854
|
+
query_string_params = if query_string_params.any?
|
|
2855
|
+
query_string_params.to_h { |p| p.split "=", 2 }
|
|
2856
|
+
else
|
|
2857
|
+
{}
|
|
2858
|
+
end
|
|
2859
|
+
|
|
2860
|
+
response = @client_stub.make_http_request(
|
|
2861
|
+
verb,
|
|
2862
|
+
uri: uri,
|
|
2863
|
+
body: body || "",
|
|
2864
|
+
params: query_string_params,
|
|
2865
|
+
method_name: "execute_ontap_delete",
|
|
2866
|
+
options: options
|
|
2867
|
+
)
|
|
2868
|
+
operation = ::Gapic::Rest::TransportOperation.new response
|
|
2869
|
+
result = ::Google::Cloud::NetApp::V1::ExecuteOntapDeleteResponse.decode_json response.body, ignore_unknown_fields: true
|
|
2870
|
+
catch :response do
|
|
2871
|
+
yield result, operation if block_given?
|
|
2872
|
+
result
|
|
2873
|
+
end
|
|
2874
|
+
end
|
|
2875
|
+
|
|
2876
|
+
##
|
|
2877
|
+
# Baseline implementation for the execute_ontap_patch REST call
|
|
2878
|
+
#
|
|
2879
|
+
# @param request_pb [::Google::Cloud::NetApp::V1::ExecuteOntapPatchRequest]
|
|
2880
|
+
# A request object representing the call parameters. Required.
|
|
2881
|
+
# @param options [::Gapic::CallOptions]
|
|
2882
|
+
# Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
|
|
2883
|
+
#
|
|
2884
|
+
# @yield [result, operation] Access the result along with the TransportOperation object
|
|
2885
|
+
# @yieldparam result [::Google::Cloud::NetApp::V1::ExecuteOntapPatchResponse]
|
|
2886
|
+
# @yieldparam operation [::Gapic::Rest::TransportOperation]
|
|
2887
|
+
#
|
|
2888
|
+
# @return [::Google::Cloud::NetApp::V1::ExecuteOntapPatchResponse]
|
|
2889
|
+
# A result object deserialized from the server's reply
|
|
2890
|
+
def execute_ontap_patch request_pb, options = nil
|
|
2891
|
+
raise ::ArgumentError, "request must be provided" if request_pb.nil?
|
|
2892
|
+
|
|
2893
|
+
verb, uri, query_string_params, body = ServiceStub.transcode_execute_ontap_patch_request request_pb
|
|
2894
|
+
query_string_params = if query_string_params.any?
|
|
2895
|
+
query_string_params.to_h { |p| p.split "=", 2 }
|
|
2896
|
+
else
|
|
2897
|
+
{}
|
|
2898
|
+
end
|
|
2899
|
+
|
|
2900
|
+
response = @client_stub.make_http_request(
|
|
2901
|
+
verb,
|
|
2902
|
+
uri: uri,
|
|
2903
|
+
body: body || "",
|
|
2904
|
+
params: query_string_params,
|
|
2905
|
+
method_name: "execute_ontap_patch",
|
|
2906
|
+
options: options
|
|
2907
|
+
)
|
|
2908
|
+
operation = ::Gapic::Rest::TransportOperation.new response
|
|
2909
|
+
result = ::Google::Cloud::NetApp::V1::ExecuteOntapPatchResponse.decode_json response.body, ignore_unknown_fields: true
|
|
2910
|
+
catch :response do
|
|
2911
|
+
yield result, operation if block_given?
|
|
2912
|
+
result
|
|
2913
|
+
end
|
|
2914
|
+
end
|
|
2915
|
+
|
|
2716
2916
|
##
|
|
2717
2917
|
# @private
|
|
2718
2918
|
#
|
|
@@ -2993,6 +3193,28 @@ module Google
|
|
|
2993
3193
|
transcoder.transcode request_pb
|
|
2994
3194
|
end
|
|
2995
3195
|
|
|
3196
|
+
##
|
|
3197
|
+
# @private
|
|
3198
|
+
#
|
|
3199
|
+
# GRPC transcoding helper method for the establish_volume_peering REST call
|
|
3200
|
+
#
|
|
3201
|
+
# @param request_pb [::Google::Cloud::NetApp::V1::EstablishVolumePeeringRequest]
|
|
3202
|
+
# A request object representing the call parameters. Required.
|
|
3203
|
+
# @return [Array(String, [String, nil], Hash{String => String})]
|
|
3204
|
+
# Uri, Body, Query string parameters
|
|
3205
|
+
def self.transcode_establish_volume_peering_request request_pb
|
|
3206
|
+
transcoder = Gapic::Rest::GrpcTranscoder.new
|
|
3207
|
+
.with_bindings(
|
|
3208
|
+
uri_method: :post,
|
|
3209
|
+
uri_template: "/v1/{name}:establishPeering",
|
|
3210
|
+
body: "*",
|
|
3211
|
+
matches: [
|
|
3212
|
+
["name", %r{^projects/[^/]+/locations/[^/]+/volumes/[^/]+/?$}, false]
|
|
3213
|
+
]
|
|
3214
|
+
)
|
|
3215
|
+
transcoder.transcode request_pb
|
|
3216
|
+
end
|
|
3217
|
+
|
|
2996
3218
|
##
|
|
2997
3219
|
# @private
|
|
2998
3220
|
#
|
|
@@ -4131,6 +4353,92 @@ module Google
|
|
|
4131
4353
|
)
|
|
4132
4354
|
transcoder.transcode request_pb
|
|
4133
4355
|
end
|
|
4356
|
+
|
|
4357
|
+
##
|
|
4358
|
+
# @private
|
|
4359
|
+
#
|
|
4360
|
+
# GRPC transcoding helper method for the execute_ontap_post REST call
|
|
4361
|
+
#
|
|
4362
|
+
# @param request_pb [::Google::Cloud::NetApp::V1::ExecuteOntapPostRequest]
|
|
4363
|
+
# A request object representing the call parameters. Required.
|
|
4364
|
+
# @return [Array(String, [String, nil], Hash{String => String})]
|
|
4365
|
+
# Uri, Body, Query string parameters
|
|
4366
|
+
def self.transcode_execute_ontap_post_request request_pb
|
|
4367
|
+
transcoder = Gapic::Rest::GrpcTranscoder.new
|
|
4368
|
+
.with_bindings(
|
|
4369
|
+
uri_method: :post,
|
|
4370
|
+
uri_template: "/v1/{ontap_path}",
|
|
4371
|
+
body: "*",
|
|
4372
|
+
matches: [
|
|
4373
|
+
["ontap_path", %r{^projects/[^/]+/locations/[^/]+/storagePools/[^/]+/ontap(?:/.*)?$}, true]
|
|
4374
|
+
]
|
|
4375
|
+
)
|
|
4376
|
+
transcoder.transcode request_pb
|
|
4377
|
+
end
|
|
4378
|
+
|
|
4379
|
+
##
|
|
4380
|
+
# @private
|
|
4381
|
+
#
|
|
4382
|
+
# GRPC transcoding helper method for the execute_ontap_get REST call
|
|
4383
|
+
#
|
|
4384
|
+
# @param request_pb [::Google::Cloud::NetApp::V1::ExecuteOntapGetRequest]
|
|
4385
|
+
# A request object representing the call parameters. Required.
|
|
4386
|
+
# @return [Array(String, [String, nil], Hash{String => String})]
|
|
4387
|
+
# Uri, Body, Query string parameters
|
|
4388
|
+
def self.transcode_execute_ontap_get_request request_pb
|
|
4389
|
+
transcoder = Gapic::Rest::GrpcTranscoder.new
|
|
4390
|
+
.with_bindings(
|
|
4391
|
+
uri_method: :get,
|
|
4392
|
+
uri_template: "/v1/{ontap_path}",
|
|
4393
|
+
matches: [
|
|
4394
|
+
["ontap_path", %r{^projects/[^/]+/locations/[^/]+/storagePools/[^/]+/ontap(?:/.*)?$}, true]
|
|
4395
|
+
]
|
|
4396
|
+
)
|
|
4397
|
+
transcoder.transcode request_pb
|
|
4398
|
+
end
|
|
4399
|
+
|
|
4400
|
+
##
|
|
4401
|
+
# @private
|
|
4402
|
+
#
|
|
4403
|
+
# GRPC transcoding helper method for the execute_ontap_delete REST call
|
|
4404
|
+
#
|
|
4405
|
+
# @param request_pb [::Google::Cloud::NetApp::V1::ExecuteOntapDeleteRequest]
|
|
4406
|
+
# A request object representing the call parameters. Required.
|
|
4407
|
+
# @return [Array(String, [String, nil], Hash{String => String})]
|
|
4408
|
+
# Uri, Body, Query string parameters
|
|
4409
|
+
def self.transcode_execute_ontap_delete_request request_pb
|
|
4410
|
+
transcoder = Gapic::Rest::GrpcTranscoder.new
|
|
4411
|
+
.with_bindings(
|
|
4412
|
+
uri_method: :delete,
|
|
4413
|
+
uri_template: "/v1/{ontap_path}",
|
|
4414
|
+
matches: [
|
|
4415
|
+
["ontap_path", %r{^projects/[^/]+/locations/[^/]+/storagePools/[^/]+/ontap(?:/.*)?$}, true]
|
|
4416
|
+
]
|
|
4417
|
+
)
|
|
4418
|
+
transcoder.transcode request_pb
|
|
4419
|
+
end
|
|
4420
|
+
|
|
4421
|
+
##
|
|
4422
|
+
# @private
|
|
4423
|
+
#
|
|
4424
|
+
# GRPC transcoding helper method for the execute_ontap_patch REST call
|
|
4425
|
+
#
|
|
4426
|
+
# @param request_pb [::Google::Cloud::NetApp::V1::ExecuteOntapPatchRequest]
|
|
4427
|
+
# A request object representing the call parameters. Required.
|
|
4428
|
+
# @return [Array(String, [String, nil], Hash{String => String})]
|
|
4429
|
+
# Uri, Body, Query string parameters
|
|
4430
|
+
def self.transcode_execute_ontap_patch_request request_pb
|
|
4431
|
+
transcoder = Gapic::Rest::GrpcTranscoder.new
|
|
4432
|
+
.with_bindings(
|
|
4433
|
+
uri_method: :patch,
|
|
4434
|
+
uri_template: "/v1/{ontap_path}",
|
|
4435
|
+
body: "*",
|
|
4436
|
+
matches: [
|
|
4437
|
+
["ontap_path", %r{^projects/[^/]+/locations/[^/]+/storagePools/[^/]+/ontap(?:/.*)?$}, true]
|
|
4438
|
+
]
|
|
4439
|
+
)
|
|
4440
|
+
transcoder.transcode request_pb
|
|
4441
|
+
end
|
|
4134
4442
|
end
|
|
4135
4443
|
end
|
|
4136
4444
|
end
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
+
# source: google/cloud/netapp/v1/ontap.proto
|
|
4
|
+
|
|
5
|
+
require 'google/protobuf'
|
|
6
|
+
|
|
7
|
+
require 'google/api/field_behavior_pb'
|
|
8
|
+
require 'google/protobuf/struct_pb'
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
descriptor_data = "\n\"google/cloud/netapp/v1/ontap.proto\x12\x16google.cloud.netapp.v1\x1a\x1fgoogle/api/field_behavior.proto\x1a\x1cgoogle/protobuf/struct.proto\"^\n\x17\x45xecuteOntapPostRequest\x12*\n\x04\x62ody\x18\x02 \x01(\x0b\x32\x17.google.protobuf.StructB\x03\xe0\x41\x02\x12\x17\n\nontap_path\x18\x03 \x01(\tB\x03\xe0\x41\x02\"A\n\x18\x45xecuteOntapPostResponse\x12%\n\x04\x62ody\x18\x01 \x01(\x0b\x32\x17.google.protobuf.Struct\"1\n\x16\x45xecuteOntapGetRequest\x12\x17\n\nontap_path\x18\x01 \x01(\tB\x03\xe0\x41\x02\"@\n\x17\x45xecuteOntapGetResponse\x12%\n\x04\x62ody\x18\x01 \x01(\x0b\x32\x17.google.protobuf.Struct\"4\n\x19\x45xecuteOntapDeleteRequest\x12\x17\n\nontap_path\x18\x02 \x01(\tB\x03\xe0\x41\x02\"C\n\x1a\x45xecuteOntapDeleteResponse\x12%\n\x04\x62ody\x18\x01 \x01(\x0b\x32\x17.google.protobuf.Struct\"_\n\x18\x45xecuteOntapPatchRequest\x12*\n\x04\x62ody\x18\x02 \x01(\x0b\x32\x17.google.protobuf.StructB\x03\xe0\x41\x02\x12\x17\n\nontap_path\x18\x03 \x01(\tB\x03\xe0\x41\x02\"B\n\x19\x45xecuteOntapPatchResponse\x12%\n\x04\x62ody\x18\x01 \x01(\x0b\x32\x17.google.protobuf.StructB\xac\x01\n\x1a\x63om.google.cloud.netapp.v1B\nOntapProtoP\x01Z2cloud.google.com/go/netapp/apiv1/netapppb;netapppb\xaa\x02\x16Google.Cloud.NetApp.V1\xca\x02\x16Google\\Cloud\\NetApp\\V1\xea\x02\x19Google::Cloud::NetApp::V1b\x06proto3"
|
|
12
|
+
|
|
13
|
+
pool = ::Google::Protobuf::DescriptorPool.generated_pool
|
|
14
|
+
pool.add_serialized_file(descriptor_data)
|
|
15
|
+
|
|
16
|
+
module Google
|
|
17
|
+
module Cloud
|
|
18
|
+
module NetApp
|
|
19
|
+
module V1
|
|
20
|
+
ExecuteOntapPostRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.netapp.v1.ExecuteOntapPostRequest").msgclass
|
|
21
|
+
ExecuteOntapPostResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.netapp.v1.ExecuteOntapPostResponse").msgclass
|
|
22
|
+
ExecuteOntapGetRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.netapp.v1.ExecuteOntapGetRequest").msgclass
|
|
23
|
+
ExecuteOntapGetResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.netapp.v1.ExecuteOntapGetResponse").msgclass
|
|
24
|
+
ExecuteOntapDeleteRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.netapp.v1.ExecuteOntapDeleteRequest").msgclass
|
|
25
|
+
ExecuteOntapDeleteResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.netapp.v1.ExecuteOntapDeleteResponse").msgclass
|
|
26
|
+
ExecuteOntapPatchRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.netapp.v1.ExecuteOntapPatchRequest").msgclass
|
|
27
|
+
ExecuteOntapPatchResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.netapp.v1.ExecuteOntapPatchResponse").msgclass
|
|
28
|
+
end
|
|
29
|
+
end
|
|
30
|
+
end
|
|
31
|
+
end
|
|
@@ -11,7 +11,7 @@ require 'google/protobuf/field_mask_pb'
|
|
|
11
11
|
require 'google/protobuf/timestamp_pb'
|
|
12
12
|
|
|
13
13
|
|
|
14
|
-
descriptor_data = "\n)google/cloud/netapp/v1/storage_pool.proto\x12\x16google.cloud.netapp.v1\x1a\x1fgoogle/api/field_behavior.proto\x1a\x19google/api/resource.proto\x1a#google/cloud/netapp/v1/common.proto\x1a google/protobuf/field_mask.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"P\n\x15GetStoragePoolRequest\x12\x37\n\x04name\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!netapp.googleapis.com/StoragePool\"\xb1\x01\n\x17ListStoragePoolsRequest\x12\x39\n\x06parent\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\x12!netapp.googleapis.com/StoragePool\x12\x16\n\tpage_size\x18\x02 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12\x15\n\x08order_by\x18\x04 \x01(\tB\x03\xe0\x41\x01\x12\x13\n\x06\x66ilter\x18\x05 \x01(\tB\x03\xe0\x41\x01\"\x84\x01\n\x18ListStoragePoolsResponse\x12:\n\rstorage_pools\x18\x01 \x03(\x0b\x32#.google.cloud.netapp.v1.StoragePool\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x12\x13\n\x0bunreachable\x18\x03 \x03(\t\"\xb3\x01\n\x18\x43reateStoragePoolRequest\x12\x39\n\x06parent\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\x12!netapp.googleapis.com/StoragePool\x12\x1c\n\x0fstorage_pool_id\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12>\n\x0cstorage_pool\x18\x03 \x01(\x0b\x32#.google.cloud.netapp.v1.StoragePoolB\x03\xe0\x41\x02\"\x90\x01\n\x18UpdateStoragePoolRequest\x12\x34\n\x0bupdate_mask\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.FieldMaskB\x03\xe0\x41\x02\x12>\n\x0cstorage_pool\x18\x02 \x01(\x0b\x32#.google.cloud.netapp.v1.StoragePoolB\x03\xe0\x41\x02\"S\n\x18\x44\x65leteStoragePoolRequest\x12\x37\n\x04name\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!netapp.googleapis.com/StoragePool\"Y\n\x1eSwitchActiveReplicaZoneRequest\x12\x37\n\x04name\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!netapp.googleapis.com/StoragePool\"\
|
|
14
|
+
descriptor_data = "\n)google/cloud/netapp/v1/storage_pool.proto\x12\x16google.cloud.netapp.v1\x1a\x1fgoogle/api/field_behavior.proto\x1a\x19google/api/resource.proto\x1a#google/cloud/netapp/v1/common.proto\x1a google/protobuf/field_mask.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"P\n\x15GetStoragePoolRequest\x12\x37\n\x04name\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!netapp.googleapis.com/StoragePool\"\xb1\x01\n\x17ListStoragePoolsRequest\x12\x39\n\x06parent\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\x12!netapp.googleapis.com/StoragePool\x12\x16\n\tpage_size\x18\x02 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12\x15\n\x08order_by\x18\x04 \x01(\tB\x03\xe0\x41\x01\x12\x13\n\x06\x66ilter\x18\x05 \x01(\tB\x03\xe0\x41\x01\"\x84\x01\n\x18ListStoragePoolsResponse\x12:\n\rstorage_pools\x18\x01 \x03(\x0b\x32#.google.cloud.netapp.v1.StoragePool\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x12\x13\n\x0bunreachable\x18\x03 \x03(\t\"\xb3\x01\n\x18\x43reateStoragePoolRequest\x12\x39\n\x06parent\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\x12!netapp.googleapis.com/StoragePool\x12\x1c\n\x0fstorage_pool_id\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12>\n\x0cstorage_pool\x18\x03 \x01(\x0b\x32#.google.cloud.netapp.v1.StoragePoolB\x03\xe0\x41\x02\"\x90\x01\n\x18UpdateStoragePoolRequest\x12\x34\n\x0bupdate_mask\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.FieldMaskB\x03\xe0\x41\x02\x12>\n\x0cstorage_pool\x18\x02 \x01(\x0b\x32#.google.cloud.netapp.v1.StoragePoolB\x03\xe0\x41\x02\"S\n\x18\x44\x65leteStoragePoolRequest\x12\x37\n\x04name\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!netapp.googleapis.com/StoragePool\"Y\n\x1eSwitchActiveReplicaZoneRequest\x12\x37\n\x04name\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!netapp.googleapis.com/StoragePool\"\xa9\x0e\n\x0bStoragePool\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x08\x12@\n\rservice_level\x18\x02 \x01(\x0e\x32$.google.cloud.netapp.v1.ServiceLevelB\x03\xe0\x41\x02\x12\x19\n\x0c\x63\x61pacity_gib\x18\x03 \x01(\x03\x42\x03\xe0\x41\x02\x12 \n\x13volume_capacity_gib\x18\x04 \x01(\x03\x42\x03\xe0\x41\x03\x12\x19\n\x0cvolume_count\x18\x05 \x01(\x05\x42\x03\xe0\x41\x03\x12=\n\x05state\x18\x06 \x01(\x0e\x32).google.cloud.netapp.v1.StoragePool.StateB\x03\xe0\x41\x03\x12\x1a\n\rstate_details\x18\x07 \x01(\tB\x03\xe0\x41\x03\x12\x34\n\x0b\x63reate_time\x18\x08 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x18\n\x0b\x64\x65scription\x18\t \x01(\tB\x03\xe0\x41\x01\x12\x44\n\x06labels\x18\n \x03(\x0b\x32/.google.cloud.netapp.v1.StoragePool.LabelsEntryB\x03\xe0\x41\x01\x12\x37\n\x07network\x18\x0b \x01(\tB&\xe0\x41\x02\xfa\x41 \n\x1e\x63ompute.googleapis.com/Network\x12G\n\x10\x61\x63tive_directory\x18\x0c \x01(\tB-\xe0\x41\x01\xfa\x41\'\n%netapp.googleapis.com/ActiveDirectory\x12;\n\nkms_config\x18\r \x01(\tB\'\xe0\x41\x01\xfa\x41!\n\x1fnetapp.googleapis.com/KmsConfig\x12\x19\n\x0cldap_enabled\x18\x0e \x01(\x08\x42\x03\xe0\x41\x01\x12\x16\n\tpsa_range\x18\x0f \x01(\tB\x03\xe0\x41\x01\x12\x44\n\x0f\x65ncryption_type\x18\x10 \x01(\x0e\x32&.google.cloud.netapp.v1.EncryptionTypeB\x03\xe0\x41\x03\x12&\n\x15global_access_allowed\x18\x11 \x01(\x08\x42\x02\x18\x01H\x00\x88\x01\x01\x12\x1f\n\x12\x61llow_auto_tiering\x18\x12 \x01(\x08\x42\x03\xe0\x41\x01\x12\x19\n\x0creplica_zone\x18\x14 \x01(\tB\x03\xe0\x41\x01\x12\x11\n\x04zone\x18\x15 \x01(\tB\x03\xe0\x41\x01\x12\x1a\n\rsatisfies_pzs\x18\x17 \x01(\x08\x42\x03\xe0\x41\x03\x12\x1a\n\rsatisfies_pzi\x18\x18 \x01(\x08\x42\x03\xe0\x41\x03\x12\'\n\x1a\x63ustom_performance_enabled\x18\x19 \x01(\x08\x42\x03\xe0\x41\x01\x12#\n\x16total_throughput_mibps\x18\x1a \x01(\x03\x42\x03\xe0\x41\x01\x12\x17\n\ntotal_iops\x18\x1b \x01(\x03\x42\x03\xe0\x41\x01\x12\x1e\n\x11hot_tier_size_gib\x18\x1c \x01(\x03\x42\x03\xe0\x41\x01\x12-\n\x1b\x65nable_hot_tier_auto_resize\x18\x1d \x01(\x08\x42\x03\xe0\x41\x01H\x01\x88\x01\x01\x12\x36\n\x08qos_type\x18\x1e \x01(\x0e\x32\x1f.google.cloud.netapp.v1.QosTypeB\x03\xe0\x41\x01\x12\'\n\x1a\x61vailable_throughput_mibps\x18\x1f \x01(\x01\x42\x03\xe0\x41\x03\x12$\n\x17\x63old_tier_size_used_gib\x18! \x01(\x03\x42\x03\xe0\x41\x03\x12#\n\x16hot_tier_size_used_gib\x18\" \x01(\x03\x42\x03\xe0\x41\x03\x12?\n\x04type\x18# \x01(\x0e\x32\'.google.cloud.netapp.v1.StoragePoolTypeB\x03\xe0\x41\x01H\x02\x88\x01\x01\x12\x34\n\x04mode\x18$ \x01(\x0e\x32\x1c.google.cloud.netapp.v1.ModeB\x03\xe0\x41\x01H\x03\x88\x01\x01\x12:\n\nscale_type\x18& \x01(\x0e\x32!.google.cloud.netapp.v1.ScaleTypeB\x03\xe0\x41\x01\x1a-\n\x0bLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"{\n\x05State\x12\x15\n\x11STATE_UNSPECIFIED\x10\x00\x12\t\n\x05READY\x10\x01\x12\x0c\n\x08\x43REATING\x10\x02\x12\x0c\n\x08\x44\x45LETING\x10\x03\x12\x0c\n\x08UPDATING\x10\x04\x12\r\n\tRESTORING\x10\x05\x12\x0c\n\x08\x44ISABLED\x10\x06\x12\t\n\x05\x45RROR\x10\x07:\x87\x01\xea\x41\x83\x01\n!netapp.googleapis.com/StoragePool\x12\x43projects/{project}/locations/{location}/storagePools/{storage_pool}*\x0cstoragePools2\x0bstoragePoolB\x18\n\x16_global_access_allowedB\x1e\n\x1c_enable_hot_tier_auto_resizeB\x07\n\x05_typeB\x07\n\x05_mode\"\xa8\x01\n\x1fValidateDirectoryServiceRequest\x12\x37\n\x04name\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!netapp.googleapis.com/StoragePool\x12L\n\x16\x64irectory_service_type\x18\x02 \x01(\x0e\x32,.google.cloud.netapp.v1.DirectoryServiceType*4\n\x04Mode\x12\x14\n\x10MODE_UNSPECIFIED\x10\x00\x12\x0b\n\x07\x44\x45\x46\x41ULT\x10\x01\x12\t\n\x05ONTAP\x10\x02\x42\xb2\x01\n\x1a\x63om.google.cloud.netapp.v1B\x10StoragePoolProtoP\x01Z2cloud.google.com/go/netapp/apiv1/netapppb;netapppb\xaa\x02\x16Google.Cloud.NetApp.V1\xca\x02\x16Google\\Cloud\\NetApp\\V1\xea\x02\x19Google::Cloud::NetApp::V1b\x06proto3"
|
|
15
15
|
|
|
16
16
|
pool = ::Google::Protobuf::DescriptorPool.generated_pool
|
|
17
17
|
pool.add_serialized_file(descriptor_data)
|
|
@@ -30,6 +30,7 @@ module Google
|
|
|
30
30
|
StoragePool = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.netapp.v1.StoragePool").msgclass
|
|
31
31
|
StoragePool::State = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.netapp.v1.StoragePool.State").enummodule
|
|
32
32
|
ValidateDirectoryServiceRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.netapp.v1.ValidateDirectoryServiceRequest").msgclass
|
|
33
|
+
Mode = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.netapp.v1.Mode").enummodule
|
|
33
34
|
end
|
|
34
35
|
end
|
|
35
36
|
end
|
|
@@ -12,7 +12,7 @@ require 'google/protobuf/field_mask_pb'
|
|
|
12
12
|
require 'google/protobuf/timestamp_pb'
|
|
13
13
|
|
|
14
14
|
|
|
15
|
-
descriptor_data = "\n#google/cloud/netapp/v1/volume.proto\x12\x16google.cloud.netapp.v1\x1a\x1fgoogle/api/field_behavior.proto\x1a\x1bgoogle/api/field_info.proto\x1a\x19google/api/resource.proto\x1a#google/cloud/netapp/v1/common.proto\x1a google/protobuf/field_mask.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"\x93\x01\n\x12ListVolumesRequest\x12\x34\n\x06parent\x18\x01 \x01(\tB$\xe0\x41\x02\xfa\x41\x1e\x12\x1cnetapp.googleapis.com/Volume\x12\x11\n\tpage_size\x18\x02 \x01(\x05\x12\x12\n\npage_token\x18\x03 \x01(\t\x12\x0e\n\x06\x66ilter\x18\x04 \x01(\t\x12\x10\n\x08order_by\x18\x05 \x01(\t\"t\n\x13ListVolumesResponse\x12/\n\x07volumes\x18\x01 \x03(\x0b\x32\x1e.google.cloud.netapp.v1.Volume\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x12\x13\n\x0bunreachable\x18\x03 \x03(\t\"F\n\x10GetVolumeRequest\x12\x32\n\x04name\x18\x01 \x01(\tB$\xe0\x41\x02\xfa\x41\x1e\n\x1cnetapp.googleapis.com/Volume\"\x98\x01\n\x13\x43reateVolumeRequest\x12\x34\n\x06parent\x18\x01 \x01(\tB$\xe0\x41\x02\xfa\x41\x1e\x12\x1cnetapp.googleapis.com/Volume\x12\x16\n\tvolume_id\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12\x33\n\x06volume\x18\x03 \x01(\x0b\x32\x1e.google.cloud.netapp.v1.VolumeB\x03\xe0\x41\x02\"\x80\x01\n\x13UpdateVolumeRequest\x12\x34\n\x0bupdate_mask\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.FieldMaskB\x03\xe0\x41\x02\x12\x33\n\x06volume\x18\x02 \x01(\x0b\x32\x1e.google.cloud.netapp.v1.VolumeB\x03\xe0\x41\x02\"X\n\x13\x44\x65leteVolumeRequest\x12\x32\n\x04name\x18\x01 \x01(\tB$\xe0\x41\x02\xfa\x41\x1e\n\x1cnetapp.googleapis.com/Volume\x12\r\n\x05\x66orce\x18\x02 \x01(\x08\"c\n\x13RevertVolumeRequest\x12\x32\n\x04name\x18\x01 \x01(\tB$\xe0\x41\x02\xfa\x41\x1e\n\x1cnetapp.googleapis.com/Volume\x12\x18\n\x0bsnapshot_id\x18\x02 \x01(\tB\x03\xe0\x41\x02\"\xde\x12\n\x06Volume\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x08\x12\x38\n\x05state\x18\x02 \x01(\x0e\x32$.google.cloud.netapp.v1.Volume.StateB\x03\xe0\x41\x03\x12\x1a\n\rstate_details\x18\x03 \x01(\tB\x03\xe0\x41\x03\x12\x34\n\x0b\x63reate_time\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x17\n\nshare_name\x18\x05 \x01(\tB\x03\xe0\x41\x02\x12\x16\n\tpsa_range\x18\x06 \x01(\tB\x03\xe0\x41\x03\x12?\n\x0cstorage_pool\x18\x07 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!netapp.googleapis.com/StoragePool\x12\x37\n\x07network\x18\x08 \x01(\tB&\xe0\x41\x03\xfa\x41 \n\x1e\x63ompute.googleapis.com/Network\x12@\n\rservice_level\x18\t \x01(\x0e\x32$.google.cloud.netapp.v1.ServiceLevelB\x03\xe0\x41\x03\x12\x19\n\x0c\x63\x61pacity_gib\x18\n \x01(\x03\x42\x03\xe0\x41\x02\x12@\n\rexport_policy\x18\x0b \x01(\x0b\x32$.google.cloud.netapp.v1.ExportPolicyB\x03\xe0\x41\x01\x12\x39\n\tprotocols\x18\x0c \x03(\x0e\x32!.google.cloud.netapp.v1.ProtocolsB\x03\xe0\x41\x02\x12>\n\x0csmb_settings\x18\r \x03(\x0e\x32#.google.cloud.netapp.v1.SMBSettingsB\x03\xe0\x41\x01\x12?\n\rmount_options\x18\x0e \x03(\x0b\x32#.google.cloud.netapp.v1.MountOptionB\x03\xe0\x41\x03\x12\x1d\n\x10unix_permissions\x18\x0f \x01(\tB\x03\xe0\x41\x01\x12?\n\x06labels\x18\x10 \x03(\x0b\x32*.google.cloud.netapp.v1.Volume.LabelsEntryB\x03\xe0\x41\x01\x12\x18\n\x0b\x64\x65scription\x18\x11 \x01(\tB\x03\xe0\x41\x01\x12\x44\n\x0fsnapshot_policy\x18\x12 \x01(\x0b\x32&.google.cloud.netapp.v1.SnapshotPolicyB\x03\xe0\x41\x01\x12\x19\n\x0csnap_reserve\x18\x13 \x01(\x01\x42\x03\xe0\x41\x01\x12\x1f\n\x12snapshot_directory\x18\x14 \x01(\x08\x42\x03\xe0\x41\x01\x12\x15\n\x08used_gib\x18\x15 \x01(\x03\x42\x03\xe0\x41\x03\x12\x42\n\x0esecurity_style\x18\x16 \x01(\x0e\x32%.google.cloud.netapp.v1.SecurityStyleB\x03\xe0\x41\x01\x12\x1d\n\x10kerberos_enabled\x18\x17 \x01(\x08\x42\x03\xe0\x41\x01\x12\x19\n\x0cldap_enabled\x18\x18 \x01(\x08\x42\x03\xe0\x41\x03\x12G\n\x10\x61\x63tive_directory\x18\x19 \x01(\tB-\xe0\x41\x03\xfa\x41\'\n%netapp.googleapis.com/ActiveDirectory\x12J\n\x12restore_parameters\x18\x1a \x01(\x0b\x32).google.cloud.netapp.v1.RestoreParametersB\x03\xe0\x41\x01\x12;\n\nkms_config\x18\x1b \x01(\tB\'\xe0\x41\x03\xfa\x41!\n\x1fnetapp.googleapis.com/KmsConfig\x12\x44\n\x0f\x65ncryption_type\x18\x1c \x01(\x0e\x32&.google.cloud.netapp.v1.EncryptionTypeB\x03\xe0\x41\x03\x12\x1c\n\x0fhas_replication\x18\x1d \x01(\x08\x42\x03\xe0\x41\x03\x12@\n\rbackup_config\x18\x1e \x01(\x0b\x32$.google.cloud.netapp.v1.BackupConfigH\x00\x88\x01\x01\x12I\n\x12restricted_actions\x18\x1f \x03(\x0e\x32(.google.cloud.netapp.v1.RestrictedActionB\x03\xe0\x41\x01\x12\x1b\n\x0elarge_capacity\x18 \x01(\x08\x42\x03\xe0\x41\x01\x12\x1f\n\x12multiple_endpoints\x18! \x01(\x08\x42\x03\xe0\x41\x01\x12\x42\n\x0etiering_policy\x18\" \x01(\x0b\x32%.google.cloud.netapp.v1.TieringPolicyH\x01\x88\x01\x01\x12\x19\n\x0creplica_zone\x18$ \x01(\tB\x03\xe0\x41\x03\x12\x11\n\x04zone\x18% \x01(\tB\x03\xe0\x41\x03\x12\x1f\n\x12\x63old_tier_size_gib\x18\' \x01(\x03\x42\x03\xe0\x41\x03\x12_\n\x1dhybrid_replication_parameters\x18( \x01(\x0b\x32\x33.google.cloud.netapp.v1.HybridReplicationParametersB\x03\xe0\x41\x01\x12\x1d\n\x10throughput_mibps\x18) \x01(\x01\x42\x03\xe0\x41\x01\x12\x46\n\x10\x63\x61\x63he_parameters\x18* \x01(\x0b\x32\'.google.cloud.netapp.v1.CacheParametersB\x03\xe0\x41\x01\x12#\n\x16hot_tier_size_used_gib\x18, \x01(\x03\x42\x03\xe0\x41\x03\x12?\n\rblock_devices\x18- \x03(\x0b\x32#.google.cloud.netapp.v1.BlockDeviceB\x03\xe0\x41\x01\x1a-\n\x0bLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\x99\x01\n\x05State\x12\x15\n\x11STATE_UNSPECIFIED\x10\x00\x12\t\n\x05READY\x10\x01\x12\x0c\n\x08\x43REATING\x10\x02\x12\x0c\n\x08\x44\x45LETING\x10\x03\x12\x0c\n\x08UPDATING\x10\x04\x12\r\n\tRESTORING\x10\x05\x12\x0c\n\x08\x44ISABLED\x10\x06\x12\t\n\x05\x45RROR\x10\x07\x12\r\n\tPREPARING\x10\x08\x12\r\n\tREAD_ONLY\x10\t:l\xea\x41i\n\x1cnetapp.googleapis.com/Volume\x12\x38projects/{project}/locations/{location}/volumes/{volume}*\x07volumes2\x06volumeB\x10\n\x0e_backup_configB\x11\n\x0f_tiering_policy\"R\n\x0c\x45xportPolicy\x12\x42\n\x05rules\x18\x01 \x03(\x0b\x32..google.cloud.netapp.v1.SimpleExportPolicyRuleB\x03\xe0\x41\x02\"\xef\x06\n\x16SimpleExportPolicyRule\x12\x1c\n\x0f\x61llowed_clients\x18\x01 \x01(\tH\x00\x88\x01\x01\x12\x1c\n\x0fhas_root_access\x18\x02 \x01(\tH\x01\x88\x01\x01\x12<\n\x0b\x61\x63\x63\x65ss_type\x18\x03 \x01(\x0e\x32\".google.cloud.netapp.v1.AccessTypeH\x02\x88\x01\x01\x12\x12\n\x05nfsv3\x18\x04 \x01(\x08H\x03\x88\x01\x01\x12\x12\n\x05nfsv4\x18\x05 \x01(\x08H\x04\x88\x01\x01\x12!\n\x14kerberos_5_read_only\x18\x06 \x01(\x08H\x05\x88\x01\x01\x12\"\n\x15kerberos_5_read_write\x18\x07 \x01(\x08H\x06\x88\x01\x01\x12\"\n\x15kerberos_5i_read_only\x18\x08 \x01(\x08H\x07\x88\x01\x01\x12#\n\x16kerberos_5i_read_write\x18\t \x01(\x08H\x08\x88\x01\x01\x12\"\n\x15kerberos_5p_read_only\x18\n \x01(\x08H\t\x88\x01\x01\x12#\n\x16kerberos_5p_read_write\x18\x0b \x01(\x08H\n\x88\x01\x01\x12X\n\x0bsquash_mode\x18\x0c \x01(\x0e\x32\x39.google.cloud.netapp.v1.SimpleExportPolicyRule.SquashModeB\x03\xe0\x41\x01H\x0b\x88\x01\x01\x12\x1a\n\x08\x61non_uid\x18\r \x01(\x03\x42\x03\xe0\x41\x01H\x0c\x88\x01\x01\"^\n\nSquashMode\x12\x1b\n\x17SQUASH_MODE_UNSPECIFIED\x10\x00\x12\x12\n\x0eNO_ROOT_SQUASH\x10\x01\x12\x0f\n\x0bROOT_SQUASH\x10\x02\x12\x0e\n\nALL_SQUASH\x10\x03\x42\x12\n\x10_allowed_clientsB\x12\n\x10_has_root_accessB\x0e\n\x0c_access_typeB\x08\n\x06_nfsv3B\x08\n\x06_nfsv4B\x17\n\x15_kerberos_5_read_onlyB\x18\n\x16_kerberos_5_read_writeB\x18\n\x16_kerberos_5i_read_onlyB\x19\n\x17_kerberos_5i_read_writeB\x18\n\x16_kerberos_5p_read_onlyB\x19\n\x17_kerberos_5p_read_writeB\x0e\n\x0c_squash_modeB\x0b\n\t_anon_uid\"\x9a\x03\n\x0eSnapshotPolicy\x12\x14\n\x07\x65nabled\x18\x01 \x01(\x08H\x00\x88\x01\x01\x12\x44\n\x0fhourly_schedule\x18\x02 \x01(\x0b\x32&.google.cloud.netapp.v1.HourlyScheduleH\x01\x88\x01\x01\x12\x42\n\x0e\x64\x61ily_schedule\x18\x03 \x01(\x0b\x32%.google.cloud.netapp.v1.DailyScheduleH\x02\x88\x01\x01\x12\x44\n\x0fweekly_schedule\x18\x04 \x01(\x0b\x32&.google.cloud.netapp.v1.WeeklyScheduleH\x03\x88\x01\x01\x12\x46\n\x10monthly_schedule\x18\x05 \x01(\x0b\x32\'.google.cloud.netapp.v1.MonthlyScheduleH\x04\x88\x01\x01\x42\n\n\x08_enabledB\x12\n\x10_hourly_scheduleB\x11\n\x0f_daily_scheduleB\x12\n\x10_weekly_scheduleB\x13\n\x11_monthly_schedule\"f\n\x0eHourlySchedule\x12\x1e\n\x11snapshots_to_keep\x18\x01 \x01(\x01H\x00\x88\x01\x01\x12\x13\n\x06minute\x18\x02 \x01(\x01H\x01\x88\x01\x01\x42\x14\n\x12_snapshots_to_keepB\t\n\x07_minute\"\x81\x01\n\rDailySchedule\x12\x1e\n\x11snapshots_to_keep\x18\x01 \x01(\x01H\x00\x88\x01\x01\x12\x13\n\x06minute\x18\x02 \x01(\x01H\x01\x88\x01\x01\x12\x11\n\x04hour\x18\x03 \x01(\x01H\x02\x88\x01\x01\x42\x14\n\x12_snapshots_to_keepB\t\n\x07_minuteB\x07\n\x05_hour\"\x9c\x01\n\x0eWeeklySchedule\x12\x1e\n\x11snapshots_to_keep\x18\x01 \x01(\x01H\x00\x88\x01\x01\x12\x13\n\x06minute\x18\x02 \x01(\x01H\x01\x88\x01\x01\x12\x11\n\x04hour\x18\x03 \x01(\x01H\x02\x88\x01\x01\x12\x10\n\x03\x64\x61y\x18\x04 \x01(\tH\x03\x88\x01\x01\x42\x14\n\x12_snapshots_to_keepB\t\n\x07_minuteB\x07\n\x05_hourB\x06\n\x04_day\"\xb1\x01\n\x0fMonthlySchedule\x12\x1e\n\x11snapshots_to_keep\x18\x01 \x01(\x01H\x00\x88\x01\x01\x12\x13\n\x06minute\x18\x02 \x01(\x01H\x01\x88\x01\x01\x12\x11\n\x04hour\x18\x03 \x01(\x01H\x02\x88\x01\x01\x12\x1a\n\rdays_of_month\x18\x04 \x01(\tH\x03\x88\x01\x01\x42\x14\n\x12_snapshots_to_keepB\t\n\x07_minuteB\x07\n\x05_hourB\x10\n\x0e_days_of_month\"\x9e\x01\n\x0bMountOption\x12\x0e\n\x06\x65xport\x18\x01 \x01(\t\x12\x13\n\x0b\x65xport_full\x18\x02 \x01(\t\x12\x33\n\x08protocol\x18\x03 \x01(\x0e\x32!.google.cloud.netapp.v1.Protocols\x12\x14\n\x0cinstructions\x18\x04 \x01(\t\x12\x1f\n\nip_address\x18\x05 \x01(\tB\x0b\xe0\x41\x03\xe2\x8c\xcf\xd7\x08\x02\x08\x02\"Q\n\x11RestoreParameters\x12\x19\n\x0fsource_snapshot\x18\x01 \x01(\tH\x00\x12\x17\n\rsource_backup\x18\x02 \x01(\tH\x00\x42\x08\n\x06source\"\x9a\x02\n\x0c\x42\x61\x63kupConfig\x12\x43\n\x0f\x62\x61\x63kup_policies\x18\x01 \x03(\tB*\xe0\x41\x01\xfa\x41$\n\"netapp.googleapis.com/BackupPolicy\x12?\n\x0c\x62\x61\x63kup_vault\x18\x02 \x01(\tB)\xe0\x41\x01\xfa\x41#\n!netapp.googleapis.com/BackupVault\x12*\n\x18scheduled_backup_enabled\x18\x03 \x01(\x08\x42\x03\xe0\x41\x01H\x00\x88\x01\x01\x12$\n\x12\x62\x61\x63kup_chain_bytes\x18\x04 \x01(\x03\x42\x03\xe0\x41\x03H\x01\x88\x01\x01\x42\x1b\n\x19_scheduled_backup_enabledB\x15\n\x13_backup_chain_bytes\"\xca\x02\n\rTieringPolicy\x12O\n\x0btier_action\x18\x01 \x01(\x0e\x32\x30.google.cloud.netapp.v1.TieringPolicy.TierActionB\x03\xe0\x41\x01H\x00\x88\x01\x01\x12(\n\x16\x63ooling_threshold_days\x18\x02 \x01(\x05\x42\x03\xe0\x41\x01H\x01\x88\x01\x01\x12.\n\x1chot_tier_bypass_mode_enabled\x18\x03 \x01(\x08\x42\x03\xe0\x41\x01H\x02\x88\x01\x01\"B\n\nTierAction\x12\x1b\n\x17TIER_ACTION_UNSPECIFIED\x10\x00\x12\x0b\n\x07\x45NABLED\x10\x01\x12\n\n\x06PAUSED\x10\x02\x42\x0e\n\x0c_tier_actionB\x19\n\x17_cooling_threshold_daysB\x1f\n\x1d_hot_tier_bypass_mode_enabled\"\xc3\x06\n\x1bHybridReplicationParameters\x12>\n\x0breplication\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!netapp.googleapis.com/Replication\x12\x1d\n\x10peer_volume_name\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12\x1e\n\x11peer_cluster_name\x18\x03 \x01(\tB\x03\xe0\x41\x02\x12\x1a\n\rpeer_svm_name\x18\x04 \x01(\tB\x03\xe0\x41\x02\x12\x1e\n\x11peer_ip_addresses\x18\x05 \x03(\tB\x03\xe0\x41\x02\x12\x1d\n\x10\x63luster_location\x18\x06 \x01(\tB\x03\xe0\x41\x01\x12\x18\n\x0b\x64\x65scription\x18\x07 \x01(\tB\x03\xe0\x41\x01\x12T\n\x06labels\x18\x08 \x03(\x0b\x32?.google.cloud.netapp.v1.HybridReplicationParameters.LabelsEntryB\x03\xe0\x41\x01\x12T\n\x14replication_schedule\x18\t \x01(\x0e\x32\x31.google.cloud.netapp.v1.HybridReplicationScheduleB\x03\xe0\x41\x01\x12u\n\x17hybrid_replication_type\x18\n \x01(\x0e\x32O.google.cloud.netapp.v1.HybridReplicationParameters.VolumeHybridReplicationTypeB\x03\xe0\x41\x01\x12+\n\x1elarge_volume_constituent_count\x18\x0b \x01(\x05\x42\x03\xe0\x41\x01\x1a-\n\x0bLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\xb0\x01\n\x1bVolumeHybridReplicationType\x12.\n*VOLUME_HYBRID_REPLICATION_TYPE_UNSPECIFIED\x10\x00\x12\r\n\tMIGRATION\x10\x01\x12\x1a\n\x16\x43ONTINUOUS_REPLICATION\x10\x02\x12\x16\n\x12ONPREM_REPLICATION\x10\x03\x12\x1e\n\x1aREVERSE_ONPREM_REPLICATION\x10\x04\"\xea\x04\n\x0f\x43\x61\x63heParameters\x12\x1d\n\x10peer_volume_name\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12\x1e\n\x11peer_cluster_name\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12\x1a\n\rpeer_svm_name\x18\x03 \x01(\tB\x03\xe0\x41\x02\x12\x1e\n\x11peer_ip_addresses\x18\x04 \x03(\tB\x03\xe0\x41\x02\x12)\n\x17\x65nable_global_file_lock\x18\x05 \x01(\x08\x42\x03\xe0\x41\x01H\x00\x88\x01\x01\x12>\n\x0c\x63\x61\x63he_config\x18\x06 \x01(\x0b\x32#.google.cloud.netapp.v1.CacheConfigB\x03\xe0\x41\x01\x12L\n\x0b\x63\x61\x63he_state\x18\x07 \x01(\x0e\x32\x32.google.cloud.netapp.v1.CacheParameters.CacheStateB\x03\xe0\x41\x03\x12\x14\n\x07\x63ommand\x18\x08 \x01(\tB\x03\xe0\x41\x03\x12\x44\n\x1bpeering_command_expiry_time\x18\t \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x01\x12\x17\n\npassphrase\x18\n \x01(\tB\x03\xe0\x41\x03\x12\x1a\n\rstate_details\x18\x0c \x01(\tB\x03\xe0\x41\x03\"v\n\nCacheState\x12\x1b\n\x17\x43\x41\x43HE_STATE_UNSPECIFIED\x10\x00\x12\x1b\n\x17PENDING_CLUSTER_PEERING\x10\x01\x12\x17\n\x13PENDING_SVM_PEERING\x10\x02\x12\n\n\x06PEERED\x10\x03\x12\t\n\x05\x45RROR\x10\x04\x42\x1a\n\x18_enable_global_file_lock\"\xbf\x03\n\x0b\x43\x61\x63heConfig\x12I\n\x12\x63\x61\x63he_pre_populate\x18\x01 \x01(\x0b\x32(.google.cloud.netapp.v1.CachePrePopulateB\x03\xe0\x41\x01\x12#\n\x11writeback_enabled\x18\x02 \x01(\x08\x42\x03\xe0\x41\x01H\x00\x88\x01\x01\x12,\n\x1a\x63ifs_change_notify_enabled\x18\x05 \x01(\x08\x42\x03\xe0\x41\x01H\x01\x88\x01\x01\x12`\n\x18\x63\x61\x63he_pre_populate_state\x18\x06 \x01(\x0e\x32\x39.google.cloud.netapp.v1.CacheConfig.CachePrePopulateStateB\x03\xe0\x41\x03\"{\n\x15\x43\x61\x63hePrePopulateState\x12(\n$CACHE_PRE_POPULATE_STATE_UNSPECIFIED\x10\x00\x12\x0e\n\nNOT_NEEDED\x10\x01\x12\x0f\n\x0bIN_PROGRESS\x10\x02\x12\x0c\n\x08\x43OMPLETE\x10\x03\x12\t\n\x05\x45RROR\x10\x04\x42\x14\n\x12_writeback_enabledB\x1d\n\x1b_cifs_change_notify_enabled\"u\n\x10\x43\x61\x63hePrePopulate\x12\x16\n\tpath_list\x18\x01 \x03(\tB\x03\xe0\x41\x01\x12\x1e\n\x11\x65xclude_path_list\x18\x02 \x03(\tB\x03\xe0\x41\x01\x12\x1b\n\trecursion\x18\x03 \x01(\x08\x42\x03\xe0\x41\x01H\x00\x88\x01\x01\x42\x0c\n\n_recursion\"\xe7\x01\n\x0b\x42lockDevice\x12\x16\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x01H\x00\x88\x01\x01\x12<\n\x0bhost_groups\x18\x02 \x03(\tB\'\xe0\x41\x01\xfa\x41!\n\x1fnetapp.googleapis.com/HostGroup\x12\x17\n\nidentifier\x18\x03 \x01(\tB\x03\xe0\x41\x03\x12\x1a\n\x08size_gib\x18\x04 \x01(\x03\x42\x03\xe0\x41\x01H\x01\x88\x01\x01\x12\x37\n\x07os_type\x18\x05 \x01(\x0e\x32\x1e.google.cloud.netapp.v1.OsTypeB\x06\xe0\x41\x02\xe0\x41\x05\x42\x07\n\x05_nameB\x0b\n\t_size_gib\"\xc4\x01\n\x19RestoreBackupFilesRequest\x12\x32\n\x04name\x18\x01 \x01(\tB$\xe0\x41\x02\xfa\x41\x1e\n\x1cnetapp.googleapis.com/Volume\x12\x34\n\x06\x62\x61\x63kup\x18\x02 \x01(\tB$\xe0\x41\x02\xfa\x41\x1e\n\x1cnetapp.googleapis.com/Backup\x12\x16\n\tfile_list\x18\x03 \x03(\tB\x03\xe0\x41\x02\x12%\n\x18restore_destination_path\x18\x04 \x01(\tB\x03\xe0\x41\x01\"\x1c\n\x1aRestoreBackupFilesResponse*P\n\tProtocols\x12\x19\n\x15PROTOCOLS_UNSPECIFIED\x10\x00\x12\t\n\x05NFSV3\x10\x01\x12\t\n\x05NFSV4\x10\x02\x12\x07\n\x03SMB\x10\x03\x12\t\n\x05ISCSI\x10\x04*W\n\nAccessType\x12\x1b\n\x17\x41\x43\x43\x45SS_TYPE_UNSPECIFIED\x10\x00\x12\r\n\tREAD_ONLY\x10\x01\x12\x0e\n\nREAD_WRITE\x10\x02\x12\r\n\tREAD_NONE\x10\x03*\xe8\x01\n\x0bSMBSettings\x12\x1c\n\x18SMB_SETTINGS_UNSPECIFIED\x10\x00\x12\x10\n\x0c\x45NCRYPT_DATA\x10\x01\x12\r\n\tBROWSABLE\x10\x02\x12\x11\n\rCHANGE_NOTIFY\x10\x03\x12\x11\n\rNON_BROWSABLE\x10\x04\x12\x0b\n\x07OPLOCKS\x10\x05\x12\x11\n\rSHOW_SNAPSHOT\x10\x06\x12\x1a\n\x16SHOW_PREVIOUS_VERSIONS\x10\x07\x12\x1c\n\x18\x41\x43\x43\x45SS_BASED_ENUMERATION\x10\x08\x12\x1a\n\x16\x43ONTINUOUSLY_AVAILABLE\x10\t*C\n\rSecurityStyle\x12\x1e\n\x1aSECURITY_STYLE_UNSPECIFIED\x10\x00\x12\x08\n\x04NTFS\x10\x01\x12\x08\n\x04UNIX\x10\x02*A\n\x10RestrictedAction\x12!\n\x1dRESTRICTED_ACTION_UNSPECIFIED\x10\x00\x12\n\n\x06\x44\x45LETE\x10\x01\x42\xad\x01\n\x1a\x63om.google.cloud.netapp.v1B\x0bVolumeProtoP\x01Z2cloud.google.com/go/netapp/apiv1/netapppb;netapppb\xaa\x02\x16Google.Cloud.NetApp.V1\xca\x02\x16Google\\Cloud\\NetApp\\V1\xea\x02\x19Google::Cloud::NetApp::V1b\x06proto3"
|
|
15
|
+
descriptor_data = "\n#google/cloud/netapp/v1/volume.proto\x12\x16google.cloud.netapp.v1\x1a\x1fgoogle/api/field_behavior.proto\x1a\x1bgoogle/api/field_info.proto\x1a\x19google/api/resource.proto\x1a#google/cloud/netapp/v1/common.proto\x1a google/protobuf/field_mask.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"\x93\x01\n\x12ListVolumesRequest\x12\x34\n\x06parent\x18\x01 \x01(\tB$\xe0\x41\x02\xfa\x41\x1e\x12\x1cnetapp.googleapis.com/Volume\x12\x11\n\tpage_size\x18\x02 \x01(\x05\x12\x12\n\npage_token\x18\x03 \x01(\t\x12\x0e\n\x06\x66ilter\x18\x04 \x01(\t\x12\x10\n\x08order_by\x18\x05 \x01(\t\"t\n\x13ListVolumesResponse\x12/\n\x07volumes\x18\x01 \x03(\x0b\x32\x1e.google.cloud.netapp.v1.Volume\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x12\x13\n\x0bunreachable\x18\x03 \x03(\t\"F\n\x10GetVolumeRequest\x12\x32\n\x04name\x18\x01 \x01(\tB$\xe0\x41\x02\xfa\x41\x1e\n\x1cnetapp.googleapis.com/Volume\"\x98\x01\n\x13\x43reateVolumeRequest\x12\x34\n\x06parent\x18\x01 \x01(\tB$\xe0\x41\x02\xfa\x41\x1e\x12\x1cnetapp.googleapis.com/Volume\x12\x16\n\tvolume_id\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12\x33\n\x06volume\x18\x03 \x01(\x0b\x32\x1e.google.cloud.netapp.v1.VolumeB\x03\xe0\x41\x02\"\x80\x01\n\x13UpdateVolumeRequest\x12\x34\n\x0bupdate_mask\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.FieldMaskB\x03\xe0\x41\x02\x12\x33\n\x06volume\x18\x02 \x01(\x0b\x32\x1e.google.cloud.netapp.v1.VolumeB\x03\xe0\x41\x02\"X\n\x13\x44\x65leteVolumeRequest\x12\x32\n\x04name\x18\x01 \x01(\tB$\xe0\x41\x02\xfa\x41\x1e\n\x1cnetapp.googleapis.com/Volume\x12\r\n\x05\x66orce\x18\x02 \x01(\x08\"c\n\x13RevertVolumeRequest\x12\x32\n\x04name\x18\x01 \x01(\tB$\xe0\x41\x02\xfa\x41\x1e\n\x1cnetapp.googleapis.com/Volume\x12\x18\n\x0bsnapshot_id\x18\x02 \x01(\tB\x03\xe0\x41\x02\"\xa6\x15\n\x06Volume\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x08\x12\x38\n\x05state\x18\x02 \x01(\x0e\x32$.google.cloud.netapp.v1.Volume.StateB\x03\xe0\x41\x03\x12\x1a\n\rstate_details\x18\x03 \x01(\tB\x03\xe0\x41\x03\x12\x34\n\x0b\x63reate_time\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x17\n\nshare_name\x18\x05 \x01(\tB\x03\xe0\x41\x02\x12\x16\n\tpsa_range\x18\x06 \x01(\tB\x03\xe0\x41\x03\x12?\n\x0cstorage_pool\x18\x07 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!netapp.googleapis.com/StoragePool\x12\x37\n\x07network\x18\x08 \x01(\tB&\xe0\x41\x03\xfa\x41 \n\x1e\x63ompute.googleapis.com/Network\x12@\n\rservice_level\x18\t \x01(\x0e\x32$.google.cloud.netapp.v1.ServiceLevelB\x03\xe0\x41\x03\x12\x19\n\x0c\x63\x61pacity_gib\x18\n \x01(\x03\x42\x03\xe0\x41\x02\x12@\n\rexport_policy\x18\x0b \x01(\x0b\x32$.google.cloud.netapp.v1.ExportPolicyB\x03\xe0\x41\x01\x12\x39\n\tprotocols\x18\x0c \x03(\x0e\x32!.google.cloud.netapp.v1.ProtocolsB\x03\xe0\x41\x02\x12>\n\x0csmb_settings\x18\r \x03(\x0e\x32#.google.cloud.netapp.v1.SMBSettingsB\x03\xe0\x41\x01\x12?\n\rmount_options\x18\x0e \x03(\x0b\x32#.google.cloud.netapp.v1.MountOptionB\x03\xe0\x41\x03\x12\x1d\n\x10unix_permissions\x18\x0f \x01(\tB\x03\xe0\x41\x01\x12?\n\x06labels\x18\x10 \x03(\x0b\x32*.google.cloud.netapp.v1.Volume.LabelsEntryB\x03\xe0\x41\x01\x12\x18\n\x0b\x64\x65scription\x18\x11 \x01(\tB\x03\xe0\x41\x01\x12\x44\n\x0fsnapshot_policy\x18\x12 \x01(\x0b\x32&.google.cloud.netapp.v1.SnapshotPolicyB\x03\xe0\x41\x01\x12\x19\n\x0csnap_reserve\x18\x13 \x01(\x01\x42\x03\xe0\x41\x01\x12\x1f\n\x12snapshot_directory\x18\x14 \x01(\x08\x42\x03\xe0\x41\x01\x12\x15\n\x08used_gib\x18\x15 \x01(\x03\x42\x03\xe0\x41\x03\x12\x42\n\x0esecurity_style\x18\x16 \x01(\x0e\x32%.google.cloud.netapp.v1.SecurityStyleB\x03\xe0\x41\x01\x12\x1d\n\x10kerberos_enabled\x18\x17 \x01(\x08\x42\x03\xe0\x41\x01\x12\x19\n\x0cldap_enabled\x18\x18 \x01(\x08\x42\x03\xe0\x41\x03\x12G\n\x10\x61\x63tive_directory\x18\x19 \x01(\tB-\xe0\x41\x03\xfa\x41\'\n%netapp.googleapis.com/ActiveDirectory\x12J\n\x12restore_parameters\x18\x1a \x01(\x0b\x32).google.cloud.netapp.v1.RestoreParametersB\x03\xe0\x41\x01\x12;\n\nkms_config\x18\x1b \x01(\tB\'\xe0\x41\x03\xfa\x41!\n\x1fnetapp.googleapis.com/KmsConfig\x12\x44\n\x0f\x65ncryption_type\x18\x1c \x01(\x0e\x32&.google.cloud.netapp.v1.EncryptionTypeB\x03\xe0\x41\x03\x12\x1c\n\x0fhas_replication\x18\x1d \x01(\x08\x42\x03\xe0\x41\x03\x12@\n\rbackup_config\x18\x1e \x01(\x0b\x32$.google.cloud.netapp.v1.BackupConfigH\x00\x88\x01\x01\x12I\n\x12restricted_actions\x18\x1f \x03(\x0e\x32(.google.cloud.netapp.v1.RestrictedActionB\x03\xe0\x41\x01\x12\x1b\n\x0elarge_capacity\x18 \x01(\x08\x42\x03\xe0\x41\x01\x12\x1f\n\x12multiple_endpoints\x18! \x01(\x08\x42\x03\xe0\x41\x01\x12\x42\n\x0etiering_policy\x18\" \x01(\x0b\x32%.google.cloud.netapp.v1.TieringPolicyH\x01\x88\x01\x01\x12\x19\n\x0creplica_zone\x18$ \x01(\tB\x03\xe0\x41\x03\x12\x11\n\x04zone\x18% \x01(\tB\x03\xe0\x41\x03\x12\x1f\n\x12\x63old_tier_size_gib\x18\' \x01(\x03\x42\x03\xe0\x41\x03\x12_\n\x1dhybrid_replication_parameters\x18( \x01(\x0b\x32\x33.google.cloud.netapp.v1.HybridReplicationParametersB\x03\xe0\x41\x01\x12\x1d\n\x10throughput_mibps\x18) \x01(\x01\x42\x03\xe0\x41\x01\x12\x46\n\x10\x63\x61\x63he_parameters\x18* \x01(\x0b\x32\'.google.cloud.netapp.v1.CacheParametersB\x03\xe0\x41\x01\x12#\n\x16hot_tier_size_used_gib\x18, \x01(\x03\x42\x03\xe0\x41\x03\x12?\n\rblock_devices\x18- \x03(\x0b\x32#.google.cloud.netapp.v1.BlockDeviceB\x03\xe0\x41\x01\x12O\n\x15large_capacity_config\x18. \x01(\x0b\x32+.google.cloud.netapp.v1.LargeCapacityConfigB\x03\xe0\x41\x01\x12G\n\rclone_details\x18/ \x01(\x0b\x32+.google.cloud.netapp.v1.Volume.CloneDetailsB\x03\xe0\x41\x03\x1a\xab\x01\n\x0c\x43loneDetails\x12?\n\x0fsource_snapshot\x18\x01 \x01(\tB&\xe0\x41\x03\xfa\x41 \n\x1enetapp.googleapis.com/Snapshot\x12;\n\rsource_volume\x18\x02 \x01(\tB$\xe0\x41\x03\xfa\x41\x1e\n\x1cnetapp.googleapis.com/Volume\x12\x1d\n\x10shared_space_gib\x18\x03 \x01(\x03\x42\x03\xe0\x41\x03\x1a-\n\x0bLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\x99\x01\n\x05State\x12\x15\n\x11STATE_UNSPECIFIED\x10\x00\x12\t\n\x05READY\x10\x01\x12\x0c\n\x08\x43REATING\x10\x02\x12\x0c\n\x08\x44\x45LETING\x10\x03\x12\x0c\n\x08UPDATING\x10\x04\x12\r\n\tRESTORING\x10\x05\x12\x0c\n\x08\x44ISABLED\x10\x06\x12\t\n\x05\x45RROR\x10\x07\x12\r\n\tPREPARING\x10\x08\x12\r\n\tREAD_ONLY\x10\t:l\xea\x41i\n\x1cnetapp.googleapis.com/Volume\x12\x38projects/{project}/locations/{location}/volumes/{volume}*\x07volumes2\x06volumeB\x10\n\x0e_backup_configB\x11\n\x0f_tiering_policy\"5\n\x13LargeCapacityConfig\x12\x1e\n\x11\x63onstituent_count\x18\x01 \x01(\x05\x42\x03\xe0\x41\x01\"R\n\x0c\x45xportPolicy\x12\x42\n\x05rules\x18\x01 \x03(\x0b\x32..google.cloud.netapp.v1.SimpleExportPolicyRuleB\x03\xe0\x41\x02\"\xef\x06\n\x16SimpleExportPolicyRule\x12\x1c\n\x0f\x61llowed_clients\x18\x01 \x01(\tH\x00\x88\x01\x01\x12\x1c\n\x0fhas_root_access\x18\x02 \x01(\tH\x01\x88\x01\x01\x12<\n\x0b\x61\x63\x63\x65ss_type\x18\x03 \x01(\x0e\x32\".google.cloud.netapp.v1.AccessTypeH\x02\x88\x01\x01\x12\x12\n\x05nfsv3\x18\x04 \x01(\x08H\x03\x88\x01\x01\x12\x12\n\x05nfsv4\x18\x05 \x01(\x08H\x04\x88\x01\x01\x12!\n\x14kerberos_5_read_only\x18\x06 \x01(\x08H\x05\x88\x01\x01\x12\"\n\x15kerberos_5_read_write\x18\x07 \x01(\x08H\x06\x88\x01\x01\x12\"\n\x15kerberos_5i_read_only\x18\x08 \x01(\x08H\x07\x88\x01\x01\x12#\n\x16kerberos_5i_read_write\x18\t \x01(\x08H\x08\x88\x01\x01\x12\"\n\x15kerberos_5p_read_only\x18\n \x01(\x08H\t\x88\x01\x01\x12#\n\x16kerberos_5p_read_write\x18\x0b \x01(\x08H\n\x88\x01\x01\x12X\n\x0bsquash_mode\x18\x0c \x01(\x0e\x32\x39.google.cloud.netapp.v1.SimpleExportPolicyRule.SquashModeB\x03\xe0\x41\x01H\x0b\x88\x01\x01\x12\x1a\n\x08\x61non_uid\x18\r \x01(\x03\x42\x03\xe0\x41\x01H\x0c\x88\x01\x01\"^\n\nSquashMode\x12\x1b\n\x17SQUASH_MODE_UNSPECIFIED\x10\x00\x12\x12\n\x0eNO_ROOT_SQUASH\x10\x01\x12\x0f\n\x0bROOT_SQUASH\x10\x02\x12\x0e\n\nALL_SQUASH\x10\x03\x42\x12\n\x10_allowed_clientsB\x12\n\x10_has_root_accessB\x0e\n\x0c_access_typeB\x08\n\x06_nfsv3B\x08\n\x06_nfsv4B\x17\n\x15_kerberos_5_read_onlyB\x18\n\x16_kerberos_5_read_writeB\x18\n\x16_kerberos_5i_read_onlyB\x19\n\x17_kerberos_5i_read_writeB\x18\n\x16_kerberos_5p_read_onlyB\x19\n\x17_kerberos_5p_read_writeB\x0e\n\x0c_squash_modeB\x0b\n\t_anon_uid\"\x9a\x03\n\x0eSnapshotPolicy\x12\x14\n\x07\x65nabled\x18\x01 \x01(\x08H\x00\x88\x01\x01\x12\x44\n\x0fhourly_schedule\x18\x02 \x01(\x0b\x32&.google.cloud.netapp.v1.HourlyScheduleH\x01\x88\x01\x01\x12\x42\n\x0e\x64\x61ily_schedule\x18\x03 \x01(\x0b\x32%.google.cloud.netapp.v1.DailyScheduleH\x02\x88\x01\x01\x12\x44\n\x0fweekly_schedule\x18\x04 \x01(\x0b\x32&.google.cloud.netapp.v1.WeeklyScheduleH\x03\x88\x01\x01\x12\x46\n\x10monthly_schedule\x18\x05 \x01(\x0b\x32\'.google.cloud.netapp.v1.MonthlyScheduleH\x04\x88\x01\x01\x42\n\n\x08_enabledB\x12\n\x10_hourly_scheduleB\x11\n\x0f_daily_scheduleB\x12\n\x10_weekly_scheduleB\x13\n\x11_monthly_schedule\"f\n\x0eHourlySchedule\x12\x1e\n\x11snapshots_to_keep\x18\x01 \x01(\x01H\x00\x88\x01\x01\x12\x13\n\x06minute\x18\x02 \x01(\x01H\x01\x88\x01\x01\x42\x14\n\x12_snapshots_to_keepB\t\n\x07_minute\"\x81\x01\n\rDailySchedule\x12\x1e\n\x11snapshots_to_keep\x18\x01 \x01(\x01H\x00\x88\x01\x01\x12\x13\n\x06minute\x18\x02 \x01(\x01H\x01\x88\x01\x01\x12\x11\n\x04hour\x18\x03 \x01(\x01H\x02\x88\x01\x01\x42\x14\n\x12_snapshots_to_keepB\t\n\x07_minuteB\x07\n\x05_hour\"\x9c\x01\n\x0eWeeklySchedule\x12\x1e\n\x11snapshots_to_keep\x18\x01 \x01(\x01H\x00\x88\x01\x01\x12\x13\n\x06minute\x18\x02 \x01(\x01H\x01\x88\x01\x01\x12\x11\n\x04hour\x18\x03 \x01(\x01H\x02\x88\x01\x01\x12\x10\n\x03\x64\x61y\x18\x04 \x01(\tH\x03\x88\x01\x01\x42\x14\n\x12_snapshots_to_keepB\t\n\x07_minuteB\x07\n\x05_hourB\x06\n\x04_day\"\xb1\x01\n\x0fMonthlySchedule\x12\x1e\n\x11snapshots_to_keep\x18\x01 \x01(\x01H\x00\x88\x01\x01\x12\x13\n\x06minute\x18\x02 \x01(\x01H\x01\x88\x01\x01\x12\x11\n\x04hour\x18\x03 \x01(\x01H\x02\x88\x01\x01\x12\x1a\n\rdays_of_month\x18\x04 \x01(\tH\x03\x88\x01\x01\x42\x14\n\x12_snapshots_to_keepB\t\n\x07_minuteB\x07\n\x05_hourB\x10\n\x0e_days_of_month\"\x9e\x01\n\x0bMountOption\x12\x0e\n\x06\x65xport\x18\x01 \x01(\t\x12\x13\n\x0b\x65xport_full\x18\x02 \x01(\t\x12\x33\n\x08protocol\x18\x03 \x01(\x0e\x32!.google.cloud.netapp.v1.Protocols\x12\x14\n\x0cinstructions\x18\x04 \x01(\t\x12\x1f\n\nip_address\x18\x05 \x01(\tB\x0b\xe0\x41\x03\xe2\x8c\xcf\xd7\x08\x02\x08\x02\"t\n\x11RestoreParameters\x12\x19\n\x0fsource_snapshot\x18\x01 \x01(\tH\x00\x12:\n\rsource_backup\x18\x02 \x01(\tB!\xfa\x41\x1e\n\x1cnetapp.googleapis.com/BackupH\x00\x42\x08\n\x06source\"\x9a\x02\n\x0c\x42\x61\x63kupConfig\x12\x43\n\x0f\x62\x61\x63kup_policies\x18\x01 \x03(\tB*\xe0\x41\x01\xfa\x41$\n\"netapp.googleapis.com/BackupPolicy\x12?\n\x0c\x62\x61\x63kup_vault\x18\x02 \x01(\tB)\xe0\x41\x01\xfa\x41#\n!netapp.googleapis.com/BackupVault\x12*\n\x18scheduled_backup_enabled\x18\x03 \x01(\x08\x42\x03\xe0\x41\x01H\x00\x88\x01\x01\x12$\n\x12\x62\x61\x63kup_chain_bytes\x18\x04 \x01(\x03\x42\x03\xe0\x41\x03H\x01\x88\x01\x01\x42\x1b\n\x19_scheduled_backup_enabledB\x15\n\x13_backup_chain_bytes\"\xca\x02\n\rTieringPolicy\x12O\n\x0btier_action\x18\x01 \x01(\x0e\x32\x30.google.cloud.netapp.v1.TieringPolicy.TierActionB\x03\xe0\x41\x01H\x00\x88\x01\x01\x12(\n\x16\x63ooling_threshold_days\x18\x02 \x01(\x05\x42\x03\xe0\x41\x01H\x01\x88\x01\x01\x12.\n\x1chot_tier_bypass_mode_enabled\x18\x03 \x01(\x08\x42\x03\xe0\x41\x01H\x02\x88\x01\x01\"B\n\nTierAction\x12\x1b\n\x17TIER_ACTION_UNSPECIFIED\x10\x00\x12\x0b\n\x07\x45NABLED\x10\x01\x12\n\n\x06PAUSED\x10\x02\x42\x0e\n\x0c_tier_actionB\x19\n\x17_cooling_threshold_daysB\x1f\n\x1d_hot_tier_bypass_mode_enabled\"\xc3\x06\n\x1bHybridReplicationParameters\x12>\n\x0breplication\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!netapp.googleapis.com/Replication\x12\x1d\n\x10peer_volume_name\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12\x1e\n\x11peer_cluster_name\x18\x03 \x01(\tB\x03\xe0\x41\x02\x12\x1a\n\rpeer_svm_name\x18\x04 \x01(\tB\x03\xe0\x41\x02\x12\x1e\n\x11peer_ip_addresses\x18\x05 \x03(\tB\x03\xe0\x41\x02\x12\x1d\n\x10\x63luster_location\x18\x06 \x01(\tB\x03\xe0\x41\x01\x12\x18\n\x0b\x64\x65scription\x18\x07 \x01(\tB\x03\xe0\x41\x01\x12T\n\x06labels\x18\x08 \x03(\x0b\x32?.google.cloud.netapp.v1.HybridReplicationParameters.LabelsEntryB\x03\xe0\x41\x01\x12T\n\x14replication_schedule\x18\t \x01(\x0e\x32\x31.google.cloud.netapp.v1.HybridReplicationScheduleB\x03\xe0\x41\x01\x12u\n\x17hybrid_replication_type\x18\n \x01(\x0e\x32O.google.cloud.netapp.v1.HybridReplicationParameters.VolumeHybridReplicationTypeB\x03\xe0\x41\x01\x12+\n\x1elarge_volume_constituent_count\x18\x0b \x01(\x05\x42\x03\xe0\x41\x01\x1a-\n\x0bLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\xb0\x01\n\x1bVolumeHybridReplicationType\x12.\n*VOLUME_HYBRID_REPLICATION_TYPE_UNSPECIFIED\x10\x00\x12\r\n\tMIGRATION\x10\x01\x12\x1a\n\x16\x43ONTINUOUS_REPLICATION\x10\x02\x12\x16\n\x12ONPREM_REPLICATION\x10\x03\x12\x1e\n\x1aREVERSE_ONPREM_REPLICATION\x10\x04\"\xea\x04\n\x0f\x43\x61\x63heParameters\x12\x1d\n\x10peer_volume_name\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12\x1e\n\x11peer_cluster_name\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12\x1a\n\rpeer_svm_name\x18\x03 \x01(\tB\x03\xe0\x41\x02\x12\x1e\n\x11peer_ip_addresses\x18\x04 \x03(\tB\x03\xe0\x41\x02\x12)\n\x17\x65nable_global_file_lock\x18\x05 \x01(\x08\x42\x03\xe0\x41\x01H\x00\x88\x01\x01\x12>\n\x0c\x63\x61\x63he_config\x18\x06 \x01(\x0b\x32#.google.cloud.netapp.v1.CacheConfigB\x03\xe0\x41\x01\x12L\n\x0b\x63\x61\x63he_state\x18\x07 \x01(\x0e\x32\x32.google.cloud.netapp.v1.CacheParameters.CacheStateB\x03\xe0\x41\x03\x12\x14\n\x07\x63ommand\x18\x08 \x01(\tB\x03\xe0\x41\x03\x12\x44\n\x1bpeering_command_expiry_time\x18\t \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x01\x12\x17\n\npassphrase\x18\n \x01(\tB\x03\xe0\x41\x03\x12\x1a\n\rstate_details\x18\x0c \x01(\tB\x03\xe0\x41\x03\"v\n\nCacheState\x12\x1b\n\x17\x43\x41\x43HE_STATE_UNSPECIFIED\x10\x00\x12\x1b\n\x17PENDING_CLUSTER_PEERING\x10\x01\x12\x17\n\x13PENDING_SVM_PEERING\x10\x02\x12\n\n\x06PEERED\x10\x03\x12\t\n\x05\x45RROR\x10\x04\x42\x1a\n\x18_enable_global_file_lock\"\xbf\x03\n\x0b\x43\x61\x63heConfig\x12I\n\x12\x63\x61\x63he_pre_populate\x18\x01 \x01(\x0b\x32(.google.cloud.netapp.v1.CachePrePopulateB\x03\xe0\x41\x01\x12#\n\x11writeback_enabled\x18\x02 \x01(\x08\x42\x03\xe0\x41\x01H\x00\x88\x01\x01\x12,\n\x1a\x63ifs_change_notify_enabled\x18\x05 \x01(\x08\x42\x03\xe0\x41\x01H\x01\x88\x01\x01\x12`\n\x18\x63\x61\x63he_pre_populate_state\x18\x06 \x01(\x0e\x32\x39.google.cloud.netapp.v1.CacheConfig.CachePrePopulateStateB\x03\xe0\x41\x03\"{\n\x15\x43\x61\x63hePrePopulateState\x12(\n$CACHE_PRE_POPULATE_STATE_UNSPECIFIED\x10\x00\x12\x0e\n\nNOT_NEEDED\x10\x01\x12\x0f\n\x0bIN_PROGRESS\x10\x02\x12\x0c\n\x08\x43OMPLETE\x10\x03\x12\t\n\x05\x45RROR\x10\x04\x42\x14\n\x12_writeback_enabledB\x1d\n\x1b_cifs_change_notify_enabled\"u\n\x10\x43\x61\x63hePrePopulate\x12\x16\n\tpath_list\x18\x01 \x03(\tB\x03\xe0\x41\x01\x12\x1e\n\x11\x65xclude_path_list\x18\x02 \x03(\tB\x03\xe0\x41\x01\x12\x1b\n\trecursion\x18\x03 \x01(\x08\x42\x03\xe0\x41\x01H\x00\x88\x01\x01\x42\x0c\n\n_recursion\"\xe7\x01\n\x0b\x42lockDevice\x12\x16\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x01H\x00\x88\x01\x01\x12<\n\x0bhost_groups\x18\x02 \x03(\tB\'\xe0\x41\x01\xfa\x41!\n\x1fnetapp.googleapis.com/HostGroup\x12\x17\n\nidentifier\x18\x03 \x01(\tB\x03\xe0\x41\x03\x12\x1a\n\x08size_gib\x18\x04 \x01(\x03\x42\x03\xe0\x41\x01H\x01\x88\x01\x01\x12\x37\n\x07os_type\x18\x05 \x01(\x0e\x32\x1e.google.cloud.netapp.v1.OsTypeB\x06\xe0\x41\x02\xe0\x41\x05\x42\x07\n\x05_nameB\x0b\n\t_size_gib\"\xc4\x01\n\x19RestoreBackupFilesRequest\x12\x32\n\x04name\x18\x01 \x01(\tB$\xe0\x41\x02\xfa\x41\x1e\n\x1cnetapp.googleapis.com/Volume\x12\x34\n\x06\x62\x61\x63kup\x18\x02 \x01(\tB$\xe0\x41\x02\xfa\x41\x1e\n\x1cnetapp.googleapis.com/Backup\x12\x16\n\tfile_list\x18\x03 \x03(\tB\x03\xe0\x41\x02\x12%\n\x18restore_destination_path\x18\x04 \x01(\tB\x03\xe0\x41\x01\"\x1c\n\x1aRestoreBackupFilesResponse\"\xce\x01\n\x1d\x45stablishVolumePeeringRequest\x12\x32\n\x04name\x18\x01 \x01(\tB$\xe0\x41\x02\xfa\x41\x1e\n\x1cnetapp.googleapis.com/Volume\x12\x1e\n\x11peer_cluster_name\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12\x1a\n\rpeer_svm_name\x18\x03 \x01(\tB\x03\xe0\x41\x02\x12\x1e\n\x11peer_ip_addresses\x18\x04 \x03(\tB\x03\xe0\x41\x01\x12\x1d\n\x10peer_volume_name\x18\x05 \x01(\tB\x03\xe0\x41\x02*P\n\tProtocols\x12\x19\n\x15PROTOCOLS_UNSPECIFIED\x10\x00\x12\t\n\x05NFSV3\x10\x01\x12\t\n\x05NFSV4\x10\x02\x12\x07\n\x03SMB\x10\x03\x12\t\n\x05ISCSI\x10\x04*W\n\nAccessType\x12\x1b\n\x17\x41\x43\x43\x45SS_TYPE_UNSPECIFIED\x10\x00\x12\r\n\tREAD_ONLY\x10\x01\x12\x0e\n\nREAD_WRITE\x10\x02\x12\r\n\tREAD_NONE\x10\x03*\xe8\x01\n\x0bSMBSettings\x12\x1c\n\x18SMB_SETTINGS_UNSPECIFIED\x10\x00\x12\x10\n\x0c\x45NCRYPT_DATA\x10\x01\x12\r\n\tBROWSABLE\x10\x02\x12\x11\n\rCHANGE_NOTIFY\x10\x03\x12\x11\n\rNON_BROWSABLE\x10\x04\x12\x0b\n\x07OPLOCKS\x10\x05\x12\x11\n\rSHOW_SNAPSHOT\x10\x06\x12\x1a\n\x16SHOW_PREVIOUS_VERSIONS\x10\x07\x12\x1c\n\x18\x41\x43\x43\x45SS_BASED_ENUMERATION\x10\x08\x12\x1a\n\x16\x43ONTINUOUSLY_AVAILABLE\x10\t*C\n\rSecurityStyle\x12\x1e\n\x1aSECURITY_STYLE_UNSPECIFIED\x10\x00\x12\x08\n\x04NTFS\x10\x01\x12\x08\n\x04UNIX\x10\x02*A\n\x10RestrictedAction\x12!\n\x1dRESTRICTED_ACTION_UNSPECIFIED\x10\x00\x12\n\n\x06\x44\x45LETE\x10\x01\x42\xad\x01\n\x1a\x63om.google.cloud.netapp.v1B\x0bVolumeProtoP\x01Z2cloud.google.com/go/netapp/apiv1/netapppb;netapppb\xaa\x02\x16Google.Cloud.NetApp.V1\xca\x02\x16Google\\Cloud\\NetApp\\V1\xea\x02\x19Google::Cloud::NetApp::V1b\x06proto3"
|
|
16
16
|
|
|
17
17
|
pool = ::Google::Protobuf::DescriptorPool.generated_pool
|
|
18
18
|
pool.add_serialized_file(descriptor_data)
|
|
@@ -29,7 +29,9 @@ module Google
|
|
|
29
29
|
DeleteVolumeRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.netapp.v1.DeleteVolumeRequest").msgclass
|
|
30
30
|
RevertVolumeRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.netapp.v1.RevertVolumeRequest").msgclass
|
|
31
31
|
Volume = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.netapp.v1.Volume").msgclass
|
|
32
|
+
Volume::CloneDetails = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.netapp.v1.Volume.CloneDetails").msgclass
|
|
32
33
|
Volume::State = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.netapp.v1.Volume.State").enummodule
|
|
34
|
+
LargeCapacityConfig = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.netapp.v1.LargeCapacityConfig").msgclass
|
|
33
35
|
ExportPolicy = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.netapp.v1.ExportPolicy").msgclass
|
|
34
36
|
SimpleExportPolicyRule = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.netapp.v1.SimpleExportPolicyRule").msgclass
|
|
35
37
|
SimpleExportPolicyRule::SquashMode = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.netapp.v1.SimpleExportPolicyRule.SquashMode").enummodule
|
|
@@ -53,6 +55,7 @@ module Google
|
|
|
53
55
|
BlockDevice = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.netapp.v1.BlockDevice").msgclass
|
|
54
56
|
RestoreBackupFilesRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.netapp.v1.RestoreBackupFilesRequest").msgclass
|
|
55
57
|
RestoreBackupFilesResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.netapp.v1.RestoreBackupFilesResponse").msgclass
|
|
58
|
+
EstablishVolumePeeringRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.netapp.v1.EstablishVolumePeeringRequest").msgclass
|
|
56
59
|
Protocols = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.netapp.v1.Protocols").enummodule
|
|
57
60
|
AccessType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.netapp.v1.AccessType").enummodule
|
|
58
61
|
SMBSettings = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.netapp.v1.SMBSettings").enummodule
|