google-cloud-vmware_engine-v1 0.6.1 → 0.7.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.
@@ -389,6 +389,308 @@ module Google
389
389
  extend ::Google::Protobuf::MessageExts::ClassMethods
390
390
  end
391
391
 
392
+ # Request message for
393
+ # {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#list_nodes VmwareEngine.ListNodes}
394
+ # @!attribute [rw] parent
395
+ # @return [::String]
396
+ # Required. The resource name of the cluster to be queried for nodes.
397
+ # Resource names are schemeless URIs that follow the conventions in
398
+ # https://cloud.google.com/apis/design/resource_names.
399
+ # For example:
400
+ # `projects/my-project/locations/us-central1-a/privateClouds/my-cloud/clusters/my-cluster`
401
+ # @!attribute [rw] page_size
402
+ # @return [::Integer]
403
+ # The maximum number of nodes to return in one page.
404
+ # The service may return fewer than this value.
405
+ # The maximum value is coerced to 1000.
406
+ # The default value of this field is 500.
407
+ # @!attribute [rw] page_token
408
+ # @return [::String]
409
+ # A page token, received from a previous `ListNodes` call.
410
+ # Provide this to retrieve the subsequent page.
411
+ #
412
+ # When paginating, all other parameters provided to
413
+ # `ListNodes` must match the call that provided the page
414
+ # token.
415
+ class ListNodesRequest
416
+ include ::Google::Protobuf::MessageExts
417
+ extend ::Google::Protobuf::MessageExts::ClassMethods
418
+ end
419
+
420
+ # Response message for
421
+ # {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#list_nodes VmwareEngine.ListNodes}
422
+ # @!attribute [rw] nodes
423
+ # @return [::Array<::Google::Cloud::VmwareEngine::V1::Node>]
424
+ # The nodes.
425
+ # @!attribute [rw] next_page_token
426
+ # @return [::String]
427
+ # A token, which can be sent as `page_token` to retrieve the next page.
428
+ # If this field is omitted, there are no subsequent pages.
429
+ class ListNodesResponse
430
+ include ::Google::Protobuf::MessageExts
431
+ extend ::Google::Protobuf::MessageExts::ClassMethods
432
+ end
433
+
434
+ # Request message for
435
+ # {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#get_node VmwareEngine.GetNode}
436
+ # @!attribute [rw] name
437
+ # @return [::String]
438
+ # Required. The resource name of the node to retrieve.
439
+ # For example:
440
+ # `projects/{project}/locations/{location}/privateClouds/{private_cloud}/clusters/{cluster}/nodes/{node}`
441
+ class GetNodeRequest
442
+ include ::Google::Protobuf::MessageExts
443
+ extend ::Google::Protobuf::MessageExts::ClassMethods
444
+ end
445
+
446
+ # Request message for
447
+ # {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#list_external_addresses VmwareEngine.ListExternalAddresses}
448
+ # @!attribute [rw] parent
449
+ # @return [::String]
450
+ # Required. The resource name of the private cloud to be queried for
451
+ # external IP addresses.
452
+ # Resource names are schemeless URIs that follow the conventions in
453
+ # https://cloud.google.com/apis/design/resource_names.
454
+ # For example:
455
+ # `projects/my-project/locations/us-central1-a/privateClouds/my-cloud`
456
+ # @!attribute [rw] page_size
457
+ # @return [::Integer]
458
+ # The maximum number of external IP addresses to return in one page.
459
+ # The service may return fewer than this value.
460
+ # The maximum value is coerced to 1000.
461
+ # The default value of this field is 500.
462
+ # @!attribute [rw] page_token
463
+ # @return [::String]
464
+ # A page token, received from a previous `ListExternalAddresses` call.
465
+ # Provide this to retrieve the subsequent page.
466
+ #
467
+ # When paginating, all other parameters provided to
468
+ # `ListExternalAddresses` must match the call that provided the page token.
469
+ # @!attribute [rw] filter
470
+ # @return [::String]
471
+ # A filter expression that matches resources returned in the response.
472
+ # The expression must specify the field name, a comparison
473
+ # operator, and the value that you want to use for filtering. The value
474
+ # must be a string, a number, or a boolean. The comparison operator
475
+ # must be `=`, `!=`, `>`, or `<`.
476
+ #
477
+ # For example, if you are filtering a list of IP addresses, you can
478
+ # exclude the ones named `example-ip` by specifying
479
+ # `name != "example-ip"`.
480
+ #
481
+ # To filter on multiple expressions, provide each separate expression within
482
+ # parentheses. For example:
483
+ # ```
484
+ # (name = "example-ip")
485
+ # (createTime > "2021-04-12T08:15:10.40Z")
486
+ # ```
487
+ #
488
+ # By default, each expression is an `AND` expression. However, you
489
+ # can include `AND` and `OR` expressions explicitly.
490
+ # For example:
491
+ # ```
492
+ # (name = "example-ip-1") AND
493
+ # (createTime > "2021-04-12T08:15:10.40Z") OR
494
+ # (name = "example-ip-2")
495
+ # ```
496
+ # @!attribute [rw] order_by
497
+ # @return [::String]
498
+ # Sorts list results by a certain order. By default, returned results
499
+ # are ordered by `name` in ascending order.
500
+ # You can also sort results in descending order based on the `name` value
501
+ # using `orderBy="name desc"`.
502
+ # Currently, only ordering by `name` is supported.
503
+ class ListExternalAddressesRequest
504
+ include ::Google::Protobuf::MessageExts
505
+ extend ::Google::Protobuf::MessageExts::ClassMethods
506
+ end
507
+
508
+ # Response message for
509
+ # {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#list_external_addresses VmwareEngine.ListExternalAddresses}
510
+ # @!attribute [rw] external_addresses
511
+ # @return [::Array<::Google::Cloud::VmwareEngine::V1::ExternalAddress>]
512
+ # A list of external IP addresses.
513
+ # @!attribute [rw] next_page_token
514
+ # @return [::String]
515
+ # A token, which can be sent as `page_token` to retrieve the next page.
516
+ # If this field is omitted, there are no subsequent pages.
517
+ # @!attribute [rw] unreachable
518
+ # @return [::Array<::String>]
519
+ # Locations that could not be reached when making an aggregated query using
520
+ # wildcards.
521
+ class ListExternalAddressesResponse
522
+ include ::Google::Protobuf::MessageExts
523
+ extend ::Google::Protobuf::MessageExts::ClassMethods
524
+ end
525
+
526
+ # Request message for
527
+ # {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#fetch_network_policy_external_addresses VmwareEngine.FetchNetworkPolicyExternalAddresses}
528
+ # @!attribute [rw] network_policy
529
+ # @return [::String]
530
+ # Required. The resource name of the network policy to query for assigned
531
+ # external IP addresses. Resource names are schemeless URIs that follow the
532
+ # conventions in https://cloud.google.com/apis/design/resource_names. For
533
+ # example:
534
+ # `projects/my-project/locations/us-central1/networkPolicies/my-policy`
535
+ # @!attribute [rw] page_size
536
+ # @return [::Integer]
537
+ # The maximum number of external IP addresses to return in one page.
538
+ # The service may return fewer than this value.
539
+ # The maximum value is coerced to 1000.
540
+ # The default value of this field is 500.
541
+ # @!attribute [rw] page_token
542
+ # @return [::String]
543
+ # A page token, received from a previous
544
+ # `FetchNetworkPolicyExternalAddresses` call. Provide this to retrieve the
545
+ # subsequent page.
546
+ #
547
+ # When paginating, all parameters provided to
548
+ # `FetchNetworkPolicyExternalAddresses`, except for `page_size` and
549
+ # `page_token`, must match the call that provided the page token.
550
+ class FetchNetworkPolicyExternalAddressesRequest
551
+ include ::Google::Protobuf::MessageExts
552
+ extend ::Google::Protobuf::MessageExts::ClassMethods
553
+ end
554
+
555
+ # Response message for
556
+ # {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#fetch_network_policy_external_addresses VmwareEngine.FetchNetworkPolicyExternalAddresses}
557
+ # @!attribute [rw] external_addresses
558
+ # @return [::Array<::Google::Cloud::VmwareEngine::V1::ExternalAddress>]
559
+ # A list of external IP addresses assigned to VMware workload VMs within the
560
+ # scope of the given network policy.
561
+ # @!attribute [rw] next_page_token
562
+ # @return [::String]
563
+ # A token, which can be sent as `page_token` to retrieve the next page.
564
+ # If this field is omitted, there are no subsequent pages.
565
+ class FetchNetworkPolicyExternalAddressesResponse
566
+ include ::Google::Protobuf::MessageExts
567
+ extend ::Google::Protobuf::MessageExts::ClassMethods
568
+ end
569
+
570
+ # Request message for
571
+ # {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#get_external_address VmwareEngine.GetExternalAddress}
572
+ # @!attribute [rw] name
573
+ # @return [::String]
574
+ # Required. The resource name of the external IP address to retrieve.
575
+ # Resource names are schemeless URIs that follow the conventions in
576
+ # https://cloud.google.com/apis/design/resource_names.
577
+ # For example:
578
+ # `projects/my-project/locations/us-central1-a/privateClouds/my-cloud/externalAddresses/my-ip`
579
+ class GetExternalAddressRequest
580
+ include ::Google::Protobuf::MessageExts
581
+ extend ::Google::Protobuf::MessageExts::ClassMethods
582
+ end
583
+
584
+ # Request message for
585
+ # {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#create_external_address VmwareEngine.CreateExternalAddress}
586
+ # @!attribute [rw] parent
587
+ # @return [::String]
588
+ # Required. The resource name of the private cloud
589
+ # to create a new external IP address in.
590
+ # Resource names are schemeless URIs that follow the conventions in
591
+ # https://cloud.google.com/apis/design/resource_names.
592
+ # For example:
593
+ # `projects/my-project/locations/us-central1-a/privateClouds/my-cloud`
594
+ # @!attribute [rw] external_address
595
+ # @return [::Google::Cloud::VmwareEngine::V1::ExternalAddress]
596
+ # Required. The initial description of a new external IP address.
597
+ # @!attribute [rw] external_address_id
598
+ # @return [::String]
599
+ # Required. The user-provided identifier of the `ExternalAddress` to be
600
+ # created. This identifier must be unique among `ExternalAddress` resources
601
+ # within the parent and becomes the final token in the name URI. The
602
+ # identifier must meet the following requirements:
603
+ #
604
+ # * Only contains 1-63 alphanumeric characters and hyphens
605
+ # * Begins with an alphabetical character
606
+ # * Ends with a non-hyphen character
607
+ # * Not formatted as a UUID
608
+ # * Complies with [RFC 1034](https://datatracker.ietf.org/doc/html/rfc1034)
609
+ # (section 3.5)
610
+ # @!attribute [rw] request_id
611
+ # @return [::String]
612
+ # Optional. A request ID to identify requests. Specify a unique request ID
613
+ # so that if you must retry your request, the server will know to ignore
614
+ # the request if it has already been completed. The server guarantees that a
615
+ # request doesn't result in creation of duplicate commitments for at least 60
616
+ # minutes.
617
+ #
618
+ # For example, consider a situation where you make an initial request and the
619
+ # request times out. If you make the request again with the same request ID,
620
+ # the server can check if the original operation with the same request ID was
621
+ # received, and if so, will ignore the second request. This prevents clients
622
+ # from accidentally creating duplicate commitments.
623
+ #
624
+ # The request ID must be a valid UUID with the exception that zero UUID is
625
+ # not supported (00000000-0000-0000-0000-000000000000).
626
+ class CreateExternalAddressRequest
627
+ include ::Google::Protobuf::MessageExts
628
+ extend ::Google::Protobuf::MessageExts::ClassMethods
629
+ end
630
+
631
+ # Request message for
632
+ # {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#update_external_address VmwareEngine.UpdateExternalAddress}
633
+ # @!attribute [rw] update_mask
634
+ # @return [::Google::Protobuf::FieldMask]
635
+ # Required. Field mask is used to specify the fields to be overwritten in the
636
+ # `ExternalAddress` resource by the update.
637
+ # The fields specified in the `update_mask` are relative to the resource, not
638
+ # the full request. A field will be overwritten if it is in the mask. If the
639
+ # user does not provide a mask then all fields will be overwritten.
640
+ # @!attribute [rw] external_address
641
+ # @return [::Google::Cloud::VmwareEngine::V1::ExternalAddress]
642
+ # Required. External IP address description.
643
+ # @!attribute [rw] request_id
644
+ # @return [::String]
645
+ # Optional. A request ID to identify requests. Specify a unique request ID
646
+ # so that if you must retry your request, the server will know to ignore
647
+ # the request if it has already been completed. The server guarantees that a
648
+ # request doesn't result in creation of duplicate commitments for at least 60
649
+ # minutes.
650
+ #
651
+ # For example, consider a situation where you make an initial request and the
652
+ # request times out. If you make the request again with the same request ID,
653
+ # the server can check if the original operation with the same request ID was
654
+ # received, and if so, will ignore the second request. This prevents clients
655
+ # from accidentally creating duplicate commitments.
656
+ #
657
+ # The request ID must be a valid UUID with the exception that zero UUID is
658
+ # not supported (00000000-0000-0000-0000-000000000000).
659
+ class UpdateExternalAddressRequest
660
+ include ::Google::Protobuf::MessageExts
661
+ extend ::Google::Protobuf::MessageExts::ClassMethods
662
+ end
663
+
664
+ # Request message for
665
+ # {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#delete_external_address VmwareEngine.DeleteExternalAddress}
666
+ # @!attribute [rw] name
667
+ # @return [::String]
668
+ # Required. The resource name of the external IP address to delete.
669
+ # Resource names are schemeless URIs that follow the conventions in
670
+ # https://cloud.google.com/apis/design/resource_names.
671
+ # For example:
672
+ # `projects/my-project/locations/us-central1-a/privateClouds/my-cloud/externalAddresses/my-ip`
673
+ # @!attribute [rw] request_id
674
+ # @return [::String]
675
+ # Optional. A request ID to identify requests. Specify a unique request ID
676
+ # so that if you must retry your request, the server will know to ignore
677
+ # the request if it has already been completed. The server guarantees that a
678
+ # request doesn't result in creation of duplicate commitments for at least 60
679
+ # minutes.
680
+ #
681
+ # For example, consider a situation where you make an initial request and the
682
+ # request times out. If you make the request again with the same request
683
+ # ID, the server can check if the original operation with the same request ID
684
+ # was received, and if so, will ignore the second request. This prevents
685
+ # clients from accidentally creating duplicate commitments.
686
+ #
687
+ # The request ID must be a valid UUID with the exception that zero UUID is
688
+ # not supported (00000000-0000-0000-0000-000000000000).
689
+ class DeleteExternalAddressRequest
690
+ include ::Google::Protobuf::MessageExts
691
+ extend ::Google::Protobuf::MessageExts::ClassMethods
692
+ end
693
+
392
694
  # Request message for
