@aws-sdk/client-grafana 3.687.0 → 3.692.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -113,7 +113,7 @@ export declare class InternalServerException extends __BaseException {
113
113
  * <p>How long to wait before you retry this operation.</p>
114
114
  * @public
115
115
  */
116
- retryAfterSeconds?: number;
116
+ retryAfterSeconds?: number | undefined;
117
117
  /**
118
118
  * @internal
119
119
  */
@@ -185,17 +185,17 @@ export declare class ThrottlingException extends __BaseException {
185
185
  * <p>The ID of the service that is associated with the error.</p>
186
186
  * @public
187
187
  */
188
- serviceCode?: string;
188
+ serviceCode?: string | undefined;
189
189
  /**
190
190
  * <p>The ID of the service quota that was exceeded.</p>
191
191
  * @public
192
192
  */
193
- quotaCode?: string;
193
+ quotaCode?: string | undefined;
194
194
  /**
195
195
  * <p>The value of a parameter in the request caused an error.</p>
196
196
  * @public
197
197
  */
198
- retryAfterSeconds?: number;
198
+ retryAfterSeconds?: number | undefined;
199
199
  /**
200
200
  * @internal
201
201
  */
@@ -248,7 +248,7 @@ export declare class ValidationException extends __BaseException {
248
248
  * <p>A list of fields that might be associated with the error.</p>
249
249
  * @public
250
250
  */
251
- fieldList?: ValidationExceptionField[];
251
+ fieldList?: ValidationExceptionField[] | undefined;
252
252
  /**
253
253
  * @internal
254
254
  */
@@ -295,36 +295,36 @@ export interface AssertionAttributes {
295
295
  * names for SAML users.</p>
296
296
  * @public
297
297
  */
298
- name?: string;
298
+ name?: string | undefined;
299
299
  /**
300
300
  * <p>The name of the attribute within the SAML assertion to use as the login names for SAML
301
301
  * users.</p>
302
302
  * @public
303
303
  */
304
- login?: string;
304
+ login?: string | undefined;
305
305
  /**
306
306
  * <p>The name of the attribute within the SAML assertion to use as the email names for SAML
307
307
  * users.</p>
308
308
  * @public
309
309
  */
310
- email?: string;
310
+ email?: string | undefined;
311
311
  /**
312
312
  * <p>The name of the attribute within the SAML assertion to use as the user full "friendly"
313
313
  * names for user groups.</p>
314
314
  * @public
315
315
  */
316
- groups?: string;
316
+ groups?: string | undefined;
317
317
  /**
318
318
  * <p>The name of the attribute within the SAML assertion to use as the user roles.</p>
319
319
  * @public
320
320
  */
321
- role?: string;
321
+ role?: string | undefined;
322
322
  /**
323
323
  * <p>The name of the attribute within the SAML assertion to use as the user full "friendly"
324
324
  * names for the users' organizations.</p>
325
325
  * @public
326
326
  */
327
- org?: string;
327
+ org?: string | undefined;
328
328
  }
329
329
  /**
330
330
  * @public
@@ -366,7 +366,7 @@ export interface AssociateLicenseRequest {
366
366
  * Labs account. For more information, see <a href="https://docs.aws.amazon.com/grafana/latest/userguide/upgrade-to-Grafana-Enterprise.html#AMG-workspace-register-enterprise">Link your account with Grafana Labs</a>.</p>
367
367
  * @public
368
368
  */
369
- grafanaToken?: string;
369
+ grafanaToken?: string | undefined;
370
370
  }
371
371
  /**
372
372
  * @public
@@ -422,7 +422,7 @@ export interface AuthenticationSummary {
422
422
  * configured.</p>
423
423
  * @public
424
424
  */
425
- samlConfigurationStatus?: SamlConfigurationStatus;
425
+ samlConfigurationStatus?: SamlConfigurationStatus | undefined;
426
426
  }
427
427
  /**
428
428
  * @public
@@ -658,7 +658,7 @@ export interface WorkspaceDescription {
658
658
  * specifies which organizational units the workspace can access.</p>
659
659
  * @public
660
660
  */
661
- accountAccessType?: AccountAccessType;
661
+ accountAccessType?: AccountAccessType | undefined;
662
662
  /**
663
663
  * <p>The date that the workspace was created.</p>
664
664
  * @public
@@ -677,7 +677,7 @@ export interface WorkspaceDescription {
677
677
  * <p>The user-defined description of the workspace.</p>
678
678
  * @public
679
679
  */
680
- description?: string;
680
+ description?: string | undefined;
681
681
  /**
682
682
  * <p>The URL that users can use to access the Grafana console in the workspace.</p>
683
683
  * @public
@@ -702,26 +702,26 @@ export interface WorkspaceDescription {
702
702
  * <p>The name of the workspace.</p>
703
703
  * @public
704
704
  */
705
- name?: string;
705
+ name?: string | undefined;
706
706
  /**
707
707
  * <p>The name of the IAM role that is used to access resources through
708
708
  * Organizations.</p>
709
709
  * @public
710
710
  */
711
- organizationRoleName?: string;
711
+ organizationRoleName?: string | undefined;
712
712
  /**
713
713
  * <p>The Amazon Web Services notification channels that Amazon Managed Grafana can automatically
714
714
  * create IAM roles and permissions for, to allow Amazon Managed Grafana to use
715
715
  * these channels.</p>
716
716
  * @public
717
717
  */
718
- notificationDestinations?: NotificationDestinationType[];
718
+ notificationDestinations?: NotificationDestinationType[] | undefined;
719
719
  /**
720
720
  * <p>Specifies the organizational units that this workspace is allowed to use data sources
721
721
  * from, if this workspace is in an account that is part of an organization.</p>
722
722
  * @public
723
723
  */
724
- organizationalUnits?: string[];
724
+ organizationalUnits?: string[] | undefined;
725
725
  /**
726
726
  * <p>If this is <code>SERVICE_MANAGED</code>, and the workplace was created through the
727
727
  * Amazon Managed Grafana console, then Amazon Managed Grafana automatically creates the
@@ -742,12 +742,12 @@ export interface WorkspaceDescription {
742
742
  * </p>
743
743
  * @public
744
744
  */
745
- permissionType?: PermissionType;
745
+ permissionType?: PermissionType | undefined;
746
746
  /**
747
747
  * <p>The name of the CloudFormation stack set that is used to generate IAM roles to be used for this workspace.</p>
748
748
  * @public
749
749
  */
750
- stackSetName?: string;
750
+ stackSetName?: string | undefined;
751
751
  /**
752
752
  * <p>The current status of the workspace.</p>
753
753
  * @public
@@ -758,7 +758,7 @@ export interface WorkspaceDescription {
758
758
  * resources that the workspace will view data from. This role must already exist.</p>
759
759
  * @public
760
760
  */
761
- workspaceRoleArn?: string;
761
+ workspaceRoleArn?: string | undefined;
762
762
  /**
763
763
  * <p>Specifies whether this workspace has a full Grafana Enterprise license.</p>
764
764
  * <note>
@@ -766,7 +766,7 @@ export interface WorkspaceDescription {
766
766
  * </note>
767
767
  * @public
768
768
  */
769
- licenseType?: LicenseType;
769
+ licenseType?: LicenseType | undefined;
770
770
  /**
771
771
  * <p>Specifies whether this workspace has already fully used its free trial for Grafana
772
772
  * Enterprise.</p>
@@ -775,7 +775,7 @@ export interface WorkspaceDescription {
775
775
  * </note>
776
776
  * @public
777
777
  */
778
- freeTrialConsumed?: boolean;
778
+ freeTrialConsumed?: boolean | undefined;
779
779
  /**
780
780
  * <p>If this workspace has a full Grafana Enterprise license purchased through
781
781
  * Amazon Web Services Marketplace, this specifies when the
@@ -784,7 +784,7 @@ export interface WorkspaceDescription {
784
784
  * license is removed.</p>
785
785
  * @public
786
786
  */
787
- licenseExpiration?: Date;
787
+ licenseExpiration?: Date | undefined;
788
788
  /**
789
789
  * <p>If this workspace is currently in the free trial period for Grafana Enterprise, this
790
790
  * value specifies when that free trial ends.</p>
@@ -793,7 +793,7 @@ export interface WorkspaceDescription {
793
793
  * </note>
794
794
  * @public
795
795
  */
796
- freeTrialExpiration?: Date;
796
+ freeTrialExpiration?: Date | undefined;
797
797
  /**
798
798
  * <p>A structure that describes whether the workspace uses SAML, IAM Identity Center, or
799
799
  * both methods for user authentication.</p>
@@ -804,23 +804,23 @@ export interface WorkspaceDescription {
804
804
  * <p>The list of tags associated with the workspace.</p>
805
805
  * @public
806
806
  */
807
- tags?: Record<string, string>;
807
+ tags?: Record<string, string> | undefined;
808
808
  /**
809
809
  * <p>The configuration for connecting to data sources in a private VPC (Amazon Virtual Private Cloud).</p>
810
810
  * @public
811
811
  */
812
- vpcConfiguration?: VpcConfiguration;
812
+ vpcConfiguration?: VpcConfiguration | undefined;
813
813
  /**
814
814
  * <p>The configuration settings for network access to your workspace.</p>
815
815
  * @public
816
816
  */
817
- networkAccessControl?: NetworkAccessConfiguration;
817
+ networkAccessControl?: NetworkAccessConfiguration | undefined;
818
818
  /**
819
819
  * <p>The token that ties this workspace to a Grafana Labs account. For more information,
820
820
  * see <a href="https://docs.aws.amazon.com/grafana/latest/userguide/upgrade-to-Grafana-Enterprise.html#AMG-workspace-register-enterprise">Link your account with Grafana Labs</a>.</p>
821
821
  * @public
822
822
  */
823
- grafanaToken?: string;
823
+ grafanaToken?: string | undefined;
824
824
  }
