Skip to content

Commit adf6e79

Browse files
github-actions[bot]quinnj
andauthoredMar 18, 2025··
Update aws_c_sdkutils_jll to version 0.2.3 (#6)
Co-authored-by: quinnj <2896623+quinnj@users.noreply.github.com>
1 parent dc7eaa1 commit adf6e79

15 files changed

+211
-16
lines changed
 

‎Project.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = "LibAwsSdkutils"
22
uuid = "c5f27dc9-c37b-4573-9b6c-b90055172160"
3-
version = "1.1.0"
3+
version = "1.1.1"
44

55
[deps]
66
CEnum = "fa961155-64e5-5f13-b03f-caf6b980ea82"
@@ -11,7 +11,7 @@ aws_c_sdkutils_jll = "1282aa60-004d-510b-9f52-12498d409daa"
1111
Aqua = "0.7"
1212
CEnum = "0.5"
1313
LibAwsCommon = "1.2"
14-
aws_c_sdkutils_jll = "=0.1.16"
14+
aws_c_sdkutils_jll = "=0.2.3"
1515
julia = "1.6"
1616

1717
[extras]

‎gen/Project.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ aws_c_sdkutils_jll = "1282aa60-004d-510b-9f52-12498d409daa"
88
[compat]
99
Clang = "0.18.3"
1010
JLLPrefixes = "0.3"
11-
aws_c_sdkutils_jll = "=0.1.16"
11+
aws_c_sdkutils_jll = "=0.2.3"

‎lib/aarch64-apple-darwin20.jl

+16-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,8 @@ Documentation not found.
3434
@cenum aws_profile_section_type::UInt32 begin
3535
AWS_PROFILE_SECTION_TYPE_PROFILE = 0
3636
AWS_PROFILE_SECTION_TYPE_SSO_SESSION = 1
37-
AWS_PROFILE_SECTION_TYPE_COUNT = 2
37+
AWS_PROFILE_SECTION_TYPE_SERVICES = 2
38+
AWS_PROFILE_SECTION_TYPE_COUNT = 3
3839
end
3940

4041
"""
@@ -348,6 +349,7 @@ Documentation not found.
348349
@cenum aws_endpoints_parameter_type::UInt32 begin
349350
AWS_ENDPOINTS_PARAMETER_STRING = 0
350351
AWS_ENDPOINTS_PARAMETER_BOOLEAN = 1
352+
AWS_ENDPOINTS_PARAMETER_STRING_ARRAY = 2
351353
end
352354

353355
"""
@@ -673,6 +675,19 @@ function aws_endpoints_request_context_add_boolean(allocator, context, name, val
673675
ccall((:aws_endpoints_request_context_add_boolean, libaws_c_sdkutils), Cint, (Ptr{aws_allocator}, Ptr{aws_endpoints_request_context}, aws_byte_cursor, Bool), allocator, context, name, value)
674676
end
675677

678+
"""
679+
aws_endpoints_request_context_add_string_array(allocator, context, name, value_array, len)
680+
681+
Documentation not found.
682+
### Prototype
683+
```c
684+
int aws_endpoints_request_context_add_string_array( struct aws_allocator *allocator, struct aws_endpoints_request_context *context, struct aws_byte_cursor name, const struct aws_byte_cursor *value_array, size_t len);
685+
```
686+
"""
687+
function aws_endpoints_request_context_add_string_array(allocator, context, name, value_array, len)
688+
ccall((:aws_endpoints_request_context_add_string_array, libaws_c_sdkutils), Cint, (Ptr{aws_allocator}, Ptr{aws_endpoints_request_context}, aws_byte_cursor, Ptr{aws_byte_cursor}, Csize_t), allocator, context, name, value_array, len)
689+
end
690+
676691
"""
677692
aws_endpoints_rule_engine_resolve(engine, context, out_resolved_endpoint)
678693

‎lib/aarch64-linux-gnu.jl

+16-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,8 @@ Documentation not found.
3434
@cenum aws_profile_section_type::UInt32 begin
3535
AWS_PROFILE_SECTION_TYPE_PROFILE = 0
3636
AWS_PROFILE_SECTION_TYPE_SSO_SESSION = 1
37-
AWS_PROFILE_SECTION_TYPE_COUNT = 2
37+
AWS_PROFILE_SECTION_TYPE_SERVICES = 2
38+
AWS_PROFILE_SECTION_TYPE_COUNT = 3
3839
end
3940

4041
"""
@@ -348,6 +349,7 @@ Documentation not found.
348349
@cenum aws_endpoints_parameter_type::UInt32 begin
349350
AWS_ENDPOINTS_PARAMETER_STRING = 0
350351
AWS_ENDPOINTS_PARAMETER_BOOLEAN = 1
352+
AWS_ENDPOINTS_PARAMETER_STRING_ARRAY = 2
351353
end
352354

353355
"""
@@ -673,6 +675,19 @@ function aws_endpoints_request_context_add_boolean(allocator, context, name, val
673675
ccall((:aws_endpoints_request_context_add_boolean, libaws_c_sdkutils), Cint, (Ptr{aws_allocator}, Ptr{aws_endpoints_request_context}, aws_byte_cursor, Bool), allocator, context, name, value)
674676
end
675677

678+
"""
679+
aws_endpoints_request_context_add_string_array(allocator, context, name, value_array, len)
680+
681+
Documentation not found.
682+
### Prototype
683+
```c
684+
int aws_endpoints_request_context_add_string_array( struct aws_allocator *allocator, struct aws_endpoints_request_context *context, struct aws_byte_cursor name, const struct aws_byte_cursor *value_array, size_t len);
685+
```
686+
"""
687+
function aws_endpoints_request_context_add_string_array(allocator, context, name, value_array, len)
688+
ccall((:aws_endpoints_request_context_add_string_array, libaws_c_sdkutils), Cint, (Ptr{aws_allocator}, Ptr{aws_endpoints_request_context}, aws_byte_cursor, Ptr{aws_byte_cursor}, Csize_t), allocator, context, name, value_array, len)
689+
end
690+
676691
"""
677692
aws_endpoints_rule_engine_resolve(engine, context, out_resolved_endpoint)
678693

‎lib/aarch64-linux-musl.jl

+16-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,8 @@ Documentation not found.
3434
@cenum aws_profile_section_type::UInt32 begin
3535
AWS_PROFILE_SECTION_TYPE_PROFILE = 0
3636
AWS_PROFILE_SECTION_TYPE_SSO_SESSION = 1
37-
AWS_PROFILE_SECTION_TYPE_COUNT = 2
37+
AWS_PROFILE_SECTION_TYPE_SERVICES = 2
38+
AWS_PROFILE_SECTION_TYPE_COUNT = 3
3839
end
3940

4041
"""
@@ -348,6 +349,7 @@ Documentation not found.
348349
@cenum aws_endpoints_parameter_type::UInt32 begin
349350
AWS_ENDPOINTS_PARAMETER_STRING = 0
350351
AWS_ENDPOINTS_PARAMETER_BOOLEAN = 1
352+
AWS_ENDPOINTS_PARAMETER_STRING_ARRAY = 2
351353
end
352354

353355
"""
@@ -673,6 +675,19 @@ function aws_endpoints_request_context_add_boolean(allocator, context, name, val
673675
ccall((:aws_endpoints_request_context_add_boolean, libaws_c_sdkutils), Cint, (Ptr{aws_allocator}, Ptr{aws_endpoints_request_context}, aws_byte_cursor, Bool), allocator, context, name, value)
674676
end
675677

678+
"""
679+
aws_endpoints_request_context_add_string_array(allocator, context, name, value_array, len)
680+
681+
Documentation not found.
682+
### Prototype
683+
```c
684+
int aws_endpoints_request_context_add_string_array( struct aws_allocator *allocator, struct aws_endpoints_request_context *context, struct aws_byte_cursor name, const struct aws_byte_cursor *value_array, size_t len);
685+
```
686+
"""
687+
function aws_endpoints_request_context_add_string_array(allocator, context, name, value_array, len)
688+
ccall((:aws_endpoints_request_context_add_string_array, libaws_c_sdkutils), Cint, (Ptr{aws_allocator}, Ptr{aws_endpoints_request_context}, aws_byte_cursor, Ptr{aws_byte_cursor}, Csize_t), allocator, context, name, value_array, len)
689+
end
690+
676691
"""
677692
aws_endpoints_rule_engine_resolve(engine, context, out_resolved_endpoint)
678693

‎lib/armv7l-linux-gnueabihf.jl

+16-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,8 @@ Documentation not found.
3434
@cenum aws_profile_section_type::UInt32 begin
3535
AWS_PROFILE_SECTION_TYPE_PROFILE = 0
3636
AWS_PROFILE_SECTION_TYPE_SSO_SESSION = 1
37-
AWS_PROFILE_SECTION_TYPE_COUNT = 2
37+
AWS_PROFILE_SECTION_TYPE_SERVICES = 2
38+
AWS_PROFILE_SECTION_TYPE_COUNT = 3
3839
end
3940

4041
"""
@@ -348,6 +349,7 @@ Documentation not found.
348349
@cenum aws_endpoints_parameter_type::UInt32 begin
349350
AWS_ENDPOINTS_PARAMETER_STRING = 0
350351
AWS_ENDPOINTS_PARAMETER_BOOLEAN = 1
352+
AWS_ENDPOINTS_PARAMETER_STRING_ARRAY = 2
351353
end
352354

353355
"""
@@ -673,6 +675,19 @@ function aws_endpoints_request_context_add_boolean(allocator, context, name, val
673675
ccall((:aws_endpoints_request_context_add_boolean, libaws_c_sdkutils), Cint, (Ptr{aws_allocator}, Ptr{aws_endpoints_request_context}, aws_byte_cursor, Bool), allocator, context, name, value)
674676
end
675677

678+
"""
679+
aws_endpoints_request_context_add_string_array(allocator, context, name, value_array, len)
680+
681+
Documentation not found.
682+
### Prototype
683+
```c
684+
int aws_endpoints_request_context_add_string_array( struct aws_allocator *allocator, struct aws_endpoints_request_context *context, struct aws_byte_cursor name, const struct aws_byte_cursor *value_array, size_t len);
685+
```
686+
"""
687+
function aws_endpoints_request_context_add_string_array(allocator, context, name, value_array, len)
688+
ccall((:aws_endpoints_request_context_add_string_array, libaws_c_sdkutils), Cint, (Ptr{aws_allocator}, Ptr{aws_endpoints_request_context}, aws_byte_cursor, Ptr{aws_byte_cursor}, Csize_t), allocator, context, name, value_array, len)
689+
end
690+
676691
"""
677692
aws_endpoints_rule_engine_resolve(engine, context, out_resolved_endpoint)
678693

‎lib/armv7l-linux-musleabihf.jl

+16-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,8 @@ Documentation not found.
3434
@cenum aws_profile_section_type::UInt32 begin
3535
AWS_PROFILE_SECTION_TYPE_PROFILE = 0
3636
AWS_PROFILE_SECTION_TYPE_SSO_SESSION = 1
37-
AWS_PROFILE_SECTION_TYPE_COUNT = 2
37+
AWS_PROFILE_SECTION_TYPE_SERVICES = 2
38+
AWS_PROFILE_SECTION_TYPE_COUNT = 3
3839
end
3940

4041
"""
@@ -348,6 +349,7 @@ Documentation not found.
348349
@cenum aws_endpoints_parameter_type::UInt32 begin
349350
AWS_ENDPOINTS_PARAMETER_STRING = 0
350351
AWS_ENDPOINTS_PARAMETER_BOOLEAN = 1
352+
AWS_ENDPOINTS_PARAMETER_STRING_ARRAY = 2
351353
end
352354

353355
"""
@@ -673,6 +675,19 @@ function aws_endpoints_request_context_add_boolean(allocator, context, name, val
673675
ccall((:aws_endpoints_request_context_add_boolean, libaws_c_sdkutils), Cint, (Ptr{aws_allocator}, Ptr{aws_endpoints_request_context}, aws_byte_cursor, Bool), allocator, context, name, value)
674676
end
675677

678+
"""
679+
aws_endpoints_request_context_add_string_array(allocator, context, name, value_array, len)
680+
681+
Documentation not found.
682+
### Prototype
683+
```c
684+
int aws_endpoints_request_context_add_string_array( struct aws_allocator *allocator, struct aws_endpoints_request_context *context, struct aws_byte_cursor name, const struct aws_byte_cursor *value_array, size_t len);
685+
```
686+
"""
687+
function aws_endpoints_request_context_add_string_array(allocator, context, name, value_array, len)
688+
ccall((:aws_endpoints_request_context_add_string_array, libaws_c_sdkutils), Cint, (Ptr{aws_allocator}, Ptr{aws_endpoints_request_context}, aws_byte_cursor, Ptr{aws_byte_cursor}, Csize_t), allocator, context, name, value_array, len)
689+
end
690+
676691
"""
677692
aws_endpoints_rule_engine_resolve(engine, context, out_resolved_endpoint)
678693

‎lib/i686-linux-gnu.jl

+16-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,8 @@ Documentation not found.
3434
@cenum aws_profile_section_type::UInt32 begin
3535
AWS_PROFILE_SECTION_TYPE_PROFILE = 0
3636
AWS_PROFILE_SECTION_TYPE_SSO_SESSION = 1
37-
AWS_PROFILE_SECTION_TYPE_COUNT = 2
37+
AWS_PROFILE_SECTION_TYPE_SERVICES = 2
38+
AWS_PROFILE_SECTION_TYPE_COUNT = 3
3839
end
3940

4041
"""
@@ -348,6 +349,7 @@ Documentation not found.
348349
@cenum aws_endpoints_parameter_type::UInt32 begin
349350
AWS_ENDPOINTS_PARAMETER_STRING = 0
350351
AWS_ENDPOINTS_PARAMETER_BOOLEAN = 1
352+
AWS_ENDPOINTS_PARAMETER_STRING_ARRAY = 2
351353
end
352354

353355
"""
@@ -673,6 +675,19 @@ function aws_endpoints_request_context_add_boolean(allocator, context, name, val
673675
ccall((:aws_endpoints_request_context_add_boolean, libaws_c_sdkutils), Cint, (Ptr{aws_allocator}, Ptr{aws_endpoints_request_context}, aws_byte_cursor, Bool), allocator, context, name, value)
674676
end
675677

678+
"""
679+
aws_endpoints_request_context_add_string_array(allocator, context, name, value_array, len)
680+
681+
Documentation not found.
682+
### Prototype
683+
```c
684+
int aws_endpoints_request_context_add_string_array( struct aws_allocator *allocator, struct aws_endpoints_request_context *context, struct aws_byte_cursor name, const struct aws_byte_cursor *value_array, size_t len);
685+
```
686+
"""
687+
function aws_endpoints_request_context_add_string_array(allocator, context, name, value_array, len)
688+
ccall((:aws_endpoints_request_context_add_string_array, libaws_c_sdkutils), Cint, (Ptr{aws_allocator}, Ptr{aws_endpoints_request_context}, aws_byte_cursor, Ptr{aws_byte_cursor}, Csize_t), allocator, context, name, value_array, len)
689+
end
690+
676691
"""
677692
aws_endpoints_rule_engine_resolve(engine, context, out_resolved_endpoint)
678693

‎lib/i686-linux-musl.jl

+16-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,8 @@ Documentation not found.
3434
@cenum aws_profile_section_type::UInt32 begin
3535
AWS_PROFILE_SECTION_TYPE_PROFILE = 0
3636
AWS_PROFILE_SECTION_TYPE_SSO_SESSION = 1
37-
AWS_PROFILE_SECTION_TYPE_COUNT = 2
37+
AWS_PROFILE_SECTION_TYPE_SERVICES = 2
38+
AWS_PROFILE_SECTION_TYPE_COUNT = 3
3839
end
3940

4041
"""
@@ -348,6 +349,7 @@ Documentation not found.
348349
@cenum aws_endpoints_parameter_type::UInt32 begin
349350
AWS_ENDPOINTS_PARAMETER_STRING = 0
350351
AWS_ENDPOINTS_PARAMETER_BOOLEAN = 1
352+
AWS_ENDPOINTS_PARAMETER_STRING_ARRAY = 2
351353
end
352354

353355
"""
@@ -673,6 +675,19 @@ function aws_endpoints_request_context_add_boolean(allocator, context, name, val
673675
ccall((:aws_endpoints_request_context_add_boolean, libaws_c_sdkutils), Cint, (Ptr{aws_allocator}, Ptr{aws_endpoints_request_context}, aws_byte_cursor, Bool), allocator, context, name, value)
674676
end
675677

678+
"""
679+
aws_endpoints_request_context_add_string_array(allocator, context, name, value_array, len)
680+
681+
Documentation not found.
682+
### Prototype
683+
```c
684+
int aws_endpoints_request_context_add_string_array( struct aws_allocator *allocator, struct aws_endpoints_request_context *context, struct aws_byte_cursor name, const struct aws_byte_cursor *value_array, size_t len);
685+
```
686+
"""
687+
function aws_endpoints_request_context_add_string_array(allocator, context, name, value_array, len)
688+
ccall((:aws_endpoints_request_context_add_string_array, libaws_c_sdkutils), Cint, (Ptr{aws_allocator}, Ptr{aws_endpoints_request_context}, aws_byte_cursor, Ptr{aws_byte_cursor}, Csize_t), allocator, context, name, value_array, len)
689+
end
690+
676691
"""
677692
aws_endpoints_rule_engine_resolve(engine, context, out_resolved_endpoint)
678693

‎lib/powerpc64le-linux-gnu.jl

+16-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,8 @@ Documentation not found.
3434
@cenum aws_profile_section_type::UInt32 begin
3535
AWS_PROFILE_SECTION_TYPE_PROFILE = 0
3636
AWS_PROFILE_SECTION_TYPE_SSO_SESSION = 1
37-
AWS_PROFILE_SECTION_TYPE_COUNT = 2
37+
AWS_PROFILE_SECTION_TYPE_SERVICES = 2
38+
AWS_PROFILE_SECTION_TYPE_COUNT = 3
3839
end
3940

4041
"""
@@ -348,6 +349,7 @@ Documentation not found.
348349
@cenum aws_endpoints_parameter_type::UInt32 begin
349350
AWS_ENDPOINTS_PARAMETER_STRING = 0
350351
AWS_ENDPOINTS_PARAMETER_BOOLEAN = 1
352+
AWS_ENDPOINTS_PARAMETER_STRING_ARRAY = 2
351353
end
352354

353355
"""
@@ -673,6 +675,19 @@ function aws_endpoints_request_context_add_boolean(allocator, context, name, val
673675
ccall((:aws_endpoints_request_context_add_boolean, libaws_c_sdkutils), Cint, (Ptr{aws_allocator}, Ptr{aws_endpoints_request_context}, aws_byte_cursor, Bool), allocator, context, name, value)
674676
end
675677

678+
"""
679+
aws_endpoints_request_context_add_string_array(allocator, context, name, value_array, len)
680+
681+
Documentation not found.
682+
### Prototype
683+
```c
684+
int aws_endpoints_request_context_add_string_array( struct aws_allocator *allocator, struct aws_endpoints_request_context *context, struct aws_byte_cursor name, const struct aws_byte_cursor *value_array, size_t len);
685+
```
686+
"""
687+
function aws_endpoints_request_context_add_string_array(allocator, context, name, value_array, len)
688+
ccall((:aws_endpoints_request_context_add_string_array, libaws_c_sdkutils), Cint, (Ptr{aws_allocator}, Ptr{aws_endpoints_request_context}, aws_byte_cursor, Ptr{aws_byte_cursor}, Csize_t), allocator, context, name, value_array, len)
689+
end
690+
676691
"""
677692
aws_endpoints_rule_engine_resolve(engine, context, out_resolved_endpoint)
678693

‎lib/x86_64-apple-darwin14.jl

+16-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,8 @@ Documentation not found.
3434
@cenum aws_profile_section_type::UInt32 begin
3535
AWS_PROFILE_SECTION_TYPE_PROFILE = 0
3636
AWS_PROFILE_SECTION_TYPE_SSO_SESSION = 1
37-
AWS_PROFILE_SECTION_TYPE_COUNT = 2
37+
AWS_PROFILE_SECTION_TYPE_SERVICES = 2
38+
AWS_PROFILE_SECTION_TYPE_COUNT = 3
3839
end
3940

4041
"""
@@ -348,6 +349,7 @@ Documentation not found.
348349
@cenum aws_endpoints_parameter_type::UInt32 begin
349350
AWS_ENDPOINTS_PARAMETER_STRING = 0
350351
AWS_ENDPOINTS_PARAMETER_BOOLEAN = 1
352+
AWS_ENDPOINTS_PARAMETER_STRING_ARRAY = 2
351353
end
352354

353355
"""
@@ -673,6 +675,19 @@ function aws_endpoints_request_context_add_boolean(allocator, context, name, val
673675
ccall((:aws_endpoints_request_context_add_boolean, libaws_c_sdkutils), Cint, (Ptr{aws_allocator}, Ptr{aws_endpoints_request_context}, aws_byte_cursor, Bool), allocator, context, name, value)
674676
end
675677

678+
"""
679+
aws_endpoints_request_context_add_string_array(allocator, context, name, value_array, len)
680+
681+
Documentation not found.
682+
### Prototype
683+
```c
684+
int aws_endpoints_request_context_add_string_array( struct aws_allocator *allocator, struct aws_endpoints_request_context *context, struct aws_byte_cursor name, const struct aws_byte_cursor *value_array, size_t len);
685+
```
686+
"""
687+
function aws_endpoints_request_context_add_string_array(allocator, context, name, value_array, len)
688+
ccall((:aws_endpoints_request_context_add_string_array, libaws_c_sdkutils), Cint, (Ptr{aws_allocator}, Ptr{aws_endpoints_request_context}, aws_byte_cursor, Ptr{aws_byte_cursor}, Csize_t), allocator, context, name, value_array, len)
689+
end
690+
676691
"""
677692
aws_endpoints_rule_engine_resolve(engine, context, out_resolved_endpoint)
678693

‎lib/x86_64-linux-gnu.jl

+16-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,8 @@ Documentation not found.
3434
@cenum aws_profile_section_type::UInt32 begin
3535
AWS_PROFILE_SECTION_TYPE_PROFILE = 0
3636
AWS_PROFILE_SECTION_TYPE_SSO_SESSION = 1
37-
AWS_PROFILE_SECTION_TYPE_COUNT = 2
37+
AWS_PROFILE_SECTION_TYPE_SERVICES = 2
38+
AWS_PROFILE_SECTION_TYPE_COUNT = 3
3839
end
3940

4041
"""
@@ -348,6 +349,7 @@ Documentation not found.
348349
@cenum aws_endpoints_parameter_type::UInt32 begin
349350
AWS_ENDPOINTS_PARAMETER_STRING = 0
350351
AWS_ENDPOINTS_PARAMETER_BOOLEAN = 1
352+
AWS_ENDPOINTS_PARAMETER_STRING_ARRAY = 2
351353
end
352354

353355
"""
@@ -673,6 +675,19 @@ function aws_endpoints_request_context_add_boolean(allocator, context, name, val
673675
ccall((:aws_endpoints_request_context_add_boolean, libaws_c_sdkutils), Cint, (Ptr{aws_allocator}, Ptr{aws_endpoints_request_context}, aws_byte_cursor, Bool), allocator, context, name, value)
674676
end
675677

678+
"""
679+
aws_endpoints_request_context_add_string_array(allocator, context, name, value_array, len)
680+
681+
Documentation not found.
682+
### Prototype
683+
```c
684+
int aws_endpoints_request_context_add_string_array( struct aws_allocator *allocator, struct aws_endpoints_request_context *context, struct aws_byte_cursor name, const struct aws_byte_cursor *value_array, size_t len);
685+
```
686+
"""
687+
function aws_endpoints_request_context_add_string_array(allocator, context, name, value_array, len)
688+
ccall((:aws_endpoints_request_context_add_string_array, libaws_c_sdkutils), Cint, (Ptr{aws_allocator}, Ptr{aws_endpoints_request_context}, aws_byte_cursor, Ptr{aws_byte_cursor}, Csize_t), allocator, context, name, value_array, len)
689+
end
690+
676691
"""
677692
aws_endpoints_rule_engine_resolve(engine, context, out_resolved_endpoint)
678693

‎lib/x86_64-linux-musl.jl

+16-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,8 @@ Documentation not found.
3434
@cenum aws_profile_section_type::UInt32 begin
3535
AWS_PROFILE_SECTION_TYPE_PROFILE = 0
3636
AWS_PROFILE_SECTION_TYPE_SSO_SESSION = 1
37-
AWS_PROFILE_SECTION_TYPE_COUNT = 2
37+
AWS_PROFILE_SECTION_TYPE_SERVICES = 2
38+
AWS_PROFILE_SECTION_TYPE_COUNT = 3
3839
end
3940

4041
"""
@@ -348,6 +349,7 @@ Documentation not found.
348349
@cenum aws_endpoints_parameter_type::UInt32 begin
349350
AWS_ENDPOINTS_PARAMETER_STRING = 0
350351
AWS_ENDPOINTS_PARAMETER_BOOLEAN = 1
352+
AWS_ENDPOINTS_PARAMETER_STRING_ARRAY = 2
351353
end
352354

353355
"""
@@ -673,6 +675,19 @@ function aws_endpoints_request_context_add_boolean(allocator, context, name, val
673675
ccall((:aws_endpoints_request_context_add_boolean, libaws_c_sdkutils), Cint, (Ptr{aws_allocator}, Ptr{aws_endpoints_request_context}, aws_byte_cursor, Bool), allocator, context, name, value)
674676
end
675677

678+
"""
679+
aws_endpoints_request_context_add_string_array(allocator, context, name, value_array, len)
680+
681+
Documentation not found.
682+
### Prototype
683+
```c
684+
int aws_endpoints_request_context_add_string_array( struct aws_allocator *allocator, struct aws_endpoints_request_context *context, struct aws_byte_cursor name, const struct aws_byte_cursor *value_array, size_t len);
685+
```
686+
"""
687+
function aws_endpoints_request_context_add_string_array(allocator, context, name, value_array, len)
688+
ccall((:aws_endpoints_request_context_add_string_array, libaws_c_sdkutils), Cint, (Ptr{aws_allocator}, Ptr{aws_endpoints_request_context}, aws_byte_cursor, Ptr{aws_byte_cursor}, Csize_t), allocator, context, name, value_array, len)
689+
end
690+
676691
"""
677692
aws_endpoints_rule_engine_resolve(engine, context, out_resolved_endpoint)
678693

‎lib/x86_64-unknown-freebsd13.2.jl

+16-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,8 @@ Documentation not found.
3434
@cenum aws_profile_section_type::UInt32 begin
3535
AWS_PROFILE_SECTION_TYPE_PROFILE = 0
3636
AWS_PROFILE_SECTION_TYPE_SSO_SESSION = 1
37-
AWS_PROFILE_SECTION_TYPE_COUNT = 2
37+
AWS_PROFILE_SECTION_TYPE_SERVICES = 2
38+
AWS_PROFILE_SECTION_TYPE_COUNT = 3
3839
end
3940

4041
"""
@@ -348,6 +349,7 @@ Documentation not found.
348349
@cenum aws_endpoints_parameter_type::UInt32 begin
349350
AWS_ENDPOINTS_PARAMETER_STRING = 0
350351
AWS_ENDPOINTS_PARAMETER_BOOLEAN = 1
352+
AWS_ENDPOINTS_PARAMETER_STRING_ARRAY = 2
351353
end
352354

353355
"""
@@ -673,6 +675,19 @@ function aws_endpoints_request_context_add_boolean(allocator, context, name, val
673675
ccall((:aws_endpoints_request_context_add_boolean, libaws_c_sdkutils), Cint, (Ptr{aws_allocator}, Ptr{aws_endpoints_request_context}, aws_byte_cursor, Bool), allocator, context, name, value)
674676
end
675677

678+
"""
679+
aws_endpoints_request_context_add_string_array(allocator, context, name, value_array, len)
680+
681+
Documentation not found.
682+
### Prototype
683+
```c
684+
int aws_endpoints_request_context_add_string_array( struct aws_allocator *allocator, struct aws_endpoints_request_context *context, struct aws_byte_cursor name, const struct aws_byte_cursor *value_array, size_t len);
685+
```
686+
"""
687+
function aws_endpoints_request_context_add_string_array(allocator, context, name, value_array, len)
688+
ccall((:aws_endpoints_request_context_add_string_array, libaws_c_sdkutils), Cint, (Ptr{aws_allocator}, Ptr{aws_endpoints_request_context}, aws_byte_cursor, Ptr{aws_byte_cursor}, Csize_t), allocator, context, name, value_array, len)
689+
end
690+
676691
"""
677692
aws_endpoints_rule_engine_resolve(engine, context, out_resolved_endpoint)
678693

‎lib/x86_64-w64-mingw32.jl

+16-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,8 @@ Documentation not found.
3434
@cenum aws_profile_section_type::UInt32 begin
3535
AWS_PROFILE_SECTION_TYPE_PROFILE = 0
3636
AWS_PROFILE_SECTION_TYPE_SSO_SESSION = 1
37-
AWS_PROFILE_SECTION_TYPE_COUNT = 2
37+
AWS_PROFILE_SECTION_TYPE_SERVICES = 2
38+
AWS_PROFILE_SECTION_TYPE_COUNT = 3
3839
end
3940

4041
"""
@@ -348,6 +349,7 @@ Documentation not found.
348349
@cenum aws_endpoints_parameter_type::UInt32 begin
349350
AWS_ENDPOINTS_PARAMETER_STRING = 0
350351
AWS_ENDPOINTS_PARAMETER_BOOLEAN = 1
352+
AWS_ENDPOINTS_PARAMETER_STRING_ARRAY = 2
351353
end
352354

353355
"""
@@ -673,6 +675,19 @@ function aws_endpoints_request_context_add_boolean(allocator, context, name, val
673675
ccall((:aws_endpoints_request_context_add_boolean, libaws_c_sdkutils), Cint, (Ptr{aws_allocator}, Ptr{aws_endpoints_request_context}, aws_byte_cursor, Bool), allocator, context, name, value)
674676
end
675677

678+
"""
679+
aws_endpoints_request_context_add_string_array(allocator, context, name, value_array, len)
680+
681+
Documentation not found.
682+
### Prototype
683+
```c
684+
int aws_endpoints_request_context_add_string_array( struct aws_allocator *allocator, struct aws_endpoints_request_context *context, struct aws_byte_cursor name, const struct aws_byte_cursor *value_array, size_t len);
685+
```
686+
"""
687+
function aws_endpoints_request_context_add_string_array(allocator, context, name, value_array, len)
688+
ccall((:aws_endpoints_request_context_add_string_array, libaws_c_sdkutils), Cint, (Ptr{aws_allocator}, Ptr{aws_endpoints_request_context}, aws_byte_cursor, Ptr{aws_byte_cursor}, Csize_t), allocator, context, name, value_array, len)
689+
end
690+
676691
"""
677692
aws_endpoints_rule_engine_resolve(engine, context, out_resolved_endpoint)
678693

2 commit comments

Comments
 (2)

quinnj commented on Mar 18, 2025

@quinnj
Member

JuliaRegistrator commented on Mar 18, 2025

@JuliaRegistrator

Registration pull request created: JuliaRegistries/General/127146

Tip: Release Notes

Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.

@JuliaRegistrator register

Release notes:

## Breaking changes

- blah

To add them here just re-invoke and the PR will be updated.

Tagging

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v1.1.1 -m "<description of version>" adf6e79515c15619fe8b6fb43f7ecc14f71de76f
git push origin v1.1.1
Please sign in to comment.