google-cloud-compute-v1 3.6.0 → 3.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.
Files changed (28) hide show
  1. checksums.yaml +4 -4
  2. data/lib/google/cloud/compute/v1/compute_pb.rb +58 -1
  3. data/lib/google/cloud/compute/v1/global_vm_extension_policies/credentials.rb +52 -0
  4. data/lib/google/cloud/compute/v1/global_vm_extension_policies/rest/client.rb +1164 -0
  5. data/lib/google/cloud/compute/v1/global_vm_extension_policies/rest/service_stub.rb +453 -0
  6. data/lib/google/cloud/compute/v1/global_vm_extension_policies/rest.rb +51 -0
  7. data/lib/google/cloud/compute/v1/global_vm_extension_policies.rb +47 -0
  8. data/lib/google/cloud/compute/v1/license_codes/credentials.rb +0 -1
  9. data/lib/google/cloud/compute/v1/license_codes/rest/client.rb +193 -0
  10. data/lib/google/cloud/compute/v1/license_codes/rest/service_stub.rb +125 -0
  11. data/lib/google/cloud/compute/v1/networks/rest/client.rb +116 -0
  12. data/lib/google/cloud/compute/v1/networks/rest/service_stub.rb +63 -0
  13. data/lib/google/cloud/compute/v1/rest.rb +3 -0
  14. data/lib/google/cloud/compute/v1/rollout_plans/credentials.rb +52 -0
  15. data/lib/google/cloud/compute/v1/rollout_plans/rest/client.rb +848 -0
  16. data/lib/google/cloud/compute/v1/rollout_plans/rest/service_stub.rb +328 -0
  17. data/lib/google/cloud/compute/v1/rollout_plans/rest.rb +51 -0
  18. data/lib/google/cloud/compute/v1/rollout_plans.rb +47 -0
  19. data/lib/google/cloud/compute/v1/rollouts/credentials.rb +52 -0
  20. data/lib/google/cloud/compute/v1/rollouts/rest/client.rb +853 -0
  21. data/lib/google/cloud/compute/v1/rollouts/rest/service_stub.rb +328 -0
  22. data/lib/google/cloud/compute/v1/rollouts/rest.rb +51 -0
  23. data/lib/google/cloud/compute/v1/rollouts.rb +47 -0
  24. data/lib/google/cloud/compute/v1/version.rb +1 -1
  25. data/lib/google/cloud/compute/v1/zone_vm_extension_policies/rest/client.rb +3 -3
  26. data/lib/google/cloud/compute/v1.rb +3 -0
  27. data/proto_docs/google/cloud/compute/v1/compute.rb +2698 -914
  28. metadata +16 -1
@@ -2780,7 +2780,7 @@ module Google
2780
2780
  extend ::Google::Protobuf::MessageExts::ClassMethods
2781
2781
  end
2782
2782
 
2783
- # A request message for HealthChecks.AggregatedList. See the method description for details.
2783
+ # A request message for GlobalVmExtensionPolicies.AggregatedList. See the method description for details.
2784
2784
  # @!attribute [rw] filter
2785
2785
  # @return [::String]
2786
2786
  # A filter expression that filters resources listed in the response. Most
@@ -2890,242 +2890,12 @@ module Google
2890
2890
  # @return [::Integer]
2891
2891
  # The Shared VPC service project id or service project number for which
2892
2892
  # aggregated list request is invoked for subnetworks list-usable api.
2893
- class AggregatedListHealthChecksRequest
2894
- include ::Google::Protobuf::MessageExts
2895
- extend ::Google::Protobuf::MessageExts::ClassMethods
2896
- end
2897
-
2898
- # A request message for InstanceGroupManagers.AggregatedList. See the method description for details.
2899
- # @!attribute [rw] filter
2900
- # @return [::String]
2901
- # A filter expression that filters resources listed in the response. Most
2902
- # Compute resources support two types of filter expressions:
2903
- # expressions that support regular expressions and expressions that follow
2904
- # API improvement proposal AIP-160.
2905
- # These two types of filter expressions cannot be mixed in one request.
2906
- #
2907
- # If you want to use AIP-160, your expression must specify the field name, an
2908
- # operator, and the value that you want to use for filtering. The value
2909
- # must be a string, a number, or a boolean. The operator
2910
- # must be either `=`, `!=`, `>`, `<`, `<=`, `>=` or `:`.
2911
- #
2912
- # For example, if you are filtering Compute Engine instances, you can
2913
- # exclude instances named `example-instance` by specifying
2914
- # `name != example-instance`.
2915
- #
2916
- # The `:*` comparison can be used to test whether a key has been defined.
2917
- # For example, to find all objects with `owner` label use:
2918
- # ```
2919
- # labels.owner:*
2920
- # ```
2921
- #
2922
- # You can also filter nested fields. For example, you could specify
2923
- # `scheduling.automaticRestart = false` to include instances only
2924
- # if they are not scheduled for automatic restarts. You can use filtering
2925
- # on nested fields to filter based onresource labels.
2926
- #
2927
- # To filter on multiple expressions, provide each separate expression within
2928
- # parentheses. For example:
2929
- # ```
2930
- # (scheduling.automaticRestart = true)
2931
- # (cpuPlatform = "Intel Skylake")
2932
- # ```
2933
- # By default, each expression is an `AND` expression. However, you
2934
- # can include `AND` and `OR` expressions explicitly.
2935
- # For example:
2936
- # ```
2937
- # (cpuPlatform = "Intel Skylake") OR
2938
- # (cpuPlatform = "Intel Broadwell") AND
2939
- # (scheduling.automaticRestart = true)
2940
- # ```
2941
- #
2942
- # If you want to use a regular expression, use the `eq` (equal) or `ne`
2943
- # (not equal) operator against a single un-parenthesized expression with or
2944
- # without quotes or against multiple parenthesized expressions. Examples:
2945
- #
2946
- # `fieldname eq unquoted literal`
2947
- # `fieldname eq 'single quoted literal'`
2948
- # `fieldname eq "double quoted literal"`
2949
- # `(fieldname1 eq literal) (fieldname2 ne "literal")`
2950
- #
2951
- # The literal value is interpreted as a regular expression using GoogleRE2 library syntax.
2952
- # The literal value must match the entire field.
2953
- #
2954
- # For example, to filter for instances that do not end with name "instance",
2955
- # you would use `name ne .*instance`.
2956
- #
2957
- # You cannot combine constraints on multiple fields using regular
2958
- # expressions.
2959
- # @!attribute [rw] include_all_scopes
2960
- # @return [::Boolean]
2961
- # Indicates whether every visible scope for each scope type (zone, region,
2962
- # global) should be included in the response. For new resource types added
2963
- # after this field, the flag has no effect as new resource types will always
2964
- # include every visible scope for each scope type in response. For resource
2965
- # types which predate this field, if this flag is omitted or false, only
2966
- # scopes of the scope types where the resource type is expected to be found
2967
- # will be included.
2968
- # @!attribute [rw] max_results
2969
- # @return [::Integer]
2970
- # The maximum number of results per page that should be returned.
2971
- # If the number of available results is larger than `maxResults`,
2972
- # Compute Engine returns a `nextPageToken` that can be used to get
2973
- # the next page of results in subsequent list requests. Acceptable values are
2974
- # `0` to `500`, inclusive. (Default: `500`)
2975
- # @!attribute [rw] order_by
2976
- # @return [::String]
2977
- # Sorts list results by a certain order. By default, results
2978
- # are returned in alphanumerical order based on the resource name.
2979
- #
2980
- # You can also sort results in descending order based on the creation
2981
- # timestamp using `orderBy="creationTimestamp desc"`. This sorts
2982
- # results based on the `creationTimestamp` field in
2983
- # reverse chronological order (newest result first). Use this to sort
2984
- # resources like operations so that the newest operation is returned first.
2985
- #
2986
- # Currently, only sorting by `name` or
2987
- # `creationTimestamp desc` is supported.
2988
- # @!attribute [rw] page_token
2989
- # @return [::String]
2990
- # Specifies a page token to use. Set `pageToken` to the
2991
- # `nextPageToken` returned by a previous list request to get
2992
- # the next page of results.
2993
- # @!attribute [rw] project
2994
- # @return [::String]
2995
- # Project ID for this request.
2996
- # @!attribute [rw] return_partial_success
2997
- # @return [::Boolean]
2998
- # Opt-in for partial success behavior which provides partial results in case
2999
- # of failure. The default value is false.
3000
- #
3001
- # For example, when partial success behavior is enabled, aggregatedList for a
3002
- # single zone scope either returns all resources in the zone or no resources,
3003
- # with an error code.
3004
- # @!attribute [rw] service_project_number
3005
- # @return [::Integer]
3006
- # The Shared VPC service project id or service project number for which
3007
- # aggregated list request is invoked for subnetworks list-usable api.
3008
- class AggregatedListInstanceGroupManagersRequest
3009
- include ::Google::Protobuf::MessageExts
3010
- extend ::Google::Protobuf::MessageExts::ClassMethods
3011
- end
3012
-
3013
- # A request message for InstanceGroups.AggregatedList. See the method description for details.
3014
- # @!attribute [rw] filter
3015
- # @return [::String]
3016
- # A filter expression that filters resources listed in the response. Most
3017
- # Compute resources support two types of filter expressions:
3018
- # expressions that support regular expressions and expressions that follow
3019
- # API improvement proposal AIP-160.
3020
- # These two types of filter expressions cannot be mixed in one request.
3021
- #
3022
- # If you want to use AIP-160, your expression must specify the field name, an
3023
- # operator, and the value that you want to use for filtering. The value
3024
- # must be a string, a number, or a boolean. The operator
3025
- # must be either `=`, `!=`, `>`, `<`, `<=`, `>=` or `:`.
3026
- #
3027
- # For example, if you are filtering Compute Engine instances, you can
3028
- # exclude instances named `example-instance` by specifying
3029
- # `name != example-instance`.
3030
- #
3031
- # The `:*` comparison can be used to test whether a key has been defined.
3032
- # For example, to find all objects with `owner` label use:
3033
- # ```
3034
- # labels.owner:*
3035
- # ```
3036
- #
3037
- # You can also filter nested fields. For example, you could specify
3038
- # `scheduling.automaticRestart = false` to include instances only
3039
- # if they are not scheduled for automatic restarts. You can use filtering
3040
- # on nested fields to filter based onresource labels.
3041
- #
3042
- # To filter on multiple expressions, provide each separate expression within
3043
- # parentheses. For example:
3044
- # ```
3045
- # (scheduling.automaticRestart = true)
3046
- # (cpuPlatform = "Intel Skylake")
3047
- # ```
3048
- # By default, each expression is an `AND` expression. However, you
3049
- # can include `AND` and `OR` expressions explicitly.
3050
- # For example:
3051
- # ```
3052
- # (cpuPlatform = "Intel Skylake") OR
3053
- # (cpuPlatform = "Intel Broadwell") AND
3054
- # (scheduling.automaticRestart = true)
3055
- # ```
3056
- #
3057
- # If you want to use a regular expression, use the `eq` (equal) or `ne`
3058
- # (not equal) operator against a single un-parenthesized expression with or
3059
- # without quotes or against multiple parenthesized expressions. Examples:
3060
- #
3061
- # `fieldname eq unquoted literal`
3062
- # `fieldname eq 'single quoted literal'`
3063
- # `fieldname eq "double quoted literal"`
3064
- # `(fieldname1 eq literal) (fieldname2 ne "literal")`
3065
- #
3066
- # The literal value is interpreted as a regular expression using GoogleRE2 library syntax.
3067
- # The literal value must match the entire field.
3068
- #
3069
- # For example, to filter for instances that do not end with name "instance",
3070
- # you would use `name ne .*instance`.
3071
- #
3072
- # You cannot combine constraints on multiple fields using regular
3073
- # expressions.
3074
- # @!attribute [rw] include_all_scopes
3075
- # @return [::Boolean]
3076
- # Indicates whether every visible scope for each scope type (zone, region,
3077
- # global) should be included in the response. For new resource types added
3078
- # after this field, the flag has no effect as new resource types will always
3079
- # include every visible scope for each scope type in response. For resource
3080
- # types which predate this field, if this flag is omitted or false, only
3081
- # scopes of the scope types where the resource type is expected to be found
3082
- # will be included.
3083
- # @!attribute [rw] max_results
3084
- # @return [::Integer]
3085
- # The maximum number of results per page that should be returned.
3086
- # If the number of available results is larger than `maxResults`,
3087
- # Compute Engine returns a `nextPageToken` that can be used to get
3088
- # the next page of results in subsequent list requests. Acceptable values are
3089
- # `0` to `500`, inclusive. (Default: `500`)
3090
- # @!attribute [rw] order_by
3091
- # @return [::String]
3092
- # Sorts list results by a certain order. By default, results
3093
- # are returned in alphanumerical order based on the resource name.
3094
- #
3095
- # You can also sort results in descending order based on the creation
3096
- # timestamp using `orderBy="creationTimestamp desc"`. This sorts
3097
- # results based on the `creationTimestamp` field in
3098
- # reverse chronological order (newest result first). Use this to sort
3099
- # resources like operations so that the newest operation is returned first.
3100
- #
3101
- # Currently, only sorting by `name` or
3102
- # `creationTimestamp desc` is supported.
3103
- # @!attribute [rw] page_token
3104
- # @return [::String]
3105
- # Specifies a page token to use. Set `pageToken` to the
3106
- # `nextPageToken` returned by a previous list request to get
3107
- # the next page of results.
3108
- # @!attribute [rw] project
3109
- # @return [::String]
3110
- # Project ID for this request.
3111
- # @!attribute [rw] return_partial_success
3112
- # @return [::Boolean]
3113
- # Opt-in for partial success behavior which provides partial results in case
3114
- # of failure. The default value is false.
3115
- #
3116
- # For example, when partial success behavior is enabled, aggregatedList for a
3117
- # single zone scope either returns all resources in the zone or no resources,
3118
- # with an error code.
3119
- # @!attribute [rw] service_project_number
3120
- # @return [::Integer]
3121
- # The Shared VPC service project id or service project number for which
3122
- # aggregated list request is invoked for subnetworks list-usable api.
3123
- class AggregatedListInstanceGroupsRequest
2893
+ class AggregatedListGlobalVmExtensionPoliciesRequest
3124
2894
  include ::Google::Protobuf::MessageExts
3125
2895
  extend ::Google::Protobuf::MessageExts::ClassMethods
3126
2896
  end
3127
2897
 
3128
- # A request message for InstanceTemplates.AggregatedList. See the method description for details.
2898
+ # A request message for HealthChecks.AggregatedList. See the method description for details.
3129
2899
  # @!attribute [rw] filter
3130
2900
  # @return [::String]
3131
2901
  # A filter expression that filters resources listed in the response. Most
@@ -3235,12 +3005,12 @@ module Google
3235
3005
  # @return [::Integer]
3236
3006
  # The Shared VPC service project id or service project number for which
3237
3007
  # aggregated list request is invoked for subnetworks list-usable api.
3238
- class AggregatedListInstanceTemplatesRequest
3008
+ class AggregatedListHealthChecksRequest
3239
3009
  include ::Google::Protobuf::MessageExts
3240
3010
  extend ::Google::Protobuf::MessageExts::ClassMethods
3241
3011
  end
3242
3012
 
3243
- # A request message for Instances.AggregatedList. See the method description for details.
3013
+ # A request message for InstanceGroupManagers.AggregatedList. See the method description for details.
3244
3014
  # @!attribute [rw] filter
3245
3015
  # @return [::String]
3246
3016
  # A filter expression that filters resources listed in the response. Most
@@ -3350,12 +3120,12 @@ module Google
3350
3120
  # @return [::Integer]
3351
3121
  # The Shared VPC service project id or service project number for which
3352
3122
  # aggregated list request is invoked for subnetworks list-usable api.
3353
- class AggregatedListInstancesRequest
3123
+ class AggregatedListInstanceGroupManagersRequest
3354
3124
  include ::Google::Protobuf::MessageExts
3355
3125
  extend ::Google::Protobuf::MessageExts::ClassMethods
3356
3126
  end
3357
3127
 
3358
- # A request message for InstantSnapshots.AggregatedList. See the method description for details.
3128
+ # A request message for InstanceGroups.AggregatedList. See the method description for details.
3359
3129
  # @!attribute [rw] filter
3360
3130
  # @return [::String]
3361
3131
  # A filter expression that filters resources listed in the response. Most
@@ -3465,12 +3235,12 @@ module Google
3465
3235
  # @return [::Integer]
3466
3236
  # The Shared VPC service project id or service project number for which
3467
3237
  # aggregated list request is invoked for subnetworks list-usable api.
3468
- class AggregatedListInstantSnapshotsRequest
3238
+ class AggregatedListInstanceGroupsRequest
3469
3239
  include ::Google::Protobuf::MessageExts
3470
3240
  extend ::Google::Protobuf::MessageExts::ClassMethods
3471
3241
  end
3472
3242
 
3473
- # A request message for InterconnectAttachments.AggregatedList. See the method description for details.
3243
+ # A request message for InstanceTemplates.AggregatedList. See the method description for details.
3474
3244
  # @!attribute [rw] filter
3475
3245
  # @return [::String]
3476
3246
  # A filter expression that filters resources listed in the response. Most
@@ -3567,7 +3337,7 @@ module Google
3567
3337
  # the next page of results.
3568
3338
  # @!attribute [rw] project
3569
3339
  # @return [::String]
3570
- # Project ID for this request.
3340
+ # Name of the project scoping this request.
3571
3341
  # @!attribute [rw] return_partial_success
3572
3342
  # @return [::Boolean]
3573
3343
  # Opt-in for partial success behavior which provides partial results in case
@@ -3580,12 +3350,12 @@ module Google
3580
3350
  # @return [::Integer]
3581
3351
  # The Shared VPC service project id or service project number for which
3582
3352
  # aggregated list request is invoked for subnetworks list-usable api.
3583
- class AggregatedListInterconnectAttachmentsRequest
3353
+ class AggregatedListInstanceTemplatesRequest
3584
3354
  include ::Google::Protobuf::MessageExts
3585
3355
  extend ::Google::Protobuf::MessageExts::ClassMethods
3586
3356
  end
3587
3357
 
3588
- # A request message for MachineTypes.AggregatedList. See the method description for details.
3358
+ # A request message for Instances.AggregatedList. See the method description for details.
3589
3359
  # @!attribute [rw] filter
3590
3360
  # @return [::String]
3591
3361
  # A filter expression that filters resources listed in the response. Most
@@ -3695,12 +3465,12 @@ module Google
3695
3465
  # @return [::Integer]
3696
3466
  # The Shared VPC service project id or service project number for which
3697
3467
  # aggregated list request is invoked for subnetworks list-usable api.
3698
- class AggregatedListMachineTypesRequest
3468
+ class AggregatedListInstancesRequest
3699
3469
  include ::Google::Protobuf::MessageExts
3700
3470
  extend ::Google::Protobuf::MessageExts::ClassMethods
3701
3471
  end
3702
3472
 
3703
- # A request message for NetworkAttachments.AggregatedList. See the method description for details.
3473
+ # A request message for InstantSnapshots.AggregatedList. See the method description for details.
3704
3474
  # @!attribute [rw] filter
3705
3475
  # @return [::String]
3706
3476
  # A filter expression that filters resources listed in the response. Most
@@ -3810,12 +3580,12 @@ module Google
3810
3580
  # @return [::Integer]
3811
3581
  # The Shared VPC service project id or service project number for which
3812
3582
  # aggregated list request is invoked for subnetworks list-usable api.
3813
- class AggregatedListNetworkAttachmentsRequest
3583
+ class AggregatedListInstantSnapshotsRequest
3814
3584
  include ::Google::Protobuf::MessageExts
3815
3585
  extend ::Google::Protobuf::MessageExts::ClassMethods
3816
3586
  end
3817
3587
 
3818
- # A request message for NetworkEdgeSecurityServices.AggregatedList. See the method description for details.
3588
+ # A request message for InterconnectAttachments.AggregatedList. See the method description for details.
3819
3589
  # @!attribute [rw] filter
3820
3590
  # @return [::String]
3821
3591
  # A filter expression that filters resources listed in the response. Most
@@ -3912,7 +3682,7 @@ module Google
3912
3682
  # the next page of results.
3913
3683
  # @!attribute [rw] project
3914
3684
  # @return [::String]
3915
- # Name of the project scoping this request.
3685
+ # Project ID for this request.
3916
3686
  # @!attribute [rw] return_partial_success
3917
3687
  # @return [::Boolean]
3918
3688
  # Opt-in for partial success behavior which provides partial results in case
@@ -3925,12 +3695,12 @@ module Google
3925
3695
  # @return [::Integer]
3926
3696
  # The Shared VPC service project id or service project number for which
3927
3697
  # aggregated list request is invoked for subnetworks list-usable api.
3928
- class AggregatedListNetworkEdgeSecurityServicesRequest
3698
+ class AggregatedListInterconnectAttachmentsRequest
3929
3699
  include ::Google::Protobuf::MessageExts
3930
3700
  extend ::Google::Protobuf::MessageExts::ClassMethods
3931
3701
  end
3932
3702
 
3933
- # A request message for NetworkEndpointGroups.AggregatedList. See the method description for details.
3703
+ # A request message for MachineTypes.AggregatedList. See the method description for details.
3934
3704
  # @!attribute [rw] filter
3935
3705
  # @return [::String]
3936
3706
  # A filter expression that filters resources listed in the response. Most
@@ -4040,12 +3810,12 @@ module Google
4040
3810
  # @return [::Integer]
4041
3811
  # The Shared VPC service project id or service project number for which
4042
3812
  # aggregated list request is invoked for subnetworks list-usable api.
4043
- class AggregatedListNetworkEndpointGroupsRequest
3813
+ class AggregatedListMachineTypesRequest
4044
3814
  include ::Google::Protobuf::MessageExts
4045
3815
  extend ::Google::Protobuf::MessageExts::ClassMethods
4046
3816
  end
4047
3817
 
4048
- # A request message for NetworkFirewallPolicies.AggregatedList. See the method description for details.
3818
+ # A request message for NetworkAttachments.AggregatedList. See the method description for details.
4049
3819
  # @!attribute [rw] filter
4050
3820
  # @return [::String]
4051
3821
  # A filter expression that filters resources listed in the response. Most
@@ -4155,12 +3925,127 @@ module Google
4155
3925
  # @return [::Integer]
4156
3926
  # The Shared VPC service project id or service project number for which
4157
3927
  # aggregated list request is invoked for subnetworks list-usable api.
4158
- class AggregatedListNetworkFirewallPoliciesRequest
3928
+ class AggregatedListNetworkAttachmentsRequest
4159
3929
  include ::Google::Protobuf::MessageExts
4160
3930
  extend ::Google::Protobuf::MessageExts::ClassMethods
4161
3931
  end
4162
3932
 
4163
- # A request message for NodeGroups.AggregatedList. See the method description for details.
3933
+ # A request message for NetworkEdgeSecurityServices.AggregatedList. See the method description for details.
3934
+ # @!attribute [rw] filter
3935
+ # @return [::String]
3936
+ # A filter expression that filters resources listed in the response. Most
3937
+ # Compute resources support two types of filter expressions:
3938
+ # expressions that support regular expressions and expressions that follow
3939
+ # API improvement proposal AIP-160.
3940
+ # These two types of filter expressions cannot be mixed in one request.
3941
+ #
3942
+ # If you want to use AIP-160, your expression must specify the field name, an
3943
+ # operator, and the value that you want to use for filtering. The value
3944
+ # must be a string, a number, or a boolean. The operator
3945
+ # must be either `=`, `!=`, `>`, `<`, `<=`, `>=` or `:`.
3946
+ #
3947
+ # For example, if you are filtering Compute Engine instances, you can
3948
+ # exclude instances named `example-instance` by specifying
3949
+ # `name != example-instance`.
3950
+ #
3951
+ # The `:*` comparison can be used to test whether a key has been defined.
3952
+ # For example, to find all objects with `owner` label use:
3953
+ # ```
3954
+ # labels.owner:*
3955
+ # ```
3956
+ #
3957
+ # You can also filter nested fields. For example, you could specify
3958
+ # `scheduling.automaticRestart = false` to include instances only
3959
+ # if they are not scheduled for automatic restarts. You can use filtering
3960
+ # on nested fields to filter based onresource labels.
3961
+ #
3962
+ # To filter on multiple expressions, provide each separate expression within
3963
+ # parentheses. For example:
3964
+ # ```
3965
+ # (scheduling.automaticRestart = true)
3966
+ # (cpuPlatform = "Intel Skylake")
3967
+ # ```
3968
+ # By default, each expression is an `AND` expression. However, you
3969
+ # can include `AND` and `OR` expressions explicitly.
3970
+ # For example:
3971
+ # ```
3972
+ # (cpuPlatform = "Intel Skylake") OR
3973
+ # (cpuPlatform = "Intel Broadwell") AND
3974
+ # (scheduling.automaticRestart = true)
3975
+ # ```
3976
+ #
3977
+ # If you want to use a regular expression, use the `eq` (equal) or `ne`
3978
+ # (not equal) operator against a single un-parenthesized expression with or
3979
+ # without quotes or against multiple parenthesized expressions. Examples:
3980
+ #
3981
+ # `fieldname eq unquoted literal`
3982
+ # `fieldname eq 'single quoted literal'`
3983
+ # `fieldname eq "double quoted literal"`
3984
+ # `(fieldname1 eq literal) (fieldname2 ne "literal")`
3985
+ #
3986
+ # The literal value is interpreted as a regular expression using GoogleRE2 library syntax.
3987
+ # The literal value must match the entire field.
3988
+ #
3989
+ # For example, to filter for instances that do not end with name "instance",
3990
+ # you would use `name ne .*instance`.
3991
+ #
3992
+ # You cannot combine constraints on multiple fields using regular
3993
+ # expressions.
3994
+ # @!attribute [rw] include_all_scopes
3995
+ # @return [::Boolean]
3996
+ # Indicates whether every visible scope for each scope type (zone, region,
3997
+ # global) should be included in the response. For new resource types added
3998
+ # after this field, the flag has no effect as new resource types will always
3999
+ # include every visible scope for each scope type in response. For resource
4000
+ # types which predate this field, if this flag is omitted or false, only
4001
+ # scopes of the scope types where the resource type is expected to be found
4002
+ # will be included.
4003
+ # @!attribute [rw] max_results
4004
+ # @return [::Integer]
4005
+ # The maximum number of results per page that should be returned.
4006
+ # If the number of available results is larger than `maxResults`,
4007
+ # Compute Engine returns a `nextPageToken` that can be used to get
4008
+ # the next page of results in subsequent list requests. Acceptable values are
4009
+ # `0` to `500`, inclusive. (Default: `500`)
4010
+ # @!attribute [rw] order_by
4011
+ # @return [::String]
4012
+ # Sorts list results by a certain order. By default, results
4013
+ # are returned in alphanumerical order based on the resource name.
4014
+ #
4015
+ # You can also sort results in descending order based on the creation
4016
+ # timestamp using `orderBy="creationTimestamp desc"`. This sorts
4017
+ # results based on the `creationTimestamp` field in
4018
+ # reverse chronological order (newest result first). Use this to sort
4019
+ # resources like operations so that the newest operation is returned first.
4020
+ #
4021
+ # Currently, only sorting by `name` or
4022
+ # `creationTimestamp desc` is supported.
4023
+ # @!attribute [rw] page_token
4024
+ # @return [::String]
4025
+ # Specifies a page token to use. Set `pageToken` to the
4026
+ # `nextPageToken` returned by a previous list request to get
4027
+ # the next page of results.
4028
+ # @!attribute [rw] project
4029
+ # @return [::String]
4030
+ # Name of the project scoping this request.
4031
+ # @!attribute [rw] return_partial_success
4032
+ # @return [::Boolean]
4033
+ # Opt-in for partial success behavior which provides partial results in case
4034
+ # of failure. The default value is false.
4035
+ #
4036
+ # For example, when partial success behavior is enabled, aggregatedList for a
4037
+ # single zone scope either returns all resources in the zone or no resources,
4038
+ # with an error code.
4039
+ # @!attribute [rw] service_project_number
4040
+ # @return [::Integer]
4041
+ # The Shared VPC service project id or service project number for which
4042
+ # aggregated list request is invoked for subnetworks list-usable api.
4043
+ class AggregatedListNetworkEdgeSecurityServicesRequest
4044
+ include ::Google::Protobuf::MessageExts
4045
+ extend ::Google::Protobuf::MessageExts::ClassMethods
4046
+ end
4047
+
4048
+ # A request message for NetworkEndpointGroups.AggregatedList. See the method description for details.
4164
4049
  # @!attribute [rw] filter
4165
4050
  # @return [::String]
4166
4051
  # A filter expression that filters resources listed in the response. Most
@@ -4270,12 +4155,12 @@ module Google
4270
4155
  # @return [::Integer]
4271
4156
  # The Shared VPC service project id or service project number for which
4272
4157
  # aggregated list request is invoked for subnetworks list-usable api.
4273
- class AggregatedListNodeGroupsRequest
4158
+ class AggregatedListNetworkEndpointGroupsRequest
4274
4159
  include ::Google::Protobuf::MessageExts
4275
4160
  extend ::Google::Protobuf::MessageExts::ClassMethods
4276
4161
  end
4277
4162
 
4278
- # A request message for NodeTemplates.AggregatedList. See the method description for details.
4163
+ # A request message for NetworkFirewallPolicies.AggregatedList. See the method description for details.
4279
4164
  # @!attribute [rw] filter
4280
4165
  # @return [::String]
4281
4166
  # A filter expression that filters resources listed in the response. Most
@@ -4385,12 +4270,12 @@ module Google
4385
4270
  # @return [::Integer]
4386
4271
  # The Shared VPC service project id or service project number for which
4387
4272
  # aggregated list request is invoked for subnetworks list-usable api.
4388
- class AggregatedListNodeTemplatesRequest
4273
+ class AggregatedListNetworkFirewallPoliciesRequest
4389
4274
  include ::Google::Protobuf::MessageExts
4390
4275
  extend ::Google::Protobuf::MessageExts::ClassMethods
4391
4276
  end
4392
4277
 
4393
- # A request message for NodeTypes.AggregatedList. See the method description for details.
4278
+ # A request message for NodeGroups.AggregatedList. See the method description for details.
4394
4279
  # @!attribute [rw] filter
4395
4280
  # @return [::String]
4396
4281
  # A filter expression that filters resources listed in the response. Most
@@ -4500,12 +4385,12 @@ module Google
4500
4385
  # @return [::Integer]
4501
4386
  # The Shared VPC service project id or service project number for which
4502
4387
  # aggregated list request is invoked for subnetworks list-usable api.
4503
- class AggregatedListNodeTypesRequest
4388
+ class AggregatedListNodeGroupsRequest
4504
4389
  include ::Google::Protobuf::MessageExts
4505
4390
  extend ::Google::Protobuf::MessageExts::ClassMethods
4506
4391
  end
4507
4392
 
4508
- # A request message for PacketMirrorings.AggregatedList. See the method description for details.
4393
+ # A request message for NodeTemplates.AggregatedList. See the method description for details.
4509
4394
  # @!attribute [rw] filter
4510
4395
  # @return [::String]
4511
4396
  # A filter expression that filters resources listed in the response. Most
@@ -4615,12 +4500,12 @@ module Google
4615
4500
  # @return [::Integer]
