@flyteorg/flyteidl 1.1.21 → 1.1.22
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.
package/gen/pb-js/flyteidl.d.ts
CHANGED
|
@@ -17204,6 +17204,9 @@ export namespace flyteidl {
|
|
|
17204
17204
|
|
|
17205
17205
|
/** PublicClientAuthConfigResponse serviceHttpEndpoint */
|
|
17206
17206
|
serviceHttpEndpoint?: (string|null);
|
|
17207
|
+
|
|
17208
|
+
/** PublicClientAuthConfigResponse audience */
|
|
17209
|
+
audience?: (string|null);
|
|
17207
17210
|
}
|
|
17208
17211
|
|
|
17209
17212
|
/** Represents a PublicClientAuthConfigResponse. */
|
|
@@ -17230,6 +17233,9 @@ export namespace flyteidl {
|
|
|
17230
17233
|
/** PublicClientAuthConfigResponse serviceHttpEndpoint. */
|
|
17231
17234
|
public serviceHttpEndpoint: string;
|
|
17232
17235
|
|
|
17236
|
+
/** PublicClientAuthConfigResponse audience. */
|
|
17237
|
+
public audience: string;
|
|
17238
|
+
|
|
17233
17239
|
/**
|
|
17234
17240
|
* Creates a new PublicClientAuthConfigResponse instance using the specified properties.
|
|
17235
17241
|
* @param [properties] Properties to set
|
package/gen/pb-js/flyteidl.js
CHANGED
|
@@ -40040,6 +40040,7 @@ export const flyteidl = $root.flyteidl = (() => {
|
|
|
40040
40040
|
* @property {Array.<string>|null} [scopes] PublicClientAuthConfigResponse scopes
|
|
40041
40041
|
* @property {string|null} [authorizationMetadataKey] PublicClientAuthConfigResponse authorizationMetadataKey
|
|
40042
40042
|
* @property {string|null} [serviceHttpEndpoint] PublicClientAuthConfigResponse serviceHttpEndpoint
|
|
40043
|
+
* @property {string|null} [audience] PublicClientAuthConfigResponse audience
|
|
40043
40044
|
*/
|
|
40044
40045
|
|
|
40045
40046
|
/**
|
|
@@ -40098,6 +40099,14 @@ export const flyteidl = $root.flyteidl = (() => {
|
|
|
40098
40099
|
*/
|
|
40099
40100
|
PublicClientAuthConfigResponse.prototype.serviceHttpEndpoint = "";
|
|
40100
40101
|
|
|
40102
|
+
/**
|
|
40103
|
+
* PublicClientAuthConfigResponse audience.
|
|
40104
|
+
* @member {string} audience
|
|
40105
|
+
* @memberof flyteidl.service.PublicClientAuthConfigResponse
|
|
40106
|
+
* @instance
|
|
40107
|
+
*/
|
|
40108
|
+
PublicClientAuthConfigResponse.prototype.audience = "";
|
|
40109
|
+
|
|
40101
40110
|
/**
|
|
40102
40111
|
* Creates a new PublicClientAuthConfigResponse instance using the specified properties.
|
|
40103
40112
|
* @function create
|
|
@@ -40133,6 +40142,8 @@ export const flyteidl = $root.flyteidl = (() => {
|
|
|
40133
40142
|
writer.uint32(/* id 4, wireType 2 =*/34).string(message.authorizationMetadataKey);
|
|
40134
40143
|
if (message.serviceHttpEndpoint != null && message.hasOwnProperty("serviceHttpEndpoint"))
|
|
40135
40144
|
writer.uint32(/* id 5, wireType 2 =*/42).string(message.serviceHttpEndpoint);
|
|
40145
|
+
if (message.audience != null && message.hasOwnProperty("audience"))
|
|
40146
|
+
writer.uint32(/* id 6, wireType 2 =*/50).string(message.audience);
|
|
40136
40147
|
return writer;
|
|
40137
40148
|
};
|
|
40138
40149
|
|
|
@@ -40171,6 +40182,9 @@ export const flyteidl = $root.flyteidl = (() => {
|
|
|
40171
40182
|
case 5:
|
|
40172
40183
|
message.serviceHttpEndpoint = reader.string();
|
|
40173
40184
|
break;
|
|
40185
|
+
case 6:
|
|
40186
|
+
message.audience = reader.string();
|
|
40187
|
+
break;
|
|
40174
40188
|
default:
|
|
40175
40189
|
reader.skipType(tag & 7);
|
|
40176
40190
|
break;
|
|
@@ -40209,6 +40223,9 @@ export const flyteidl = $root.flyteidl = (() => {
|
|
|
40209
40223
|
if (message.serviceHttpEndpoint != null && message.hasOwnProperty("serviceHttpEndpoint"))
|
|
40210
40224
|
if (!$util.isString(message.serviceHttpEndpoint))
|
|
40211
40225
|
return "serviceHttpEndpoint: string expected";
|
|
40226
|
+
if (message.audience != null && message.hasOwnProperty("audience"))
|
|
40227
|
+
if (!$util.isString(message.audience))
|
|
40228
|
+
return "audience: string expected";
|
|
40212
40229
|
return null;
|
|
40213
40230
|
};
|
|
40214
40231
|
|
package/package.json
CHANGED
|
@@ -181,6 +181,7 @@ FlyteClientResponse encapsulates public information that flyte clients (CLIs...
|
|
|
181
181
|
"scopes", ":ref:`ref_string`", "repeated", "scopes to request when initiating OAuth2 authorization requests."
|
|
182
182
|
"authorization_metadata_key", ":ref:`ref_string`", "", "Authorization Header to use when passing Access Tokens to the server. If not provided, the client should use the default http `Authorization` header."
|
|
183
183
|
"service_http_endpoint", ":ref:`ref_string`", "", "ServiceHttpEndpoint points to the http endpoint for the backend. If empty, clients can assume the endpoint used to configure the gRPC connection can be used for the http one respecting the insecure flag to choose between SSL or no SSL connections."
|
|
184
|
+
"audience", ":ref:`ref_string`", "", "audience to use when initiating OAuth2 authorization requests."
|
|
184
185
|
|
|
185
186
|
|
|
186
187
|
|
|
@@ -63,6 +63,8 @@ message PublicClientAuthConfigResponse {
|
|
|
63
63
|
// to configure the gRPC connection can be used for the http one respecting the insecure flag to choose between
|
|
64
64
|
// SSL or no SSL connections.
|
|
65
65
|
string service_http_endpoint = 5;
|
|
66
|
+
// audience to use when initiating OAuth2 authorization requests.
|
|
67
|
+
string audience = 6;
|
|
66
68
|
}
|
|
67
69
|
|
|
68
70
|
// The following defines an RPC service that is also served over HTTP via grpc-gateway.
|