393
695
  # {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#list_subnets VmwareEngine.ListSubnets}
394
696
  # @!attribute [rw] parent
@@ -466,6 +768,415 @@ module Google
466
768
  extend ::Google::Protobuf::MessageExts::ClassMethods
467
769
  end
468
770
 
771
+ # Request message for
772
+ # {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#list_external_access_rules VmwareEngine.ListExternalAccessRules}
773
+ # @!attribute [rw] parent
774
+ # @return [::String]
775
+ # Required. The resource name of the network policy to query for external
776
+ # access firewall rules. Resource names are schemeless URIs that follow the
777
+ # conventions in https://cloud.google.com/apis/design/resource_names. For
778
+ # example:
779
+ # `projects/my-project/locations/us-central1/networkPolicies/my-policy`
780
+ # @!attribute [rw] page_size
781
+ # @return [::Integer]
782
+ # The maximum number of external access rules to return in one page.
783
+ # The service may return fewer than this value.
784
+ # The maximum value is coerced to 1000.
785
+ # The default value of this field is 500.
786
+ # @!attribute [rw] page_token
787
+ # @return [::String]
788
+ # A page token, received from a previous `ListExternalAccessRulesRequest`
789
+ # call. Provide this to retrieve the subsequent page.
790
+ #
791
+ # When paginating, all other parameters provided to
792
+ # `ListExternalAccessRulesRequest` must match the call that provided the page
793
+ # token.
794
+ # @!attribute [rw] filter
795
+ # @return [::String]
796
+ # A filter expression that matches resources returned in the response.
797
+ # The expression must specify the field name, a comparison
798
+ # operator, and the value that you want to use for filtering. The value
799
+ # must be a string, a number, or a boolean. The comparison operator
800
+ # must be `=`, `!=`, `>`, or `<`.
801
+ #
802
+ # For example, if you are filtering a list of external access rules, you can
803
+ # exclude the ones named `example-rule` by specifying
804
+ # `name != "example-rule"`.
805
+ #
806
+ # To filter on multiple expressions, provide each separate expression within
807
+ # parentheses. For example:
808
+ # ```
809
+ # (name = "example-rule")
810
+ # (createTime > "2021-04-12T08:15:10.40Z")
811
+ # ```
812
+ #
813
+ # By default, each expression is an `AND` expression. However, you
814
+ # can include `AND` and `OR` expressions explicitly.
815
+ # For example:
816
+ # ```
817
+ # (name = "example-rule-1") AND
818
+ # (createTime > "2021-04-12T08:15:10.40Z") OR
819
+ # (name = "example-rule-2")
820
+ # ```
821
+ # @!attribute [rw] order_by
822
+ # @return [::String]
823
+ # Sorts list results by a certain order. By default, returned results
824
+ # are ordered by `name` in ascending order.
825
+ # You can also sort results in descending order based on the `name` value
826
+ # using `orderBy="name desc"`.
827
+ # Currently, only ordering by `name` is supported.
828
+ class ListExternalAccessRulesRequest
829
+ include ::Google::Protobuf::MessageExts
830
+ extend ::Google::Protobuf::MessageExts::ClassMethods
831
+ end
832
+
833
+ # Response message for
834
+ # {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#list_external_access_rules VmwareEngine.ListExternalAccessRules}
835
+ # @!attribute [rw] external_access_rules
836
+ # @return [::Array<::Google::Cloud::VmwareEngine::V1::ExternalAccessRule>]
837
+ # A list of external access firewall rules.
838
+ # @!attribute [rw] next_page_token
839
+ # @return [::String]
840
+ # A token, which can be sent as `page_token` to retrieve the next page.
841
+ # If this field is omitted, there are no subsequent pages.
842
+ # @!attribute [rw] unreachable
843
+ # @return [::Array<::String>]
844
+ # Locations that could not be reached when making an aggregated query using
845
+ # wildcards.
846
+ class ListExternalAccessRulesResponse
847
+ include ::Google::Protobuf::MessageExts
848
+ extend ::Google::Protobuf::MessageExts::ClassMethods
849
+ end
850
+
851
+ # Request message for
852
+ # {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#get_external_access_rule VmwareEngine.GetExternalAccessRule}
853
+ # @!attribute [rw] name
854
+ # @return [::String]
855
+ # Required. The resource name of the external access firewall rule to
856
+ # retrieve. Resource names are schemeless URIs that follow the conventions in
857
+ # https://cloud.google.com/apis/design/resource_names.
858
+ # For example:
859
+ # `projects/my-project/locations/us-central1/networkPolicies/my-policy/externalAccessRules/my-rule`
860
+ class GetExternalAccessRuleRequest
861
+ include ::Google::Protobuf::MessageExts
862
+ extend ::Google::Protobuf::MessageExts::ClassMethods
863
+ end
864
+
865
+ # Request message for
866
+ # {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#create_external_access_rule VmwareEngine.CreateExternalAccessRule}
867
+ # @!attribute [rw] parent
868
+ # @return [::String]
869
+ # Required. The resource name of the network policy
870
+ # to create a new external access firewall rule in.
871
+ # Resource names are schemeless URIs that follow the conventions in
872
+ # https://cloud.google.com/apis/design/resource_names.
873
+ # For example:
874
+ # `projects/my-project/locations/us-central1/networkPolicies/my-policy`
875
+ # @!attribute [rw] external_access_rule
876
+ # @return [::Google::Cloud::VmwareEngine::V1::ExternalAccessRule]
877
+ # Required. The initial description of a new external access rule.
878
+ # @!attribute [rw] external_access_rule_id
879
+ # @return [::String]
880
+ # Required. The user-provided identifier of the `ExternalAccessRule` to be
881
+ # created. This identifier must be unique among `ExternalAccessRule`
882
+ # resources within the parent and becomes the final token in the name URI.
883
+ # The identifier must meet the following requirements:
884
+ #
885
+ # * Only contains 1-63 alphanumeric characters and hyphens
886
+ # * Begins with an alphabetical character
887
+ # * Ends with a non-hyphen character
888
+ # * Not formatted as a UUID
889
+ # * Complies with [RFC 1034](https://datatracker.ietf.org/doc/html/rfc1034)
890
+ # (section 3.5)
891
+ # @!attribute [rw] request_id
892
+ # @return [::String]
893
+ # A request ID to identify requests. Specify a unique request ID
894
+ # so that if you must retry your request, the server will know to ignore
895
+ # the request if it has already been completed. The server guarantees that a
896
+ # request doesn't result in creation of duplicate commitments for at least 60
897
+ # minutes.
898
+ #
899
+ # For example, consider a situation where you make an initial request and the
900
+ # request times out. If you make the request again with the same request ID,
901
+ # the server can check if the original operation with the same request ID was
902
+ # received, and if so, will ignore the second request. This prevents clients
903
+ # from accidentally creating duplicate commitments.
904
+ #
905
+ # The request ID must be a valid UUID with the exception that zero UUID is
906
+ # not supported (00000000-0000-0000-0000-000000000000).
907
+ class CreateExternalAccessRuleRequest
908
+ include ::Google::Protobuf::MessageExts
909
+ extend ::Google::Protobuf::MessageExts::ClassMethods
910
+ end
911
+
912
+ # Request message for
913
+ # {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#update_external_access_rule VmwareEngine.UpdateExternalAccessRule}
914
+ # @!attribute [rw] update_mask
915
+ # @return [::Google::Protobuf::FieldMask]
916
+ # Required. Field mask is used to specify the fields to be overwritten in the
917
+ # `ExternalAccessRule` resource by the update.
918
+ # The fields specified in the `update_mask` are relative to the resource, not
919
+ # the full request. A field will be overwritten if it is in the mask. If the
920
+ # user does not provide a mask then all fields will be overwritten.
921
+ # @!attribute [rw] external_access_rule
922
+ # @return [::Google::Cloud::VmwareEngine::V1::ExternalAccessRule]
923
+ # Required. Description of the external access rule.
924
+ # @!attribute [rw] request_id
925
+ # @return [::String]
926
+ # Optional. A request ID to identify requests. Specify a unique request ID
927
+ # so that if you must retry your request, the server will know to ignore
928
+ # the request if it has already been completed. The server guarantees that a
929
+ # request doesn't result in creation of duplicate commitments for at least 60
930
+ # minutes.
931
+ #
932
+ # For example, consider a situation where you make an initial request and the
933
+ # request times out. If you make the request again with the same request ID,
934
+ # the server can check if the original operation with the same request ID was
935
+ # received, and if so, will ignore the second request. This prevents clients
936
+ # from accidentally creating duplicate commitments.
937
+ #
938
+ # The request ID must be a valid UUID with the exception that zero UUID is
939
+ # not supported (00000000-0000-0000-0000-000000000000).
940
+ class UpdateExternalAccessRuleRequest
941
+ include ::Google::Protobuf::MessageExts
942
+ extend ::Google::Protobuf::MessageExts::ClassMethods
943
+ end
944
+
945
+ # Request message for
946
+ # {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#delete_external_access_rule VmwareEngine.DeleteExternalAccessRule}
947
+ # @!attribute [rw] name
948
+ # @return [::String]
949
+ # Required. The resource name of the external access firewall rule to delete.
950
+ # Resource names are schemeless URIs that follow the conventions in
951
+ # https://cloud.google.com/apis/design/resource_names.
952
+ # For example:
953
+ # `projects/my-project/locations/us-central1/networkPolicies/my-policy/externalAccessRules/my-rule`
954
+ # @!attribute [rw] request_id
955
+ # @return [::String]
956
+ # Optional. A request ID to identify requests. Specify a unique request ID
957
+ # so that if you must retry your request, the server will know to ignore
958
+ # the request if it has already been completed. The server guarantees that a
959
+ # request doesn't result in creation of duplicate commitments for at least 60
960
+ # minutes.
961
+ #
962
+ # For example, consider a situation where you make an initial request and the
963
+ # request times out. If you make the request again with the same request
964
+ # ID, the server can check if the original operation with the same request ID
965
+ # was received, and if so, will ignore the second request. This prevents
966
+ # clients from accidentally creating duplicate commitments.
967
+ #
968
+ # The request ID must be a valid UUID with the exception that zero UUID is
969
+ # not supported (00000000-0000-0000-0000-000000000000).
970
+ class DeleteExternalAccessRuleRequest
971
+ include ::Google::Protobuf::MessageExts
972
+ extend ::Google::Protobuf::MessageExts::ClassMethods
973
+ end
974
+
975
+ # Request message for
976
+ # {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#list_logging_servers VmwareEngine.ListLoggingServers}
977
+ # @!attribute [rw] parent
978
+ # @return [::String]
979
+ # Required. The resource name of the private cloud to be queried for
980
+ # logging servers.
981
+ # Resource names are schemeless URIs that follow the conventions in
982
+ # https://cloud.google.com/apis/design/resource_names.
983
+ # For example:
984
+ # `projects/my-project/locations/us-central1-a/privateClouds/my-cloud`
985
+ # @!attribute [rw] page_size
986
+ # @return [::Integer]
987
+ # The maximum number of logging servers to return in one page.
988
+ # The service may return fewer than this value.
989
+ # The maximum value is coerced to 1000.
990
+ # The default value of this field is 500.
991
+ # @!attribute [rw] page_token
992
+ # @return [::String]
993
+ # A page token, received from a previous `ListLoggingServersRequest` call.
994
+ # Provide this to retrieve the subsequent page.
995
+ #
996
+ # When paginating, all other parameters provided to
997
+ # `ListLoggingServersRequest` must match the call that provided the page
998
+ # token.
999
+ # @!attribute [rw] filter
1000
+ # @return [::String]
1001
+ # A filter expression that matches resources returned in the response.
1002
+ # The expression must specify the field name, a comparison
1003
+ # operator, and the value that you want to use for filtering. The value
1004
+ # must be a string, a number, or a boolean. The comparison operator
1005
+ # must be `=`, `!=`, `>`, or `<`.
1006
+ #
1007
+ # For example, if you are filtering a list of logging servers, you can
1008
+ # exclude the ones named `example-server` by specifying
1009
+ # `name != "example-server"`.
1010
+ #
1011
+ # To filter on multiple expressions, provide each separate expression within
1012
+ # parentheses. For example:
1013
+ # ```
1014
+ # (name = "example-server")
1015
+ # (createTime > "2021-04-12T08:15:10.40Z")
1016
+ # ```
1017
+ #
1018
+ # By default, each expression is an `AND` expression. However, you
1019
+ # can include `AND` and `OR` expressions explicitly.
1020
+ # For example:
1021
+ # ```
1022
+ # (name = "example-server-1") AND
1023
+ # (createTime > "2021-04-12T08:15:10.40Z") OR
1024
+ # (name = "example-server-2")
1025
+ # ```
1026
+ # @!attribute [rw] order_by
1027
+ # @return [::String]
1028
+ # Sorts list results by a certain order. By default, returned results
1029
+ # are ordered by `name` in ascending order.
1030
+ # You can also sort results in descending order based on the `name` value
1031
+ # using `orderBy="name desc"`.
1032
+ # Currently, only ordering by `name` is supported.
1033
+ class ListLoggingServersRequest
1034
+ include ::Google::Protobuf::MessageExts
1035
+ extend ::Google::Protobuf::MessageExts::ClassMethods
1036
+ end
1037
+
1038
+ # Response message for
1039
+ # {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#list_logging_servers VmwareEngine.ListLoggingServers}
1040
+ # @!attribute [rw] logging_servers
1041
+ # @return [::Array<::Google::Cloud::VmwareEngine::V1::LoggingServer>]
1042
+ # A list of Logging Servers.
1043
+ # @!attribute [rw] next_page_token
1044
+ # @return [::String]
1045
+ # A token, which can be send as `page_token` to retrieve the next page.
1046
+ # If this field is omitted, there are no subsequent pages.
1047
+ # @!attribute [rw] unreachable
1048
+ # @return [::Array<::String>]
1049
+ # Locations that could not be reached when making an aggregated query using
1050
+ # wildcards.
1051
+ class ListLoggingServersResponse
1052
+ include ::Google::Protobuf::MessageExts
1053
+ extend ::Google::Protobuf::MessageExts::ClassMethods
1054
+ end
1055
+
1056
+ # Request message for
1057
+ # {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#get_logging_server VmwareEngine.GetLoggingServer}
1058
+ # @!attribute [rw] name
1059
+ # @return [::String]
1060
+ # Required. The resource name of the Logging Server to retrieve.
1061
+ # Resource names are schemeless URIs that follow the conventions in
1062
+ # https://cloud.google.com/apis/design/resource_names.
1063
+ # For example:
1064
+ # `projects/my-project/locations/us-central1-a/privateClouds/my-cloud/loggingServers/my-logging-server`
1065
+ class GetLoggingServerRequest
1066
+ include ::Google::Protobuf::MessageExts
1067
+ extend ::Google::Protobuf::MessageExts::ClassMethods
1068
+ end
1069
+
1070
+ # Request message for
1071
+ # {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#create_logging_server VmwareEngine.CreateLoggingServer}
1072
+ # @!attribute [rw] parent
1073
+ # @return [::String]
1074
+ # Required. The resource name of the private cloud
1075
+ # to create a new Logging Server in.
1076
+ # Resource names are schemeless URIs that follow the conventions in
1077
+ # https://cloud.google.com/apis/design/resource_names.
1078
+ # For example:
1079
+ # `projects/my-project/locations/us-central1-a/privateClouds/my-cloud`
1080
+ # @!attribute [rw] logging_server
1081
+ # @return [::Google::Cloud::VmwareEngine::V1::LoggingServer]
1082
+ # Required. The initial description of a new logging server.
1083
+ # @!attribute [rw] logging_server_id
1084
+ # @return [::String]
1085
+ # Required. The user-provided identifier of the `LoggingServer` to be
1086
+ # created. This identifier must be unique among `LoggingServer` resources
1087
+ # within the parent and becomes the final token in the name URI.
1088
+ # The identifier must meet the following requirements:
1089
+ #
1090
+ # * Only contains 1-63 alphanumeric characters and hyphens
1091
+ # * Begins with an alphabetical character
1092
+ # * Ends with a non-hyphen character
1093
+ # * Not formatted as a UUID
1094
+ # * Complies with [RFC 1034](https://datatracker.ietf.org/doc/html/rfc1034)
1095
+ # (section 3.5)
1096
+ # @!attribute [rw] request_id
1097
+ # @return [::String]
1098
+ # Optional. A request ID to identify requests. Specify a unique request ID
1099
+ # so that if you must retry your request, the server will know to ignore
1100
+ # the request if it has already been completed. The server guarantees that a
1101
+ # request doesn't result in creation of duplicate commitments for at least 60
1102
+ # minutes.
1103
+ #
1104
+ # For example, consider a situation where you make an initial request and the
1105
+ # request times out. If you make the request again with the same request ID,
1106
+ # the server can check if original operation with the same request ID was
1107
+ # received, and if so, will ignore the second request. This prevents clients
1108
+ # from accidentally creating duplicate commitments.
1109
+ #
1110
+ # The request ID must be a valid UUID with the exception that zero UUID is
1111
+ # not supported (00000000-0000-0000-0000-000000000000).
1112
+ class CreateLoggingServerRequest
1113
+ include ::Google::Protobuf::MessageExts
1114
+ extend ::Google::Protobuf::MessageExts::ClassMethods
1115
+ end
1116
+
1117
+ # Request message for
1118
+ # {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#update_logging_server VmwareEngine.UpdateLoggingServer}
1119
+ # @!attribute [rw] update_mask
1120
+ # @return [::Google::Protobuf::FieldMask]
1121
+ # Required. Field mask is used to specify the fields to be overwritten in the
1122
+ # `LoggingServer` resource by the update.
1123
+ # The fields specified in the `update_mask` are relative to the resource, not
1124
+ # the full request. A field will be overwritten if it is in the mask. If the
1125
+ # user does not provide a mask then all fields will be overwritten.
1126
+ # @!attribute [rw] logging_server
1127
+ # @return [::Google::Cloud::VmwareEngine::V1::LoggingServer]
1128
+ # Required. Logging server description.
1129
+ # @!attribute [rw] request_id
1130
+ # @return [::String]
1131
+ # Optional. A request ID to identify requests. Specify a unique request ID
1132
+ # so that if you must retry your request, the server will know to ignore
1133
+ # the request if it has already been completed. The server guarantees that a
1134
+ # request doesn't result in creation of duplicate commitments for at least 60
1135
+ # minutes.
1136
+ #
1137
+ # For example, consider a situation where you make an initial request and the
1138
+ # request times out. If you make the request again with the same request ID,
1139
+ # the server can check if original operation with the same request ID was
1140
+ # received, and if so, will ignore the second request. This prevents clients
1141
+ # from accidentally creating duplicate commitments.
1142
+ #
1143
+ # The request ID must be a valid UUID with the exception that zero UUID is
1144
+ # not supported (00000000-0000-0000-0000-000000000000).
1145
+ class UpdateLoggingServerRequest
1146
+ include ::Google::Protobuf::MessageExts
1147
+ extend ::Google::Protobuf::MessageExts::ClassMethods
1148
+ end
1149
+
1150
+ # Request message for
1151
+ # {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#delete_logging_server VmwareEngine.DeleteLoggingServer}
1152
+ # @!attribute [rw] name
1153
+ # @return [::String]
1154
+ # Required. The resource name of the logging server to delete.
1155
+ # Resource names are schemeless URIs that follow the conventions in
1156
+ # https://cloud.google.com/apis/design/resource_names.
1157
+ # For example:
1158
+ # `projects/my-project/locations/us-central1-a/privateClouds/my-cloud/loggingServers/my-logging-server`
1159
+ # @!attribute [rw] request_id
1160
+ # @return [::String]
1161
+ # Optional. A request ID to identify requests. Specify a unique request ID
1162
+ # so that if you must retry your request, the server will know to ignore
1163
+ # the request if it has already been completed. The server guarantees that a
1164
+ # request doesn't result in creation of duplicate commitments for at least 60
1165
+ # minutes.
1166
+ #
1167
+ # For example, consider a situation where you make an initial request and the
1168
+ # request times out. If you make the request again with the same request
1169
+ # ID, the server can check if original operation with the same request ID
1170
+ # was received, and if so, will ignore the second request. This prevents
1171
+ # clients from accidentally creating duplicate commitments.
1172
+ #
1173
+ # The request ID must be a valid UUID with the exception that zero UUID is
1174
+ # not supported (00000000-0000-0000-0000-000000000000).
1175
+ class DeleteLoggingServerRequest
1176
+ include ::Google::Protobuf::MessageExts
1177
+ extend ::Google::Protobuf::MessageExts::ClassMethods
1178
+ end
1179
+
469
1180
  # Represents the metadata of the long-running operation.
