google-apis-apigee_v1 0.3.0 → 0.8.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 +311 -63
- data/lib/google/apis/apigee_v1/gem_version.rb +3 -3
- data/lib/google/apis/apigee_v1/representations.rb +112 -0
- data/lib/google/apis/apigee_v1/service.rb +309 -46
- 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: baf740a36ac7116f1934c7d45b89e91093e2266f4bc04ec9ebc10524e9eb5f96
|
4
|
+
data.tar.gz: 4b009341ba4324292ef3d5576899b4cd0925f056de3b1ca51040400a1bd0d05b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9006c97449e2de2d93b9d4413111497725480da5ff8cc34754cbeed5edc4571974199ec78297a658cf44c14ce615840070444e705bbd6a3700bc46dc790f0faf
|
7
|
+
data.tar.gz: ca1a74aeedf8b769c0f98dff97aa82b849509e7cac2128f3af274cc9cb35b6d4fb76cf8a53a90d774d2387079bf2585ad5cef3ca0aec3b33fdceecda6ddf1961
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,26 @@
|
|
1
1
|
# Release history for google-apis-apigee_v1
|
2
2
|
|
3
|
+
### v0.8.0 (2021-03-23)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20210319
|
6
|
+
|
7
|
+
### v0.7.0 (2021-03-16)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20210312
|
10
|
+
|
11
|
+
### v0.6.0 (2021-03-09)
|
12
|
+
|
13
|
+
* Regenerated from discovery document revision 20210305
|
14
|
+
* Regenerated using generator version 0.2.0
|
15
|
+
|
16
|
+
### v0.5.0 (2021-03-04)
|
17
|
+
|
18
|
+
* Regenerated from discovery document revision 20210225
|
19
|
+
|
20
|
+
### v0.4.0 (2021-02-24)
|
21
|
+
|
22
|
+
* Regenerated from discovery document revision 20210219
|
23
|
+
|
3
24
|
### v0.3.0 (2021-02-09)
|
4
25
|
|
5
26
|
* Regenerated from discovery document revision 20210206
|
@@ -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
|
@@ -2985,7 +2995,7 @@ module Google
|
|
2985
2995
|
|
2986
2996
|
# Optional. Flag that specifies whether execution should continue if the flow
|
2987
2997
|
# hook throws an exception. Set to `true` to continue execution. Set to `false`
|
2988
|
-
# 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`.
|
2989
2999
|
# Corresponds to the JSON property `continueOnError`
|
2990
3000
|
# @return [Boolean]
|
2991
3001
|
attr_accessor :continue_on_error
|
@@ -3071,6 +3081,114 @@ module Google
|
|
3071
3081
|
end
|
3072
3082
|
end
|
3073
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 `operationTypes`
|
3099
|
+
# @return [Array<String>]
|
3100
|
+
attr_accessor :operation_types
|
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_types = args[:operation_types] if args.key?(:operation_types)
|
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
|
+
|
3074
3192
|
#
|
3075
3193
|
class GoogleCloudApigeeV1IngressConfig
|
3076
3194
|
include Google::Apis::Core::Hashable
|
@@ -3143,7 +3261,7 @@ module Google
|
|
3143
3261
|
# @return [String]
|
3144
3262
|
attr_accessor :display_name
|
3145
3263
|
|
3146
|
-
# Output only.
|
3264
|
+
# Output only. Internal hostname or IP address of the Apigee endpoint used by
|
3147
3265
|
# clients to connect to the service.
|
3148
3266
|
# Corresponds to the JSON property `host`
|
3149
3267
|
# @return [String]
|
@@ -3165,8 +3283,9 @@ module Google
|
|
3165
3283
|
# @return [String]
|
3166
3284
|
attr_accessor :name
|
3167
3285
|
|
3168
|
-
# Optional.
|
3169
|
-
#
|
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`.
|
3170
3289
|
# Corresponds to the JSON property `peeringCidrRange`
|
3171
3290
|
# @return [String]
|
3172
3291
|
attr_accessor :peering_cidr_range
|
@@ -3176,7 +3295,7 @@ module Google
|
|
3176
3295
|
# @return [String]
|
3177
3296
|
attr_accessor :port
|
3178
3297
|
|
3179
|
-
# 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
|
3180
3299
|
# resource is not ready to use.
|
3181
3300
|
# Corresponds to the JSON property `state`
|
3182
3301
|
# @return [String]
|
@@ -3243,8 +3362,8 @@ module Google
|
|
3243
3362
|
# @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1InstanceDeploymentStatusDeployedRevision>]
|
3244
3363
|
attr_accessor :deployed_revisions
|
3245
3364
|
|
3246
|
-
#
|
3247
|
-
#
|
3365
|
+
# Current routes deployed in the ingress routing table. A route which is missing
|
3366
|
+
# will appear in `missing_routes`.
|
3248
3367
|
# Corresponds to the JSON property `deployedRoutes`
|
3249
3368
|
# @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1InstanceDeploymentStatusDeployedRoute>]
|
3250
3369
|
attr_accessor :deployed_routes
|
@@ -3270,12 +3389,12 @@ module Google
|
|
3270
3389
|
class GoogleCloudApigeeV1InstanceDeploymentStatusDeployedRevision
|
3271
3390
|
include Google::Apis::Core::Hashable
|
3272
3391
|
|
3273
|
-
#
|
3392
|
+
# Percentage of MP replicas reporting this revision.
|
3274
3393
|
# Corresponds to the JSON property `percentage`
|
3275
3394
|
# @return [Fixnum]
|
3276
3395
|
attr_accessor :percentage
|
3277
3396
|
|
3278
|
-
#
|
3397
|
+
# API proxy revision reported as deployed.
|
3279
3398
|
# Corresponds to the JSON property `revision`
|
3280
3399
|
# @return [String]
|
3281
3400
|
attr_accessor :revision
|
@@ -3291,27 +3410,26 @@ module Google
|
|
3291
3410
|
end
|
3292
3411
|
end
|
3293
3412
|
|
3294
|
-
#
|
3413
|
+
# Route deployed in the ingress routing table.
|
3295
3414
|
class GoogleCloudApigeeV1InstanceDeploymentStatusDeployedRoute
|
3296
3415
|
include Google::Apis::Core::Hashable
|
3297
3416
|
|
3298
|
-
#
|
3417
|
+
# Base path in the routing table.
|
3299
3418
|
# Corresponds to the JSON property `basepath`
|
3300
3419
|
# @return [String]
|
3301
3420
|
attr_accessor :basepath
|
3302
3421
|
|
3303
|
-
#
|
3422
|
+
# Environment group where this route is installed.
|
3304
3423
|
# Corresponds to the JSON property `envgroup`
|
3305
3424
|
# @return [String]
|
3306
3425
|
attr_accessor :envgroup
|
3307
3426
|
|
3308
|
-
#
|
3309
|
-
# reported.
|
3427
|
+
# Destination environment. This will be empty if the route is not yet reported.
|
3310
3428
|
# Corresponds to the JSON property `environment`
|
3311
3429
|
# @return [String]
|
3312
3430
|
attr_accessor :environment
|
3313
3431
|
|
3314
|
-
#
|
3432
|
+
# Percentage of ingress replicas reporting this route.
|
3315
3433
|
# Corresponds to the JSON property `percentage`
|
3316
3434
|
# @return [Fixnum]
|
3317
3435
|
attr_accessor :percentage
|
@@ -3925,6 +4043,32 @@ module Google
|
|
3925
4043
|
end
|
3926
4044
|
end
|
3927
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
|
+
|
3928
4072
|
# This message type encapsulates additional information about query execution.
|
3929
4073
|
class GoogleCloudApigeeV1Metadata
|
3930
4074
|
include Google::Apis::Core::Hashable
|
@@ -3987,7 +4131,7 @@ module Google
|
|
3987
4131
|
class GoogleCloudApigeeV1NatAddress
|
3988
4132
|
include Google::Apis::Core::Hashable
|
3989
4133
|
|
3990
|
-
#
|
4134
|
+
# Output only. The static IPV4 address.
|
3991
4135
|
# Corresponds to the JSON property `ipAddress`
|
3992
4136
|
# @return [String]
|
3993
4137
|
attr_accessor :ip_address
|
@@ -3997,7 +4141,7 @@ module Google
|
|
3997
4141
|
# @return [String]
|
3998
4142
|
attr_accessor :name
|
3999
4143
|
|
4000
|
-
#
|
4144
|
+
# Output only. State of the nat address.
|
4001
4145
|
# Corresponds to the JSON property `state`
|
4002
4146
|
# @return [String]
|
4003
4147
|
attr_accessor :state
|
@@ -4257,19 +4401,20 @@ module Google
|
|
4257
4401
|
# runtime instances. See [Getting started with the Service Networking API](https:
|
4258
4402
|
# //cloud.google.com/service-infrastructure/docs/service-networking/getting-
|
4259
4403
|
# started). Valid only when [RuntimeType](#RuntimeType) is set to `CLOUD`. The
|
4260
|
-
# value
|
4261
|
-
#
|
4262
|
-
#
|
4263
|
-
# overview](https://cloud.
|
4264
|
-
# network, use the
|
4265
|
-
#
|
4266
|
-
# networks/mynetwork` **Note:**
|
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.
|
4267
4412
|
# Corresponds to the JSON property `authorizedNetwork`
|
4268
4413
|
# @return [String]
|
4269
4414
|
attr_accessor :authorized_network
|
4270
4415
|
|
4271
|
-
#
|
4272
|
-
#
|
4416
|
+
# Billing type of the Apigee organization. See [Apigee pricing](https://cloud.
|
4417
|
+
# google.com/apigee/pricing).
|
4273
4418
|
# Corresponds to the JSON property `billingType`
|
4274
4419
|
# @return [String]
|
4275
4420
|
attr_accessor :billing_type
|
@@ -4307,6 +4452,11 @@ module Google
|
|
4307
4452
|
# @return [Array<String>]
|
4308
4453
|
attr_accessor :environments
|
4309
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
|
+
|
4310
4460
|
# Output only. Time that the Apigee organization was last modified in
|
4311
4461
|
# milliseconds since epoch.
|
4312
4462
|
# Corresponds to the JSON property `lastModifiedAt`
|
@@ -4318,7 +4468,7 @@ module Google
|
|
4318
4468
|
# @return [String]
|
4319
4469
|
attr_accessor :name
|
4320
4470
|
|
4321
|
-
# Project ID associated with the Apigee organization.
|
4471
|
+
# Output only. Project ID associated with the Apigee organization.
|
4322
4472
|
# Corresponds to the JSON property `projectId`
|
4323
4473
|
# @return [String]
|
4324
4474
|
attr_accessor :project_id
|
@@ -4331,10 +4481,10 @@ module Google
|
|
4331
4481
|
|
4332
4482
|
# Cloud KMS key name used for encrypting the data that is stored and replicated
|
4333
4483
|
# across runtime instances. Update is not allowed after the organization is
|
4334
|
-
# created.
|
4335
|
-
#
|
4336
|
-
# locations/us/keyRings/
|
4337
|
-
# hybrid.
|
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.
|
4338
4488
|
# Corresponds to the JSON property `runtimeDatabaseEncryptionKeyName`
|
4339
4489
|
# @return [String]
|
4340
4490
|
attr_accessor :runtime_database_encryption_key_name
|
@@ -4381,6 +4531,7 @@ module Google
|
|
4381
4531
|
@description = args[:description] if args.key?(:description)
|
4382
4532
|
@display_name = args[:display_name] if args.key?(:display_name)
|
4383
4533
|
@environments = args[:environments] if args.key?(:environments)
|
4534
|
+
@expires_at = args[:expires_at] if args.key?(:expires_at)
|
4384
4535
|
@last_modified_at = args[:last_modified_at] if args.key?(:last_modified_at)
|
4385
4536
|
@name = args[:name] if args.key?(:name)
|
4386
4537
|
@project_id = args[:project_id] if args.key?(:project_id)
|
@@ -5425,7 +5576,7 @@ module Google
|
|
5425
5576
|
class GoogleCloudApigeeV1Schema
|
5426
5577
|
include Google::Apis::Core::Hashable
|
5427
5578
|
|
5428
|
-
# List of schema
|
5579
|
+
# List of schema fields grouped as dimensions.
|
5429
5580
|
# Corresponds to the JSON property `dimensions`
|
5430
5581
|
# @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1SchemaSchemaElement>]
|
5431
5582
|
attr_accessor :dimensions
|
@@ -5436,8 +5587,8 @@ module Google
|
|
5436
5587
|
# @return [Array<String>]
|
5437
5588
|
attr_accessor :meta
|
5438
5589
|
|
5439
|
-
# List of schema fields grouped as dimensions
|
5440
|
-
#
|
5590
|
+
# List of schema fields grouped as dimensions that can be used with an aggregate
|
5591
|
+
# function such as `sum`, `avg`, `min`, and `max`.
|
5441
5592
|
# Corresponds to the JSON property `metrics`
|
5442
5593
|
# @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1SchemaSchemaElement>]
|
5443
5594
|
attr_accessor :metrics
|
@@ -5458,12 +5609,12 @@ module Google
|
|
5458
5609
|
class GoogleCloudApigeeV1SchemaSchemaElement
|
5459
5610
|
include Google::Apis::Core::Hashable
|
5460
5611
|
|
5461
|
-
# Name of the field
|
5612
|
+
# Name of the field.
|
5462
5613
|
# Corresponds to the JSON property `name`
|
5463
5614
|
# @return [String]
|
5464
5615
|
attr_accessor :name
|
5465
5616
|
|
5466
|
-
#
|
5617
|
+
# Properties for the schema field.
|
5467
5618
|
# Corresponds to the JSON property `properties`
|
5468
5619
|
# @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1SchemaSchemaProperty]
|
5469
5620
|
attr_accessor :properties
|
@@ -5479,17 +5630,18 @@ module Google
|
|
5479
5630
|
end
|
5480
5631
|
end
|
5481
5632
|
|
5482
|
-
#
|
5633
|
+
# Properties for the schema field.
|
5483
5634
|
class GoogleCloudApigeeV1SchemaSchemaProperty
|
5484
5635
|
include Google::Apis::Core::Hashable
|
5485
5636
|
|
5486
|
-
#
|
5637
|
+
# Time the field was created in RFC3339 string form. For example: `2016-02-26T10:
|
5638
|
+
# 23:09.592Z`.
|
5487
5639
|
# Corresponds to the JSON property `createTime`
|
5488
5640
|
# @return [String]
|
5489
5641
|
attr_accessor :create_time
|
5490
5642
|
|
5491
|
-
#
|
5492
|
-
#
|
5643
|
+
# Flag that specifies whether the field is standard in the dataset or a custom
|
5644
|
+
# field created by the customer. `true` indicates that it is a custom field.
|
5493
5645
|
# Corresponds to the JSON property `custom`
|
5494
5646
|
# @return [String]
|
5495
5647
|
attr_accessor :custom
|
@@ -6176,6 +6328,102 @@ module Google
|
|
6176
6328
|
end
|
6177
6329
|
end
|
6178
6330
|
|
6331
|
+
# TraceConfig defines the configurations in an environment of distributed trace.
|
6332
|
+
class GoogleCloudApigeeV1TraceConfig
|
6333
|
+
include Google::Apis::Core::Hashable
|
6334
|
+
|
6335
|
+
# Required. Endpoint of the exporter.
|
6336
|
+
# Corresponds to the JSON property `endpoint`
|
6337
|
+
# @return [String]
|
6338
|
+
attr_accessor :endpoint
|
6339
|
+
|
6340
|
+
# Required. Exporter that is used to view the distributed trace captured using
|
6341
|
+
# OpenCensus. An exporter sends traces to any backend that is capable of
|
6342
|
+
# consuming them. Recorded spans can be exported by registered exporters.
|
6343
|
+
# Corresponds to the JSON property `exporter`
|
6344
|
+
# @return [String]
|
6345
|
+
attr_accessor :exporter
|
6346
|
+
|
6347
|
+
# TraceSamplingConfig represents the detail settings of distributed tracing.
|
6348
|
+
# Only the fields that are defined in the distributed trace configuration can be
|
6349
|
+
# overridden using the distribute trace configuration override APIs.
|
6350
|
+
# Corresponds to the JSON property `samplingConfig`
|
6351
|
+
# @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1TraceSamplingConfig]
|
6352
|
+
attr_accessor :sampling_config
|
6353
|
+
|
6354
|
+
def initialize(**args)
|
6355
|
+
update!(**args)
|
6356
|
+
end
|
6357
|
+
|
6358
|
+
# Update properties of this object
|
6359
|
+
def update!(**args)
|
6360
|
+
@endpoint = args[:endpoint] if args.key?(:endpoint)
|
6361
|
+
@exporter = args[:exporter] if args.key?(:exporter)
|
6362
|
+
@sampling_config = args[:sampling_config] if args.key?(:sampling_config)
|
6363
|
+
end
|
6364
|
+
end
|
6365
|
+
|
6366
|
+
# A representation of a configuration override.
|
6367
|
+
class GoogleCloudApigeeV1TraceConfigOverride
|
6368
|
+
include Google::Apis::Core::Hashable
|
6369
|
+
|
6370
|
+
# ID of the API proxy that will have its trace configuration overridden.
|
6371
|
+
# Corresponds to the JSON property `apiProxy`
|
6372
|
+
# @return [String]
|
6373
|
+
attr_accessor :api_proxy
|
6374
|
+
|
6375
|
+
# ID of the trace configuration override specified as a system-generated UUID.
|
6376
|
+
# Corresponds to the JSON property `name`
|
6377
|
+
# @return [String]
|
6378
|
+
attr_accessor :name
|
6379
|
+
|
6380
|
+
# TraceSamplingConfig represents the detail settings of distributed tracing.
|
6381
|
+
# Only the fields that are defined in the distributed trace configuration can be
|
6382
|
+
# overridden using the distribute trace configuration override APIs.
|
6383
|
+
# Corresponds to the JSON property `samplingConfig`
|
6384
|
+
# @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1TraceSamplingConfig]
|
6385
|
+
attr_accessor :sampling_config
|
6386
|
+
|
6387
|
+
def initialize(**args)
|
6388
|
+
update!(**args)
|
6389
|
+
end
|
6390
|
+
|
6391
|
+
# Update properties of this object
|
6392
|
+
def update!(**args)
|
6393
|
+
@api_proxy = args[:api_proxy] if args.key?(:api_proxy)
|
6394
|
+
@name = args[:name] if args.key?(:name)
|
6395
|
+
@sampling_config = args[:sampling_config] if args.key?(:sampling_config)
|
6396
|
+
end
|
6397
|
+
end
|
6398
|
+
|
6399
|
+
# TraceSamplingConfig represents the detail settings of distributed tracing.
|
6400
|
+
# Only the fields that are defined in the distributed trace configuration can be
|
6401
|
+
# overridden using the distribute trace configuration override APIs.
|
6402
|
+
class GoogleCloudApigeeV1TraceSamplingConfig
|
6403
|
+
include Google::Apis::Core::Hashable
|
6404
|
+
|
6405
|
+
# Sampler of distributed tracing. OFF is the default value.
|
6406
|
+
# Corresponds to the JSON property `sampler`
|
6407
|
+
# @return [String]
|
6408
|
+
attr_accessor :sampler
|
6409
|
+
|
6410
|
+
# Field sampling rate. This value is only applicable when using the PROBABILITY
|
6411
|
+
# sampler. The supported values are > 0 and <= 0.5.
|
6412
|
+
# Corresponds to the JSON property `samplingRate`
|
6413
|
+
# @return [Float]
|
6414
|
+
attr_accessor :sampling_rate
|
6415
|
+
|
6416
|
+
def initialize(**args)
|
6417
|
+
update!(**args)
|
6418
|
+
end
|
6419
|
+
|
6420
|
+
# Update properties of this object
|
6421
|
+
def update!(**args)
|
6422
|
+
@sampler = args[:sampler] if args.key?(:sampler)
|
6423
|
+
@sampling_rate = args[:sampling_rate] if args.key?(:sampling_rate)
|
6424
|
+
end
|
6425
|
+
end
|
6426
|
+
|
6179
6427
|
# Details on why a resource update failed in the runtime.
|
6180
6428
|
class GoogleCloudApigeeV1UpdateError
|
6181
6429
|
include Google::Apis::Core::Hashable
|