4616
4501
  # The Shared VPC service project id or service project number for which
4617
4502
  # aggregated list request is invoked for subnetworks list-usable api.
4618
- class AggregatedListPacketMirroringsRequest
4503
+ class AggregatedListNodeTemplatesRequest
4619
4504
  include ::Google::Protobuf::MessageExts
4620
4505
  extend ::Google::Protobuf::MessageExts::ClassMethods
4621
4506
  end
4622
4507
 
4623
- # A request message for PublicDelegatedPrefixes.AggregatedList. See the method description for details.
4508
+ # A request message for NodeTypes.AggregatedList. See the method description for details.
4624
4509
  # @!attribute [rw] filter
4625
4510
  # @return [::String]
4626
4511
  # A filter expression that filters resources listed in the response. Most
@@ -4717,7 +4602,7 @@ module Google
4717
4602
  # the next page of results.
4718
4603
  # @!attribute [rw] project
4719
4604
  # @return [::String]
4720
- # Name of the project scoping this request.
4605
+ # Project ID for this request.
4721
4606
  # @!attribute [rw] return_partial_success
4722
4607
  # @return [::Boolean]
4723
4608
  # Opt-in for partial success behavior which provides partial results in case
@@ -4730,12 +4615,12 @@ module Google
4730
4615
  # @return [::Integer]
4731
4616
  # The Shared VPC service project id or service project number for which
4732
4617
  # aggregated list request is invoked for subnetworks list-usable api.
4733
- class AggregatedListPublicDelegatedPrefixesRequest
4618
+ class AggregatedListNodeTypesRequest
4734
4619
  include ::Google::Protobuf::MessageExts
4735
4620
  extend ::Google::Protobuf::MessageExts::ClassMethods
4736
4621
  end
4737
4622
 
4738
- # A request message for RegionCommitments.AggregatedList. See the method description for details.
4623
+ # A request message for PacketMirrorings.AggregatedList. See the method description for details.
4739
4624
  # @!attribute [rw] filter
4740
4625
  # @return [::String]
4741
4626
  # A filter expression that filters resources listed in the response. Most
@@ -4845,12 +4730,12 @@ module Google
4845
4730
  # @return [::Integer]
4846
4731
  # The Shared VPC service project id or service project number for which
4847
4732
  # aggregated list request is invoked for subnetworks list-usable api.
4848
- class AggregatedListRegionCommitmentsRequest
4733
+ class AggregatedListPacketMirroringsRequest
4849
4734
  include ::Google::Protobuf::MessageExts
4850
4735
  extend ::Google::Protobuf::MessageExts::ClassMethods
4851
4736
  end
4852
4737
 
4853
- # A request message for RegionCompositeHealthChecks.AggregatedList. See the method description for details.
4738
+ # A request message for PublicDelegatedPrefixes.AggregatedList. See the method description for details.
4854
4739
  # @!attribute [rw] filter
4855
4740
  # @return [::String]
4856
4741
  # A filter expression that filters resources listed in the response. Most
@@ -4960,12 +4845,12 @@ module Google
4960
4845
  # @return [::Integer]
4961
4846
  # The Shared VPC service project id or service project number for which
4962
4847
  # aggregated list request is invoked for subnetworks list-usable api.
4963
- class AggregatedListRegionCompositeHealthChecksRequest
4848
+ class AggregatedListPublicDelegatedPrefixesRequest
4964
4849
  include ::Google::Protobuf::MessageExts
4965
4850
  extend ::Google::Protobuf::MessageExts::ClassMethods
4966
4851
  end
4967
4852
 
4968
- # A request message for RegionHealthAggregationPolicies.AggregatedList. See the method description for details.
4853
+ # A request message for RegionCommitments.AggregatedList. See the method description for details.
4969
4854
  # @!attribute [rw] filter
4970
4855
  # @return [::String]
4971
4856
  # A filter expression that filters resources listed in the response. Most
@@ -5062,7 +4947,7 @@ module Google
5062
4947
  # the next page of results.
5063
4948
  # @!attribute [rw] project
5064
4949
  # @return [::String]
5065
- # Name of the project scoping this request.
4950
+ # Project ID for this request.
5066
4951
  # @!attribute [rw] return_partial_success
5067
4952
  # @return [::Boolean]
5068
4953
  # Opt-in for partial success behavior which provides partial results in case
@@ -5075,12 +4960,12 @@ module Google
5075
4960
  # @return [::Integer]
5076
4961
  # The Shared VPC service project id or service project number for which
5077
4962
  # aggregated list request is invoked for subnetworks list-usable api.
5078
- class AggregatedListRegionHealthAggregationPoliciesRequest
4963
+ class AggregatedListRegionCommitmentsRequest
5079
4964
  include ::Google::Protobuf::MessageExts
5080
4965
  extend ::Google::Protobuf::MessageExts::ClassMethods
5081
4966
  end
5082
4967
 
5083
- # A request message for RegionHealthCheckServices.AggregatedList. See the method description for details.
4968
+ # A request message for RegionCompositeHealthChecks.AggregatedList. See the method description for details.
5084
4969
  # @!attribute [rw] filter
5085
4970
  # @return [::String]
5086
4971
  # A filter expression that filters resources listed in the response. Most
@@ -5190,12 +5075,12 @@ module Google
5190
5075
  # @return [::Integer]
5191
5076
  # The Shared VPC service project id or service project number for which
5192
5077
  # aggregated list request is invoked for subnetworks list-usable api.
5193
- class AggregatedListRegionHealthCheckServicesRequest
5078
+ class AggregatedListRegionCompositeHealthChecksRequest
5194
5079
  include ::Google::Protobuf::MessageExts
5195
5080
  extend ::Google::Protobuf::MessageExts::ClassMethods
5196
5081
  end
5197
5082
 
5198
- # A request message for RegionHealthSources.AggregatedList. See the method description for details.
5083
+ # A request message for RegionHealthAggregationPolicies.AggregatedList. See the method description for details.
5199
5084
  # @!attribute [rw] filter
5200
5085
  # @return [::String]
5201
5086
  # A filter expression that filters resources listed in the response. Most
@@ -5305,12 +5190,12 @@ module Google
5305
5190
  # @return [::Integer]
5306
5191
  # The Shared VPC service project id or service project number for which
5307
5192
  # aggregated list request is invoked for subnetworks list-usable api.
5308
- class AggregatedListRegionHealthSourcesRequest
5193
+ class AggregatedListRegionHealthAggregationPoliciesRequest
5309
5194
  include ::Google::Protobuf::MessageExts
5310
5195
  extend ::Google::Protobuf::MessageExts::ClassMethods
5311
5196
  end
5312
5197
 
5313
- # A request message for RegionNotificationEndpoints.AggregatedList. See the method description for details.
5198
+ # A request message for RegionHealthCheckServices.AggregatedList. See the method description for details.
5314
5199
  # @!attribute [rw] filter
5315
5200
  # @return [::String]
5316
5201
  # A filter expression that filters resources listed in the response. Most
@@ -5420,12 +5305,12 @@ module Google
5420
5305
  # @return [::Integer]
5421
5306
  # The Shared VPC service project id or service project number for which
5422
5307
  # aggregated list request is invoked for subnetworks list-usable api.
5423
- class AggregatedListRegionNotificationEndpointsRequest
5308
+ class AggregatedListRegionHealthCheckServicesRequest
5424
5309
  include ::Google::Protobuf::MessageExts
5425
5310
  extend ::Google::Protobuf::MessageExts::ClassMethods
5426
5311
  end
5427
5312
 
5428
- # A request message for Reservations.AggregatedList. See the method description for details.
5313
+ # A request message for RegionHealthSources.AggregatedList. See the method description for details.
5429
5314
  # @!attribute [rw] filter
5430
5315
  # @return [::String]
5431
5316
  # A filter expression that filters resources listed in the response. Most
@@ -5522,7 +5407,7 @@ module Google
5522
5407
  # the next page of results.
5523
5408
  # @!attribute [rw] project
5524
5409
  # @return [::String]
5525
- # Project ID for this request.
5410
+ # Name of the project scoping this request.
5526
5411
  # @!attribute [rw] return_partial_success
5527
5412
  # @return [::Boolean]
5528
5413
  # Opt-in for partial success behavior which provides partial results in case
@@ -5535,12 +5420,12 @@ module Google
5535
5420
  # @return [::Integer]
5536
5421
  # The Shared VPC service project id or service project number for which
5537
5422
  # aggregated list request is invoked for subnetworks list-usable api.
5538
- class AggregatedListReservationsRequest
5423
+ class AggregatedListRegionHealthSourcesRequest
5539
5424
  include ::Google::Protobuf::MessageExts
5540
5425
  extend ::Google::Protobuf::MessageExts::ClassMethods
5541
5426
  end
5542
5427
 
5543
- # A request message for ResourcePolicies.AggregatedList. See the method description for details.
5428
+ # A request message for RegionNotificationEndpoints.AggregatedList. See the method description for details.
5544
5429
  # @!attribute [rw] filter
5545
5430
  # @return [::String]
5546
5431
  # A filter expression that filters resources listed in the response. Most
@@ -5637,7 +5522,7 @@ module Google
5637
5522
  # the next page of results.
5638
5523
  # @!attribute [rw] project
5639
5524
  # @return [::String]
5640
- # Project ID for this request.
5525
+ # Name of the project scoping this request.
5641
5526
  # @!attribute [rw] return_partial_success
5642
5527
  # @return [::Boolean]
5643
5528
  # Opt-in for partial success behavior which provides partial results in case
@@ -5650,12 +5535,12 @@ module Google
5650
5535
  # @return [::Integer]
5651
5536
  # The Shared VPC service project id or service project number for which
5652
5537
  # aggregated list request is invoked for subnetworks list-usable api.
5653
- class AggregatedListResourcePoliciesRequest
5538
+ class AggregatedListRegionNotificationEndpointsRequest
5654
5539
  include ::Google::Protobuf::MessageExts
5655
5540
  extend ::Google::Protobuf::MessageExts::ClassMethods
5656
5541
  end
5657
5542
 
5658
- # A request message for Routers.AggregatedList. See the method description for details.
5543
+ # A request message for Reservations.AggregatedList. See the method description for details.
5659
5544
  # @!attribute [rw] filter
5660
5545
  # @return [::String]
5661
5546
  # A filter expression that filters resources listed in the response. Most
@@ -5765,12 +5650,12 @@ module Google
5765
5650
  # @return [::Integer]
5766
5651
  # The Shared VPC service project id or service project number for which
5767
5652
  # aggregated list request is invoked for subnetworks list-usable api.
5768
- class AggregatedListRoutersRequest
5653
+ class AggregatedListReservationsRequest
5769
5654
  include ::Google::Protobuf::MessageExts
5770
5655
  extend ::Google::Protobuf::MessageExts::ClassMethods
5771
5656
  end
5772
5657
 
5773
- # A request message for SecurityPolicies.AggregatedList. See the method description for details.
5658
+ # A request message for ResourcePolicies.AggregatedList. See the method description for details.
5774
5659
  # @!attribute [rw] filter
5775
5660
  # @return [::String]
5776
5661
  # A filter expression that filters resources listed in the response. Most
@@ -5867,7 +5752,7 @@ module Google
5867
5752
  # the next page of results.
5868
5753
  # @!attribute [rw] project
5869
5754
  # @return [::String]
5870
- # Name of the project scoping this request.
5755
+ # Project ID for this request.
5871
5756
  # @!attribute [rw] return_partial_success
5872
5757
  # @return [::Boolean]
5873
5758
  # Opt-in for partial success behavior which provides partial results in case
@@ -5880,12 +5765,12 @@ module Google
5880
5765
  # @return [::Integer]
5881
5766
  # The Shared VPC service project id or service project number for which
5882
5767
  # aggregated list request is invoked for subnetworks list-usable api.
5883
- class AggregatedListSecurityPoliciesRequest
5768
+ class AggregatedListResourcePoliciesRequest
5884
5769
  include ::Google::Protobuf::MessageExts
5885
5770
  extend ::Google::Protobuf::MessageExts::ClassMethods
5886
5771
  end
5887
5772
 
5888
- # A request message for ServiceAttachments.AggregatedList. See the method description for details.
5773
+ # A request message for Routers.AggregatedList. See the method description for details.
5889
5774
  # @!attribute [rw] filter
5890
5775
  # @return [::String]
5891
5776
  # A filter expression that filters resources listed in the response. Most
@@ -5982,7 +5867,7 @@ module Google
5982
5867
  # the next page of results.
5983
5868
  # @!attribute [rw] project
5984
5869
  # @return [::String]
5985
- # Name of the project scoping this request.
5870
+ # Project ID for this request.
5986
5871
  # @!attribute [rw] return_partial_success
5987
5872
  # @return [::Boolean]
5988
5873
  # Opt-in for partial success behavior which provides partial results in case
@@ -5995,12 +5880,12 @@ module Google
5995
5880
  # @return [::Integer]
5996
5881
  # The Shared VPC service project id or service project number for which
5997
5882
  # aggregated list request is invoked for subnetworks list-usable api.
5998
- class AggregatedListServiceAttachmentsRequest
5883
+ class AggregatedListRoutersRequest
5999
5884
  include ::Google::Protobuf::MessageExts
6000
5885
  extend ::Google::Protobuf::MessageExts::ClassMethods
6001
5886
  end
6002
5887
 
6003
- # A request message for SslCertificates.AggregatedList. See the method description for details.
5888
+ # A request message for SecurityPolicies.AggregatedList. See the method description for details.
6004
5889
  # @!attribute [rw] filter
6005
5890
  # @return [::String]
6006
5891
  # A filter expression that filters resources listed in the response. Most
@@ -6110,12 +5995,12 @@ module Google
6110
5995
  # @return [::Integer]
6111
5996
  # The Shared VPC service project id or service project number for which
6112
5997
  # aggregated list request is invoked for subnetworks list-usable api.
6113
- class AggregatedListSslCertificatesRequest
5998
+ class AggregatedListSecurityPoliciesRequest
6114
5999
  include ::Google::Protobuf::MessageExts
6115
6000
  extend ::Google::Protobuf::MessageExts::ClassMethods
6116
6001
  end
6117
6002
 
6118
- # A request message for SslPolicies.AggregatedList. See the method description for details.
6003
+ # A request message for ServiceAttachments.AggregatedList. See the method description for details.
6119
6004
  # @!attribute [rw] filter
6120
6005
  # @return [::String]
6121
6006
  # A filter expression that filters resources listed in the response. Most
@@ -6225,12 +6110,12 @@ module Google
6225
6110
  # @return [::Integer]
6226
6111
  # The Shared VPC service project id or service project number for which
6227
6112
  # aggregated list request is invoked for subnetworks list-usable api.
6228
- class AggregatedListSslPoliciesRequest
6113
+ class AggregatedListServiceAttachmentsRequest
6229
6114
  include ::Google::Protobuf::MessageExts
6230
6115
  extend ::Google::Protobuf::MessageExts::ClassMethods
6231
6116
  end
6232
6117
 
6233
- # A request message for StoragePoolTypes.AggregatedList. See the method description for details.
6118
+ # A request message for SslCertificates.AggregatedList. See the method description for details.
6234
6119
  # @!attribute [rw] filter
6235
6120
  # @return [::String]
6236
6121
  # A filter expression that filters resources listed in the response. Most
@@ -6327,7 +6212,7 @@ module Google
6327
6212
  # the next page of results.
6328
6213
  # @!attribute [rw] project
6329
6214
  # @return [::String]
6330
- # Project ID for this request.
6215
+ # Name of the project scoping this request.
6331
6216
  # @!attribute [rw] return_partial_success
6332
6217
  # @return [::Boolean]
6333
6218
  # Opt-in for partial success behavior which provides partial results in case
@@ -6340,12 +6225,12 @@ module Google
6340
6225
  # @return [::Integer]
6341
6226
  # The Shared VPC service project id or service project number for which
6342
6227
  # aggregated list request is invoked for subnetworks list-usable api.
6343
- class AggregatedListStoragePoolTypesRequest
6228
+ class AggregatedListSslCertificatesRequest
6344
6229
  include ::Google::Protobuf::MessageExts
6345
6230
  extend ::Google::Protobuf::MessageExts::ClassMethods
6346
6231
  end
6347
6232
 
6348
- # A request message for StoragePools.AggregatedList. See the method description for details.
6233
+ # A request message for SslPolicies.AggregatedList. See the method description for details.
6349
6234
  # @!attribute [rw] filter
6350
6235
  # @return [::String]
6351
6236
  # A filter expression that filters resources listed in the response. Most
@@ -6442,7 +6327,7 @@ module Google
6442
6327
  # the next page of results.
6443
6328
  # @!attribute [rw] project
6444
6329
  # @return [::String]
6445
- # Project ID for this request.
6330
+ # Name of the project scoping this request.
6446
6331
  # @!attribute [rw] return_partial_success
6447
6332
  # @return [::Boolean]
6448
6333
  # Opt-in for partial success behavior which provides partial results in case
@@ -6455,12 +6340,12 @@ module Google
6455
6340
  # @return [::Integer]
6456
6341
  # The Shared VPC service project id or service project number for which
6457
6342
  # aggregated list request is invoked for subnetworks list-usable api.
6458
- class AggregatedListStoragePoolsRequest
6343
+ class AggregatedListSslPoliciesRequest
6459
6344
  include ::Google::Protobuf::MessageExts
6460
6345
  extend ::Google::Protobuf::MessageExts::ClassMethods
6461
6346
  end
6462
6347
 
6463
- # A request message for Subnetworks.AggregatedList. See the method description for details.
6348
+ # A request message for StoragePoolTypes.AggregatedList. See the method description for details.
6464
6349
  # @!attribute [rw] filter
6465
6350
  # @return [::String]
6466
6351
  # A filter expression that filters resources listed in the response. Most
@@ -6570,35 +6455,12 @@ module Google
6570
6455
  # @return [::Integer]
6571
6456
  # The Shared VPC service project id or service project number for which
6572
6457
  # aggregated list request is invoked for subnetworks list-usable api.
6573
- # @!attribute [rw] views
6574
- # @return [::String]
6575
- # Defines the extra views returned back in the subnetwork resource.
6576
- # Supported values:
6577
- #
6578
- # - WITH_UTILIZATION: Utilization data is included in the
6579
- # response.
6580
- # Check the Views enum for the list of possible values.
6581
- class AggregatedListSubnetworksRequest
6458
+ class AggregatedListStoragePoolTypesRequest
6582
6459
  include ::Google::Protobuf::MessageExts
6583
6460
  extend ::Google::Protobuf::MessageExts::ClassMethods
6584
-
6585
- # Defines the extra views returned back in the subnetwork resource.
6586
- # Supported values:
6587
- #
6588
- # - WITH_UTILIZATION: Utilization data is included in the
6589
- # response.
6590
- module Views
6591
- # A value indicating that the enum field is not set.
6592
- UNDEFINED_VIEWS = 0
6593
-
6594
- DEFAULT = 115_302_945
6595
-
6596
- # Utilization data is included in the response.
6597
- WITH_UTILIZATION = 504_090_633
6598
- end
6599
6461
  end
6600
6462
 
6601
- # A request message for TargetHttpProxies.AggregatedList. See the method description for details.
6463
+ # A request message for StoragePools.AggregatedList. See the method description for details.
6602
6464
  # @!attribute [rw] filter
6603
6465
  # @return [::String]
6604
6466
  # A filter expression that filters resources listed in the response. Most
@@ -6695,7 +6557,7 @@ module Google
6695
6557
  # the next page of results.
6696
6558
  # @!attribute [rw] project
6697
6559
  # @return [::String]
6698
- # Name of the project scoping this request.
6560
+ # Project ID for this request.
6699
6561
  # @!attribute [rw] return_partial_success
6700
6562
  # @return [::Boolean]
6701
6563
  # Opt-in for partial success behavior which provides partial results in case
@@ -6708,12 +6570,265 @@ module Google
6708
6570
  # @return [::Integer]
6709
6571
  # The Shared VPC service project id or service project number for which
6710
6572
  # aggregated list request is invoked for subnetworks list-usable api.
6711
- class AggregatedListTargetHttpProxiesRequest
6573
+ class AggregatedListStoragePoolsRequest
6712
6574
  include ::Google::Protobuf::MessageExts
6713
6575
  extend ::Google::Protobuf::MessageExts::ClassMethods
6714
6576
  end
6715
6577
 
6716
- # A request message for TargetHttpsProxies.AggregatedList. See the method description for details.
6578
+ # A request message for Subnetworks.AggregatedList. See the method description for details.
6579
+ # @!attribute [rw] filter
6580
+ # @return [::String]
6581
+ # A filter expression that filters resources listed in the response. Most
6582
+ # Compute resources support two types of filter expressions:
6583
+ # expressions that support regular expressions and expressions that follow
6584
+ # API improvement proposal AIP-160.
6585
+ # These two types of filter expressions cannot be mixed in one request.
6586
+ #
6587
+ # If you want to use AIP-160, your expression must specify the field name, an
6588
+ # operator, and the value that you want to use for filtering. The value
6589
+ # must be a string, a number, or a boolean. The operator
6590
+ # must be either `=`, `!=`, `>`, `<`, `<=`, `>=` or `:`.
6591
+ #
6592
+ # For example, if you are filtering Compute Engine instances, you can
6593
+ # exclude instances named `example-instance` by specifying
6594
+ # `name != example-instance`.
6595
+ #
6596
+ # The `:*` comparison can be used to test whether a key has been defined.
6597
+ # For example, to find all objects with `owner` label use:
6598
+ # ```
6599
+ # labels.owner:*
6600
+ # ```
6601
+ #
6602
+ # You can also filter nested fields. For example, you could specify
6603
+ # `scheduling.automaticRestart = false` to include instances only
6604
+ # if they are not scheduled for automatic restarts. You can use filtering
6605
+ # on nested fields to filter based onresource labels.
6606
+ #
6607
+ # To filter on multiple expressions, provide each separate expression within
6608
+ # parentheses. For example:
6609
+ # ```
6610
+ # (scheduling.automaticRestart = true)
6611
+ # (cpuPlatform = "Intel Skylake")
6612
+ # ```
6613
+ # By default, each expression is an `AND` expression. However, you
6614
+ # can include `AND` and `OR` expressions explicitly.
6615
+ # For example:
6616
+ # ```
6617
+ # (cpuPlatform = "Intel Skylake") OR
6618
+ # (cpuPlatform = "Intel Broadwell") AND
6619
+ # (scheduling.automaticRestart = true)
6620
+ # ```
6621
+ #
6622
+ # If you want to use a regular expression, use the `eq` (equal) or `ne`
6623
+ # (not equal) operator against a single un-parenthesized expression with or
6624
+ # without quotes or against multiple parenthesized expressions. Examples:
6625
+ #
6626
+ # `fieldname eq unquoted literal`
6627
+ # `fieldname eq 'single quoted literal'`
6628
+ # `fieldname eq "double quoted literal"`
6629
+ # `(fieldname1 eq literal) (fieldname2 ne "literal")`
6630
+ #
6631
+ # The literal value is interpreted as a regular expression using GoogleRE2 library syntax.
6632
+ # The literal value must match the entire field.
6633
+ #
6634
+ # For example, to filter for instances that do not end with name "instance",
6635
+ # you would use `name ne .*instance`.
6636
+ #
6637
+ # You cannot combine constraints on multiple fields using regular
6638
+ # expressions.
6639
+ # @!attribute [rw] include_all_scopes
6640
+ # @return [::Boolean]
6641
+ # Indicates whether every visible scope for each scope type (zone, region,
6642
+ # global) should be included in the response. For new resource types added
6643
+ # after this field, the flag has no effect as new resource types will always
6644
+ # include every visible scope for each scope type in response. For resource
6645
+ # types which predate this field, if this flag is omitted or false, only
6646
+ # scopes of the scope types where the resource type is expected to be found
6647
+ # will be included.
6648
+ # @!attribute [rw] max_results
6649
+ # @return [::Integer]
6650
+ # The maximum number of results per page that should be returned.
6651
+ # If the number of available results is larger than `maxResults`,
6652
+ # Compute Engine returns a `nextPageToken` that can be used to get
6653
+ # the next page of results in subsequent list requests. Acceptable values are
6654
+ # `0` to `500`, inclusive. (Default: `500`)
6655
+ # @!attribute [rw] order_by
6656
+ # @return [::String]
6657
+ # Sorts list results by a certain order. By default, results
6658
+ # are returned in alphanumerical order based on the resource name.
6659
+ #
6660
+ # You can also sort results in descending order based on the creation
6661
+ # timestamp using `orderBy="creationTimestamp desc"`. This sorts
6662
+ # results based on the `creationTimestamp` field in
6663
+ # reverse chronological order (newest result first). Use this to sort
6664
+ # resources like operations so that the newest operation is returned first.
6665
+ #
6666
+ # Currently, only sorting by `name` or
6667
+ # `creationTimestamp desc` is supported.
6668
+ # @!attribute [rw] page_token
6669
+ # @return [::String]
6670
+ # Specifies a page token to use. Set `pageToken` to the
6671
+ # `nextPageToken` returned by a previous list request to get
6672
+ # the next page of results.
6673
+ # @!attribute [rw] project
6674
+ # @return [::String]
6675
+ # Project ID for this request.
6676
+ # @!attribute [rw] return_partial_success
6677
+ # @return [::Boolean]
6678
+ # Opt-in for partial success behavior which provides partial results in case
6679
+ # of failure. The default value is false.
6680
+ #
6681
+ # For example, when partial success behavior is enabled, aggregatedList for a
6682
+ # single zone scope either returns all resources in the zone or no resources,
6683
+ # with an error code.
6684
+ # @!attribute [rw] service_project_number
6685
+ # @return [::Integer]
6686
+ # The Shared VPC service project id or service project number for which
6687
+ # aggregated list request is invoked for subnetworks list-usable api.
6688
+ # @!attribute [rw] views
6689
+ # @return [::String]
6690
+ # Defines the extra views returned back in the subnetwork resource.
6691
+ # Supported values:
6692
+ #
6693
+ # - WITH_UTILIZATION: Utilization data is included in the
6694
+ # response.
6695
+ # Check the Views enum for the list of possible values.
6696
+ class AggregatedListSubnetworksRequest
6697
+ include ::Google::Protobuf::MessageExts
6698
+ extend ::Google::Protobuf::MessageExts::ClassMethods
6699
+
6700
+ # Defines the extra views returned back in the subnetwork resource.
6701
+ # Supported values:
6702
+ #
6703
+ # - WITH_UTILIZATION: Utilization data is included in the
6704
+ # response.
6705
+ module Views
6706
+ # A value indicating that the enum field is not set.
6707
+ UNDEFINED_VIEWS = 0
6708
+
6709
+ DEFAULT = 115_302_945
6710
+
6711
+ # Utilization data is included in the response.
6712
+ WITH_UTILIZATION = 504_090_633
6713
+ end
6714
+ end
6715
+
6716
+ # A request message for TargetHttpProxies.AggregatedList. See the method description for details.
6717
+ # @!attribute [rw] filter
6718
+ # @return [::String]
6719
+ # A filter expression that filters resources listed in the response. Most
6720
+ # Compute resources support two types of filter expressions:
6721
+ # expressions that support regular expressions and expressions that follow
6722
+ # API improvement proposal AIP-160.
6723
+ # These two types of filter expressions cannot be mixed in one request.
6724
+ #
6725
+ # If you want to use AIP-160, your expression must specify the field name, an
6726
+ # operator, and the value that you want to use for filtering. The value
6727
+ # must be a string, a number, or a boolean. The operator
6728
+ # must be either `=`, `!=`, `>`, `<`, `<=`, `>=` or `:`.
6729
+ #
6730
+ # For example, if you are filtering Compute Engine instances, you can
6731
+ # exclude instances named `example-instance` by specifying
6732
+ # `name != example-instance`.
6733
+ #
6734
+ # The `:*` comparison can be used to test whether a key has been defined.
6735
+ # For example, to find all objects with `owner` label use:
6736
+ # ```
6737
+ # labels.owner:*
6738
+ # ```
6739
+ #
6740
+ # You can also filter nested fields. For example, you could specify
6741
+ # `scheduling.automaticRestart = false` to include instances only
6742
+ # if they are not scheduled for automatic restarts. You can use filtering
6743
+ # on nested fields to filter based onresource labels.
6744
+ #
6745
+ # To filter on multiple expressions, provide each separate expression within
6746
+ # parentheses. For example:
6747
+ # ```
6748
+ # (scheduling.automaticRestart = true)
6749
+ # (cpuPlatform = "Intel Skylake")
6750
+ # ```
6751
+ # By default, each expression is an `AND` expression. However, you
6752
+ # can include `AND` and `OR` expressions explicitly.
6753
+ # For example:
6754
+ # ```
6755
+ # (cpuPlatform = "Intel Skylake") OR
6756
+ # (cpuPlatform = "Intel Broadwell") AND
6757
+ # (scheduling.automaticRestart = true)
6758
+ # ```
6759
+ #
6760
+ # If you want to use a regular expression, use the `eq` (equal) or `ne`
6761
+ # (not equal) operator against a single un-parenthesized expression with or
6762
+ # without quotes or against multiple parenthesized expressions. Examples:
6763
+ #
6764
+ # `fieldname eq unquoted literal`
6765
+ # `fieldname eq 'single quoted literal'`
6766
+ # `fieldname eq "double quoted literal"`
6767
+ # `(fieldname1 eq literal) (fieldname2 ne "literal")`
6768
+ #
6769
+ # The literal value is interpreted as a regular expression using GoogleRE2 library syntax.
6770
+ # The literal value must match the entire field.
6771
+ #
6772
+ # For example, to filter for instances that do not end with name "instance",
6773
+ # you would use `name ne .*instance`.
6774
+ #
6775
+ # You cannot combine constraints on multiple fields using regular
6776
+ # expressions.
6777
+ # @!attribute [rw] include_all_scopes
6778
+ # @return [::Boolean]
6779
+ # Indicates whether every visible scope for each scope type (zone, region,
6780
+ # global) should be included in the response. For new resource types added
6781
+ # after this field, the flag has no effect as new resource types will always
6782
+ # include every visible scope for each scope type in response. For resource
6783
+ # types which predate this field, if this flag is omitted or false, only
6784
+ # scopes of the scope types where the resource type is expected to be found
6785
+ # will be included.
6786
+ # @!attribute [rw] max_results
6787
+ # @return [::Integer]
6788
+ # The maximum number of results per page that should be returned.
6789
+ # If the number of available results is larger than `maxResults`,
6790
+ # Compute Engine returns a `nextPageToken` that can be used to get
6791
+ # the next page of results in subsequent list requests. Acceptable values are
6792
+ # `0` to `500`, inclusive. (Default: `500`)
6793
+ # @!attribute [rw] order_by
6794
+ # @return [::String]
6795
+ # Sorts list results by a certain order. By default, results
6796
+ # are returned in alphanumerical order based on the resource name.
6797
+ #
6798
+ # You can also sort results in descending order based on the creation
6799
+ # timestamp using `orderBy="creationTimestamp desc"`. This sorts
6800
+ # results based on the `creationTimestamp` field in
6801
+ # reverse chronological order (newest result first). Use this to sort
6802
+ # resources like operations so that the newest operation is returned first.
6803
+ #
6804
+ # Currently, only sorting by `name` or
6805
+ # `creationTimestamp desc` is supported.
6806
+ # @!attribute [rw] page_token
6807
+ # @return [::String]
6808
+ # Specifies a page token to use. Set `pageToken` to the
6809
+ # `nextPageToken` returned by a previous list request to get
6810
+ # the next page of results.
6811
+ # @!attribute [rw] project
6812
+ # @return [::String]
6813
+ # Name of the project scoping this request.
6814
+ # @!attribute [rw] return_partial_success
6815
+ # @return [::Boolean]
6816
+ # Opt-in for partial success behavior which provides partial results in case
6817
+ # of failure. The default value is false.
6818
+ #
6819
+ # For example, when partial success behavior is enabled, aggregatedList for a
6820
+ # single zone scope either returns all resources in the zone or no resources,
6821
+ # with an error code.
6822
+ # @!attribute [rw] service_project_number
6823
+ # @return [::Integer]
6824
+ # The Shared VPC service project id or service project number for which
6825
+ # aggregated list request is invoked for subnetworks list-usable api.
6826
+ class AggregatedListTargetHttpProxiesRequest
6827
+ include ::Google::Protobuf::MessageExts
6828
+ extend ::Google::Protobuf::MessageExts::ClassMethods
6829
+ end
6830
+
6831
+ # A request message for TargetHttpsProxies.AggregatedList. See the method description for details.
6717
6832
  # @!attribute [rw] filter
