Class: Google::Apis::WorkloadmanagerV1::IsolationExpectations
- Inherits:
-
Object
- Object
- Google::Apis::WorkloadmanagerV1::IsolationExpectations
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/workloadmanager_v1/classes.rb,
lib/google/apis/workloadmanager_v1/representations.rb,
lib/google/apis/workloadmanager_v1/representations.rb
Instance Attribute Summary collapse
-
#requirement_override ⇒ Google::Apis::WorkloadmanagerV1::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.
657 658 659 |
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 657 def initialize(**args) update!(**args) end |
Instance Attribute Details
#requirement_override ⇒ Google::Apis::WorkloadmanagerV1::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
618 619 620 |
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 618 def requirement_override @requirement_override end |
#zi_org_policy ⇒ String
Corresponds to the JSON property ziOrgPolicy
623 624 625 |
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 623 def zi_org_policy @zi_org_policy end |
#zi_region_policy ⇒ String
Corresponds to the JSON property ziRegionPolicy
628 629 630 |
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 628 def zi_region_policy @zi_region_policy end |
#zi_region_state ⇒ String
Corresponds to the JSON property ziRegionState
633 634 635 |
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 633 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
639 640 641 |
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 639 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
645 646 647 |
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 645 def zone_separation @zone_separation end |
#zs_org_policy ⇒ String
Corresponds to the JSON property zsOrgPolicy
650 651 652 |
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 650 def zs_org_policy @zs_org_policy end |
#zs_region_state ⇒ String
Corresponds to the JSON property zsRegionState
655 656 657 |
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 655 def zs_region_state @zs_region_state end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
662 663 664 665 666 667 668 669 670 671 |
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 662 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 |