google-apis-apigee_v1 0.2.0 → 0.3.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: 3e95bf2a70741345d78ba4e7e18cfa06a7cd188b4768884bb2f4035b6c1a8514
|
4
|
+
data.tar.gz: 543b60e2194d346aa49d29487373dbb8e41f1fbeff4c0b512018bb9ffd4d88eb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a450ac3c40a01459d7daa23a09a6b75c615cc8bce20800ca278d52b396c0482fa12f959db0bbeed699453d052b0373d3743df4bc7627046b3af0d64c2a7faca1
|
7
|
+
data.tar.gz: '08cb1ad3d6ac3589fce7eb29e6946b9771b81ed9dc2b706e4ded9c063a81c08178551322771f055498c6fabd79a1956ac8c030b0154ae5427b9e85a3017a59df'
|
data/CHANGELOG.md
CHANGED
@@ -2448,6 +2448,13 @@ module Google
|
|
2448
2448
|
# @return [Fixnum]
|
2449
2449
|
attr_accessor :expires_at
|
2450
2450
|
|
2451
|
+
# Input only. Expiration time, in seconds, for the consumer key. If not set or
|
2452
|
+
# left to the default value of `-1`, the API key never expires. The expiration
|
2453
|
+
# time can't be updated after it is set.
|
2454
|
+
# Corresponds to the JSON property `expiresInSeconds`
|
2455
|
+
# @return [Fixnum]
|
2456
|
+
attr_accessor :expires_in_seconds
|
2457
|
+
|
2451
2458
|
# Time the developer app was created in milliseconds since epoch.
|
2452
2459
|
# Corresponds to the JSON property `issuedAt`
|
2453
2460
|
# @return [Fixnum]
|
@@ -2475,6 +2482,7 @@ module Google
|
|
2475
2482
|
@consumer_key = args[:consumer_key] if args.key?(:consumer_key)
|
2476
2483
|
@consumer_secret = args[:consumer_secret] if args.key?(:consumer_secret)
|
2477
2484
|
@expires_at = args[:expires_at] if args.key?(:expires_at)
|
2485
|
+
@expires_in_seconds = args[:expires_in_seconds] if args.key?(:expires_in_seconds)
|
2478
2486
|
@issued_at = args[:issued_at] if args.key?(:issued_at)
|
2479
2487
|
@scopes = args[:scopes] if args.key?(:scopes)
|
2480
2488
|
@status = args[:status] if args.key?(:status)
|
@@ -3157,6 +3165,12 @@ module Google
|
|
3157
3165
|
# @return [String]
|
3158
3166
|
attr_accessor :name
|
3159
3167
|
|
3168
|
+
# Optional. The size of the CIDR block range that will be reserved by the
|
3169
|
+
# instance. If not specified, default to SLASH_16.
|
3170
|
+
# Corresponds to the JSON property `peeringCidrRange`
|
3171
|
+
# @return [String]
|
3172
|
+
attr_accessor :peering_cidr_range
|
3173
|
+
|
3160
3174
|
# Output only. Port number of the exposed Apigee endpoint.
|
3161
3175
|
# Corresponds to the JSON property `port`
|
3162
3176
|
# @return [String]
|
@@ -3182,6 +3196,7 @@ module Google
|
|
3182
3196
|
@last_modified_at = args[:last_modified_at] if args.key?(:last_modified_at)
|
3183
3197
|
@location = args[:location] if args.key?(:location)
|
3184
3198
|
@name = args[:name] if args.key?(:name)
|
3199
|
+
@peering_cidr_range = args[:peering_cidr_range] if args.key?(:peering_cidr_range)
|
3185
3200
|
@port = args[:port] if args.key?(:port)
|
3186
3201
|
@state = args[:state] if args.key?(:state)
|
3187
3202
|
end
|
@@ -4241,9 +4256,14 @@ module Google
|
|
4241
4256
|
# Compute Engine network used for Service Networking to be peered with Apigee
|
4242
4257
|
# runtime instances. See [Getting started with the Service Networking API](https:
|
4243
4258
|
# //cloud.google.com/service-infrastructure/docs/service-networking/getting-
|
4244
|
-
# started). Valid only when [RuntimeType] is set to CLOUD
|
4245
|
-
# updated only when there are no runtime instances. For example:
|
4246
|
-
#
|
4259
|
+
# started). Valid only when [RuntimeType](#RuntimeType) is set to `CLOUD`. The
|
4260
|
+
# value can be updated only when there are no runtime instances. For example: `
|
4261
|
+
# default`. Apigee also supports shared VPC (that is, the host network project
|
4262
|
+
# is not the same as the one that is peering with Apigee). See [Shared VPC
|
4263
|
+
# overview](https://cloud.google.com/vpc/docs/shared-vpc). To use a shared VPC
|
4264
|
+
# network, use the following format: `projects/`host-project-id`/`region`/
|
4265
|
+
# networks/`network-name``. For example: `projects/my-sharedvpc-host/global/
|
4266
|
+
# networks/mynetwork` **Note:** Not supported for Apigee hybrid.
|
4247
4267
|
# Corresponds to the JSON property `authorizedNetwork`
|
4248
4268
|
# @return [String]
|
4249
4269
|
attr_accessor :authorized_network
|
@@ -4255,7 +4275,7 @@ module Google
|
|
4255
4275
|
attr_accessor :billing_type
|
4256
4276
|
|
4257
4277
|
# Output only. Base64-encoded public certificate for the root CA of the Apigee
|
4258
|
-
# organization. Valid only when [RuntimeType] is CLOUD
|
4278
|
+
# organization. Valid only when [RuntimeType](#RuntimeType) is `CLOUD`.
|
4259
4279
|
# Corresponds to the JSON property `caCertificate`
|
4260
4280
|
# NOTE: Values are automatically base64 encoded/decoded in the client library.
|
4261
4281
|
# @return [String]
|
@@ -4298,7 +4318,7 @@ module Google
|
|
4298
4318
|
# @return [String]
|
4299
4319
|
attr_accessor :name
|
4300
4320
|
|
4301
|
-
#
|
4321
|
+
# Project ID associated with the Apigee organization.
|
4302
4322
|
# Corresponds to the JSON property `projectId`
|
4303
4323
|
# @return [String]
|
4304
4324
|
attr_accessor :project_id
|
@@ -4312,8 +4332,9 @@ module Google
|
|
4312
4332
|
# Cloud KMS key name used for encrypting the data that is stored and replicated
|
4313
4333
|
# across runtime instances. Update is not allowed after the organization is
|
4314
4334
|
# created. If not specified, a Google-Managed encryption key will be used. Valid
|
4315
|
-
# only when [RuntimeType] is CLOUD
|
4316
|
-
# keyRings/bar/cryptoKeys/baz". **Note:** Not supported for Apigee
|
4335
|
+
# only when [RuntimeType](#RuntimeType) is `CLOUD`. For example: "projects/foo/
|
4336
|
+
# locations/us/keyRings/bar/cryptoKeys/baz". **Note:** Not supported for Apigee
|
4337
|
+
# hybrid.
|
4317
4338
|
# Corresponds to the JSON property `runtimeDatabaseEncryptionKeyName`
|
4318
4339
|
# @return [String]
|
4319
4340
|
attr_accessor :runtime_database_encryption_key_name
|
@@ -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.3.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.1.2"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20210206"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1584,6 +1584,7 @@ module Google
|
|
1584
1584
|
property :consumer_key, as: 'consumerKey'
|
1585
1585
|
property :consumer_secret, as: 'consumerSecret'
|
1586
1586
|
property :expires_at, :numeric_string => true, as: 'expiresAt'
|
1587
|
+
property :expires_in_seconds, :numeric_string => true, as: 'expiresInSeconds'
|
1587
1588
|
property :issued_at, :numeric_string => true, as: 'issuedAt'
|
1588
1589
|
collection :scopes, as: 'scopes'
|
1589
1590
|
property :status, as: 'status'
|
@@ -1762,6 +1763,7 @@ module Google
|
|
1762
1763
|
property :last_modified_at, :numeric_string => true, as: 'lastModifiedAt'
|
1763
1764
|
property :location, as: 'location'
|
1764
1765
|
property :name, as: 'name'
|
1766
|
+
property :peering_cidr_range, as: 'peeringCidrRange'
|
1765
1767
|
property :port, as: 'port'
|
1766
1768
|
property :state, as: 'state'
|
1767
1769
|
end
|
@@ -4778,10 +4778,10 @@ module Google
|
|
4778
4778
|
# @param [String] name
|
4779
4779
|
# Required. The resource name for which the interactive query will be executed.
|
4780
4780
|
# Must be of the form `organizations/`organization_id`/environments/`
|
4781
|
-
# environment_id/
|
4781
|
+
# environment_id/optimizedStats/`dimensions`` Dimensions let you view metrics in
|
4782
4782
|
# meaningful groupings. E.g. apiproxy, target_host. The value of dimensions
|
4783
4783
|
# should be comma separated list as shown below `organizations/`org`/
|
4784
|
-
# environments/`env`/
|
4784
|
+
# environments/`env`/optimizedStats/apiproxy,request_verb`
|
4785
4785
|
# @param [String] accuracy
|
4786
4786
|
# Legacy field: not used anymore.
|
4787
4787
|
# @param [String] agg_table
|
@@ -5973,10 +5973,10 @@ module Google
|
|
5973
5973
|
# given timerange.
|
5974
5974
|
# @param [String] name
|
5975
5975
|
# Required. The resource name for which the interactive query will be executed.
|
5976
|
-
# Must be of the form `organizations/`organization_id`/
|
5976
|
+
# Must be of the form `organizations/`organization_id`/hostStats/`dimensions``.
|
5977
5977
|
# Dimensions let you view metrics in meaningful groupings. E.g. apiproxy,
|
5978
5978
|
# target_host. The value of dimensions should be comma separated list as shown
|
5979
|
-
# below `organizations/`org`/
|
5979
|
+
# below `organizations/`org`/hostStats/apiproxy,request_verb`
|
5980
5980
|
# @param [String] accuracy
|
5981
5981
|
# Legacy field: not used anymore.
|
5982
5982
|
# @param [String] envgroup_hostname
|
@@ -6749,10 +6749,10 @@ module Google
|
|
6749
6749
|
# This api is similar to GetHostStats except that the response is less verbose.
|
6750
6750
|
# @param [String] name
|
6751
6751
|
# Required. The resource name for which the interactive query will be executed.
|
6752
|
-
# Must be of the form `organizations/`organization_id`/
|
6753
|
-
# Dimensions let you view metrics in meaningful groupings. E.g.
|
6754
|
-
# target_host. The value of dimensions should be comma separated list
|
6755
|
-
# below `organizations/`org`/
|
6752
|
+
# Must be of the form `organizations/`organization_id`/optimizedHostStats/`
|
6753
|
+
# dimensions``. Dimensions let you view metrics in meaningful groupings. E.g.
|
6754
|
+
# apiproxy, target_host. The value of dimensions should be comma separated list
|
6755
|
+
# as shown below `organizations/`org`/optimizedHostStats/apiproxy,request_verb`
|
6756
6756
|
# @param [String] accuracy
|
6757
6757
|
# Legacy field: not used anymore.
|
6758
6758
|
# @param [String] envgroup_hostname
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-02-
|
11
|
+
date: 2021-02-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -52,7 +52,7 @@ licenses:
|
|
52
52
|
metadata:
|
53
53
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
54
54
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-apigee_v1/CHANGELOG.md
|
55
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-apigee_v1/v0.
|
55
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-apigee_v1/v0.3.0
|
56
56
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-apigee_v1
|
57
57
|
post_install_message:
|
58
58
|
rdoc_options: []
|