825
825
  /**
826
826
  * @public
@@ -851,7 +851,7 @@ export interface AwsSsoAuthentication {
851
851
  * <p>The ID of the IAM Identity Center-managed application that is created by Amazon Managed Grafana.</p>
852
852
  * @public
853
853
  */
854
- ssoClientId?: string;
854
+ ssoClientId?: string | undefined;
855
855
  }
856
856
  /**
857
857
  * <p>A structure containing the identity provider (IdP) metadata used to integrate the
@@ -912,13 +912,13 @@ export interface RoleValues {
912
912
  * <code>Editor</code> role to.</p>
913
913
  * @public
914
914
  */
915
- editor?: string[];
915
+ editor?: string[] | undefined;
916
916
  /**
917
917
  * <p>A list of groups from the SAML assertion attribute to grant the Grafana
918
918
  * <code>Admin</code> role to.</p>
919
919
  * @public
920
920
  */
921
- admin?: string[];
921
+ admin?: string[] | undefined;
922
922
  }
923
923
  /**
924
924
  * <p>A structure containing information about how this workspace works with SAML. </p>
@@ -937,25 +937,25 @@ export interface SamlConfiguration {
937
937
  * workspace.</p>
938
938
  * @public
939
939
  */
940
- assertionAttributes?: AssertionAttributes;
940
+ assertionAttributes?: AssertionAttributes | undefined;
941
941
  /**
942
942
  * <p>A structure containing arrays that map group names in the SAML assertion to the
943
943
  * Grafana <code>Admin</code> and <code>Editor</code> roles in the workspace.</p>
944
944
  * @public
945
945
  */
946
- roleValues?: RoleValues;
946
+ roleValues?: RoleValues | undefined;
947
947
  /**
948
948
  * <p>Lists which organizations defined in the SAML assertion are allowed to use the Amazon Managed Grafana workspace. If this is empty, all organizations in the assertion attribute
949
949
  * have access.</p>
950
950
  * @public
951
951
  */
952
- allowedOrganizations?: string[];
952
+ allowedOrganizations?: string[] | undefined;
953
953
  /**
954
954
  * <p>How long a sign-on session by a SAML user is valid, before the user has to sign on
955
955
  * again.</p>
956
956
  * @public
957
957
  */
958
- loginValidityDuration?: number;
958
+ loginValidityDuration?: number | undefined;
959
959
  }
960
960
  /**
961
961
  * <p>A structure containing information about how this workspace works with SAML. </p>
@@ -971,7 +971,7 @@ export interface SamlAuthentication {
971
971
  * <p>A structure containing details about how this workspace works with SAML. </p>
972
972
  * @public
973
973
  */
974
- configuration?: SamlConfiguration;
974
+ configuration?: SamlConfiguration | undefined;
975
975
  }
976
976
  /**
977
977
  * <p>A structure containing information about the user authentication methods used by the
@@ -992,12 +992,12 @@ export interface AuthenticationDescription {
992
992
  * workspace. </p>
993
993
  * @public
994
994
  */
995
- saml?: SamlAuthentication;
995
+ saml?: SamlAuthentication | undefined;
996
996
  /**
997
997
  * <p>A structure containing information about how this workspace works with IAM Identity Center. </p>
998
998
  * @public
999
999
  */
1000
- awsSso?: AwsSsoAuthentication;
1000
+ awsSso?: AwsSsoAuthentication | undefined;
1001
1001
  }
1002
1002
  /**
1003
1003
  * @public
@@ -1033,7 +1033,7 @@ export interface UpdateWorkspaceAuthenticationRequest {
1033
1033
  * have the <code>Admin</code> and <code>Editor</code> roles in the workspace.</p>
1034
1034
  * @public
1035
1035
  */
1036
- samlConfiguration?: SamlConfiguration;
1036
+ samlConfiguration?: SamlConfiguration | undefined;
1037
1037
  }
1038
1038
  /**
1039
1039
  * @public
@@ -1071,7 +1071,7 @@ export interface DescribeWorkspaceConfigurationResponse {
1071
1071
  * <p>The supported Grafana version for the workspace.</p>
1072
1072
  * @public
1073
1073
  */
1074
- grafanaVersion?: string;
1074
+ grafanaVersion?: string | undefined;
1075
1075
  }
1076
1076
  /**
1077
1077
  * @public
@@ -1098,7 +1098,7 @@ export interface UpdateWorkspaceConfigurationRequest {
1098
1098
  * the <a href="https://docs.aws.amazon.com/grafana/latest/APIReference/API_ListVersions.html">ListVersions</a> operation.</p>
1099
1099
  * @public
1100
1100
  */
1101
- grafanaVersion?: string;
1101
+ grafanaVersion?: string | undefined;
1102
1102
  }
1103
1103
  /**
1104
1104
  * @public
@@ -1148,7 +1148,7 @@ export interface ListTagsForResourceResponse {
1148
1148
  * <p>The list of tags that are associated with the resource.</p>
1149
1149
  * @public
1150
1150
  */
1151
- tags?: Record<string, string>;
1151
+ tags?: Record<string, string> | undefined;
1152
1152
  }
