File tree Expand file tree Collapse file tree 2 files changed +43
-2
lines changed Expand file tree Collapse file tree 2 files changed +43
-2
lines changed Original file line number Diff line number Diff line change 2752
2752
}
2753
2753
}
2754
2754
},
2755
- "revision" : " 20250604 " ,
2755
+ "revision" : " 20250703 " ,
2756
2756
"rootUrl" : " https://connectors.googleapis.com/" ,
2757
2757
"schemas" : {
2758
2758
"AuditConfig" : {
4001
4001
"format" : " google-datetime" ,
4002
4002
"readOnly" : true ,
4003
4003
"type" : " string"
4004
+ },
4005
+ "vpcscConfig" : {
4006
+ "$ref" : " VpcscConfig" ,
4007
+ "description" : " Output only. VPCSC config for the connector." ,
4008
+ "readOnly" : true
4004
4009
}
4005
4010
},
4006
4011
"type" : " object"
8891
8896
},
8892
8897
"type" : " object"
8893
8898
},
8899
+ "VpcscConfig" : {
8900
+ "description" : " This configuration provides VPCSC config for a connector." ,
8901
+ "id" : " VpcscConfig" ,
8902
+ "properties" : {
8903
+ "defaultAllowlistedHost" : {
8904
+ "description" : " The list of allowlisted FQDNs for VPCSC." ,
8905
+ "items" : {
8906
+ "type" : " string"
8907
+ },
8908
+ "type" : " array"
8909
+ },
8910
+ "disableFirewallVpcscFlow" : {
8911
+ "description" : " Whether to disable firewall VPCSC flow." ,
8912
+ "type" : " boolean"
8913
+ }
8914
+ },
8915
+ "type" : " object"
8916
+ },
8894
8917
"WebhookData" : {
8895
8918
"description" : " WebhookData has details of webhook configuration." ,
8896
8919
"id" : " WebhookData" ,
Original file line number Diff line number Diff line change @@ -907,6 +907,10 @@ export namespace connectors_v1 {
907
907
* Output only. Updated time.
908
908
*/
909
909
updateTime?: string | null;
910
+ /**
911
+ * Output only. VPCSC config for the connector.
912
+ */
913
+ vpcscConfig?: Schema$VpcscConfig;
910
914
}
911
915
/**
912
916
* This configuration provides infra configs like rate limit threshold which need to be configurable for every connector version
@@ -3876,6 +3880,19 @@ export namespace connectors_v1 {
3876
3880
*/
3877
3881
errorMessage?: string | null;
3878
3882
}
3883
+ /**
3884
+ * This configuration provides VPCSC config for a connector.
3885
+ */
3886
+ export interface Schema$VpcscConfig {
3887
+ /**
3888
+ * The list of allowlisted FQDNs for VPCSC.
3889
+ */
3890
+ defaultAllowlistedHost?: string[] | null;
3891
+ /**
3892
+ * Whether to disable firewall VPCSC flow.
3893
+ */
3894
+ disableFirewallVpcscFlow?: boolean | null;
3895
+ }
3879
3896
/**
3880
3897
* WebhookData has details of webhook configuration.
3881
3898
*/
@@ -16056,7 +16073,8 @@ export namespace connectors_v1 {
16056
16073
* // "supportedStandardActions": [],
16057
16074
* // "supportedStandardEntities": [],
16058
16075
* // "unsupportedConnectionTypes": [],
16059
- * // "updateTime": "my_updateTime"
16076
+ * // "updateTime": "my_updateTime",
16077
+ * // "vpcscConfig": {}
16060
16078
* // }
16061
16079
* }
16062
16080
*
You can’t perform that action at this time.
0 commit comments