6718
6833
  # @return [::String]
6719
6834
  # A filter expression that filters resources listed in the response. Most
@@ -8454,8 +8569,8 @@ module Google
8454
8569
  # Input only. Resource manager tags to be bound to the disk. Tag keys and values
8455
8570
  # have the same definition as resource
8456
8571
  # manager tags. Keys and values can be either in numeric format,
8457
- # such as `tagKeys/{tag_key_id}` and `tagValues/456` or in namespaced
8458
- # format such as `{org_id|project_id}/{tag_key_short_name}` and
8572
+ # such as `tagKeys/{tag_key_id}` and `tagValues/{tag_value_id}` or in
8573
+ # namespaced format such as `{org_id|project_id}/{tag_key_short_name}` and
8459
8574
  # `{tag_value_short_name}`. The field is ignored (both PUT & PATCH) when
8460
8575
  # empty.
8461
8576
  # @!attribute [rw] resource_policies
@@ -9198,6 +9313,16 @@ module Google
9198
9313
  # can be set on an autoscaler, and they can overlap. During overlapping
9199
9314
  # periods the greatest min_required_replicas of all scaling schedules is
9200
9315
  # applied. Up to 128 scaling schedules are allowed.
9316
+ # @!attribute [rw] stabilization_period_sec
9317
+ # @return [::Integer]
9318
+ # The number of seconds that autoscaler waits for load stabilization before
9319
+ # making scale-in decisions. This is referred to as the
9320
+ # [stabilization period](/compute/docs/autoscaler#stabilization_period).
9321
+ # This might appear as a delay in scaling in but it is an important mechanism
9322
+ # for your application to not have fluctuating size due to short term load
9323
+ # fluctuations.
9324
+ #
9325
+ # The default stabilization period is 600 seconds.
9201
9326
  class AutoscalingPolicy
9202
9327
  include ::Google::Protobuf::MessageExts
9203
9328
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -13442,6 +13567,69 @@ module Google
13442
13567
  extend ::Google::Protobuf::MessageExts::ClassMethods
13443
13568
  end
13444
13569
 
13570
+ # A request message for Networks.CancelRequestRemovePeering. See the method description for details.
13571
+ # @!attribute [rw] network
13572
+ # @return [::String]
13573
+ # Name of the network resource to remove peering from.
13574
+ # @!attribute [rw] networks_cancel_request_remove_peering_request_resource
13575
+ # @return [::Google::Cloud::Compute::V1::NetworksCancelRequestRemovePeeringRequest]
13576
+ # The body resource for this request
13577
+ # @!attribute [rw] project
13578
+ # @return [::String]
13579
+ # Project ID for this request.
13580
+ # @!attribute [rw] request_id
13581
+ # @return [::String]
13582
+ # An optional request ID to identify requests. Specify a unique request ID so
13583
+ # that if you must retry your request, the server will know to ignore the
13584
+ # request if it has already been completed.
13585
+ #
13586
+ # For example, consider a situation where you make an initial request and
13587
+ # the request times out. If you make the request again with the same
13588
+ # request ID, the server can check if original operation with the same
13589
+ # request ID was received, and if so, will ignore the second request. This
13590
+ # prevents clients from accidentally creating duplicate commitments.
13591
+ #
13592
+ # The request ID must be
13593
+ # a valid UUID with the exception that zero UUID is not supported
13594
+ # (00000000-0000-0000-0000-000000000000).
13595
+ class CancelRequestRemovePeeringNetworkRequest
13596
+ include ::Google::Protobuf::MessageExts
13597
+ extend ::Google::Protobuf::MessageExts::ClassMethods
13598
+ end
13599
+
13600
+ # A request message for Rollouts.Cancel. See the method description for details.
13601
+ # @!attribute [rw] project
13602
+ # @return [::String]
13603
+ # Project ID for this request.
13604
+ # @!attribute [rw] request_id
13605
+ # @return [::String]
13606
+ # An optional request ID to identify requests. Specify a unique request ID so
13607
+ # that if you must retry your request, the server will know to ignore the
13608
+ # request if it has already been completed.
13609
+ #
13610
+ # For example, consider a situation where you make an initial request and
13611
+ # the request times out. If you make the request again with the same
13612
+ # request ID, the server can check if original operation with the same
13613
+ # request ID was received, and if so, will ignore the second request. This
13614
+ # prevents clients from accidentally creating duplicate commitments.
13615
+ #
13616
+ # The request ID must be
13617
+ # a valid UUID with the exception that zero UUID is not supported
13618
+ # (00000000-0000-0000-0000-000000000000).
13619
+ # @!attribute [rw] rollback
13620
+ # @return [::Boolean]
13621
+ # Optional. If true, then the ongoing rollout must be rolled back. Else, just cancel
13622
+ # the rollout without taking any further actions. Note that products must
13623
+ # support at least one of these options, however, it does not need to support
13624
+ # both.
13625
+ # @!attribute [rw] rollout
13626
+ # @return [::String]
13627
+ # Name of the Rollout resource to cancel.
13628
+ class CancelRolloutRequest
13629
+ include ::Google::Protobuf::MessageExts
13630
+ extend ::Google::Protobuf::MessageExts::ClassMethods
13631
+ end
13632
+
13445
13633
  # Settings controlling the volume of requests, connections and retries to this
13446
13634
  # backend service.
13447
13635
  # @!attribute [rw] max_connections
@@ -13708,7 +13896,7 @@ module Google
13708
13896
  # resource types.
13709
13897
  #
13710
13898
  # The type must be one of the following:ACCELERATOR_OPTIMIZED, ACCELERATOR_OPTIMIZED_A3,ACCELERATOR_OPTIMIZED_A3_MEGA,COMPUTE_OPTIMIZED, COMPUTE_OPTIMIZED_C2D,
13711
- # COMPUTE_OPTIMIZED_C3, COMPUTE_OPTIMIZED_C3D,COMPUTE_OPTIMIZED_H3, GENERAL_PURPOSE,GENERAL_PURPOSE_C4, GENERAL_PURPOSE_E2,GENERAL_PURPOSE_N2, GENERAL_PURPOSE_N2D,GENERAL_PURPOSE_N4, GENERAL_PURPOSE_T2D,GRAPHICS_OPTIMIZED, GRAPHICS_OPTIMIZED_G4,MEMORY_OPTIMIZED, MEMORY_OPTIMIZED_M3,MEMORY_OPTIMIZED_X4, STORAGE_OPTIMIZED_Z3. For
13899
+ # COMPUTE_OPTIMIZED_C3, COMPUTE_OPTIMIZED_C3D,COMPUTE_OPTIMIZED_H3, GENERAL_PURPOSE,GENERAL_PURPOSE_C4, GENERAL_PURPOSE_E2,GENERAL_PURPOSE_N2, GENERAL_PURPOSE_N2D,GENERAL_PURPOSE_N4, GENERAL_PURPOSE_T2D,GRAPHICS_OPTIMIZED, GRAPHICS_OPTIMIZED_G4,GRAPHICS_OPTIMIZED_G4_VGPU,MEMORY_OPTIMIZED, MEMORY_OPTIMIZED_M3,MEMORY_OPTIMIZED_X4, STORAGE_OPTIMIZED_Z3. For
13712
13900
  # example, type MEMORY_OPTIMIZED specifies a commitment that
13713
13901
  # applies only to eligible resources of memory optimized M1 and M2 machine
13714
13902
  # series. Type GENERAL_PURPOSE specifies a commitment that
@@ -13780,7 +13968,7 @@ module Google
13780
13968
  # resource types.
13781
13969
  #
13782
13970
  # The type must be one of the following:ACCELERATOR_OPTIMIZED, ACCELERATOR_OPTIMIZED_A3,ACCELERATOR_OPTIMIZED_A3_MEGA,COMPUTE_OPTIMIZED, COMPUTE_OPTIMIZED_C2D,
13783
- # COMPUTE_OPTIMIZED_C3, COMPUTE_OPTIMIZED_C3D,COMPUTE_OPTIMIZED_H3, GENERAL_PURPOSE,GENERAL_PURPOSE_C4, GENERAL_PURPOSE_E2,GENERAL_PURPOSE_N2, GENERAL_PURPOSE_N2D,GENERAL_PURPOSE_N4, GENERAL_PURPOSE_T2D,GRAPHICS_OPTIMIZED, GRAPHICS_OPTIMIZED_G4,MEMORY_OPTIMIZED, MEMORY_OPTIMIZED_M3,MEMORY_OPTIMIZED_X4, STORAGE_OPTIMIZED_Z3. For
13971
+ # COMPUTE_OPTIMIZED_C3, COMPUTE_OPTIMIZED_C3D,COMPUTE_OPTIMIZED_H3, GENERAL_PURPOSE,GENERAL_PURPOSE_C4, GENERAL_PURPOSE_E2,GENERAL_PURPOSE_N2, GENERAL_PURPOSE_N2D,GENERAL_PURPOSE_N4, GENERAL_PURPOSE_T2D,GRAPHICS_OPTIMIZED, GRAPHICS_OPTIMIZED_G4,GRAPHICS_OPTIMIZED_G4_VGPU,MEMORY_OPTIMIZED, MEMORY_OPTIMIZED_M3,MEMORY_OPTIMIZED_X4, STORAGE_OPTIMIZED_Z3. For
13784
13972
  # example, type MEMORY_OPTIMIZED specifies a commitment that
13785
13973
  # applies only to eligible resources of memory optimized M1 and M2 machine
13786
13974
  # series. Type GENERAL_PURPOSE specifies a commitment that
@@ -13837,6 +14025,8 @@ module Google
13837
14025
 
13838
14026
  GRAPHICS_OPTIMIZED_G4 = 54_029_369
13839
14027
 
14028
+ GRAPHICS_OPTIMIZED_G4_VGPU = 298_988_732
14029
+
13840
14030
  MEMORY_OPTIMIZED = 281_753_417
13841
14031
 
13842
14032
  MEMORY_OPTIMIZED_M3 = 276_301_372
@@ -15283,6 +15473,36 @@ module Google
15283
15473
  extend ::Google::Protobuf::MessageExts::ClassMethods
15284
15474
  end
15285
15475
 
15476
+ # A request message for GlobalVmExtensionPolicies.Delete. See the method description for details.
15477
+ # @!attribute [rw] global_vm_extension_policy
15478
+ # @return [::String]
15479
+ # Name of the global VM extension policy to purge scoped resources for.
15480
+ # @!attribute [rw] global_vm_extension_policy_rollout_operation_rollout_input_resource
15481
+ # @return [::Google::Cloud::Compute::V1::GlobalVmExtensionPolicyRolloutOperationRolloutInput]
15482
+ # The body resource for this request
15483
+ # @!attribute [rw] project
15484
+ # @return [::String]
15485
+ # Project ID for this request.
15486
+ # @!attribute [rw] request_id
15487
+ # @return [::String]
15488
+ # An optional request ID to identify requests. Specify a unique request ID so
15489
+ # that if you must retry your request, the server will know to ignore the
15490
+ # request if it has already been completed.
15491
+ #
15492
+ # For example, consider a situation where you make an initial request and
15493
+ # the request times out. If you make the request again with the same
15494
+ # request ID, the server can check if original operation with the same
15495
+ # request ID was received, and if so, will ignore the second request. This
15496
+ # prevents clients from accidentally creating duplicate commitments.
15497
+ #
15498
+ # The request ID must be
15499
+ # a valid UUID with the exception that zero UUID is not supported
15500
+ # (00000000-0000-0000-0000-000000000000).
15501
+ class DeleteGlobalVmExtensionPolicyRequest
15502
+ include ::Google::Protobuf::MessageExts
15503
+ extend ::Google::Protobuf::MessageExts::ClassMethods
15504
+ end
15505
+
15286
15506
  # A request message for HealthChecks.Delete. See the method description for details.
15287
15507
  # @!attribute [rw] health_check
15288
15508
  # @return [::String]
@@ -17043,6 +17263,60 @@ module Google
17043
17263
  extend ::Google::Protobuf::MessageExts::ClassMethods
17044
17264
  end
17045
17265
 
17266
+ # A request message for RolloutPlans.Delete. See the method description for details.
17267
+ # @!attribute [rw] project
17268
+ # @return [::String]
17269
+ # Project ID for this request.
17270
+ # @!attribute [rw] request_id
17271
+ # @return [::String]
17272
+ # An optional request ID to identify requests. Specify a unique request ID so
17273
+ # that if you must retry your request, the server will know to ignore the
17274
+ # request if it has already been completed.
17275
+ #
17276
+ # For example, consider a situation where you make an initial request and
17277
+ # the request times out. If you make the request again with the same
17278
+ # request ID, the server can check if original operation with the same
17279
+ # request ID was received, and if so, will ignore the second request. This
17280
+ # prevents clients from accidentally creating duplicate commitments.
17281
+ #
17282
+ # The request ID must be
17283
+ # a valid UUID with the exception that zero UUID is not supported
17284
+ # (00000000-0000-0000-0000-000000000000).
17285
+ # @!attribute [rw] rollout_plan
17286
+ # @return [::String]
17287
+ # Name of the RolloutPlan resource to delete.
17288
+ class DeleteRolloutPlanRequest
17289
+ include ::Google::Protobuf::MessageExts
17290
+ extend ::Google::Protobuf::MessageExts::ClassMethods
17291
+ end
17292
+
17293
+ # A request message for Rollouts.Delete. See the method description for details.
17294
+ # @!attribute [rw] project
17295
+ # @return [::String]
17296
+ # Project ID for this request.
17297
+ # @!attribute [rw] request_id
17298
+ # @return [::String]
17299
+ # An optional request ID to identify requests. Specify a unique request ID so
17300
+ # that if you must retry your request, the server will know to ignore the
17301
+ # request if it has already been completed.
17302
+ #
17303
+ # For example, consider a situation where you make an initial request and
17304
+ # the request times out. If you make the request again with the same
17305
+ # request ID, the server can check if original operation with the same
17306
+ # request ID was received, and if so, will ignore the second request. This
17307
+ # prevents clients from accidentally creating duplicate commitments.
17308
+ #
17309
+ # The request ID must be
17310
+ # a valid UUID with the exception that zero UUID is not supported
17311
+ # (00000000-0000-0000-0000-000000000000).
17312
+ # @!attribute [rw] rollout
17313
+ # @return [::String]
17314
+ # Name of the Rollout resource to delete.
17315
+ class DeleteRolloutRequest
17316
+ include ::Google::Protobuf::MessageExts
17317
+ extend ::Google::Protobuf::MessageExts::ClassMethods
17318
+ end
17319
+
17046
17320
  # A request message for Routers.DeleteRoutePolicy. See the method description for details.
17047
17321
  # @!attribute [rw] policy
17048
17322
  # @return [::String]
@@ -18770,8 +19044,8 @@ module Google
18770
19044
  # Input only. Resource manager tags to be bound to the disk. Tag keys and values
18771
19045
  # have the same definition as resource
18772
19046
  # manager tags. Keys and values can be either in numeric format,
18773
- # such as `tagKeys/{tag_key_id}` and `tagValues/456` or in namespaced
18774
- # format such as `{org_id|project_id}/{tag_key_short_name}` and
19047
+ # such as `tagKeys/{tag_key_id}` and `tagValues/{tag_value_id}` or in
19048
+ # namespaced format such as `{org_id|project_id}/{tag_key_short_name}` and
18775
19049
  # `{tag_value_short_name}`. The field is ignored (both PUT &
18776
19050
  # PATCH) when empty.
18777
19051
  class DiskParams
@@ -20050,7 +20324,8 @@ module Google
20050
20324
  # This field is not applicable to network firewall policies.
20051
20325
  # @!attribute [rw] policy_type
20052
20326
  # @return [::String]
20053
- # The type of the firewall policy. This field can be eitherVPC_POLICY or RDMA_ROCE_POLICY.
20327
+ # The type of the firewall policy. This field can be one of
20328
+ # VPC_POLICY, RDMA_ROCE_POLICY or ULL_POLICY.
20054
20329
  #
20055
20330
  # Note: if not specified then VPC_POLICY will be used.
20056
20331
  # Check the PolicyType enum for the list of possible values.
@@ -20092,7 +20367,8 @@ module Google
20092
20367
  include ::Google::Protobuf::MessageExts
20093
20368
  extend ::Google::Protobuf::MessageExts::ClassMethods
20094
20369
 
20095
- # The type of the firewall policy. This field can be eitherVPC_POLICY or RDMA_ROCE_POLICY.
20370
+ # The type of the firewall policy. This field can be one of
20371
+ # VPC_POLICY, RDMA_ROCE_POLICY or ULL_POLICY.
20096
20372
  #
20097
20373
  # Note: if not specified then VPC_POLICY will be used.
20098
20374
  module PolicyType
@@ -20101,6 +20377,8 @@ module Google
20101
20377
 
20102
20378
  RDMA_ROCE_POLICY = 148_757_145
20103
20379
 
20380
+ ULL_POLICY = 100_494_364
20381
+
20104
20382
  VPC_POLICY = 74_319_208
20105
20383
  end
20106
20384
  end
@@ -20471,8 +20749,7 @@ module Google
20471
20749
  # Encapsulates numeric value that can be either absolute or relative.
20472
20750
  # @!attribute [rw] calculated
20473
20751
  # @return [::Integer]
20474
- # Output only. [Output Only] Absolute value of VM instances calculated based on the
20475
- # specific mode.
20752
+ # Output only. Absolute value of VM instances calculated based on the specific mode.
20476
20753
  #
20477
20754
  #
20478
20755
  #
@@ -22658,6 +22935,18 @@ module Google
22658
22935
  extend ::Google::Protobuf::MessageExts::ClassMethods
22659
22936
  end
22660
22937
 
22938
+ # A request message for GlobalVmExtensionPolicies.Get. See the method description for details.
22939
+ # @!attribute [rw] global_vm_extension_policy
22940
+ # @return [::String]
22941
+ # Name of the GlobalVmExtensionPolicy resource to return.
22942
+ # @!attribute [rw] project
22943
+ # @return [::String]
22944
+ # Project ID for this request.
22945
+ class GetGlobalVmExtensionPolicyRequest
22946
+ include ::Google::Protobuf::MessageExts
22947
+ extend ::Google::Protobuf::MessageExts::ClassMethods
22948
+ end
22949
+
22661
22950
  # A request message for Instances.GetGuestAttributes. See the method description for details.
22662
22951
  # @!attribute [rw] instance
22663
22952
  # @return [::String]
@@ -22944,6 +23233,21 @@ module Google
22944
23233
  extend ::Google::Protobuf::MessageExts::ClassMethods
22945
23234
  end
22946
23235
 
23236
+ # A request message for LicenseCodes.GetIamPolicy. See the method description for details.
23237
+ # @!attribute [rw] options_requested_policy_version
23238
+ # @return [::Integer]
23239
+ # Requested IAM Policy version.
23240
+ # @!attribute [rw] project
23241
+ # @return [::String]
23242
+ # Project ID for this request.
23243
+ # @!attribute [rw] resource
23244
+ # @return [::String]
23245
+ # Name or id of the resource for this request.
23246
+ class GetIamPolicyLicenseCodeRequest
23247
+ include ::Google::Protobuf::MessageExts
23248
+ extend ::Google::Protobuf::MessageExts::ClassMethods
23249
+ end
23250
+
22947
23251
  # A request message for Licenses.GetIamPolicy. See the method description for details.
22948
23252
  # @!attribute [rw] options_requested_policy_version
22949
23253
  # @return [::Integer]
@@ -24573,6 +24877,30 @@ module Google
24573
24877
  extend ::Google::Protobuf::MessageExts::ClassMethods
24574
24878
  end
24575
24879
 
24880
+ # A request message for RolloutPlans.Get. See the method description for details.
24881
+ # @!attribute [rw] project
24882
+ # @return [::String]
24883
+ # Project ID for this request.
24884
+ # @!attribute [rw] rollout_plan
24885
+ # @return [::String]
24886
+ # Name of the persistent rollout plan to return.
24887
+ class GetRolloutPlanRequest
24888
+ include ::Google::Protobuf::MessageExts
24889
+ extend ::Google::Protobuf::MessageExts::ClassMethods
24890
+ end
24891
+
24892
+ # A request message for Rollouts.Get. See the method description for details.
24893
+ # @!attribute [rw] project
24894
+ # @return [::String]
24895
+ # Project ID for this request.
24896
+ # @!attribute [rw] rollout
24897
+ # @return [::String]
24898
+ # Name of the persistent rollout to return.
24899
+ class GetRolloutRequest
24900
+ include ::Google::Protobuf::MessageExts
24901
+ extend ::Google::Protobuf::MessageExts::ClassMethods
24902
+ end
24903
+
24576
24904
  # A request message for Routers.GetRoutePolicy. See the method description for details.
24577
24905
  # @!attribute [rw] policy
24578
24906
  # @return [::String]
@@ -25076,12 +25404,12 @@ module Google
25076
25404
 
25077
25405
  # @!attribute [rw] current_component_versions
25078
25406
  # @return [::Google::Protobuf::Map{::String => ::String}]
25079
- # SBOM versions currently applied to the resource. The key is the component
25080
- # name and the value is the version.
25407
+ # A mapping of components to their currently-applied versions or other
25408
+ # appropriate identifiers.
25081
25409
  # @!attribute [rw] target_component_versions
25082
25410
  # @return [::Google::Protobuf::Map{::String => ::String}]
25083
- # SBOM versions scheduled for the next maintenance. The key is the
25084
- # component name and the value is the version.
25411
+ # A mapping of components to their target versions or other appropriate
25412
+ # identifiers.
25085
25413
  class GetVersionOperationMetadataSbomInfo
25086
25414
  include ::Google::Protobuf::MessageExts
25087
25415
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -25478,6 +25806,346 @@ module Google
25478
25806
  extend ::Google::Protobuf::MessageExts::ClassMethods
25479
25807
  end
25480
25808
 