1153
1153
  /**
1154
1154
  * @public
@@ -1158,20 +1158,20 @@ export interface ListVersionsRequest {
1158
1158
  * <p>The maximum number of results to include in the response.</p>
1159
1159
  * @public
1160
1160
  */
1161
- maxResults?: number;
1161
+ maxResults?: number | undefined;
1162
1162
  /**
1163
1163
  * <p>The token to use when requesting the next set of results. You receive this token from
1164
1164
  * a previous <code>ListVersions</code> operation.</p>
1165
1165
  * @public
1166
1166
  */
1167
- nextToken?: string;
1167
+ nextToken?: string | undefined;
1168
1168
  /**
1169
1169
  * <p>The ID of the workspace to list the available upgrade versions. If not included,
1170
1170
  * lists all versions of Grafana that are supported for
1171
1171
  * <code>CreateWorkspace</code>.</p>
1172
1172
  * @public
1173
1173
  */
1174
- workspaceId?: string;
1174
+ workspaceId?: string | undefined;
1175
1175
  }
1176
1176
  /**
1177
1177
  * @public
@@ -1182,13 +1182,13 @@ export interface ListVersionsResponse {
1182
1182
  * next set of results.</p>
1183
1183
  * @public
1184
1184
  */
1185
- nextToken?: string;
1185
+ nextToken?: string | undefined;
1186
1186
  /**
1187
1187
  * <p>The Grafana versions available to create. If a workspace ID is included in the
1188
1188
  * request, the Grafana versions to which this workspace can be upgraded.</p>
1189
1189
  * @public
1190
1190
  */
1191
- grafanaVersions?: string[];
1191
+ grafanaVersions?: string[] | undefined;
1192
1192
  }
1193
1193
  /**
1194
1194
  * @public
@@ -1216,29 +1216,29 @@ export interface ListPermissionsRequest {
1216
1216
  * <p>The maximum number of results to include in the response.</p>
1217
1217
  * @public
1218
1218
  */
1219
- maxResults?: number;
1219
+ maxResults?: number | undefined;
1220
1220
  /**
1221
1221
  * <p>The token to use when requesting the next set of results. You received this token from
1222
1222
  * a previous <code>ListPermissions</code> operation.</p>
1223
1223
  * @public
1224
1224
  */
1225
- nextToken?: string;
1225
+ nextToken?: string | undefined;
1226
1226
  /**
1227
1227
  * <p>(Optional) If you specify <code>SSO_USER</code>, then only the permissions of IAM Identity Center users are returned. If you specify <code>SSO_GROUP</code>, only the
1228
1228
  * permissions of IAM Identity Center groups are returned.</p>
1229
1229
  * @public
1230
1230
  */
1231
- userType?: UserType;
1231
+ userType?: UserType | undefined;
1232
1232
  /**
1233
1233
  * <p>(Optional) Limits the results to only the user that matches this ID.</p>
1234
1234
  * @public
1235
1235
  */
1236
- userId?: string;
1236
+ userId?: string | undefined;
1237
1237
  /**
1238
1238
  * <p>(Optional) Limits the results to only the group that matches this ID.</p>
1239
1239
  * @public
1240
1240
  */
1241
- groupId?: string;
1241
+ groupId?: string | undefined;
1242
1242
  /**
1243
1243
  * <p>The ID of the workspace to list permissions for. This parameter is required.</p>
1244
1244
  * @public
@@ -1313,7 +1313,7 @@ export interface ListPermissionsResponse {
1313
1313
  * next set of results.</p>
1314
1314
  * @public
1315
1315
  */
1316
- nextToken?: string;
1316
+ nextToken?: string | undefined;
1317
1317
  /**
1318
1318
  * <p>The permissions returned by the operation.</p>
1319
1319
  * @public
@@ -1495,13 +1495,13 @@ export interface ListWorkspaceServiceAccountsRequest {
1495
1495
  * <p>The maximum number of service accounts to include in the results.</p>
1496
1496
  * @public
1497
1497
  */
1498
- maxResults?: number;
1498
+ maxResults?: number | undefined;
1499
1499
  /**
1500
1500
  * <p>The token for the next set of service accounts to return. (You receive this token
1501
1501
  * from a previous <code>ListWorkspaceServiceAccounts</code> operation.)</p>
1502
1502
  * @public
1503
1503
  */
1504
- nextToken?: string;
1504
+ nextToken?: string | undefined;
1505
1505
  /**
1506
1506
  * <p>The workspace for which to list service accounts.</p>
1507
1507
  * @public
@@ -1544,7 +1544,7 @@ export interface ListWorkspaceServiceAccountsResponse {
1544
1544
  * <p>The token to use when requesting the next set of service accounts.</p>
1545
1545
  * @public
1546
1546
  */
1547
- nextToken?: string;
1547
+ nextToken?: string | undefined;
1548
1548
  /**
1549
1549
  * <p>An array of structures containing information about the service accounts.</p>
1550
1550
  * @public
@@ -1677,13 +1677,13 @@ export interface ListWorkspaceServiceAccountTokensRequest {
1677
1677
  * <p>The maximum number of tokens to include in the results.</p>
1678
1678
  * @public
1679
1679
  */
1680
- maxResults?: number;
1680
+ maxResults?: number | undefined;
1681
1681
  /**
1682
1682
  * <p>The token for the next set of service accounts to return. (You receive this token
1683
1683
  * from a previous <code>ListWorkspaceServiceAccountTokens</code> operation.)</p>
1684
1684
  * @public
1685
1685
  */
1686
- nextToken?: string;
1686
+ nextToken?: string | undefined;
1687
1687
  /**
1688
1688
  * <p>The ID of the service account for which to return tokens.</p>
1689
1689
  * @public
@@ -1724,7 +1724,7 @@ export interface ServiceAccountTokenSummary {
1724
1724
  * <p>The last time the token was used to authorize a Grafana HTTP API.</p>
1725
1725
  * @public
1726
1726
  */
1727
- lastUsedAt?: Date;
1727
+ lastUsedAt?: Date | undefined;
1728
1728
  }
1729
1729
  /**
1730
1730
  * @public
@@ -1734,7 +1734,7 @@ export interface ListWorkspaceServiceAccountTokensResponse {
1734
1734
  * <p>The token to use when requesting the next set of service accounts.</p>
1735
1735
  * @public
1736
1736
  */
1737
- nextToken?: string;
1737
+ nextToken?: string | undefined;
1738
1738
  /**
1739
1739
  * <p>An array of structures containing information about the tokens.</p>
1740
1740
  * @public
@@ -1810,13 +1810,13 @@ export interface CreateWorkspaceRequest {
1810
1810
  * request.</p>
1811
1811
  * @public
1812
1812
  */
1813
- clientToken?: string;
1813
+ clientToken?: string | undefined;
1814
1814
  /**
1815
1815
  * <p>The name of an IAM role that already exists to use with Organizations to access Amazon Web Services data sources and notification channels in other accounts
1816
1816
  * in an organization.</p>
1817
1817
  * @public
1818
1818
  */
1819
- organizationRoleName?: string;
1819
+ organizationRoleName?: string | undefined;
1820
1820
  /**
1821
1821
  * <p>When creating a workspace through the Amazon Web Services API, CLI or Amazon Web Services CloudFormation, you must manage IAM roles and provision the
1822
1822
  * permissions that the workspace needs to use Amazon Web Services data sources and
@@ -1842,12 +1842,12 @@ export interface CreateWorkspaceRequest {
1842
1842
  * roles to be used for this workspace.</p>
1843
1843
  * @public
1844
1844
  */
