Skip to content

Commit

Permalink
feat(firebaseappcheck): update the API
Browse files Browse the repository at this point in the history
#### firebaseappcheck:v1beta

The following keys were added:
- schemas.GoogleFirebaseAppcheckV1betaDebugToken.properties.updateTime.description
- schemas.GoogleFirebaseAppcheckV1betaDebugToken.properties.updateTime.format
- schemas.GoogleFirebaseAppcheckV1betaDebugToken.properties.updateTime.readOnly
- schemas.GoogleFirebaseAppcheckV1betaDebugToken.properties.updateTime.type

#### firebaseappcheck:v1

The following keys were added:
- schemas.GoogleFirebaseAppcheckV1DebugToken.properties.updateTime.description
- schemas.GoogleFirebaseAppcheckV1DebugToken.properties.updateTime.format
- schemas.GoogleFirebaseAppcheckV1DebugToken.properties.updateTime.readOnly
- schemas.GoogleFirebaseAppcheckV1DebugToken.properties.updateTime.type
  • Loading branch information
yoshi-automation authored and sofisl committed May 7, 2024
1 parent 7fa01b6 commit a82f599
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 2 deletions.
8 changes: 7 additions & 1 deletion discovery/firebaseappcheck-v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -1343,7 +1343,7 @@
}
}
},
"revision": "20240422",
"revision": "20240429",
"rootUrl": "https://firebaseappcheck.googleapis.com/",
"schemas": {
"GoogleFirebaseAppcheckV1AppAttestConfig": {
Expand Down Expand Up @@ -1511,6 +1511,12 @@
"token": {
"description": "Required. Input only. Immutable. The secret token itself. Must be provided during creation, and must be a UUID4, case insensitive. This field is immutable once set, and cannot be provided during an UpdateDebugToken request. You can, however, delete this debug token using DeleteDebugToken to revoke it. For security reasons, this field will never be populated in any response.",
"type": "string"
},
"updateTime": {
"description": "Output only. Timestamp when this debug token was most recently updated.",
"format": "google-datetime",
"readOnly": true,
"type": "string"
}
},
"type": "object"
Expand Down
8 changes: 7 additions & 1 deletion discovery/firebaseappcheck-v1beta.json
Original file line number Diff line number Diff line change
Expand Up @@ -1823,7 +1823,7 @@
}
}
},
"revision": "20240422",
"revision": "20240429",
"rootUrl": "https://firebaseappcheck.googleapis.com/",
"schemas": {
"GoogleFirebaseAppcheckV1betaAppAttestConfig": {
Expand Down Expand Up @@ -2061,6 +2061,12 @@
"token": {
"description": "Required. Input only. Immutable. The secret token itself. Must be provided during creation, and must be a UUID4, case insensitive. This field is immutable once set, and cannot be provided during an UpdateDebugToken request. You can, however, delete this debug token using DeleteDebugToken to revoke it. For security reasons, this field will never be populated in any response.",
"type": "string"
},
"updateTime": {
"description": "Output only. Timestamp when this debug token was most recently updated.",
"format": "google-datetime",
"readOnly": true,
"type": "string"
}
},
"type": "object"
Expand Down
4 changes: 4 additions & 0 deletions src/apis/firebaseappcheck/v1.ts
Original file line number Diff line number Diff line change
Expand Up @@ -244,6 +244,10 @@ export namespace firebaseappcheck_v1 {
* Required. Input only. Immutable. The secret token itself. Must be provided during creation, and must be a UUID4, case insensitive. This field is immutable once set, and cannot be provided during an UpdateDebugToken request. You can, however, delete this debug token using DeleteDebugToken to revoke it. For security reasons, this field will never be populated in any response.
*/
token?: string | null;
/**
* Output only. Timestamp when this debug token was most recently updated.
*/
updateTime?: string | null;
}
/**
* An app's DeviceCheck configuration object. This configuration is used by ExchangeDeviceCheckToken to validate device tokens issued to apps by DeviceCheck. It also controls certain properties of the returned `AppCheckToken`, such as its ttl. Note that the Team ID registered with your app is used as part of the validation process. Please register it via the Firebase Console or programmatically via the [Firebase Management Service](https://firebase.google.com/docs/projects/api/reference/rest/v11/projects.iosApps/patch).
Expand Down
4 changes: 4 additions & 0 deletions src/apis/firebaseappcheck/v1beta.ts
Original file line number Diff line number Diff line change
Expand Up @@ -294,6 +294,10 @@ export namespace firebaseappcheck_v1beta {
* Required. Input only. Immutable. The secret token itself. Must be provided during creation, and must be a UUID4, case insensitive. This field is immutable once set, and cannot be provided during an UpdateDebugToken request. You can, however, delete this debug token using DeleteDebugToken to revoke it. For security reasons, this field will never be populated in any response.
*/
token?: string | null;
/**
* Output only. Timestamp when this debug token was most recently updated.
*/
updateTime?: string | null;
}
/**
* An app's DeviceCheck configuration object. This configuration is used by ExchangeDeviceCheckToken to validate device tokens issued to apps by DeviceCheck. It also controls certain properties of the returned `AppCheckToken`, such as its ttl. Note that the Team ID registered with your app is used as part of the validation process. Please register it via the Firebase Console or programmatically via the [Firebase Management Service](https://firebase.google.com/docs/projects/api/reference/rest/v1beta1/projects.iosApps/patch).
Expand Down

0 comments on commit a82f599

Please sign in to comment.