25809
+ # Message describing GlobalVmExtensionPolicy object.
25810
+ # @!attribute [rw] creation_timestamp
25811
+ # @return [::String]
25812
+ # Output only. [Output Only] Creation timestamp inRFC3339
25813
+ # text format.
25814
+ # @!attribute [rw] description
25815
+ # @return [::String]
25816
+ # An optional description of this resource. Provide this property when you
25817
+ # create the resource.
25818
+ # @!attribute [rw] extension_policies
25819
+ # @return [::Google::Protobuf::Map{::String => ::Google::Cloud::Compute::V1::GlobalVmExtensionPolicyExtensionPolicy}]
25820
+ # Required. Map from extension (eg: "cloudops") to its policy configuration.
25821
+ # The key is the name of the extension.
25822
+ # @!attribute [rw] id
25823
+ # @return [::Integer]
25824
+ # Output only. [Output Only] The unique identifier for the resource. This identifier is
25825
+ # defined by the server.
25826
+ # @!attribute [rw] instance_selectors
25827
+ # @return [::Array<::Google::Cloud::Compute::V1::GlobalVmExtensionPolicyInstanceSelector>]
25828
+ # Optional. Selector to target VMs for a policy.
25829
+ # There is a logical "AND" between instance_selectors.
25830
+ # @!attribute [rw] kind
25831
+ # @return [::String]
25832
+ # Output only. [Output Only] Type of the resource. Alwayscompute#globalVmExtensionPolicy for globalVmExtensionPolicies.
25833
+ # @!attribute [rw] name
25834
+ # @return [::String]
25835
+ # Name of the resource. Provided by the client when the resource is created.
25836
+ # The name must be 1-63 characters long, and comply withRFC1035.
25837
+ # Specifically, the name must be 1-63 characters long and match the regular
25838
+ # expression `[a-z]([-a-z0-9]*[a-z0-9])?`
25839
+ # which means the first character must be a lowercase letter, and all
25840
+ # following characters must be a dash, lowercase letter, or digit, except
25841
+ # the last character, which cannot be a dash.
25842
+ # @!attribute [rw] priority
25843
+ # @return [::Integer]
25844
+ # Optional. Used to resolve conflicts when multiple policies are active for the same
25845
+ # extension. Defaults to 0.
25846
+ #
25847
+ # Larger the number, higher the priority. When the priority is the same,
25848
+ # the policy with the newer create time has higher priority.
25849
+ # @!attribute [rw] rollout_operation
25850
+ # @return [::Google::Cloud::Compute::V1::GlobalVmExtensionPolicyRolloutOperation]
25851
+ # Required. The rollout strategy and status.
25852
+ # @!attribute [rw] scoped_resource_status
25853
+ # @return [::String]
25854
+ # Output only. [Output Only] The scoped resource status. It's only for tracking the
25855
+ # purging status of the policy.
25856
+ # Check the ScopedResourceStatus enum for the list of possible values.
25857
+ # @!attribute [rw] self_link
25858
+ # @return [::String]
25859
+ # Output only. [Output Only] Server-defined fully-qualified URL for this resource.
25860
+ # @!attribute [rw] self_link_with_id
25861
+ # @return [::String]
25862
+ # Output only. [Output Only] Server-defined URL for this resource's resource id.
25863
+ # @!attribute [rw] update_timestamp
25864
+ # @return [::String]
25865
+ # Output only. [Output Only] Update timestamp inRFC3339
25866
+ # text format.
25867
+ class GlobalVmExtensionPolicy
25868
+ include ::Google::Protobuf::MessageExts
25869
+ extend ::Google::Protobuf::MessageExts::ClassMethods
25870
+
25871
+ # @!attribute [rw] key
25872
+ # @return [::String]
25873
+ # @!attribute [rw] value
25874
+ # @return [::Google::Cloud::Compute::V1::GlobalVmExtensionPolicyExtensionPolicy]
25875
+ class ExtensionPoliciesEntry
25876
+ include ::Google::Protobuf::MessageExts
25877
+ extend ::Google::Protobuf::MessageExts::ClassMethods
25878
+ end
25879
+
25880
+ # Output only. [Output Only] The scoped resource status. It's only for tracking the
25881
+ # purging status of the policy.
25882
+ module ScopedResourceStatus
25883
+ # A value indicating that the enum field is not set.
25884
+ UNDEFINED_SCOPED_RESOURCE_STATUS = 0
25885
+
25886
+ # The zonal policies are being deleted.
25887
+ SCOPED_RESOURCE_STATUS_DELETING = 404_198_387
25888
+
25889
+ # Default value. This value is unused.
25890
+ SCOPED_RESOURCE_STATUS_UNSPECIFIED = 437_941_996
25891
+ end
25892
+ end
25893
+
25894
+ # Policy for a single extension.
25895
+ # @!attribute [rw] pinned_version
25896
+ # @return [::String]
25897
+ # Optional. The version pinning for the extension.
25898
+ # If empty, the extension will be installed with the latest version
25899
+ # released by the extension producer.
25900
+ # @!attribute [rw] string_config
25901
+ # @return [::String]
25902
+ # Optional. String configuration. Any string payload that the extension
25903
+ # understands.
25904
+ class GlobalVmExtensionPolicyExtensionPolicy
25905
+ include ::Google::Protobuf::MessageExts
25906
+ extend ::Google::Protobuf::MessageExts::ClassMethods
25907
+ end
25908
+
25909
+ # Selector to target VMs for a zone VM extension policy.
25910
+ # @!attribute [rw] label_selector
25911
+ # @return [::Google::Cloud::Compute::V1::GlobalVmExtensionPolicyLabelSelector]
25912
+ # Optional. Labels within the LabelSelector are OR'd.
25913
+ class GlobalVmExtensionPolicyInstanceSelector
25914
+ include ::Google::Protobuf::MessageExts
25915
+ extend ::Google::Protobuf::MessageExts::ClassMethods
25916
+ end
25917
+
25918
+ # A LabelSelector is applicable for a VM only if it matches all labels in
25919
+ # the LabelSelector.
25920
+ # @!attribute [rw] inclusion_labels
25921
+ # @return [::Google::Protobuf::Map{::String => ::String}]
25922
+ # Optional. Labels as key value pairs.
25923
+ # A VM should contain all the pairs specified in this map to be selected;
25924
+ # Labels within the LabelSelector are OR'ed.
25925
+ class GlobalVmExtensionPolicyLabelSelector
25926
+ include ::Google::Protobuf::MessageExts
25927
+ extend ::Google::Protobuf::MessageExts::ClassMethods
25928
+
25929
+ # @!attribute [rw] key
25930
+ # @return [::String]
25931
+ # @!attribute [rw] value
25932
+ # @return [::String]
25933
+ class InclusionLabelsEntry
25934
+ include ::Google::Protobuf::MessageExts
25935
+ extend ::Google::Protobuf::MessageExts::ClassMethods
25936
+ end
25937
+ end
25938
+
25939
+ # Response to list global VM extension policy resources.
25940
+ # @!attribute [rw] etag
25941
+ # @return [::String]
25942
+ # @!attribute [rw] id
25943
+ # @return [::String]
25944
+ # [Output Only] Unique identifier for the resource; defined by the server.
25945
+ # @!attribute [rw] items
25946
+ # @return [::Array<::Google::Cloud::Compute::V1::GlobalVmExtensionPolicy>]
25947
+ # A list of GlobalVmExtensionPolicy resources.
25948
+ # @!attribute [rw] kind
25949
+ # @return [::String]
25950
+ # Output only. Type of resource.
25951
+ # @!attribute [rw] next_page_token
25952
+ # @return [::String]
25953
+ # [Output Only] This token allows you to get the next page of results for
25954
+ # list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
25955
+ # the query parameter pageToken in the next list request.
25956
+ # Subsequent list requests will have their own nextPageToken to
25957
+ # continue paging through the results.
25958
+ # @!attribute [rw] self_link
25959
+ # @return [::String]
25960
+ # Output only. [Output Only] Server-defined URL for this resource.
25961
+ # @!attribute [rw] unreachables
25962
+ # @return [::Array<::String>]
25963
+ # Output only. [Output Only] Unreachable resources.
25964
+ # @!attribute [rw] warning
25965
+ # @return [::Google::Cloud::Compute::V1::Warning]
25966
+ # [Output Only] Informational warning message.
25967
+ class GlobalVmExtensionPolicyList
25968
+ include ::Google::Protobuf::MessageExts
25969
+ extend ::Google::Protobuf::MessageExts::ClassMethods
25970
+ end
25971
+
25972
+ # Represents the rollout operation
25973
+ # @!attribute [rw] rollout_input
25974
+ # @return [::Google::Cloud::Compute::V1::GlobalVmExtensionPolicyRolloutOperationRolloutInput]
25975
+ # Required. The rollout input which defines the rollout plan.
25976
+ # @!attribute [rw] rollout_status
25977
+ # @return [::Google::Cloud::Compute::V1::GlobalVmExtensionPolicyRolloutOperationRolloutStatus]
25978
+ # Output only. [Output Only] The rollout status of the policy.
25979
+ class GlobalVmExtensionPolicyRolloutOperation
25980
+ include ::Google::Protobuf::MessageExts
25981
+ extend ::Google::Protobuf::MessageExts::ClassMethods
25982
+ end
25983
+
25984
+ # @!attribute [rw] conflict_behavior
25985
+ # @return [::String]
25986
+ # Optional. Specifies the behavior of the rollout if a conflict is detected in a
25987
+ # project during a rollout. This only applies to `insert` and `update`
25988
+ # methods.
25989
+ #
25990
+ # A conflict occurs in the following cases:
25991
+ #
25992
+ # * `insert` method: If the zonal policy already exists when the insert
25993
+ # happens.
25994
+ # * `update` method: If the zonal policy was modified by a zonal API call
25995
+ # outside of this rollout.
25996
+ #
25997
+ # Possible values are the following:
25998
+ #
25999
+ # * `""` (empty string): If a conflict occurs, the local value is not
26000
+ # overwritten. This is the default behavior.
26001
+ # * `"overwrite"`: If a conflict occurs, the local value is overwritten
26002
+ # with the rollout value.
26003
+ # @!attribute [rw] name
26004
+ # @return [::String]
26005
+ # Optional. The name of the rollout plan.
26006
+ # Ex.
26007
+ # projects//locations/global/rolloutPlans/.
26008
+ # @!attribute [rw] predefined_rollout_plan
26009
+ # @return [::String]
26010
+ # Optional. Specifies the predefined rollout plan for the policy. Valid values
26011
+ # are `SLOW_ROLLOUT` and `FAST_ROLLOUT`. The recommended value is
26012
+ # `SLOW_ROLLOUT` for progressive rollout. For more information, see Rollout
26013
+ # plans for global policies.
26014
+ # Check the PredefinedRolloutPlan enum for the list of possible values.
26015
+ # @!attribute [rw] retry_uuid
26016
+ # @return [::String]
26017
+ # Optional. The UUID that identifies a policy rollout retry attempt for update and
26018
+ # delete operations. Set this field only when retrying a rollout for an
26019
+ # existing extension policy.
26020
+ #
26021
+ # * `update` method: Lets you retry policy rollout without changes.
26022
+ # An error occurs if you set retry_uuid but the policy is modified.
26023
+ # * `delete` method: Lets you retry policy deletion rollout if the
26024
+ # previous deletion rollout is not finished and the policy is in the
26025
+ # DELETING state. If you set this field when the policy is not in the
26026
+ # DELETING state, an error occurs.
26027
+ class GlobalVmExtensionPolicyRolloutOperationRolloutInput
26028
+ include ::Google::Protobuf::MessageExts
26029
+ extend ::Google::Protobuf::MessageExts::ClassMethods
26030
+
26031
+ # Optional. Specifies the predefined rollout plan for the policy. Valid values
26032
+ # are `SLOW_ROLLOUT` and `FAST_ROLLOUT`. The recommended value is
26033
+ # `SLOW_ROLLOUT` for progressive rollout. For more information, see Rollout
26034
+ # plans for global policies.
26035
+ module PredefinedRolloutPlan
26036
+ # A value indicating that the enum field is not set.
26037
+ UNDEFINED_PREDEFINED_ROLLOUT_PLAN = 0
26038
+
26039
+ FAST_ROLLOUT = 207_153_326
26040
+
26041
+ ROLLOUT_PLAN_UNSPECIFIED = 144_511_983
26042
+
26043
+ SLOW_ROLLOUT = 31_032_659
26044
+ end
26045
+ end
26046
+
26047
+ # @!attribute [rw] current_rollouts
26048
+ # @return [::Array<::Google::Cloud::Compute::V1::GlobalVmExtensionPolicyRolloutOperationRolloutStatusRolloutMetadata>]
26049
+ # Output only. [Output Only] The current rollouts for the latest version of the
26050
+ # resource. There should be only one current rollout, but for
26051
+ # scalability, we make it repeated.
26052
+ # @!attribute [rw] previous_rollout
26053
+ # @return [::Google::Cloud::Compute::V1::GlobalVmExtensionPolicyRolloutOperationRolloutStatusRolloutMetadata]
26054
+ # Output only. [Output Only] The last completed rollout resource. This field will not
26055
+ # be populated until the first rollout is completed.
26056
+ class GlobalVmExtensionPolicyRolloutOperationRolloutStatus
26057
+ include ::Google::Protobuf::MessageExts
26058
+ extend ::Google::Protobuf::MessageExts::ClassMethods
26059
+ end
26060
+
26061
+ # @!attribute [rw] location_rollout_status
26062
+ # @return [::Google::Protobuf::Map{::String => ::Google::Cloud::Compute::V1::GlobalVmExtensionPolicyRolloutOperationRolloutStatusRolloutMetadataLocationRolloutStatus}]
26063
+ # Output only. [Output Only] The rollout status for each location. The list of the
26064
+ # locations is the same as the list of locations in the rollout plan.
26065
+ # @!attribute [rw] rollout
26066
+ # @return [::String]
26067
+ # Output only. [Output Only] The name of the rollout.
26068
+ # Ex. projects//locations/global/rollouts/.
26069
+ # @!attribute [rw] rollout_plan
26070
+ # @return [::String]
26071
+ # Output only. [Output Only] The name of the rollout plan.
26072
+ # Ex.
26073
+ # projects//locations/global/rolloutPlans/.
26074
+ # @!attribute [rw] state
26075
+ # @return [::String]
26076
+ # Output only. [Output Only] The overall state of the rollout.
26077
+ # Check the State enum for the list of possible values.
26078
+ class GlobalVmExtensionPolicyRolloutOperationRolloutStatusRolloutMetadata
26079
+ include ::Google::Protobuf::MessageExts
26080
+ extend ::Google::Protobuf::MessageExts::ClassMethods
26081
+
26082
+ # @!attribute [rw] key
26083
+ # @return [::String]
26084
+ # @!attribute [rw] value
26085
+ # @return [::Google::Cloud::Compute::V1::GlobalVmExtensionPolicyRolloutOperationRolloutStatusRolloutMetadataLocationRolloutStatus]
26086
+ class LocationRolloutStatusEntry
26087
+ include ::Google::Protobuf::MessageExts
26088
+ extend ::Google::Protobuf::MessageExts::ClassMethods
26089
+ end
26090
+
26091
+ # Output only. [Output Only] The overall state of the rollout.
26092
+ module State
26093
+ # A value indicating that the enum field is not set.
26094
+ UNDEFINED_STATE = 0
26095
+
26096
+ # Iteration was explicitly cancelled.
26097
+ STATE_CANCELLED = 534_636_259
26098
+
26099
+ # Iteration completed, with all actions being successful.
26100
+ STATE_COMPLETED = 265_728_989
26101
+
26102
+ # Iteration completed, with failures.
26103
+ STATE_FAILED = 50_857_931
26104
+
26105
+ # The rollout is paused.
26106
+ STATE_PAUSED = 337_513_660
26107
+
26108
+ # Iteration is in progress.
26109
+ STATE_PROCESSING = 74_195_873
26110
+
26111
+ # Impossible to determine current state of the iteration.
26112
+ STATE_UNKNOWN = 230_861_404
26113
+
26114
+ # Default value. This value is unused.
26115
+ STATE_UNSPECIFIED = 470_755_401
26116
+ end
26117
+ end
26118
+
26119
+ # @!attribute [rw] state
26120
+ # @return [::String]
26121
+ # Output only. [Output Only] The state of the location rollout.
26122
+ # Check the State enum for the list of possible values.
26123
+ class GlobalVmExtensionPolicyRolloutOperationRolloutStatusRolloutMetadataLocationRolloutStatus
26124
+ include ::Google::Protobuf::MessageExts
26125
+ extend ::Google::Protobuf::MessageExts::ClassMethods
26126
+
26127
+ # Output only. [Output Only] The state of the location rollout.
26128
+ module State
26129
+ # A value indicating that the enum field is not set.
26130
+ UNDEFINED_STATE = 0
26131
+
26132
+ # The location rollout is completed.
26133
+ LOCATION_ROLLOUT_STATE_COMPLETED = 134_765_221
26134
+
26135
+ # The location rollout has failed.
26136
+ LOCATION_ROLLOUT_STATE_FAILED = 53_286_403
26137
+
26138
+ # The location rollout has not started.
26139
+ LOCATION_ROLLOUT_STATE_NOT_STARTED = 471_817_423
26140
+
26141
+ # The location rollout is skipped.
26142
+ LOCATION_ROLLOUT_STATE_SKIPPED = 54_074_890
26143
+
26144
+ # Default value. This value is unused.
26145
+ LOCATION_ROLLOUT_STATE_UNSPECIFIED = 242_367_761
26146
+ end
26147
+ end
26148
+
25481
26149
  # Maintenance Info for ReservationBlocks.
25482
26150
  # @!attribute [rw] instance_maintenance_ongoing_count
25483
26151
  # @return [::Integer]
@@ -28085,8 +28753,8 @@ module Google
28085
28753
  # Input only. Resource manager tags to be bound to the image. Tag keys and values have
28086
28754
  # the same definition as resource
28087
28755
  # manager tags. Keys and values can be either in numeric format,
28088
- # such as `tagKeys/{tag_key_id}` and `tagValues/456` or in namespaced
28089
- # format such as `{org_id|project_id}/{tag_key_short_name}` and
28756
+ # such as `tagKeys/{tag_key_id}` and `tagValues/{tag_value_id}` or in
28757
+ # namespaced format such as `{org_id|project_id}/{tag_key_short_name}` and
28090
28758
  # `{tag_value_short_name}`. The field is ignored (both PUT &
28091
28759
  # PATCH) when empty.
28092
28760
  class ImageParams
@@ -28551,6 +29219,33 @@ module Google
28551
29219
  extend ::Google::Protobuf::MessageExts::ClassMethods
28552
29220
  end
28553
29221
 
29222
+ # A request message for GlobalVmExtensionPolicies.Insert. See the method description for details.
29223
+ # @!attribute [rw] global_vm_extension_policy_resource
29224
+ # @return [::Google::Cloud::Compute::V1::GlobalVmExtensionPolicy]
29225
+ # The body resource for this request
29226
+ # @!attribute [rw] project
29227
+ # @return [::String]
29228
+ # Project ID for this request.
29229
+ # @!attribute [rw] request_id
29230
+ # @return [::String]
29231
+ # An optional request ID to identify requests. Specify a unique request ID so
29232
+ # that if you must retry your request, the server will know to ignore the
29233
+ # request if it has already been completed.
29234
+ #
29235
+ # For example, consider a situation where you make an initial request and
29236
+ # the request times out. If you make the request again with the same
29237
+ # request ID, the server can check if original operation with the same
29238
+ # request ID was received, and if so, will ignore the second request. This
29239
+ # prevents clients from accidentally creating duplicate commitments.
29240
+ #
29241
+ # The request ID must be
29242
+ # a valid UUID with the exception that zero UUID is not supported
29243
+ # (00000000-0000-0000-0000-000000000000).
29244
+ class InsertGlobalVmExtensionPolicyRequest
29245
+ include ::Google::Protobuf::MessageExts
29246
+ extend ::Google::Protobuf::MessageExts::ClassMethods
29247
+ end
29248
+
28554
29249
  # A request message for HealthChecks.Insert. See the method description for details.
28555
29250
  # @!attribute [rw] health_check_resource
28556
29251
  # @return [::Google::Cloud::Compute::V1::HealthCheck]
@@ -30196,6 +30891,33 @@ module Google
30196
30891
  extend ::Google::Protobuf::MessageExts::ClassMethods
30197
30892
  end
30198
30893
 
30894
+ # A request message for RolloutPlans.Insert. See the method description for details.
30895
+ # @!attribute [rw] project
30896
+ # @return [::String]
30897
+ # Project ID for this request.
30898
+ # @!attribute [rw] request_id
30899
+ # @return [::String]
30900
+ # An optional request ID to identify requests. Specify a unique request ID so
30901
+ # that if you must retry your request, the server will know to ignore the
30902
+ # request if it has already been completed.
30903
+ #
30904
+ # For example, consider a situation where you make an initial request and
30905
+ # the request times out. If you make the request again with the same
30906
+ # request ID, the server can check if original operation with the same
30907
+ # request ID was received, and if so, will ignore the second request. This
30908
+ # prevents clients from accidentally creating duplicate commitments.
30909
+ #
30910
+ # The request ID must be
30911
+ # a valid UUID with the exception that zero UUID is not supported
30912
+ # (00000000-0000-0000-0000-000000000000).
30913
+ # @!attribute [rw] rollout_plan_resource
30914
+ # @return [::Google::Cloud::Compute::V1::RolloutPlan]
30915
+ # The body resource for this request
30916
+ class InsertRolloutPlanRequest
30917
+ include ::Google::Protobuf::MessageExts
30918
+ extend ::Google::Protobuf::MessageExts::ClassMethods
30919
+ end
30920
+
30199
30921
  # A request message for Routes.Insert. See the method description for details.
30200
30922
  # @!attribute [rw] project
30201
30923
  # @return [::String]
@@ -31703,30 +32425,30 @@ module Google
31703
32425
 
31704
32426
  # @!attribute [rw] id
31705
32427
  # @return [::String]
31706
- # Output only. [Output Only] Unique identifier for the resource; defined by the server.
32428
+ # Output only. Unique identifier for the resource; defined by the server.
31707
32429
  # @!attribute [rw] items
31708
32430
  # @return [::Google::Protobuf::Map{::String => ::Google::Cloud::Compute::V1::InstanceGroupManagersScopedList}]
31709
32431
  # A list of InstanceGroupManagersScopedList resources.
31710
32432
  # @!attribute [rw] kind
31711
32433
  # @return [::String]
31712
- # Output only. [Output Only] The resource type, which is alwayscompute#instanceGroupManagerAggregatedList for an aggregated
32434
+ # Output only. The resource type, which is alwayscompute#instanceGroupManagerAggregatedList for an aggregated
31713
32435
  # list of managed instance groups.
31714
32436
  # @!attribute [rw] next_page_token
31715
32437
  # @return [::String]
31716
- # Output only. [Output Only] This token allows you to get the next page of results for
32438
+ # Output only. This token allows you to get the next page of results for
31717
32439
  # list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
31718
32440
  # the query parameter pageToken in the next list request.
31719
32441
  # Subsequent list requests will have their own nextPageToken to
31720
32442
  # continue paging through the results.
31721
32443
  # @!attribute [rw] self_link
31722
32444
  # @return [::String]
31723
- # Output only. [Output Only] Server-defined URL for this resource.
32445
+ # Output only. Server-defined URL for this resource.
31724
32446
  # @!attribute [rw] unreachables
31725
32447
  # @return [::Array<::String>]
31726
- # Output only. [Output Only] Unreachable resources.
32448
+ # Output only. Unreachable resources.
31727
32449
  # @!attribute [rw] warning
31728
32450
  # @return [::Google::Cloud::Compute::V1::Warning]
31729
- # Output only. [Output Only] Informational warning message.
32451
+ # Output only. Informational warning message.
31730
32452
  class InstanceGroupManagerAggregatedList
31731
32453
  include ::Google::Protobuf::MessageExts
31732
32454
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -31919,27 +32641,27 @@ module Google
31919
32641
  # [Output Only] A list of managed instance groups.
31920
32642
  # @!attribute [rw] id
31921
32643
  # @return [::String]
31922
- # Output only. [Output Only] Unique identifier for the resource; defined by the server.
32644
+ # Output only. Unique identifier for the resource; defined by the server.
31923
32645
  # @!attribute [rw] items
31924
32646
  # @return [::Array<::Google::Cloud::Compute::V1::InstanceGroupManager>]
31925
32647
  # A list of InstanceGroupManager resources.
31926
32648
  # @!attribute [rw] kind
31927
32649
  # @return [::String]
31928
- # Output only. [Output Only] The resource type, which is always
31929
- # compute#instanceGroupManagerList for a list of managed instance groups.
32650
+ # Output only. The resource type, which is always compute#instanceGroupManagerList for a
32651
+ # list of managed instance groups.
31930
32652
  # @!attribute [rw] next_page_token
31931
32653
  # @return [::String]
31932
- # Output only. [Output Only] This token allows you to get the next page of results for
32654
+ # Output only. This token allows you to get the next page of results for
31933
32655
  # list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
31934
32656
  # the query parameter pageToken in the next list request.
31935
32657
  # Subsequent list requests will have their own nextPageToken to
31936
32658
  # continue paging through the results.
31937
32659
  # @!attribute [rw] self_link
31938
32660
  # @return [::String]
31939
- # Output only. [Output Only] Server-defined URL for this resource.
32661
+ # Output only. Server-defined URL for this resource.
31940
32662
  # @!attribute [rw] warning
31941
32663
  # @return [::Google::Cloud::Compute::V1::Warning]
31942
- # Output only. [Output Only] Informational warning message.
32664
+ # Output only. Informational warning message.
31943
32665
  class InstanceGroupManagerList
31944
32666
  include ::Google::Protobuf::MessageExts
31945
32667
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -32064,27 +32786,26 @@ module Google
32064
32786
  # [Output Only] A list of resize requests.
32065
32787
  # @!attribute [rw] id
32066
32788
  # @return [::String]
32067
- # Output only. [Output Only] Unique identifier for the resource; defined by the server.
32789
+ # Output only. Unique identifier for the resource; defined by the server.
32068
32790
  # @!attribute [rw] items
32069
32791
  # @return [::Array<::Google::Cloud::Compute::V1::InstanceGroupManagerResizeRequest>]
32070
32792
  # A list of resize request resources.
32071
32793
  # @!attribute [rw] kind
32072
32794
  # @return [::String]
32073
- # Output only. [Output Only] Type of the resource. Alwayscompute#instanceGroupManagerResizeRequestList for
32795
+ # Output only. Type of the resource. Alwayscompute#instanceGroupManagerResizeRequestList for
32074
32796
  # a list of resize requests.
32075
32797
  # @!attribute [rw] next_page_token
32076
32798
  # @return [::String]
32077
- # Output only. [Output Only] This token allows you to get the next page of results for
32078
- # list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
32079
- # the query parameter pageToken in the next list request.
32799
+ # Output only. This token allows you to get the next page of results for list requests.
32800
+ # If the number of results is larger than maxResults, use thenextPageToken as a value for the query parameterpageToken in the next list request.
32080
32801
  # Subsequent list requests will have their own nextPageToken to
32081
32802
  # continue paging through the results.
32082
32803
  # @!attribute [rw] self_link
32083
32804
  # @return [::String]
32084
- # Output only. [Output Only] Server-defined URL for this resource.
32805
+ # Output only. Server-defined URL for this resource.
32085
32806
  # @!attribute [rw] warning
32086
32807
  # @return [::Google::Cloud::Compute::V1::Warning]
32087
- # Output only. [Output Only] Informational warning message.
32808
+ # Output only. Informational warning message.
32088
32809
  class InstanceGroupManagerResizeRequestsListResponse
32089
32810
  include ::Google::Protobuf::MessageExts
32090
32811
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -32842,12 +33563,12 @@ module Google
32842
33563
 
32843
33564
  # @!attribute [rw] instance_group_managers
32844
33565
  # @return [::Array<::Google::Cloud::Compute::V1::InstanceGroupManager>]
32845
- # Output only. [Output Only] The list of managed instance groups that are contained in
32846
- # the specified project and zone.
33566
+ # Output only. The list of managed instance groups that are contained in the specified
33567
+ # project and zone.
32847
33568
  # @!attribute [rw] warning
32848
33569
  # @return [::Google::Cloud::Compute::V1::Warning]
32849
- # Output only. [Output Only] The warning that replaces the list of managed instance
32850
- # groups when the list is empty.
33570
+ # Output only. The warning that replaces the list of managed instance groups when the list
33571
+ # is empty.
32851
33572
  class InstanceGroupManagersScopedList
32852
33573
  include ::Google::Protobuf::MessageExts
32853
33574
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -33226,8 +33947,8 @@ module Google
33226
33947
  # Input only. Resource manager tags to be bound to the instance. Tag keys and values
33227
33948
  # have the same definition as resource
33228
33949
  # manager tags. Keys and values can be either in numeric format,
33229
- # such as `tagKeys/{tag_key_id}` and `tagValues/456` or in namespaced
33230
- # format such as `{org_id|project_id}/{tag_key_short_name}` and
33950
+ # such as `tagKeys/{tag_key_id}` and `tagValues/{tag_value_id}` or in
33951
+ # namespaced format such as `{org_id|project_id}/{tag_key_short_name}` and
33231
33952
  # `{tag_value_short_name}`. The field is ignored (both PUT &
33232
33953
  # PATCH) when empty.
33233
33954
  class InstanceParams
@@ -33321,8 +34042,10 @@ module Google
33321
34042
  # @return [::Google::Protobuf::Map{::String => ::String}]
33322
34043
  # Input only. Resource manager tags to be bound to the instance. Tag keys and values
33323
34044
  # have the same definition as resource
33324
- # manager tags. Keys must be in the format `tagKeys/{tag_key_id}`, and
33325
- # values are in the format `tagValues/456`. The field is ignored (both PUT &
34045
+ # manager tags. Keys and values can be either in numeric format,
34046
+ # such as `tagKeys/{tag_key_id}` and `tagValues/{tag_value_id}` or in
34047
+ # namespaced format such as `{org_id|project_id}/{tag_key_short_name}` and
34048
+ # `{tag_value_short_name}`. The field is ignored (both PUT &
33326
34049
  # PATCH) when empty.
33327
34050
  # @!attribute [rw] resource_policies
33328
34051
  # @return [::Array<::String>]
@@ -36665,7 +37388,6 @@ module Google
36665
37388
  end
36666
37389
  end
36667
37390
 
36668
- # LINT.IfChange
36669
37391
  # @!attribute [rw] admin_enabled
36670
37392
  # @return [::Boolean]
36671
37393
  # Administrative status of the interconnect. When this is set to true, the
@@ -37977,6 +38699,14 @@ module Google
37977
38699
  # *Caution* This resource is intended for
37978
38700
  # use only by third-party partners who are creatingCloud Marketplace
37979
38701
  # images.
38702
+ # @!attribute [rw] allowed_replacement_licenses
38703
+ # @return [::Array<::String>]
38704
+ # Specifies licenseCodes of licenses that can replace this license. Note:
38705
+ # such replacements are allowed even if removable_from_disk is false.
38706
+ # @!attribute [rw] appendable_to_disk
38707
+ # @return [::Boolean]
38708
+ # If true, this license can be appended to an existing disk's set of
38709
+ # licenses.
37980
38710
  # @!attribute [rw] creation_timestamp
37981
38711
  # @return [::String]
37982
38712
  # Output only. [Output Only] Creation timestamp inRFC3339
@@ -37988,6 +38718,11 @@ module Google
37988
38718
  # @return [::Integer]
37989
38719
  # Output only. [Output Only] The unique identifier for the resource. This identifier is
37990
38720
  # defined by the server.
38721
+ # @!attribute [rw] incompatible_licenses
38722
+ # @return [::Array<::String>]
38723
+ # Specifies licenseCodes of licenses that are incompatible with this license.
38724
+ # If a license is incompatible with this license, it cannot be attached to
38725
+ # the same disk or image.
37991
38726
  # @!attribute [rw] kind
37992
38727
  # @return [::String]
37993
38728
  # Output only. [Output Only] Type of resource. Always compute#licenseCode for
@@ -37996,13 +38731,36 @@ module Google
37996
38731
  # @return [::Array<::Google::Cloud::Compute::V1::LicenseCodeLicenseAlias>]
37997
38732
  # [Output Only] URL and description aliases of Licenses with the same
37998
38733
  # License Code.
38734
+ # @!attribute [rw] minimum_retention
38735
+ # @return [::Google::Cloud::Compute::V1::Duration]
38736
+ # If set, this license will be unable to be removed or replaced once attached
38737
+ # to a disk until the minimum_retention period has passed.
38738
+ # @!attribute [rw] multi_tenant_only
38739
+ # @return [::Boolean]
38740
+ # If true, this license can only be used on VMs on multi tenant nodes.
37999
38741
  # @!attribute [rw] name
38000
38742
  # @return [::String]
38001
38743
  # Output only. [Output Only] Name of the resource. The name is 1-20 characters long and
38002
38744
  # must be a valid 64 bit integer.
38745
+ # @!attribute [rw] os_license
38746
+ # @return [::Boolean]
38747
+ # If true, indicates this is an OS license. Only one OS license can be
38748
+ # attached to a disk or image at a time.
38749
+ # @!attribute [rw] removable_from_disk
38750
+ # @return [::Boolean]
38751
+ # If true, this license can be removed from a disk's set of licenses, with no
38752
+ # replacement license needed.
38753
+ # @!attribute [rw] required_coattached_licenses
38754
+ # @return [::Array<::String>]
38755
+ # Specifies the set of permissible coattached licenseCodes of licenses that
38756
+ # satisfy the coattachment requirement of this license. At least one license
38757
+ # from the set must be attached to the same disk or image as this license.
38003
38758
  # @!attribute [rw] self_link
38004
38759
  # @return [::String]
38005
38760
  # Output only. [Output Only] Server-defined URL for the resource.
38761
+ # @!attribute [rw] sole_tenant_only
38762
+ # @return [::Boolean]
38763
+ # If true, this license can only be used on VMs on sole tenant nodes.
38006
38764
  # @!attribute [rw] state
38007
38765
  # @return [::String]
38008
38766
  # Output only. [Output Only] Current state of this License Code.
@@ -38011,6 +38769,10 @@ module Google
38011
38769
  # @return [::Boolean]
38012
38770
  # Output only. [Output Only] If true, the license will remain attached when creating
38013
38771
  # images or snapshots from disks. Otherwise, the license is not transferred.
38772
+ # @!attribute [rw] update_timestamp
38773
+ # @return [::String]
38774
+ # Output only. [Output Only] Last update timestamp inRFC3339
38775
+ # text format.
38014
38776
  class LicenseCode
38015
38777
  include ::Google::Protobuf::MessageExts
38016
38778
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -38054,8 +38816,8 @@ module Google
38054
38816
  # Input only. Resource manager tags to be bound to the license. Tag keys and values
38055
38817
  # have the same definition as resource
38056
38818
  # manager tags. Keys and values can be either in numeric format,
38057
- # such as `tagKeys/{tag_key_id}` and `tagValues/456` or in namespaced
38058
- # format such as `{org_id|project_id}/{tag_key_short_name}` and
38819
+ # such as `tagKeys/{tag_key_id}` and `tagValues/{tag_value_id}` or in
38820
+ # namespaced format such as `{org_id|project_id}/{tag_key_short_name}` and
38059
38821
  # `{tag_value_short_name}`. The field is ignored (both PUT &
38060
38822
  # PATCH) when empty.
38061
38823
  class LicenseParams
@@ -40804,6 +41566,108 @@ module Google
40804
41566
  extend ::Google::Protobuf::MessageExts::ClassMethods
40805
41567
  end
40806
41568
 
41569
+ # A request message for GlobalVmExtensionPolicies.List. See the method description for details.
41570
+ # @!attribute [rw] filter
41571
+ # @return [::String]
41572
+ # A filter expression that filters resources listed in the response. Most
41573
+ # Compute resources support two types of filter expressions:
41574
+ # expressions that support regular expressions and expressions that follow
41575
+ # API improvement proposal AIP-160.
41576
+ # These two types of filter expressions cannot be mixed in one request.
41577
+ #
41578
+ # If you want to use AIP-160, your expression must specify the field name, an
41579
+ # operator, and the value that you want to use for filtering. The value
41580
+ # must be a string, a number, or a boolean. The operator
41581
+ # must be either `=`, `!=`, `>`, `<`, `<=`, `>=` or `:`.
41582
+ #
41583
+ # For example, if you are filtering Compute Engine instances, you can
41584
+ # exclude instances named `example-instance` by specifying
41585
+ # `name != example-instance`.
41586
+ #
41587
+ # The `:*` comparison can be used to test whether a key has been defined.
41588
+ # For example, to find all objects with `owner` label use:
41589
+ # ```
41590
+ # labels.owner:*
41591
+ # ```
41592
+ #
41593
+ # You can also filter nested fields. For example, you could specify
41594
+ # `scheduling.automaticRestart = false` to include instances only
41595
+ # if they are not scheduled for automatic restarts. You can use filtering
41596
+ # on nested fields to filter based onresource labels.
41597
+ #
41598
+ # To filter on multiple expressions, provide each separate expression within
41599
+ # parentheses. For example:
41600
+ # ```
41601
+ # (scheduling.automaticRestart = true)
41602
+ # (cpuPlatform = "Intel Skylake")
41603
+ # ```
41604
+ # By default, each expression is an `AND` expression. However, you
41605
+ # can include `AND` and `OR` expressions explicitly.
41606
+ # For example:
41607
+ # ```
41608
+ # (cpuPlatform = "Intel Skylake") OR
41609
+ # (cpuPlatform = "Intel Broadwell") AND
41610
+ # (scheduling.automaticRestart = true)
41611
+ # ```
41612
+ #
41613
+ # If you want to use a regular expression, use the `eq` (equal) or `ne`
41614
+ # (not equal) operator against a single un-parenthesized expression with or
41615
+ # without quotes or against multiple parenthesized expressions. Examples:
41616
+ #
41617
+ # `fieldname eq unquoted literal`
41618
+ # `fieldname eq 'single quoted literal'`
41619
+ # `fieldname eq "double quoted literal"`
41620
+ # `(fieldname1 eq literal) (fieldname2 ne "literal")`
41621
+ #
41622
+ # The literal value is interpreted as a regular expression using GoogleRE2 library syntax.
41623
+ # The literal value must match the entire field.
41624
+ #
41625
+ # For example, to filter for instances that do not end with name "instance",
41626
+ # you would use `name ne .*instance`.
41627
+ #
41628
+ # You cannot combine constraints on multiple fields using regular
41629
+ # expressions.
41630
+ # @!attribute [rw] max_results
41631
+ # @return [::Integer]
41632
+ # The maximum number of results per page that should be returned.
41633
+ # If the number of available results is larger than `maxResults`,
41634
+ # Compute Engine returns a `nextPageToken` that can be used to get
41635
+ # the next page of results in subsequent list requests. Acceptable values are
41636
+ # `0` to `500`, inclusive. (Default: `500`)
41637
+ # @!attribute [rw] order_by
41638
+ # @return [::String]
41639
+ # Sorts list results by a certain order. By default, results
41640
+ # are returned in alphanumerical order based on the resource name.
41641
+ #
41642
+ # You can also sort results in descending order based on the creation
41643
+ # timestamp using `orderBy="creationTimestamp desc"`. This sorts
41644
+ # results based on the `creationTimestamp` field in
41645
+ # reverse chronological order (newest result first). Use this to sort
41646
+ # resources like operations so that the newest operation is returned first.
41647
+ #
41648
+ # Currently, only sorting by `name` or
41649
+ # `creationTimestamp desc` is supported.
41650
+ # @!attribute [rw] page_token
41651
+ # @return [::String]
41652
+ # Specifies a page token to use. Set `pageToken` to the
41653
+ # `nextPageToken` returned by a previous list request to get
41654
+ # the next page of results.
41655
+ # @!attribute [rw] project
41656
+ # @return [::String]
41657
+ # Project ID for this request.
41658
+ # @!attribute [rw] return_partial_success
41659
+ # @return [::Boolean]
41660
+ # Opt-in for partial success behavior which provides partial results in case
41661
+ # of failure. The default value is false.
41662
+ #
41663
+ # For example, when partial success behavior is enabled, aggregatedList for a
41664
+ # single zone scope either returns all resources in the zone or no resources,
41665
+ # with an error code.
41666
+ class ListGlobalVmExtensionPoliciesRequest
41667
+ include ::Google::Protobuf::MessageExts
41668
+ extend ::Google::Protobuf::MessageExts::ClassMethods
41669
+ end
41670
+
40807
41671
  # A request message for HealthChecks.List. See the method description for details.