1845
- stackSetName?: string;
1845
+ stackSetName?: string | undefined;
1846
1846
  /**
1847
1847
  * <p>This parameter is for internal use only, and should not be used.</p>
1848
1848
  * @public
1849
1849
  */
1850
- workspaceDataSources?: DataSourceType[];
1850
+ workspaceDataSources?: DataSourceType[] | undefined;
1851
1851
  /**
1852
1852
  * <p>A description for the workspace. This is used only to help you identify this
1853
1853
  * workspace.</p>
@@ -1855,12 +1855,12 @@ export interface CreateWorkspaceRequest {
1855
1855
  * </p>
1856
1856
  * @public
1857
1857
  */
1858
- workspaceDescription?: string;
1858
+ workspaceDescription?: string | undefined;
1859
1859
  /**
1860
1860
  * <p>The name for the workspace. It does not have to be unique.</p>
1861
1861
  * @public
1862
1862
  */
1863
- workspaceName?: string;
1863
+ workspaceName?: string | undefined;
1864
1864
  /**
1865
1865
  * <p>Specify the Amazon Web Services notification channels that you plan to use in this
1866
1866
  * workspace. Specifying these data sources here enables Amazon Managed Grafana to create
@@ -1868,20 +1868,20 @@ export interface CreateWorkspaceRequest {
1868
1868
  * channels.</p>
1869
1869
  * @public
1870
1870
  */
1871
- workspaceNotificationDestinations?: NotificationDestinationType[];
1871
+ workspaceNotificationDestinations?: NotificationDestinationType[] | undefined;
1872
1872
  /**
1873
1873
  * <p>Specifies the organizational units that this workspace is allowed to use data sources
1874
1874
  * from, if this workspace is in an account that is part of an organization.</p>
1875
1875
  * @public
1876
1876
  */
1877
- workspaceOrganizationalUnits?: string[];
1877
+ workspaceOrganizationalUnits?: string[] | undefined;
1878
1878
  /**
1879
1879
  * <p>Specified the IAM role that grants permissions to the Amazon Web Services resources that the workspace will view data from, including both data
1880
1880
  * sources and notification channels. You are responsible for managing the permissions
1881
1881
  * for this role as new data sources or notification channels are added. </p>
1882
1882
  * @public
1883
1883
  */
1884
- workspaceRoleArn?: string;
1884
+ workspaceRoleArn?: string | undefined;
1885
1885
  /**
1886
1886
  * <p>Specifies whether this workspace uses SAML 2.0, IAM Identity Center, or both to
1887
1887
  * authenticate users for using the Grafana console within a workspace. For more
@@ -1894,7 +1894,7 @@ export interface CreateWorkspaceRequest {
1894
1894
  * <p>The list of tags associated with the workspace.</p>
1895
1895
  * @public
1896
1896
  */
1897
- tags?: Record<string, string>;
1897
+ tags?: Record<string, string> | undefined;
1898
1898
  /**
1899
1899
  * <p>The configuration settings for an Amazon VPC that contains data sources for
1900
1900
  * your Grafana workspace to connect to.</p>
@@ -1904,14 +1904,14 @@ export interface CreateWorkspaceRequest {
1904
1904
  * </note>
1905
1905
  * @public
1906
1906
  */
1907
- vpcConfiguration?: VpcConfiguration;
1907
+ vpcConfiguration?: VpcConfiguration | undefined;
1908
1908
  /**
1909
1909
  * <p>The configuration string for the workspace that you create. For more information about
1910
1910
  * the format and configuration options available, see <a href="https://docs.aws.amazon.com/grafana/latest/userguide/AMG-configure-workspace.html">Working in your Grafana
1911
1911
  * workspace</a>.</p>
1912
1912
  * @public
1913
1913
  */
1914
- configuration?: __LazyJsonString | string;
1914
+ configuration?: __LazyJsonString | string | undefined;
1915
1915
  /**
1916
1916
  * <p>Configuration for network access to your workspace.</p>
1917
1917
  * <p>When this is configured, only listed IP addresses and VPC endpoints will be able to
@@ -1922,7 +1922,7 @@ export interface CreateWorkspaceRequest {
1922
1922
  * required.</p>
1923
1923
  * @public
1924
1924
  */
1925
- networkAccessControl?: NetworkAccessConfiguration;
1925
+ networkAccessControl?: NetworkAccessConfiguration | undefined;
1926
1926
  /**
1927
1927
  * <p>Specifies the version of Grafana to support in the new workspace. If not specified,
1928
1928
  * defaults to the latest version (for example, 10.4).</p>
@@ -1930,7 +1930,7 @@ export interface CreateWorkspaceRequest {
1930
1930
  * operation.</p>
1931
1931
  * @public
1932
1932
  */
1933
- grafanaVersion?: string;
1933
+ grafanaVersion?: string | undefined;
1934
1934
  }
1935
1935
  /**
1936
1936
  * @public
@@ -1990,13 +1990,13 @@ export interface ListWorkspacesRequest {
1990
1990
  * <p>The maximum number of workspaces to include in the results.</p>
1991
1991
  * @public
1992
1992
  */
1993
- maxResults?: number;
1993
+ maxResults?: number | undefined;
1994
1994
  /**
1995
1995
  * <p>The token for the next set of workspaces to return. (You receive this token from a
1996
1996
  * previous <code>ListWorkspaces</code> operation.)</p>
1997
1997
  * @public
1998
1998
  */
1999
- nextToken?: string;
1999
+ nextToken?: string | undefined;
2000
2000
  }
2001
2001
  /**
2002
2002
  * <p>A structure that contains some information about one workspace in the account.</p>
@@ -2012,7 +2012,7 @@ export interface WorkspaceSummary {
2012
2012
  * <p>The customer-entered description of the workspace.</p>
2013
2013
  * @public
2014
2014
  */
2015
- description?: string;
2015
+ description?: string | undefined;
2016
2016
  /**
2017
2017
  * <p>The URL endpoint to use to access the Grafana console in the workspace.</p>
2018
2018
  * @public
@@ -2037,14 +2037,14 @@ export interface WorkspaceSummary {
2037
2037
  * <p>The name of the workspace.</p>
2038
2038
  * @public
2039
2039
  */
2040
- name?: string;
2040
+ name?: string | undefined;
2041
2041
  /**
2042
2042
  * <p>The Amazon Web Services notification channels that Amazon Managed Grafana can automatically
2043
2043
  * create IAM roles and permissions for, which allows Amazon Managed Grafana to
2044
2044
  * use these channels.</p>
2045
2045
  * @public
2046
2046
  */
2047
- notificationDestinations?: NotificationDestinationType[];
2047
+ notificationDestinations?: NotificationDestinationType[] | undefined;
2048
2048
  /**
2049
2049
  * <p>The current status of the workspace.</p>
2050
2050
  * @public
@@ -2060,7 +2060,7 @@ export interface WorkspaceSummary {
2060
2060
  * <p>The list of tags associated with the workspace.</p>
2061
2061
  * @public
2062
2062
  */
2063
- tags?: Record<string, string>;
2063
+ tags?: Record<string, string> | undefined;
2064
2064
  /**
2065
2065
  * <p>Specifies whether this workspace has a full Grafana Enterprise license.</p>
2066
2066
  * <note>
@@ -2068,13 +2068,13 @@ export interface WorkspaceSummary {
2068
2068
  * </note>
2069
2069
  * @public
2070
2070
  */
