google-cloud-network_services-v1 2.6.1 → 2.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.
@@ -613,6 +613,198 @@ module Google
613
613
  extend ::Google::Protobuf::MessageExts::ClassMethods
614
614
  end
615
615
 
616
+ # `LbEdgeExtension` is a resource that lets the extension service influence
617
+ # the selection of backend services and Cloud CDN cache keys by modifying
618
+ # request headers.
619
+ # @!attribute [rw] name
620
+ # @return [::String]
621
+ # Required. Identifier. Name of the `LbEdgeExtension` resource in the
622
+ # following format:
623
+ # `projects/{project}/locations/{location}/lbEdgeExtensions/{lb_edge_extension}`.
624
+ # @!attribute [r] create_time
625
+ # @return [::Google::Protobuf::Timestamp]
626
+ # Output only. The timestamp when the resource was created.
627
+ # @!attribute [r] update_time
628
+ # @return [::Google::Protobuf::Timestamp]
629
+ # Output only. The timestamp when the resource was updated.
630
+ # @!attribute [rw] description
631
+ # @return [::String]
632
+ # Optional. A human-readable description of the resource.
633
+ # @!attribute [rw] labels
634
+ # @return [::Google::Protobuf::Map{::String => ::String}]
635
+ # Optional. Set of labels associated with the `LbEdgeExtension` resource.
636
+ #
637
+ # The format must comply with [the requirements for
638
+ # labels](https://cloud.google.com/compute/docs/labeling-resources#requirements)
639
+ # for Google Cloud resources.
640
+ # @!attribute [rw] forwarding_rules
641
+ # @return [::Array<::String>]
642
+ # Required. A list of references to the forwarding rules to which this
643
+ # service extension is attached. At least one forwarding rule is required.
644
+ # Only one `LbEdgeExtension` resource can be associated with a forwarding
645
+ # rule.
646
+ # @!attribute [rw] extension_chains
647
+ # @return [::Array<::Google::Cloud::NetworkServices::V1::ExtensionChain>]
648
+ # Required. A set of ordered extension chains that contain the match
649
+ # conditions and extensions to execute. Match conditions for each extension
650
+ # chain are evaluated in sequence for a given request. The first extension
651
+ # chain that has a condition that matches the request is executed.
652
+ # Any subsequent extension chains do not execute.
653
+ # Limited to 5 extension chains per resource.
654
+ # @!attribute [rw] load_balancing_scheme
655
+ # @return [::Google::Cloud::NetworkServices::V1::LoadBalancingScheme]
656
+ # Required. All forwarding rules referenced by this extension must
657
+ # share the same load balancing scheme.
658
+ # Supported values: `EXTERNAL_MANAGED`.
659
+ class LbEdgeExtension
660
+ include ::Google::Protobuf::MessageExts
661
+ extend ::Google::Protobuf::MessageExts::ClassMethods
662
+
663
+ # @!attribute [rw] key
664
+ # @return [::String]
665
+ # @!attribute [rw] value
666
+ # @return [::String]
667
+ class LabelsEntry
668
+ include ::Google::Protobuf::MessageExts
669
+ extend ::Google::Protobuf::MessageExts::ClassMethods
670
+ end
671
+ end
672
+
673
+ # Message for requesting list of `LbEdgeExtension` resources.
674
+ # @!attribute [rw] parent
675
+ # @return [::String]
676
+ # Required. The project and location from which the `LbEdgeExtension`
677
+ # resources are listed. These values are specified in the following format:
678
+ # `projects/{project}/locations/{location}`.
679
+ # @!attribute [rw] page_size
680
+ # @return [::Integer]
681
+ # Optional. Requested page size. The server might return fewer items than
682
+ # requested. If unspecified, the server picks an appropriate default.
683
+ # @!attribute [rw] page_token
684
+ # @return [::String]
685
+ # Optional. A token identifying a page of results that the server returns.
686
+ # @!attribute [rw] filter
687
+ # @return [::String]
688
+ # Optional. Filtering results.
689
+ # @!attribute [rw] order_by
690
+ # @return [::String]
691
+ # Optional. Hint about how to order the results.
692
+ class ListLbEdgeExtensionsRequest
693
+ include ::Google::Protobuf::MessageExts
694
+ extend ::Google::Protobuf::MessageExts::ClassMethods
695
+ end
696
+
697
+ # Message for response to listing `LbEdgeExtension` resources.
698
+ # @!attribute [rw] lb_edge_extensions
699
+ # @return [::Array<::Google::Cloud::NetworkServices::V1::LbEdgeExtension>]
700
+ # The list of `LbEdgeExtension` resources.
701
+ # @!attribute [rw] next_page_token
702
+ # @return [::String]
703
+ # A token identifying a page of results that the server returns.
704
+ # @!attribute [rw] unreachable
705
+ # @return [::Array<::String>]
706
+ # Locations that could not be reached.
707
+ class ListLbEdgeExtensionsResponse
708
+ include ::Google::Protobuf::MessageExts
709
+ extend ::Google::Protobuf::MessageExts::ClassMethods
710
+ end
711
+
712
+ # Message for getting a `LbEdgeExtension` resource.
713
+ # @!attribute [rw] name
714
+ # @return [::String]
715
+ # Required. A name of the `LbEdgeExtension` resource to get. Must be in the
716
+ # format
717
+ # `projects/{project}/locations/{location}/lbEdgeExtensions/{lb_edge_extension}`.
718
+ class GetLbEdgeExtensionRequest
719
+ include ::Google::Protobuf::MessageExts
720
+ extend ::Google::Protobuf::MessageExts::ClassMethods
721
+ end
722
+
723
+ # Message for creating a `LbEdgeExtension` resource.
724
+ # @!attribute [rw] parent
725
+ # @return [::String]
726
+ # Required. The parent resource of the `LbEdgeExtension` resource. Must be in
727
+ # the format `projects/{project}/locations/{location}`.
728
+ # @!attribute [rw] lb_edge_extension_id
729
+ # @return [::String]
730
+ # Required. User-provided ID of the `LbEdgeExtension` resource to be created.
731
+ # @!attribute [rw] lb_edge_extension
732
+ # @return [::Google::Cloud::NetworkServices::V1::LbEdgeExtension]
733
+ # Required. `LbEdgeExtension` resource to be created.
734
+ # @!attribute [rw] request_id
735
+ # @return [::String]
736
+ # Optional. An optional request ID to identify requests. Specify a unique
737
+ # request ID so that if you must retry your request, the server can ignore
738
+ # the request if it has already been completed. The server guarantees
739
+ # that for 60 minutes since the first request.
740
+ #
741
+ # For example, consider a situation where you make an initial request and the
742
+ # request times out. If you make the request again with the same request
743
+ # ID, the server ignores the second request This prevents
744
+ # clients from accidentally creating duplicate commitments.
745
+ #
746
+ # The request ID must be a valid UUID with the exception that zero UUID is
747
+ # not supported (00000000-0000-0000-0000-000000000000).
748
+ class CreateLbEdgeExtensionRequest
749
+ include ::Google::Protobuf::MessageExts
750
+ extend ::Google::Protobuf::MessageExts::ClassMethods
751
+ end
752
+
753
+ # Message for updating a `LbEdgeExtension` resource.
754
+ # @!attribute [rw] update_mask
755
+ # @return [::Google::Protobuf::FieldMask]
756
+ # Optional. Used to specify the fields to be overwritten in the
757
+ # `LbEdgeExtension` resource by the update.
758
+ # The fields specified in the `update_mask` are relative to the resource, not
759
+ # the full request. A field is overwritten if it is in the mask. If the
760
+ # user does not specify a mask, then all fields are overwritten.
761
+ # @!attribute [rw] lb_edge_extension
762
+ # @return [::Google::Cloud::NetworkServices::V1::LbEdgeExtension]
763
+ # Required. `LbEdgeExtension` resource being updated.
764
+ # @!attribute [rw] request_id
765
+ # @return [::String]
766
+ # Optional. An optional request ID to identify requests. Specify a unique
767
+ # request ID so that if you must retry your request, the server can ignore
768
+ # the request if it has already been completed. The server guarantees
769
+ # that for 60 minutes since the first request.
770
+ #
771
+ # For example, consider a situation where you make an initial request and the
772
+ # request times out. If you make the request again with the same request
773
+ # ID, the server ignores the second request This prevents
774
+ # clients from accidentally creating duplicate commitments.
775
+ #
776
+ # The request ID must be a valid UUID with the exception that zero UUID is
777
+ # not supported (00000000-0000-0000-0000-000000000000).
778
+ class UpdateLbEdgeExtensionRequest
779
+ include ::Google::Protobuf::MessageExts
780
+ extend ::Google::Protobuf::MessageExts::ClassMethods
781
+ end
782
+
783
+ # Message for deleting a `LbEdgeExtension` resource.
784
+ # @!attribute [rw] name
785
+ # @return [::String]
786
+ # Required. The name of the `LbEdgeExtension` resource to delete. Must be in
787
+ # the format
788
+ # `projects/{project}/locations/{location}/lbEdgeExtensions/{lb_edge_extension}`.
789
+ # @!attribute [rw] request_id
790
+ # @return [::String]
791
+ # Optional. An optional request ID to identify requests. Specify a unique
792
+ # request ID so that if you must retry your request, the server can ignore
793
+ # the request if it has already been completed. The server guarantees
794
+ # that for 60 minutes after the first request.
795
+ #
796
+ # For example, consider a situation where you make an initial request and the
797
+ # request times out. If you make the request again with the same request
798
+ # ID, the server ignores the second request This prevents
799
+ # clients from accidentally creating duplicate commitments.
800
+ #
801
+ # The request ID must be a valid UUID with the exception that zero UUID is
802
+ # not supported (00000000-0000-0000-0000-000000000000).
803
+ class DeleteLbEdgeExtensionRequest
804
+ include ::Google::Protobuf::MessageExts
805
+ extend ::Google::Protobuf::MessageExts::ClassMethods
806
+ end
807
+
616
808
  # `AuthzExtension` is a resource that allows traffic forwarding
617
809
  # to a callout backend service to make an authorization decision.
618
810
  # @!attribute [rw] name
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-network_services-v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.6.1
4
+ version: 2.7.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC