Class: Google::Apis::ApphubV1::IsolationExpectations
- Inherits:
-
Object
- Object
- Google::Apis::ApphubV1::IsolationExpectations
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/apphub_v1/classes.rb,
lib/google/apis/apphub_v1/representations.rb,
lib/google/apis/apphub_v1/representations.rb
Instance Attribute Summary collapse
-
#requirement_override ⇒ Google::Apis::ApphubV1::RequirementOverride
Explicit overrides for ZI and ZS requirements to be used for resources that should be excluded from ZI/ZS verification logic.
-
#zi_org_policy ⇒ String
Corresponds to the JSON property
ziOrgPolicy
. -
#zi_region_policy ⇒ String
Corresponds to the JSON property
ziRegionPolicy
. -
#zi_region_state ⇒ String
Corresponds to the JSON property
ziRegionState
. -
#zone_isolation ⇒ String
Deprecated: use zi_org_policy, zi_region_policy and zi_region_state instead for setting ZI expectations as per go/zicy-publish-physical-location.
-
#zone_separation ⇒ String
Deprecated: use zs_org_policy, and zs_region_stateinstead for setting Zs expectations as per go/zicy-publish-physical-location.
-
#zs_org_policy ⇒ String
Corresponds to the JSON property
zsOrgPolicy
. -
#zs_region_state ⇒ String
Corresponds to the JSON property
zsRegionState
.
Instance Method Summary collapse
-
#initialize(**args) ⇒ IsolationExpectations
constructor
A new instance of IsolationExpectations.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ IsolationExpectations
Returns a new instance of IsolationExpectations.
751 752 753 |
# File 'lib/google/apis/apphub_v1/classes.rb', line 751 def initialize(**args) update!(**args) end |
Instance Attribute Details
#requirement_override ⇒ Google::Apis::ApphubV1::RequirementOverride
Explicit overrides for ZI and ZS requirements to be used for resources that
should be excluded from ZI/ZS verification logic.
Corresponds to the JSON property requirementOverride
712 713 714 |
# File 'lib/google/apis/apphub_v1/classes.rb', line 712 def requirement_override @requirement_override end |
#zi_org_policy ⇒ String
Corresponds to the JSON property ziOrgPolicy
717 718 719 |
# File 'lib/google/apis/apphub_v1/classes.rb', line 717 def zi_org_policy @zi_org_policy end |
#zi_region_policy ⇒ String
Corresponds to the JSON property ziRegionPolicy
722 723 724 |
# File 'lib/google/apis/apphub_v1/classes.rb', line 722 def zi_region_policy @zi_region_policy end |
#zi_region_state ⇒ String
Corresponds to the JSON property ziRegionState
727 728 729 |
# File 'lib/google/apis/apphub_v1/classes.rb', line 727 def zi_region_state @zi_region_state end |
#zone_isolation ⇒ String
Deprecated: use zi_org_policy, zi_region_policy and zi_region_state instead
for setting ZI expectations as per go/zicy-publish-physical-location.
Corresponds to the JSON property zoneIsolation
733 734 735 |
# File 'lib/google/apis/apphub_v1/classes.rb', line 733 def zone_isolation @zone_isolation end |
#zone_separation ⇒ String
Deprecated: use zs_org_policy, and zs_region_stateinstead for setting Zs
expectations as per go/zicy-publish-physical-location.
Corresponds to the JSON property zoneSeparation
739 740 741 |
# File 'lib/google/apis/apphub_v1/classes.rb', line 739 def zone_separation @zone_separation end |
#zs_org_policy ⇒ String
Corresponds to the JSON property zsOrgPolicy
744 745 746 |
# File 'lib/google/apis/apphub_v1/classes.rb', line 744 def zs_org_policy @zs_org_policy end |
#zs_region_state ⇒ String
Corresponds to the JSON property zsRegionState
749 750 751 |
# File 'lib/google/apis/apphub_v1/classes.rb', line 749 def zs_region_state @zs_region_state end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
756 757 758 759 760 761 762 763 764 765 |
# File 'lib/google/apis/apphub_v1/classes.rb', line 756 def update!(**args) @requirement_override = args[:requirement_override] if args.key?(:requirement_override) @zi_org_policy = args[:zi_org_policy] if args.key?(:zi_org_policy) @zi_region_policy = args[:zi_region_policy] if args.key?(:zi_region_policy) @zi_region_state = args[:zi_region_state] if args.key?(:zi_region_state) @zone_isolation = args[:zone_isolation] if args.key?(:zone_isolation) @zone_separation = args[:zone_separation] if args.key?(:zone_separation) @zs_org_policy = args[:zs_org_policy] if args.key?(:zs_org_policy) @zs_region_state = args[:zs_region_state] if args.key?(:zs_region_state) end |