2071
- licenseType?: LicenseType;
2071
+ licenseType?: LicenseType | undefined;
2072
2072
  /**
2073
2073
  * <p>The token that ties this workspace to a Grafana Labs account. For more information,
2074
2074
  * see <a href="https://docs.aws.amazon.com/grafana/latest/userguide/upgrade-to-Grafana-Enterprise.html#AMG-workspace-register-enterprise">Link your account with Grafana Labs</a>.</p>
2075
2075
  * @public
2076
2076
  */
2077
- grafanaToken?: string;
2077
+ grafanaToken?: string | undefined;
2078
2078
  }
2079
2079
  /**
2080
2080
  * @public
@@ -2090,7 +2090,7 @@ export interface ListWorkspacesResponse {
2090
2090
  * <p>The token to use when requesting the next set of workspaces.</p>
2091
2091
  * @public
2092
2092
  */
2093
- nextToken?: string;
2093
+ nextToken?: string | undefined;
2094
2094
  }
2095
2095
  /**
2096
2096
  * @public
@@ -2104,14 +2104,14 @@ export interface UpdateWorkspaceRequest {
2104
2104
  * can access in the <code>workspaceOrganizationalUnits</code> parameter.</p>
2105
2105
  * @public
2106
2106
  */
2107
- accountAccessType?: AccountAccessType;
2107
+ accountAccessType?: AccountAccessType | undefined;
2108
2108
  /**
2109
2109
  * <p>The name of an IAM role that already exists to use to access resources
2110
2110
  * through Organizations. This can only be used with a workspace that has the
2111
2111
  * <code>permissionType</code> set to <code>CUSTOMER_MANAGED</code>.</p>
2112
2112
  * @public
2113
2113
  */
2114
- organizationRoleName?: string;
2114
+ organizationRoleName?: string | undefined;
2115
2115
  /**
2116
2116
  * <p>Use this parameter if you want to change a workspace from <code>SERVICE_MANAGED</code>
2117
2117
  * to <code>CUSTOMER_MANAGED</code>. This allows you to manage the permissions that the
@@ -2136,24 +2136,24 @@ export interface UpdateWorkspaceRequest {
2136
2136
  * </note>
2137
2137
  * @public
2138
2138
  */
2139
- permissionType?: PermissionType;
2139
+ permissionType?: PermissionType | undefined;
2140
2140
  /**
2141
2141
  * <p>The name of the CloudFormation stack set to use to generate IAM
2142
2142
  * roles to be used for this workspace.</p>
2143
2143
  * @public
2144
2144
  */
2145
- stackSetName?: string;
2145
+ stackSetName?: string | undefined;
2146
2146
  /**
2147
2147
  * <p>This parameter is for internal use only, and should not be used.</p>
2148
2148
  * @public
2149
2149
  */
2150
- workspaceDataSources?: DataSourceType[];
2150
+ workspaceDataSources?: DataSourceType[] | undefined;
2151
2151
  /**
2152
2152
  * <p>A description for the workspace. This is used only to help you identify this
2153
2153
  * workspace.</p>
2154
2154
  * @public
2155
2155
  */
2156
- workspaceDescription?: string;
2156
+ workspaceDescription?: string | undefined;
2157
2157
  /**
2158
2158
  * <p>The ID of the workspace to update.</p>
2159
2159
  * @public
@@ -2163,7 +2163,7 @@ export interface UpdateWorkspaceRequest {
2163
2163
  * <p>A new name for the workspace to update.</p>
2164
2164
  * @public
2165
2165
  */
2166
- workspaceName?: string;
2166
+ workspaceName?: string | undefined;
2167
2167
  /**
2168
2168
  * <p>Specify the Amazon Web Services notification channels that you plan to use in this
2169
2169
  * workspace. Specifying these data sources here enables Amazon Managed Grafana to create
@@ -2171,13 +2171,13 @@ export interface UpdateWorkspaceRequest {
2171
2171
  * channels.</p>
2172
2172
  * @public
2173
2173
  */
2174
- workspaceNotificationDestinations?: NotificationDestinationType[];
2174
+ workspaceNotificationDestinations?: NotificationDestinationType[] | undefined;
2175
2175
  /**
2176
2176
  * <p>Specifies the organizational units that this workspace is allowed to use data sources
2177
2177
  * from, if this workspace is in an account that is part of an organization.</p>
2178
2178
  * @public
2179
2179
  */
2180
- workspaceOrganizationalUnits?: string[];
2180
+ workspaceOrganizationalUnits?: string[] | undefined;
2181
2181
  /**
2182
2182
  * <p>Specifies an IAM role that grants permissions to Amazon Web Services
2183
2183
  * resources that the workspace accesses, such as data sources and notification channels.
@@ -2186,20 +2186,20 @@ export interface UpdateWorkspaceRequest {
2186
2186
  * then this role is required.</p>
2187
2187
  * @public
2188
2188
  */
2189
- workspaceRoleArn?: string;
2189
+ workspaceRoleArn?: string | undefined;
2190
2190
  /**
2191
2191
  * <p>The configuration settings for an Amazon VPC that contains data sources for
2192
2192
  * your Grafana workspace to connect to.</p>
2193
2193
  * @public
2194
2194
  */
2195
- vpcConfiguration?: VpcConfiguration;
2195
+ vpcConfiguration?: VpcConfiguration | undefined;
2196
2196
  /**
2197
2197
  * <p>Whether to remove the VPC configuration from the workspace.</p>
2198
2198
  * <p>Setting this to <code>true</code> and providing a <code>vpcConfiguration</code> to set
2199
2199
  * will return an error.</p>
2200
2200
  * @public
2201
2201
  */
2202
- removeVpcConfiguration?: boolean;
2202
+ removeVpcConfiguration?: boolean | undefined;
2203
2203
  /**
2204
2204
  * <p>The configuration settings for network access to your workspace.</p>
2205
2205
  * <p>When this is configured, only listed IP addresses and VPC endpoints will be able to
@@ -2210,7 +2210,7 @@ export interface UpdateWorkspaceRequest {
2210
2210
  * required.</p>
2211
2211
  * @public
2212
2212
  */
2213
- networkAccessControl?: NetworkAccessConfiguration;
2213
+ networkAccessControl?: NetworkAccessConfiguration | undefined;
2214
2214
  /**
2215
2215
  * <p>Whether to remove the network access configuration from the workspace.</p>
2216
2216
  * <p>Setting this to <code>true</code> and providing a <code>networkAccessControl</code> to
@@ -2220,7 +2220,7 @@ export interface UpdateWorkspaceRequest {
2220
2220
  * authorization will still be required.</p>
2221
2221
  * @public
2222
2222
  */
2223
- removeNetworkAccessConfiguration?: boolean;
2223
+ removeNetworkAccessConfiguration?: boolean | undefined;
2224
2224
  }
