Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 1e91d5a

Browse files
committedMar 7, 2023
feat(connectors): update the api
#### connectors:v1 The following keys were added: - schemas.ConfigVariableTemplate.properties.isAdvanced.type (Total Keys: 1)
1 parent 8e836b5 commit 1e91d5a

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed
 

‎docs/dyn/connectors_v1.projects.locations.providers.connectors.versions.html

+6
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,7 @@ <h3>Method Details</h3>
133133
&quot;id&quot;: &quot;A String&quot;, # Id of the option.
134134
},
135135
],
136+
&quot;isAdvanced&quot;: True or False, # Indicates if current template is part of advanced settings
136137
&quot;key&quot;: &quot;A String&quot;, # Key of the config variable.
137138
&quot;required&quot;: True or False, # Flag represents that this `ConfigVariable` must be provided for a connection.
138139
&quot;roleGrant&quot;: { # This configuration defines all the Cloud IAM roles that needs to be granted to a particular GCP resource for the selected prinicpal like service account. These configurations will let UI display to customers what IAM roles need to be granted by them. Or these configurations can be used by the UI to render a &#x27;grant&#x27; button to do the same on behalf of the user. # Role grant configuration for the config variable.
@@ -173,6 +174,7 @@ <h3>Method Details</h3>
173174
&quot;id&quot;: &quot;A String&quot;, # Id of the option.
174175
},
175176
],
177+
&quot;isAdvanced&quot;: True or False, # Indicates if current template is part of advanced settings
176178
&quot;key&quot;: &quot;A String&quot;, # Key of the config variable.
177179
&quot;required&quot;: True or False, # Flag represents that this `ConfigVariable` must be provided for a connection.
178180
&quot;roleGrant&quot;: { # This configuration defines all the Cloud IAM roles that needs to be granted to a particular GCP resource for the selected prinicpal like service account. These configurations will let UI display to customers what IAM roles need to be granted by them. Or these configurations can be used by the UI to render a &#x27;grant&#x27; button to do the same on behalf of the user. # Role grant configuration for the config variable.
@@ -256,6 +258,7 @@ <h3>Method Details</h3>
256258
&quot;id&quot;: &quot;A String&quot;, # Id of the option.
257259
},
258260
],
261+
&quot;isAdvanced&quot;: True or False, # Indicates if current template is part of advanced settings
259262
&quot;key&quot;: &quot;A String&quot;, # Key of the config variable.
260263
&quot;required&quot;: True or False, # Flag represents that this `ConfigVariable` must be provided for a connection.
261264
&quot;roleGrant&quot;: { # This configuration defines all the Cloud IAM roles that needs to be granted to a particular GCP resource for the selected prinicpal like service account. These configurations will let UI display to customers what IAM roles need to be granted by them. Or these configurations can be used by the UI to render a &#x27;grant&#x27; button to do the same on behalf of the user. # Role grant configuration for the config variable.
@@ -337,6 +340,7 @@ <h3>Method Details</h3>
337340
&quot;id&quot;: &quot;A String&quot;, # Id of the option.
338341
},
339342
],
343+
&quot;isAdvanced&quot;: True or False, # Indicates if current template is part of advanced settings
340344
&quot;key&quot;: &quot;A String&quot;, # Key of the config variable.
341345
&quot;required&quot;: True or False, # Flag represents that this `ConfigVariable` must be provided for a connection.
342346
&quot;roleGrant&quot;: { # This configuration defines all the Cloud IAM roles that needs to be granted to a particular GCP resource for the selected prinicpal like service account. These configurations will let UI display to customers what IAM roles need to be granted by them. Or these configurations can be used by the UI to render a &#x27;grant&#x27; button to do the same on behalf of the user. # Role grant configuration for the config variable.
@@ -377,6 +381,7 @@ <h3>Method Details</h3>
377381
&quot;id&quot;: &quot;A String&quot;, # Id of the option.
378382
},
379383
],
384+
&quot;isAdvanced&quot;: True or False, # Indicates if current template is part of advanced settings
380385
&quot;key&quot;: &quot;A String&quot;, # Key of the config variable.
381386
&quot;required&quot;: True or False, # Flag represents that this `ConfigVariable` must be provided for a connection.
382387
&quot;roleGrant&quot;: { # This configuration defines all the Cloud IAM roles that needs to be granted to a particular GCP resource for the selected prinicpal like service account. These configurations will let UI display to customers what IAM roles need to be granted by them. Or these configurations can be used by the UI to render a &#x27;grant&#x27; button to do the same on behalf of the user. # Role grant configuration for the config variable.
@@ -460,6 +465,7 @@ <h3>Method Details</h3>
460465
&quot;id&quot;: &quot;A String&quot;, # Id of the option.
461466
},
462467
],
468+
&quot;isAdvanced&quot;: True or False, # Indicates if current template is part of advanced settings
463469
&quot;key&quot;: &quot;A String&quot;, # Key of the config variable.
464470
&quot;required&quot;: True or False, # Flag represents that this `ConfigVariable` must be provided for a connection.
465471
&quot;roleGrant&quot;: { # This configuration defines all the Cloud IAM roles that needs to be granted to a particular GCP resource for the selected prinicpal like service account. These configurations will let UI display to customers what IAM roles need to be granted by them. Or these configurations can be used by the UI to render a &#x27;grant&#x27; button to do the same on behalf of the user. # Role grant configuration for the config variable.

‎googleapiclient/discovery_cache/documents/connectors.v1.json

+5-1
Original file line numberDiff line numberDiff line change
@@ -1079,7 +1079,7 @@
10791079
}
10801080
}
10811081
},
1082-
"revision": "20230220",
1082+
"revision": "20230222",
10831083
"rootUrl": "https://connectors.googleapis.com/",
10841084
"schemas": {
10851085
"AuditConfig": {
@@ -1327,6 +1327,10 @@
13271327
},
13281328
"type": "array"
13291329
},
1330+
"isAdvanced": {
1331+
"description": "Indicates if current template is part of advanced settings",
1332+
"type": "boolean"
1333+
},
13301334
"key": {
13311335
"description": "Key of the config variable.",
13321336
"type": "string"

‎googleapiclient/discovery_cache/documents/connectors.v2.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -478,7 +478,7 @@
478478
}
479479
}
480480
},
481-
"revision": "20230220",
481+
"revision": "20230222",
482482
"rootUrl": "https://connectors.googleapis.com/",
483483
"schemas": {
484484
"Action": {

0 commit comments

Comments
 (0)
Please sign in to comment.