Class: Google::Cloud::Compute::V1::ProjectsSetCloudArmorTierRequest
- Inherits:
-
Object
- Object
- Google::Cloud::Compute::V1::ProjectsSetCloudArmorTierRequest
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/compute/v1/compute.rb
Defined Under Namespace
Modules: CloudArmorTier
Instance Attribute Summary collapse
-
#cloud_armor_tier ⇒ ::String
Managed protection tier to be set.
Instance Attribute Details
#cloud_armor_tier ⇒ ::String
Returns Managed protection tier to be set. Check the CloudArmorTier enum for the list of possible values.
24335 24336 24337 24338 24339 24340 24341 24342 24343 24344 24345 24346 24347 24348 24349 24350 24351 24352 24353 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 24335 class ProjectsSetCloudArmorTierRequest include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Managed protection tier to be set. module CloudArmorTier # A value indicating that the enum field is not set. UNDEFINED_CLOUD_ARMOR_TIER = 0 # Enterprise tier protection billed annually. CA_ENTERPRISE_ANNUAL = 219_921_116 # Enterprise tier protection billed monthly. CA_ENTERPRISE_PAYGO = 453_530_323 # Standard protection. CA_STANDARD = 13_156_734 end end |