2225
2225
  /**
2226
2226
  * @public
@@ -38,7 +38,7 @@ export declare class InternalServerException extends __BaseException {
38
38
  readonly name: "InternalServerException";
39
39
  readonly $fault: "server";
40
40
  $retryable: {};
41
- retryAfterSeconds?: number;
41
+ retryAfterSeconds?: number | undefined;
42
42
  constructor(
43
43
  opts: __ExceptionOptionType<InternalServerException, __BaseException>
44
44
  );
@@ -67,9 +67,9 @@ export declare class ThrottlingException extends __BaseException {
67
67
  readonly name: "ThrottlingException";
68
68
  readonly $fault: "client";
69
69
  $retryable: {};
70
- serviceCode?: string;
71
- quotaCode?: string;
72
- retryAfterSeconds?: number;
70
+ serviceCode?: string | undefined;
71
+ quotaCode?: string | undefined;
72
+ retryAfterSeconds?: number | undefined;
73
73
  constructor(
74
74
  opts: __ExceptionOptionType<ThrottlingException, __BaseException>
75
75
  );
@@ -90,7 +90,7 @@ export declare class ValidationException extends __BaseException {
90
90
  readonly name: "ValidationException";
91
91
  readonly $fault: "client";
92
92
  reason: ValidationExceptionReason | undefined;
93
- fieldList?: ValidationExceptionField[];
93
+ fieldList?: ValidationExceptionField[] | undefined;
94
94
  constructor(
95
95
  opts: __ExceptionOptionType<ValidationException, __BaseException>
96
96
  );
@@ -104,12 +104,12 @@ export interface DeleteWorkspaceApiKeyResponse {
104
104
  workspaceId: string | undefined;
105
105
  }
106
106
  export interface AssertionAttributes {
107
- name?: string;
108
- login?: string;
109
- email?: string;
110
- groups?: string;
111
- role?: string;
112
- org?: string;
107
+ name?: string | undefined;
108
+ login?: string | undefined;
109
+ email?: string | undefined;
110
+ groups?: string | undefined;
111
+ role?: string | undefined;
112
+ org?: string | undefined;
113
113
  }
114
114
  export declare const LicenseType: {
115
115
  readonly ENTERPRISE: "ENTERPRISE";
@@ -119,7 +119,7 @@ export type LicenseType = (typeof LicenseType)[keyof typeof LicenseType];
119
119
  export interface AssociateLicenseRequest {
120
120
  workspaceId: string | undefined;
121
121
  licenseType: LicenseType | undefined;
122
- grafanaToken?: string;
122
+ grafanaToken?: string | undefined;
123
123
  }
124
124
  export declare const AuthenticationProviderTypes: {
125
125
  readonly AWS_SSO: "AWS_SSO";
@@ -135,7 +135,7 @@ export type SamlConfigurationStatus =
135
135
  (typeof SamlConfigurationStatus)[keyof typeof SamlConfigurationStatus];
136
136
  export interface AuthenticationSummary {
137
137
  providers: AuthenticationProviderTypes[] | undefined;
138
- samlConfigurationStatus?: SamlConfigurationStatus;
138
+ samlConfigurationStatus?: SamlConfigurationStatus | undefined;
139
139
  }
140
140
  export declare const DataSourceType: {
141
141
  readonly AMAZON_OPENSEARCH_SERVICE: "AMAZON_OPENSEARCH_SERVICE";
@@ -187,31 +187,31 @@ export interface VpcConfiguration {
187
187
  subnetIds: string[] | undefined;
188
188
  }
189
189
  export interface WorkspaceDescription {
190
- accountAccessType?: AccountAccessType;
190
+ accountAccessType?: AccountAccessType | undefined;
191
191
  created: Date | undefined;
192
192
  dataSources: DataSourceType[] | undefined;
193
- description?: string;
193
+ description?: string | undefined;
194
194
  endpoint: string | undefined;
195
195
  grafanaVersion: string | undefined;
196
196
  id: string | undefined;
197
197
  modified: Date | undefined;
198
- name?: string;
199
- organizationRoleName?: string;
200
- notificationDestinations?: NotificationDestinationType[];
201
- organizationalUnits?: string[];
202
- permissionType?: PermissionType;
203
- stackSetName?: string;
198
+ name?: string | undefined;
199
+ organizationRoleName?: string | undefined;
200
+ notificationDestinations?: NotificationDestinationType[] | undefined;
201
+ organizationalUnits?: string[] | undefined;
202
+ permissionType?: PermissionType | undefined;
203
+ stackSetName?: string | undefined;
204
204
  status: WorkspaceStatus | undefined;
205
- workspaceRoleArn?: string;
206
- licenseType?: LicenseType;
207
- freeTrialConsumed?: boolean;
208
- licenseExpiration?: Date;
209
- freeTrialExpiration?: Date;
205
+ workspaceRoleArn?: string | undefined;
206
+ licenseType?: LicenseType | undefined;
207
+ freeTrialConsumed?: boolean | undefined;
208
+ licenseExpiration?: Date | undefined;
209
+ freeTrialExpiration?: Date | undefined;
210
210
  authentication: AuthenticationSummary | undefined;
211
- tags?: Record<string, string>;
212
- vpcConfiguration?: VpcConfiguration;
213
- networkAccessControl?: NetworkAccessConfiguration;
214
- grafanaToken?: string;
211
+ tags?: Record<string, string> | undefined;
212
+ vpcConfiguration?: VpcConfiguration | undefined;
213
+ networkAccessControl?: NetworkAccessConfiguration | undefined;
214
+ grafanaToken?: string | undefined;
215
215
  }
216
216
  export interface AssociateLicenseResponse {
217
217
  workspace: WorkspaceDescription | undefined;
@@ -220,7 +220,7 @@ export interface DescribeWorkspaceAuthenticationRequest {
220
220
  workspaceId: string | undefined;
221
221
  }
222
222
  export interface AwsSsoAuthentication {
223
- ssoClientId?: string;
223
+ ssoClientId?: string | undefined;
224
224
  }
225
225
  export type IdpMetadata =
226
226
  | IdpMetadata.UrlMember
@@ -250,24 +250,24 @@ export declare namespace IdpMetadata {
250
250
  const visit: <T>(value: IdpMetadata, visitor: Visitor<T>) => T;
251
251
  }
252
252
  export interface RoleValues {
253
- editor?: string[];
254
- admin?: string[];
253
+ editor?: string[] | undefined;
254
+ admin?: string[] | undefined;
255
255
  }
256
256
  export interface SamlConfiguration {
257
257
  idpMetadata: IdpMetadata | undefined;
258
- assertionAttributes?: AssertionAttributes;
259
- roleValues?: RoleValues;
260
- allowedOrganizations?: string[];
261
- loginValidityDuration?: number;
258
+ assertionAttributes?: AssertionAttributes | undefined;
259
+ roleValues?: RoleValues | undefined;
260
+ allowedOrganizations?: string[] | undefined;
261
+ loginValidityDuration?: number | undefined;
262
262
  }
263
263
  export interface SamlAuthentication {
264
264
  status: SamlConfigurationStatus | undefined;
265
- configuration?: SamlConfiguration;
265
+ configuration?: SamlConfiguration | undefined;
266
266
  }
267
267
  export interface AuthenticationDescription {
268
268
  providers: AuthenticationProviderTypes[] | undefined;
269
- saml?: SamlAuthentication;
270
- awsSso?: AwsSsoAuthentication;
269
+ saml?: SamlAuthentication | undefined;
270
+ awsSso?: AwsSsoAuthentication | undefined;
271
271
  }
272
272
  export interface DescribeWorkspaceAuthenticationResponse {
273
273
  authentication: AuthenticationDescription | undefined;
@@ -275,7 +275,7 @@ export interface DescribeWorkspaceAuthenticationResponse {
275
275
  export interface UpdateWorkspaceAuthenticationRequest {
276
276
  workspaceId: string | undefined;
277
277
  authenticationProviders: AuthenticationProviderTypes[] | undefined;
278
- samlConfiguration?: SamlConfiguration;
278
+ samlConfiguration?: SamlConfiguration | undefined;
279
279
  }
280
280
  export interface UpdateWorkspaceAuthenticationResponse {
281
281
  authentication: AuthenticationDescription | undefined;
@@ -285,12 +285,12 @@ export interface DescribeWorkspaceConfigurationRequest {
285
285
  }
286
286
  export interface DescribeWorkspaceConfigurationResponse {
287
287
  configuration: __LazyJsonString | string | undefined;
288
- grafanaVersion?: string;
288
+ grafanaVersion?: string | undefined;
289
289
  }
290
290
  export interface UpdateWorkspaceConfigurationRequest {
291
291
  configuration: __LazyJsonString | string | undefined;
292
292
  workspaceId: string | undefined;
293
- grafanaVersion?: string;
293
+ grafanaVersion?: string | undefined;
294
294
  }
295
295
  export interface UpdateWorkspaceConfigurationResponse {}
296
296
  export interface DisassociateLicenseRequest {
@@ -304,16 +304,16 @@ export interface ListTagsForResourceRequest {
304
304
  resourceArn: string | undefined;
305
305
  }
306
306
  export interface ListTagsForResourceResponse {
307
- tags?: Record<string, string>;
307
+ tags?: Record<string, string> | undefined;
308
308
  }
309
309
  export interface ListVersionsRequest {
310
- maxResults?: number;
311
- nextToken?: string;
312
- workspaceId?: string;
310
+ maxResults?: number | undefined;
311
+ nextToken?: string | undefined;
312
+ workspaceId?: string | undefined;
313
313
  }
314
314
  export interface ListVersionsResponse {
315
- nextToken?: string;
316
- grafanaVersions?: string[];
315
+ nextToken?: string | undefined;
316
+ grafanaVersions?: string[] | undefined;
317
317
  }
318
318
  export declare const UserType: {
319
319
  readonly SSO_GROUP: "SSO_GROUP";
@@ -321,11 +321,11 @@ export declare const UserType: {
321
321
  };
322
322
  export type UserType = (typeof UserType)[keyof typeof UserType];
323
323
  export interface ListPermissionsRequest {
324
- maxResults?: number;
325
- nextToken?: string;
326
- userType?: UserType;
327
- userId?: string;
328
- groupId?: string;
324
+ maxResults?: number | undefined;
325
+ nextToken?: string | undefined;
326
+ userType?: UserType | undefined;
327
+ userId?: string | undefined;
328
+ groupId?: string | undefined;
329
329
  workspaceId: string | undefined;
330
330
  }
331
331
  export declare const Role: {
@@ -343,7 +343,7 @@ export interface PermissionEntry {
343
343
  role: Role | undefined;
344
344
  }
345
345
  export interface ListPermissionsResponse {
346
- nextToken?: string;
346
+ nextToken?: string | undefined;
347
347
  permissions: PermissionEntry[] | undefined;
348
348
  }
349
349
  export declare const UpdateAction: {
@@ -388,8 +388,8 @@ export interface DeleteWorkspaceServiceAccountResponse {
388
388
  workspaceId: string | undefined;
389
389
  }
390
390
  export interface ListWorkspaceServiceAccountsRequest {
391
- maxResults?: number;
392
- nextToken?: string;
391
+ maxResults?: number | undefined;
392
+ nextToken?: string | undefined;
393
393
  workspaceId: string | undefined;
394
394
  }
395
395
  export interface ServiceAccountSummary {
@@ -399,7 +399,7 @@ export interface ServiceAccountSummary {
399
399
  grafanaRole: Role | undefined;
400
400
  }
401
401
  export interface ListWorkspaceServiceAccountsResponse {
402
- nextToken?: string;
402
+ nextToken?: string | undefined;
403
403
  serviceAccounts: ServiceAccountSummary[] | undefined;
404
404
  workspaceId: string | undefined;
405
405
  }
@@ -430,8 +430,8 @@ export interface DeleteWorkspaceServiceAccountTokenResponse {
430
430
  workspaceId: string | undefined;
431
431
  }
432
432
  export interface ListWorkspaceServiceAccountTokensRequest {
433
- maxResults?: number;
434
- nextToken?: string;
433
+ maxResults?: number | undefined;
434
+ nextToken?: string | undefined;
435
435
  serviceAccountId: string | undefined;
436
436
  workspaceId: string | undefined;
437
437
  }
@@ -440,10 +440,10 @@ export interface ServiceAccountTokenSummary {
440
440
  name: string | undefined;
441
441
  createdAt: Date | undefined;
442
442
  expiresAt: Date | undefined;
443
- lastUsedAt?: Date;
443
+ lastUsedAt?: Date | undefined;
444
444
  }
445
445
  export interface ListWorkspaceServiceAccountTokensResponse {
446
- nextToken?: string;
446
+ nextToken?: string | undefined;
447
447
  serviceAccountTokens: ServiceAccountTokenSummary[] | undefined;
448
448
  serviceAccountId: string | undefined;
449
449
  workspaceId: string | undefined;
@@ -460,22 +460,22 @@ export interface UntagResourceRequest {
460
460
  export interface UntagResourceResponse {}
461
461
  export interface CreateWorkspaceRequest {
462
462
  accountAccessType: AccountAccessType | undefined;
463
- clientToken?: string;
464
- organizationRoleName?: string;
463
+ clientToken?: string | undefined;
464
+ organizationRoleName?: string | undefined;
465
465
  permissionType: PermissionType | undefined;
466
- stackSetName?: string;
467
- workspaceDataSources?: DataSourceType[];
468
- workspaceDescription?: string;
469
- workspaceName?: string;
470
- workspaceNotificationDestinations?: NotificationDestinationType[];
471
- workspaceOrganizationalUnits?: string[];
472
- workspaceRoleArn?: string;
466
+ stackSetName?: string | undefined;
467
+ workspaceDataSources?: DataSourceType[] | undefined;
468
+ workspaceDescription?: string | undefined;
469
+ workspaceName?: string | undefined;
470
+ workspaceNotificationDestinations?: NotificationDestinationType[] | undefined;
471
+ workspaceOrganizationalUnits?: string[] | undefined;
472
+ workspaceRoleArn?: string | undefined;
473
473
  authenticationProviders: AuthenticationProviderTypes[] | undefined;
474
- tags?: Record<string, string>;
475
- vpcConfiguration?: VpcConfiguration;
476
- configuration?: __LazyJsonString | string;
477
- networkAccessControl?: NetworkAccessConfiguration;
478
- grafanaVersion?: string;
474
+ tags?: Record<string, string> | undefined;
475
+ vpcConfiguration?: VpcConfiguration | undefined;
476
+ configuration?: __LazyJsonString | string | undefined;
477
+ networkAccessControl?: NetworkAccessConfiguration | undefined;
478
+ grafanaVersion?: string | undefined;
479
479
  }
480
480
  export interface CreateWorkspaceResponse {
481
481
  workspace: WorkspaceDescription | undefined;
@@ -493,44 +493,44 @@ export interface DescribeWorkspaceResponse {
493
493
  workspace: WorkspaceDescription | undefined;
494
494
  }
495
495
  export interface ListWorkspacesRequest {
496
- maxResults?: number;
497
- nextToken?: string;
496
+ maxResults?: number | undefined;
497
+ nextToken?: string | undefined;
498
498
  }
499
499
  export interface WorkspaceSummary {
500
500
  created: Date | undefined;
501
- description?: string;
501
+ description?: string | undefined;
502
502
  endpoint: string | undefined;
503
503
  grafanaVersion: string | undefined;
504
504
  id: string | undefined;
505
505
  modified: Date | undefined;
506
- name?: string;
507
- notificationDestinations?: NotificationDestinationType[];
506
+ name?: string | undefined;
507
+ notificationDestinations?: NotificationDestinationType[] | undefined;
508
508
  status: WorkspaceStatus | undefined;
509
509
  authentication: AuthenticationSummary | undefined;
510
- tags?: Record<string, string>;
511
- licenseType?: LicenseType;
512
- grafanaToken?: string;
510
+ tags?: Record<string, string> | undefined;
511
+ licenseType?: LicenseType | undefined;
512
+ grafanaToken?: string | undefined;
513
513
  }
514
514
  export interface ListWorkspacesResponse {
515
515
  workspaces: WorkspaceSummary[] | undefined;
516
- nextToken?: string;
516
+ nextToken?: string | undefined;
517
517
  }
518
518
  export interface UpdateWorkspaceRequest {
519
- accountAccessType?: AccountAccessType;
520
- organizationRoleName?: string;
521
- permissionType?: PermissionType;
522
- stackSetName?: string;
523
- workspaceDataSources?: DataSourceType[];
524
- workspaceDescription?: string;
519
+ accountAccessType?: AccountAccessType | undefined;
520
+ organizationRoleName?: string | undefined;
521
+ permissionType?: PermissionType | undefined;
522
+ stackSetName?: string | undefined;
523
+ workspaceDataSources?: DataSourceType[] | undefined;
524
+ workspaceDescription?: string | undefined;
525
525
  workspaceId: string | undefined;
526
- workspaceName?: string;
527
- workspaceNotificationDestinations?: NotificationDestinationType[];
528
- workspaceOrganizationalUnits?: string[];
529
- workspaceRoleArn?: string;
530
- vpcConfiguration?: VpcConfiguration;
531
- removeVpcConfiguration?: boolean;
532
- networkAccessControl?: NetworkAccessConfiguration;
533
- removeNetworkAccessConfiguration?: boolean;
526
+ workspaceName?: string | undefined;
527
+ workspaceNotificationDestinations?: NotificationDestinationType[] | undefined;
528
+ workspaceOrganizationalUnits?: string[] | undefined;
529
+ workspaceRoleArn?: string | undefined;
530
+ vpcConfiguration?: VpcConfiguration | undefined;
531
+ removeVpcConfiguration?: boolean | undefined;
532
+ networkAccessControl?: NetworkAccessConfiguration | undefined;
533
+ removeNetworkAccessConfiguration?: boolean | undefined;
534
534
  }
535
535
  export interface UpdateWorkspaceResponse {
536
536
  workspace: WorkspaceDescription | undefined;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-grafana",
3
3
  "description": "AWS SDK for JavaScript Grafana Client for Node.js, Browser and React Native",
4
- "version": "3.687.0",
4
+ "version": "3.692.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-grafana",
@@ -20,43 +20,43 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/client-sso-oidc": "3.687.0",
24
- "@aws-sdk/client-sts": "3.687.0",
25
- "@aws-sdk/core": "3.686.0",
26
- "@aws-sdk/credential-provider-node": "3.687.0",
27
- "@aws-sdk/middleware-host-header": "3.686.0",
28
- "@aws-sdk/middleware-logger": "3.686.0",
29
- "@aws-sdk/middleware-recursion-detection": "3.686.0",
30
- "@aws-sdk/middleware-user-agent": "3.687.0",
31
- "@aws-sdk/region-config-resolver": "3.686.0",
32
- "@aws-sdk/types": "3.686.0",
33
- "@aws-sdk/util-endpoints": "3.686.0",
34
- "@aws-sdk/util-user-agent-browser": "3.686.0",
35
- "@aws-sdk/util-user-agent-node": "3.687.0",
36
- "@smithy/config-resolver": "^3.0.10",
37
- "@smithy/core": "^2.5.1",
38
- "@smithy/fetch-http-handler": "^4.0.0",
39
- "@smithy/hash-node": "^3.0.8",
40
- "@smithy/invalid-dependency": "^3.0.8",
41
- "@smithy/middleware-content-length": "^3.0.10",
42
- "@smithy/middleware-endpoint": "^3.2.1",
43
- "@smithy/middleware-retry": "^3.0.25",
44
- "@smithy/middleware-serde": "^3.0.8",
45
- "@smithy/middleware-stack": "^3.0.8",
46
- "@smithy/node-config-provider": "^3.1.9",
47
- "@smithy/node-http-handler": "^3.2.5",
48
- "@smithy/protocol-http": "^4.1.5",
49
- "@smithy/smithy-client": "^3.4.2",
50
- "@smithy/types": "^3.6.0",
51
- "@smithy/url-parser": "^3.0.8",
23
+ "@aws-sdk/client-sso-oidc": "3.692.0",
24
+ "@aws-sdk/client-sts": "3.692.0",
25
+ "@aws-sdk/core": "3.692.0",
26
+ "@aws-sdk/credential-provider-node": "3.692.0",
27
+ "@aws-sdk/middleware-host-header": "3.692.0",
28
+ "@aws-sdk/middleware-logger": "3.692.0",
29
+ "@aws-sdk/middleware-recursion-detection": "3.692.0",
30
+ "@aws-sdk/middleware-user-agent": "3.692.0",
31
+ "@aws-sdk/region-config-resolver": "3.692.0",
32
+ "@aws-sdk/types": "3.692.0",
33
+ "@aws-sdk/util-endpoints": "3.692.0",
34
+ "@aws-sdk/util-user-agent-browser": "3.692.0",
35
+ "@aws-sdk/util-user-agent-node": "3.692.0",
36
+ "@smithy/config-resolver": "^3.0.11",
37
+ "@smithy/core": "^2.5.2",
38
+ "@smithy/fetch-http-handler": "^4.1.0",
39
+ "@smithy/hash-node": "^3.0.9",
40
+ "@smithy/invalid-dependency": "^3.0.9",
41
+ "@smithy/middleware-content-length": "^3.0.11",
42
+ "@smithy/middleware-endpoint": "^3.2.2",
43
+ "@smithy/middleware-retry": "^3.0.26",
44
+ "@smithy/middleware-serde": "^3.0.9",
45
+ "@smithy/middleware-stack": "^3.0.9",
46
+ "@smithy/node-config-provider": "^3.1.10",
47
+ "@smithy/node-http-handler": "^3.3.0",
48
+ "@smithy/protocol-http": "^4.1.6",
49
+ "@smithy/smithy-client": "^3.4.3",
50
+ "@smithy/types": "^3.7.0",
51
+ "@smithy/url-parser": "^3.0.9",
52
52
  "@smithy/util-base64": "^3.0.0",
53
53
  "@smithy/util-body-length-browser": "^3.0.0",
54
54
  "@smithy/util-body-length-node": "^3.0.0",
55
- "@smithy/util-defaults-mode-browser": "^3.0.25",
56
- "@smithy/util-defaults-mode-node": "^3.0.25",
57
- "@smithy/util-endpoints": "^2.1.4",
58
- "@smithy/util-middleware": "^3.0.8",
59
- "@smithy/util-retry": "^3.0.8",
55
+ "@smithy/util-defaults-mode-browser": "^3.0.26",
56
+ "@smithy/util-defaults-mode-node": "^3.0.26",
57
+ "@smithy/util-endpoints": "^2.1.5",
58
+ "@smithy/util-middleware": "^3.0.9",
59
+ "@smithy/util-retry": "^3.0.9",
60
60
  "@smithy/util-utf8": "^3.0.0",
61
61
  "@types/uuid": "^9.0.1",
62
62
  "tslib": "^2.6.2",