40808
41672
  # @!attribute [rw] filter
40809
41673
  # @return [::String]
@@ -49384,7 +50248,7 @@ module Google
49384
50248
  extend ::Google::Protobuf::MessageExts::ClassMethods
49385
50249
  end
49386
50250
 
49387
- # A request message for Routers.ListRoutePolicies. See the method description for details.
50251
+ # A request message for RolloutPlans.List. See the method description for details.
49388
50252
  # @!attribute [rw] filter
49389
50253
  # @return [::String]
49390
50254
  # A filter expression that filters resources listed in the response. Most
@@ -49473,9 +50337,6 @@ module Google
49473
50337
  # @!attribute [rw] project
49474
50338
  # @return [::String]
49475
50339
  # Project ID for this request.
49476
- # @!attribute [rw] region
49477
- # @return [::String]
49478
- # Name of the region for this request.
49479
50340
  # @!attribute [rw] return_partial_success
49480
50341
  # @return [::Boolean]
49481
50342
  # Opt-in for partial success behavior which provides partial results in case
@@ -49484,16 +50345,12 @@ module Google
49484
50345
  # For example, when partial success behavior is enabled, aggregatedList for a
49485
50346
  # single zone scope either returns all resources in the zone or no resources,
49486
50347
  # with an error code.
49487
- # @!attribute [rw] router
49488
- # @return [::String]
49489
- # Name or id of the resource for this request.
49490
- # Name should conform to RFC1035.
49491
- class ListRoutePoliciesRoutersRequest
50348
+ class ListRolloutPlansRequest
49492
50349
  include ::Google::Protobuf::MessageExts
49493
50350
  extend ::Google::Protobuf::MessageExts::ClassMethods
49494
50351
  end
49495
50352
 
49496
- # A request message for Routers.List. See the method description for details.
50353
+ # A request message for Rollouts.List. See the method description for details.
49497
50354
  # @!attribute [rw] filter
49498
50355
  # @return [::String]
49499
50356
  # A filter expression that filters resources listed in the response. Most
@@ -49582,9 +50439,6 @@ module Google
49582
50439
  # @!attribute [rw] project
49583
50440
  # @return [::String]
49584
50441
  # Project ID for this request.
49585
- # @!attribute [rw] region
49586
- # @return [::String]
49587
- # Name of the region for this request.
49588
50442
  # @!attribute [rw] return_partial_success
49589
50443
  # @return [::Boolean]
49590
50444
  # Opt-in for partial success behavior which provides partial results in case
@@ -49593,12 +50447,12 @@ module Google
49593
50447
  # For example, when partial success behavior is enabled, aggregatedList for a
49594
50448
  # single zone scope either returns all resources in the zone or no resources,
49595
50449
  # with an error code.
49596
- class ListRoutersRequest
50450
+ class ListRolloutsRequest
49597
50451
  include ::Google::Protobuf::MessageExts
49598
50452
  extend ::Google::Protobuf::MessageExts::ClassMethods
49599
50453
  end
49600
50454
 
49601
- # A request message for Routes.List. See the method description for details.
50455
+ # A request message for Routers.ListRoutePolicies. See the method description for details.
49602
50456
  # @!attribute [rw] filter
49603
50457
  # @return [::String]
49604
50458
  # A filter expression that filters resources listed in the response. Most
@@ -49687,6 +50541,9 @@ module Google
49687
50541
  # @!attribute [rw] project
49688
50542
  # @return [::String]
49689
50543
  # Project ID for this request.
50544
+ # @!attribute [rw] region
50545
+ # @return [::String]
50546
+ # Name of the region for this request.
49690
50547
  # @!attribute [rw] return_partial_success
49691
50548
  # @return [::Boolean]
49692
50549
  # Opt-in for partial success behavior which provides partial results in case
@@ -49695,12 +50552,16 @@ module Google
49695
50552
  # For example, when partial success behavior is enabled, aggregatedList for a
49696
50553
  # single zone scope either returns all resources in the zone or no resources,
49697
50554
  # with an error code.
49698
- class ListRoutesRequest
50555
+ # @!attribute [rw] router
50556
+ # @return [::String]
50557
+ # Name or id of the resource for this request.
50558
+ # Name should conform to RFC1035.
50559
+ class ListRoutePoliciesRoutersRequest
49699
50560
  include ::Google::Protobuf::MessageExts
49700
50561
  extend ::Google::Protobuf::MessageExts::ClassMethods
49701
50562
  end
49702
50563
 
49703
- # A request message for SecurityPolicies.List. See the method description for details.
50564
+ # A request message for Routers.List. See the method description for details.
49704
50565
  # @!attribute [rw] filter
49705
50566
  # @return [::String]
49706
50567
  # A filter expression that filters resources listed in the response. Most
@@ -49789,6 +50650,9 @@ module Google
49789
50650
  # @!attribute [rw] project
49790
50651
  # @return [::String]
49791
50652
  # Project ID for this request.
50653
+ # @!attribute [rw] region
50654
+ # @return [::String]
50655
+ # Name of the region for this request.
49792
50656
  # @!attribute [rw] return_partial_success
49793
50657
  # @return [::Boolean]
49794
50658
  # Opt-in for partial success behavior which provides partial results in case
@@ -49797,12 +50661,12 @@ module Google
49797
50661
  # For example, when partial success behavior is enabled, aggregatedList for a
49798
50662
  # single zone scope either returns all resources in the zone or no resources,
49799
50663
  # with an error code.
49800
- class ListSecurityPoliciesRequest
50664
+ class ListRoutersRequest
49801
50665
  include ::Google::Protobuf::MessageExts
49802
50666
  extend ::Google::Protobuf::MessageExts::ClassMethods
49803
50667
  end
49804
50668
 
49805
- # A request message for ServiceAttachments.List. See the method description for details.
50669
+ # A request message for Routes.List. See the method description for details.
49806
50670
  # @!attribute [rw] filter
49807
50671
  # @return [::String]
49808
50672
  # A filter expression that filters resources listed in the response. Most
@@ -49891,9 +50755,6 @@ module Google
49891
50755
  # @!attribute [rw] project
49892
50756
  # @return [::String]
49893
50757
  # Project ID for this request.
49894
- # @!attribute [rw] region
49895
- # @return [::String]
49896
- # Name of the region of this request.
49897
50758
  # @!attribute [rw] return_partial_success
49898
50759
  # @return [::Boolean]
49899
50760
  # Opt-in for partial success behavior which provides partial results in case
@@ -49902,12 +50763,12 @@ module Google
49902
50763
  # For example, when partial success behavior is enabled, aggregatedList for a
49903
50764
  # single zone scope either returns all resources in the zone or no resources,
49904
50765
  # with an error code.
49905
- class ListServiceAttachmentsRequest
50766
+ class ListRoutesRequest
49906
50767
  include ::Google::Protobuf::MessageExts
49907
50768
  extend ::Google::Protobuf::MessageExts::ClassMethods
49908
50769
  end
49909
50770
 
49910
- # A request message for Snapshots.List. See the method description for details.
50771
+ # A request message for SecurityPolicies.List. See the method description for details.
49911
50772
  # @!attribute [rw] filter
49912
50773
  # @return [::String]
49913
50774
  # A filter expression that filters resources listed in the response. Most
@@ -50004,12 +50865,12 @@ module Google
50004
50865
  # For example, when partial success behavior is enabled, aggregatedList for a
50005
50866
  # single zone scope either returns all resources in the zone or no resources,
50006
50867
  # with an error code.
50007
- class ListSnapshotsRequest
50868
+ class ListSecurityPoliciesRequest
50008
50869
  include ::Google::Protobuf::MessageExts
50009
50870
  extend ::Google::Protobuf::MessageExts::ClassMethods
50010
50871
  end
50011
50872
 
50012
- # A request message for SslCertificates.List. See the method description for details.
50873
+ # A request message for ServiceAttachments.List. See the method description for details.
50013
50874
  # @!attribute [rw] filter
50014
50875
  # @return [::String]
50015
50876
  # A filter expression that filters resources listed in the response. Most
@@ -50098,108 +50959,9 @@ module Google
50098
50959
  # @!attribute [rw] project
50099
50960
  # @return [::String]
50100
50961
  # Project ID for this request.
50101
- # @!attribute [rw] return_partial_success
50102
- # @return [::Boolean]
50103
- # Opt-in for partial success behavior which provides partial results in case
50104
- # of failure. The default value is false.
50105
- #
50106
- # For example, when partial success behavior is enabled, aggregatedList for a
50107
- # single zone scope either returns all resources in the zone or no resources,
50108
- # with an error code.
50109
- class ListSslCertificatesRequest
50110
- include ::Google::Protobuf::MessageExts
50111
- extend ::Google::Protobuf::MessageExts::ClassMethods
50112
- end
50113
-
50114
- # A request message for SslPolicies.List. See the method description for details.
50115
- # @!attribute [rw] filter
50116
- # @return [::String]
50117
- # A filter expression that filters resources listed in the response. Most
50118
- # Compute resources support two types of filter expressions:
50119
- # expressions that support regular expressions and expressions that follow
50120
- # API improvement proposal AIP-160.
50121
- # These two types of filter expressions cannot be mixed in one request.
50122
- #
50123
- # If you want to use AIP-160, your expression must specify the field name, an
50124
- # operator, and the value that you want to use for filtering. The value
50125
- # must be a string, a number, or a boolean. The operator
50126
- # must be either `=`, `!=`, `>`, `<`, `<=`, `>=` or `:`.
50127
- #
50128
- # For example, if you are filtering Compute Engine instances, you can
50129
- # exclude instances named `example-instance` by specifying
50130
- # `name != example-instance`.
50131
- #
50132
- # The `:*` comparison can be used to test whether a key has been defined.
50133
- # For example, to find all objects with `owner` label use:
50134
- # ```
50135
- # labels.owner:*
50136
- # ```
50137
- #
50138
- # You can also filter nested fields. For example, you could specify
50139
- # `scheduling.automaticRestart = false` to include instances only
50140
- # if they are not scheduled for automatic restarts. You can use filtering
50141
- # on nested fields to filter based onresource labels.
50142
- #
50143
- # To filter on multiple expressions, provide each separate expression within
50144
- # parentheses. For example:
50145
- # ```
50146
- # (scheduling.automaticRestart = true)
50147
- # (cpuPlatform = "Intel Skylake")
50148
- # ```
50149
- # By default, each expression is an `AND` expression. However, you
50150
- # can include `AND` and `OR` expressions explicitly.
50151
- # For example:
50152
- # ```
50153
- # (cpuPlatform = "Intel Skylake") OR
50154
- # (cpuPlatform = "Intel Broadwell") AND
50155
- # (scheduling.automaticRestart = true)
50156
- # ```
50157
- #
50158
- # If you want to use a regular expression, use the `eq` (equal) or `ne`
50159
- # (not equal) operator against a single un-parenthesized expression with or
50160
- # without quotes or against multiple parenthesized expressions. Examples:
50161
- #
50162
- # `fieldname eq unquoted literal`
50163
- # `fieldname eq 'single quoted literal'`
50164
- # `fieldname eq "double quoted literal"`
50165
- # `(fieldname1 eq literal) (fieldname2 ne "literal")`
50166
- #
50167
- # The literal value is interpreted as a regular expression using GoogleRE2 library syntax.
50168
- # The literal value must match the entire field.
50169
- #
50170
- # For example, to filter for instances that do not end with name "instance",
50171
- # you would use `name ne .*instance`.
50172
- #
50173
- # You cannot combine constraints on multiple fields using regular
50174
- # expressions.
50175
- # @!attribute [rw] max_results
50176
- # @return [::Integer]
50177
- # The maximum number of results per page that should be returned.
50178
- # If the number of available results is larger than `maxResults`,
50179
- # Compute Engine returns a `nextPageToken` that can be used to get
50180
- # the next page of results in subsequent list requests. Acceptable values are
50181
- # `0` to `500`, inclusive. (Default: `500`)
50182
- # @!attribute [rw] order_by
50183
- # @return [::String]
50184
- # Sorts list results by a certain order. By default, results
50185
- # are returned in alphanumerical order based on the resource name.
50186
- #
50187
- # You can also sort results in descending order based on the creation
50188
- # timestamp using `orderBy="creationTimestamp desc"`. This sorts
50189
- # results based on the `creationTimestamp` field in
50190
- # reverse chronological order (newest result first). Use this to sort
50191
- # resources like operations so that the newest operation is returned first.
50192
- #
50193
- # Currently, only sorting by `name` or
50194
- # `creationTimestamp desc` is supported.
50195
- # @!attribute [rw] page_token
50196
- # @return [::String]
50197
- # Specifies a page token to use. Set `pageToken` to the
50198
- # `nextPageToken` returned by a previous list request to get
50199
- # the next page of results.
50200
- # @!attribute [rw] project
50962
+ # @!attribute [rw] region
50201
50963
  # @return [::String]
50202
- # Project ID for this request.
50964
+ # Name of the region of this request.
50203
50965
  # @!attribute [rw] return_partial_success
50204
50966
  # @return [::Boolean]
50205
50967
  # Opt-in for partial success behavior which provides partial results in case
@@ -50208,12 +50970,12 @@ module Google
50208
50970
  # For example, when partial success behavior is enabled, aggregatedList for a
50209
50971
  # single zone scope either returns all resources in the zone or no resources,
50210
50972
  # with an error code.
50211
- class ListSslPoliciesRequest
50973
+ class ListServiceAttachmentsRequest
50212
50974
  include ::Google::Protobuf::MessageExts
50213
50975
  extend ::Google::Protobuf::MessageExts::ClassMethods
50214
50976
  end
50215
50977
 
50216
- # A request message for StoragePoolTypes.List. See the method description for details.
50978
+ # A request message for Snapshots.List. See the method description for details.
50217
50979
  # @!attribute [rw] filter
50218
50980
  # @return [::String]
50219
50981
  # A filter expression that filters resources listed in the response. Most
@@ -50310,15 +51072,12 @@ module Google
50310
51072
  # For example, when partial success behavior is enabled, aggregatedList for a
50311
51073
  # single zone scope either returns all resources in the zone or no resources,
50312
51074
  # with an error code.
50313
- # @!attribute [rw] zone
50314
- # @return [::String]
50315
- # The name of the zone for this request.
50316
- class ListStoragePoolTypesRequest
51075
+ class ListSnapshotsRequest
50317
51076
  include ::Google::Protobuf::MessageExts
50318
51077
  extend ::Google::Protobuf::MessageExts::ClassMethods
50319
51078
  end
50320
51079
 
50321
- # A request message for StoragePools.List. See the method description for details.
51080
+ # A request message for SslCertificates.List. See the method description for details.
50322
51081
  # @!attribute [rw] filter
50323
51082
  # @return [::String]
50324
51083
  # A filter expression that filters resources listed in the response. Most
@@ -50415,15 +51174,12 @@ module Google
50415
51174
  # For example, when partial success behavior is enabled, aggregatedList for a
50416
51175
  # single zone scope either returns all resources in the zone or no resources,
50417
51176
  # with an error code.
50418
- # @!attribute [rw] zone
50419
- # @return [::String]
50420
- # The name of the zone for this request.
50421
- class ListStoragePoolsRequest
51177
+ class ListSslCertificatesRequest
50422
51178
  include ::Google::Protobuf::MessageExts
50423
51179
  extend ::Google::Protobuf::MessageExts::ClassMethods
50424
51180
  end
50425
51181
 
50426
- # A request message for Subnetworks.List. See the method description for details.
51182
+ # A request message for SslPolicies.List. See the method description for details.
50427
51183
  # @!attribute [rw] filter
50428
51184
  # @return [::String]
50429
51185
  # A filter expression that filters resources listed in the response. Most
@@ -50512,9 +51268,6 @@ module Google
50512
51268
  # @!attribute [rw] project
50513
51269
  # @return [::String]
50514
51270
  # Project ID for this request.
50515
- # @!attribute [rw] region
50516
- # @return [::String]
50517
- # Name of the region scoping this request.
50518
51271
  # @!attribute [rw] return_partial_success
50519
51272
  # @return [::Boolean]
50520
51273
  # Opt-in for partial success behavior which provides partial results in case
@@ -50523,35 +51276,12 @@ module Google
50523
51276
  # For example, when partial success behavior is enabled, aggregatedList for a
50524
51277
  # single zone scope either returns all resources in the zone or no resources,
50525
51278
  # with an error code.
50526
- # @!attribute [rw] views
50527
- # @return [::String]
50528
- # Defines the extra views returned back in the subnetwork resource.
50529
- # Supported values:
50530
- #
50531
- # - WITH_UTILIZATION: Utilization data is included in the
50532
- # response.
50533
- # Check the Views enum for the list of possible values.
50534
- class ListSubnetworksRequest
51279
+ class ListSslPoliciesRequest
50535
51280
  include ::Google::Protobuf::MessageExts
50536
51281
  extend ::Google::Protobuf::MessageExts::ClassMethods
50537
-
50538
- # Defines the extra views returned back in the subnetwork resource.
50539
- # Supported values:
50540
- #
50541
- # - WITH_UTILIZATION: Utilization data is included in the
50542
- # response.
50543
- module Views
50544
- # A value indicating that the enum field is not set.
50545
- UNDEFINED_VIEWS = 0
50546
-
50547
- DEFAULT = 115_302_945
50548
-
50549
- # Utilization data is included in the response.
50550
- WITH_UTILIZATION = 504_090_633
50551
- end
50552
51282
  end
50553
51283
 
50554
- # A request message for TargetGrpcProxies.List. See the method description for details.
51284
+ # A request message for StoragePoolTypes.List. See the method description for details.
50555
51285
  # @!attribute [rw] filter
50556
51286
  # @return [::String]
50557
51287
  # A filter expression that filters resources listed in the response. Most
@@ -50648,216 +51378,15 @@ module Google
50648
51378
  # For example, when partial success behavior is enabled, aggregatedList for a
50649
51379
  # single zone scope either returns all resources in the zone or no resources,
50650
51380
  # with an error code.
50651
- class ListTargetGrpcProxiesRequest
50652
- include ::Google::Protobuf::MessageExts
50653
- extend ::Google::Protobuf::MessageExts::ClassMethods
50654
- end
50655
-
50656
- # A request message for TargetHttpProxies.List. See the method description for details.
50657
- # @!attribute [rw] filter
50658
- # @return [::String]
50659
- # A filter expression that filters resources listed in the response. Most
50660
- # Compute resources support two types of filter expressions:
50661
- # expressions that support regular expressions and expressions that follow
50662
- # API improvement proposal AIP-160.
50663
- # These two types of filter expressions cannot be mixed in one request.
50664
- #
50665
- # If you want to use AIP-160, your expression must specify the field name, an
50666
- # operator, and the value that you want to use for filtering. The value
50667
- # must be a string, a number, or a boolean. The operator
50668
- # must be either `=`, `!=`, `>`, `<`, `<=`, `>=` or `:`.
50669
- #
50670
- # For example, if you are filtering Compute Engine instances, you can
50671
- # exclude instances named `example-instance` by specifying
50672
- # `name != example-instance`.
50673
- #
50674
- # The `:*` comparison can be used to test whether a key has been defined.
50675
- # For example, to find all objects with `owner` label use:
50676
- # ```
50677
- # labels.owner:*
50678
- # ```
50679
- #
50680
- # You can also filter nested fields. For example, you could specify
50681
- # `scheduling.automaticRestart = false` to include instances only
50682
- # if they are not scheduled for automatic restarts. You can use filtering
50683
- # on nested fields to filter based onresource labels.
50684
- #
50685
- # To filter on multiple expressions, provide each separate expression within
50686
- # parentheses. For example:
50687
- # ```
50688
- # (scheduling.automaticRestart = true)
50689
- # (cpuPlatform = "Intel Skylake")
50690
- # ```
50691
- # By default, each expression is an `AND` expression. However, you
50692
- # can include `AND` and `OR` expressions explicitly.
50693
- # For example:
50694
- # ```
50695
- # (cpuPlatform = "Intel Skylake") OR
50696
- # (cpuPlatform = "Intel Broadwell") AND
50697
- # (scheduling.automaticRestart = true)
50698
- # ```
50699
- #
50700
- # If you want to use a regular expression, use the `eq` (equal) or `ne`
50701
- # (not equal) operator against a single un-parenthesized expression with or
50702
- # without quotes or against multiple parenthesized expressions. Examples:
50703
- #
50704
- # `fieldname eq unquoted literal`
50705
- # `fieldname eq 'single quoted literal'`
50706
- # `fieldname eq "double quoted literal"`
50707
- # `(fieldname1 eq literal) (fieldname2 ne "literal")`
50708
- #
50709
- # The literal value is interpreted as a regular expression using GoogleRE2 library syntax.
50710
- # The literal value must match the entire field.
50711
- #
50712
- # For example, to filter for instances that do not end with name "instance",
50713
- # you would use `name ne .*instance`.
50714
- #
50715
- # You cannot combine constraints on multiple fields using regular
50716
- # expressions.
50717
- # @!attribute [rw] max_results
50718
- # @return [::Integer]
50719
- # The maximum number of results per page that should be returned.
50720
- # If the number of available results is larger than `maxResults`,
50721
- # Compute Engine returns a `nextPageToken` that can be used to get
50722
- # the next page of results in subsequent list requests. Acceptable values are
50723
- # `0` to `500`, inclusive. (Default: `500`)
50724
- # @!attribute [rw] order_by
50725
- # @return [::String]
50726
- # Sorts list results by a certain order. By default, results
50727
- # are returned in alphanumerical order based on the resource name.
50728
- #
50729
- # You can also sort results in descending order based on the creation
50730
- # timestamp using `orderBy="creationTimestamp desc"`. This sorts
50731
- # results based on the `creationTimestamp` field in
50732
- # reverse chronological order (newest result first). Use this to sort
50733
- # resources like operations so that the newest operation is returned first.
50734
- #
50735
- # Currently, only sorting by `name` or
50736
- # `creationTimestamp desc` is supported.
50737
- # @!attribute [rw] page_token
50738
- # @return [::String]
50739
- # Specifies a page token to use. Set `pageToken` to the
50740
- # `nextPageToken` returned by a previous list request to get
50741
- # the next page of results.
50742
- # @!attribute [rw] project
51381
+ # @!attribute [rw] zone
50743
51382
  # @return [::String]
50744
- # Project ID for this request.
50745
- # @!attribute [rw] return_partial_success
50746
- # @return [::Boolean]
50747
- # Opt-in for partial success behavior which provides partial results in case
50748
- # of failure. The default value is false.
50749
- #
50750
- # For example, when partial success behavior is enabled, aggregatedList for a
50751
- # single zone scope either returns all resources in the zone or no resources,
50752
- # with an error code.
50753
- class ListTargetHttpProxiesRequest
51383
+ # The name of the zone for this request.
51384
+ class ListStoragePoolTypesRequest
50754
51385
  include ::Google::Protobuf::MessageExts
50755
51386
  extend ::Google::Protobuf::MessageExts::ClassMethods
50756
51387
  end
50757
51388
 
50758
- # A request message for TargetHttpsProxies.List. See the method description for details.
50759
- # @!attribute [rw] filter
50760
- # @return [::String]
50761
- # A filter expression that filters resources listed in the response. Most
50762
- # Compute resources support two types of filter expressions:
50763
- # expressions that support regular expressions and expressions that follow
50764
- # API improvement proposal AIP-160.
50765
- # These two types of filter expressions cannot be mixed in one request.
50766
- #
50767
- # If you want to use AIP-160, your expression must specify the field name, an
50768
- # operator, and the value that you want to use for filtering. The value
50769
- # must be a string, a number, or a boolean. The operator
50770
- # must be either `=`, `!=`, `>`, `<`, `<=`, `>=` or `:`.
50771
- #
50772
- # For example, if you are filtering Compute Engine instances, you can
50773
- # exclude instances named `example-instance` by specifying
50774
- # `name != example-instance`.
50775
- #
50776
- # The `:*` comparison can be used to test whether a key has been defined.
50777
- # For example, to find all objects with `owner` label use:
50778
- # ```
50779
- # labels.owner:*
50780
- # ```
50781
- #
50782
- # You can also filter nested fields. For example, you could specify
50783
- # `scheduling.automaticRestart = false` to include instances only
50784
- # if they are not scheduled for automatic restarts. You can use filtering
50785
- # on nested fields to filter based onresource labels.
50786
- #
50787
- # To filter on multiple expressions, provide each separate expression within
50788
- # parentheses. For example:
50789
- # ```
50790
- # (scheduling.automaticRestart = true)
50791
- # (cpuPlatform = "Intel Skylake")
50792
- # ```
50793
- # By default, each expression is an `AND` expression. However, you
50794
- # can include `AND` and `OR` expressions explicitly.
50795
- # For example:
50796
- # ```
50797
- # (cpuPlatform = "Intel Skylake") OR
50798
- # (cpuPlatform = "Intel Broadwell") AND
50799
- # (scheduling.automaticRestart = true)
50800
- # ```
50801
- #
50802
- # If you want to use a regular expression, use the `eq` (equal) or `ne`
50803
- # (not equal) operator against a single un-parenthesized expression with or
50804
- # without quotes or against multiple parenthesized expressions. Examples:
50805
- #
50806
- # `fieldname eq unquoted literal`
50807
- # `fieldname eq 'single quoted literal'`
50808
- # `fieldname eq "double quoted literal"`
50809
- # `(fieldname1 eq literal) (fieldname2 ne "literal")`
50810
- #
50811
- # The literal value is interpreted as a regular expression using GoogleRE2 library syntax.
50812
- # The literal value must match the entire field.
50813
- #
50814
- # For example, to filter for instances that do not end with name "instance",
50815
- # you would use `name ne .*instance`.
50816
- #
50817
- # You cannot combine constraints on multiple fields using regular
50818
- # expressions.
50819
- # @!attribute [rw] max_results
50820
- # @return [::Integer]
50821
- # The maximum number of results per page that should be returned.
50822
- # If the number of available results is larger than `maxResults`,
50823
- # Compute Engine returns a `nextPageToken` that can be used to get
50824
- # the next page of results in subsequent list requests. Acceptable values are
50825
- # `0` to `500`, inclusive. (Default: `500`)
50826
- # @!attribute [rw] order_by
50827
- # @return [::String]
50828
- # Sorts list results by a certain order. By default, results
50829
- # are returned in alphanumerical order based on the resource name.
50830
- #
50831
- # You can also sort results in descending order based on the creation
50832
- # timestamp using `orderBy="creationTimestamp desc"`. This sorts
50833
- # results based on the `creationTimestamp` field in
50834
- # reverse chronological order (newest result first). Use this to sort
50835
- # resources like operations so that the newest operation is returned first.
50836
- #
50837
- # Currently, only sorting by `name` or
50838
- # `creationTimestamp desc` is supported.
50839
- # @!attribute [rw] page_token
50840
- # @return [::String]
50841
- # Specifies a page token to use. Set `pageToken` to the
50842
- # `nextPageToken` returned by a previous list request to get
50843
- # the next page of results.
50844
- # @!attribute [rw] project
50845
- # @return [::String]
50846
- # Project ID for this request.
50847
- # @!attribute [rw] return_partial_success
50848
- # @return [::Boolean]
50849
- # Opt-in for partial success behavior which provides partial results in case
50850
- # of failure. The default value is false.
50851
- #
50852
- # For example, when partial success behavior is enabled, aggregatedList for a
50853
- # single zone scope either returns all resources in the zone or no resources,
50854
- # with an error code.
50855
- class ListTargetHttpsProxiesRequest
50856
- include ::Google::Protobuf::MessageExts
50857
- extend ::Google::Protobuf::MessageExts::ClassMethods
50858
- end
50859
-
50860
- # A request message for TargetInstances.List. See the method description for details.
51389
+ # A request message for StoragePools.List. See the method description for details.
50861
51390
  # @!attribute [rw] filter
50862
51391
  # @return [::String]
50863
51392
  # A filter expression that filters resources listed in the response. Most
@@ -50956,13 +51485,13 @@ module Google
50956
51485
  # with an error code.
50957
51486
  # @!attribute [rw] zone
50958
51487
  # @return [::String]
50959
- # Name of the zone scoping this request.
50960
- class ListTargetInstancesRequest
51488
+ # The name of the zone for this request.
51489
+ class ListStoragePoolsRequest
50961
51490
  include ::Google::Protobuf::MessageExts
50962
51491
  extend ::Google::Protobuf::MessageExts::ClassMethods
50963
51492
  end
50964
51493
 
50965
- # A request message for TargetPools.List. See the method description for details.
51494
+ # A request message for Subnetworks.List. See the method description for details.
50966
51495
  # @!attribute [rw] filter
50967
51496
  # @return [::String]
50968
51497
  # A filter expression that filters resources listed in the response. Most
@@ -51062,114 +51591,35 @@ module Google
51062
51591
  # For example, when partial success behavior is enabled, aggregatedList for a
51063
51592
  # single zone scope either returns all resources in the zone or no resources,
51064
51593
  # with an error code.
