Class: Google::Apis::FirebaseappcheckV1beta::GoogleFirebaseAppcheckV1betaResourcePolicy
- Inherits:
-
Object
- Object
- Google::Apis::FirebaseappcheckV1beta::GoogleFirebaseAppcheckV1betaResourcePolicy
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/firebaseappcheck_v1beta/classes.rb,
lib/google/apis/firebaseappcheck_v1beta/representations.rb,
lib/google/apis/firebaseappcheck_v1beta/representations.rb
Overview
App Check enforcement policy for a specific resource of a Firebase service supported by App Check. Note that this policy will override the Service level enforcement mode configuration.
Instance Attribute Summary collapse
-
#enforcement_mode ⇒ String
Required.
-
#etag ⇒ String
This checksum is computed by the server based on the value of other fields, and may be sent on update and delete requests to ensure the client has an up- to-date value before proceeding.
-
#name ⇒ String
Required.
-
#target_resource ⇒ String
Required.
-
#update_time ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleFirebaseAppcheckV1betaResourcePolicy
constructor
A new instance of GoogleFirebaseAppcheckV1betaResourcePolicy.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleFirebaseAppcheckV1betaResourcePolicy
Returns a new instance of GoogleFirebaseAppcheckV1betaResourcePolicy.
1274 1275 1276 |
# File 'lib/google/apis/firebaseappcheck_v1beta/classes.rb', line 1274 def initialize(**args) update!(**args) end |
Instance Attribute Details
#enforcement_mode ⇒ String
Required. The App Check enforcement mode for this resource. This will override
the EnforcementMode setting on the service. For new resources that you are
creating, you should consider setting an override and enable enforcement on
the resource immediately, if there are no outdated clients that can use it.
Corresponds to the JSON property enforcementMode
1239 1240 1241 |
# File 'lib/google/apis/firebaseappcheck_v1beta/classes.rb', line 1239 def enforcement_mode @enforcement_mode end |
#etag ⇒ String
This checksum is computed by the server based on the value of other fields,
and may be sent on update and delete requests to ensure the client has an up-
to-date value before proceeding. This etag is strongly validated.
Corresponds to the JSON property etag
1246 1247 1248 |
# File 'lib/google/apis/firebaseappcheck_v1beta/classes.rb', line 1246 def etag @etag end |
#name ⇒ String
Required. The relative name of the resource configuration object, in the
format: projects/`project_number`/services/`service_id`/resourcePolicies/`
resource_policy_id` Note that the service_id element must be a supported
service ID. Currently, the following service IDs are supported: * oauth2.
googleapis.com (Google Identity for iOS) resource_policy_id is a system-
generated UID used as the resource ID for the policy.
Corresponds to the JSON property name
1256 1257 1258 |
# File 'lib/google/apis/firebaseappcheck_v1beta/classes.rb', line 1256 def name @name end |
#target_resource ⇒ String
Required. Service specific name of the resource object to which this policy
applies, in the format: * //oauth2.googleapis.com/projects/project/
oauthClients/oauth_client_id`(Google Identity for iOS) NOTE that the
resource must belong to the service specified in thenameand be from the
same project as this policy, but it may or may not exist at the time of
creation of the policy.
Corresponds to the JSON propertytargetResource`
1266 1267 1268 |
# File 'lib/google/apis/firebaseappcheck_v1beta/classes.rb', line 1266 def target_resource @target_resource end |
#update_time ⇒ String
Output only. Timestamp when this service configuration object was most
recently updated.
Corresponds to the JSON property updateTime
1272 1273 1274 |
# File 'lib/google/apis/firebaseappcheck_v1beta/classes.rb', line 1272 def update_time @update_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1279 1280 1281 1282 1283 1284 1285 |
# File 'lib/google/apis/firebaseappcheck_v1beta/classes.rb', line 1279 def update!(**args) @enforcement_mode = args[:enforcement_mode] if args.key?(:enforcement_mode) @etag = args[:etag] if args.key?(:etag) @name = args[:name] if args.key?(:name) @target_resource = args[:target_resource] if args.key?(:target_resource) @update_time = args[:update_time] if args.key?(:update_time) end |