Skip to content

Commit

Permalink
feat(iap): update the api
Browse files Browse the repository at this point in the history
#### iap:v1

The following keys were added:
- schemas.AccessDeniedPageSettings.properties.generateTroubleshootingUri.type (Total Keys: 1)
  • Loading branch information
yoshi-automation committed Jun 16, 2021
1 parent 8ea0189 commit 18550fd
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
3 changes: 3 additions & 0 deletions docs/dyn/iap_v1.v1.html
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,7 @@ <h3>Method Details</h3>
&quot;applicationSettings&quot;: { # Wrapper over application specific settings for IAP. # Top level wrapper for all application related settings in IAP
&quot;accessDeniedPageSettings&quot;: { # Custom content configuration for access denied page. IAP allows customers to define a custom URI to use as the error page when access is denied to users. If IAP prevents access to this page, the default IAP error page will be displayed instead. # Customization for Access Denied page.
&quot;accessDeniedPageUri&quot;: &quot;A String&quot;, # The URI to be redirected to when access is denied.
&quot;generateTroubleshootingUri&quot;: True or False, # Whether to generate a troubleshooting URL on access denied events to this application.
},
&quot;cookieDomain&quot;: &quot;A String&quot;, # The Domain value to set for cookies generated by IAP. This value is not validated by the API, but will be ignored at runtime if invalid.
&quot;csmSettings&quot;: { # Configuration for RCTokens generated for CSM workloads protected by IAP. RCTokens are IAP generated JWTs that can be verified at the application. The RCToken is primarily used for ISTIO deployments, and can be scoped to a single mesh by configuring the audience field accordingly # Settings to configure IAP&#x27;s behavior for a CSM mesh.
Expand Down Expand Up @@ -332,6 +333,7 @@ <h3>Method Details</h3>
&quot;applicationSettings&quot;: { # Wrapper over application specific settings for IAP. # Top level wrapper for all application related settings in IAP
&quot;accessDeniedPageSettings&quot;: { # Custom content configuration for access denied page. IAP allows customers to define a custom URI to use as the error page when access is denied to users. If IAP prevents access to this page, the default IAP error page will be displayed instead. # Customization for Access Denied page.
&quot;accessDeniedPageUri&quot;: &quot;A String&quot;, # The URI to be redirected to when access is denied.
&quot;generateTroubleshootingUri&quot;: True or False, # Whether to generate a troubleshooting URL on access denied events to this application.
},
&quot;cookieDomain&quot;: &quot;A String&quot;, # The Domain value to set for cookies generated by IAP. This value is not validated by the API, but will be ignored at runtime if invalid.
&quot;csmSettings&quot;: { # Configuration for RCTokens generated for CSM workloads protected by IAP. RCTokens are IAP generated JWTs that can be verified at the application. The RCToken is primarily used for ISTIO deployments, and can be scoped to a single mesh by configuring the audience field accordingly # Settings to configure IAP&#x27;s behavior for a CSM mesh.
Expand Down Expand Up @@ -385,6 +387,7 @@ <h3>Method Details</h3>
&quot;applicationSettings&quot;: { # Wrapper over application specific settings for IAP. # Top level wrapper for all application related settings in IAP
&quot;accessDeniedPageSettings&quot;: { # Custom content configuration for access denied page. IAP allows customers to define a custom URI to use as the error page when access is denied to users. If IAP prevents access to this page, the default IAP error page will be displayed instead. # Customization for Access Denied page.
&quot;accessDeniedPageUri&quot;: &quot;A String&quot;, # The URI to be redirected to when access is denied.
&quot;generateTroubleshootingUri&quot;: True or False, # Whether to generate a troubleshooting URL on access denied events to this application.
},
&quot;cookieDomain&quot;: &quot;A String&quot;, # The Domain value to set for cookies generated by IAP. This value is not validated by the API, but will be ignored at runtime if invalid.
&quot;csmSettings&quot;: { # Configuration for RCTokens generated for CSM workloads protected by IAP. RCTokens are IAP generated JWTs that can be verified at the application. The RCToken is primarily used for ISTIO deployments, and can be scoped to a single mesh by configuring the audience field accordingly # Settings to configure IAP&#x27;s behavior for a CSM mesh.
Expand Down
6 changes: 5 additions & 1 deletion googleapiclient/discovery_cache/documents/iap.v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -487,7 +487,7 @@
}
}
},
"revision": "20210513",
"revision": "20210611",
"rootUrl": "https://iap.googleapis.com/",
"schemas": {
"AccessDeniedPageSettings": {
Expand All @@ -497,6 +497,10 @@
"accessDeniedPageUri": {
"description": "The URI to be redirected to when access is denied.",
"type": "string"
},
"generateTroubleshootingUri": {
"description": "Whether to generate a troubleshooting URL on access denied events to this application.",
"type": "boolean"
}
},
"type": "object"
Expand Down
2 changes: 1 addition & 1 deletion googleapiclient/discovery_cache/documents/iap.v1beta1.json
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@
}
}
},
"revision": "20210513",
"revision": "20210611",
"rootUrl": "https://iap.googleapis.com/",
"schemas": {
"Binding": {
Expand Down

0 comments on commit 18550fd

Please sign in to comment.