Class: Google::Apis::AccesscontextmanagerV1beta::OsConstraint
- Inherits:
-
Object
- Object
- Google::Apis::AccesscontextmanagerV1beta::OsConstraint
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/accesscontextmanager_v1beta/classes.rb,
generated/google/apis/accesscontextmanager_v1beta/representations.rb,
generated/google/apis/accesscontextmanager_v1beta/representations.rb
Overview
A restriction on the OS type and version of devices making requests.
Instance Attribute Summary collapse
-
#minimum_version ⇒ String
The minimum allowed OS version.
-
#os_type ⇒ String
Required.
-
#require_verified_chrome_os ⇒ Boolean
(also: #require_verified_chrome_os?)
Only allows requests from devices with a verified Chrome OS.
Instance Method Summary collapse
-
#initialize(**args) ⇒ OsConstraint
constructor
A new instance of OsConstraint.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ OsConstraint
Returns a new instance of OsConstraint.
530 531 532 |
# File 'generated/google/apis/accesscontextmanager_v1beta/classes.rb', line 530 def initialize(**args) update!(**args) end |
Instance Attribute Details
#minimum_version ⇒ String
The minimum allowed OS version. If not set, any version of this OS satisfies
the constraint. Format: "major.minor.patch"
. Examples: "10.5.301"
, "9.2.1"
.
Corresponds to the JSON property minimumVersion
514 515 516 |
# File 'generated/google/apis/accesscontextmanager_v1beta/classes.rb', line 514 def minimum_version @minimum_version end |
#os_type ⇒ String
Required. The allowed OS type.
Corresponds to the JSON property osType
519 520 521 |
# File 'generated/google/apis/accesscontextmanager_v1beta/classes.rb', line 519 def os_type @os_type end |
#require_verified_chrome_os ⇒ Boolean Also known as: require_verified_chrome_os?
Only allows requests from devices with a verified Chrome OS. Verifications
includes requirements that the device is enterprise-managed, conformant to
domain policies, and the caller has permission to call the API targeted by the
request.
Corresponds to the JSON property requireVerifiedChromeOs
527 528 529 |
# File 'generated/google/apis/accesscontextmanager_v1beta/classes.rb', line 527 def require_verified_chrome_os @require_verified_chrome_os end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
535 536 537 538 539 |
# File 'generated/google/apis/accesscontextmanager_v1beta/classes.rb', line 535 def update!(**args) @minimum_version = args[:minimum_version] if args.key?(:minimum_version) @os_type = args[:os_type] if args.key?(:os_type) @require_verified_chrome_os = args[:require_verified_chrome_os] if args.key?(:require_verified_chrome_os) end |