470
1181
  # @!attribute [r] create_time
471
1182
  # @return [::Google::Protobuf::Timestamp]
@@ -609,6 +1320,18 @@ module Google
609
1320
  # https://cloud.google.com/apis/design/resource_names.
610
1321
  # For example:
611
1322
  # `projects/my-project/locations/us-central1-a/privateClouds/my-cloud`
1323
+ # @!attribute [rw] username
1324
+ # @return [::String]
1325
+ # Optional. The username of the user to be queried for credentials.
1326
+ # The default value of this field is CloudOwner@gve.local.
1327
+ # The provided value must be one of the following:
1328
+ # CloudOwner@gve.local,
1329
+ # solution-user-01@gve.local,
1330
+ # solution-user-02@gve.local,
1331
+ # solution-user-03@gve.local,
1332
+ # solution-user-04@gve.local,
1333
+ # solution-user-05@gve.local,
1334
+ # zertoadmin@gve.local.
612
1335
  class ShowVcenterCredentialsRequest
613
1336
  include ::Google::Protobuf::MessageExts
614
1337
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -671,6 +1394,17 @@ module Google
671
1394
  #
672
1395
  # The request ID must be a valid UUID with the exception that zero UUID is
673
1396
  # not supported (00000000-0000-0000-0000-000000000000).
