google-cloud-netapp-v1 2.7.0 → 2.8.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/backup_vault_pb.rb +2 -1
- 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 +13 -0
- data/lib/google/cloud/netapp/v1/common_pb.rb +3 -1
- data/lib/google/cloud/netapp/v1/host_group_pb.rb +58 -0
- data/lib/google/cloud/netapp/v1/kms_pb.rb +1 -1
- data/lib/google/cloud/netapp/v1/netapp/client.rb +630 -0
- data/lib/google/cloud/netapp/v1/netapp/paths.rb +19 -0
- data/lib/google/cloud/netapp/v1/netapp/rest/client.rb +588 -0
- data/lib/google/cloud/netapp/v1/netapp/rest/service_stub.rb +369 -0
- data/lib/google/cloud/netapp/v1/storage_pool_pb.rb +1 -1
- data/lib/google/cloud/netapp/v1/version.rb +1 -1
- data/lib/google/cloud/netapp/v1/volume_pb.rb +9 -1
- data/proto_docs/google/cloud/netapp/v1/backup_vault.rb +32 -1
- data/proto_docs/google/cloud/netapp/v1/common.rb +33 -0
- data/proto_docs/google/cloud/netapp/v1/host_group.rb +193 -0
- data/proto_docs/google/cloud/netapp/v1/kms.rb +4 -3
- data/proto_docs/google/cloud/netapp/v1/storage_pool.rb +7 -0
- data/proto_docs/google/cloud/netapp/v1/volume.rb +202 -5
- metadata +3 -1
|
@@ -2473,6 +2473,246 @@ module Google
|
|
|
2473
2473
|
end
|
|
2474
2474
|
end
|
|
2475
2475
|
|
|
2476
|
+
##
|
|
2477
|
+
# Baseline implementation for the restore_backup_files REST call
|
|
2478
|
+
#
|
|
2479
|
+
# @param request_pb [::Google::Cloud::NetApp::V1::RestoreBackupFilesRequest]
|
|
2480
|
+
# A request object representing the call parameters. Required.
|
|
2481
|
+
# @param options [::Gapic::CallOptions]
|
|
2482
|
+
# Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
|
|
2483
|
+
#
|
|
2484
|
+
# @yield [result, operation] Access the result along with the TransportOperation object
|
|
2485
|
+
# @yieldparam result [::Google::Longrunning::Operation]
|
|
2486
|
+
# @yieldparam operation [::Gapic::Rest::TransportOperation]
|
|
2487
|
+
#
|
|
2488
|
+
# @return [::Google::Longrunning::Operation]
|
|
2489
|
+
# A result object deserialized from the server's reply
|
|
2490
|
+
def restore_backup_files request_pb, options = nil
|
|
2491
|
+
raise ::ArgumentError, "request must be provided" if request_pb.nil?
|
|
2492
|
+
|
|
2493
|
+
verb, uri, query_string_params, body = ServiceStub.transcode_restore_backup_files_request request_pb
|
|
2494
|
+
query_string_params = if query_string_params.any?
|
|
2495
|
+
query_string_params.to_h { |p| p.split "=", 2 }
|
|
2496
|
+
else
|
|
2497
|
+
{}
|
|
2498
|
+
end
|
|
2499
|
+
|
|
2500
|
+
response = @client_stub.make_http_request(
|
|
2501
|
+
verb,
|
|
2502
|
+
uri: uri,
|
|
2503
|
+
body: body || "",
|
|
2504
|
+
params: query_string_params,
|
|
2505
|
+
method_name: "restore_backup_files",
|
|
2506
|
+
options: options
|
|
2507
|
+
)
|
|
2508
|
+
operation = ::Gapic::Rest::TransportOperation.new response
|
|
2509
|
+
result = ::Google::Longrunning::Operation.decode_json response.body, ignore_unknown_fields: true
|
|
2510
|
+
catch :response do
|
|
2511
|
+
yield result, operation if block_given?
|
|
2512
|
+
result
|
|
2513
|
+
end
|
|
2514
|
+
end
|
|
2515
|
+
|
|
2516
|
+
##
|
|
2517
|
+
# Baseline implementation for the list_host_groups REST call
|
|
2518
|
+
#
|
|
2519
|
+
# @param request_pb [::Google::Cloud::NetApp::V1::ListHostGroupsRequest]
|
|
2520
|
+
# A request object representing the call parameters. Required.
|
|
2521
|
+
# @param options [::Gapic::CallOptions]
|
|
2522
|
+
# Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
|
|
2523
|
+
#
|
|
2524
|
+
# @yield [result, operation] Access the result along with the TransportOperation object
|
|
2525
|
+
# @yieldparam result [::Google::Cloud::NetApp::V1::ListHostGroupsResponse]
|
|
2526
|
+
# @yieldparam operation [::Gapic::Rest::TransportOperation]
|
|
2527
|
+
#
|
|
2528
|
+
# @return [::Google::Cloud::NetApp::V1::ListHostGroupsResponse]
|
|
2529
|
+
# A result object deserialized from the server's reply
|
|
2530
|
+
def list_host_groups request_pb, options = nil
|
|
2531
|
+
raise ::ArgumentError, "request must be provided" if request_pb.nil?
|
|
2532
|
+
|
|
2533
|
+
verb, uri, query_string_params, body = ServiceStub.transcode_list_host_groups_request request_pb
|
|
2534
|
+
query_string_params = if query_string_params.any?
|
|
2535
|
+
query_string_params.to_h { |p| p.split "=", 2 }
|
|
2536
|
+
else
|
|
2537
|
+
{}
|
|
2538
|
+
end
|
|
2539
|
+
|
|
2540
|
+
response = @client_stub.make_http_request(
|
|
2541
|
+
verb,
|
|
2542
|
+
uri: uri,
|
|
2543
|
+
body: body || "",
|
|
2544
|
+
params: query_string_params,
|
|
2545
|
+
method_name: "list_host_groups",
|
|
2546
|
+
options: options
|
|
2547
|
+
)
|
|
2548
|
+
operation = ::Gapic::Rest::TransportOperation.new response
|
|
2549
|
+
result = ::Google::Cloud::NetApp::V1::ListHostGroupsResponse.decode_json response.body, ignore_unknown_fields: true
|
|
2550
|
+
catch :response do
|
|
2551
|
+
yield result, operation if block_given?
|
|
2552
|
+
result
|
|
2553
|
+
end
|
|
2554
|
+
end
|
|
2555
|
+
|
|
2556
|
+
##
|
|
2557
|
+
# Baseline implementation for the get_host_group REST call
|
|
2558
|
+
#
|
|
2559
|
+
# @param request_pb [::Google::Cloud::NetApp::V1::GetHostGroupRequest]
|
|
2560
|
+
# A request object representing the call parameters. Required.
|
|
2561
|
+
# @param options [::Gapic::CallOptions]
|
|
2562
|
+
# Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
|
|
2563
|
+
#
|
|
2564
|
+
# @yield [result, operation] Access the result along with the TransportOperation object
|
|
2565
|
+
# @yieldparam result [::Google::Cloud::NetApp::V1::HostGroup]
|
|
2566
|
+
# @yieldparam operation [::Gapic::Rest::TransportOperation]
|
|
2567
|
+
#
|
|
2568
|
+
# @return [::Google::Cloud::NetApp::V1::HostGroup]
|
|
2569
|
+
# A result object deserialized from the server's reply
|
|
2570
|
+
def get_host_group request_pb, options = nil
|
|
2571
|
+
raise ::ArgumentError, "request must be provided" if request_pb.nil?
|
|
2572
|
+
|
|
2573
|
+
verb, uri, query_string_params, body = ServiceStub.transcode_get_host_group_request request_pb
|
|
2574
|
+
query_string_params = if query_string_params.any?
|
|
2575
|
+
query_string_params.to_h { |p| p.split "=", 2 }
|
|
2576
|
+
else
|
|
2577
|
+
{}
|
|
2578
|
+
end
|
|
2579
|
+
|
|
2580
|
+
response = @client_stub.make_http_request(
|
|
2581
|
+
verb,
|
|
2582
|
+
uri: uri,
|
|
2583
|
+
body: body || "",
|
|
2584
|
+
params: query_string_params,
|
|
2585
|
+
method_name: "get_host_group",
|
|
2586
|
+
options: options
|
|
2587
|
+
)
|
|
2588
|
+
operation = ::Gapic::Rest::TransportOperation.new response
|
|
2589
|
+
result = ::Google::Cloud::NetApp::V1::HostGroup.decode_json response.body, ignore_unknown_fields: true
|
|
2590
|
+
catch :response do
|
|
2591
|
+
yield result, operation if block_given?
|
|
2592
|
+
result
|
|
2593
|
+
end
|
|
2594
|
+
end
|
|
2595
|
+
|
|
2596
|
+
##
|
|
2597
|
+
# Baseline implementation for the create_host_group REST call
|
|
2598
|
+
#
|
|
2599
|
+
# @param request_pb [::Google::Cloud::NetApp::V1::CreateHostGroupRequest]
|
|
2600
|
+
# A request object representing the call parameters. Required.
|
|
2601
|
+
# @param options [::Gapic::CallOptions]
|
|
2602
|
+
# Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
|
|
2603
|
+
#
|
|
2604
|
+
# @yield [result, operation] Access the result along with the TransportOperation object
|
|
2605
|
+
# @yieldparam result [::Google::Longrunning::Operation]
|
|
2606
|
+
# @yieldparam operation [::Gapic::Rest::TransportOperation]
|
|
2607
|
+
#
|
|
2608
|
+
# @return [::Google::Longrunning::Operation]
|
|
2609
|
+
# A result object deserialized from the server's reply
|
|
2610
|
+
def create_host_group request_pb, options = nil
|
|
2611
|
+
raise ::ArgumentError, "request must be provided" if request_pb.nil?
|
|
2612
|
+
|
|
2613
|
+
verb, uri, query_string_params, body = ServiceStub.transcode_create_host_group_request request_pb
|
|
2614
|
+
query_string_params = if query_string_params.any?
|
|
2615
|
+
query_string_params.to_h { |p| p.split "=", 2 }
|
|
2616
|
+
else
|
|
2617
|
+
{}
|
|
2618
|
+
end
|
|
2619
|
+
|
|
2620
|
+
response = @client_stub.make_http_request(
|
|
2621
|
+
verb,
|
|
2622
|
+
uri: uri,
|
|
2623
|
+
body: body || "",
|
|
2624
|
+
params: query_string_params,
|
|
2625
|
+
method_name: "create_host_group",
|
|
2626
|
+
options: options
|
|
2627
|
+
)
|
|
2628
|
+
operation = ::Gapic::Rest::TransportOperation.new response
|
|
2629
|
+
result = ::Google::Longrunning::Operation.decode_json response.body, ignore_unknown_fields: true
|
|
2630
|
+
catch :response do
|
|
2631
|
+
yield result, operation if block_given?
|
|
2632
|
+
result
|
|
2633
|
+
end
|
|
2634
|
+
end
|
|
2635
|
+
|
|
2636
|
+
##
|
|
2637
|
+
# Baseline implementation for the update_host_group REST call
|
|
2638
|
+
#
|
|
2639
|
+
# @param request_pb [::Google::Cloud::NetApp::V1::UpdateHostGroupRequest]
|
|
2640
|
+
# A request object representing the call parameters. Required.
|
|
2641
|
+
# @param options [::Gapic::CallOptions]
|
|
2642
|
+
# Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
|
|
2643
|
+
#
|
|
2644
|
+
# @yield [result, operation] Access the result along with the TransportOperation object
|
|
2645
|
+
# @yieldparam result [::Google::Longrunning::Operation]
|
|
2646
|
+
# @yieldparam operation [::Gapic::Rest::TransportOperation]
|
|
2647
|
+
#
|
|
2648
|
+
# @return [::Google::Longrunning::Operation]
|
|
2649
|
+
# A result object deserialized from the server's reply
|
|
2650
|
+
def update_host_group request_pb, options = nil
|
|
2651
|
+
raise ::ArgumentError, "request must be provided" if request_pb.nil?
|
|
2652
|
+
|
|
2653
|
+
verb, uri, query_string_params, body = ServiceStub.transcode_update_host_group_request request_pb
|
|
2654
|
+
query_string_params = if query_string_params.any?
|
|
2655
|
+
query_string_params.to_h { |p| p.split "=", 2 }
|
|
2656
|
+
else
|
|
2657
|
+
{}
|
|
2658
|
+
end
|
|
2659
|
+
|
|
2660
|
+
response = @client_stub.make_http_request(
|
|
2661
|
+
verb,
|
|
2662
|
+
uri: uri,
|
|
2663
|
+
body: body || "",
|
|
2664
|
+
params: query_string_params,
|
|
2665
|
+
method_name: "update_host_group",
|
|
2666
|
+
options: options
|
|
2667
|
+
)
|
|
2668
|
+
operation = ::Gapic::Rest::TransportOperation.new response
|
|
2669
|
+
result = ::Google::Longrunning::Operation.decode_json response.body, ignore_unknown_fields: true
|
|
2670
|
+
catch :response do
|
|
2671
|
+
yield result, operation if block_given?
|
|
2672
|
+
result
|
|
2673
|
+
end
|
|
2674
|
+
end
|
|
2675
|
+
|
|
2676
|
+
##
|
|
2677
|
+
# Baseline implementation for the delete_host_group REST call
|
|
2678
|
+
#
|
|
2679
|
+
# @param request_pb [::Google::Cloud::NetApp::V1::DeleteHostGroupRequest]
|
|
2680
|
+
# A request object representing the call parameters. Required.
|
|
2681
|
+
# @param options [::Gapic::CallOptions]
|
|
2682
|
+
# Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
|
|
2683
|
+
#
|
|
2684
|
+
# @yield [result, operation] Access the result along with the TransportOperation object
|
|
2685
|
+
# @yieldparam result [::Google::Longrunning::Operation]
|
|
2686
|
+
# @yieldparam operation [::Gapic::Rest::TransportOperation]
|
|
2687
|
+
#
|
|
2688
|
+
# @return [::Google::Longrunning::Operation]
|
|
2689
|
+
# A result object deserialized from the server's reply
|
|
2690
|
+
def delete_host_group request_pb, options = nil
|
|
2691
|
+
raise ::ArgumentError, "request must be provided" if request_pb.nil?
|
|
2692
|
+
|
|
2693
|
+
verb, uri, query_string_params, body = ServiceStub.transcode_delete_host_group_request request_pb
|
|
2694
|
+
query_string_params = if query_string_params.any?
|
|
2695
|
+
query_string_params.to_h { |p| p.split "=", 2 }
|
|
2696
|
+
else
|
|
2697
|
+
{}
|
|
2698
|
+
end
|
|
2699
|
+
|
|
2700
|
+
response = @client_stub.make_http_request(
|
|
2701
|
+
verb,
|
|
2702
|
+
uri: uri,
|
|
2703
|
+
body: body || "",
|
|
2704
|
+
params: query_string_params,
|
|
2705
|
+
method_name: "delete_host_group",
|
|
2706
|
+
options: options
|
|
2707
|
+
)
|
|
2708
|
+
operation = ::Gapic::Rest::TransportOperation.new response
|
|
2709
|
+
result = ::Google::Longrunning::Operation.decode_json response.body, ignore_unknown_fields: true
|
|
2710
|
+
catch :response do
|
|
2711
|
+
yield result, operation if block_given?
|
|
2712
|
+
result
|
|
2713
|
+
end
|
|
2714
|
+
end
|
|
2715
|
+
|
|
2476
2716
|
##
|
|
2477
2717
|
# @private
|
|
2478
2718
|
#
|
|
@@ -3762,6 +4002,135 @@ module Google
|
|
|
3762
4002
|
)
|
|
3763
4003
|
transcoder.transcode request_pb
|
|
3764
4004
|
end
|
|
4005
|
+
|
|
4006
|
+
##
|
|
4007
|
+
# @private
|
|
4008
|
+
#
|
|
4009
|
+
# GRPC transcoding helper method for the restore_backup_files REST call
|
|
4010
|
+
#
|
|
4011
|
+
# @param request_pb [::Google::Cloud::NetApp::V1::RestoreBackupFilesRequest]
|
|
4012
|
+
# A request object representing the call parameters. Required.
|
|
4013
|
+
# @return [Array(String, [String, nil], Hash{String => String})]
|
|
4014
|
+
# Uri, Body, Query string parameters
|
|
4015
|
+
def self.transcode_restore_backup_files_request request_pb
|
|
4016
|
+
transcoder = Gapic::Rest::GrpcTranscoder.new
|
|
4017
|
+
.with_bindings(
|
|
4018
|
+
uri_method: :post,
|
|
4019
|
+
uri_template: "/v1/{name}:restore",
|
|
4020
|
+
body: "*",
|
|
4021
|
+
matches: [
|
|
4022
|
+
["name", %r{^projects/[^/]+/locations/[^/]+/volumes/[^/]+/?$}, false]
|
|
4023
|
+
]
|
|
4024
|
+
)
|
|
4025
|
+
transcoder.transcode request_pb
|
|
4026
|
+
end
|
|
4027
|
+
|
|
4028
|
+
##
|
|
4029
|
+
# @private
|
|
4030
|
+
#
|
|
4031
|
+
# GRPC transcoding helper method for the list_host_groups REST call
|
|
4032
|
+
#
|
|
4033
|
+
# @param request_pb [::Google::Cloud::NetApp::V1::ListHostGroupsRequest]
|
|
4034
|
+
# A request object representing the call parameters. Required.
|
|
4035
|
+
# @return [Array(String, [String, nil], Hash{String => String})]
|
|
4036
|
+
# Uri, Body, Query string parameters
|
|
4037
|
+
def self.transcode_list_host_groups_request request_pb
|
|
4038
|
+
transcoder = Gapic::Rest::GrpcTranscoder.new
|
|
4039
|
+
.with_bindings(
|
|
4040
|
+
uri_method: :get,
|
|
4041
|
+
uri_template: "/v1/{parent}/hostGroups",
|
|
4042
|
+
matches: [
|
|
4043
|
+
["parent", %r{^projects/[^/]+/locations/[^/]+/?$}, false]
|
|
4044
|
+
]
|
|
4045
|
+
)
|
|
4046
|
+
transcoder.transcode request_pb
|
|
4047
|
+
end
|
|
4048
|
+
|
|
4049
|
+
##
|
|
4050
|
+
# @private
|
|
4051
|
+
#
|
|
4052
|
+
# GRPC transcoding helper method for the get_host_group REST call
|
|
4053
|
+
#
|
|
4054
|
+
# @param request_pb [::Google::Cloud::NetApp::V1::GetHostGroupRequest]
|
|
4055
|
+
# A request object representing the call parameters. Required.
|
|
4056
|
+
# @return [Array(String, [String, nil], Hash{String => String})]
|
|
4057
|
+
# Uri, Body, Query string parameters
|
|
4058
|
+
def self.transcode_get_host_group_request request_pb
|
|
4059
|
+
transcoder = Gapic::Rest::GrpcTranscoder.new
|
|
4060
|
+
.with_bindings(
|
|
4061
|
+
uri_method: :get,
|
|
4062
|
+
uri_template: "/v1/{name}",
|
|
4063
|
+
matches: [
|
|
4064
|
+
["name", %r{^projects/[^/]+/locations/[^/]+/hostGroups/[^/]+/?$}, false]
|
|
4065
|
+
]
|
|
4066
|
+
)
|
|
4067
|
+
transcoder.transcode request_pb
|
|
4068
|
+
end
|
|
4069
|
+
|
|
4070
|
+
##
|
|
4071
|
+
# @private
|
|
4072
|
+
#
|
|
4073
|
+
# GRPC transcoding helper method for the create_host_group REST call
|
|
4074
|
+
#
|
|
4075
|
+
# @param request_pb [::Google::Cloud::NetApp::V1::CreateHostGroupRequest]
|
|
4076
|
+
# A request object representing the call parameters. Required.
|
|
4077
|
+
# @return [Array(String, [String, nil], Hash{String => String})]
|
|
4078
|
+
# Uri, Body, Query string parameters
|
|
4079
|
+
def self.transcode_create_host_group_request request_pb
|
|
4080
|
+
transcoder = Gapic::Rest::GrpcTranscoder.new
|
|
4081
|
+
.with_bindings(
|
|
4082
|
+
uri_method: :post,
|
|
4083
|
+
uri_template: "/v1/{parent}/hostGroups",
|
|
4084
|
+
body: "host_group",
|
|
4085
|
+
matches: [
|
|
4086
|
+
["parent", %r{^projects/[^/]+/locations/[^/]+/?$}, false]
|
|
4087
|
+
]
|
|
4088
|
+
)
|
|
4089
|
+
transcoder.transcode request_pb
|
|
4090
|
+
end
|
|
4091
|
+
|
|
4092
|
+
##
|
|
4093
|
+
# @private
|
|
4094
|
+
#
|
|
4095
|
+
# GRPC transcoding helper method for the update_host_group REST call
|
|
4096
|
+
#
|
|
4097
|
+
# @param request_pb [::Google::Cloud::NetApp::V1::UpdateHostGroupRequest]
|
|
4098
|
+
# A request object representing the call parameters. Required.
|
|
4099
|
+
# @return [Array(String, [String, nil], Hash{String => String})]
|
|
4100
|
+
# Uri, Body, Query string parameters
|
|
4101
|
+
def self.transcode_update_host_group_request request_pb
|
|
4102
|
+
transcoder = Gapic::Rest::GrpcTranscoder.new
|
|
4103
|
+
.with_bindings(
|
|
4104
|
+
uri_method: :patch,
|
|
4105
|
+
uri_template: "/v1/{host_group.name}",
|
|
4106
|
+
body: "host_group",
|
|
4107
|
+
matches: [
|
|
4108
|
+
["host_group.name", %r{^projects/[^/]+/locations/[^/]+/hostGroups/[^/]+/?$}, false]
|
|
4109
|
+
]
|
|
4110
|
+
)
|
|
4111
|
+
transcoder.transcode request_pb
|
|
4112
|
+
end
|
|
4113
|
+
|
|
4114
|
+
##
|
|
4115
|
+
# @private
|
|
4116
|
+
#
|
|
4117
|
+
# GRPC transcoding helper method for the delete_host_group REST call
|
|
4118
|
+
#
|
|
4119
|
+
# @param request_pb [::Google::Cloud::NetApp::V1::DeleteHostGroupRequest]
|
|
4120
|
+
# A request object representing the call parameters. Required.
|
|
4121
|
+
# @return [Array(String, [String, nil], Hash{String => String})]
|
|
4122
|
+
# Uri, Body, Query string parameters
|
|
4123
|
+
def self.transcode_delete_host_group_request request_pb
|
|
4124
|
+
transcoder = Gapic::Rest::GrpcTranscoder.new
|
|
4125
|
+
.with_bindings(
|
|
4126
|
+
uri_method: :delete,
|
|
4127
|
+
uri_template: "/v1/{name}",
|
|
4128
|
+
matches: [
|
|
4129
|
+
["name", %r{^projects/[^/]+/locations/[^/]+/hostGroups/[^/]+/?$}, false]
|
|
4130
|
+
]
|
|
4131
|
+
)
|
|
4132
|
+
transcoder.transcode request_pb
|
|
4133
|
+
end
|
|
3765
4134
|
end
|
|
3766
4135
|
end
|
|
3767
4136
|
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\"\xae\r\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\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_type\"\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.DirectoryServiceTypeB\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
|
|
|
@@ -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\"\xd5\x11\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#\n\x16hot_tier_size_used_gib\x18, \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\"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*E\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*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\"\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"
|
|
16
16
|
|
|
17
17
|
pool = Google::Protobuf::DescriptorPool.generated_pool
|
|
18
18
|
|
|
@@ -68,6 +68,14 @@ module Google
|
|
|
68
68
|
TieringPolicy::TierAction = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.netapp.v1.TieringPolicy.TierAction").enummodule
|
|
69
69
|
HybridReplicationParameters = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.netapp.v1.HybridReplicationParameters").msgclass
|
|
70
70
|
HybridReplicationParameters::VolumeHybridReplicationType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.netapp.v1.HybridReplicationParameters.VolumeHybridReplicationType").enummodule
|
|
71
|
+
CacheParameters = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.netapp.v1.CacheParameters").msgclass
|
|
72
|
+
CacheParameters::CacheState = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.netapp.v1.CacheParameters.CacheState").enummodule
|
|
73
|
+
CacheConfig = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.netapp.v1.CacheConfig").msgclass
|
|
74
|
+
CacheConfig::CachePrePopulateState = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.netapp.v1.CacheConfig.CachePrePopulateState").enummodule
|
|
75
|
+
CachePrePopulate = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.netapp.v1.CachePrePopulate").msgclass
|
|
76
|
+
BlockDevice = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.netapp.v1.BlockDevice").msgclass
|
|
77
|
+
RestoreBackupFilesRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.netapp.v1.RestoreBackupFilesRequest").msgclass
|
|
78
|
+
RestoreBackupFilesResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.netapp.v1.RestoreBackupFilesResponse").msgclass
|
|
71
79
|
Protocols = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.netapp.v1.Protocols").enummodule
|
|
72
80
|
AccessType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.netapp.v1.AccessType").enummodule
|
|
73
81
|
SMBSettings = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.netapp.v1.SMBSettings").enummodule
|
|
@@ -63,7 +63,20 @@ module Google
|
|
|
63
63
|
# `projects/{project_id}/locations/{location}/backupVaults/{backup_vault_id}`
|
|
64
64
|
# @!attribute [rw] backup_retention_policy
|
|
65
65
|
# @return [::Google::Cloud::NetApp::V1::BackupVault::BackupRetentionPolicy]
|
|
66
|
-
# Optional. Backup retention policy defining the
|
|
66
|
+
# Optional. Backup retention policy defining the retention of backups.
|
|
67
|
+
# @!attribute [rw] kms_config
|
|
68
|
+
# @return [::String]
|
|
69
|
+
# Optional. Specifies the Key Management System (KMS) configuration to be
|
|
70
|
+
# used for backup encryption. Format:
|
|
71
|
+
# `projects/{project}/locations/{location}/kmsConfigs/{kms_config}`
|
|
72
|
+
# @!attribute [r] encryption_state
|
|
73
|
+
# @return [::Google::Cloud::NetApp::V1::BackupVault::EncryptionState]
|
|
74
|
+
# Output only. Field indicating encryption state of CMEK backups.
|
|
75
|
+
# @!attribute [r] backups_crypto_key_version
|
|
76
|
+
# @return [::String]
|
|
77
|
+
# Output only. The crypto key version used to encrypt the backup vault.
|
|
78
|
+
# Format:
|
|
79
|
+
# `projects/{project}/locations/{location}/keyRings/{key_ring}/cryptoKeys/{crypto_key}/cryptoKeyVersions/{crypto_key_version}`
|
|
67
80
|
class BackupVault
|
|
68
81
|
include ::Google::Protobuf::MessageExts
|
|
69
82
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
@@ -139,6 +152,24 @@ module Google
|
|
|
139
152
|
# BackupVault type is CROSS_REGION.
|
|
140
153
|
CROSS_REGION = 2
|
|
141
154
|
end
|
|
155
|
+
|
|
156
|
+
# Encryption state of customer-managed encryption keys (CMEK) backups.
|
|
157
|
+
module EncryptionState
|
|
158
|
+
# Encryption state not set.
|
|
159
|
+
ENCRYPTION_STATE_UNSPECIFIED = 0
|
|
160
|
+
|
|
161
|
+
# Encryption state is pending.
|
|
162
|
+
ENCRYPTION_STATE_PENDING = 1
|
|
163
|
+
|
|
164
|
+
# Encryption is complete.
|
|
165
|
+
ENCRYPTION_STATE_COMPLETED = 2
|
|
166
|
+
|
|
167
|
+
# Encryption is in progress.
|
|
168
|
+
ENCRYPTION_STATE_IN_PROGRESS = 3
|
|
169
|
+
|
|
170
|
+
# Encryption has failed.
|
|
171
|
+
ENCRYPTION_STATE_FAILED = 4
|
|
172
|
+
end
|
|
142
173
|
end
|
|
143
174
|
|
|
144
175
|
# GetBackupVaultRequest gets the state of a backupVault.
|
|
@@ -32,6 +32,9 @@ module Google
|
|
|
32
32
|
# @!attribute [r] has_vcp
|
|
33
33
|
# @return [::Boolean]
|
|
34
34
|
# Output only. Indicates if the location has VCP support.
|
|
35
|
+
# @!attribute [r] has_ontap_proxy
|
|
36
|
+
# @return [::Boolean]
|
|
37
|
+
# Output only. Indicates if the location has ONTAP Proxy support.
|
|
35
38
|
class LocationMetadata
|
|
36
39
|
include ::Google::Protobuf::MessageExts
|
|
37
40
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
@@ -97,6 +100,21 @@ module Google
|
|
|
97
100
|
ACTIVE_DIRECTORY = 1
|
|
98
101
|
end
|
|
99
102
|
|
|
103
|
+
# Type of storage pool
|
|
104
|
+
module StoragePoolType
|
|
105
|
+
# Storage pool type is not specified.
|
|
106
|
+
STORAGE_POOL_TYPE_UNSPECIFIED = 0
|
|
107
|
+
|
|
108
|
+
# Storage pool type is file.
|
|
109
|
+
FILE = 1
|
|
110
|
+
|
|
111
|
+
# Storage pool type is unified.
|
|
112
|
+
UNIFIED = 2
|
|
113
|
+
|
|
114
|
+
# Storage pool type is unified large capacity.
|
|
115
|
+
UNIFIED_LARGE_CAPACITY = 3
|
|
116
|
+
end
|
|
117
|
+
|
|
100
118
|
# Schedule for Hybrid Replication.
|
|
101
119
|
# New enum values may be added in future to support different frequency of
|
|
102
120
|
# replication.
|
|
@@ -125,6 +143,21 @@ module Google
|
|
|
125
143
|
# QoS Type is Manual
|
|
126
144
|
MANUAL = 2
|
|
127
145
|
end
|
|
146
|
+
|
|
147
|
+
# OS types for the host group
|
|
148
|
+
module OsType
|
|
149
|
+
# Unspecified OS Type
|
|
150
|
+
OS_TYPE_UNSPECIFIED = 0
|
|
151
|
+
|
|
152
|
+
# OS Type is Linux
|
|
153
|
+
LINUX = 1
|
|
154
|
+
|
|
155
|
+
# OS Type is Windows
|
|
156
|
+
WINDOWS = 2
|
|
157
|
+
|
|
158
|
+
# OS Type is VMware ESXi
|
|
159
|
+
ESXI = 3
|
|
160
|
+
end
|
|
128
161
|
end
|
|
129
162
|
end
|
|
130
163
|
end
|