Class: Google::Apis::ApphubV1alpha::IsolationExpectations
- Inherits:
-
Object
- Object
- Google::Apis::ApphubV1alpha::IsolationExpectations
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/apphub_v1alpha/classes.rb,
lib/google/apis/apphub_v1alpha/representations.rb,
lib/google/apis/apphub_v1alpha/representations.rb
Instance Attribute Summary collapse
-
#requirement_override ⇒ Google::Apis::ApphubV1alpha::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.
862 863 864 |
# File 'lib/google/apis/apphub_v1alpha/classes.rb', line 862 def initialize(**args) update!(**args) end |
Instance Attribute Details
#requirement_override ⇒ Google::Apis::ApphubV1alpha::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
823 824 825 |
# File 'lib/google/apis/apphub_v1alpha/classes.rb', line 823 def requirement_override @requirement_override end |
#zi_org_policy ⇒ String
Corresponds to the JSON property ziOrgPolicy
828 829 830 |
# File 'lib/google/apis/apphub_v1alpha/classes.rb', line 828 def zi_org_policy @zi_org_policy end |
#zi_region_policy ⇒ String
Corresponds to the JSON property ziRegionPolicy
833 834 835 |
# File 'lib/google/apis/apphub_v1alpha/classes.rb', line 833 def zi_region_policy @zi_region_policy end |
#zi_region_state ⇒ String
Corresponds to the JSON property ziRegionState
838 839 840 |
# File 'lib/google/apis/apphub_v1alpha/classes.rb', line 838 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
844 845 846 |
# File 'lib/google/apis/apphub_v1alpha/classes.rb', line 844 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
850 851 852 |
# File 'lib/google/apis/apphub_v1alpha/classes.rb', line 850 def zone_separation @zone_separation end |
#zs_org_policy ⇒ String
Corresponds to the JSON property zsOrgPolicy
855 856 857 |
# File 'lib/google/apis/apphub_v1alpha/classes.rb', line 855 def zs_org_policy @zs_org_policy end |
#zs_region_state ⇒ String
Corresponds to the JSON property zsRegionState
860 861 862 |
# File 'lib/google/apis/apphub_v1alpha/classes.rb', line 860 def zs_region_state @zs_region_state end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
867 868 869 870 871 872 873 874 875 876 |
# File 'lib/google/apis/apphub_v1alpha/classes.rb', line 867 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 |