1397
+ # @!attribute [rw] username
1398
+ # @return [::String]
1399
+ # Optional. The username of the user to be to reset the credentials.
1400
+ # The default value of this field is CloudOwner@gve.local.
1401
+ # The provided value should be one of the following:
1402
+ # solution-user-01@gve.local,
1403
+ # solution-user-02@gve.local,
1404
+ # solution-user-03@gve.local,
1405
+ # solution-user-04@gve.local,
1406
+ # solution-user-05@gve.local,
1407
+ # zertoadmin@gve.local.
674
1408
  class ResetVcenterCredentialsRequest
675
1409
  include ::Google::Protobuf::MessageExts
676
1410
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -764,21 +1498,314 @@ module Google
764
1498
  # (section 3.5)
765
1499
  # @!attribute [rw] request_id
766
1500
  # @return [::String]
767
- # A request ID to identify requests. Specify a unique request ID
768
- # so that if you must retry your request, the server will know to ignore
769
- # the request if it has already been completed. The server guarantees that a
770
- # request doesn't result in creation of duplicate commitments for at least 60
771
- # minutes.
772
- #
773
- # For example, consider a situation where you make an initial request and the
774
- # request times out. If you make the request again with the same request ID,
775
- # the server can check if original operation with the same request ID was
776
- # received, and if so, will ignore the second request. This prevents clients
777
- # from accidentally creating duplicate commitments.
778
- #
779
- # The request ID must be a valid UUID with the exception that zero UUID is
780
- # not supported (00000000-0000-0000-0000-000000000000).
781
- class CreateHcxActivationKeyRequest
1501
+ # A request ID to identify requests. Specify a unique request ID
1502
+ # so that if you must retry your request, the server will know to ignore
1503
+ # the request if it has already been completed. The server guarantees that a
1504
+ # request doesn't result in creation of duplicate commitments for at least 60
1505
+ # minutes.
1506
+ #
1507
+ # For example, consider a situation where you make an initial request and the
1508
+ # request times out. If you make the request again with the same request ID,
1509
+ # the server can check if original operation with the same request ID was
1510
+ # received, and if so, will ignore the second request. This prevents clients
1511
+ # from accidentally creating duplicate commitments.
1512
+ #
1513
+ # The request ID must be a valid UUID with the exception that zero UUID is
1514
+ # not supported (00000000-0000-0000-0000-000000000000).
1515
+ class CreateHcxActivationKeyRequest
1516
+ include ::Google::Protobuf::MessageExts
1517
+ extend ::Google::Protobuf::MessageExts::ClassMethods
1518
+ end
1519
+
1520
+ # Request message for
1521
+ # {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#get_dns_forwarding VmwareEngine.GetDnsForwarding}
1522
+ # @!attribute [rw] name
1523
+ # @return [::String]
1524
+ # Required. The resource name of a `DnsForwarding` to retrieve.
1525
+ # Resource names are schemeless URIs that follow the conventions in
1526
+ # https://cloud.google.com/apis/design/resource_names.
1527
+ # For example:
1528
+ # `projects/my-project/locations/us-central1-a/privateClouds/my-cloud/dnsForwarding`
1529
+ class GetDnsForwardingRequest
1530
+ include ::Google::Protobuf::MessageExts
1531
+ extend ::Google::Protobuf::MessageExts::ClassMethods
1532
+ end
1533
+
1534
+ # Request message for
1535
+ # {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#update_dns_forwarding VmwareEngine.UpdateDnsForwarding}
1536
+ # @!attribute [rw] dns_forwarding
1537
+ # @return [::Google::Cloud::VmwareEngine::V1::DnsForwarding]
1538
+ # Required. DnsForwarding config details.
1539
+ # @!attribute [rw] update_mask
1540
+ # @return [::Google::Protobuf::FieldMask]
1541
+ # Required. Field mask is used to specify the fields to be overwritten in the
1542
+ # `DnsForwarding` resource by the update.
1543
+ # The fields specified in the `update_mask` are relative to the resource, not
1544
+ # the full request. A field will be overwritten if it is in the mask. If the
1545
+ # user does not provide a mask then all fields will be overwritten.
1546
+ # @!attribute [rw] request_id
1547
+ # @return [::String]
1548
+ # Optional. A request ID to identify requests. Specify a unique request ID
1549
+ # so that if you must retry your request, the server will know to ignore
1550
+ # the request if it has already been completed. The server guarantees that a
1551
+ # request doesn't result in creation of duplicate commitments for at least 60
1552
+ # minutes.
1553
+ #
1554
+ # For example, consider a situation where you make an initial request and the
1555
+ # request times out. If you make the request again with the same request ID,
1556
+ # the server can check if original operation with the same request ID was
1557
+ # received, and if so, will ignore the second request. This prevents clients
1558
+ # from accidentally creating duplicate commitments.
1559
+ #
1560
+ # The request ID must be a valid UUID with the exception that zero UUID is
1561
+ # not supported (00000000-0000-0000-0000-000000000000).
1562
+ class UpdateDnsForwardingRequest
1563
+ include ::Google::Protobuf::MessageExts
1564
+ extend ::Google::Protobuf::MessageExts::ClassMethods
1565
+ end
1566
+
1567
+ # Request message for
1568
+ # {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#create_network_peering VmwareEngine.CreateNetworkPeering}
1569
+ # @!attribute [rw] parent
1570
+ # @return [::String]
1571
+ # Required. The resource name of the location to create the new network
1572
+ # peering in. This value is always `global`, because `NetworkPeering` is a
1573
+ # global resource. Resource names are schemeless URIs that follow the
1574
+ # conventions in https://cloud.google.com/apis/design/resource_names. For
1575
+ # example: `projects/my-project/locations/global`
1576
+ # @!attribute [rw] network_peering_id
1577
+ # @return [::String]
1578
+ # Required. The user-provided identifier of the new `NetworkPeering`.
1579
+ # This identifier must be unique among `NetworkPeering` resources within the
1580
+ # parent and becomes the final token in the name URI.
1581
+ # The identifier must meet the following requirements:
1582
+ #
1583
+ # * Only contains 1-63 alphanumeric characters and hyphens
1584
+ # * Begins with an alphabetical character
1585
+ # * Ends with a non-hyphen character
1586
+ # * Not formatted as a UUID
1587
+ # * Complies with [RFC 1034](https://datatracker.ietf.org/doc/html/rfc1034)
1588
+ # (section 3.5)
1589
+ # @!attribute [rw] network_peering
1590
+ # @return [::Google::Cloud::VmwareEngine::V1::NetworkPeering]
1591
+ # Required. The initial description of the new network peering.
1592
+ # @!attribute [rw] request_id
1593
+ # @return [::String]
1594
+ # Optional. A request ID to identify requests. Specify a unique request ID
1595
+ # so that if you must retry your request, the server will know to ignore
1596
+ # the request if it has already been completed. The server guarantees that a
1597
+ # request doesn't result in creation of duplicate commitments for at least 60
1598
+ # minutes.
1599
+ #
1600
+ # For example, consider a situation where you make an initial request and the
1601
+ # request times out. If you make the request again with the same request
1602
+ # ID, the server can check if original operation with the same request ID
1603
+ # was received, and if so, will ignore the second request. This prevents
1604
+ # clients from accidentally creating duplicate commitments.
1605
+ #
1606
+ # The request ID must be a valid UUID with the exception that zero UUID is
1607
+ # not supported (00000000-0000-0000-0000-000000000000).
1608
+ class CreateNetworkPeeringRequest
1609
+ include ::Google::Protobuf::MessageExts
1610
+ extend ::Google::Protobuf::MessageExts::ClassMethods
1611
+ end
1612
+
1613
+ # Request message for
1614
+ # {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#delete_network_peering VmwareEngine.DeleteNetworkPeering}
1615
+ # @!attribute [rw] name
1616
+ # @return [::String]
1617
+ # Required. The resource name of the network peering to be deleted.
1618
+ # Resource names are schemeless URIs that follow the conventions in
1619
+ # https://cloud.google.com/apis/design/resource_names.
1620
+ # For example:
1621
+ # `projects/my-project/locations/global/networkPeerings/my-peering`
1622
+ # @!attribute [rw] request_id
1623
+ # @return [::String]
1624
+ # Optional. A request ID to identify requests. Specify a unique request ID
1625
+ # so that if you must retry your request, the server will know to ignore
1626
+ # the request if it has already been completed. The server guarantees that a
1627
+ # request doesn't result in creation of duplicate commitments for at least 60
1628
+ # minutes.
1629
+ #
1630
+ # For example, consider a situation where you make an initial request and the
1631
+ # request times out. If you make the request again with the same request
1632
+ # ID, the server can check if original operation with the same request ID
1633
+ # was received, and if so, will ignore the second request. This prevents
1634
+ # clients from accidentally creating duplicate commitments.
1635
+ #
1636
+ # The request ID must be a valid UUID with the exception that zero UUID is
1637
+ # not supported (00000000-0000-0000-0000-000000000000).
1638
+ class DeleteNetworkPeeringRequest
1639
+ include ::Google::Protobuf::MessageExts
1640
+ extend ::Google::Protobuf::MessageExts::ClassMethods
1641
+ end
1642
+
1643
+ # Request message for
1644
+ # {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#get_network_peering VmwareEngine.GetNetworkPeering}
1645
+ # @!attribute [rw] name
1646
+ # @return [::String]
1647
+ # Required. The resource name of the network peering to retrieve.
1648
+ # Resource names are schemeless URIs that follow the conventions in
1649
+ # https://cloud.google.com/apis/design/resource_names.
1650
+ # For example:
1651
+ # `projects/my-project/locations/global/networkPeerings/my-peering`
1652
+ class GetNetworkPeeringRequest
1653
+ include ::Google::Protobuf::MessageExts
1654
+ extend ::Google::Protobuf::MessageExts::ClassMethods
1655
+ end
1656
+
1657
+ # Request message for
1658
+ # {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#list_network_peerings VmwareEngine.ListNetworkPeerings}
1659
+ # @!attribute [rw] parent
1660
+ # @return [::String]
1661
+ # Required. The resource name of the location (global) to query for
1662
+ # network peerings. Resource names are schemeless URIs that follow the
1663
+ # conventions in https://cloud.google.com/apis/design/resource_names. For
1664
+ # example: `projects/my-project/locations/global`
1665
+ # @!attribute [rw] page_size
1666
+ # @return [::Integer]
1667
+ # The maximum number of network peerings to return in one page.
1668
+ # The maximum value is coerced to 1000.
1669
+ # The default value of this field is 500.
1670
+ # @!attribute [rw] page_token
1671
+ # @return [::String]
1672
+ # A page token, received from a previous `ListNetworkPeerings` call.
1673
+ # Provide this to retrieve the subsequent page.
1674
+ #
1675
+ # When paginating, all other parameters provided to
1676
+ # `ListNetworkPeerings` must match the call that provided the page
1677
+ # token.
1678
+ # @!attribute [rw] filter
1679
+ # @return [::String]
1680
+ # A filter expression that matches resources returned in the response.
1681
+ # The expression must specify the field name, a comparison
1682
+ # operator, and the value that you want to use for filtering. The value
1683
+ # must be a string, a number, or a boolean. The comparison operator
1684
+ # must be `=`, `!=`, `>`, or `<`.
1685
+ #
1686
+ # For example, if you are filtering a list of network peerings, you can
1687
+ # exclude the ones named `example-peering` by specifying
1688
+ # `name != "example-peering"`.
1689
+ #
1690
+ # To filter on multiple expressions, provide each separate expression within
1691
+ # parentheses. For example:
1692
+ # ```
1693
+ # (name = "example-peering")
1694
+ # (createTime > "2021-04-12T08:15:10.40Z")
1695
+ # ```
1696
+ #
1697
+ # By default, each expression is an `AND` expression. However, you
1698
+ # can include `AND` and `OR` expressions explicitly.
1699
+ # For example:
1700
+ # ```
1701
+ # (name = "example-peering-1") AND
1702
+ # (createTime > "2021-04-12T08:15:10.40Z") OR
1703
+ # (name = "example-peering-2")
1704
+ # ```
1705
+ # @!attribute [rw] order_by
1706
+ # @return [::String]
1707
+ # Sorts list results by a certain order. By default, returned results
1708
+ # are ordered by `name` in ascending order.
1709
+ # You can also sort results in descending order based on the `name` value
1710
+ # using `orderBy="name desc"`.
1711
+ # Currently, only ordering by `name` is supported.
1712
+ class ListNetworkPeeringsRequest
1713
+ include ::Google::Protobuf::MessageExts
1714
+ extend ::Google::Protobuf::MessageExts::ClassMethods
1715
+ end
1716
+
1717
+ # Request message for
1718
+ # {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#update_network_peering VmwareEngine.UpdateNetworkPeering}
1719
+ # @!attribute [rw] network_peering
1720
+ # @return [::Google::Cloud::VmwareEngine::V1::NetworkPeering]
1721
+ # Required. Network peering description.
1722
+ # @!attribute [rw] update_mask
1723
+ # @return [::Google::Protobuf::FieldMask]
1724
+ # Required. Field mask is used to specify the fields to be overwritten in the
1725
+ # `NetworkPeering` resource by the update.
1726
+ # The fields specified in the `update_mask` are relative to the resource, not
1727
+ # the full request. A field will be overwritten if it is in the mask. If the
1728
+ # user does not provide a mask then all fields will be overwritten.
1729
+ # @!attribute [rw] request_id
1730
+ # @return [::String]
1731
+ # Optional. A request ID to identify requests. Specify a unique request ID
1732
+ # so that if you must retry your request, the server will know to ignore
1733
+ # the request if it has already been completed. The server guarantees that a
1734
+ # request doesn't result in creation of duplicate commitments for at least 60
1735
+ # minutes.
1736
+ #
1737
+ # For example, consider a situation where you make an initial request and the
1738
+ # request times out. If you make the request again with the same request
1739
+ # ID, the server can check if original operation with the same request ID
1740
+ # was received, and if so, will ignore the second request. This prevents
1741
+ # clients from accidentally creating duplicate commitments.
1742
+ #
1743
+ # The request ID must be a valid UUID with the exception that zero UUID is
1744
+ # not supported (00000000-0000-0000-0000-000000000000).
1745
+ class UpdateNetworkPeeringRequest
1746
+ include ::Google::Protobuf::MessageExts
1747
+ extend ::Google::Protobuf::MessageExts::ClassMethods
1748
+ end
1749
+
1750
+ # Response message for
1751
+ # {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#list_network_peerings VmwareEngine.ListNetworkPeerings}
1752
+ # @!attribute [rw] network_peerings
1753
+ # @return [::Array<::Google::Cloud::VmwareEngine::V1::NetworkPeering>]
1754
+ # A list of network peerings.
1755
+ # @!attribute [rw] next_page_token
1756
+ # @return [::String]
1757
+ # A token, which can be sent as `page_token` to retrieve the next page.
1758
+ # If this field is omitted, there are no subsequent pages.
1759
+ # @!attribute [rw] unreachable
1760
+ # @return [::Array<::String>]
1761
+ # Unreachable resources.
1762
+ class ListNetworkPeeringsResponse
1763
+ include ::Google::Protobuf::MessageExts
1764
+ extend ::Google::Protobuf::MessageExts::ClassMethods
1765
+ end
1766
+
1767
+ # Request message for
1768
+ # {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#list_peering_routes VmwareEngine.ListPeeringRoutes}
1769
+ # @!attribute [rw] parent
1770
+ # @return [::String]
1771
+ # Required. The resource name of the network peering to retrieve peering
1772
+ # routes from. Resource names are schemeless URIs that follow the conventions
1773
+ # in https://cloud.google.com/apis/design/resource_names. For example:
1774
+ # `projects/my-project/locations/global/networkPeerings/my-peering`
1775
+ # @!attribute [rw] page_size
1776
+ # @return [::Integer]
1777
+ # The maximum number of peering routes to return in one page.
1778
+ # The service may return fewer than this value.
1779
+ # The maximum value is coerced to 1000.
1780
+ # The default value of this field is 500.
1781
+ # @!attribute [rw] page_token
1782
+ # @return [::String]
1783
+ # A page token, received from a previous `ListPeeringRoutes` call.
1784
+ # Provide this to retrieve the subsequent page.
1785
+ # When paginating, all other parameters provided to `ListPeeringRoutes` must
1786
+ # match the call that provided the page token.
1787
+ # @!attribute [rw] filter
1788
+ # @return [::String]
1789
+ # A filter expression that matches resources returned in the response.
1790
+ # Currently, only filtering on the `direction` field is supported. To return
1791
+ # routes imported from the peer network, provide "direction=INCOMING". To
1792
+ # return routes exported from the VMware Engine network, provide
1793
+ # "direction=OUTGOING". Other filter expressions return an error.
1794
+ class ListPeeringRoutesRequest
1795
+ include ::Google::Protobuf::MessageExts
1796
+ extend ::Google::Protobuf::MessageExts::ClassMethods
1797
+ end
1798
+
1799
+ # Response message for
1800
+ # {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#list_peering_routes VmwareEngine.ListPeeringRoutes}
1801
+ # @!attribute [rw] peering_routes
1802
+ # @return [::Array<::Google::Cloud::VmwareEngine::V1::PeeringRoute>]
1803
+ # A list of peering routes.
1804
+ # @!attribute [rw] next_page_token
1805
+ # @return [::String]
1806
+ # A token, which can be sent as `page_token` to retrieve the next page.
1807
+ # If this field is omitted, there are no subsequent pages.
1808
+ class ListPeeringRoutesResponse
782
1809
  include ::Google::Protobuf::MessageExts