51065
- class ListTargetPoolsRequest
51066
- include ::Google::Protobuf::MessageExts
51067
- extend ::Google::Protobuf::MessageExts::ClassMethods
51068
- end
51069
-
51070
- # A request message for TargetSslProxies.List. See the method description for details.
51071
- # @!attribute [rw] filter
51072
- # @return [::String]
51073
- # A filter expression that filters resources listed in the response. Most
51074
- # Compute resources support two types of filter expressions:
51075
- # expressions that support regular expressions and expressions that follow
51076
- # API improvement proposal AIP-160.
51077
- # These two types of filter expressions cannot be mixed in one request.
51078
- #
51079
- # If you want to use AIP-160, your expression must specify the field name, an
51080
- # operator, and the value that you want to use for filtering. The value
51081
- # must be a string, a number, or a boolean. The operator
51082
- # must be either `=`, `!=`, `>`, `<`, `<=`, `>=` or `:`.
51083
- #
51084
- # For example, if you are filtering Compute Engine instances, you can
51085
- # exclude instances named `example-instance` by specifying
51086
- # `name != example-instance`.
51087
- #
51088
- # The `:*` comparison can be used to test whether a key has been defined.
51089
- # For example, to find all objects with `owner` label use:
51090
- # ```
51091
- # labels.owner:*
51092
- # ```
51093
- #
51094
- # You can also filter nested fields. For example, you could specify
51095
- # `scheduling.automaticRestart = false` to include instances only
51096
- # if they are not scheduled for automatic restarts. You can use filtering
51097
- # on nested fields to filter based onresource labels.
51098
- #
51099
- # To filter on multiple expressions, provide each separate expression within
51100
- # parentheses. For example:
51101
- # ```
51102
- # (scheduling.automaticRestart = true)
51103
- # (cpuPlatform = "Intel Skylake")
51104
- # ```
51105
- # By default, each expression is an `AND` expression. However, you
51106
- # can include `AND` and `OR` expressions explicitly.
51107
- # For example:
51108
- # ```
51109
- # (cpuPlatform = "Intel Skylake") OR
51110
- # (cpuPlatform = "Intel Broadwell") AND
51111
- # (scheduling.automaticRestart = true)
51112
- # ```
51113
- #
51114
- # If you want to use a regular expression, use the `eq` (equal) or `ne`
51115
- # (not equal) operator against a single un-parenthesized expression with or
51116
- # without quotes or against multiple parenthesized expressions. Examples:
51117
- #
51118
- # `fieldname eq unquoted literal`
51119
- # `fieldname eq 'single quoted literal'`
51120
- # `fieldname eq "double quoted literal"`
51121
- # `(fieldname1 eq literal) (fieldname2 ne "literal")`
51122
- #
51123
- # The literal value is interpreted as a regular expression using GoogleRE2 library syntax.
51124
- # The literal value must match the entire field.
51125
- #
51126
- # For example, to filter for instances that do not end with name "instance",
51127
- # you would use `name ne .*instance`.
51128
- #
51129
- # You cannot combine constraints on multiple fields using regular
51130
- # expressions.
51131
- # @!attribute [rw] max_results
51132
- # @return [::Integer]
51133
- # The maximum number of results per page that should be returned.
51134
- # If the number of available results is larger than `maxResults`,
51135
- # Compute Engine returns a `nextPageToken` that can be used to get
51136
- # the next page of results in subsequent list requests. Acceptable values are
51137
- # `0` to `500`, inclusive. (Default: `500`)
51138
- # @!attribute [rw] order_by
51139
- # @return [::String]
51140
- # Sorts list results by a certain order. By default, results
51141
- # are returned in alphanumerical order based on the resource name.
51142
- #
51143
- # You can also sort results in descending order based on the creation
51144
- # timestamp using `orderBy="creationTimestamp desc"`. This sorts
51145
- # results based on the `creationTimestamp` field in
51146
- # reverse chronological order (newest result first). Use this to sort
51147
- # resources like operations so that the newest operation is returned first.
51148
- #
51149
- # Currently, only sorting by `name` or
51150
- # `creationTimestamp desc` is supported.
51151
- # @!attribute [rw] page_token
51152
- # @return [::String]
51153
- # Specifies a page token to use. Set `pageToken` to the
51154
- # `nextPageToken` returned by a previous list request to get
51155
- # the next page of results.
51156
- # @!attribute [rw] project
51594
+ # @!attribute [rw] views
51157
51595
  # @return [::String]
51158
- # Project ID for this request.
51159
- # @!attribute [rw] return_partial_success
51160
- # @return [::Boolean]
51161
- # Opt-in for partial success behavior which provides partial results in case
51162
- # of failure. The default value is false.
51596
+ # Defines the extra views returned back in the subnetwork resource.
51597
+ # Supported values:
51163
51598
  #
51164
- # For example, when partial success behavior is enabled, aggregatedList for a
51165
- # single zone scope either returns all resources in the zone or no resources,
51166
- # with an error code.
51167
- class ListTargetSslProxiesRequest
51599
+ # - WITH_UTILIZATION: Utilization data is included in the
51600
+ # response.
51601
+ # Check the Views enum for the list of possible values.
51602
+ class ListSubnetworksRequest
51168
51603
  include ::Google::Protobuf::MessageExts
51169
51604
  extend ::Google::Protobuf::MessageExts::ClassMethods
51605
+
51606
+ # Defines the extra views returned back in the subnetwork resource.
51607
+ # Supported values:
51608
+ #
51609
+ # - WITH_UTILIZATION: Utilization data is included in the
51610
+ # response.
51611
+ module Views
51612
+ # A value indicating that the enum field is not set.
51613
+ UNDEFINED_VIEWS = 0
51614
+
51615
+ DEFAULT = 115_302_945
51616
+
51617
+ # Utilization data is included in the response.
51618
+ WITH_UTILIZATION = 504_090_633
51619
+ end
51170
51620
  end
51171
51621
 
51172
- # A request message for TargetTcpProxies.List. See the method description for details.
51622
+ # A request message for TargetGrpcProxies.List. See the method description for details.
51173
51623
  # @!attribute [rw] filter
51174
51624
  # @return [::String]
51175
51625
  # A filter expression that filters resources listed in the response. Most
@@ -51266,12 +51716,12 @@ module Google
51266
51716
  # For example, when partial success behavior is enabled, aggregatedList for a
51267
51717
  # single zone scope either returns all resources in the zone or no resources,
51268
51718
  # with an error code.
51269
- class ListTargetTcpProxiesRequest
51719
+ class ListTargetGrpcProxiesRequest
51270
51720
  include ::Google::Protobuf::MessageExts
51271
51721
  extend ::Google::Protobuf::MessageExts::ClassMethods
51272
51722
  end
51273
51723
 
51274
- # A request message for TargetVpnGateways.List. See the method description for details.
51724
+ # A request message for TargetHttpProxies.List. See the method description for details.
51275
51725
  # @!attribute [rw] filter
51276
51726
  # @return [::String]
51277
51727
  # A filter expression that filters resources listed in the response. Most
@@ -51360,9 +51810,6 @@ module Google
51360
51810
  # @!attribute [rw] project
51361
51811
  # @return [::String]
51362
51812
  # Project ID for this request.
51363
- # @!attribute [rw] region
51364
- # @return [::String]
51365
- # Name of the region for this request.
51366
51813
  # @!attribute [rw] return_partial_success
51367
51814
  # @return [::Boolean]
51368
51815
  # Opt-in for partial success behavior which provides partial results in case
@@ -51371,12 +51818,12 @@ module Google
51371
51818
  # For example, when partial success behavior is enabled, aggregatedList for a
51372
51819
  # single zone scope either returns all resources in the zone or no resources,
51373
51820
  # with an error code.
51374
- class ListTargetVpnGatewaysRequest
51821
+ class ListTargetHttpProxiesRequest
51375
51822
  include ::Google::Protobuf::MessageExts
51376
51823
  extend ::Google::Protobuf::MessageExts::ClassMethods
51377
51824
  end
51378
51825
 
51379
- # A request message for UrlMaps.List. See the method description for details.
51826
+ # A request message for TargetHttpsProxies.List. See the method description for details.
51380
51827
  # @!attribute [rw] filter
51381
51828
  # @return [::String]
51382
51829
  # A filter expression that filters resources listed in the response. Most
@@ -51473,12 +51920,12 @@ module Google
51473
51920
  # For example, when partial success behavior is enabled, aggregatedList for a
51474
51921
  # single zone scope either returns all resources in the zone or no resources,
51475
51922
  # with an error code.
51476
- class ListUrlMapsRequest
51923
+ class ListTargetHttpsProxiesRequest
51477
51924
  include ::Google::Protobuf::MessageExts
51478
51925
  extend ::Google::Protobuf::MessageExts::ClassMethods
51479
51926
  end
51480
51927
 
51481
- # A request message for BackendBuckets.ListUsable. See the method description for details.
51928
+ # A request message for TargetInstances.List. See the method description for details.
51482
51929
  # @!attribute [rw] filter
51483
51930
  # @return [::String]
51484
51931
  # A filter expression that filters resources listed in the response. Most
@@ -51575,12 +52022,15 @@ module Google
51575
52022
  # For example, when partial success behavior is enabled, aggregatedList for a
51576
52023
  # single zone scope either returns all resources in the zone or no resources,
51577
52024
  # with an error code.
51578
- class ListUsableBackendBucketsRequest
52025
+ # @!attribute [rw] zone
52026
+ # @return [::String]
52027
+ # Name of the zone scoping this request.
52028
+ class ListTargetInstancesRequest
51579
52029
  include ::Google::Protobuf::MessageExts
51580
52030
  extend ::Google::Protobuf::MessageExts::ClassMethods
51581
52031
  end
51582
52032
 
51583
- # A request message for BackendServices.ListUsable. See the method description for details.
52033
+ # A request message for TargetPools.List. See the method description for details.
51584
52034
  # @!attribute [rw] filter
51585
52035
  # @return [::String]
51586
52036
  # A filter expression that filters resources listed in the response. Most
@@ -51669,6 +52119,9 @@ module Google
51669
52119
  # @!attribute [rw] project
51670
52120
  # @return [::String]
51671
52121
  # Project ID for this request.
52122
+ # @!attribute [rw] region
52123
+ # @return [::String]
52124
+ # Name of the region scoping this request.
51672
52125
  # @!attribute [rw] return_partial_success
51673
52126
  # @return [::Boolean]
51674
52127
  # Opt-in for partial success behavior which provides partial results in case
@@ -51677,12 +52130,12 @@ module Google
51677
52130
  # For example, when partial success behavior is enabled, aggregatedList for a
51678
52131
  # single zone scope either returns all resources in the zone or no resources,
51679
52132
  # with an error code.
51680
- class ListUsableBackendServicesRequest
52133
+ class ListTargetPoolsRequest
51681
52134
  include ::Google::Protobuf::MessageExts
51682
52135
  extend ::Google::Protobuf::MessageExts::ClassMethods
51683
52136
  end
51684
52137
 
51685
- # A request message for RegionBackendBuckets.ListUsable. See the method description for details.
52138
+ # A request message for TargetSslProxies.List. See the method description for details.
51686
52139
  # @!attribute [rw] filter
51687
52140
  # @return [::String]
51688
52141
  # A filter expression that filters resources listed in the response. Most
@@ -51771,10 +52224,108 @@ module Google
51771
52224
  # @!attribute [rw] project
51772
52225
  # @return [::String]
51773
52226
  # Project ID for this request.
51774
- # @!attribute [rw] region
52227
+ # @!attribute [rw] return_partial_success
52228
+ # @return [::Boolean]
52229
+ # Opt-in for partial success behavior which provides partial results in case
52230
+ # of failure. The default value is false.
52231
+ #
52232
+ # For example, when partial success behavior is enabled, aggregatedList for a
52233
+ # single zone scope either returns all resources in the zone or no resources,
52234
+ # with an error code.
52235
+ class ListTargetSslProxiesRequest
52236
+ include ::Google::Protobuf::MessageExts
52237
+ extend ::Google::Protobuf::MessageExts::ClassMethods
52238
+ end
52239
+
52240
+ # A request message for TargetTcpProxies.List. See the method description for details.
52241
+ # @!attribute [rw] filter
51775
52242
  # @return [::String]
51776
- # Name of the region scoping this request.
51777
- # It must be a string that meets the requirements in RFC1035.
52243
+ # A filter expression that filters resources listed in the response. Most
52244
+ # Compute resources support two types of filter expressions:
52245
+ # expressions that support regular expressions and expressions that follow
52246
+ # API improvement proposal AIP-160.
52247
+ # These two types of filter expressions cannot be mixed in one request.
52248
+ #
52249
+ # If you want to use AIP-160, your expression must specify the field name, an
52250
+ # operator, and the value that you want to use for filtering. The value
52251
+ # must be a string, a number, or a boolean. The operator
52252
+ # must be either `=`, `!=`, `>`, `<`, `<=`, `>=` or `:`.
52253
+ #
52254
+ # For example, if you are filtering Compute Engine instances, you can
52255
+ # exclude instances named `example-instance` by specifying
52256
+ # `name != example-instance`.
52257
+ #
52258
+ # The `:*` comparison can be used to test whether a key has been defined.
52259
+ # For example, to find all objects with `owner` label use:
52260
+ # ```
52261
+ # labels.owner:*
52262
+ # ```
52263
+ #
52264
+ # You can also filter nested fields. For example, you could specify
52265
+ # `scheduling.automaticRestart = false` to include instances only
52266
+ # if they are not scheduled for automatic restarts. You can use filtering
52267
+ # on nested fields to filter based onresource labels.
52268
+ #
52269
+ # To filter on multiple expressions, provide each separate expression within
52270
+ # parentheses. For example:
52271
+ # ```
52272
+ # (scheduling.automaticRestart = true)
52273
+ # (cpuPlatform = "Intel Skylake")
52274
+ # ```
52275
+ # By default, each expression is an `AND` expression. However, you
52276
+ # can include `AND` and `OR` expressions explicitly.
52277
+ # For example:
52278
+ # ```
52279
+ # (cpuPlatform = "Intel Skylake") OR
52280
+ # (cpuPlatform = "Intel Broadwell") AND
52281
+ # (scheduling.automaticRestart = true)
52282
+ # ```
52283
+ #
52284
+ # If you want to use a regular expression, use the `eq` (equal) or `ne`
52285
+ # (not equal) operator against a single un-parenthesized expression with or
52286
+ # without quotes or against multiple parenthesized expressions. Examples:
52287
+ #
52288
+ # `fieldname eq unquoted literal`
52289
+ # `fieldname eq 'single quoted literal'`
52290
+ # `fieldname eq "double quoted literal"`
52291
+ # `(fieldname1 eq literal) (fieldname2 ne "literal")`
52292
+ #
52293
+ # The literal value is interpreted as a regular expression using GoogleRE2 library syntax.
52294
+ # The literal value must match the entire field.
52295
+ #
52296
+ # For example, to filter for instances that do not end with name "instance",
52297
+ # you would use `name ne .*instance`.
52298
+ #
52299
+ # You cannot combine constraints on multiple fields using regular
52300
+ # expressions.
52301
+ # @!attribute [rw] max_results
52302
+ # @return [::Integer]
52303
+ # The maximum number of results per page that should be returned.
52304
+ # If the number of available results is larger than `maxResults`,
52305
+ # Compute Engine returns a `nextPageToken` that can be used to get
52306
+ # the next page of results in subsequent list requests. Acceptable values are
52307
+ # `0` to `500`, inclusive. (Default: `500`)
52308
+ # @!attribute [rw] order_by
52309
+ # @return [::String]
52310
+ # Sorts list results by a certain order. By default, results
52311
+ # are returned in alphanumerical order based on the resource name.
52312
+ #
52313
+ # You can also sort results in descending order based on the creation
52314
+ # timestamp using `orderBy="creationTimestamp desc"`. This sorts
52315
+ # results based on the `creationTimestamp` field in
52316
+ # reverse chronological order (newest result first). Use this to sort
52317
+ # resources like operations so that the newest operation is returned first.
52318
+ #
52319
+ # Currently, only sorting by `name` or
52320
+ # `creationTimestamp desc` is supported.
52321
+ # @!attribute [rw] page_token
52322
+ # @return [::String]
52323
+ # Specifies a page token to use. Set `pageToken` to the
52324
+ # `nextPageToken` returned by a previous list request to get
52325
+ # the next page of results.
52326
+ # @!attribute [rw] project
52327
+ # @return [::String]
52328
+ # Project ID for this request.
51778
52329
  # @!attribute [rw] return_partial_success
51779
52330
  # @return [::Boolean]
51780
52331
  # Opt-in for partial success behavior which provides partial results in case
@@ -51783,12 +52334,12 @@ module Google
51783
52334
  # For example, when partial success behavior is enabled, aggregatedList for a
51784
52335
  # single zone scope either returns all resources in the zone or no resources,
51785
52336
  # with an error code.
51786
- class ListUsableRegionBackendBucketsRequest
52337
+ class ListTargetTcpProxiesRequest
51787
52338
  include ::Google::Protobuf::MessageExts
51788
52339
  extend ::Google::Protobuf::MessageExts::ClassMethods
51789
52340
  end
51790
52341
 
51791
- # A request message for RegionBackendServices.ListUsable. See the method description for details.
52342
+ # A request message for TargetVpnGateways.List. See the method description for details.
51792
52343
  # @!attribute [rw] filter
51793
52344
  # @return [::String]
51794
52345
  # A filter expression that filters resources listed in the response. Most
@@ -51879,8 +52430,7 @@ module Google
51879
52430
  # Project ID for this request.
51880
52431
  # @!attribute [rw] region
51881
52432
  # @return [::String]
51882
- # Name of the region scoping this request.
51883
- # It must be a string that meets the requirements in RFC1035.
52433
+ # Name of the region for this request.
51884
52434
  # @!attribute [rw] return_partial_success
51885
52435
  # @return [::Boolean]
51886
52436
  # Opt-in for partial success behavior which provides partial results in case
@@ -51889,12 +52439,12 @@ module Google
51889
52439
  # For example, when partial success behavior is enabled, aggregatedList for a
51890
52440
  # single zone scope either returns all resources in the zone or no resources,
51891
52441
  # with an error code.
51892
- class ListUsableRegionBackendServicesRequest
52442
+ class ListTargetVpnGatewaysRequest
51893
52443
  include ::Google::Protobuf::MessageExts
51894
52444
  extend ::Google::Protobuf::MessageExts::ClassMethods
51895
52445
  end
51896
52446
 
51897
- # A request message for Subnetworks.ListUsable. See the method description for details.
52447
+ # A request message for UrlMaps.List. See the method description for details.
51898
52448
  # @!attribute [rw] filter
51899
52449
  # @return [::String]
51900
52450
  # A filter expression that filters resources listed in the response. Most
@@ -51991,17 +52541,12 @@ module Google
51991
52541
  # For example, when partial success behavior is enabled, aggregatedList for a
51992
52542
  # single zone scope either returns all resources in the zone or no resources,
51993
52543
  # with an error code.
51994
- # @!attribute [rw] service_project
51995
- # @return [::String]
51996
- # The project id or project number in which the subnetwork is intended to be
51997
- # used. Only applied for Shared VPC. See [Shared VPC
51998
- # documentation](https://cloud.google.com/vpc/docs/shared-vpc/)
51999
- class ListUsableSubnetworksRequest
52544
+ class ListUrlMapsRequest
52000
52545
  include ::Google::Protobuf::MessageExts
52001
52546
  extend ::Google::Protobuf::MessageExts::ClassMethods
52002
52547
  end
52003
52548
 
52004
- # A request message for VpnGateways.List. See the method description for details.
52549
+ # A request message for BackendBuckets.ListUsable. See the method description for details.
52005
52550
  # @!attribute [rw] filter
52006
52551
  # @return [::String]
52007
52552
  # A filter expression that filters resources listed in the response. Most
@@ -52090,9 +52635,108 @@ module Google
52090
52635
  # @!attribute [rw] project
52091
52636
  # @return [::String]
52092
52637
  # Project ID for this request.
52093
- # @!attribute [rw] region
52638
+ # @!attribute [rw] return_partial_success
52639
+ # @return [::Boolean]
52640
+ # Opt-in for partial success behavior which provides partial results in case
52641
+ # of failure. The default value is false.
52642
+ #
52643
+ # For example, when partial success behavior is enabled, aggregatedList for a
52644
+ # single zone scope either returns all resources in the zone or no resources,
52645
+ # with an error code.
52646
+ class ListUsableBackendBucketsRequest
52647
+ include ::Google::Protobuf::MessageExts
52648
+ extend ::Google::Protobuf::MessageExts::ClassMethods
52649
+ end
52650
+
52651
+ # A request message for BackendServices.ListUsable. See the method description for details.
52652
+ # @!attribute [rw] filter
52094
52653
  # @return [::String]
52095
- # Name of the region for this request.
52654
+ # A filter expression that filters resources listed in the response. Most
52655
+ # Compute resources support two types of filter expressions:
52656
+ # expressions that support regular expressions and expressions that follow
52657
+ # API improvement proposal AIP-160.
52658
+ # These two types of filter expressions cannot be mixed in one request.
52659
+ #
52660
+ # If you want to use AIP-160, your expression must specify the field name, an
52661
+ # operator, and the value that you want to use for filtering. The value
52662
+ # must be a string, a number, or a boolean. The operator
52663
+ # must be either `=`, `!=`, `>`, `<`, `<=`, `>=` or `:`.
52664
+ #
52665
+ # For example, if you are filtering Compute Engine instances, you can
52666
+ # exclude instances named `example-instance` by specifying
52667
+ # `name != example-instance`.
52668
+ #
52669
+ # The `:*` comparison can be used to test whether a key has been defined.
52670
+ # For example, to find all objects with `owner` label use:
52671
+ # ```
52672
+ # labels.owner:*
52673
+ # ```
52674
+ #
52675
+ # You can also filter nested fields. For example, you could specify
52676
+ # `scheduling.automaticRestart = false` to include instances only
52677
+ # if they are not scheduled for automatic restarts. You can use filtering
52678
+ # on nested fields to filter based onresource labels.
52679
+ #
52680
+ # To filter on multiple expressions, provide each separate expression within
52681
+ # parentheses. For example:
52682
+ # ```
52683
+ # (scheduling.automaticRestart = true)
52684
+ # (cpuPlatform = "Intel Skylake")
52685
+ # ```
52686
+ # By default, each expression is an `AND` expression. However, you
52687
+ # can include `AND` and `OR` expressions explicitly.
52688
+ # For example:
52689
+ # ```
52690
+ # (cpuPlatform = "Intel Skylake") OR
52691
+ # (cpuPlatform = "Intel Broadwell") AND
52692
+ # (scheduling.automaticRestart = true)
52693
+ # ```
52694
+ #
52695
+ # If you want to use a regular expression, use the `eq` (equal) or `ne`
52696
+ # (not equal) operator against a single un-parenthesized expression with or
52697
+ # without quotes or against multiple parenthesized expressions. Examples:
52698
+ #
52699
+ # `fieldname eq unquoted literal`
52700
+ # `fieldname eq 'single quoted literal'`
52701
+ # `fieldname eq "double quoted literal"`
52702
+ # `(fieldname1 eq literal) (fieldname2 ne "literal")`
52703
+ #
52704
+ # The literal value is interpreted as a regular expression using GoogleRE2 library syntax.
52705
+ # The literal value must match the entire field.
52706
+ #
52707
+ # For example, to filter for instances that do not end with name "instance",
52708
+ # you would use `name ne .*instance`.
52709
+ #
52710
+ # You cannot combine constraints on multiple fields using regular
52711
+ # expressions.
52712
+ # @!attribute [rw] max_results
52713
+ # @return [::Integer]
52714
+ # The maximum number of results per page that should be returned.
52715
+ # If the number of available results is larger than `maxResults`,
52716
+ # Compute Engine returns a `nextPageToken` that can be used to get
52717
+ # the next page of results in subsequent list requests. Acceptable values are
52718
+ # `0` to `500`, inclusive. (Default: `500`)
52719
+ # @!attribute [rw] order_by
52720
+ # @return [::String]
52721
+ # Sorts list results by a certain order. By default, results
52722
+ # are returned in alphanumerical order based on the resource name.
52723
+ #
52724
+ # You can also sort results in descending order based on the creation
52725
+ # timestamp using `orderBy="creationTimestamp desc"`. This sorts
52726
+ # results based on the `creationTimestamp` field in
52727
+ # reverse chronological order (newest result first). Use this to sort
52728
+ # resources like operations so that the newest operation is returned first.
52729
+ #
52730
+ # Currently, only sorting by `name` or
52731
+ # `creationTimestamp desc` is supported.
52732
+ # @!attribute [rw] page_token
52733
+ # @return [::String]
52734
+ # Specifies a page token to use. Set `pageToken` to the
52735
+ # `nextPageToken` returned by a previous list request to get
52736
+ # the next page of results.
52737
+ # @!attribute [rw] project
52738
+ # @return [::String]
52739
+ # Project ID for this request.
52096
52740
  # @!attribute [rw] return_partial_success
52097
52741
  # @return [::Boolean]
52098
52742
  # Opt-in for partial success behavior which provides partial results in case
@@ -52101,12 +52745,12 @@ module Google
52101
52745
  # For example, when partial success behavior is enabled, aggregatedList for a
52102
52746
  # single zone scope either returns all resources in the zone or no resources,
52103
52747
  # with an error code.
52104
- class ListVpnGatewaysRequest
52748
+ class ListUsableBackendServicesRequest
52105
52749
  include ::Google::Protobuf::MessageExts
52106
52750
  extend ::Google::Protobuf::MessageExts::ClassMethods
52107
52751
  end
52108
52752
 
52109
- # A request message for VpnTunnels.List. See the method description for details.
52753
+ # A request message for RegionBackendBuckets.ListUsable. See the method description for details.
52110
52754
  # @!attribute [rw] filter
52111
52755
  # @return [::String]
52112
52756
  # A filter expression that filters resources listed in the response. Most
@@ -52197,7 +52841,8 @@ module Google
52197
52841
  # Project ID for this request.
52198
52842
  # @!attribute [rw] region
52199
52843
  # @return [::String]
52200
- # Name of the region for this request.
52844
+ # Name of the region scoping this request.
52845
+ # It must be a string that meets the requirements in RFC1035.
52201
52846
  # @!attribute [rw] return_partial_success
52202
52847
  # @return [::Boolean]
52203
52848
  # Opt-in for partial success behavior which provides partial results in case
@@ -52206,14 +52851,12 @@ module Google
52206
52851
  # For example, when partial success behavior is enabled, aggregatedList for a
52207
52852
  # single zone scope either returns all resources in the zone or no resources,
52208
52853
  # with an error code.
52209
- class ListVpnTunnelsRequest
52854
+ class ListUsableRegionBackendBucketsRequest
52210
52855
  include ::Google::Protobuf::MessageExts
52211
52856
  extend ::Google::Protobuf::MessageExts::ClassMethods
52212
52857
  end
52213
52858
 
52214
- # A request message for WireGroups.List. See the method description for details.
52215
- # @!attribute [rw] cross_site_network
52216
- # @return [::String]
52859
+ # A request message for RegionBackendServices.ListUsable. See the method description for details.
52217
52860
  # @!attribute [rw] filter
52218
52861
  # @return [::String]
52219
52862
  # A filter expression that filters resources listed in the response. Most
@@ -52302,6 +52945,10 @@ module Google
52302
52945
  # @!attribute [rw] project
52303
52946
  # @return [::String]
52304
52947
  # Project ID for this request.
52948
+ # @!attribute [rw] region
52949
+ # @return [::String]
52950
+ # Name of the region scoping this request.
52951
+ # It must be a string that meets the requirements in RFC1035.
52305
52952
  # @!attribute [rw] return_partial_success
52306
52953
  # @return [::Boolean]
52307
52954
  # Opt-in for partial success behavior which provides partial results in case
@@ -52310,12 +52957,12 @@ module Google
52310
52957
  # For example, when partial success behavior is enabled, aggregatedList for a
52311
52958
  # single zone scope either returns all resources in the zone or no resources,
52312
52959
  # with an error code.
52313
- class ListWireGroupsRequest
52960
+ class ListUsableRegionBackendServicesRequest
52314
52961
  include ::Google::Protobuf::MessageExts
52315
52962
  extend ::Google::Protobuf::MessageExts::ClassMethods
52316
52963
  end
52317
52964
 
52318
- # A request message for Projects.ListXpnHosts. See the method description for details.
52965
+ # A request message for Subnetworks.ListUsable. See the method description for details.
52319
52966
  # @!attribute [rw] filter
52320
52967
  # @return [::String]
52321
52968
  # A filter expression that filters resources listed in the response. Most
@@ -52404,9 +53051,6 @@ module Google
52404
53051
  # @!attribute [rw] project
52405
53052
  # @return [::String]
52406
53053
  # Project ID for this request.
52407
- # @!attribute [rw] projects_list_xpn_hosts_request_resource
52408
- # @return [::Google::Cloud::Compute::V1::ProjectsListXpnHostsRequest]
52409
- # The body resource for this request
52410
53054
  # @!attribute [rw] return_partial_success
52411
53055
  # @return [::Boolean]
52412
53056
  # Opt-in for partial success behavior which provides partial results in case
@@ -52415,12 +53059,436 @@ module Google
52415
53059
  # For example, when partial success behavior is enabled, aggregatedList for a
52416
53060
  # single zone scope either returns all resources in the zone or no resources,
52417
53061
  # with an error code.
52418
- class ListXpnHostsProjectsRequest
53062
+ # @!attribute [rw] service_project
53063
+ # @return [::String]
53064
+ # The project id or project number in which the subnetwork is intended to be
53065
+ # used. Only applied for Shared VPC. See [Shared VPC
53066
+ # documentation](https://cloud.google.com/vpc/docs/shared-vpc/)
53067
+ class ListUsableSubnetworksRequest
52419
53068
  include ::Google::Protobuf::MessageExts
52420
53069
  extend ::Google::Protobuf::MessageExts::ClassMethods
52421
53070
  end
52422
53071
 
