Skip to content
This repository was archived by the owner on Jul 31, 2025. It is now read-only.

Commit d9ed7d6

Browse files
Release v1.44.145 (2022-11-23) (#4636)
Release v1.44.145 (2022-11-23) === ### Service Client Updates * `service/grafana`: Updates service API and documentation * `service/rbin`: Updates service API and documentation
1 parent 1356aad commit d9ed7d6

File tree

15 files changed

+4790
-112
lines changed

15 files changed

+4790
-112
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
Release v1.44.145 (2022-11-23)
2+
===
3+
4+
### Service Client Updates
5+
* `service/grafana`: Updates service API and documentation
6+
* `service/rbin`: Updates service API and documentation
7+
18
Release v1.44.144 (2022-11-22)
29
===
310

aws/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ package aws
55
const SDKName = "aws-sdk-go"
66

77
// SDKVersion is the version of this SDK
8-
const SDKVersion = "1.44.144"
8+
const SDKVersion = "1.44.145"

models/apis/grafana/2020-08-18/api-2.json

Lines changed: 126 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,22 @@
138138
{"shape":"InternalServerException"}
139139
]
140140
},
141+
"DescribeWorkspaceConfiguration":{
142+
"name":"DescribeWorkspaceConfiguration",
143+
"http":{
144+
"method":"GET",
145+
"requestUri":"/workspaces/{workspaceId}/configuration",
146+
"responseCode":200
147+
},
148+
"input":{"shape":"DescribeWorkspaceConfigurationRequest"},
149+
"output":{"shape":"DescribeWorkspaceConfigurationResponse"},
150+
"errors":[
151+
{"shape":"ResourceNotFoundException"},
152+
{"shape":"ThrottlingException"},
153+
{"shape":"AccessDeniedException"},
154+
{"shape":"InternalServerException"}
155+
]
156+
},
141157
"DisassociateLicense":{
142158
"name":"DisassociateLicense",
143159
"http":{
@@ -291,6 +307,24 @@
291307
{"shape":"AccessDeniedException"},
292308
{"shape":"InternalServerException"}
293309
]
310+
},
311+
"UpdateWorkspaceConfiguration":{
312+
"name":"UpdateWorkspaceConfiguration",
313+
"http":{
314+
"method":"PUT",
315+
"requestUri":"/workspaces/{workspaceId}/configuration",
316+
"responseCode":202
317+
},
318+
"input":{"shape":"UpdateWorkspaceConfigurationRequest"},
319+
"output":{"shape":"UpdateWorkspaceConfigurationResponse"},
320+
"errors":[
321+
{"shape":"ResourceNotFoundException"},
322+
{"shape":"ThrottlingException"},
323+
{"shape":"ConflictException"},
324+
{"shape":"ValidationException"},
325+
{"shape":"AccessDeniedException"},
326+
{"shape":"InternalServerException"}
327+
]
294328
}
295329
},
296330
"shapes":{
@@ -485,10 +519,15 @@
485519
"shape":"ClientToken",
486520
"idempotencyToken":true
487521
},
522+
"configuration":{
523+
"shape":"OverridableConfigurationJson",
524+
"jsonvalue":true
525+
},
488526
"organizationRoleName":{"shape":"OrganizationRoleName"},
489527
"permissionType":{"shape":"PermissionType"},
490528
"stackSetName":{"shape":"StackSetName"},
491529
"tags":{"shape":"TagMap"},
530+
"vpcConfiguration":{"shape":"VpcConfiguration"},
492531
"workspaceDataSources":{"shape":"DataSourceTypesList"},
493532
"workspaceDescription":{"shape":"Description"},
494533
"workspaceName":{"shape":"WorkspaceName"},
@@ -514,7 +553,8 @@
514553
"TIMESTREAM",
515554
"SITEWISE",
516555
"ATHENA",
517-
"REDSHIFT"
556+
"REDSHIFT",
557+
"TWINMAKER"
518558
]
519559
},
520560
"DataSourceTypesList":{
@@ -587,6 +627,27 @@
587627
"authentication":{"shape":"AuthenticationDescription"}
588628
}
589629
},
630+
"DescribeWorkspaceConfigurationRequest":{
631+
"type":"structure",
632+
"required":["workspaceId"],
633+
"members":{
634+
"workspaceId":{
635+
"shape":"WorkspaceId",
636+
"location":"uri",
637+
"locationName":"workspaceId"
638+
}
639+
}
640+
},
641+
"DescribeWorkspaceConfigurationResponse":{
642+
"type":"structure",
643+
"required":["configuration"],
644+
"members":{
645+
"configuration":{
646+
"shape":"OverridableConfigurationJson",
647+
"jsonvalue":true
648+
}
649+
}
650+
},
590651
"DescribeWorkspaceRequest":{
591652
"type":"structure",
592653
"required":["workspaceId"],
@@ -810,6 +871,11 @@
810871
"member":{"shape":"OrganizationalUnit"},
811872
"sensitive":true
812873
},
874+
"OverridableConfigurationJson":{
875+
"type":"string",
876+
"max":65536,
877+
"min":2
878+
},
813879
"PaginationToken":{"type":"string"},
814880
"PermissionEntry":{
815881
"type":"structure",
@@ -902,6 +968,17 @@
902968
"NOT_CONFIGURED"
903969
]
904970
},
971+
"SecurityGroupId":{
972+
"type":"string",
973+
"max":255,
974+
"min":0
975+
},
976+
"SecurityGroupIds":{
977+
"type":"list",
978+
"member":{"shape":"SecurityGroupId"},
979+
"max":100,
980+
"min":1
981+
},
905982
"ServiceQuotaExceededException":{
906983
"type":"structure",
907984
"required":[
@@ -931,6 +1008,17 @@
9311008
},
9321009
"StackSetName":{"type":"string"},
9331010
"String":{"type":"string"},
1011+
"SubnetId":{
1012+
"type":"string",
1013+
"max":255,
1014+
"min":0
1015+
},
1016+
"SubnetIds":{
1017+
"type":"list",
1018+
"member":{"shape":"SubnetId"},
1019+
"max":100,
1020+
"min":1
1021+
},
9341022
"TagKey":{
9351023
"type":"string",
9361024
"max":128,
@@ -1111,14 +1199,39 @@
11111199
"authentication":{"shape":"AuthenticationDescription"}
11121200
}
11131201
},
1202+
"UpdateWorkspaceConfigurationRequest":{
1203+
"type":"structure",
1204+
"required":[
1205+
"configuration",
1206+
"workspaceId"
1207+
],
1208+
"members":{
1209+
"configuration":{
1210+
"shape":"OverridableConfigurationJson",
1211+
"jsonvalue":true
1212+
},
1213+
"workspaceId":{
1214+
"shape":"WorkspaceId",
1215+
"location":"uri",
1216+
"locationName":"workspaceId"
1217+
}
1218+
}
1219+
},
1220+
"UpdateWorkspaceConfigurationResponse":{
1221+
"type":"structure",
1222+
"members":{
1223+
}
1224+
},
11141225
"UpdateWorkspaceRequest":{
11151226
"type":"structure",
11161227
"required":["workspaceId"],
11171228
"members":{
11181229
"accountAccessType":{"shape":"AccountAccessType"},
11191230
"organizationRoleName":{"shape":"OrganizationRoleName"},
11201231
"permissionType":{"shape":"PermissionType"},
1232+
"removeVpcConfiguration":{"shape":"Boolean"},
11211233
"stackSetName":{"shape":"StackSetName"},
1234+
"vpcConfiguration":{"shape":"VpcConfiguration"},
11221235
"workspaceDataSources":{"shape":"DataSourceTypesList"},
11231236
"workspaceDescription":{"shape":"Description"},
11241237
"workspaceId":{
@@ -1202,6 +1315,17 @@
12021315
"OTHER"
12031316
]
12041317
},
1318+
"VpcConfiguration":{
1319+
"type":"structure",
1320+
"required":[
1321+
"securityGroupIds",
1322+
"subnetIds"
1323+
],
1324+
"members":{
1325+
"securityGroupIds":{"shape":"SecurityGroupIds"},
1326+
"subnetIds":{"shape":"SubnetIds"}
1327+
}
1328+
},
12051329
"WorkspaceDescription":{
12061330
"type":"structure",
12071331
"required":[
@@ -1236,6 +1360,7 @@
12361360
"stackSetName":{"shape":"StackSetName"},
12371361
"status":{"shape":"WorkspaceStatus"},
12381362
"tags":{"shape":"TagMap"},
1363+
"vpcConfiguration":{"shape":"VpcConfiguration"},
12391364
"workspaceRoleArn":{"shape":"IamRoleArn"}
12401365
}
12411366
},

0 commit comments

Comments
 (0)