Class: Google::Apis::FirebaseappcheckV1::GoogleFirebaseAppcheckV1PlayIntegrityConfig
- Inherits:
-
Object
- Object
- Google::Apis::FirebaseappcheckV1::GoogleFirebaseAppcheckV1PlayIntegrityConfig
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/firebaseappcheck_v1/classes.rb,
lib/google/apis/firebaseappcheck_v1/representations.rb,
lib/google/apis/firebaseappcheck_v1/representations.rb
Overview
An app's Play Integrity configuration object. This configuration controls
certain properties of the AppCheckToken
returned by
ExchangePlayIntegrityToken, such as its ttl. Note that your registered SHA-256
certificate fingerprints are used to validate tokens issued by the Play
Integrity API; please register them via the Firebase Console or
programmatically via the Firebase Management Service.
Instance Attribute Summary collapse
-
#name ⇒ String
Required.
-
#token_ttl ⇒ String
Specifies the duration for which App Check tokens exchanged from Play Integrity tokens will be valid.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleFirebaseAppcheckV1PlayIntegrityConfig
constructor
A new instance of GoogleFirebaseAppcheckV1PlayIntegrityConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleFirebaseAppcheckV1PlayIntegrityConfig
Returns a new instance of GoogleFirebaseAppcheckV1PlayIntegrityConfig.
924 925 926 |
# File 'lib/google/apis/firebaseappcheck_v1/classes.rb', line 924 def initialize(**args) update!(**args) end |
Instance Attribute Details
#name ⇒ String
Required. The relative resource name of the Play Integrity configuration
object, in the format: projects/`project_number`/apps/`app_id`/
playIntegrityConfig
Corresponds to the JSON property name
915 916 917 |
# File 'lib/google/apis/firebaseappcheck_v1/classes.rb', line 915 def name @name end |
#token_ttl ⇒ String
Specifies the duration for which App Check tokens exchanged from Play
Integrity tokens will be valid. If unset, a default value of 1 hour is assumed.
Must be between 30 minutes and 7 days, inclusive.
Corresponds to the JSON property tokenTtl
922 923 924 |
# File 'lib/google/apis/firebaseappcheck_v1/classes.rb', line 922 def token_ttl @token_ttl end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
929 930 931 932 |
# File 'lib/google/apis/firebaseappcheck_v1/classes.rb', line 929 def update!(**args) @name = args[:name] if args.key?(:name) @token_ttl = args[:token_ttl] if args.key?(:token_ttl) end |