class Google::Apis::FirebaseappcheckV1beta::GoogleFirebaseAppcheckV1betaService

The enforcement configuration for a Firebase service supported by App Check.

Attributes

enforcement_mode[RW]

Required. The App Check enforcement mode for this service. Corresponds to the JSON property `enforcementMode` @return [String]

name[RW]

Required. The relative resource name of the service configuration object, in the format: “` projects/`project_number`/services/`service_id` “` Note that the `service_id` element must be a supported service ID. Currently, the following service IDs are supported: * `firebasestorage.googleapis.com` (Cloud Storage for Firebase) * `firebasedatabase.googleapis.com` (Firebase Realtime Database) Corresponds to the JSON property `name` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/firebaseappcheck_v1beta/classes.rb, line 788
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/firebaseappcheck_v1beta/classes.rb, line 793
def update!(**args)
  @enforcement_mode = args[:enforcement_mode] if args.key?(:enforcement_mode)
  @name = args[:name] if args.key?(:name)
end