783
1810
  extend ::Google::Protobuf::MessageExts::ClassMethods
784
1811
  end
@@ -987,6 +2014,240 @@ module Google
987
2014
  extend ::Google::Protobuf::MessageExts::ClassMethods
988
2015
  end
989
2016
 
2017
+ # Request message for
2018
+ # {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#list_management_dns_zone_bindings VmwareEngine.ListManagementDnsZoneBindings}
2019
+ # @!attribute [rw] parent
2020
+ # @return [::String]
2021
+ # Required. The resource name of the private cloud to be queried for
2022
+ # management DNS zone bindings.
2023
+ # Resource names are schemeless URIs that follow the conventions in
2024
+ # https://cloud.google.com/apis/design/resource_names.
2025
+ # For example:
2026
+ # `projects/my-project/locations/us-central1-a/privateClouds/my-cloud`
2027
+ # @!attribute [rw] page_size
2028
+ # @return [::Integer]
2029
+ # The maximum number of management DNS zone bindings to return in one page.
2030
+ # The service may return fewer than this value.
2031
+ # The maximum value is coerced to 1000.
2032
+ # The default value of this field is 500.
2033
+ # @!attribute [rw] page_token
2034
+ # @return [::String]
2035
+ # A page token, received from a previous `ListManagementDnsZoneBindings`
2036
+ # call. Provide this to retrieve the subsequent page.
2037
+ #
2038
+ # When paginating, all other parameters provided to
2039
+ # `ListManagementDnsZoneBindings` must match the call that provided the page
2040
+ # token.
2041
+ # @!attribute [rw] filter
2042
+ # @return [::String]
2043
+ # A filter expression that matches resources returned in the response.
2044
+ # The expression must specify the field name, a comparison
2045
+ # operator, and the value that you want to use for filtering. The value
2046
+ # must be a string, a number, or a boolean. The comparison operator
2047
+ # must be `=`, `!=`, `>`, or `<`.
2048
+ #
2049
+ # For example, if you are filtering a list of Management DNS Zone Bindings,
2050
+ # you can exclude the ones named `example-management-dns-zone-binding` by
2051
+ # specifying `name != "example-management-dns-zone-binding"`.
2052
+ #
2053
+ # To filter on multiple expressions, provide each separate expression within
2054
+ # parentheses. For example:
2055
+ # ```
2056
+ # (name = "example-management-dns-zone-binding")
2057
+ # (createTime > "2021-04-12T08:15:10.40Z")
2058
+ # ```
2059
+ #
2060
+ # By default, each expression is an `AND` expression. However, you
2061
+ # can include `AND` and `OR` expressions explicitly.
2062
+ # For example:
2063
+ # ```
2064
+ # (name = "example-management-dns-zone-binding-1") AND
2065
+ # (createTime > "2021-04-12T08:15:10.40Z") OR
2066
+ # (name = "example-management-dns-zone-binding-2")
2067
+ # ```
2068
+ # @!attribute [rw] order_by
2069
+ # @return [::String]
2070
+ # Sorts list results by a certain order. By default, returned results
2071
+ # are ordered by `name` in ascending order.
2072
+ # You can also sort results in descending order based on the `name` value
2073
+ # using `orderBy="name desc"`.
2074
+ # Currently, only ordering by `name` is supported.
2075
+ class ListManagementDnsZoneBindingsRequest
2076
+ include ::Google::Protobuf::MessageExts
2077
+ extend ::Google::Protobuf::MessageExts::ClassMethods
2078
+ end
2079
+
2080
+ # Response message for
2081
+ # {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#list_management_dns_zone_bindings VmwareEngine.ListManagementDnsZoneBindings}
2082
+ # @!attribute [rw] management_dns_zone_bindings
2083
+ # @return [::Array<::Google::Cloud::VmwareEngine::V1::ManagementDnsZoneBinding>]
2084
+ # A list of management DNS zone bindings.
2085
+ # @!attribute [rw] next_page_token
2086
+ # @return [::String]
2087
+ # A token, which can be sent as `page_token` to retrieve the next page.
2088
+ # If this field is omitted, there are no subsequent pages.
2089
+ # @!attribute [rw] unreachable
2090
+ # @return [::Array<::String>]
2091
+ # Locations that could not be reached when making an aggregated query using
2092
+ # wildcards.
2093
+ class ListManagementDnsZoneBindingsResponse
2094
+ include ::Google::Protobuf::MessageExts
2095
+ extend ::Google::Protobuf::MessageExts::ClassMethods
2096
+ end
2097
+
2098
+ # Request message for
2099
+ # {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#get_management_dns_zone_binding VmwareEngine.GetManagementDnsZoneBinding}
2100
+ # @!attribute [rw] name
2101
+ # @return [::String]
2102
+ # Required. The resource name of the management DNS zone binding to
2103
+ # retrieve. Resource names are schemeless URIs that follow the conventions in
2104
+ # https://cloud.google.com/apis/design/resource_names.
2105
+ # For example:
2106
+ # `projects/my-project/locations/us-central1-a/privateClouds/my-cloud/managementDnsZoneBindings/my-management-dns-zone-binding`
2107
+ class GetManagementDnsZoneBindingRequest
2108
+ include ::Google::Protobuf::MessageExts
2109
+ extend ::Google::Protobuf::MessageExts::ClassMethods
2110
+ end
2111
+
2112
+ # Request message for [VmwareEngine.CreateManagementDnsZoneBindings][]
2113
+ # @!attribute [rw] parent
2114
+ # @return [::String]
2115
+ # Required. The resource name of the private cloud
2116
+ # to create a new management DNS zone binding for.
2117
+ # Resource names are schemeless URIs that follow the conventions in
2118
+ # https://cloud.google.com/apis/design/resource_names.
2119
+ # For example:
2120
+ # `projects/my-project/locations/us-central1-a/privateClouds/my-cloud`
2121
+ # @!attribute [rw] management_dns_zone_binding
2122
+ # @return [::Google::Cloud::VmwareEngine::V1::ManagementDnsZoneBinding]
2123
+ # Required. The initial values for a new management DNS zone binding.
2124
+ # @!attribute [rw] management_dns_zone_binding_id
2125
+ # @return [::String]
2126
+ # Required. The user-provided identifier of the `ManagementDnsZoneBinding`
2127
+ # resource to be created. This identifier must be unique among
2128
+ # `ManagementDnsZoneBinding` resources within the parent and becomes the
2129
+ # final token in the name URI. The identifier must meet the following
2130
+ # requirements:
2131
+ #
2132
+ # * Only contains 1-63 alphanumeric characters and hyphens
2133
+ # * Begins with an alphabetical character
2134
+ # * Ends with a non-hyphen character
2135
+ # * Not formatted as a UUID
2136
+ # * Complies with [RFC 1034](https://datatracker.ietf.org/doc/html/rfc1034)
2137
+ # (section 3.5)
2138
+ # @!attribute [rw] request_id
2139
+ # @return [::String]
2140
+ # Optional. A request ID to identify requests. Specify a unique request ID
2141
+ # so that if you must retry your request, the server will know to ignore
2142
+ # the request if it has already been completed. The server guarantees that a
2143
+ # request doesn't result in creation of duplicate commitments for at least 60
2144
+ # minutes.
2145
+ #
2146
+ # For example, consider a situation where you make an initial request and the
2147
+ # request times out. If you make the request again with the same request ID,
2148
+ # the server can check if the original operation with the same request ID was
2149
+ # received, and if so, will ignore the second request. This prevents clients
2150
+ # from accidentally creating duplicate commitments.
2151
+ #
2152
+ # The request ID must be a valid UUID with the exception that zero UUID is
2153
+ # not supported (00000000-0000-0000-0000-000000000000).
2154
+ class CreateManagementDnsZoneBindingRequest
2155
+ include ::Google::Protobuf::MessageExts
2156
+ extend ::Google::Protobuf::MessageExts::ClassMethods
2157
+ end
2158
+
2159
+ # Request message for
2160
+ # {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#update_management_dns_zone_binding VmwareEngine.UpdateManagementDnsZoneBinding}
2161
+ # @!attribute [rw] update_mask
2162
+ # @return [::Google::Protobuf::FieldMask]
2163
+ # Required. Field mask is used to specify the fields to be overwritten in the
2164
+ # `ManagementDnsZoneBinding` resource by the update.
2165
+ # The fields specified in the `update_mask` are relative to the resource, not
2166
+ # the full request. A field will be overwritten if it is in the mask. If the
2167
+ # user does not provide a mask then all fields will be overwritten.
2168
+ # @!attribute [rw] management_dns_zone_binding
2169
+ # @return [::Google::Cloud::VmwareEngine::V1::ManagementDnsZoneBinding]
2170
+ # Required. New values to update the management DNS zone binding with.
2171
+ # @!attribute [rw] request_id
2172
+ # @return [::String]
2173
+ # Optional. A request ID to identify requests. Specify a unique request ID
2174
+ # so that if you must retry your request, the server will know to ignore
2175
+ # the request if it has already been completed. The server guarantees that a
2176
+ # request doesn't result in creation of duplicate commitments for at least 60
2177
+ # minutes.
2178
+ #
2179
+ # For example, consider a situation where you make an initial request and the
2180
+ # request times out. If you make the request again with the same request ID,
2181
+ # the server can check if the original operation with the same request ID was
2182
+ # received, and if so, will ignore the second request. This prevents clients
2183
+ # from accidentally creating duplicate commitments.
2184
+ #
2185
+ # The request ID must be a valid UUID with the exception that zero UUID is
2186
+ # not supported (00000000-0000-0000-0000-000000000000).
2187
+ class UpdateManagementDnsZoneBindingRequest
2188
+ include ::Google::Protobuf::MessageExts
2189
+ extend ::Google::Protobuf::MessageExts::ClassMethods
2190
+ end
2191
+
2192
+ # Request message for
2193
+ # {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#delete_management_dns_zone_binding VmwareEngine.DeleteManagementDnsZoneBinding}
2194
+ # @!attribute [rw] name
2195
+ # @return [::String]
2196
+ # Required. The resource name of the management DNS zone binding to delete.
2197
+ # Resource names are schemeless URIs that follow the conventions in
2198
+ # https://cloud.google.com/apis/design/resource_names.
2199
+ # For example:
2200
+ # `projects/my-project/locations/us-central1-a/privateClouds/my-cloud/managementDnsZoneBindings/my-management-dns-zone-binding`
2201
+ # @!attribute [rw] request_id
2202
+ # @return [::String]
2203
+ # Optional. A request ID to identify requests. Specify a unique request ID
2204
+ # so that if you must retry your request, the server will know to ignore
2205
+ # the request if it has already been completed. The server guarantees that a
2206
+ # request doesn't result in creation of duplicate commitments for at least 60
2207
+ # minutes.
2208
+ #
2209
+ # For example, consider a situation where you make an initial request and the
2210
+ # request times out. If you make the request again with the same request
2211
+ # ID, the server can check if the original operation with the same request ID
2212
+ # was received, and if so, will ignore the second request. This prevents
2213
+ # clients from accidentally creating duplicate commitments.
2214
+ #
2215
+ # The request ID must be a valid UUID with the exception that zero UUID is
2216
+ # not supported (00000000-0000-0000-0000-000000000000).
2217
+ class DeleteManagementDnsZoneBindingRequest
2218
+ include ::Google::Protobuf::MessageExts
2219
+ extend ::Google::Protobuf::MessageExts::ClassMethods
2220
+ end
2221
+
2222
+ # Request message for [VmwareEngine.RepairManagementDnsZoneBindings][]
2223
+ # @!attribute [rw] name
2224
+ # @return [::String]
2225
+ # Required. The resource name of the management DNS zone binding to repair.
2226
+ # Resource names are schemeless URIs that follow the conventions in
2227
+ # https://cloud.google.com/apis/design/resource_names.
2228
+ # For example:
2229
+ # `projects/my-project/locations/us-central1-a/privateClouds/my-cloud/managementDnsZoneBindings/my-management-dns-zone-binding`
2230
+ # @!attribute [rw] request_id
2231
+ # @return [::String]
2232
+ # Optional. A request ID to identify requests. Specify a unique request ID
2233
+ # so that if you must retry your request, the server will know to ignore
2234
+ # the request if it has already been completed. The server guarantees that a
2235
+ # request doesn't result in creation of duplicate commitments for at least 60
2236
+ # minutes.
2237
+ #
2238
+ # For example, consider a situation where you make an initial request and the
2239
+ # request times out. If you make the request again with the same request ID,
2240
+ # the server can check if the original operation with the same request ID was
2241
+ # received, and if so, will ignore the second request. This prevents clients
2242
+ # from accidentally creating duplicate commitments.
2243
+ #
2244
+ # The request ID must be a valid UUID with the exception that zero UUID is
2245
+ # not supported (00000000-0000-0000-0000-000000000000).
2246
+ class RepairManagementDnsZoneBindingRequest
2247
+ include ::Google::Protobuf::MessageExts
2248
+ extend ::Google::Protobuf::MessageExts::ClassMethods
2249
+ end
2250
+
990
2251
  # Request message for
