File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11export default {
2+ securityGroup : 'securityGroups' ,
23 subnet : 'subnets' ,
34 vpc : 'vpcInstances' ,
45}
Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ type tencentTag implements tencentBaseService @key(fields: "id") {
33 value : String ! @search (by : [hash , regexp ])
44 subnets : [tencentSubnet ]
55 vpcInstances : [tencentVpc ]
6+ securityGroups : [tencentSecurityGroup ]
67}
78
89type tencentRawTag
Original file line number Diff line number Diff line change @@ -60,6 +60,7 @@ export type TencentSubnet = TencentBaseService & {
6060
6161export type TencentTag = TencentBaseService & {
6262 key : Scalars [ 'String' ] ;
63+ securityGroups ?: Maybe < Array < Maybe < TencentSecurityGroup > > > ;
6364 subnets ?: Maybe < Array < Maybe < TencentSubnet > > > ;
6465 value : Scalars [ 'String' ] ;
6566 vpcInstances ?: Maybe < Array < Maybe < TencentVpc > > > ;
You can’t perform that action at this time.
0 commit comments