aws-sdk-managedgrafana 1.61.0 → 1.62.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-managedgrafana/client.rb +27 -1
- data/lib/aws-sdk-managedgrafana/client_api.rb +4 -0
- data/lib/aws-sdk-managedgrafana/types.rb +29 -1
- data/lib/aws-sdk-managedgrafana.rb +1 -1
- data/sig/client.rbs +3 -1
- data/sig/types.rbs +3 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 95584317f29e2cc2c80ce4bec7ee356893af61720eaf7e235bd330b68e169762
|
|
4
|
+
data.tar.gz: 28235a26bb35dead8cc9b5213d3e2a52d2d7e23b344a57c3d37c88b49d3e5ef1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ba65c350e5f6ee5524102ffcb12d26b1985869afca7c0f83d0a84f82ce4eb9d1206186d859184e3b3b14a584b56c76752891db525a16eb494cf6c99ded778002
|
|
7
|
+
data.tar.gz: 6836bdcb7fee539586edeae690adf3484952082782ff2240713b68c92128bc3aa11f2f0fd32934068718bbfe53f687fc19787d1e5eabd61df5c9ea5d3c4a7e94
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.62.0 (2026-05-14)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Adds support for dual-stack (IPv4 and IPv6) connectivity to Amazon Managed Grafana workspaces. Customers can configure the ipAddressType parameter when creating or updating a workspace to choose between IPv4-only or dual-stack (IPv4 and IPv6) access.
|
|
8
|
+
|
|
4
9
|
1.61.0 (2026-05-13)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.62.0
|
|
@@ -557,6 +557,7 @@ module Aws::ManagedGrafana
|
|
|
557
557
|
# resp.workspace.network_access_control.vpce_ids #=> Array
|
|
558
558
|
# resp.workspace.network_access_control.vpce_ids[0] #=> String
|
|
559
559
|
# resp.workspace.grafana_token #=> String
|
|
560
|
+
# resp.workspace.ip_address_type #=> String, one of "IPv4", "DualStack"
|
|
560
561
|
# resp.workspace.kms_key_id #=> String
|
|
561
562
|
#
|
|
562
563
|
# @see http://docs.aws.amazon.com/goto/WebAPI/grafana-2020-08-18/AssociateLicense AWS API Documentation
|
|
@@ -713,6 +714,15 @@ module Aws::ManagedGrafana
|
|
|
713
714
|
#
|
|
714
715
|
# To get a list of supported versions, use the `ListVersions` operation.
|
|
715
716
|
#
|
|
717
|
+
# @option params [String] :ip_address_type
|
|
718
|
+
# Specifies whether the workspace supports IPv4 only, or IPv4 and IPv6.
|
|
719
|
+
# Valid values are `IPv4` and `DualStack`. For more information about IP
|
|
720
|
+
# address types, see [Network access control][1].
|
|
721
|
+
#
|
|
722
|
+
#
|
|
723
|
+
#
|
|
724
|
+
# [1]: https://docs.aws.amazon.com/grafana/latest/userguide/AMG-configure-nac.html
|
|
725
|
+
#
|
|
716
726
|
# @option params [String] :kms_key_id
|
|
717
727
|
# The ID or ARN of the Key Management Service key to use for encrypting
|
|
718
728
|
# workspace data.
|
|
@@ -749,6 +759,7 @@ module Aws::ManagedGrafana
|
|
|
749
759
|
# vpce_ids: ["VpceId"], # required
|
|
750
760
|
# },
|
|
751
761
|
# grafana_version: "GrafanaVersion",
|
|
762
|
+
# ip_address_type: "IPv4", # accepts IPv4, DualStack
|
|
752
763
|
# kms_key_id: "KmsKeyId",
|
|
753
764
|
# })
|
|
754
765
|
#
|
|
@@ -791,6 +802,7 @@ module Aws::ManagedGrafana
|
|
|
791
802
|
# resp.workspace.network_access_control.vpce_ids #=> Array
|
|
792
803
|
# resp.workspace.network_access_control.vpce_ids[0] #=> String
|
|
793
804
|
# resp.workspace.grafana_token #=> String
|
|
805
|
+
# resp.workspace.ip_address_type #=> String, one of "IPv4", "DualStack"
|
|
794
806
|
# resp.workspace.kms_key_id #=> String
|
|
795
807
|
#
|
|
796
808
|
# @see http://docs.aws.amazon.com/goto/WebAPI/grafana-2020-08-18/CreateWorkspace AWS API Documentation
|
|
@@ -1054,6 +1066,7 @@ module Aws::ManagedGrafana
|
|
|
1054
1066
|
# resp.workspace.network_access_control.vpce_ids #=> Array
|
|
1055
1067
|
# resp.workspace.network_access_control.vpce_ids[0] #=> String
|
|
1056
1068
|
# resp.workspace.grafana_token #=> String
|
|
1069
|
+
# resp.workspace.ip_address_type #=> String, one of "IPv4", "DualStack"
|
|
1057
1070
|
# resp.workspace.kms_key_id #=> String
|
|
1058
1071
|
#
|
|
1059
1072
|
# @see http://docs.aws.amazon.com/goto/WebAPI/grafana-2020-08-18/DeleteWorkspace AWS API Documentation
|
|
@@ -1247,6 +1260,7 @@ module Aws::ManagedGrafana
|
|
|
1247
1260
|
# resp.workspace.network_access_control.vpce_ids #=> Array
|
|
1248
1261
|
# resp.workspace.network_access_control.vpce_ids[0] #=> String
|
|
1249
1262
|
# resp.workspace.grafana_token #=> String
|
|
1263
|
+
# resp.workspace.ip_address_type #=> String, one of "IPv4", "DualStack"
|
|
1250
1264
|
# resp.workspace.kms_key_id #=> String
|
|
1251
1265
|
#
|
|
1252
1266
|
# @see http://docs.aws.amazon.com/goto/WebAPI/grafana-2020-08-18/DescribeWorkspace AWS API Documentation
|
|
@@ -1393,6 +1407,7 @@ module Aws::ManagedGrafana
|
|
|
1393
1407
|
# resp.workspace.network_access_control.vpce_ids #=> Array
|
|
1394
1408
|
# resp.workspace.network_access_control.vpce_ids[0] #=> String
|
|
1395
1409
|
# resp.workspace.grafana_token #=> String
|
|
1410
|
+
# resp.workspace.ip_address_type #=> String, one of "IPv4", "DualStack"
|
|
1396
1411
|
# resp.workspace.kms_key_id #=> String
|
|
1397
1412
|
#
|
|
1398
1413
|
# @see http://docs.aws.amazon.com/goto/WebAPI/grafana-2020-08-18/DisassociateLicense AWS API Documentation
|
|
@@ -1962,6 +1977,15 @@ module Aws::ManagedGrafana
|
|
|
1962
1977
|
# IP addresses and VPC endpoints will be allowed. Standard Grafana
|
|
1963
1978
|
# authentication and authorization will still be required.
|
|
1964
1979
|
#
|
|
1980
|
+
# @option params [String] :ip_address_type
|
|
1981
|
+
# Specifies whether the workspace supports IPv4 only, or IPv4 and IPv6.
|
|
1982
|
+
# Valid values are `IPv4` and `DualStack`. For more information about IP
|
|
1983
|
+
# address types, see [Network access control][1].
|
|
1984
|
+
#
|
|
1985
|
+
#
|
|
1986
|
+
#
|
|
1987
|
+
# [1]: https://docs.aws.amazon.com/grafana/latest/userguide/AMG-configure-nac.html
|
|
1988
|
+
#
|
|
1965
1989
|
# @return [Types::UpdateWorkspaceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1966
1990
|
#
|
|
1967
1991
|
# * {Types::UpdateWorkspaceResponse#workspace #workspace} => Types::WorkspaceDescription
|
|
@@ -1990,6 +2014,7 @@ module Aws::ManagedGrafana
|
|
|
1990
2014
|
# vpce_ids: ["VpceId"], # required
|
|
1991
2015
|
# },
|
|
1992
2016
|
# remove_network_access_configuration: false,
|
|
2017
|
+
# ip_address_type: "IPv4", # accepts IPv4, DualStack
|
|
1993
2018
|
# })
|
|
1994
2019
|
#
|
|
1995
2020
|
# @example Response structure
|
|
@@ -2031,6 +2056,7 @@ module Aws::ManagedGrafana
|
|
|
2031
2056
|
# resp.workspace.network_access_control.vpce_ids #=> Array
|
|
2032
2057
|
# resp.workspace.network_access_control.vpce_ids[0] #=> String
|
|
2033
2058
|
# resp.workspace.grafana_token #=> String
|
|
2059
|
+
# resp.workspace.ip_address_type #=> String, one of "IPv4", "DualStack"
|
|
2034
2060
|
# resp.workspace.kms_key_id #=> String
|
|
2035
2061
|
#
|
|
2036
2062
|
# @see http://docs.aws.amazon.com/goto/WebAPI/grafana-2020-08-18/UpdateWorkspace AWS API Documentation
|
|
@@ -2203,7 +2229,7 @@ module Aws::ManagedGrafana
|
|
|
2203
2229
|
tracer: tracer
|
|
2204
2230
|
)
|
|
2205
2231
|
context[:gem_name] = 'aws-sdk-managedgrafana'
|
|
2206
|
-
context[:gem_version] = '1.
|
|
2232
|
+
context[:gem_version] = '1.62.0'
|
|
2207
2233
|
Seahorse::Client::Request.new(handlers, context)
|
|
2208
2234
|
end
|
|
2209
2235
|
|
|
@@ -65,6 +65,7 @@ module Aws::ManagedGrafana
|
|
|
65
65
|
GrafanaToken = Shapes::StringShape.new(name: 'GrafanaToken')
|
|
66
66
|
GrafanaVersion = Shapes::StringShape.new(name: 'GrafanaVersion')
|
|
67
67
|
GrafanaVersionList = Shapes::ListShape.new(name: 'GrafanaVersionList')
|
|
68
|
+
IPAddressType = Shapes::StringShape.new(name: 'IPAddressType')
|
|
68
69
|
IamRoleArn = Shapes::StringShape.new(name: 'IamRoleArn')
|
|
69
70
|
IdpMetadata = Shapes::UnionShape.new(name: 'IdpMetadata')
|
|
70
71
|
IdpMetadataUrl = Shapes::StringShape.new(name: 'IdpMetadataUrl')
|
|
@@ -237,6 +238,7 @@ module Aws::ManagedGrafana
|
|
|
237
238
|
CreateWorkspaceRequest.add_member(:configuration, Shapes::ShapeRef.new(shape: OverridableConfigurationJson, location_name: "configuration", metadata: {"jsonvalue" => true}))
|
|
238
239
|
CreateWorkspaceRequest.add_member(:network_access_control, Shapes::ShapeRef.new(shape: NetworkAccessConfiguration, location_name: "networkAccessControl"))
|
|
239
240
|
CreateWorkspaceRequest.add_member(:grafana_version, Shapes::ShapeRef.new(shape: GrafanaVersion, location_name: "grafanaVersion"))
|
|
241
|
+
CreateWorkspaceRequest.add_member(:ip_address_type, Shapes::ShapeRef.new(shape: IPAddressType, location_name: "ipAddressType"))
|
|
240
242
|
CreateWorkspaceRequest.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: KmsKeyId, location_name: "kmsKeyId"))
|
|
241
243
|
CreateWorkspaceRequest.struct_class = Types::CreateWorkspaceRequest
|
|
242
244
|
|
|
@@ -541,6 +543,7 @@ module Aws::ManagedGrafana
|
|
|
541
543
|
UpdateWorkspaceRequest.add_member(:remove_vpc_configuration, Shapes::ShapeRef.new(shape: Boolean, location_name: "removeVpcConfiguration"))
|
|
542
544
|
UpdateWorkspaceRequest.add_member(:network_access_control, Shapes::ShapeRef.new(shape: NetworkAccessConfiguration, location_name: "networkAccessControl"))
|
|
543
545
|
UpdateWorkspaceRequest.add_member(:remove_network_access_configuration, Shapes::ShapeRef.new(shape: Boolean, location_name: "removeNetworkAccessConfiguration"))
|
|
546
|
+
UpdateWorkspaceRequest.add_member(:ip_address_type, Shapes::ShapeRef.new(shape: IPAddressType, location_name: "ipAddressType"))
|
|
544
547
|
UpdateWorkspaceRequest.struct_class = Types::UpdateWorkspaceRequest
|
|
545
548
|
|
|
546
549
|
UpdateWorkspaceResponse.add_member(:workspace, Shapes::ShapeRef.new(shape: WorkspaceDescription, required: true, location_name: "workspace"))
|
|
@@ -594,6 +597,7 @@ module Aws::ManagedGrafana
|
|
|
594
597
|
WorkspaceDescription.add_member(:vpc_configuration, Shapes::ShapeRef.new(shape: VpcConfiguration, location_name: "vpcConfiguration"))
|
|
595
598
|
WorkspaceDescription.add_member(:network_access_control, Shapes::ShapeRef.new(shape: NetworkAccessConfiguration, location_name: "networkAccessControl"))
|
|
596
599
|
WorkspaceDescription.add_member(:grafana_token, Shapes::ShapeRef.new(shape: GrafanaToken, location_name: "grafanaToken"))
|
|
600
|
+
WorkspaceDescription.add_member(:ip_address_type, Shapes::ShapeRef.new(shape: IPAddressType, location_name: "ipAddressType"))
|
|
597
601
|
WorkspaceDescription.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: KmsKeyId, location_name: "kmsKeyId"))
|
|
598
602
|
WorkspaceDescription.struct_class = Types::WorkspaceDescription
|
|
599
603
|
|
|
@@ -410,6 +410,16 @@ module Aws::ManagedGrafana
|
|
|
410
410
|
# operation.
|
|
411
411
|
# @return [String]
|
|
412
412
|
#
|
|
413
|
+
# @!attribute [rw] ip_address_type
|
|
414
|
+
# Specifies whether the workspace supports IPv4 only, or IPv4 and
|
|
415
|
+
# IPv6. Valid values are `IPv4` and `DualStack`. For more information
|
|
416
|
+
# about IP address types, see [Network access control][1].
|
|
417
|
+
#
|
|
418
|
+
#
|
|
419
|
+
#
|
|
420
|
+
# [1]: https://docs.aws.amazon.com/grafana/latest/userguide/AMG-configure-nac.html
|
|
421
|
+
# @return [String]
|
|
422
|
+
#
|
|
413
423
|
# @!attribute [rw] kms_key_id
|
|
414
424
|
# The ID or ARN of the Key Management Service key to use for
|
|
415
425
|
# encrypting workspace data.
|
|
@@ -435,6 +445,7 @@ module Aws::ManagedGrafana
|
|
|
435
445
|
:configuration,
|
|
436
446
|
:network_access_control,
|
|
437
447
|
:grafana_version,
|
|
448
|
+
:ip_address_type,
|
|
438
449
|
:kms_key_id)
|
|
439
450
|
SENSITIVE = [:organization_role_name, :workspace_description, :workspace_name, :workspace_organizational_units, :workspace_role_arn]
|
|
440
451
|
include Aws::Structure
|
|
@@ -1857,6 +1868,16 @@ module Aws::ManagedGrafana
|
|
|
1857
1868
|
# authentication and authorization will still be required.
|
|
1858
1869
|
# @return [Boolean]
|
|
1859
1870
|
#
|
|
1871
|
+
# @!attribute [rw] ip_address_type
|
|
1872
|
+
# Specifies whether the workspace supports IPv4 only, or IPv4 and
|
|
1873
|
+
# IPv6. Valid values are `IPv4` and `DualStack`. For more information
|
|
1874
|
+
# about IP address types, see [Network access control][1].
|
|
1875
|
+
#
|
|
1876
|
+
#
|
|
1877
|
+
#
|
|
1878
|
+
# [1]: https://docs.aws.amazon.com/grafana/latest/userguide/AMG-configure-nac.html
|
|
1879
|
+
# @return [String]
|
|
1880
|
+
#
|
|
1860
1881
|
# @see http://docs.aws.amazon.com/goto/WebAPI/grafana-2020-08-18/UpdateWorkspaceRequest AWS API Documentation
|
|
1861
1882
|
#
|
|
1862
1883
|
class UpdateWorkspaceRequest < Struct.new(
|
|
@@ -1874,7 +1895,8 @@ module Aws::ManagedGrafana
|
|
|
1874
1895
|
:vpc_configuration,
|
|
1875
1896
|
:remove_vpc_configuration,
|
|
1876
1897
|
:network_access_control,
|
|
1877
|
-
:remove_network_access_configuration
|
|
1898
|
+
:remove_network_access_configuration,
|
|
1899
|
+
:ip_address_type)
|
|
1878
1900
|
SENSITIVE = [:organization_role_name, :workspace_description, :workspace_name, :workspace_organizational_units, :workspace_role_arn]
|
|
1879
1901
|
include Aws::Structure
|
|
1880
1902
|
end
|
|
@@ -2164,6 +2186,11 @@ module Aws::ManagedGrafana
|
|
|
2164
2186
|
# [1]: https://docs.aws.amazon.com/grafana/latest/userguide/upgrade-to-Grafana-Enterprise.html#AMG-workspace-register-enterprise
|
|
2165
2187
|
# @return [String]
|
|
2166
2188
|
#
|
|
2189
|
+
# @!attribute [rw] ip_address_type
|
|
2190
|
+
# The type of IP addresses supported for connection to the workspace.
|
|
2191
|
+
# Valid values are `IPv4` and `DualStack`.
|
|
2192
|
+
# @return [String]
|
|
2193
|
+
#
|
|
2167
2194
|
# @!attribute [rw] kms_key_id
|
|
2168
2195
|
# The ID or ARN of the Key Management Service key used for encrypting
|
|
2169
2196
|
# workspace data.
|
|
@@ -2197,6 +2224,7 @@ module Aws::ManagedGrafana
|
|
|
2197
2224
|
:vpc_configuration,
|
|
2198
2225
|
:network_access_control,
|
|
2199
2226
|
:grafana_token,
|
|
2227
|
+
:ip_address_type,
|
|
2200
2228
|
:kms_key_id)
|
|
2201
2229
|
SENSITIVE = [:description, :name, :organization_role_name, :organizational_units, :workspace_role_arn]
|
|
2202
2230
|
include Aws::Structure
|
data/sig/client.rbs
CHANGED
|
@@ -119,6 +119,7 @@ module Aws
|
|
|
119
119
|
vpce_ids: Array[::String]
|
|
120
120
|
},
|
|
121
121
|
?grafana_version: ::String,
|
|
122
|
+
?ip_address_type: ("IPv4" | "DualStack"),
|
|
122
123
|
?kms_key_id: ::String
|
|
123
124
|
) -> _CreateWorkspaceResponseSuccess
|
|
124
125
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateWorkspaceResponseSuccess
|
|
@@ -407,7 +408,8 @@ module Aws
|
|
|
407
408
|
prefix_list_ids: Array[::String],
|
|
408
409
|
vpce_ids: Array[::String]
|
|
409
410
|
},
|
|
410
|
-
?remove_network_access_configuration: bool
|
|
411
|
+
?remove_network_access_configuration: bool,
|
|
412
|
+
?ip_address_type: ("IPv4" | "DualStack")
|
|
411
413
|
) -> _UpdateWorkspaceResponseSuccess
|
|
412
414
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateWorkspaceResponseSuccess
|
|
413
415
|
|
data/sig/types.rbs
CHANGED
|
@@ -93,6 +93,7 @@ module Aws::ManagedGrafana
|
|
|
93
93
|
attr_accessor configuration: ::String
|
|
94
94
|
attr_accessor network_access_control: Types::NetworkAccessConfiguration
|
|
95
95
|
attr_accessor grafana_version: ::String
|
|
96
|
+
attr_accessor ip_address_type: ("IPv4" | "DualStack")
|
|
96
97
|
attr_accessor kms_key_id: ::String
|
|
97
98
|
SENSITIVE: [:organization_role_name, :workspace_description, :workspace_name, :workspace_organizational_units, :workspace_role_arn]
|
|
98
99
|
end
|
|
@@ -485,6 +486,7 @@ module Aws::ManagedGrafana
|
|
|
485
486
|
attr_accessor remove_vpc_configuration: bool
|
|
486
487
|
attr_accessor network_access_control: Types::NetworkAccessConfiguration
|
|
487
488
|
attr_accessor remove_network_access_configuration: bool
|
|
489
|
+
attr_accessor ip_address_type: ("IPv4" | "DualStack")
|
|
488
490
|
SENSITIVE: [:organization_role_name, :workspace_description, :workspace_name, :workspace_organizational_units, :workspace_role_arn]
|
|
489
491
|
end
|
|
490
492
|
|
|
@@ -544,6 +546,7 @@ module Aws::ManagedGrafana
|
|
|
544
546
|
attr_accessor vpc_configuration: Types::VpcConfiguration
|
|
545
547
|
attr_accessor network_access_control: Types::NetworkAccessConfiguration
|
|
546
548
|
attr_accessor grafana_token: ::String
|
|
549
|
+
attr_accessor ip_address_type: ("IPv4" | "DualStack")
|
|
547
550
|
attr_accessor kms_key_id: ::String
|
|
548
551
|
SENSITIVE: [:description, :name, :organization_role_name, :organizational_units, :workspace_role_arn]
|
|
549
552
|
end
|