991
2252
  # {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#create_vmware_engine_network VmwareEngine.CreateVmwareEngineNetwork}
992
2253
  # @!attribute [rw] parent
@@ -1437,6 +2698,93 @@ module Google
1437
2698
  include ::Google::Protobuf::MessageExts
1438
2699
  extend ::Google::Protobuf::MessageExts::ClassMethods
1439
2700
  end
2701
+
2702
+ # Request message for
2703
+ # {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#grant_dns_bind_permission VmwareEngine.GrantDnsBindPermission}
2704
+ # @!attribute [rw] name
2705
+ # @return [::String]
2706
+ # Required. The name of the resource which stores the users/service accounts
2707
+ # having the permission to bind to the corresponding intranet VPC of the
2708
+ # consumer project. DnsBindPermission is a global resource. Resource names
2709
+ # are schemeless URIs that follow the conventions in
2710
+ # https://cloud.google.com/apis/design/resource_names. For example:
2711
+ # `projects/my-project/locations/global/dnsBindPermission`
2712
+ # @!attribute [rw] principal
2713
+ # @return [::Google::Cloud::VmwareEngine::V1::Principal]
2714
+ # Required. The consumer provided user/service account which needs to be
2715
+ # granted permission to bind with the intranet VPC corresponding to the
2716
+ # consumer project.
2717
+ # @!attribute [rw] request_id
2718
+ # @return [::String]
2719
+ # Optional. A request ID to identify requests. Specify a unique request ID
2720
+ # so that if you must retry your request, the server will know to ignore
2721
+ # the request if it has already been completed. The server guarantees that a
2722
+ # request doesn't result in creation of duplicate commitments for at least 60
2723
+ # minutes.
2724
+ #
2725
+ # For example, consider a situation where you make an initial request and the
2726
+ # request times out. If you make the request again with the same request
2727
+ # ID, the server can check if original operation with the same request ID
2728
+ # was received, and if so, will ignore the second request. This prevents
2729
+ # clients from accidentally creating duplicate commitments.
2730
+ #
2731
+ # The request ID must be a valid UUID with the exception that zero UUID is
2732
+ # not supported (00000000-0000-0000-0000-000000000000).
2733
+ class GrantDnsBindPermissionRequest
2734
+ include ::Google::Protobuf::MessageExts
2735
+ extend ::Google::Protobuf::MessageExts::ClassMethods
2736
+ end
2737
+
2738
+ # Request message for
2739
+ # {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#revoke_dns_bind_permission VmwareEngine.RevokeDnsBindPermission}
2740
+ # @!attribute [rw] name
2741
+ # @return [::String]
2742
+ # Required. The name of the resource which stores the users/service accounts
2743
+ # having the permission to bind to the corresponding intranet VPC of the
2744
+ # consumer project. DnsBindPermission is a global resource. Resource names
2745
+ # are schemeless URIs that follow the conventions in
2746
+ # https://cloud.google.com/apis/design/resource_names. For example:
2747
+ # `projects/my-project/locations/global/dnsBindPermission`
2748
+ # @!attribute [rw] principal
2749
+ # @return [::Google::Cloud::VmwareEngine::V1::Principal]
2750
+ # Required. The consumer provided user/service account which needs to be
2751
+ # granted permission to bind with the intranet VPC corresponding to the
2752
+ # consumer project.
2753
+ # @!attribute [rw] request_id
2754
+ # @return [::String]
2755
+ # Optional. A request ID to identify requests. Specify a unique request ID
2756
+ # so that if you must retry your request, the server will know to ignore
2757
+ # the request if it has already been completed. The server guarantees that a
2758
+ # request doesn't result in creation of duplicate commitments for at least 60
2759
+ # minutes.
2760
+ #
2761
+ # For example, consider a situation where you make an initial request and the
2762
+ # request times out. If you make the request again with the same request
2763
+ # ID, the server can check if original operation with the same request ID
2764
+ # was received, and if so, will ignore the second request. This prevents
2765
+ # clients from accidentally creating duplicate commitments.
2766
+ #
2767
+ # The request ID must be a valid UUID with the exception that zero UUID is
2768
+ # not supported (00000000-0000-0000-0000-000000000000).
2769
+ class RevokeDnsBindPermissionRequest
2770
+ include ::Google::Protobuf::MessageExts
2771
+ extend ::Google::Protobuf::MessageExts::ClassMethods
2772
+ end
2773
+
2774
+ # Request message for
2775
+ # {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#get_dns_bind_permission VmwareEngine.GetDnsBindPermission}
2776
+ # @!attribute [rw] name
2777
+ # @return [::String]
2778
+ # Required. The name of the resource which stores the users/service accounts
2779
+ # having the permission to bind to the corresponding intranet VPC of the
2780
+ # consumer project. DnsBindPermission is a global resource. Resource names
2781
+ # are schemeless URIs that follow the conventions in
2782
+ # https://cloud.google.com/apis/design/resource_names. For example:
2783
+ # `projects/my-project/locations/global/dnsBindPermission`
2784
+ class GetDnsBindPermissionRequest
2785
+ include ::Google::Protobuf::MessageExts
2786
+ extend ::Google::Protobuf::MessageExts::ClassMethods
2787
+ end
1440
2788
  end
1441
2789
  end
1442
2790
  end