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.
27575 27576 27577 27578 27579 27580 27581 27582 27583 27584 27585 27586 27587 27588 27589 27590 27591 27592 27593 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 27575 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 |