google-apis-apigee_v1 0.2.0 → 0.7.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 +21 -0
- data/lib/google/apis/apigee_v1.rb +1 -2
- data/lib/google/apis/apigee_v1/classes.rb +314 -46
- data/lib/google/apis/apigee_v1/gem_version.rb +3 -3
- data/lib/google/apis/apigee_v1/representations.rb +114 -0
- data/lib/google/apis/apigee_v1/service.rb +305 -47
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bdd24dfc841a257c8ea69fa05e5ac522d8caa12f9a37f13168ac1c4765742448
|
4
|
+
data.tar.gz: 39fffa05f235571d30ee573c10c382390e19686a762577e4ec32f88401bcdfba
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 66c745a214a604df8d0b1d244dd6c39e0b339f13971a83324ce7af2a3348a70dc8f661dfec78f3ee5ea17374bb856029be366c01ddce523b37241e3fbbe70278
|
7
|
+
data.tar.gz: 27a58b214f87d1a86018995368615e2b5ba453c7ed11734bfb409bd77142d94c5bbe3b79504bb2f0dbd3c3fc6995a1b250e3d2a54977265e948dab58c73b6312
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,26 @@
|
|
1
1
|
# Release history for google-apis-apigee_v1
|
2
2
|
|
3
|
+
### v0.7.0 (2021-03-16)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20210312
|
6
|
+
|
7
|
+
### v0.6.0 (2021-03-09)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20210305
|
10
|
+
* Regenerated using generator version 0.2.0
|
11
|
+
|
12
|
+
### v0.5.0 (2021-03-04)
|
13
|
+
|
14
|
+
* Regenerated from discovery document revision 20210225
|
15
|
+
|
16
|
+
### v0.4.0 (2021-02-24)
|
17
|
+
|
18
|
+
* Regenerated from discovery document revision 20210219
|
19
|
+
|
20
|
+
### v0.3.0 (2021-02-09)
|
21
|
+
|
22
|
+
* Regenerated from discovery document revision 20210206
|
23
|
+
|
3
24
|
### v0.2.0 (2021-02-03)
|
4
25
|
|
5
26
|
* Regenerated from discovery document revision 20210201
|
@@ -24,8 +24,7 @@ module Google
|
|
24
24
|
# Use the Apigee API to programmatically develop and manage APIs with a set of
|
25
25
|
# RESTful operations. Develop and secure API proxies, deploy and undeploy API
|
26
26
|
# proxy revisions, monitor APIs, configure environments, manage users, and more.
|
27
|
-
#
|
28
|
-
# for a time period of 60 days.
|
27
|
+
# Note: This product is available as a free trial for a time period of 60 days.
|
29
28
|
#
|
30
29
|
# @see https://cloud.google.com/apigee-api-management/
|
31
30
|
module ApigeeV1
|
@@ -423,6 +423,13 @@ module Google
|
|
423
423
|
# @return [Array<String>]
|
424
424
|
attr_accessor :environments
|
425
425
|
|
426
|
+
# List of graphQL operation configuration details associated with Apigee API
|
427
|
+
# proxies or remote services. Remote services are non-Apigee proxies, such as
|
428
|
+
# Istio-Envoy.
|
429
|
+
# Corresponds to the JSON property `graphqlOperationGroup`
|
430
|
+
# @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1GraphQlOperationGroup]
|
431
|
+
attr_accessor :graphql_operation_group
|
432
|
+
|
426
433
|
# Response only. Modified time of this environment as milliseconds since epoch.
|
427
434
|
# Corresponds to the JSON property `lastModifiedAt`
|
428
435
|
# @return [Fixnum]
|
@@ -490,6 +497,7 @@ module Google
|
|
490
497
|
@description = args[:description] if args.key?(:description)
|
491
498
|
@display_name = args[:display_name] if args.key?(:display_name)
|
492
499
|
@environments = args[:environments] if args.key?(:environments)
|
500
|
+
@graphql_operation_group = args[:graphql_operation_group] if args.key?(:graphql_operation_group)
|
493
501
|
@last_modified_at = args[:last_modified_at] if args.key?(:last_modified_at)
|
494
502
|
@name = args[:name] if args.key?(:name)
|
495
503
|
@operation_group = args[:operation_group] if args.key?(:operation_group)
|
@@ -1963,7 +1971,9 @@ module Google
|
|
1963
1971
|
# @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1InstanceDeploymentStatus>]
|
1964
1972
|
attr_accessor :instances
|
1965
1973
|
|
1966
|
-
# Status reported by runtime pods. This field is not populated for List APIs.
|
1974
|
+
# Status reported by runtime pods. This field is not populated for List APIs. **
|
1975
|
+
# Note**: **This field is deprecated**. Runtime versions 1.3 and above report
|
1976
|
+
# instance level status rather than pod status.
|
1967
1977
|
# Corresponds to the JSON property `pods`
|
1968
1978
|
# @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1PodStatus>]
|
1969
1979
|
attr_accessor :pods
|
@@ -1974,9 +1984,9 @@ module Google
|
|
1974
1984
|
attr_accessor :revision
|
1975
1985
|
|
1976
1986
|
# Conflicts in the desired state routing configuration. The presence of
|
1977
|
-
# conflicts does not cause the state to be ERROR
|
1978
|
-
# the
|
1979
|
-
# change, the state will transition to PROGRESSING until the latest
|
1987
|
+
# conflicts does not cause the state to be `ERROR`, but it will mean that some
|
1988
|
+
# of the deployment's base paths are not routed to its environment. If the
|
1989
|
+
# conflicts change, the state will transition to `PROGRESSING` until the latest
|
1980
1990
|
# configuration is rolled out to all instances. This field is not populated in
|
1981
1991
|
# List APIs.
|
1982
1992
|
# Corresponds to the JSON property `routeConflicts`
|
@@ -2014,8 +2024,8 @@ module Google
|
|
2014
2024
|
# request is to effect a routing change. The primary purposes of the routing
|
2015
2025
|
# messages are: 1) To inform users of routing changes that may have an effect on
|
2016
2026
|
# traffic currently being routed to other existing deployments. 2) To warn users
|
2017
|
-
# if some
|
2018
|
-
# deployment having already claimed that
|
2027
|
+
# if some base path in the proxy will not receive traffic due to an existing
|
2028
|
+
# deployment having already claimed that base path. The presence of routing
|
2019
2029
|
# conflicts/changes will not cause non-dry-run DeployApiProxy/UndeployApiProxy
|
2020
2030
|
# requests to be rejected.
|
2021
2031
|
class GoogleCloudApigeeV1DeploymentChangeReport
|
@@ -2026,7 +2036,7 @@ module Google
|
|
2026
2036
|
# @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1DeploymentChangeReportRoutingChange>]
|
2027
2037
|
attr_accessor :routing_changes
|
2028
2038
|
|
2029
|
-
# All
|
2039
|
+
# All base path conflicts detected for a deployment request.
|
2030
2040
|
# Corresponds to the JSON property `routingConflicts`
|
2031
2041
|
# @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1DeploymentChangeReportRoutingConflict>]
|
2032
2042
|
attr_accessor :routing_conflicts
|
@@ -2055,30 +2065,30 @@ module Google
|
|
2055
2065
|
class GoogleCloudApigeeV1DeploymentChangeReportRoutingChange
|
2056
2066
|
include Google::Apis::Core::Hashable
|
2057
2067
|
|
2058
|
-
#
|
2068
|
+
# Human-readable description of this routing change.
|
2059
2069
|
# Corresponds to the JSON property `description`
|
2060
2070
|
# @return [String]
|
2061
2071
|
attr_accessor :description
|
2062
2072
|
|
2063
|
-
#
|
2073
|
+
# Name of the environment group affected by this routing change.
|
2064
2074
|
# Corresponds to the JSON property `environmentGroup`
|
2065
2075
|
# @return [String]
|
2066
2076
|
attr_accessor :environment_group
|
2067
2077
|
|
2068
|
-
#
|
2078
|
+
# Tuple representing a base path and the deployment containing it.
|
2069
2079
|
# Corresponds to the JSON property `fromDeployment`
|
2070
2080
|
# @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1DeploymentChangeReportRoutingDeployment]
|
2071
2081
|
attr_accessor :from_deployment
|
2072
2082
|
|
2073
|
-
#
|
2074
|
-
#
|
2075
|
-
# supported for the operation.
|
2083
|
+
# Set to `true` if using sequenced rollout would make this routing change safer.
|
2084
|
+
# **Note**: This does not necessarily imply that automated sequenced rollout
|
2085
|
+
# mode is supported for the operation.
|
2076
2086
|
# Corresponds to the JSON property `shouldSequenceRollout`
|
2077
2087
|
# @return [Boolean]
|
2078
2088
|
attr_accessor :should_sequence_rollout
|
2079
2089
|
alias_method :should_sequence_rollout?, :should_sequence_rollout
|
2080
2090
|
|
2081
|
-
#
|
2091
|
+
# Tuple representing a base path and the deployment containing it.
|
2082
2092
|
# Corresponds to the JSON property `toDeployment`
|
2083
2093
|
# @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1DeploymentChangeReportRoutingDeployment]
|
2084
2094
|
attr_accessor :to_deployment
|
@@ -2098,21 +2108,21 @@ module Google
|
|
2098
2108
|
end
|
2099
2109
|
|
2100
2110
|
# Describes a routing conflict that may cause a deployment not to receive
|
2101
|
-
# traffic at some
|
2111
|
+
# traffic at some base path.
|
2102
2112
|
class GoogleCloudApigeeV1DeploymentChangeReportRoutingConflict
|
2103
2113
|
include Google::Apis::Core::Hashable
|
2104
2114
|
|
2105
|
-
#
|
2115
|
+
# Tuple representing a base path and the deployment containing it.
|
2106
2116
|
# Corresponds to the JSON property `conflictingDeployment`
|
2107
2117
|
# @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1DeploymentChangeReportRoutingDeployment]
|
2108
2118
|
attr_accessor :conflicting_deployment
|
2109
2119
|
|
2110
|
-
#
|
2120
|
+
# Human-readable description of this conflict.
|
2111
2121
|
# Corresponds to the JSON property `description`
|
2112
2122
|
# @return [String]
|
2113
2123
|
attr_accessor :description
|
2114
2124
|
|
2115
|
-
#
|
2125
|
+
# Name of the environment group in which this conflict exists.
|
2116
2126
|
# Corresponds to the JSON property `environmentGroup`
|
2117
2127
|
# @return [String]
|
2118
2128
|
attr_accessor :environment_group
|
@@ -2129,26 +2139,26 @@ module Google
|
|
2129
2139
|
end
|
2130
2140
|
end
|
2131
2141
|
|
2132
|
-
#
|
2142
|
+
# Tuple representing a base path and the deployment containing it.
|
2133
2143
|
class GoogleCloudApigeeV1DeploymentChangeReportRoutingDeployment
|
2134
2144
|
include Google::Apis::Core::Hashable
|
2135
2145
|
|
2136
|
-
#
|
2146
|
+
# Name of the deployed API proxy revision containing the base path.
|
2137
2147
|
# Corresponds to the JSON property `apiProxy`
|
2138
2148
|
# @return [String]
|
2139
2149
|
attr_accessor :api_proxy
|
2140
2150
|
|
2141
|
-
#
|
2151
|
+
# Base path receiving traffic.
|
2142
2152
|
# Corresponds to the JSON property `basepath`
|
2143
2153
|
# @return [String]
|
2144
2154
|
attr_accessor :basepath
|
2145
2155
|
|
2146
|
-
#
|
2156
|
+
# Name of the environment in which the proxy is deployed.
|
2147
2157
|
# Corresponds to the JSON property `environment`
|
2148
2158
|
# @return [String]
|
2149
2159
|
attr_accessor :environment
|
2150
2160
|
|
2151
|
-
#
|
2161
|
+
# Name of the deployed API proxy revision containing the base path.
|
2152
2162
|
# Corresponds to the JSON property `revision`
|
2153
2163
|
# @return [String]
|
2154
2164
|
attr_accessor :revision
|
@@ -2448,6 +2458,13 @@ module Google
|
|
2448
2458
|
# @return [Fixnum]
|
2449
2459
|
attr_accessor :expires_at
|
2450
2460
|
|
2461
|
+
# Input only. Expiration time, in seconds, for the consumer key. If not set or
|
2462
|
+
# left to the default value of `-1`, the API key never expires. The expiration
|
2463
|
+
# time can't be updated after it is set.
|
2464
|
+
# Corresponds to the JSON property `expiresInSeconds`
|
2465
|
+
# @return [Fixnum]
|
2466
|
+
attr_accessor :expires_in_seconds
|
2467
|
+
|
2451
2468
|
# Time the developer app was created in milliseconds since epoch.
|
2452
2469
|
# Corresponds to the JSON property `issuedAt`
|
2453
2470
|
# @return [Fixnum]
|
@@ -2475,6 +2492,7 @@ module Google
|
|
2475
2492
|
@consumer_key = args[:consumer_key] if args.key?(:consumer_key)
|
2476
2493
|
@consumer_secret = args[:consumer_secret] if args.key?(:consumer_secret)
|
2477
2494
|
@expires_at = args[:expires_at] if args.key?(:expires_at)
|
2495
|
+
@expires_in_seconds = args[:expires_in_seconds] if args.key?(:expires_in_seconds)
|
2478
2496
|
@issued_at = args[:issued_at] if args.key?(:issued_at)
|
2479
2497
|
@scopes = args[:scopes] if args.key?(:scopes)
|
2480
2498
|
@status = args[:status] if args.key?(:status)
|
@@ -2977,7 +2995,7 @@ module Google
|
|
2977
2995
|
|
2978
2996
|
# Optional. Flag that specifies whether execution should continue if the flow
|
2979
2997
|
# hook throws an exception. Set to `true` to continue execution. Set to `false`
|
2980
|
-
# to stop execution if the flow hook throws an exception.Defaults to `true`.
|
2998
|
+
# to stop execution if the flow hook throws an exception. Defaults to `true`.
|
2981
2999
|
# Corresponds to the JSON property `continueOnError`
|
2982
3000
|
# @return [Boolean]
|
2983
3001
|
attr_accessor :continue_on_error
|
@@ -3063,6 +3081,114 @@ module Google
|
|
3063
3081
|
end
|
3064
3082
|
end
|
3065
3083
|
|
3084
|
+
# GraphQLOperation represents the pairing of graphQL operation types and the
|
3085
|
+
# graphQL operation name.
|
3086
|
+
class GoogleCloudApigeeV1GraphQlOperation
|
3087
|
+
include Google::Apis::Core::Hashable
|
3088
|
+
|
3089
|
+
# GraphQL operation name, along with operation type which will be used to
|
3090
|
+
# associate quotas with. If no name is specified, the quota will be applied to
|
3091
|
+
# all graphQL operations irrespective of their operation names in the payload.
|
3092
|
+
# Corresponds to the JSON property `operation`
|
3093
|
+
# @return [String]
|
3094
|
+
attr_accessor :operation
|
3095
|
+
|
3096
|
+
# Required. `query`, `mutation` and `subscription` are the three operation types
|
3097
|
+
# offered by graphQL. Currently we support only `query` and `mutation`.
|
3098
|
+
# Corresponds to the JSON property `operationType`
|
3099
|
+
# @return [Array<String>]
|
3100
|
+
attr_accessor :operation_type
|
3101
|
+
|
3102
|
+
def initialize(**args)
|
3103
|
+
update!(**args)
|
3104
|
+
end
|
3105
|
+
|
3106
|
+
# Update properties of this object
|
3107
|
+
def update!(**args)
|
3108
|
+
@operation = args[:operation] if args.key?(:operation)
|
3109
|
+
@operation_type = args[:operation_type] if args.key?(:operation_type)
|
3110
|
+
end
|
3111
|
+
end
|
3112
|
+
|
3113
|
+
# GraphQLOperationConfig binds the resources in a proxy or remote service with
|
3114
|
+
# the graphQL operation and its associated quota enforcement.
|
3115
|
+
class GoogleCloudApigeeV1GraphQlOperationConfig
|
3116
|
+
include Google::Apis::Core::Hashable
|
3117
|
+
|
3118
|
+
# Required. API proxy endpoint or remote service name with which the graphQL
|
3119
|
+
# operation, and quota are associated.
|
3120
|
+
# Corresponds to the JSON property `apiSource`
|
3121
|
+
# @return [String]
|
3122
|
+
attr_accessor :api_source
|
3123
|
+
|
3124
|
+
# Custom attributes associated with the operation.
|
3125
|
+
# Corresponds to the JSON property `attributes`
|
3126
|
+
# @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1Attribute>]
|
3127
|
+
attr_accessor :attributes
|
3128
|
+
|
3129
|
+
# Required. List of graphQL name/Operation type pairs for the proxy/remote
|
3130
|
+
# service, upon which quota will applied. If GraphQLOperation operation has only
|
3131
|
+
# the operation type(s), that would imply that quota will be applied on all
|
3132
|
+
# graphQL requests irrespective of the graphQL name. **Note**: Currently, we can
|
3133
|
+
# specify only a single GraphQLOperation. Specifying more than one will result
|
3134
|
+
# in failure of the operation.
|
3135
|
+
# Corresponds to the JSON property `operations`
|
3136
|
+
# @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1GraphQlOperation>]
|
3137
|
+
attr_accessor :operations
|
3138
|
+
|
3139
|
+
# Quota contains the essential parameters needed that can be applied on a proxy/
|
3140
|
+
# remote service, resources and methods combination associated with this API
|
3141
|
+
# product. While setting of Quota is optional, setting it prevents requests from
|
3142
|
+
# exceeding the provisioned parameters.
|
3143
|
+
# Corresponds to the JSON property `quota`
|
3144
|
+
# @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1Quota]
|
3145
|
+
attr_accessor :quota
|
3146
|
+
|
3147
|
+
def initialize(**args)
|
3148
|
+
update!(**args)
|
3149
|
+
end
|
3150
|
+
|
3151
|
+
# Update properties of this object
|
3152
|
+
def update!(**args)
|
3153
|
+
@api_source = args[:api_source] if args.key?(:api_source)
|
3154
|
+
@attributes = args[:attributes] if args.key?(:attributes)
|
3155
|
+
@operations = args[:operations] if args.key?(:operations)
|
3156
|
+
@quota = args[:quota] if args.key?(:quota)
|
3157
|
+
end
|
3158
|
+
end
|
3159
|
+
|
3160
|
+
# List of graphQL operation configuration details associated with Apigee API
|
3161
|
+
# proxies or remote services. Remote services are non-Apigee proxies, such as
|
3162
|
+
# Istio-Envoy.
|
3163
|
+
class GoogleCloudApigeeV1GraphQlOperationGroup
|
3164
|
+
include Google::Apis::Core::Hashable
|
3165
|
+
|
3166
|
+
# Flag that specifes whether the configuration is for Apigee API proxy or a
|
3167
|
+
# remote service. Valid values are `proxy` or `remoteservice`. Defaults to `
|
3168
|
+
# proxy`. Set to `proxy` when Apigee API proxies are associated with the API
|
3169
|
+
# product. Set to `remoteservice` when non-Apigee proxies like Istio-Envoy are
|
3170
|
+
# associated with the API product.
|
3171
|
+
# Corresponds to the JSON property `operationConfigType`
|
3172
|
+
# @return [String]
|
3173
|
+
attr_accessor :operation_config_type
|
3174
|
+
|
3175
|
+
# Required. List of operation configurations for either Apigee API proxies or
|
3176
|
+
# other remote services that are associated with this API product.
|
3177
|
+
# Corresponds to the JSON property `operationConfigs`
|
3178
|
+
# @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1GraphQlOperationConfig>]
|
3179
|
+
attr_accessor :operation_configs
|
3180
|
+
|
3181
|
+
def initialize(**args)
|
3182
|
+
update!(**args)
|
3183
|
+
end
|
3184
|
+
|
3185
|
+
# Update properties of this object
|
3186
|
+
def update!(**args)
|
3187
|
+
@operation_config_type = args[:operation_config_type] if args.key?(:operation_config_type)
|
3188
|
+
@operation_configs = args[:operation_configs] if args.key?(:operation_configs)
|
3189
|
+
end
|
3190
|
+
end
|
3191
|
+
|
3066
3192
|
#
|
3067
3193
|
class GoogleCloudApigeeV1IngressConfig
|
3068
3194
|
include Google::Apis::Core::Hashable
|
@@ -3135,7 +3261,7 @@ module Google
|
|
3135
3261
|
# @return [String]
|
3136
3262
|
attr_accessor :display_name
|
3137
3263
|
|
3138
|
-
# Output only.
|
3264
|
+
# Output only. Internal hostname or IP address of the Apigee endpoint used by
|
3139
3265
|
# clients to connect to the service.
|
3140
3266
|
# Corresponds to the JSON property `host`
|
3141
3267
|
# @return [String]
|
@@ -3157,12 +3283,19 @@ module Google
|
|
3157
3283
|
# @return [String]
|
3158
3284
|
attr_accessor :name
|
3159
3285
|
|
3286
|
+
# Optional. Size of the CIDR block range that will be reserved by the instance.
|
3287
|
+
# PAID organizations support `SLASH_16` to `SLASH_20` and defaults to `SLASH_16`.
|
3288
|
+
# Evaluation organizations support only `SLASH_23`.
|
3289
|
+
# Corresponds to the JSON property `peeringCidrRange`
|
3290
|
+
# @return [String]
|
3291
|
+
attr_accessor :peering_cidr_range
|
3292
|
+
|
3160
3293
|
# Output only. Port number of the exposed Apigee endpoint.
|
3161
3294
|
# Corresponds to the JSON property `port`
|
3162
3295
|
# @return [String]
|
3163
3296
|
attr_accessor :port
|
3164
3297
|
|
3165
|
-
# Output only. State of the instance. Values other than ACTIVE means the
|
3298
|
+
# Output only. State of the instance. Values other than `ACTIVE` means the
|
3166
3299
|
# resource is not ready to use.
|
3167
3300
|
# Corresponds to the JSON property `state`
|
3168
3301
|
# @return [String]
|
@@ -3182,6 +3315,7 @@ module Google
|
|
3182
3315
|
@last_modified_at = args[:last_modified_at] if args.key?(:last_modified_at)
|
3183
3316
|
@location = args[:location] if args.key?(:location)
|
3184
3317
|
@name = args[:name] if args.key?(:name)
|
3318
|
+
@peering_cidr_range = args[:peering_cidr_range] if args.key?(:peering_cidr_range)
|
3185
3319
|
@port = args[:port] if args.key?(:port)
|
3186
3320
|
@state = args[:state] if args.key?(:state)
|
3187
3321
|
end
|
@@ -3228,8 +3362,8 @@ module Google
|
|
3228
3362
|
# @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1InstanceDeploymentStatusDeployedRevision>]
|
3229
3363
|
attr_accessor :deployed_revisions
|
3230
3364
|
|
3231
|
-
#
|
3232
|
-
#
|
3365
|
+
# Current routes deployed in the ingress routing table. A route which is missing
|
3366
|
+
# will appear in `missing_routes`.
|
3233
3367
|
# Corresponds to the JSON property `deployedRoutes`
|
3234
3368
|
# @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1InstanceDeploymentStatusDeployedRoute>]
|
3235
3369
|
attr_accessor :deployed_routes
|
@@ -3255,12 +3389,12 @@ module Google
|
|
3255
3389
|
class GoogleCloudApigeeV1InstanceDeploymentStatusDeployedRevision
|
3256
3390
|
include Google::Apis::Core::Hashable
|
3257
3391
|
|
3258
|
-
#
|
3392
|
+
# Percentage of MP replicas reporting this revision.
|
3259
3393
|
# Corresponds to the JSON property `percentage`
|
3260
3394
|
# @return [Fixnum]
|
3261
3395
|
attr_accessor :percentage
|
3262
3396
|
|
3263
|
-
#
|
3397
|
+
# API proxy revision reported as deployed.
|
3264
3398
|
# Corresponds to the JSON property `revision`
|
3265
3399
|
# @return [String]
|
3266
3400
|
attr_accessor :revision
|
@@ -3276,27 +3410,26 @@ module Google
|
|
3276
3410
|
end
|
3277
3411
|
end
|
3278
3412
|
|
3279
|
-
#
|
3413
|
+
# Route deployed in the ingress routing table.
|
3280
3414
|
class GoogleCloudApigeeV1InstanceDeploymentStatusDeployedRoute
|
3281
3415
|
include Google::Apis::Core::Hashable
|
3282
3416
|
|
3283
|
-
#
|
3417
|
+
# Base path in the routing table.
|
3284
3418
|
# Corresponds to the JSON property `basepath`
|
3285
3419
|
# @return [String]
|
3286
3420
|
attr_accessor :basepath
|
3287
3421
|
|
3288
|
-
#
|
3422
|
+
# Environment group where this route is installed.
|
3289
3423
|
# Corresponds to the JSON property `envgroup`
|
3290
3424
|
# @return [String]
|
3291
3425
|
attr_accessor :envgroup
|
3292
3426
|
|
3293
|
-
#
|
3294
|
-
# reported.
|
3427
|
+
# Destination environment. This will be empty if the route is not yet reported.
|
3295
3428
|
# Corresponds to the JSON property `environment`
|
3296
3429
|
# @return [String]
|
3297
3430
|
attr_accessor :environment
|
3298
3431
|
|
3299
|
-
#
|
3432
|
+
# Percentage of ingress replicas reporting this route.
|
3300
3433
|
# Corresponds to the JSON property `percentage`
|
3301
3434
|
# @return [Fixnum]
|
3302
3435
|
attr_accessor :percentage
|
@@ -3910,6 +4043,32 @@ module Google
|
|
3910
4043
|
end
|
3911
4044
|
end
|
3912
4045
|
|
4046
|
+
# Response for ListTraceConfigOverrides.
|
4047
|
+
class GoogleCloudApigeeV1ListTraceConfigOverridesResponse
|
4048
|
+
include Google::Apis::Core::Hashable
|
4049
|
+
|
4050
|
+
# Token value that can be passed as `page_token` to retrieve the next page of
|
4051
|
+
# content.
|
4052
|
+
# Corresponds to the JSON property `nextPageToken`
|
4053
|
+
# @return [String]
|
4054
|
+
attr_accessor :next_page_token
|
4055
|
+
|
4056
|
+
# List all trace configuration overrides in an environment.
|
4057
|
+
# Corresponds to the JSON property `traceConfigOverrides`
|
4058
|
+
# @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1TraceConfigOverride>]
|
4059
|
+
attr_accessor :trace_config_overrides
|
4060
|
+
|
4061
|
+
def initialize(**args)
|
4062
|
+
update!(**args)
|
4063
|
+
end
|
4064
|
+
|
4065
|
+
# Update properties of this object
|
4066
|
+
def update!(**args)
|
4067
|
+
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
4068
|
+
@trace_config_overrides = args[:trace_config_overrides] if args.key?(:trace_config_overrides)
|
4069
|
+
end
|
4070
|
+
end
|
4071
|
+
|
3913
4072
|
# This message type encapsulates additional information about query execution.
|
3914
4073
|
class GoogleCloudApigeeV1Metadata
|
3915
4074
|
include Google::Apis::Core::Hashable
|
@@ -3972,7 +4131,7 @@ module Google
|
|
3972
4131
|
class GoogleCloudApigeeV1NatAddress
|
3973
4132
|
include Google::Apis::Core::Hashable
|
3974
4133
|
|
3975
|
-
#
|
4134
|
+
# Output only. The static IPV4 address.
|
3976
4135
|
# Corresponds to the JSON property `ipAddress`
|
3977
4136
|
# @return [String]
|
3978
4137
|
attr_accessor :ip_address
|
@@ -3982,7 +4141,7 @@ module Google
|
|
3982
4141
|
# @return [String]
|
3983
4142
|
attr_accessor :name
|
3984
4143
|
|
3985
|
-
#
|
4144
|
+
# Output only. State of the nat address.
|
3986
4145
|
# Corresponds to the JSON property `state`
|
3987
4146
|
# @return [String]
|
3988
4147
|
attr_accessor :state
|
@@ -4241,9 +4400,15 @@ module Google
|
|
4241
4400
|
# Compute Engine network used for Service Networking to be peered with Apigee
|
4242
4401
|
# runtime instances. See [Getting started with the Service Networking API](https:
|
4243
4402
|
# //cloud.google.com/service-infrastructure/docs/service-networking/getting-
|
4244
|
-
# started). Valid only when [RuntimeType] is set to CLOUD
|
4245
|
-
#
|
4246
|
-
#
|
4403
|
+
# started). Valid only when [RuntimeType](#RuntimeType) is set to `CLOUD`. The
|
4404
|
+
# value must be set before the creation of a runtime instance and can be updated
|
4405
|
+
# only when there are no runtime instances. For example: `default`. Apigee also
|
4406
|
+
# supports shared VPC (that is, the host network project is not the same as the
|
4407
|
+
# one that is peering with Apigee). See [Shared VPC overview](https://cloud.
|
4408
|
+
# google.com/vpc/docs/shared-vpc). To use a shared VPC network, use the
|
4409
|
+
# following format: `projects/`host-project-id`/`region`/networks/`network-name``
|
4410
|
+
# . For example: `projects/my-sharedvpc-host/global/networks/mynetwork` **Note:**
|
4411
|
+
# Not supported for Apigee hybrid.
|
4247
4412
|
# Corresponds to the JSON property `authorizedNetwork`
|
4248
4413
|
# @return [String]
|
4249
4414
|
attr_accessor :authorized_network
|
@@ -4255,7 +4420,7 @@ module Google
|
|
4255
4420
|
attr_accessor :billing_type
|
4256
4421
|
|
4257
4422
|
# Output only. Base64-encoded public certificate for the root CA of the Apigee
|
4258
|
-
# organization. Valid only when [RuntimeType] is CLOUD
|
4423
|
+
# organization. Valid only when [RuntimeType](#RuntimeType) is `CLOUD`.
|
4259
4424
|
# Corresponds to the JSON property `caCertificate`
|
4260
4425
|
# NOTE: Values are automatically base64 encoded/decoded in the client library.
|
4261
4426
|
# @return [String]
|
@@ -4287,6 +4452,11 @@ module Google
|
|
4287
4452
|
# @return [Array<String>]
|
4288
4453
|
attr_accessor :environments
|
4289
4454
|
|
4455
|
+
# Output only. Time that the Apigee organization is scheduled for deletion.
|
4456
|
+
# Corresponds to the JSON property `expiresAt`
|
4457
|
+
# @return [Fixnum]
|
4458
|
+
attr_accessor :expires_at
|
4459
|
+
|
4290
4460
|
# Output only. Time that the Apigee organization was last modified in
|
4291
4461
|
# milliseconds since epoch.
|
4292
4462
|
# Corresponds to the JSON property `lastModifiedAt`
|
@@ -4298,7 +4468,7 @@ module Google
|
|
4298
4468
|
# @return [String]
|
4299
4469
|
attr_accessor :name
|
4300
4470
|
|
4301
|
-
#
|
4471
|
+
# Output only. Project ID associated with the Apigee organization.
|
4302
4472
|
# Corresponds to the JSON property `projectId`
|
4303
4473
|
# @return [String]
|
4304
4474
|
attr_accessor :project_id
|
@@ -4311,9 +4481,10 @@ module Google
|
|
4311
4481
|
|
4312
4482
|
# Cloud KMS key name used for encrypting the data that is stored and replicated
|
4313
4483
|
# across runtime instances. Update is not allowed after the organization is
|
4314
|
-
# created.
|
4315
|
-
#
|
4316
|
-
#
|
4484
|
+
# created. Required when [RuntimeType](#RuntimeType) is `CLOUD`. If not
|
4485
|
+
# specified when [RuntimeType](#RuntimeType) is `TRIAL`, a Google-Managed
|
4486
|
+
# encryption key will be used. For example: "projects/foo/locations/us/keyRings/
|
4487
|
+
# bar/cryptoKeys/baz". **Note:** Not supported for Apigee hybrid.
|
4317
4488
|
# Corresponds to the JSON property `runtimeDatabaseEncryptionKeyName`
|
4318
4489
|
# @return [String]
|
4319
4490
|
attr_accessor :runtime_database_encryption_key_name
|
@@ -4360,6 +4531,7 @@ module Google
|
|
4360
4531
|
@description = args[:description] if args.key?(:description)
|
4361
4532
|
@display_name = args[:display_name] if args.key?(:display_name)
|
4362
4533
|
@environments = args[:environments] if args.key?(:environments)
|
4534
|
+
@expires_at = args[:expires_at] if args.key?(:expires_at)
|
4363
4535
|
@last_modified_at = args[:last_modified_at] if args.key?(:last_modified_at)
|
4364
4536
|
@name = args[:name] if args.key?(:name)
|
4365
4537
|
@project_id = args[:project_id] if args.key?(:project_id)
|
@@ -6155,6 +6327,102 @@ module Google
|
|
6155
6327
|
end
|
6156
6328
|
end
|
6157
6329
|
|
6330
|
+
# TraceConfig defines the configurations in an environment of distributed trace.
|
6331
|
+
class GoogleCloudApigeeV1TraceConfig
|
6332
|
+
include Google::Apis::Core::Hashable
|
6333
|
+
|
6334
|
+
# Required. Endpoint of the exporter.
|
6335
|
+
# Corresponds to the JSON property `endpoint`
|
6336
|
+
# @return [String]
|
6337
|
+
attr_accessor :endpoint
|
6338
|
+
|
6339
|
+
# Required. Exporter that is used to view the distributed trace captured using
|
6340
|
+
# OpenCensus. An exporter sends traces to any backend that is capable of
|
6341
|
+
# consuming them. Recorded spans can be exported by registered exporters.
|
6342
|
+
# Corresponds to the JSON property `exporter`
|
6343
|
+
# @return [String]
|
6344
|
+
attr_accessor :exporter
|
6345
|
+
|
6346
|
+
# TraceSamplingConfig represents the detail settings of distributed tracing.
|
6347
|
+
# Only the fields that are defined in the distributed trace configuration can be
|
6348
|
+
# overridden using the distribute trace configuration override APIs.
|
6349
|
+
# Corresponds to the JSON property `samplingConfig`
|
6350
|
+
# @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1TraceSamplingConfig]
|
6351
|
+
attr_accessor :sampling_config
|
6352
|
+
|
6353
|
+
def initialize(**args)
|
6354
|
+
update!(**args)
|
6355
|
+
end
|
6356
|
+
|
6357
|
+
# Update properties of this object
|
6358
|
+
def update!(**args)
|
6359
|
+
@endpoint = args[:endpoint] if args.key?(:endpoint)
|
6360
|
+
@exporter = args[:exporter] if args.key?(:exporter)
|
6361
|
+
@sampling_config = args[:sampling_config] if args.key?(:sampling_config)
|
6362
|
+
end
|
6363
|
+
end
|
6364
|
+
|
6365
|
+
# A representation of a configuration override.
|
6366
|
+
class GoogleCloudApigeeV1TraceConfigOverride
|
6367
|
+
include Google::Apis::Core::Hashable
|
6368
|
+
|
6369
|
+
# ID of the API proxy that will have its trace configuration overridden.
|
6370
|
+
# Corresponds to the JSON property `apiProxy`
|
6371
|
+
# @return [String]
|
6372
|
+
attr_accessor :api_proxy
|
6373
|
+
|
6374
|
+
# ID of the trace configuration override specified as a system-generated UUID.
|
6375
|
+
# Corresponds to the JSON property `name`
|
6376
|
+
# @return [String]
|
6377
|
+
attr_accessor :name
|
6378
|
+
|
6379
|
+
# TraceSamplingConfig represents the detail settings of distributed tracing.
|
6380
|
+
# Only the fields that are defined in the distributed trace configuration can be
|
6381
|
+
# overridden using the distribute trace configuration override APIs.
|
6382
|
+
# Corresponds to the JSON property `samplingConfig`
|
6383
|
+
# @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1TraceSamplingConfig]
|
6384
|
+
attr_accessor :sampling_config
|
6385
|
+
|
6386
|
+
def initialize(**args)
|
6387
|
+
update!(**args)
|
6388
|
+
end
|
6389
|
+
|
6390
|
+
# Update properties of this object
|
6391
|
+
def update!(**args)
|
6392
|
+
@api_proxy = args[:api_proxy] if args.key?(:api_proxy)
|
6393
|
+
@name = args[:name] if args.key?(:name)
|
6394
|
+
@sampling_config = args[:sampling_config] if args.key?(:sampling_config)
|
6395
|
+
end
|
6396
|
+
end
|
6397
|
+
|
6398
|
+
# TraceSamplingConfig represents the detail settings of distributed tracing.
|
6399
|
+
# Only the fields that are defined in the distributed trace configuration can be
|
6400
|
+
# overridden using the distribute trace configuration override APIs.
|
6401
|
+
class GoogleCloudApigeeV1TraceSamplingConfig
|
6402
|
+
include Google::Apis::Core::Hashable
|
6403
|
+
|
6404
|
+
# Sampler of distributed tracing. OFF is the default value.
|
6405
|
+
# Corresponds to the JSON property `sampler`
|
6406
|
+
# @return [String]
|
6407
|
+
attr_accessor :sampler
|
6408
|
+
|
6409
|
+
# Field sampling rate. This value is only applicable when using the PROBABILITY
|
6410
|
+
# sampler. The supported values are > 0 and <= 0.5.
|
6411
|
+
# Corresponds to the JSON property `samplingRate`
|
6412
|
+
# @return [Float]
|
6413
|
+
attr_accessor :sampling_rate
|
6414
|
+
|
6415
|
+
def initialize(**args)
|
6416
|
+
update!(**args)
|
6417
|
+
end
|
6418
|
+
|
6419
|
+
# Update properties of this object
|
6420
|
+
def update!(**args)
|
6421
|
+
@sampler = args[:sampler] if args.key?(:sampler)
|
6422
|
+
@sampling_rate = args[:sampling_rate] if args.key?(:sampling_rate)
|
6423
|
+
end
|
6424
|
+
end
|
6425
|
+
|
6158
6426
|
# Details on why a resource update failed in the runtime.
|
6159
6427
|
class GoogleCloudApigeeV1UpdateError
|
6160
6428
|
include Google::Apis::Core::Hashable
|