You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: codegen/aws/core/src/main/java/software/amazon/smithy/python/aws/codegen/AwsStandardRegionalEndpointsIntegration.java
Copy file name to clipboardExpand all lines: codegen/core/src/main/java/software/amazon/smithy/python/codegen/generators/ConfigGenerator.java
+16Lines changed: 16 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -97,6 +97,22 @@ public final class ConfigGenerator implements Runnable {
97
97
.build())
98
98
.build())
99
99
.documentation("The retry strategy or options for configuring retry behavior. Can be either a configured RetryStrategy or RetryStrategyOptions to create one.")
100
+
.build(),
101
+
ConfigProperty.builder()
102
+
.name("user_agent_extra")
103
+
.type(Symbol.builder().name("str").build())
104
+
.documentation("Additional suffix to be appended to the User-Agent header.")
105
+
.build(),
106
+
ConfigProperty.builder()
107
+
.name("sdk_ua_app_id")
108
+
.type(Symbol.builder().name("str").build())
109
+
.documentation("A unique and opaque application ID that is appended to the User-Agent header.")
110
+
.build(),
111
+
ConfigProperty.builder()
112
+
.name("endpoint_url")
113
+
.type(Symbol.builder().name("str").build())
114
+
.documentation("The endpoint URL to use for requests. If not set, the standard endpoint for the service and region will be used.")
115
+
.nullable(true)
100
116
.build());
101
117
102
118
// This list contains any properties that must be added to any http-based
0 commit comments