google-apis-apigee_v1 0.126.0 → 0.127.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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e8a4b519d55f74789f3536b33ffcd53b2491c90aa74660ad12f8f5ae2393c807
|
|
4
|
+
data.tar.gz: 32dcc22d34613a76dbb19ca31008e7b8cd2a4b288be1d6cb1606289b6ed0a12b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ef18e5309f20760ced6ae47abc73ddbbeaff14ad14c127e752bb513e0ee0435c255bdd264681579187e0b6bf4e37c6bb1f6edf4a13f368dcf1394397a7da9d81
|
|
7
|
+
data.tar.gz: 6ab7dd4c4f81aa36493d6b0a4d2364990dede5e70e48601d787027c35046de301350a9e5a12ce74f14bc67a61d492c59fa38eabd220db327987b3aa33da0c7e7
|
data/CHANGELOG.md
CHANGED
|
@@ -5141,7 +5141,7 @@ module Google
|
|
|
5141
5141
|
# @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1TargetServerConfig>]
|
|
5142
5142
|
attr_accessor :targets
|
|
5143
5143
|
|
|
5144
|
-
# NEXT ID:
|
|
5144
|
+
# NEXT ID: 13 RuntimeTraceConfig defines the configurations for distributed
|
|
5145
5145
|
# trace in an environment.
|
|
5146
5146
|
# Corresponds to the JSON property `traceConfig`
|
|
5147
5147
|
# @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1RuntimeTraceConfig]
|
|
@@ -10188,6 +10188,15 @@ module Google
|
|
|
10188
10188
|
# @return [String]
|
|
10189
10189
|
attr_accessor :revision_id
|
|
10190
10190
|
|
|
10191
|
+
# Runtime configuration for the Spec Generation add-on. All fields are proto3
|
|
10192
|
+
# primitives (bool, string, double) rather than google.protobuf.*Value wrappers
|
|
10193
|
+
# because the runtime consumer deserializes the JSON via Gson field reflection
|
|
10194
|
+
# with no registered type adapters. Wrapper types would serialize as JSON
|
|
10195
|
+
# objects/null that Gson cannot bind to Java primitive fields.
|
|
10196
|
+
# Corresponds to the JSON property `specGenerationConfig`
|
|
10197
|
+
# @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1RuntimeSpecGenerationAddonConfig]
|
|
10198
|
+
attr_accessor :spec_generation_config
|
|
10199
|
+
|
|
10191
10200
|
# UID is to detect if config is recreated after deletion. The add-on config will
|
|
10192
10201
|
# only be deleted when the environment itself gets deleted, thus it will always
|
|
10193
10202
|
# be the same as the UID of EnvironmentConfig.
|
|
@@ -10205,6 +10214,7 @@ module Google
|
|
|
10205
10214
|
@api_security_config = args[:api_security_config] if args.key?(:api_security_config)
|
|
10206
10215
|
@name = args[:name] if args.key?(:name)
|
|
10207
10216
|
@revision_id = args[:revision_id] if args.key?(:revision_id)
|
|
10217
|
+
@spec_generation_config = args[:spec_generation_config] if args.key?(:spec_generation_config)
|
|
10208
10218
|
@uid = args[:uid] if args.key?(:uid)
|
|
10209
10219
|
end
|
|
10210
10220
|
end
|
|
@@ -10299,7 +10309,68 @@ module Google
|
|
|
10299
10309
|
end
|
|
10300
10310
|
end
|
|
10301
10311
|
|
|
10302
|
-
#
|
|
10312
|
+
# Runtime configuration for the Spec Generation add-on. All fields are proto3
|
|
10313
|
+
# primitives (bool, string, double) rather than google.protobuf.*Value wrappers
|
|
10314
|
+
# because the runtime consumer deserializes the JSON via Gson field reflection
|
|
10315
|
+
# with no registered type adapters. Wrapper types would serialize as JSON
|
|
10316
|
+
# objects/null that Gson cannot bind to Java primitive fields.
|
|
10317
|
+
class GoogleCloudApigeeV1RuntimeSpecGenerationAddonConfig
|
|
10318
|
+
include Google::Apis::Core::Hashable
|
|
10319
|
+
|
|
10320
|
+
# Full Pub/Sub topic path in the Apigee Runtime Tenant Project where the Schema
|
|
10321
|
+
# Inferring Engine publishes inferred ApiObservation messages. Format: projects/`
|
|
10322
|
+
# project`/topics/`topic`. Same sentinel semantics as
|
|
10323
|
+
# raw_observations_pubsub_topic. Default: empty string.
|
|
10324
|
+
# Corresponds to the JSON property `apiObservationsPubsubTopic`
|
|
10325
|
+
# @return [String]
|
|
10326
|
+
attr_accessor :api_observations_pubsub_topic
|
|
10327
|
+
|
|
10328
|
+
# Whether the Spec Generation add-on is active for this environment. Default:
|
|
10329
|
+
# false.
|
|
10330
|
+
# Corresponds to the JSON property `enabled`
|
|
10331
|
+
# @return [Boolean]
|
|
10332
|
+
attr_accessor :enabled
|
|
10333
|
+
alias_method :enabled?, :enabled
|
|
10334
|
+
|
|
10335
|
+
# ISO-8601 timestamp until which Spec Generation remains active (e.g. "2026-12-
|
|
10336
|
+
# 31T23:59:59Z"). Empty string is the canonical "not configured" sentinel and
|
|
10337
|
+
# MUST be treated by the consumer as "expired" (short-circuit before parsing).
|
|
10338
|
+
# Default: empty string.
|
|
10339
|
+
# Corresponds to the JSON property `enabledUntil`
|
|
10340
|
+
# @return [String]
|
|
10341
|
+
attr_accessor :enabled_until
|
|
10342
|
+
|
|
10343
|
+
# Full Pub/Sub topic path in the Apigee Runtime Tenant Project where the message
|
|
10344
|
+
# processor publishes captured RawObservation messages. Format: projects/`
|
|
10345
|
+
# project`/topics/`topic`. Empty string is the "not configured" sentinel; the
|
|
10346
|
+
# consumer short-circuits publishing when empty. Default: empty string.
|
|
10347
|
+
# Corresponds to the JSON property `rawObservationsPubsubTopic`
|
|
10348
|
+
# @return [String]
|
|
10349
|
+
attr_accessor :raw_observations_pubsub_topic
|
|
10350
|
+
|
|
10351
|
+
# Fraction of eligible transactions to capture, in [0.0, 1.0]. The consumer
|
|
10352
|
+
# enforces an internal upper-bound clamp independently of this field. Default: 0.
|
|
10353
|
+
# 0 (omitted from JSON per proto3 default-scalar-omission; the consumer's field
|
|
10354
|
+
# initializer supplies the effective 0.01 fallback).
|
|
10355
|
+
# Corresponds to the JSON property `samplingRate`
|
|
10356
|
+
# @return [Float]
|
|
10357
|
+
attr_accessor :sampling_rate
|
|
10358
|
+
|
|
10359
|
+
def initialize(**args)
|
|
10360
|
+
update!(**args)
|
|
10361
|
+
end
|
|
10362
|
+
|
|
10363
|
+
# Update properties of this object
|
|
10364
|
+
def update!(**args)
|
|
10365
|
+
@api_observations_pubsub_topic = args[:api_observations_pubsub_topic] if args.key?(:api_observations_pubsub_topic)
|
|
10366
|
+
@enabled = args[:enabled] if args.key?(:enabled)
|
|
10367
|
+
@enabled_until = args[:enabled_until] if args.key?(:enabled_until)
|
|
10368
|
+
@raw_observations_pubsub_topic = args[:raw_observations_pubsub_topic] if args.key?(:raw_observations_pubsub_topic)
|
|
10369
|
+
@sampling_rate = args[:sampling_rate] if args.key?(:sampling_rate)
|
|
10370
|
+
end
|
|
10371
|
+
end
|
|
10372
|
+
|
|
10373
|
+
# NEXT ID: 13 RuntimeTraceConfig defines the configurations for distributed
|
|
10303
10374
|
# trace in an environment.
|
|
10304
10375
|
class GoogleCloudApigeeV1RuntimeTraceConfig
|
|
10305
10376
|
include Google::Apis::Core::Hashable
|
|
@@ -10316,6 +10387,20 @@ module Google
|
|
|
10316
10387
|
# @return [String]
|
|
10317
10388
|
attr_accessor :exporter
|
|
10318
10389
|
|
|
10390
|
+
# Runtime-side view of `TraceConfig.OtelMtlsConfig` for the outbound OTel
|
|
10391
|
+
# Collector mTLS connection. Shape mirrors `TlsInfoConfig` (in this same file,
|
|
10392
|
+
# above) exactly. The oneof discriminates between a direct keystore reference
|
|
10393
|
+
# and a `ref://`-indirected reference; both are surfaced on the wire without
|
|
10394
|
+
# flattening. The referenced keystore must also appear in `EnvironmentConfig.
|
|
10395
|
+
# keystores[]` so the underlying alias bytes are available at runtime.
|
|
10396
|
+
# Referential integrity is enforced at trace-config update time: any PATCH that
|
|
10397
|
+
# references a keystore not already present is rejected in the same transaction
|
|
10398
|
+
# that would persist the update, and keystore/alias/reference deletion is
|
|
10399
|
+
# blocked while a trace-config references it.
|
|
10400
|
+
# Corresponds to the JSON property `mTlsConfig`
|
|
10401
|
+
# @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1RuntimeTraceConfigOtelMtlsConfig]
|
|
10402
|
+
attr_accessor :m_tls_config
|
|
10403
|
+
|
|
10319
10404
|
# Name of the trace config in the following format: `organizations/`org`/
|
|
10320
10405
|
# environment/`env`/traceConfig`
|
|
10321
10406
|
# Corresponds to the JSON property `name`
|
|
@@ -10333,6 +10418,14 @@ module Google
|
|
|
10333
10418
|
attr_accessor :open_telemetry_protocol_enabled
|
|
10334
10419
|
alias_method :open_telemetry_protocol_enabled?, :open_telemetry_protocol_enabled
|
|
10335
10420
|
|
|
10421
|
+
# Optional. Security scheme for the outbound connection to the customer-owned
|
|
10422
|
+
# OpenTelemetry Collector. Only meaningful when `exporter` is `
|
|
10423
|
+
# OPEN_TELEMETRY_COLLECTOR`. Runtime consumers unaware of a value should treat
|
|
10424
|
+
# it as `OTEL_COLLECTOR_SECURITY_SCHEME_UNSPECIFIED` (== NONE).
|
|
10425
|
+
# Corresponds to the JSON property `otelCollectorSecurityScheme`
|
|
10426
|
+
# @return [String]
|
|
10427
|
+
attr_accessor :otel_collector_security_scheme
|
|
10428
|
+
|
|
10336
10429
|
# List of trace configuration overrides for spicific API proxies.
|
|
10337
10430
|
# Corresponds to the JSON property `overrides`
|
|
10338
10431
|
# @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1RuntimeTraceConfigOverride>]
|
|
@@ -10376,8 +10469,10 @@ module Google
|
|
|
10376
10469
|
def update!(**args)
|
|
10377
10470
|
@endpoint = args[:endpoint] if args.key?(:endpoint)
|
|
10378
10471
|
@exporter = args[:exporter] if args.key?(:exporter)
|
|
10472
|
+
@m_tls_config = args[:m_tls_config] if args.key?(:m_tls_config)
|
|
10379
10473
|
@name = args[:name] if args.key?(:name)
|
|
10380
10474
|
@open_telemetry_protocol_enabled = args[:open_telemetry_protocol_enabled] if args.key?(:open_telemetry_protocol_enabled)
|
|
10475
|
+
@otel_collector_security_scheme = args[:otel_collector_security_scheme] if args.key?(:otel_collector_security_scheme)
|
|
10381
10476
|
@overrides = args[:overrides] if args.key?(:overrides)
|
|
10382
10477
|
@revision_create_time = args[:revision_create_time] if args.key?(:revision_create_time)
|
|
10383
10478
|
@revision_id = args[:revision_id] if args.key?(:revision_id)
|
|
@@ -10387,6 +10482,57 @@ module Google
|
|
|
10387
10482
|
end
|
|
10388
10483
|
end
|
|
10389
10484
|
|
|
10485
|
+
# Runtime-side view of `TraceConfig.OtelMtlsConfig` for the outbound OTel
|
|
10486
|
+
# Collector mTLS connection. Shape mirrors `TlsInfoConfig` (in this same file,
|
|
10487
|
+
# above) exactly. The oneof discriminates between a direct keystore reference
|
|
10488
|
+
# and a `ref://`-indirected reference; both are surfaced on the wire without
|
|
10489
|
+
# flattening. The referenced keystore must also appear in `EnvironmentConfig.
|
|
10490
|
+
# keystores[]` so the underlying alias bytes are available at runtime.
|
|
10491
|
+
# Referential integrity is enforced at trace-config update time: any PATCH that
|
|
10492
|
+
# references a keystore not already present is rejected in the same transaction
|
|
10493
|
+
# that would persist the update, and keystore/alias/reference deletion is
|
|
10494
|
+
# blocked while a trace-config references it.
|
|
10495
|
+
class GoogleCloudApigeeV1RuntimeTraceConfigOtelMtlsConfig
|
|
10496
|
+
include Google::Apis::Core::Hashable
|
|
10497
|
+
|
|
10498
|
+
# Full alias resource name of the client-side key/cert alias. Format: `
|
|
10499
|
+
# organizations/`org`/environments/`env`/keystores/`keystore`/aliases/`alias``
|
|
10500
|
+
# Set when the customer supplied a plain keystore ID in `TraceConfig.
|
|
10501
|
+
# OtelMtlsConfig.key_store`.
|
|
10502
|
+
# Corresponds to the JSON property `keyAlias`
|
|
10503
|
+
# @return [String]
|
|
10504
|
+
attr_accessor :key_alias
|
|
10505
|
+
|
|
10506
|
+
# Reference name and alias-id pair. Set when the customer supplied a `ref://`
|
|
10507
|
+
# referenceID`` URI in `TraceConfig.OtelMtlsConfig.key_store`. Resolved via the
|
|
10508
|
+
# References catalog the same way as `TlsInfoConfig.key_alias_reference` in
|
|
10509
|
+
# target-server TLS. Reuses the top-level `KeyAliasReference` message defined
|
|
10510
|
+
# for `TlsInfoConfig` above; no new message.
|
|
10511
|
+
# Corresponds to the JSON property `keyAliasReference`
|
|
10512
|
+
# @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1KeyAliasReference]
|
|
10513
|
+
attr_accessor :key_alias_reference
|
|
10514
|
+
|
|
10515
|
+
# Full resource name of the truststore holding the CA(s) that signed the OTel
|
|
10516
|
+
# Collector's server certificate. Either a keystore or a reference resource name,
|
|
10517
|
+
# mirroring `TlsInfoConfig.trust_store` above: `organizations/`org`/
|
|
10518
|
+
# environments/`env`/keystores/`keystore`` `organizations/`org`/environments/`
|
|
10519
|
+
# env`/references/`reference``
|
|
10520
|
+
# Corresponds to the JSON property `trustStore`
|
|
10521
|
+
# @return [String]
|
|
10522
|
+
attr_accessor :trust_store
|
|
10523
|
+
|
|
10524
|
+
def initialize(**args)
|
|
10525
|
+
update!(**args)
|
|
10526
|
+
end
|
|
10527
|
+
|
|
10528
|
+
# Update properties of this object
|
|
10529
|
+
def update!(**args)
|
|
10530
|
+
@key_alias = args[:key_alias] if args.key?(:key_alias)
|
|
10531
|
+
@key_alias_reference = args[:key_alias_reference] if args.key?(:key_alias_reference)
|
|
10532
|
+
@trust_store = args[:trust_store] if args.key?(:trust_store)
|
|
10533
|
+
end
|
|
10534
|
+
end
|
|
10535
|
+
|
|
10390
10536
|
# NEXT ID: 10 Trace configuration override for a specific API proxy in an
|
|
10391
10537
|
# environment.
|
|
10392
10538
|
class GoogleCloudApigeeV1RuntimeTraceConfigOverride
|
|
@@ -13094,6 +13240,34 @@ module Google
|
|
|
13094
13240
|
# @return [String]
|
|
13095
13241
|
attr_accessor :exporter
|
|
13096
13242
|
|
|
13243
|
+
# OtelMtlsConfig configures mutual TLS for the outbound OTel Collector
|
|
13244
|
+
# connection by referencing already-uploaded Keystore/Truststore aliases. Key/
|
|
13245
|
+
# cert material is uploaded via the existing Keystore Alias APIs (POST .../
|
|
13246
|
+
# keystores/`ks`/aliases), the same APIs used to configure mTLS for `
|
|
13247
|
+
# TargetServer.tls_info`. Only the resource IDs of those aliases live in this
|
|
13248
|
+
# message; no secret material is inlined into TraceConfig. Field shape mirrors `
|
|
13249
|
+
# TlsInfo` used by `TargetServer.tls_info`: - `key_store` and `trust_store`
|
|
13250
|
+
# accept either a plain keystore ID or a `ref://`referenceID`` URI (an
|
|
13251
|
+
# environment-scoped Reference whose `resource_type` is `KeyStore`/`TrustStore`).
|
|
13252
|
+
# References enable rotation without editing the TraceConfig itself. - `
|
|
13253
|
+
# key_alias` is the plain alias ID within `key_store`. Fields that would
|
|
13254
|
+
# normally appear on `TlsInfo` (enabled, client_auth_enabled, protocols, enforce,
|
|
13255
|
+
# ignore_validation_errors) are intentionally omitted from this customer
|
|
13256
|
+
# surface. The runtime enforces secure defaults: - Mutual TLS is always required
|
|
13257
|
+
# (both server AND client cert exchanged). - Server certificate validation is
|
|
13258
|
+
# always strict (no ignoring errors). - TLS 1.2 and TLS 1.3 are enabled; older
|
|
13259
|
+
# versions are rejected.
|
|
13260
|
+
# Corresponds to the JSON property `mtlsConfig`
|
|
13261
|
+
# @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1TraceConfigOtelMtlsConfig]
|
|
13262
|
+
attr_accessor :mtls_config
|
|
13263
|
+
|
|
13264
|
+
# Optional. The security scheme for the OTel Collector endpoint. Defaults to
|
|
13265
|
+
# NONE (unauthenticated OTLP/HTTP), preserving today's behavior for existing
|
|
13266
|
+
# configurations. Only applicable when `exporter` == OPEN_TELEMETRY_COLLECTOR.
|
|
13267
|
+
# Corresponds to the JSON property `otelCollectorSecurityScheme`
|
|
13268
|
+
# @return [String]
|
|
13269
|
+
attr_accessor :otel_collector_security_scheme
|
|
13270
|
+
|
|
13097
13271
|
# TraceSamplingConfig represents the detail settings of distributed tracing.
|
|
13098
13272
|
# Only the fields that are defined in the distributed trace configuration can be
|
|
13099
13273
|
# overridden using the distribute trace configuration override APIs.
|
|
@@ -13124,12 +13298,70 @@ module Google
|
|
|
13124
13298
|
def update!(**args)
|
|
13125
13299
|
@endpoint = args[:endpoint] if args.key?(:endpoint)
|
|
13126
13300
|
@exporter = args[:exporter] if args.key?(:exporter)
|
|
13301
|
+
@mtls_config = args[:mtls_config] if args.key?(:mtls_config)
|
|
13302
|
+
@otel_collector_security_scheme = args[:otel_collector_security_scheme] if args.key?(:otel_collector_security_scheme)
|
|
13127
13303
|
@sampling_config = args[:sampling_config] if args.key?(:sampling_config)
|
|
13128
13304
|
@span_semantics = args[:span_semantics] if args.key?(:span_semantics)
|
|
13129
13305
|
@trace_protocol = args[:trace_protocol] if args.key?(:trace_protocol)
|
|
13130
13306
|
end
|
|
13131
13307
|
end
|
|
13132
13308
|
|
|
13309
|
+
# OtelMtlsConfig configures mutual TLS for the outbound OTel Collector
|
|
13310
|
+
# connection by referencing already-uploaded Keystore/Truststore aliases. Key/
|
|
13311
|
+
# cert material is uploaded via the existing Keystore Alias APIs (POST .../
|
|
13312
|
+
# keystores/`ks`/aliases), the same APIs used to configure mTLS for `
|
|
13313
|
+
# TargetServer.tls_info`. Only the resource IDs of those aliases live in this
|
|
13314
|
+
# message; no secret material is inlined into TraceConfig. Field shape mirrors `
|
|
13315
|
+
# TlsInfo` used by `TargetServer.tls_info`: - `key_store` and `trust_store`
|
|
13316
|
+
# accept either a plain keystore ID or a `ref://`referenceID`` URI (an
|
|
13317
|
+
# environment-scoped Reference whose `resource_type` is `KeyStore`/`TrustStore`).
|
|
13318
|
+
# References enable rotation without editing the TraceConfig itself. - `
|
|
13319
|
+
# key_alias` is the plain alias ID within `key_store`. Fields that would
|
|
13320
|
+
# normally appear on `TlsInfo` (enabled, client_auth_enabled, protocols, enforce,
|
|
13321
|
+
# ignore_validation_errors) are intentionally omitted from this customer
|
|
13322
|
+
# surface. The runtime enforces secure defaults: - Mutual TLS is always required
|
|
13323
|
+
# (both server AND client cert exchanged). - Server certificate validation is
|
|
13324
|
+
# always strict (no ignoring errors). - TLS 1.2 and TLS 1.3 are enabled; older
|
|
13325
|
+
# versions are rejected.
|
|
13326
|
+
class GoogleCloudApigeeV1TraceConfigOtelMtlsConfig
|
|
13327
|
+
include Google::Apis::Core::Hashable
|
|
13328
|
+
|
|
13329
|
+
# Required. Plain alias ID within `key_store` that contains the client key/cert
|
|
13330
|
+
# used for mTLS.
|
|
13331
|
+
# Corresponds to the JSON property `keyAlias`
|
|
13332
|
+
# @return [String]
|
|
13333
|
+
attr_accessor :key_alias
|
|
13334
|
+
|
|
13335
|
+
# Required. Keystore holding the client-side key/cert alias. Accepts either a
|
|
13336
|
+
# plain keystore ID (e.g. `my-keystore`) resolving to `organizations/`org`/
|
|
13337
|
+
# environments/`env`/keystores/`key_store``, or a reference URI of the form `ref:
|
|
13338
|
+
# //`referenceID`` that points to a Reference whose `resource_type` is `KeyStore`
|
|
13339
|
+
# .
|
|
13340
|
+
# Corresponds to the JSON property `keyStore`
|
|
13341
|
+
# @return [String]
|
|
13342
|
+
attr_accessor :key_store
|
|
13343
|
+
|
|
13344
|
+
# Required. Truststore holding the CA(s) that signed the OTel Collector's server
|
|
13345
|
+
# certificate. Accepts either a plain keystore ID (e.g. `my-truststore`)
|
|
13346
|
+
# resolving to `organizations/`org`/environments/`env`/keystores/`trust_store``,
|
|
13347
|
+
# or a reference URI of the form `ref://`referenceID`` that points to a
|
|
13348
|
+
# Reference whose `resource_type` is `KeyStore` (used as a truststore).
|
|
13349
|
+
# Corresponds to the JSON property `trustStore`
|
|
13350
|
+
# @return [String]
|
|
13351
|
+
attr_accessor :trust_store
|
|
13352
|
+
|
|
13353
|
+
def initialize(**args)
|
|
13354
|
+
update!(**args)
|
|
13355
|
+
end
|
|
13356
|
+
|
|
13357
|
+
# Update properties of this object
|
|
13358
|
+
def update!(**args)
|
|
13359
|
+
@key_alias = args[:key_alias] if args.key?(:key_alias)
|
|
13360
|
+
@key_store = args[:key_store] if args.key?(:key_store)
|
|
13361
|
+
@trust_store = args[:trust_store] if args.key?(:trust_store)
|
|
13362
|
+
end
|
|
13363
|
+
end
|
|
13364
|
+
|
|
13133
13365
|
# A representation of a configuration override.
|
|
13134
13366
|
class GoogleCloudApigeeV1TraceConfigOverride
|
|
13135
13367
|
include Google::Apis::Core::Hashable
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module ApigeeV1
|
|
18
18
|
# Version of the google-apis-apigee_v1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.127.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.19.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260807"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -1582,12 +1582,24 @@ module Google
|
|
|
1582
1582
|
include Google::Apis::Core::JsonObjectSupport
|
|
1583
1583
|
end
|
|
1584
1584
|
|
|
1585
|
+
class GoogleCloudApigeeV1RuntimeSpecGenerationAddonConfig
|
|
1586
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1587
|
+
|
|
1588
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1589
|
+
end
|
|
1590
|
+
|
|
1585
1591
|
class GoogleCloudApigeeV1RuntimeTraceConfig
|
|
1586
1592
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1587
1593
|
|
|
1588
1594
|
include Google::Apis::Core::JsonObjectSupport
|
|
1589
1595
|
end
|
|
1590
1596
|
|
|
1597
|
+
class GoogleCloudApigeeV1RuntimeTraceConfigOtelMtlsConfig
|
|
1598
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1599
|
+
|
|
1600
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1601
|
+
end
|
|
1602
|
+
|
|
1591
1603
|
class GoogleCloudApigeeV1RuntimeTraceConfigOverride
|
|
1592
1604
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1593
1605
|
|
|
@@ -1960,6 +1972,12 @@ module Google
|
|
|
1960
1972
|
include Google::Apis::Core::JsonObjectSupport
|
|
1961
1973
|
end
|
|
1962
1974
|
|
|
1975
|
+
class GoogleCloudApigeeV1TraceConfigOtelMtlsConfig
|
|
1976
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1977
|
+
|
|
1978
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1979
|
+
end
|
|
1980
|
+
|
|
1963
1981
|
class GoogleCloudApigeeV1TraceConfigOverride
|
|
1964
1982
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1965
1983
|
|
|
@@ -4830,6 +4848,8 @@ module Google
|
|
|
4830
4848
|
|
|
4831
4849
|
property :name, as: 'name'
|
|
4832
4850
|
property :revision_id, as: 'revisionId'
|
|
4851
|
+
property :spec_generation_config, as: 'specGenerationConfig', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1RuntimeSpecGenerationAddonConfig, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1RuntimeSpecGenerationAddonConfig::Representation
|
|
4852
|
+
|
|
4833
4853
|
property :uid, as: 'uid'
|
|
4834
4854
|
end
|
|
4835
4855
|
end
|
|
@@ -4859,13 +4879,27 @@ module Google
|
|
|
4859
4879
|
end
|
|
4860
4880
|
end
|
|
4861
4881
|
|
|
4882
|
+
class GoogleCloudApigeeV1RuntimeSpecGenerationAddonConfig
|
|
4883
|
+
# @private
|
|
4884
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
4885
|
+
property :api_observations_pubsub_topic, as: 'apiObservationsPubsubTopic'
|
|
4886
|
+
property :enabled, as: 'enabled'
|
|
4887
|
+
property :enabled_until, as: 'enabledUntil'
|
|
4888
|
+
property :raw_observations_pubsub_topic, as: 'rawObservationsPubsubTopic'
|
|
4889
|
+
property :sampling_rate, as: 'samplingRate'
|
|
4890
|
+
end
|
|
4891
|
+
end
|
|
4892
|
+
|
|
4862
4893
|
class GoogleCloudApigeeV1RuntimeTraceConfig
|
|
4863
4894
|
# @private
|
|
4864
4895
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
4865
4896
|
property :endpoint, as: 'endpoint'
|
|
4866
4897
|
property :exporter, as: 'exporter'
|
|
4898
|
+
property :m_tls_config, as: 'mTlsConfig', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1RuntimeTraceConfigOtelMtlsConfig, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1RuntimeTraceConfigOtelMtlsConfig::Representation
|
|
4899
|
+
|
|
4867
4900
|
property :name, as: 'name'
|
|
4868
4901
|
property :open_telemetry_protocol_enabled, as: 'openTelemetryProtocolEnabled'
|
|
4902
|
+
property :otel_collector_security_scheme, as: 'otelCollectorSecurityScheme'
|
|
4869
4903
|
collection :overrides, as: 'overrides', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1RuntimeTraceConfigOverride, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1RuntimeTraceConfigOverride::Representation
|
|
4870
4904
|
|
|
4871
4905
|
property :revision_create_time, as: 'revisionCreateTime'
|
|
@@ -4877,6 +4911,16 @@ module Google
|
|
|
4877
4911
|
end
|
|
4878
4912
|
end
|
|
4879
4913
|
|
|
4914
|
+
class GoogleCloudApigeeV1RuntimeTraceConfigOtelMtlsConfig
|
|
4915
|
+
# @private
|
|
4916
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
4917
|
+
property :key_alias, as: 'keyAlias'
|
|
4918
|
+
property :key_alias_reference, as: 'keyAliasReference', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1KeyAliasReference, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1KeyAliasReference::Representation
|
|
4919
|
+
|
|
4920
|
+
property :trust_store, as: 'trustStore'
|
|
4921
|
+
end
|
|
4922
|
+
end
|
|
4923
|
+
|
|
4880
4924
|
class GoogleCloudApigeeV1RuntimeTraceConfigOverride
|
|
4881
4925
|
# @private
|
|
4882
4926
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -5575,6 +5619,9 @@ module Google
|
|
|
5575
5619
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
5576
5620
|
property :endpoint, as: 'endpoint'
|
|
5577
5621
|
property :exporter, as: 'exporter'
|
|
5622
|
+
property :mtls_config, as: 'mtlsConfig', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1TraceConfigOtelMtlsConfig, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1TraceConfigOtelMtlsConfig::Representation
|
|
5623
|
+
|
|
5624
|
+
property :otel_collector_security_scheme, as: 'otelCollectorSecurityScheme'
|
|
5578
5625
|
property :sampling_config, as: 'samplingConfig', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1TraceSamplingConfig, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1TraceSamplingConfig::Representation
|
|
5579
5626
|
|
|
5580
5627
|
property :span_semantics, as: 'spanSemantics'
|
|
@@ -5582,6 +5629,15 @@ module Google
|
|
|
5582
5629
|
end
|
|
5583
5630
|
end
|
|
5584
5631
|
|
|
5632
|
+
class GoogleCloudApigeeV1TraceConfigOtelMtlsConfig
|
|
5633
|
+
# @private
|
|
5634
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
5635
|
+
property :key_alias, as: 'keyAlias'
|
|
5636
|
+
property :key_store, as: 'keyStore'
|
|
5637
|
+
property :trust_store, as: 'trustStore'
|
|
5638
|
+
end
|
|
5639
|
+
end
|
|
5640
|
+
|
|
5585
5641
|
class GoogleCloudApigeeV1TraceConfigOverride
|
|
5586
5642
|
# @private
|
|
5587
5643
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -559,7 +559,7 @@ module Google
|
|
|
559
559
|
# @param [Google::Apis::ApigeeV1::GoogleCloudApigeeV1ControlPlaneAccess] google_cloud_apigee_v1_control_plane_access_object
|
|
560
560
|
# @param [String] update_mask
|
|
561
561
|
# List of fields to be updated. Fields that can be updated:
|
|
562
|
-
# synchronizer_identities,
|
|
562
|
+
# synchronizer_identities, analytics_publisher_identities, watcher_identities.
|
|
563
563
|
# @param [String] fields
|
|
564
564
|
# Selector specifying which fields to include in a partial response.
|
|
565
565
|
# @param [String] quota_user
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-apigee_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.127.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -57,7 +57,7 @@ licenses:
|
|
|
57
57
|
metadata:
|
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-apigee_v1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-apigee_v1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-apigee_v1/v0.127.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-apigee_v1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|