52423
- # A request message for ZoneOperations.List. See the method description for details.
53072
+ # A request message for VpnGateways.List. See the method description for details.
53073
+ # @!attribute [rw] filter
53074
+ # @return [::String]
53075
+ # A filter expression that filters resources listed in the response. Most
53076
+ # Compute resources support two types of filter expressions:
53077
+ # expressions that support regular expressions and expressions that follow
53078
+ # API improvement proposal AIP-160.
53079
+ # These two types of filter expressions cannot be mixed in one request.
53080
+ #
53081
+ # If you want to use AIP-160, your expression must specify the field name, an
53082
+ # operator, and the value that you want to use for filtering. The value
53083
+ # must be a string, a number, or a boolean. The operator
53084
+ # must be either `=`, `!=`, `>`, `<`, `<=`, `>=` or `:`.
53085
+ #
53086
+ # For example, if you are filtering Compute Engine instances, you can
53087
+ # exclude instances named `example-instance` by specifying
53088
+ # `name != example-instance`.
53089
+ #
53090
+ # The `:*` comparison can be used to test whether a key has been defined.
53091
+ # For example, to find all objects with `owner` label use:
53092
+ # ```
53093
+ # labels.owner:*
53094
+ # ```
53095
+ #
53096
+ # You can also filter nested fields. For example, you could specify
53097
+ # `scheduling.automaticRestart = false` to include instances only
53098
+ # if they are not scheduled for automatic restarts. You can use filtering
53099
+ # on nested fields to filter based onresource labels.
53100
+ #
53101
+ # To filter on multiple expressions, provide each separate expression within
53102
+ # parentheses. For example:
53103
+ # ```
53104
+ # (scheduling.automaticRestart = true)
53105
+ # (cpuPlatform = "Intel Skylake")
53106
+ # ```
53107
+ # By default, each expression is an `AND` expression. However, you
53108
+ # can include `AND` and `OR` expressions explicitly.
53109
+ # For example:
53110
+ # ```
53111
+ # (cpuPlatform = "Intel Skylake") OR
53112
+ # (cpuPlatform = "Intel Broadwell") AND
53113
+ # (scheduling.automaticRestart = true)
53114
+ # ```
53115
+ #
53116
+ # If you want to use a regular expression, use the `eq` (equal) or `ne`
53117
+ # (not equal) operator against a single un-parenthesized expression with or
53118
+ # without quotes or against multiple parenthesized expressions. Examples:
53119
+ #
53120
+ # `fieldname eq unquoted literal`
53121
+ # `fieldname eq 'single quoted literal'`
53122
+ # `fieldname eq "double quoted literal"`
53123
+ # `(fieldname1 eq literal) (fieldname2 ne "literal")`
53124
+ #
53125
+ # The literal value is interpreted as a regular expression using GoogleRE2 library syntax.
53126
+ # The literal value must match the entire field.
53127
+ #
53128
+ # For example, to filter for instances that do not end with name "instance",
53129
+ # you would use `name ne .*instance`.
53130
+ #
53131
+ # You cannot combine constraints on multiple fields using regular
53132
+ # expressions.
53133
+ # @!attribute [rw] max_results
53134
+ # @return [::Integer]
53135
+ # The maximum number of results per page that should be returned.
53136
+ # If the number of available results is larger than `maxResults`,
53137
+ # Compute Engine returns a `nextPageToken` that can be used to get
53138
+ # the next page of results in subsequent list requests. Acceptable values are
53139
+ # `0` to `500`, inclusive. (Default: `500`)
53140
+ # @!attribute [rw] order_by
53141
+ # @return [::String]
53142
+ # Sorts list results by a certain order. By default, results
53143
+ # are returned in alphanumerical order based on the resource name.
53144
+ #
53145
+ # You can also sort results in descending order based on the creation
53146
+ # timestamp using `orderBy="creationTimestamp desc"`. This sorts
53147
+ # results based on the `creationTimestamp` field in
53148
+ # reverse chronological order (newest result first). Use this to sort
53149
+ # resources like operations so that the newest operation is returned first.
53150
+ #
53151
+ # Currently, only sorting by `name` or
53152
+ # `creationTimestamp desc` is supported.
53153
+ # @!attribute [rw] page_token
53154
+ # @return [::String]
53155
+ # Specifies a page token to use. Set `pageToken` to the
53156
+ # `nextPageToken` returned by a previous list request to get
53157
+ # the next page of results.
53158
+ # @!attribute [rw] project
53159
+ # @return [::String]
53160
+ # Project ID for this request.
53161
+ # @!attribute [rw] region
53162
+ # @return [::String]
53163
+ # Name of the region for this request.
53164
+ # @!attribute [rw] return_partial_success
53165
+ # @return [::Boolean]
53166
+ # Opt-in for partial success behavior which provides partial results in case
53167
+ # of failure. The default value is false.
53168
+ #
53169
+ # For example, when partial success behavior is enabled, aggregatedList for a
53170
+ # single zone scope either returns all resources in the zone or no resources,
53171
+ # with an error code.
53172
+ class ListVpnGatewaysRequest
53173
+ include ::Google::Protobuf::MessageExts
53174
+ extend ::Google::Protobuf::MessageExts::ClassMethods
53175
+ end
53176
+
53177
+ # A request message for VpnTunnels.List. See the method description for details.
53178
+ # @!attribute [rw] filter
53179
+ # @return [::String]
53180
+ # A filter expression that filters resources listed in the response. Most
53181
+ # Compute resources support two types of filter expressions:
53182
+ # expressions that support regular expressions and expressions that follow
53183
+ # API improvement proposal AIP-160.
53184
+ # These two types of filter expressions cannot be mixed in one request.
53185
+ #
53186
+ # If you want to use AIP-160, your expression must specify the field name, an
53187
+ # operator, and the value that you want to use for filtering. The value
53188
+ # must be a string, a number, or a boolean. The operator
53189
+ # must be either `=`, `!=`, `>`, `<`, `<=`, `>=` or `:`.
53190
+ #
53191
+ # For example, if you are filtering Compute Engine instances, you can
53192
+ # exclude instances named `example-instance` by specifying
53193
+ # `name != example-instance`.
53194
+ #
53195
+ # The `:*` comparison can be used to test whether a key has been defined.
53196
+ # For example, to find all objects with `owner` label use:
53197
+ # ```
53198
+ # labels.owner:*
53199
+ # ```
53200
+ #
53201
+ # You can also filter nested fields. For example, you could specify
53202
+ # `scheduling.automaticRestart = false` to include instances only
53203
+ # if they are not scheduled for automatic restarts. You can use filtering
53204
+ # on nested fields to filter based onresource labels.
53205
+ #
53206
+ # To filter on multiple expressions, provide each separate expression within
53207
+ # parentheses. For example:
53208
+ # ```
53209
+ # (scheduling.automaticRestart = true)
53210
+ # (cpuPlatform = "Intel Skylake")
53211
+ # ```
53212
+ # By default, each expression is an `AND` expression. However, you
53213
+ # can include `AND` and `OR` expressions explicitly.
53214
+ # For example:
53215
+ # ```
53216
+ # (cpuPlatform = "Intel Skylake") OR
53217
+ # (cpuPlatform = "Intel Broadwell") AND
53218
+ # (scheduling.automaticRestart = true)
53219
+ # ```
53220
+ #
53221
+ # If you want to use a regular expression, use the `eq` (equal) or `ne`
53222
+ # (not equal) operator against a single un-parenthesized expression with or
53223
+ # without quotes or against multiple parenthesized expressions. Examples:
53224
+ #
53225
+ # `fieldname eq unquoted literal`
53226
+ # `fieldname eq 'single quoted literal'`
53227
+ # `fieldname eq "double quoted literal"`
53228
+ # `(fieldname1 eq literal) (fieldname2 ne "literal")`
53229
+ #
53230
+ # The literal value is interpreted as a regular expression using GoogleRE2 library syntax.
53231
+ # The literal value must match the entire field.
53232
+ #
53233
+ # For example, to filter for instances that do not end with name "instance",
53234
+ # you would use `name ne .*instance`.
53235
+ #
53236
+ # You cannot combine constraints on multiple fields using regular
53237
+ # expressions.
53238
+ # @!attribute [rw] max_results
53239
+ # @return [::Integer]
53240
+ # The maximum number of results per page that should be returned.
53241
+ # If the number of available results is larger than `maxResults`,
53242
+ # Compute Engine returns a `nextPageToken` that can be used to get
53243
+ # the next page of results in subsequent list requests. Acceptable values are
53244
+ # `0` to `500`, inclusive. (Default: `500`)
53245
+ # @!attribute [rw] order_by
53246
+ # @return [::String]
53247
+ # Sorts list results by a certain order. By default, results
53248
+ # are returned in alphanumerical order based on the resource name.
53249
+ #
53250
+ # You can also sort results in descending order based on the creation
53251
+ # timestamp using `orderBy="creationTimestamp desc"`. This sorts
53252
+ # results based on the `creationTimestamp` field in
53253
+ # reverse chronological order (newest result first). Use this to sort
53254
+ # resources like operations so that the newest operation is returned first.
53255
+ #
53256
+ # Currently, only sorting by `name` or
53257
+ # `creationTimestamp desc` is supported.
53258
+ # @!attribute [rw] page_token
53259
+ # @return [::String]
53260
+ # Specifies a page token to use. Set `pageToken` to the
53261
+ # `nextPageToken` returned by a previous list request to get
53262
+ # the next page of results.
53263
+ # @!attribute [rw] project
53264
+ # @return [::String]
53265
+ # Project ID for this request.
53266
+ # @!attribute [rw] region
53267
+ # @return [::String]
53268
+ # Name of the region for this request.
53269
+ # @!attribute [rw] return_partial_success
53270
+ # @return [::Boolean]
53271
+ # Opt-in for partial success behavior which provides partial results in case
53272
+ # of failure. The default value is false.
53273
+ #
53274
+ # For example, when partial success behavior is enabled, aggregatedList for a
53275
+ # single zone scope either returns all resources in the zone or no resources,
53276
+ # with an error code.
53277
+ class ListVpnTunnelsRequest
53278
+ include ::Google::Protobuf::MessageExts
53279
+ extend ::Google::Protobuf::MessageExts::ClassMethods
53280
+ end
53281
+
53282
+ # A request message for WireGroups.List. See the method description for details.
53283
+ # @!attribute [rw] cross_site_network
53284
+ # @return [::String]
53285
+ # @!attribute [rw] filter
53286
+ # @return [::String]
53287
+ # A filter expression that filters resources listed in the response. Most
53288
+ # Compute resources support two types of filter expressions:
53289
+ # expressions that support regular expressions and expressions that follow
53290
+ # API improvement proposal AIP-160.
53291
+ # These two types of filter expressions cannot be mixed in one request.
53292
+ #
53293
+ # If you want to use AIP-160, your expression must specify the field name, an
53294
+ # operator, and the value that you want to use for filtering. The value
53295
+ # must be a string, a number, or a boolean. The operator
53296
+ # must be either `=`, `!=`, `>`, `<`, `<=`, `>=` or `:`.
53297
+ #
53298
+ # For example, if you are filtering Compute Engine instances, you can
53299
+ # exclude instances named `example-instance` by specifying
53300
+ # `name != example-instance`.
53301
+ #
53302
+ # The `:*` comparison can be used to test whether a key has been defined.
53303
+ # For example, to find all objects with `owner` label use:
53304
+ # ```
53305
+ # labels.owner:*
53306
+ # ```
53307
+ #
53308
+ # You can also filter nested fields. For example, you could specify
53309
+ # `scheduling.automaticRestart = false` to include instances only
53310
+ # if they are not scheduled for automatic restarts. You can use filtering
53311
+ # on nested fields to filter based onresource labels.
53312
+ #
53313
+ # To filter on multiple expressions, provide each separate expression within
53314
+ # parentheses. For example:
53315
+ # ```
53316
+ # (scheduling.automaticRestart = true)
53317
+ # (cpuPlatform = "Intel Skylake")
53318
+ # ```
53319
+ # By default, each expression is an `AND` expression. However, you
53320
+ # can include `AND` and `OR` expressions explicitly.
53321
+ # For example:
53322
+ # ```
53323
+ # (cpuPlatform = "Intel Skylake") OR
53324
+ # (cpuPlatform = "Intel Broadwell") AND
53325
+ # (scheduling.automaticRestart = true)
53326
+ # ```
53327
+ #
53328
+ # If you want to use a regular expression, use the `eq` (equal) or `ne`
53329
+ # (not equal) operator against a single un-parenthesized expression with or
53330
+ # without quotes or against multiple parenthesized expressions. Examples:
53331
+ #
53332
+ # `fieldname eq unquoted literal`
53333
+ # `fieldname eq 'single quoted literal'`
53334
+ # `fieldname eq "double quoted literal"`
53335
+ # `(fieldname1 eq literal) (fieldname2 ne "literal")`
53336
+ #
53337
+ # The literal value is interpreted as a regular expression using GoogleRE2 library syntax.
53338
+ # The literal value must match the entire field.
53339
+ #
53340
+ # For example, to filter for instances that do not end with name "instance",
53341
+ # you would use `name ne .*instance`.
53342
+ #
53343
+ # You cannot combine constraints on multiple fields using regular
53344
+ # expressions.
53345
+ # @!attribute [rw] max_results
53346
+ # @return [::Integer]
53347
+ # The maximum number of results per page that should be returned.
53348
+ # If the number of available results is larger than `maxResults`,
53349
+ # Compute Engine returns a `nextPageToken` that can be used to get
53350
+ # the next page of results in subsequent list requests. Acceptable values are
53351
+ # `0` to `500`, inclusive. (Default: `500`)
53352
+ # @!attribute [rw] order_by
53353
+ # @return [::String]
53354
+ # Sorts list results by a certain order. By default, results
53355
+ # are returned in alphanumerical order based on the resource name.
53356
+ #
53357
+ # You can also sort results in descending order based on the creation
53358
+ # timestamp using `orderBy="creationTimestamp desc"`. This sorts
53359
+ # results based on the `creationTimestamp` field in
53360
+ # reverse chronological order (newest result first). Use this to sort
53361
+ # resources like operations so that the newest operation is returned first.
53362
+ #
53363
+ # Currently, only sorting by `name` or
53364
+ # `creationTimestamp desc` is supported.
53365
+ # @!attribute [rw] page_token
53366
+ # @return [::String]
53367
+ # Specifies a page token to use. Set `pageToken` to the
53368
+ # `nextPageToken` returned by a previous list request to get
53369
+ # the next page of results.
53370
+ # @!attribute [rw] project
53371
+ # @return [::String]
53372
+ # Project ID for this request.
53373
+ # @!attribute [rw] return_partial_success
53374
+ # @return [::Boolean]
53375
+ # Opt-in for partial success behavior which provides partial results in case
53376
+ # of failure. The default value is false.
53377
+ #
53378
+ # For example, when partial success behavior is enabled, aggregatedList for a
53379
+ # single zone scope either returns all resources in the zone or no resources,
53380
+ # with an error code.
53381
+ class ListWireGroupsRequest
53382
+ include ::Google::Protobuf::MessageExts
53383
+ extend ::Google::Protobuf::MessageExts::ClassMethods
53384
+ end
53385
+
53386
+ # A request message for Projects.ListXpnHosts. See the method description for details.
53387
+ # @!attribute [rw] filter
53388
+ # @return [::String]
53389
+ # A filter expression that filters resources listed in the response. Most
53390
+ # Compute resources support two types of filter expressions:
53391
+ # expressions that support regular expressions and expressions that follow
53392
+ # API improvement proposal AIP-160.
53393
+ # These two types of filter expressions cannot be mixed in one request.
53394
+ #
53395
+ # If you want to use AIP-160, your expression must specify the field name, an
53396
+ # operator, and the value that you want to use for filtering. The value
53397
+ # must be a string, a number, or a boolean. The operator
53398
+ # must be either `=`, `!=`, `>`, `<`, `<=`, `>=` or `:`.
53399
+ #
53400
+ # For example, if you are filtering Compute Engine instances, you can
53401
+ # exclude instances named `example-instance` by specifying
53402
+ # `name != example-instance`.
53403
+ #
53404
+ # The `:*` comparison can be used to test whether a key has been defined.
53405
+ # For example, to find all objects with `owner` label use:
53406
+ # ```
53407
+ # labels.owner:*
53408
+ # ```
53409
+ #
53410
+ # You can also filter nested fields. For example, you could specify
53411
+ # `scheduling.automaticRestart = false` to include instances only
53412
+ # if they are not scheduled for automatic restarts. You can use filtering
53413
+ # on nested fields to filter based onresource labels.
53414
+ #
53415
+ # To filter on multiple expressions, provide each separate expression within
53416
+ # parentheses. For example:
53417
+ # ```
53418
+ # (scheduling.automaticRestart = true)
53419
+ # (cpuPlatform = "Intel Skylake")
53420
+ # ```
53421
+ # By default, each expression is an `AND` expression. However, you
53422
+ # can include `AND` and `OR` expressions explicitly.
53423
+ # For example:
53424
+ # ```
53425
+ # (cpuPlatform = "Intel Skylake") OR
53426
+ # (cpuPlatform = "Intel Broadwell") AND
53427
+ # (scheduling.automaticRestart = true)
53428
+ # ```
53429
+ #
53430
+ # If you want to use a regular expression, use the `eq` (equal) or `ne`
53431
+ # (not equal) operator against a single un-parenthesized expression with or
53432
+ # without quotes or against multiple parenthesized expressions. Examples:
53433
+ #
53434
+ # `fieldname eq unquoted literal`
53435
+ # `fieldname eq 'single quoted literal'`
53436
+ # `fieldname eq "double quoted literal"`
53437
+ # `(fieldname1 eq literal) (fieldname2 ne "literal")`
53438
+ #
53439
+ # The literal value is interpreted as a regular expression using GoogleRE2 library syntax.
53440
+ # The literal value must match the entire field.
53441
+ #
53442
+ # For example, to filter for instances that do not end with name "instance",
53443
+ # you would use `name ne .*instance`.
53444
+ #
53445
+ # You cannot combine constraints on multiple fields using regular
53446
+ # expressions.
53447
+ # @!attribute [rw] max_results
53448
+ # @return [::Integer]
53449
+ # The maximum number of results per page that should be returned.
53450
+ # If the number of available results is larger than `maxResults`,
53451
+ # Compute Engine returns a `nextPageToken` that can be used to get
53452
+ # the next page of results in subsequent list requests. Acceptable values are
53453
+ # `0` to `500`, inclusive. (Default: `500`)
53454
+ # @!attribute [rw] order_by
53455
+ # @return [::String]
53456
+ # Sorts list results by a certain order. By default, results
53457
+ # are returned in alphanumerical order based on the resource name.
53458
+ #
53459
+ # You can also sort results in descending order based on the creation
53460
+ # timestamp using `orderBy="creationTimestamp desc"`. This sorts
53461
+ # results based on the `creationTimestamp` field in
53462
+ # reverse chronological order (newest result first). Use this to sort
53463
+ # resources like operations so that the newest operation is returned first.
53464
+ #
53465
+ # Currently, only sorting by `name` or
53466
+ # `creationTimestamp desc` is supported.
53467
+ # @!attribute [rw] page_token
53468
+ # @return [::String]
53469
+ # Specifies a page token to use. Set `pageToken` to the
53470
+ # `nextPageToken` returned by a previous list request to get
53471
+ # the next page of results.
53472
+ # @!attribute [rw] project
53473
+ # @return [::String]
53474
+ # Project ID for this request.
53475
+ # @!attribute [rw] projects_list_xpn_hosts_request_resource
53476
+ # @return [::Google::Cloud::Compute::V1::ProjectsListXpnHostsRequest]
53477
+ # The body resource for this request
53478
+ # @!attribute [rw] return_partial_success
53479
+ # @return [::Boolean]
53480
+ # Opt-in for partial success behavior which provides partial results in case
53481
+ # of failure. The default value is false.
53482
+ #
53483
+ # For example, when partial success behavior is enabled, aggregatedList for a
53484
+ # single zone scope either returns all resources in the zone or no resources,
53485
+ # with an error code.
53486
+ class ListXpnHostsProjectsRequest
53487
+ include ::Google::Protobuf::MessageExts
53488
+ extend ::Google::Protobuf::MessageExts::ClassMethods
53489
+ end
53490
+
53491
+ # A request message for ZoneOperations.List. See the method description for details.
52424
53492
  # @!attribute [rw] filter
52425
53493
  # @return [::String]
52426
53494
  # A filter expression that filters resources listed in the response. Most
@@ -55379,9 +56447,17 @@ module Google
55379
56447
 
55380
56448
  DELETE_STATUS_UNSPECIFIED = 395_396_446
55381
56449
 
56450
+ # The local network admin requested to cancel their delete request
56451
+ # after DELETE_ACKNOWLEDGED.
56452
+ LOCAL_CANCEL_REQUESTED = 169_545_277
56453
+
55382
56454
  # Network admin has requested deletion of this peering connection.
55383
56455
  LOCAL_DELETE_REQUESTED = 227_335_214
55384
56456
 
56457
+ # The peer network admin requested to cancel their delete request after
56458
+ # DELETE_ACKNOWLEDGED.
56459
+ PEER_CANCEL_REQUESTED = 140_057_862
56460
+
55385
56461
  # The peer network admin has requested deletion of this peering
55386
56462
  # connection.
55387
56463
  PEER_DELETE_REQUESTED = 197_847_799
@@ -55998,6 +57074,8 @@ module Google
55998
57074
 
55999
57075
  RDMA_ROCE_POLICY = 148_757_145
56000
57076
 
57077
+ ULL_POLICY = 100_494_364
57078
+
56001
57079
  VPC_POLICY = 74_319_208
56002
57080
  end
56003
57081
 
@@ -56344,6 +57422,14 @@ module Google
56344
57422
  extend ::Google::Protobuf::MessageExts::ClassMethods
56345
57423
  end
56346
57424
 
57425
+ # @!attribute [rw] name
57426
+ # @return [::String]
57427
+ # Name of the peering, which should conform to RFC1035.
57428
+ class NetworksCancelRequestRemovePeeringRequest
57429
+ include ::Google::Protobuf::MessageExts
57430
+ extend ::Google::Protobuf::MessageExts::ClassMethods
57431
+ end
57432
+
56347
57433
  # @!attribute [rw] firewall_policys
56348
57434
  # @return [::Array<::Google::Cloud::Compute::V1::NetworksGetEffectiveFirewallsResponseEffectiveFirewallPolicy>]
56349
57435
  # [Output Only] Effective firewalls from firewall policy. It returns Global
@@ -62795,28 +63881,27 @@ module Google
62795
63881
  # Contains a list of managed instance groups.
62796
63882
  # @!attribute [rw] id
62797
63883
  # @return [::String]
62798
- # Output only. [Output Only] Unique identifier for the resource; defined by the server.
63884
+ # Output only. Unique identifier for the resource; defined by the server.
62799
63885
  # @!attribute [rw] items
62800
63886
  # @return [::Array<::Google::Cloud::Compute::V1::InstanceGroupManager>]
62801
63887
  # A list of InstanceGroupManager resources.
62802
63888
  # @!attribute [rw] kind
62803
63889
  # @return [::String]
62804
- # Output only. [Output Only] The resource type, which is always
62805
- # compute#instanceGroupManagerList for a list of managed instance groups that
62806
- # exist in th regional scope.
63890
+ # Output only. The resource type, which is always compute#instanceGroupManagerList for a
63891
+ # list of managed instance groups that exist in th regional scope.
62807
63892
  # @!attribute [rw] next_page_token
62808
63893
  # @return [::String]
62809
- # Output only. [Output Only] This token allows you to get the next page of results for
63894
+ # Output only. This token allows you to get the next page of results for
62810
63895
  # list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
62811
63896
  # the query parameter pageToken in the next list request.
62812
63897
  # Subsequent list requests will have their own nextPageToken to
62813
63898
  # continue paging through the results.
62814
63899
  # @!attribute [rw] self_link
62815
63900
  # @return [::String]
62816
- # Output only. [Output Only] Server-defined URL for this resource.
63901
+ # Output only. Server-defined URL for this resource.
62817
63902
  # @!attribute [rw] warning
62818
63903
  # @return [::Google::Cloud::Compute::V1::Warning]
62819
- # Output only. [Output Only] Informational warning message.
63904
+ # Output only. Informational warning message.
62820
63905
  class RegionInstanceGroupManagerList
62821
63906
  include ::Google::Protobuf::MessageExts
62822
63907
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -62836,31 +63921,31 @@ module Google
62836
63921
  # @return [::String]
62837
63922
  # @!attribute [rw] id
62838
63923
  # @return [::String]
62839
- # Output only. [Output Only] Unique identifier for the resource; defined by the server.
63924
+ # Output only. Unique identifier for the resource; defined by the server.
62840
63925
  # @!attribute [rw] items
62841
63926
  # @return [::Array<::Google::Cloud::Compute::V1::InstanceGroupManagerResizeRequest>]
62842
63927
  # A list of Resize Request resources.
62843
63928
  # @!attribute [rw] kind
62844
63929
  # @return [::String]
62845
- # Output only. [Output Only] Type of the resource. Alwayscompute#regionInstanceGroupManagerResizeRequestList for
63930
+ # Output only. Type of the resource. Alwayscompute#regionInstanceGroupManagerResizeRequestList for
62846
63931
  # a list of Resize Requests.
62847
63932
  # @!attribute [rw] next_page_token
62848
63933
  # @return [::String]
62849
- # Output only. [Output Only] This token allows you to get the next page of results for
63934
+ # Output only. This token allows you to get the next page of results for
62850
63935
  # list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
62851
63936
  # the query parameter pageToken in the next list request.
62852
63937
  # Subsequent list requests will have their own nextPageToken to
62853
63938
  # continue paging through the results.
62854
63939
  # @!attribute [rw] self_link
62855
63940
  # @return [::String]
62856
- # Output only. [Output Only] Server-defined URL for this resource.
63941
+ # Output only. Server-defined URL for this resource.
62857
63942
  # @!attribute [rw] unreachables
62858
63943
  # @return [::Array<::String>]
62859
- # Output only. [Output Only] Unreachable resources.
63944
+ # Output only. Unreachable resources.
62860
63945
  # end_interface: MixerListResponseWithEtagBuilder
62861
63946
  # @!attribute [rw] warning
62862
63947
  # @return [::Google::Cloud::Compute::V1::Warning]
62863
- # Output only. [Output Only] Informational warning message.
63948
+ # Output only. Informational warning message.
62864
63949
  class RegionInstanceGroupManagerResizeRequestsListResponse
62865
63950
  include ::Google::Protobuf::MessageExts
62866
63951
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -66142,6 +67227,574 @@ module Google
66142
67227
  extend ::Google::Protobuf::MessageExts::ClassMethods
66143
67228
  end
66144
67229
 
