Skip to content

Commit af1017c

Browse files
committed
google updates
1 parent 1e75548 commit af1017c

File tree

170 files changed

+164033
-131430
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

170 files changed

+164033
-131430
lines changed

providers/src/googleapis.com/v00.00.00000/provider.yaml

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1131,6 +1131,18 @@ providerServices:
11311131
title: Cloud Monitoring API
11321132
version: v00.00.00000
11331133
description: Manages your Cloud Monitoring data and configurations.
1134+
netapp:
1135+
id: netapp:v00.00.00000
1136+
name: netapp
1137+
preferred: true
1138+
service:
1139+
$ref: googleapis.com/v00.00.00000/services/netapp.yaml
1140+
title: NetApp API
1141+
version: v00.00.00000
1142+
description: >-
1143+
Google Cloud NetApp Volumes is a fully-managed, cloud-based data storage
1144+
service that provides advanced data management capabilities and highly
1145+
scalable performance with global availability.
11341146
networkconnectivity:
11351147
id: networkconnectivity:v00.00.00000
11361148
name: networkconnectivity
@@ -1196,8 +1208,8 @@ providerServices:
11961208
title: Oracle Database@Google Cloud API
11971209
version: v00.00.00000
11981210
description: >-
1199-
The Oracle Database@Google Cloud API provides set of APIs to manage Oracle
1200-
databases such as Exadata and Autonomous Databases.
1211+
The Oracle Database@Google Cloud API provides a set of APIs to manage
1212+
Oracle database services, such as Exadata and Autonomous Databases.
12011213
orgpolicy:
12021214
id: orgpolicy:v00.00.00000
12031215
name: orgpolicy

providers/src/googleapis.com/v00.00.00000/services/accessapproval.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ info:
77
title: Access Approval API
88
description: An API for controlling access to data by Google personnel.
99
version: v1
10-
x-discovery-doc-revision: '20240913'
11-
x-generated-date: '2024-09-19'
10+
x-discovery-doc-revision: '20241025'
11+
x-generated-date: '2024-11-06'
1212
externalDocs:
1313
url: https://cloud.google.com/assured-workloads/access-approval/docs
1414
servers:

providers/src/googleapis.com/v00.00.00000/services/accesscontextmanager.yaml

Lines changed: 72 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ info:
1717
Modifications using v1alpha should be limited to policies with
1818
non-production/non-critical service perimeters.
1919
version: v1
20-
x-discovery-doc-revision: '20240908'
21-
x-generated-date: '2024-09-19'
20+
x-discovery-doc-revision: '20241028'
21+
x-generated-date: '2024-11-06'
2222
externalDocs:
2323
url: https://cloud.google.com/access-context-manager/docs/reference/rest/
2424
servers:
@@ -1301,6 +1301,11 @@ components:
13011301
reauthSettings:
13021302
description: Optional. GCSL policy for the group key.
13031303
$ref: '#/components/schemas/ReauthSettings'
1304+
sessionSettings:
1305+
description: >-
1306+
Optional. GCSL policy for the group key. Migrated from
1307+
ReauthSettings
1308+
$ref: '#/components/schemas/SessionSettings'
13041309
restrictedClientApplications:
13051310
description: >-
13061311
Optional. A list of applications that are subject to this binding's
@@ -1373,6 +1378,62 @@ components:
13731378
set above will be disregarded and the session length is basically
13741379
infinite.
13751380
type: boolean
1381+
SessionSettings:
1382+
id: SessionSettings
1383+
description: >-
1384+
Stores settings related to Google Cloud Session Length including session
1385+
duration, the type of challenge (i.e. method) they should face when
1386+
their session expires, and other related settings.
1387+
type: object
1388+
properties:
1389+
sessionReauthMethod:
1390+
description: Optional. Session method when users GCP session is up.
1391+
type: string
1392+
enumDescriptions:
1393+
- If method undefined in API, we will use LOGIN by default.
1394+
- >-
1395+
The user will prompted to perform regular login. Users who are
1396+
enrolled for two-step verification and haven't chosen to "Remember
1397+
this computer" will be prompted for their second factor.
1398+
- >-
1399+
The user will be prompted to autheticate using their security key.
1400+
If no security key has been configured, then we will fallback to
1401+
LOGIN.
1402+
- The user will be prompted for their password.
1403+
enum:
1404+
- SESSION_REAUTH_METHOD_UNSPECIFIED
1405+
- LOGIN
1406+
- SECURITY_KEY
1407+
- PASSWORD
1408+
sessionLength:
1409+
description: >-
1410+
Optional. The session length. Setting this field to zero is equal to
1411+
disabling. Session. Also can set infinite session by flipping the
1412+
enabled bit to false below. If use_oidc_max_age is true, for OIDC
1413+
apps, the session length will be the minimum of this field and OIDC
1414+
max_age param.
1415+
type: string
1416+
format: google-duration
1417+
maxInactivity:
1418+
description: >-
1419+
Optional. How long a user is allowed to take between actions before
1420+
a new access token must be issued. Presently only set for Cloud
1421+
Apps.
1422+
type: string
1423+
format: google-duration
1424+
useOidcMaxAge:
1425+
description: >-
1426+
Optional. Only useful for OIDC apps. When false, the OIDC max_age
1427+
param, if passed in the authentication request will be ignored. When
1428+
true, the re-auth period will be the minimum of the session_length
1429+
field and the max_age OIDC param.
1430+
type: boolean
1431+
sessionLengthEnabled:
1432+
description: >-
1433+
Optional. Big red button to turn off GCSL. When false, all fields
1434+
set above will be disregarded and the session length is basically
1435+
infinite.
1436+
type: boolean
13761437
Application:
13771438
id: Application
13781439
description: An application that accesses Google Cloud APIs.
@@ -1446,6 +1507,11 @@ components:
14461507
Optional. Reauth settings applied to user access on a given
14471508
AccessScope.
14481509
$ref: '#/components/schemas/ReauthSettings'
1510+
sessionSettings:
1511+
description: >-
1512+
Optional. Session settings applied to user access on a given
1513+
AccessScope. Migrated from ReauthSettings
1514+
$ref: '#/components/schemas/SessionSettings'
14491515
SetIamPolicyRequest:
14501516
id: SetIamPolicyRequest
14511517
description: Request message for `SetIamPolicy` method.
@@ -3627,6 +3693,10 @@ paths:
36273693
schema:
36283694
type: string
36293695
format: google-fieldmask
3696+
- in: query
3697+
name: append
3698+
schema:
3699+
type: boolean
36303700
delete:
36313701
description: >-
36323702
Deletes a GcpUserAccessBinding. Completion of this long-running

0 commit comments

Comments
 (0)