google-apis-apigee_v1 0.18.0 → 0.22.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 +16 -0
- data/lib/google/apis/apigee_v1/classes.rb +301 -30
- data/lib/google/apis/apigee_v1/gem_version.rb +2 -2
- data/lib/google/apis/apigee_v1/representations.rb +146 -15
- data/lib/google/apis/apigee_v1/service.rb +463 -0
- data/lib/google/apis/apigee_v1.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e41d7a4b24a07b3a98b9f4d0c2295ffe866ccbc9c40f8b8fdc4491c1788277fb
|
4
|
+
data.tar.gz: 8bbee184ecc83f32e70e1f6df2c2791b02f3807ca823a867fec95f0af78cf414
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2ce3cd5ab949b18f9131408fe6a1e331dbea9aebc16ff529cdc8b3ee337d5780b0ca8988ad6668315cc17f5f06bf1420e6653cac8f8ba78494df3f2a6138525d
|
7
|
+
data.tar.gz: f66fbca684dad8071ec7e26280e32f7720be05726ad5a777572cf2c33b02929586912befb5621dea3c5de66b9260a32027eeb3ebafc3b0edc7767deba0b5de57
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Release history for google-apis-apigee_v1
|
2
2
|
|
3
|
+
### v0.22.0 (2021-09-21)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20210916
|
6
|
+
|
7
|
+
### v0.21.0 (2021-09-08)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20210902
|
10
|
+
|
11
|
+
### v0.20.0 (2021-09-01)
|
12
|
+
|
13
|
+
* Regenerated from discovery document revision 20210826
|
14
|
+
|
15
|
+
### v0.19.0 (2021-08-03)
|
16
|
+
|
17
|
+
* Regenerated from discovery document revision 20210729
|
18
|
+
|
3
19
|
### v0.18.0 (2021-07-28)
|
4
20
|
|
5
21
|
* Regenerated from discovery document revision 20210722
|
@@ -257,11 +257,6 @@ module Google
|
|
257
257
|
# @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1AdvancedApiOpsConfig]
|
258
258
|
attr_accessor :advanced_api_ops_config
|
259
259
|
|
260
|
-
# Configuration for the Integration add-on.
|
261
|
-
# Corresponds to the JSON property `integrationConfig`
|
262
|
-
# @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1IntegrationConfig]
|
263
|
-
attr_accessor :integration_config
|
264
|
-
|
265
260
|
# Configuration for the Monetization add-on.
|
266
261
|
# Corresponds to the JSON property `monetizationConfig`
|
267
262
|
# @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1MonetizationConfig]
|
@@ -274,7 +269,6 @@ module Google
|
|
274
269
|
# Update properties of this object
|
275
270
|
def update!(**args)
|
276
271
|
@advanced_api_ops_config = args[:advanced_api_ops_config] if args.key?(:advanced_api_ops_config)
|
277
|
-
@integration_config = args[:integration_config] if args.key?(:integration_config)
|
278
272
|
@monetization_config = args[:monetization_config] if args.key?(:monetization_config)
|
279
273
|
end
|
280
274
|
end
|
@@ -964,6 +958,66 @@ module Google
|
|
964
958
|
end
|
965
959
|
end
|
966
960
|
|
961
|
+
# Archive Deployment information.
|
962
|
+
class GoogleCloudApigeeV1ArchiveDeployment
|
963
|
+
include Google::Apis::Core::Hashable
|
964
|
+
|
965
|
+
# Output only. The time at which the Archive Deployment was created in
|
966
|
+
# milliseconds since the epoch.
|
967
|
+
# Corresponds to the JSON property `createdAt`
|
968
|
+
# @return [Fixnum]
|
969
|
+
attr_accessor :created_at
|
970
|
+
|
971
|
+
# Input only. The Google Cloud Storage signed URL returned from
|
972
|
+
# GenerateUploadUrl and used to upload the Archive zip file.
|
973
|
+
# Corresponds to the JSON property `gcsUri`
|
974
|
+
# @return [String]
|
975
|
+
attr_accessor :gcs_uri
|
976
|
+
|
977
|
+
# User-supplied key-value pairs used to organize ArchiveDeployments. Label keys
|
978
|
+
# must be between 1 and 63 characters long, have a UTF-8 encoding of maximum 128
|
979
|
+
# bytes, and must conform to the following PCRE regular expression: \p`Ll`\p`Lo``
|
980
|
+
# 0,62` Label values must be between 1 and 63 characters long, have a UTF-8
|
981
|
+
# encoding of maximum 128 bytes, and must conform to the following PCRE regular
|
982
|
+
# expression: [\p`Ll`\p`Lo`\p`N`_-]`0,63` No more than 64 labels can be
|
983
|
+
# associated with a given store.
|
984
|
+
# Corresponds to the JSON property `labels`
|
985
|
+
# @return [Hash<String,String>]
|
986
|
+
attr_accessor :labels
|
987
|
+
|
988
|
+
# Name of the Archive Deployment in the following format: `organizations/`org`/
|
989
|
+
# environments/`env`/archiveDeployments/`id``.
|
990
|
+
# Corresponds to the JSON property `name`
|
991
|
+
# @return [String]
|
992
|
+
attr_accessor :name
|
993
|
+
|
994
|
+
# Output only. A reference to the LRO that created this Archive Deployment in
|
995
|
+
# the following format: `organizations/`org`/operations/`id``
|
996
|
+
# Corresponds to the JSON property `operation`
|
997
|
+
# @return [String]
|
998
|
+
attr_accessor :operation
|
999
|
+
|
1000
|
+
# Output only. The time at which the Archive Deployment was updated in
|
1001
|
+
# milliseconds since the epoch.
|
1002
|
+
# Corresponds to the JSON property `updatedAt`
|
1003
|
+
# @return [Fixnum]
|
1004
|
+
attr_accessor :updated_at
|
1005
|
+
|
1006
|
+
def initialize(**args)
|
1007
|
+
update!(**args)
|
1008
|
+
end
|
1009
|
+
|
1010
|
+
# Update properties of this object
|
1011
|
+
def update!(**args)
|
1012
|
+
@created_at = args[:created_at] if args.key?(:created_at)
|
1013
|
+
@gcs_uri = args[:gcs_uri] if args.key?(:gcs_uri)
|
1014
|
+
@labels = args[:labels] if args.key?(:labels)
|
1015
|
+
@name = args[:name] if args.key?(:name)
|
1016
|
+
@operation = args[:operation] if args.key?(:operation)
|
1017
|
+
@updated_at = args[:updated_at] if args.key?(:updated_at)
|
1018
|
+
end
|
1019
|
+
end
|
1020
|
+
|
967
1021
|
#
|
968
1022
|
class GoogleCloudApigeeV1AsyncQuery
|
969
1023
|
include Google::Apis::Core::Hashable
|
@@ -1488,6 +1542,33 @@ module Google
|
|
1488
1542
|
end
|
1489
1543
|
end
|
1490
1544
|
|
1545
|
+
# Request for CreditDeveloperBalance.
|
1546
|
+
class GoogleCloudApigeeV1CreditDeveloperBalanceRequest
|
1547
|
+
include Google::Apis::Core::Hashable
|
1548
|
+
|
1549
|
+
# Represents an amount of money with its currency type.
|
1550
|
+
# Corresponds to the JSON property `transactionAmount`
|
1551
|
+
# @return [Google::Apis::ApigeeV1::GoogleTypeMoney]
|
1552
|
+
attr_accessor :transaction_amount
|
1553
|
+
|
1554
|
+
# Each transaction_id uniquely identifies a credit balance request. If multiple
|
1555
|
+
# requests are received with the same transaction_id, only one of them will be
|
1556
|
+
# considered.
|
1557
|
+
# Corresponds to the JSON property `transactionId`
|
1558
|
+
# @return [String]
|
1559
|
+
attr_accessor :transaction_id
|
1560
|
+
|
1561
|
+
def initialize(**args)
|
1562
|
+
update!(**args)
|
1563
|
+
end
|
1564
|
+
|
1565
|
+
# Update properties of this object
|
1566
|
+
def update!(**args)
|
1567
|
+
@transaction_amount = args[:transaction_amount] if args.key?(:transaction_amount)
|
1568
|
+
@transaction_id = args[:transaction_id] if args.key?(:transaction_id)
|
1569
|
+
end
|
1570
|
+
end
|
1571
|
+
|
1491
1572
|
#
|
1492
1573
|
class GoogleCloudApigeeV1CustomReport
|
1493
1574
|
include Google::Apis::Core::Hashable
|
@@ -2615,6 +2696,71 @@ module Google
|
|
2615
2696
|
end
|
2616
2697
|
end
|
2617
2698
|
|
2699
|
+
# Account balance for the developer.
|
2700
|
+
class GoogleCloudApigeeV1DeveloperBalance
|
2701
|
+
include Google::Apis::Core::Hashable
|
2702
|
+
|
2703
|
+
# Output only. List of all wallets. Each individual wallet stores the account
|
2704
|
+
# balance for a particular currency.
|
2705
|
+
# Corresponds to the JSON property `wallets`
|
2706
|
+
# @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1DeveloperBalanceWallet>]
|
2707
|
+
attr_accessor :wallets
|
2708
|
+
|
2709
|
+
def initialize(**args)
|
2710
|
+
update!(**args)
|
2711
|
+
end
|
2712
|
+
|
2713
|
+
# Update properties of this object
|
2714
|
+
def update!(**args)
|
2715
|
+
@wallets = args[:wallets] if args.key?(:wallets)
|
2716
|
+
end
|
2717
|
+
end
|
2718
|
+
|
2719
|
+
# Wallet used to manage an account balance for a particular currency.
|
2720
|
+
class GoogleCloudApigeeV1DeveloperBalanceWallet
|
2721
|
+
include Google::Apis::Core::Hashable
|
2722
|
+
|
2723
|
+
# Represents an amount of money with its currency type.
|
2724
|
+
# Corresponds to the JSON property `balance`
|
2725
|
+
# @return [Google::Apis::ApigeeV1::GoogleTypeMoney]
|
2726
|
+
attr_accessor :balance
|
2727
|
+
|
2728
|
+
# Output only. Time at which the developer last added credit to the account in
|
2729
|
+
# milliseconds since epoch.
|
2730
|
+
# Corresponds to the JSON property `lastCreditTime`
|
2731
|
+
# @return [Fixnum]
|
2732
|
+
attr_accessor :last_credit_time
|
2733
|
+
|
2734
|
+
def initialize(**args)
|
2735
|
+
update!(**args)
|
2736
|
+
end
|
2737
|
+
|
2738
|
+
# Update properties of this object
|
2739
|
+
def update!(**args)
|
2740
|
+
@balance = args[:balance] if args.key?(:balance)
|
2741
|
+
@last_credit_time = args[:last_credit_time] if args.key?(:last_credit_time)
|
2742
|
+
end
|
2743
|
+
end
|
2744
|
+
|
2745
|
+
# Monetization configuration for the developer.
|
2746
|
+
class GoogleCloudApigeeV1DeveloperMonetizationConfig
|
2747
|
+
include Google::Apis::Core::Hashable
|
2748
|
+
|
2749
|
+
# Billing type.
|
2750
|
+
# Corresponds to the JSON property `billingType`
|
2751
|
+
# @return [String]
|
2752
|
+
attr_accessor :billing_type
|
2753
|
+
|
2754
|
+
def initialize(**args)
|
2755
|
+
update!(**args)
|
2756
|
+
end
|
2757
|
+
|
2758
|
+
# Update properties of this object
|
2759
|
+
def update!(**args)
|
2760
|
+
@billing_type = args[:billing_type] if args.key?(:billing_type)
|
2761
|
+
end
|
2762
|
+
end
|
2763
|
+
|
2618
2764
|
# Structure of a DeveloperSubscription.
|
2619
2765
|
class GoogleCloudApigeeV1DeveloperSubscription
|
2620
2766
|
include Google::Apis::Core::Hashable
|
@@ -2727,11 +2873,28 @@ module Google
|
|
2727
2873
|
class GoogleCloudApigeeV1Environment
|
2728
2874
|
include Google::Apis::Core::Hashable
|
2729
2875
|
|
2876
|
+
# Optional. API Proxy type supported by the environment. The type can be set
|
2877
|
+
# when creating the Environment and cannot be changed.
|
2878
|
+
# Corresponds to the JSON property `apiProxyType`
|
2879
|
+
# @return [String]
|
2880
|
+
attr_accessor :api_proxy_type
|
2881
|
+
|
2730
2882
|
# Output only. Creation time of this environment as milliseconds since epoch.
|
2731
2883
|
# Corresponds to the JSON property `createdAt`
|
2732
2884
|
# @return [Fixnum]
|
2733
2885
|
attr_accessor :created_at
|
2734
2886
|
|
2887
|
+
# Optional. Deployment type supported by the environment. The deployment type
|
2888
|
+
# can be set when creating the environment and cannot be changed. When you
|
2889
|
+
# enable archive deployment, you will be **prevented from performing** a [subset
|
2890
|
+
# of actions](/apigee/docs/api-platform/local-development/overview#prevented-
|
2891
|
+
# actions) within the environment, including: * Managing the deployment of API
|
2892
|
+
# proxy or shared flow revisions * Creating, updating, or deleting resource
|
2893
|
+
# files * Creating, updating, or deleting target servers
|
2894
|
+
# Corresponds to the JSON property `deploymentType`
|
2895
|
+
# @return [String]
|
2896
|
+
attr_accessor :deployment_type
|
2897
|
+
|
2735
2898
|
# Optional. Description of the environment.
|
2736
2899
|
# Corresponds to the JSON property `description`
|
2737
2900
|
# @return [String]
|
@@ -2772,7 +2935,9 @@ module Google
|
|
2772
2935
|
|
2773
2936
|
# Update properties of this object
|
2774
2937
|
def update!(**args)
|
2938
|
+
@api_proxy_type = args[:api_proxy_type] if args.key?(:api_proxy_type)
|
2775
2939
|
@created_at = args[:created_at] if args.key?(:created_at)
|
2940
|
+
@deployment_type = args[:deployment_type] if args.key?(:deployment_type)
|
2776
2941
|
@description = args[:description] if args.key?(:description)
|
2777
2942
|
@display_name = args[:display_name] if args.key?(:display_name)
|
2778
2943
|
@last_modified_at = args[:last_modified_at] if args.key?(:last_modified_at)
|
@@ -2786,6 +2951,13 @@ module Google
|
|
2786
2951
|
class GoogleCloudApigeeV1EnvironmentConfig
|
2787
2952
|
include Google::Apis::Core::Hashable
|
2788
2953
|
|
2954
|
+
# The location for the config blob of API Runtime Control, aka Envoy Adapter,
|
2955
|
+
# for op-based authentication as a URI, e.g. a Cloud Storage URI. This is only
|
2956
|
+
# used by Envoy-based gateways.
|
2957
|
+
# Corresponds to the JSON property `arcConfigLocation`
|
2958
|
+
# @return [String]
|
2959
|
+
attr_accessor :arc_config_location
|
2960
|
+
|
2789
2961
|
# Time that the environment configuration was created.
|
2790
2962
|
# Corresponds to the JSON property `createTime`
|
2791
2963
|
# @return [String]
|
@@ -2816,6 +2988,12 @@ module Google
|
|
2816
2988
|
# @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1FlowHookConfig>]
|
2817
2989
|
attr_accessor :flowhooks
|
2818
2990
|
|
2991
|
+
# The location for the gateway config blob as a URI, e.g. a Cloud Storage URI.
|
2992
|
+
# This is only used by Envoy-based gateways.
|
2993
|
+
# Corresponds to the JSON property `gatewayConfigLocation`
|
2994
|
+
# @return [String]
|
2995
|
+
attr_accessor :gateway_config_location
|
2996
|
+
|
2819
2997
|
# List of keystores in the environment.
|
2820
2998
|
# Corresponds to the JSON property `keystores`
|
2821
2999
|
# @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1KeystoreConfig>]
|
@@ -2883,12 +3061,14 @@ module Google
|
|
2883
3061
|
|
2884
3062
|
# Update properties of this object
|
2885
3063
|
def update!(**args)
|
3064
|
+
@arc_config_location = args[:arc_config_location] if args.key?(:arc_config_location)
|
2886
3065
|
@create_time = args[:create_time] if args.key?(:create_time)
|
2887
3066
|
@data_collectors = args[:data_collectors] if args.key?(:data_collectors)
|
2888
3067
|
@debug_mask = args[:debug_mask] if args.key?(:debug_mask)
|
2889
3068
|
@deployments = args[:deployments] if args.key?(:deployments)
|
2890
3069
|
@feature_flags = args[:feature_flags] if args.key?(:feature_flags)
|
2891
3070
|
@flowhooks = args[:flowhooks] if args.key?(:flowhooks)
|
3071
|
+
@gateway_config_location = args[:gateway_config_location] if args.key?(:gateway_config_location)
|
2892
3072
|
@keystores = args[:keystores] if args.key?(:keystores)
|
2893
3073
|
@name = args[:name] if args.key?(:name)
|
2894
3074
|
@provider = args[:provider] if args.key?(:provider)
|
@@ -3248,6 +3428,72 @@ module Google
|
|
3248
3428
|
end
|
3249
3429
|
end
|
3250
3430
|
|
3431
|
+
# Request for GenerateDownloadUrl method.
|
3432
|
+
class GoogleCloudApigeeV1GenerateDownloadUrlRequest
|
3433
|
+
include Google::Apis::Core::Hashable
|
3434
|
+
|
3435
|
+
def initialize(**args)
|
3436
|
+
update!(**args)
|
3437
|
+
end
|
3438
|
+
|
3439
|
+
# Update properties of this object
|
3440
|
+
def update!(**args)
|
3441
|
+
end
|
3442
|
+
end
|
3443
|
+
|
3444
|
+
# Response for GenerateDownloadUrl method.
|
3445
|
+
class GoogleCloudApigeeV1GenerateDownloadUrlResponse
|
3446
|
+
include Google::Apis::Core::Hashable
|
3447
|
+
|
3448
|
+
# The Google Cloud Storage signed URL that can be used to download the Archive
|
3449
|
+
# zip file.
|
3450
|
+
# Corresponds to the JSON property `downloadUri`
|
3451
|
+
# @return [String]
|
3452
|
+
attr_accessor :download_uri
|
3453
|
+
|
3454
|
+
def initialize(**args)
|
3455
|
+
update!(**args)
|
3456
|
+
end
|
3457
|
+
|
3458
|
+
# Update properties of this object
|
3459
|
+
def update!(**args)
|
3460
|
+
@download_uri = args[:download_uri] if args.key?(:download_uri)
|
3461
|
+
end
|
3462
|
+
end
|
3463
|
+
|
3464
|
+
# Request for GenerateUploadUrl method.
|
3465
|
+
class GoogleCloudApigeeV1GenerateUploadUrlRequest
|
3466
|
+
include Google::Apis::Core::Hashable
|
3467
|
+
|
3468
|
+
def initialize(**args)
|
3469
|
+
update!(**args)
|
3470
|
+
end
|
3471
|
+
|
3472
|
+
# Update properties of this object
|
3473
|
+
def update!(**args)
|
3474
|
+
end
|
3475
|
+
end
|
3476
|
+
|
3477
|
+
# Response for GenerateUploadUrl method.
|
3478
|
+
class GoogleCloudApigeeV1GenerateUploadUrlResponse
|
3479
|
+
include Google::Apis::Core::Hashable
|
3480
|
+
|
3481
|
+
# The Google Cloud Storage signed URL that can be used to upload a new Archive
|
3482
|
+
# zip file.
|
3483
|
+
# Corresponds to the JSON property `uploadUri`
|
3484
|
+
# @return [String]
|
3485
|
+
attr_accessor :upload_uri
|
3486
|
+
|
3487
|
+
def initialize(**args)
|
3488
|
+
update!(**args)
|
3489
|
+
end
|
3490
|
+
|
3491
|
+
# Update properties of this object
|
3492
|
+
def update!(**args)
|
3493
|
+
@upload_uri = args[:upload_uri] if args.key?(:upload_uri)
|
3494
|
+
end
|
3495
|
+
end
|
3496
|
+
|
3251
3497
|
# Request for GetSyncAuthorization.
|
3252
3498
|
class GoogleCloudApigeeV1GetSyncAuthorizationRequest
|
3253
3499
|
include Google::Apis::Core::Hashable
|
@@ -3474,6 +3720,13 @@ module Google
|
|
3474
3720
|
# @return [String]
|
3475
3721
|
attr_accessor :port
|
3476
3722
|
|
3723
|
+
# Output only. Version of the runtime system running in the instance. The
|
3724
|
+
# runtime system is the set of components that serve the API Proxy traffic in
|
3725
|
+
# your Environments.
|
3726
|
+
# Corresponds to the JSON property `runtimeVersion`
|
3727
|
+
# @return [String]
|
3728
|
+
attr_accessor :runtime_version
|
3729
|
+
|
3477
3730
|
# Output only. State of the instance. Values other than `ACTIVE` means the
|
3478
3731
|
# resource is not ready to use.
|
3479
3732
|
# Corresponds to the JSON property `state`
|
@@ -3496,6 +3749,7 @@ module Google
|
|
3496
3749
|
@name = args[:name] if args.key?(:name)
|
3497
3750
|
@peering_cidr_range = args[:peering_cidr_range] if args.key?(:peering_cidr_range)
|
3498
3751
|
@port = args[:port] if args.key?(:port)
|
3752
|
+
@runtime_version = args[:runtime_version] if args.key?(:runtime_version)
|
3499
3753
|
@state = args[:state] if args.key?(:state)
|
3500
3754
|
end
|
3501
3755
|
end
|
@@ -3626,26 +3880,6 @@ module Google
|
|
3626
3880
|
end
|
3627
3881
|
end
|
3628
3882
|
|
3629
|
-
# Configuration for the Integration add-on.
|
3630
|
-
class GoogleCloudApigeeV1IntegrationConfig
|
3631
|
-
include Google::Apis::Core::Hashable
|
3632
|
-
|
3633
|
-
# Flag that specifies whether the Integration add-on is enabled.
|
3634
|
-
# Corresponds to the JSON property `enabled`
|
3635
|
-
# @return [Boolean]
|
3636
|
-
attr_accessor :enabled
|
3637
|
-
alias_method :enabled?, :enabled
|
3638
|
-
|
3639
|
-
def initialize(**args)
|
3640
|
-
update!(**args)
|
3641
|
-
end
|
3642
|
-
|
3643
|
-
# Update properties of this object
|
3644
|
-
def update!(**args)
|
3645
|
-
@enabled = args[:enabled] if args.key?(:enabled)
|
3646
|
-
end
|
3647
|
-
end
|
3648
|
-
|
3649
3883
|
#
|
3650
3884
|
class GoogleCloudApigeeV1KeyAliasReference
|
3651
3885
|
include Google::Apis::Core::Hashable
|
@@ -3850,6 +4084,32 @@ module Google
|
|
3850
4084
|
end
|
3851
4085
|
end
|
3852
4086
|
|
4087
|
+
# Response for ListArchiveDeployments method.
|
4088
|
+
class GoogleCloudApigeeV1ListArchiveDeploymentsResponse
|
4089
|
+
include Google::Apis::Core::Hashable
|
4090
|
+
|
4091
|
+
# Archive Deployments in the specified environment.
|
4092
|
+
# Corresponds to the JSON property `archiveDeployments`
|
4093
|
+
# @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1ArchiveDeployment>]
|
4094
|
+
attr_accessor :archive_deployments
|
4095
|
+
|
4096
|
+
# Page token that you can include in a ListArchiveDeployments request to
|
4097
|
+
# retrieve the next page. If omitted, no subsequent pages exist.
|
4098
|
+
# Corresponds to the JSON property `nextPageToken`
|
4099
|
+
# @return [String]
|
4100
|
+
attr_accessor :next_page_token
|
4101
|
+
|
4102
|
+
def initialize(**args)
|
4103
|
+
update!(**args)
|
4104
|
+
end
|
4105
|
+
|
4106
|
+
# Update properties of this object
|
4107
|
+
def update!(**args)
|
4108
|
+
@archive_deployments = args[:archive_deployments] if args.key?(:archive_deployments)
|
4109
|
+
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
4110
|
+
end
|
4111
|
+
end
|
4112
|
+
|
3853
4113
|
# The response for ListAsyncQueries.
|
3854
4114
|
class GoogleCloudApigeeV1ListAsyncQueriesResponse
|
3855
4115
|
include Google::Apis::Core::Hashable
|
@@ -4760,7 +5020,7 @@ module Google
|
|
4760
5020
|
# @return [String]
|
4761
5021
|
attr_accessor :description
|
4762
5022
|
|
4763
|
-
#
|
5023
|
+
# Display name for the Apigee organization. Unused, but reserved for future use.
|
4764
5024
|
# Corresponds to the JSON property `displayName`
|
4765
5025
|
# @return [String]
|
4766
5026
|
attr_accessor :display_name
|
@@ -5384,7 +5644,10 @@ module Google
|
|
5384
5644
|
# @return [String]
|
5385
5645
|
attr_accessor :name
|
5386
5646
|
|
5387
|
-
#
|
5647
|
+
# DEPRECATED: This field is no longer supported and will eventually be removed
|
5648
|
+
# when Apigee Hybrid 1.5/1.6 is no longer supported. Instead, use the `
|
5649
|
+
# billingType` field inside `DeveloperMonetizationConfig` resource. Flag that
|
5650
|
+
# specifies the billing account type, prepaid or postpaid.
|
5388
5651
|
# Corresponds to the JSON property `paymentFundingModel`
|
5389
5652
|
# @return [String]
|
5390
5653
|
attr_accessor :payment_funding_model
|
@@ -6681,6 +6944,13 @@ module Google
|
|
6681
6944
|
class GoogleCloudApigeeV1TargetServerConfig
|
6682
6945
|
include Google::Apis::Core::Hashable
|
6683
6946
|
|
6947
|
+
# Whether the target server is enabled. An empty/omitted value for this field
|
6948
|
+
# should be interpreted as true.
|
6949
|
+
# Corresponds to the JSON property `enabled`
|
6950
|
+
# @return [Boolean]
|
6951
|
+
attr_accessor :enabled
|
6952
|
+
alias_method :enabled?, :enabled
|
6953
|
+
|
6684
6954
|
# Host name of the target server.
|
6685
6955
|
# Corresponds to the JSON property `host`
|
6686
6956
|
# @return [String]
|
@@ -6713,6 +6983,7 @@ module Google
|
|
6713
6983
|
|
6714
6984
|
# Update properties of this object
|
6715
6985
|
def update!(**args)
|
6986
|
+
@enabled = args[:enabled] if args.key?(:enabled)
|
6716
6987
|
@host = args[:host] if args.key?(:host)
|
6717
6988
|
@name = args[:name] if args.key?(:name)
|
6718
6989
|
@port = args[:port] if args.key?(:port)
|
@@ -7230,7 +7501,7 @@ module Google
|
|
7230
7501
|
# resourcemanager.organizationAdmin - members: - user:eve@example.com role:
|
7231
7502
|
# roles/resourcemanager.organizationViewer condition: title: expirable access
|
7232
7503
|
# description: Does not grant access after Sep 2020 expression: request.time <
|
7233
|
-
# timestamp('2020-10-01T00:00:00.000Z')
|
7504
|
+
# timestamp('2020-10-01T00:00:00.000Z') etag: BwWWja0YfJA= version: 3 For a
|
7234
7505
|
# description of IAM and its features, see the [IAM documentation](https://cloud.
|
7235
7506
|
# google.com/iam/docs/).
|
7236
7507
|
class GoogleIamV1Policy
|
@@ -7324,7 +7595,7 @@ module Google
|
|
7324
7595
|
# resourcemanager.organizationAdmin - members: - user:eve@example.com role:
|
7325
7596
|
# roles/resourcemanager.organizationViewer condition: title: expirable access
|
7326
7597
|
# description: Does not grant access after Sep 2020 expression: request.time <
|
7327
|
-
# timestamp('2020-10-01T00:00:00.000Z')
|
7598
|
+
# timestamp('2020-10-01T00:00:00.000Z') etag: BwWWja0YfJA= version: 3 For a
|
7328
7599
|
# description of IAM and its features, see the [IAM documentation](https://cloud.
|
7329
7600
|
# google.com/iam/docs/).
|
7330
7601
|
# Corresponds to the JSON property `policy`
|
@@ -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.22.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.4.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20210916"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|