67230
+ # Rollout resource.
67231
+ #
67232
+ # A Rollout is a specific instance of a RolloutPlan. It represents a single
67233
+ # execution of a strategy to roll out a specific resource. It also provides
67234
+ # APIs to interact with the rollout.
67235
+ # @!attribute [rw] cancellation_time
67236
+ # @return [::String]
67237
+ # Output only. The timestamp at which the Rollout was cancelled.
67238
+ # @!attribute [rw] completion_time
67239
+ # @return [::String]
67240
+ # Output only. The timestamp at which the Rollout was completed.
67241
+ # @!attribute [rw] creation_timestamp
67242
+ # @return [::String]
67243
+ # Output only. [Output Only] Creation timestamp inRFC3339
67244
+ # text format.
67245
+ # @!attribute [rw] current_wave_number
67246
+ # @return [::Integer]
67247
+ # Output only. The number of the currently running wave.
67248
+ # Ex. 1
67249
+ # @!attribute [rw] description
67250
+ # @return [::String]
67251
+ # An optional description of this resource. Provide this property when you
67252
+ # create the resource.
67253
+ # @!attribute [rw] etag
67254
+ # @return [::String]
67255
+ # Output only. etag of the Rollout
67256
+ # Ex. abc1234
67257
+ # @!attribute [rw] id
67258
+ # @return [::Integer]
67259
+ # Output only. [Output Only] The unique identifier for the resource. This identifier is
67260
+ # defined by the server.
67261
+ # @!attribute [rw] kind
67262
+ # @return [::String]
67263
+ # Output only. [Output Only] Type of the resource. Always compute#rollout
67264
+ # for rollouts.
67265
+ # @!attribute [rw] name
67266
+ # @return [::String]
67267
+ # Name of the resource. Provided by the client when the resource is created.
67268
+ # The name must be 1-63 characters long, and comply withRFC1035.
67269
+ # Specifically, the name must be 1-63 characters long and match the regular
67270
+ # expression `[a-z]([-a-z0-9]*[a-z0-9])?`
67271
+ # which means the first character must be a lowercase letter, and all
67272
+ # following characters must be a dash, lowercase letter, or digit, except
67273
+ # the last character, which cannot be a dash.
67274
+ # @!attribute [rw] rollout_entity
67275
+ # @return [::Google::Cloud::Compute::V1::RolloutRolloutEntity]
67276
+ # Required. The resource being rolled out.
67277
+ # @!attribute [rw] rollout_plan
67278
+ # @return [::String]
67279
+ # Required. Rollout Plan used to model the Rollout.
67280
+ # Ex. compute.googleapis.com/v1/projects/1234/rolloutPlans/rp1
67281
+ # @!attribute [rw] self_link
67282
+ # @return [::String]
67283
+ # Output only. [Output Only] Server-defined fully-qualified URL for this resource.
67284
+ # @!attribute [rw] self_link_with_id
67285
+ # @return [::String]
67286
+ # Output only. [Output Only] Server-defined URL for this resource's resource id.
67287
+ # @!attribute [rw] state
67288
+ # @return [::String]
67289
+ # Output only. The current state of the Rollout.
67290
+ # Check the State enum for the list of possible values.
67291
+ # @!attribute [rw] wave_details
67292
+ # @return [::Array<::Google::Cloud::Compute::V1::RolloutWaveDetails>]
67293
+ # Output only. Details about each wave of the rollout.
67294
+ class Rollout
67295
+ include ::Google::Protobuf::MessageExts
67296
+ extend ::Google::Protobuf::MessageExts::ClassMethods
67297
+
67298
+ # Output only. The current state of the Rollout.
67299
+ module State
67300
+ # A value indicating that the enum field is not set.
67301
+ UNDEFINED_STATE = 0
67302
+
67303
+ # The rollout is in a failure terminal state.
67304
+ CANCELLED = 41_957_681
67305
+
67306
+ # The rollout is being cancelled.
67307
+ CANCELLING = 226_950_512
67308
+
67309
+ # An attempted cancel operation was unsuccessful.
67310
+ CANCEL_FAILED = 389_121_442
67311
+
67312
+ # The rollout is in a successful terminal state.
67313
+ COMPLETED = 309_921_323
67314
+
67315
+ # An attempted complete operation was unsuccessful.
67316
+ COMPLETE_FAILED = 188_367_363
67317
+
67318
+ # The rollout is being marked as completed.
67319
+ COMPLETING = 480_759_734
67320
+
67321
+ # The rollout completed with failures.
67322
+ FAILED = 455_706_685
67323
+
67324
+ # The rollout is paused.
67325
+ PAUSED = 205_491_502
67326
+
67327
+ # An attempted pause operation was unsuccessful.
67328
+ PAUSE_FAILED = 7_486_150
67329
+
67330
+ # The rollout is being paused.
67331
+ PAUSING = 464_660_755
67332
+
67333
+ # A wave is being processed by the product.
67334
+ PROCESSING = 370_416_403
67335
+
67336
+ # The rollout has been successfully initialized and is ready to start.
67337
+ READY = 77_848_963
67338
+
67339
+ # The rollout is being resumed after being paused.
67340
+ RESUMING = 446_856_618
67341
+
67342
+ # An attempted rollback operation failed to complete successfully.
67343
+ ROLLBACK_WAVE_FAILED = 326_793_064
67344
+
67345
+ # A wave rollback is in progress for this rollout.
67346
+ ROLLING_BACK = 259_411_649
67347
+
67348
+ # Undefined default state. Should never be exposed to users.
67349
+ STATE_UNSPECIFIED = 470_755_401
67350
+
67351
+ # The rollout has been created but is not yet ready to be started.
67352
+ UNINITIALIZED = 327_337_595
67353
+
67354
+ # The product failed to process the wave.
67355
+ WAVE_FAILED = 195_452_995
67356
+ end
67357
+ end
67358
+
67359
+ # RolloutPlan resource.
67360
+ #
67361
+ # A RolloutPlan is the customer-defined strategy to divide a large-scale change
67362
+ # into smaller increments, referred to as "waves". Each wave targets a specific
67363
+ # portion of the overall affected area and defines criteria that must be met
67364
+ # before progressing to the subsequent wave.
67365
+ # @!attribute [rw] creation_timestamp
67366
+ # @return [::String]
67367
+ # Output only. [Output Only] Creation timestamp inRFC3339
67368
+ # text format.
67369
+ # @!attribute [rw] description
67370
+ # @return [::String]
67371
+ # An optional description of this resource. Provide this property when you
67372
+ # create the resource.
67373
+ # @!attribute [rw] id
67374
+ # @return [::Integer]
67375
+ # Output only. [Output Only] The unique identifier for the resource. This identifier is
67376
+ # defined by the server.
67377
+ # @!attribute [rw] kind
67378
+ # @return [::String]
67379
+ # Output only. [Output Only] Type of the resource. Always compute#rolloutPlan
67380
+ # for rolloutPlans.
67381
+ # @!attribute [rw] location_scope
67382
+ # @return [::String]
67383
+ # The location scope of the rollout plan. If not specified, the location
67384
+ # scope is considered as ZONAL.
67385
+ # Check the LocationScope enum for the list of possible values.
67386
+ # @!attribute [rw] name
67387
+ # @return [::String]
67388
+ # Name of the resource. Provided by the client when the resource is created.
67389
+ # The name must be 1-63 characters long, and comply withRFC1035.
67390
+ # Specifically, the name must be 1-63 characters long and match the regular
67391
+ # expression `[a-z]([-a-z0-9]*[a-z0-9])?`
67392
+ # which means the first character must be a lowercase letter, and all
67393
+ # following characters must be a dash, lowercase letter, or digit, except
67394
+ # the last character, which cannot be a dash.
67395
+ # @!attribute [rw] self_link
67396
+ # @return [::String]
67397
+ # Output only. [Output Only] Server-defined fully-qualified URL for this resource.
67398
+ # @!attribute [rw] self_link_with_id
67399
+ # @return [::String]
67400
+ # Output only. [Output Only] Server-defined URL for this resource's resource id.
67401
+ # @!attribute [rw] waves
67402
+ # @return [::Array<::Google::Cloud::Compute::V1::RolloutPlanWave>]
67403
+ # Required. The waves included in this rollout plan.
67404
+ class RolloutPlan
67405
+ include ::Google::Protobuf::MessageExts
67406
+ extend ::Google::Protobuf::MessageExts::ClassMethods
67407
+
67408
+ # The location scope of the rollout plan. If not specified, the location
67409
+ # scope is considered as ZONAL.
67410
+ module LocationScope
67411
+ # A value indicating that the enum field is not set.
67412
+ UNDEFINED_LOCATION_SCOPE = 0
67413
+
67414
+ # Unspecified value. Considered as ZONAL.
67415
+ LOCATION_SCOPE_UNSPECIFIED = 416_410_498
67416
+
67417
+ # Regional scope.
67418
+ REGIONAL = 92_288_543
67419
+
67420
+ # Zonal scope.
67421
+ ZONAL = 85_547_428
67422
+ end
67423
+ end
67424
+
67425
+ # A single wave in a rollout plan.
67426
+ # @!attribute [rw] display_name
67427
+ # @return [::String]
67428
+ # Optional. The display name of this wave of the rollout plan.
67429
+ # @!attribute [rw] number
67430
+ # @return [::Integer]
67431
+ # Output only. The wave number.
67432
+ # @!attribute [rw] orchestration_options
67433
+ # @return [::Google::Cloud::Compute::V1::RolloutPlanWaveOrchestrationOptions]
67434
+ # Optional. The orchestration options for this wave.
67435
+ # @!attribute [rw] selectors
67436
+ # @return [::Array<::Google::Cloud::Compute::V1::RolloutPlanWaveSelector>]
67437
+ # Required. The selectors for this wave. There is a logical AND between each selector
67438
+ # defined in a wave, so a resource must satisfy the criteria of *all* the
67439
+ # specified selectors to be in scope for the wave.
67440
+ # @!attribute [rw] validation
67441
+ # @return [::Google::Cloud::Compute::V1::RolloutPlanWaveValidation]
67442
+ # Required. The validation to be performed at the end of this wave.
67443
+ class RolloutPlanWave
67444
+ include ::Google::Protobuf::MessageExts
67445
+ extend ::Google::Protobuf::MessageExts::ClassMethods
67446
+ end
67447
+
67448
+ # Options to control the pace of orchestration of a wave. These options are
67449
+ # required only if the resource being rolled out follows the Orchestrated
67450
+ # pattern.
67451
+ # @!attribute [rw] delays
67452
+ # @return [::Array<::Google::Cloud::Compute::V1::RolloutPlanWaveOrchestrationOptionsDelay>]
67453
+ # Optional. Delays, if any, to be added between batches of projects. We allow
67454
+ # multiple Delays to be specified, letting users set separate delays
67455
+ # between batches of projects corresponding to different locations and
67456
+ # batches of projects corresponding to the same location.
67457
+ # @!attribute [rw] max_concurrent_locations
67458
+ # @return [::Integer]
67459
+ # Optional. Maximum number of locations to be orchestrated in parallel.
67460
+ # @!attribute [rw] max_concurrent_resources_per_location
67461
+ # @return [::Integer]
67462
+ # Optional. Maximum number of resources to be orchestrated per location in
67463
+ # parallel.
67464
+ class RolloutPlanWaveOrchestrationOptions
67465
+ include ::Google::Protobuf::MessageExts
67466
+ extend ::Google::Protobuf::MessageExts::ClassMethods
67467
+ end
67468
+
67469
+ # Options to control the delay, if any, between batches of projects.
67470
+ # @!attribute [rw] delimiter
67471
+ # @return [::String]
67472
+ # Optional. Controls whether the delay should only be added between batches of
67473
+ # projects corresponding to different locations, or also between
67474
+ # batches of projects corresponding to the same location.
67475
+ #
67476
+ # Must be set to DELIMITER_UNSPECIFIED if no delay is to be added.
67477
+ # Check the Delimiter enum for the list of possible values.
67478
+ # @!attribute [rw] duration
67479
+ # @return [::String]
67480
+ # Optional. The duration of the delay, if any, to be added between batches of
67481
+ # projects. A zero duration corresponds to no delay.
67482
+ # @!attribute [rw] type
67483
+ # @return [::String]
67484
+ # Optional. Controls whether the specified duration is to be added at the end of
67485
+ # each batch, or if the total processing time for each batch will be
67486
+ # padded if needed to meet the specified duration.
67487
+ #
67488
+ # Must be set to TYPE_UNSPECIFIED if no delay is to be added.
67489
+ # Check the Type enum for the list of possible values.
67490
+ class RolloutPlanWaveOrchestrationOptionsDelay
67491
+ include ::Google::Protobuf::MessageExts
67492
+ extend ::Google::Protobuf::MessageExts::ClassMethods
67493
+
67494
+ # Optional. Controls whether the delay should only be added between batches of
67495
+ # projects corresponding to different locations, or also between
67496
+ # batches of projects corresponding to the same location.
67497
+ #
67498
+ # Must be set to DELIMITER_UNSPECIFIED if no delay is to be added.
67499
+ module Delimiter
67500
+ # A value indicating that the enum field is not set.
67501
+ UNDEFINED_DELIMITER = 0
67502
+
67503
+ # The delay will also be added between batches of projects
67504
+ # corresponding to the same location.
67505
+ DELIMITER_BATCH = 253_390_530
67506
+
67507
+ # The delay will only be added between batches of projects
67508
+ # corresponding to different locations.
67509
+ DELIMITER_LOCATION = 189_398_797
67510
+
67511
+ # No delay will be added between batches of projects. Processing will
67512
+ # continue with the next batch as soon as the previous batch of LROs
67513
+ # is done.
67514
+ DELIMITER_UNSPECIFIED = 372_199_615
67515
+ end
67516
+
67517
+ # Optional. Controls whether the specified duration is to be added at the end of
67518
+ # each batch, or if the total processing time for each batch will be
67519
+ # padded if needed to meet the specified duration.
67520
+ #
67521
+ # Must be set to TYPE_UNSPECIFIED if no delay is to be added.
67522
+ module Type
67523
+ # A value indicating that the enum field is not set.
67524
+ UNDEFINED_TYPE = 0
67525
+
67526
+ # The total processing time for each batch of projects will be padded
67527
+ # if needed to meet the specified delay duration.
67528
+ TYPE_MINIMUM = 234_909_673
67529
+
67530
+ # The specified delay will directly be added after each batch of
67531
+ # projects as specified by the delimiter.
67532
+ TYPE_OFFSET = 165_747_000
67533
+
67534
+ # No delay will be added between batches of projects. Processing will
67535
+ # continue with the next batch as soon as the previous batch of LROs
67536
+ # is done.
67537
+ TYPE_UNSPECIFIED = 437_714_322
67538
+ end
67539
+ end
67540
+
67541
+ # A selector which specifies what resource(s) are included in a given wave.
67542
+ # @!attribute [rw] location_selector
67543
+ # @return [::Google::Cloud::Compute::V1::RolloutPlanWaveSelectorLocationSelector]
67544
+ # Optional. Roll out to resources by Cloud locations.
67545
+ # @!attribute [rw] resource_hierarchy_selector
67546
+ # @return [::Google::Cloud::Compute::V1::RolloutPlanWaveSelectorResourceHierarchySelector]
67547
+ # Optional. Roll out to resources by Cloud Resource Manager resource hierarchy.
67548
+ class RolloutPlanWaveSelector
67549
+ include ::Google::Protobuf::MessageExts
67550
+ extend ::Google::Protobuf::MessageExts::ClassMethods
67551
+ end
67552
+
67553
+ # Roll out to resources by location.
67554
+ # @!attribute [rw] included_locations
67555
+ # @return [::Array<::String>]
67556
+ # Optional. Example: "us-central1-a"
67557
+ class RolloutPlanWaveSelectorLocationSelector
67558
+ include ::Google::Protobuf::MessageExts
67559
+ extend ::Google::Protobuf::MessageExts::ClassMethods
67560
+ end
67561
+
67562
+ # Roll out to resources by Cloud Resource Manager resource hierarchy
67563
+ # nodes such as projects, folders, orgs.
67564
+ # @!attribute [rw] included_folders
67565
+ # @return [::Array<::String>]
67566
+ # Optional. Format: "folders/\\{folder_id}"
67567
+ # @!attribute [rw] included_organizations
67568
+ # @return [::Array<::String>]
67569
+ # Optional. Format: "organizations/\\{organization_id}"
67570
+ # @!attribute [rw] included_projects
67571
+ # @return [::Array<::String>]
67572
+ # Optional. Format: "projects/\\{project_id}"
67573
+ class RolloutPlanWaveSelectorResourceHierarchySelector
67574
+ include ::Google::Protobuf::MessageExts
67575
+ extend ::Google::Protobuf::MessageExts::ClassMethods
67576
+ end
67577
+
67578
+ # The validation to be performed before progressing to the next wave.
67579
+ # @!attribute [rw] time_based_validation_metadata
67580
+ # @return [::Google::Cloud::Compute::V1::RolloutPlanWaveValidationTimeBasedValidationMetadata]
67581
+ # Optional. Metadata required if type = "time".
67582
+ # @!attribute [rw] type
67583
+ # @return [::String]
67584
+ # Required. The type of the validation. If a type of validation is associated with
67585
+ # a metadata object, the appropriate metadata field mapping to the
67586
+ # validation type must be provided in the validation message. Possible
67587
+ # values are in quotes below alongside an explanation:
67588
+ # "manual": The system waits for an end-user approval API before
67589
+ # progressing to the next wave.
67590
+ # "time": The system waits for a user specified duration before
67591
+ # progressing to the next wave. TimeBasedValidation must be provided.
67592
+ class RolloutPlanWaveValidation
67593
+ include ::Google::Protobuf::MessageExts
67594
+ extend ::Google::Protobuf::MessageExts::ClassMethods
67595
+ end
67596
+
67597
+ # Metadata required if type = "time".
67598
+ # @!attribute [rw] wait_duration
67599
+ # @return [::String]
67600
+ # Optional. The duration that the system waits in between waves. This wait starts
67601
+ # after all changes in the wave are rolled out.
67602
+ class RolloutPlanWaveValidationTimeBasedValidationMetadata
67603
+ include ::Google::Protobuf::MessageExts
67604
+ extend ::Google::Protobuf::MessageExts::ClassMethods
67605
+ end
67606
+
67607
+ # Contains a list of RolloutPlan resources.
67608
+ # @!attribute [rw] etag
67609
+ # @return [::String]
67610
+ # @!attribute [rw] id
67611
+ # @return [::String]
67612
+ # [Output Only] Unique identifier for the resource; defined by the server.
67613
+ # @!attribute [rw] items
67614
+ # @return [::Array<::Google::Cloud::Compute::V1::RolloutPlan>]
67615
+ # A list of RolloutPlan resources.
67616
+ # @!attribute [rw] next_page_token
67617
+ # @return [::String]
67618
+ # [Output Only] This token allows you to get the next page of results for
67619
+ # list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
67620
+ # the query parameter pageToken in the next list request.
67621
+ # Subsequent list requests will have their own nextPageToken to
67622
+ # continue paging through the results.
67623
+ # @!attribute [rw] self_link
67624
+ # @return [::String]
67625
+ # Output only. [Output Only] Server-defined URL for this resource.
67626
+ # @!attribute [rw] unreachables
67627
+ # @return [::Array<::String>]
67628
+ # Output only. [Output Only] Unreachable resources.
67629
+ # end_interface: MixerListResponseWithEtagBuilder
67630
+ # @!attribute [rw] warning
67631
+ # @return [::Google::Cloud::Compute::V1::Warning]
67632
+ # [Output Only] Informational warning message.
67633
+ class RolloutPlansListResponse
67634
+ include ::Google::Protobuf::MessageExts
67635
+ extend ::Google::Protobuf::MessageExts::ClassMethods
67636
+ end
67637
+
67638
+ # Specifications of the resource to roll out.
67639
+ # @!attribute [rw] orchestrated_entity
67640
+ # @return [::Google::Cloud::Compute::V1::RolloutRolloutEntityOrchestratedEntity]
67641
+ # Optional. Entity details for products using the Orchestrated Integration model.
67642
+ class RolloutRolloutEntity
67643
+ include ::Google::Protobuf::MessageExts
67644
+ extend ::Google::Protobuf::MessageExts::ClassMethods
67645
+ end
67646
+
67647
+ # This message is used if the resource type follows the Orchestrated
67648
+ # integration model with ProgressiveRollout.
67649
+ # @!attribute [rw] conflict_behavior
67650
+ # @return [::String]
67651
+ # Required. Specifies the behavior of the Rollout if an out of band update is
67652
+ # detected in a project during a Rollout. It can be one of the following
67653
+ # values:
67654
+ # 1) overwrite : Overwrite the local value with the rollout value.
67655
+ # 2) no_overwrite : Do not overwrite the local value with the rollout
67656
+ # value.
67657
+ # @!attribute [rw] orchestration_action
67658
+ # @return [::String]
67659
+ # Required. Orchestration action during the Rollout. It can be one of the following
67660
+ # values:
67661
+ # 1) "update": Resources will be updated by the rollout.
67662
+ # 2) "delete": Resources will be deleted by the rollout.
67663
+ # @!attribute [rw] orchestration_source
67664
+ # @return [::String]
67665
+ # Required. Fully qualified resource name of the resource which contains the source
67666
+ # of truth of the configuration being rolled out across
67667
+ # locations/projects. For example, in the case of a global Rollout which
67668
+ # is applied across regions, this contains the name of the global
67669
+ # resource created by the user which contains a payload for a resource
67670
+ # that is orchestrated across regions. This follows the following format:
67671
+ # //.googleapis.com/projects//locations/global//
67672
+ # e.g.
67673
+ # //osconfig.googleapis.com/projects/1/locations/global/policyOrchestrators/po1
67674
+ class RolloutRolloutEntityOrchestratedEntity
67675
+ include ::Google::Protobuf::MessageExts
67676
+ extend ::Google::Protobuf::MessageExts::ClassMethods
67677
+ end
67678
+
67679
+ # Additional metadata about the status of each wave provided by the server.
67680
+ # @!attribute [rw] orchestrated_wave_details
67681
+ # @return [::Google::Cloud::Compute::V1::RolloutWaveDetailsOrchestratedWaveDetails]
67682
+ # Output only. Additional details of the wave for products using the Orchestrated
67683
+ # Integration model.
67684
+ # @!attribute [rw] wave_display_name
67685
+ # @return [::String]
67686
+ # Output only. Wave name.
67687
+ # Ex. wave1
67688
+ # @!attribute [rw] wave_number
67689
+ # @return [::Integer]
67690
+ # Output only. System generated number for the wave.
67691
+ class RolloutWaveDetails
67692
+ include ::Google::Protobuf::MessageExts
67693
+ extend ::Google::Protobuf::MessageExts::ClassMethods
67694
+ end
67695
+
67696
+ # Details of the wave for products using the Orchestrated integration
67697
+ # model.
67698
+ # @!attribute [rw] completed_resources_count
67699
+ # @return [::Integer]
67700
+ # Output only. Resource completed so far.
67701
+ # @!attribute [rw] estimated_completion_time
67702
+ # @return [::String]
67703
+ # Output only. Estimated timestamp at which the wave will complete. Extrapolated from
67704
+ # current progress.
67705
+ # @!attribute [rw] estimated_total_resources_count
67706
+ # @return [::Integer]
67707
+ # Output only. Estimated total count of resources.
67708
+ # @!attribute [rw] failed_locations
67709
+ # @return [::Array<::String>]
67710
+ # Output only. Locations that failed during orchestration, and ProgressiveRollout
67711
+ # stopped retrying. There may be some successful resources rolled out in
67712
+ # the wave as the location may have failed later in the Rollout.
67713
+ # @!attribute [rw] failed_resources_count
67714
+ # @return [::Integer]
67715
+ # Output only. Resources failed.
67716
+ # @!attribute [rw] location_status
67717
+ # @return [::Google::Protobuf::Map{::String => ::Google::Cloud::Compute::V1::RolloutWaveDetailsOrchestratedWaveDetailsLocationStatus}]
67718
+ # Output only. Status of each location in the wave. Map keys (locations) must be
67719
+ # specified like "us-east1" or "asia-west1-a".
67720
+ class RolloutWaveDetailsOrchestratedWaveDetails
67721
+ include ::Google::Protobuf::MessageExts
67722
+ extend ::Google::Protobuf::MessageExts::ClassMethods
67723
+
67724
+ # @!attribute [rw] key
67725
+ # @return [::String]
67726
+ # @!attribute [rw] value
67727
+ # @return [::Google::Cloud::Compute::V1::RolloutWaveDetailsOrchestratedWaveDetailsLocationStatus]
67728
+ class LocationStatusEntry
67729
+ include ::Google::Protobuf::MessageExts
67730
+ extend ::Google::Protobuf::MessageExts::ClassMethods
67731
+ end
67732
+ end
67733
+
67734
+ # Represents the status of a location in a wave.
67735
+ # @!attribute [rw] state
67736
+ # @return [::String]
67737
+ # Output only. Location state of the wave.
67738
+ # Check the State enum for the list of possible values.
67739
+ class RolloutWaveDetailsOrchestratedWaveDetailsLocationStatus
67740
+ include ::Google::Protobuf::MessageExts
67741
+ extend ::Google::Protobuf::MessageExts::ClassMethods
67742
+
67743
+ # Output only. Location state of the wave.
67744
+ module State
67745
+ # A value indicating that the enum field is not set.
67746
+ UNDEFINED_STATE = 0
67747
+
67748
+ # Work on the wave failed.
67749
+ STATE_FAILED = 50_857_931
67750
+
67751
+ # Work on the wave is in progress.
67752
+ STATE_IN_PROGRESS = 413_162_809
67753
+
67754
+ # Work on the wave is pending.
67755
+ STATE_PENDING = 369_985_449
67756
+
67757
+ # Work on the wave was canceled or skipped.
67758
+ STATE_SKIPPED = 515_663_170
67759
+
67760
+ # Work on the wave succeeded.
67761
+ STATE_SUCCEEDED = 466_911_219
67762
+
67763
+ # Undefined default state. Should never be exposed to users.
67764
+ STATE_UNSPECIFIED = 470_755_401
67765
+ end
67766
+ end
67767
+
67768
+ # @!attribute [rw] etag
67769
+ # @return [::String]
67770
+ # @!attribute [rw] id
67771
+ # @return [::String]
67772
+ # [Output Only] Unique identifier for the resource; defined by the server.
67773
+ # @!attribute [rw] items
67774
+ # @return [::Array<::Google::Cloud::Compute::V1::Rollout>]
67775
+ # A list of Rollout resources.
67776
+ # @!attribute [rw] next_page_token
67777
+ # @return [::String]
67778
+ # [Output Only] This token allows you to get the next page of results for
67779
+ # list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
67780
+ # the query parameter pageToken in the next list request.
67781
+ # Subsequent list requests will have their own nextPageToken to
67782
+ # continue paging through the results.
67783
+ # @!attribute [rw] self_link
67784
+ # @return [::String]
67785
+ # Output only. [Output Only] Server-defined URL for this resource.
67786
+ # @!attribute [rw] unreachables
67787
+ # @return [::Array<::String>]
67788
+ # Output only. [Output Only] Unreachable resources.
67789
+ # end_interface: MixerListResponseWithEtagBuilder
67790
+ # @!attribute [rw] warning
67791
+ # @return [::Google::Cloud::Compute::V1::Warning]
67792
+ # [Output Only] Informational warning message.
67793
+ class RolloutsListResponse
67794
+ include ::Google::Protobuf::MessageExts
67795
+ extend ::Google::Protobuf::MessageExts::ClassMethods
67796
+ end
67797
+
66145
67798
  # Represents a Route resource.
66146
67799
  #
66147
67800
  # A route defines a path from VM instances in the VPC network to a specific
@@ -70772,6 +72425,21 @@ module Google
70772
72425
  extend ::Google::Protobuf::MessageExts::ClassMethods
70773
72426
  end
70774
72427
 
72428
+ # A request message for LicenseCodes.SetIamPolicy. See the method description for details.
72429
+ # @!attribute [rw] global_set_policy_request_resource
72430
+ # @return [::Google::Cloud::Compute::V1::GlobalSetPolicyRequest]
72431
+ # The body resource for this request
72432
+ # @!attribute [rw] project
72433
+ # @return [::String]
72434
+ # Project ID for this request.
72435
+ # @!attribute [rw] resource
72436
+ # @return [::String]
72437
+ # Name or id of the resource for this request.
72438
+ class SetIamPolicyLicenseCodeRequest
72439
+ include ::Google::Protobuf::MessageExts
72440
+ extend ::Google::Protobuf::MessageExts::ClassMethods
72441
+ end
72442
+
70775
72443
  # A request message for Licenses.SetIamPolicy. See the method description for details.
70776
72444
  # @!attribute [rw] global_set_policy_request_resource
70777
72445
  # @return [::Google::Cloud::Compute::V1::GlobalSetPolicyRequest]
@@ -73440,8 +75108,8 @@ module Google
73440
75108
  # Input only. Resource manager tags to be bound to the snapshot. Tag keys and values have
73441
75109
  # the same definition as resource
73442
75110
  # manager tags. Keys and values can be either in numeric format,
73443
- # such as `tagKeys/{tag_key_id}` and `tagValues/456` or in namespaced
73444
- # format such as `{org_id|project_id}/{tag_key_short_name}` and
75111
+ # such as `tagKeys/{tag_key_id}` and `tagValues/{tag_value_id}` or in
75112
+ # namespaced format such as `{org_id|project_id}/{tag_key_short_name}` and
73445
75113
  # `{tag_value_short_name}`. The field is ignored (both PUT &
73446
75114
  # PATCH) when empty.
73447
75115
  class SnapshotParams
@@ -74149,6 +75817,16 @@ module Google
74149
75817
  # must be a lowercase letter, and all following characters must be a dash,
74150
75818
  # lowercase letter, or digit, except the last character, which cannot be a
74151
75819
  # dash.
75820
+ # @!attribute [rw] post_quantum_key_exchange
75821
+ # @return [::String]
75822
+ # One of DEFAULT, ENABLED, orDEFERRED. Controls whether the load balancer negotiates
75823
+ # X25519MLKEM768 key exchange when clients advertise support for it. When set
75824
+ # to DEFAULT, or if no SSL Policy is attached to the target
75825
+ # proxy, the load balancer disallows X25519MLKEM768 key exchange before
75826
+ # October 2026, and allows it afterward. When set to ENABLED,
75827
+ # the load balancer allows X25519MLKEM768 key exchange. When set toDEFERRED, the load balancer disallows X25519MLKEM768 key
75828
+ # exchange until October 2027, and allows it afterward.
75829
+ # Check the PostQuantumKeyExchange enum for the list of possible values.
74152
75830
  # @!attribute [rw] profile
74153
75831
  # @return [::String]
74154
75832
  # Profile specifies the set of SSL features that can be used by the load
@@ -74191,6 +75869,27 @@ module Google
74191
75869
  TLS_1_3 = 33_116_737
74192
75870
  end
74193
75871
 
75872
+ # One of DEFAULT, ENABLED, orDEFERRED. Controls whether the load balancer negotiates
75873
+ # X25519MLKEM768 key exchange when clients advertise support for it. When set
75874
+ # to DEFAULT, or if no SSL Policy is attached to the target
75875
+ # proxy, the load balancer disallows X25519MLKEM768 key exchange before
75876
+ # October 2026, and allows it afterward. When set to ENABLED,
75877
+ # the load balancer allows X25519MLKEM768 key exchange. When set toDEFERRED, the load balancer disallows X25519MLKEM768 key
75878
+ # exchange until October 2027, and allows it afterward.
75879
+ module PostQuantumKeyExchange
75880
+ # A value indicating that the enum field is not set.
75881
+ UNDEFINED_POST_QUANTUM_KEY_EXCHANGE = 0
75882
+
75883
+ # Default behavior: disabled until October 2026, enabled afterward.
75884
+ DEFAULT = 115_302_945
75885
+
75886
+ # Disabled until October 2027, enabled afterward.
75887
+ DEFERRED = 356_775_903
75888
+
75889
+ # Enabled now.
75890
+ ENABLED = 182_130_465
75891
+ end
75892
+
74194
75893
  # Profile specifies the set of SSL features that can be used by the load
74195
75894
  # balancer when negotiating SSL with clients. This can be one ofCOMPATIBLE, MODERN, RESTRICTED,FIPS_202205, or CUSTOM. If usingCUSTOM, the set of SSL features to enable must be specified in
74196
75895
  # the customFeatures field. If using FIPS_202205,
@@ -75142,8 +76841,8 @@ module Google
75142
76841
  # Input only. Resource manager tags to be bound to the storage pool. Tag keys and values
75143
76842
  # have the same definition as resource
75144
76843
  # manager tags. Keys and values can be either in numeric format,
75145
- # such as `tagKeys/{tag_key_id}` and `tagValues/456` or in namespaced
75146
- # format such as `{org_id|project_id}/{tag_key_short_name}` and
76844
+ # such as `tagKeys/{tag_key_id}` and `tagValues/{tag_value_id}` or in
76845
+ # namespaced format such as `{org_id|project_id}/{tag_key_short_name}` and
75147
76846
  # `{tag_value_short_name}`. The field is ignored (both PUT &
75148
76847
  # PATCH) when empty.
75149
76848
  class StoragePoolParams
@@ -79446,6 +81145,36 @@ module Google
79446
81145
  extend ::Google::Protobuf::MessageExts::ClassMethods
79447
81146
  end
79448
81147
 
81148
+ # A request message for GlobalVmExtensionPolicies.Update. See the method description for details.
81149
+ # @!attribute [rw] global_vm_extension_policy
81150
+ # @return [::String]
81151
+ # Name of the global VM extension policy to update.
81152
+ # @!attribute [rw] global_vm_extension_policy_resource
81153
+ # @return [::Google::Cloud::Compute::V1::GlobalVmExtensionPolicy]
81154
+ # The body resource for this request
81155
+ # @!attribute [rw] project
81156
+ # @return [::String]
81157
+ # Project ID for this request.
81158
+ # @!attribute [rw] request_id
81159
+ # @return [::String]
81160
+ # An optional request ID to identify requests. Specify a unique request ID so
81161
+ # that if you must retry your request, the server will know to ignore the
81162
+ # request if it has already been completed.
81163
+ #
81164
+ # For example, consider a situation where you make an initial request and
81165
+ # the request times out. If you make the request again with the same
81166
+ # request ID, the server can check if original operation with the same
81167
+ # request ID was received, and if so, will ignore the second request. This
81168
+ # prevents clients from accidentally creating duplicate commitments.
81169
+ #
81170
+ # The request ID must be
81171
+ # a valid UUID with the exception that zero UUID is not supported
81172
+ # (00000000-0000-0000-0000-000000000000).
81173
+ class UpdateGlobalVmExtensionPolicyRequest
81174
+ include ::Google::Protobuf::MessageExts
81175
+ extend ::Google::Protobuf::MessageExts::ClassMethods
81176
+ end
81177
+
79449
81178
  # A request message for HealthChecks.Update. See the method description for details.
79450
81179
  # @!attribute [rw] health_check
79451
81180
  # @return [::String]
@@ -81144,6 +82873,18 @@ module Google
81144
82873
  extend ::Google::Protobuf::MessageExts::ClassMethods
81145
82874
  end
81146
82875
 
82876
+ # @!attribute [rw] vm_extension_policies
82877
+ # @return [::Array<::Google::Cloud::Compute::V1::VmExtensionPolicy>]
82878
+ # List of VmExtensionPolicy resources contained in this scope.
82879
+ # @!attribute [rw] warning
82880
+ # @return [::Google::Cloud::Compute::V1::Warning]
82881
+ # Informational warning which replaces the list of
82882
+ # backend services when the list is empty.
82883
+ class VmExtensionPoliciesScopedList
82884
+ include ::Google::Protobuf::MessageExts
82885
+ extend ::Google::Protobuf::MessageExts::ClassMethods
82886
+ end
82887
+
81147
82888
  # Represents a VM extension policy.
81148
82889
  # @!attribute [rw] creation_timestamp
81149
82890
  # @return [::String]
@@ -81238,6 +82979,49 @@ module Google
81238
82979
  end
81239
82980
  end
81240
82981
 
82982
+ # Response for the aggregated list of VM extension policies.
82983
+ # @!attribute [rw] etag
82984
+ # @return [::String]
82985
+ # @!attribute [rw] id
82986
+ # @return [::String]
82987
+ # [Output Only] Unique identifier for the resource; defined by the server.
82988
+ # @!attribute [rw] items
82989
+ # @return [::Google::Protobuf::Map{::String => ::Google::Cloud::Compute::V1::VmExtensionPoliciesScopedList}]
82990
+ # A list of VmExtensionPoliciesScopedList resources.
82991
+ # @!attribute [rw] kind
82992
+ # @return [::String]
82993
+ # Output only. [Output Only] Type of resource. Alwayscompute#VmExtensionPolicyAggregatedList for lists of
82994
+ # VmExtensionPolicies.
82995
+ # @!attribute [rw] next_page_token
82996
+ # @return [::String]
82997
+ # [Output Only] This token allows you to get the next page of results for
82998
+ # list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
82999
+ # the query parameter pageToken in the next list request.
83000
+ # Subsequent list requests will have their own nextPageToken to
83001
+ # continue paging through the results.
83002
+ # @!attribute [rw] self_link
83003
+ # @return [::String]
83004
+ # Output only. [Output Only] Server-defined URL for this resource.
83005
+ # @!attribute [rw] unreachables
83006
+ # @return [::Array<::String>]
83007
+ # Output only. [Output Only] Unreachable resources.
83008
+ # @!attribute [rw] warning
83009
+ # @return [::Google::Cloud::Compute::V1::Warning]
83010
+ # [Output Only] Informational warning message.
83011
+ class VmExtensionPolicyAggregatedListResponse
83012
+ include ::Google::Protobuf::MessageExts
83013
+ extend ::Google::Protobuf::MessageExts::ClassMethods
83014
+
83015
+ # @!attribute [rw] key
83016
+ # @return [::String]
83017
+ # @!attribute [rw] value
83018
+ # @return [::Google::Cloud::Compute::V1::VmExtensionPoliciesScopedList]
83019
+ class ItemsEntry
83020
+ include ::Google::Protobuf::MessageExts
83021
+ extend ::Google::Protobuf::MessageExts::ClassMethods
83022
+ end
83023
+ end
83024
+
81241
83025
  # Configuration for a specific VM extension.
81242
83026
  # @!attribute [rw] pinned_version
81243
83027
  # @return [::String]