google-apis-apigee_v1 0.19.0 → 0.23.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f176de5cf82eb86c1844297ff9e069e94ec815b10d85569462bef292e639c3a3
4
- data.tar.gz: 62aa86c4d339d487218b27c3335d61c3ae66faf559725e393a7bf5670f8c3c3d
3
+ metadata.gz: 7a9394258c01fb9dc8e3c732504b2071b3eaac1fd93d1e1cccb921c1ea51d087
4
+ data.tar.gz: 9aa8794ff6a1e1de4ce0ef6b23c348649359e6470c7b6d333acae4bce9eb2c5a
5
5
  SHA512:
6
- metadata.gz: 79f40a0ad240a492f6cb7e8368e5b2b21a0d3e4d47cf8a34bc0719b95a2c39f6ed18f31189d9af4f59234ec4e40b0e1bd0d72c4d767abc01165139ab5ac4c9da
7
- data.tar.gz: a6b6ba074fcc0736123a19a78485d32342adaa4225c1bc3c72d089c95221a68595a0a4bab45ff07e117e9c86b884c2d709ec64ea412957040aa5d240d83ea717
6
+ metadata.gz: d7f6fef0fa3baa9d8a06c35d7591e54573e4c21a96c5b4c75d9940cd15d9ba0ba814edd8308525fbd2e416284c2542c0c18133e794e06afc0b7148d606a72032
7
+ data.tar.gz: d1e6f39061cf361a3aa9b4214bcb75ba9d0d0ba6bd13acb185f13891962ba1e35d5b89956769d4349f99cf67043ee9eb3f0c4cd3abc9c961f3adc3eef5c3174b
data/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # Release history for google-apis-apigee_v1
2
2
 
3
+ ### v0.23.0 (2021-09-28)
4
+
5
+ * Regenerated from discovery document revision 20210924
6
+
7
+ ### v0.22.0 (2021-09-21)
8
+
9
+ * Regenerated from discovery document revision 20210916
10
+
11
+ ### v0.21.0 (2021-09-08)
12
+
13
+ * Regenerated from discovery document revision 20210902
14
+
15
+ ### v0.20.0 (2021-09-01)
16
+
17
+ * Regenerated from discovery document revision 20210826
18
+
3
19
  ### v0.19.0 (2021-08-03)
4
20
 
5
21
  * Regenerated from discovery document revision 20210729
@@ -257,6 +257,16 @@ module Google
257
257
  # @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1AdvancedApiOpsConfig]
258
258
  attr_accessor :advanced_api_ops_config
259
259
 
260
+ # Configuration for the Connectors Platform add-on.
261
+ # Corresponds to the JSON property `connectorsPlatformConfig`
262
+ # @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1ConnectorsPlatformConfig]
263
+ attr_accessor :connectors_platform_config
264
+
265
+ # Configuration for the Integration add-on.
266
+ # Corresponds to the JSON property `integrationConfig`
267
+ # @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1IntegrationConfig]
268
+ attr_accessor :integration_config
269
+
260
270
  # Configuration for the Monetization add-on.
261
271
  # Corresponds to the JSON property `monetizationConfig`
262
272
  # @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1MonetizationConfig]
@@ -269,6 +279,8 @@ module Google
269
279
  # Update properties of this object
270
280
  def update!(**args)
271
281
  @advanced_api_ops_config = args[:advanced_api_ops_config] if args.key?(:advanced_api_ops_config)
282
+ @connectors_platform_config = args[:connectors_platform_config] if args.key?(:connectors_platform_config)
283
+ @integration_config = args[:integration_config] if args.key?(:integration_config)
272
284
  @monetization_config = args[:monetization_config] if args.key?(:monetization_config)
273
285
  end
274
286
  end
@@ -958,6 +970,66 @@ module Google
958
970
  end
959
971
  end
960
972
 
973
+ # Archive Deployment information.
974
+ class GoogleCloudApigeeV1ArchiveDeployment
975
+ include Google::Apis::Core::Hashable
976
+
977
+ # Output only. The time at which the Archive Deployment was created in
978
+ # milliseconds since the epoch.
979
+ # Corresponds to the JSON property `createdAt`
980
+ # @return [Fixnum]
981
+ attr_accessor :created_at
982
+
983
+ # Input only. The Google Cloud Storage signed URL returned from
984
+ # GenerateUploadUrl and used to upload the Archive zip file.
985
+ # Corresponds to the JSON property `gcsUri`
986
+ # @return [String]
987
+ attr_accessor :gcs_uri
988
+
989
+ # User-supplied key-value pairs used to organize ArchiveDeployments. Label keys
990
+ # must be between 1 and 63 characters long, have a UTF-8 encoding of maximum 128
991
+ # bytes, and must conform to the following PCRE regular expression: \p`Ll`\p`Lo``
992
+ # 0,62` Label values must be between 1 and 63 characters long, have a UTF-8
993
+ # encoding of maximum 128 bytes, and must conform to the following PCRE regular
994
+ # expression: [\p`Ll`\p`Lo`\p`N`_-]`0,63` No more than 64 labels can be
995
+ # associated with a given store.
996
+ # Corresponds to the JSON property `labels`
997
+ # @return [Hash<String,String>]
998
+ attr_accessor :labels
999
+
1000
+ # Name of the Archive Deployment in the following format: `organizations/`org`/
1001
+ # environments/`env`/archiveDeployments/`id``.
1002
+ # Corresponds to the JSON property `name`
1003
+ # @return [String]
1004
+ attr_accessor :name
1005
+
1006
+ # Output only. A reference to the LRO that created this Archive Deployment in
1007
+ # the following format: `organizations/`org`/operations/`id``
1008
+ # Corresponds to the JSON property `operation`
1009
+ # @return [String]
1010
+ attr_accessor :operation
1011
+
1012
+ # Output only. The time at which the Archive Deployment was updated in
1013
+ # milliseconds since the epoch.
1014
+ # Corresponds to the JSON property `updatedAt`
1015
+ # @return [Fixnum]
1016
+ attr_accessor :updated_at
1017
+
1018
+ def initialize(**args)
1019
+ update!(**args)
1020
+ end
1021
+
1022
+ # Update properties of this object
1023
+ def update!(**args)
1024
+ @created_at = args[:created_at] if args.key?(:created_at)
1025
+ @gcs_uri = args[:gcs_uri] if args.key?(:gcs_uri)
1026
+ @labels = args[:labels] if args.key?(:labels)
1027
+ @name = args[:name] if args.key?(:name)
1028
+ @operation = args[:operation] if args.key?(:operation)
1029
+ @updated_at = args[:updated_at] if args.key?(:updated_at)
1030
+ end
1031
+ end
1032
+
961
1033
  #
962
1034
  class GoogleCloudApigeeV1AsyncQuery
963
1035
  include Google::Apis::Core::Hashable
@@ -1420,6 +1492,33 @@ module Google
1420
1492
  end
1421
1493
  end
1422
1494
 
1495
+ # Configuration for the Connectors Platform add-on.
1496
+ class GoogleCloudApigeeV1ConnectorsPlatformConfig
1497
+ include Google::Apis::Core::Hashable
1498
+
1499
+ # Flag that specifies whether the Connectors Platform add-on is enabled.
1500
+ # Corresponds to the JSON property `enabled`
1501
+ # @return [Boolean]
1502
+ attr_accessor :enabled
1503
+ alias_method :enabled?, :enabled
1504
+
1505
+ # Output only. Time at which the Connectors Platform add-on expires in in
1506
+ # milliseconds since epoch. If unspecified, the add-on will never expire.
1507
+ # Corresponds to the JSON property `expiresAt`
1508
+ # @return [Fixnum]
1509
+ attr_accessor :expires_at
1510
+
1511
+ def initialize(**args)
1512
+ update!(**args)
1513
+ end
1514
+
1515
+ # Update properties of this object
1516
+ def update!(**args)
1517
+ @enabled = args[:enabled] if args.key?(:enabled)
1518
+ @expires_at = args[:expires_at] if args.key?(:expires_at)
1519
+ end
1520
+ end
1521
+
1423
1522
  #
1424
1523
  class GoogleCloudApigeeV1Credential
1425
1524
  include Google::Apis::Core::Hashable
@@ -1482,6 +1581,33 @@ module Google
1482
1581
  end
1483
1582
  end
1484
1583
 
1584
+ # Request for CreditDeveloperBalance.
1585
+ class GoogleCloudApigeeV1CreditDeveloperBalanceRequest
1586
+ include Google::Apis::Core::Hashable
1587
+
1588
+ # Represents an amount of money with its currency type.
1589
+ # Corresponds to the JSON property `transactionAmount`
1590
+ # @return [Google::Apis::ApigeeV1::GoogleTypeMoney]
1591
+ attr_accessor :transaction_amount
1592
+
1593
+ # Each transaction_id uniquely identifies a credit balance request. If multiple
1594
+ # requests are received with the same transaction_id, only one of them will be
1595
+ # considered.
1596
+ # Corresponds to the JSON property `transactionId`
1597
+ # @return [String]
1598
+ attr_accessor :transaction_id
1599
+
1600
+ def initialize(**args)
1601
+ update!(**args)
1602
+ end
1603
+
1604
+ # Update properties of this object
1605
+ def update!(**args)
1606
+ @transaction_amount = args[:transaction_amount] if args.key?(:transaction_amount)
1607
+ @transaction_id = args[:transaction_id] if args.key?(:transaction_id)
1608
+ end
1609
+ end
1610
+
1485
1611
  #
1486
1612
  class GoogleCloudApigeeV1CustomReport
1487
1613
  include Google::Apis::Core::Hashable
@@ -2609,6 +2735,71 @@ module Google
2609
2735
  end
2610
2736
  end
2611
2737
 
2738
+ # Account balance for the developer.
2739
+ class GoogleCloudApigeeV1DeveloperBalance
2740
+ include Google::Apis::Core::Hashable
2741
+
2742
+ # Output only. List of all wallets. Each individual wallet stores the account
2743
+ # balance for a particular currency.
2744
+ # Corresponds to the JSON property `wallets`
2745
+ # @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1DeveloperBalanceWallet>]
2746
+ attr_accessor :wallets
2747
+
2748
+ def initialize(**args)
2749
+ update!(**args)
2750
+ end
2751
+
2752
+ # Update properties of this object
2753
+ def update!(**args)
2754
+ @wallets = args[:wallets] if args.key?(:wallets)
2755
+ end
2756
+ end
2757
+
2758
+ # Wallet used to manage an account balance for a particular currency.
2759
+ class GoogleCloudApigeeV1DeveloperBalanceWallet
2760
+ include Google::Apis::Core::Hashable
2761
+
2762
+ # Represents an amount of money with its currency type.
2763
+ # Corresponds to the JSON property `balance`
2764
+ # @return [Google::Apis::ApigeeV1::GoogleTypeMoney]
2765
+ attr_accessor :balance
2766
+
2767
+ # Output only. Time at which the developer last added credit to the account in
2768
+ # milliseconds since epoch.
2769
+ # Corresponds to the JSON property `lastCreditTime`
2770
+ # @return [Fixnum]
2771
+ attr_accessor :last_credit_time
2772
+
2773
+ def initialize(**args)
2774
+ update!(**args)
2775
+ end
2776
+
2777
+ # Update properties of this object
2778
+ def update!(**args)
2779
+ @balance = args[:balance] if args.key?(:balance)
2780
+ @last_credit_time = args[:last_credit_time] if args.key?(:last_credit_time)
2781
+ end
2782
+ end
2783
+
2784
+ # Monetization configuration for the developer.
2785
+ class GoogleCloudApigeeV1DeveloperMonetizationConfig
2786
+ include Google::Apis::Core::Hashable
2787
+
2788
+ # Billing type.
2789
+ # Corresponds to the JSON property `billingType`
2790
+ # @return [String]
2791
+ attr_accessor :billing_type
2792
+
2793
+ def initialize(**args)
2794
+ update!(**args)
2795
+ end
2796
+
2797
+ # Update properties of this object
2798
+ def update!(**args)
2799
+ @billing_type = args[:billing_type] if args.key?(:billing_type)
2800
+ end
2801
+ end
2802
+
2612
2803
  # Structure of a DeveloperSubscription.
2613
2804
  class GoogleCloudApigeeV1DeveloperSubscription
2614
2805
  include Google::Apis::Core::Hashable
@@ -2721,11 +2912,28 @@ module Google
2721
2912
  class GoogleCloudApigeeV1Environment
2722
2913
  include Google::Apis::Core::Hashable
2723
2914
 
2915
+ # Optional. API Proxy type supported by the environment. The type can be set
2916
+ # when creating the Environment and cannot be changed.
2917
+ # Corresponds to the JSON property `apiProxyType`
2918
+ # @return [String]
2919
+ attr_accessor :api_proxy_type
2920
+
2724
2921
  # Output only. Creation time of this environment as milliseconds since epoch.
2725
2922
  # Corresponds to the JSON property `createdAt`
2726
2923
  # @return [Fixnum]
2727
2924
  attr_accessor :created_at
2728
2925
 
2926
+ # Optional. Deployment type supported by the environment. The deployment type
2927
+ # can be set when creating the environment and cannot be changed. When you
2928
+ # enable archive deployment, you will be **prevented from performing** a [subset
2929
+ # of actions](/apigee/docs/api-platform/local-development/overview#prevented-
2930
+ # actions) within the environment, including: * Managing the deployment of API
2931
+ # proxy or shared flow revisions * Creating, updating, or deleting resource
2932
+ # files * Creating, updating, or deleting target servers
2933
+ # Corresponds to the JSON property `deploymentType`
2934
+ # @return [String]
2935
+ attr_accessor :deployment_type
2936
+
2729
2937
  # Optional. Description of the environment.
2730
2938
  # Corresponds to the JSON property `description`
2731
2939
  # @return [String]
@@ -2766,7 +2974,9 @@ module Google
2766
2974
 
2767
2975
  # Update properties of this object
2768
2976
  def update!(**args)
2977
+ @api_proxy_type = args[:api_proxy_type] if args.key?(:api_proxy_type)
2769
2978
  @created_at = args[:created_at] if args.key?(:created_at)
2979
+ @deployment_type = args[:deployment_type] if args.key?(:deployment_type)
2770
2980
  @description = args[:description] if args.key?(:description)
2771
2981
  @display_name = args[:display_name] if args.key?(:display_name)
2772
2982
  @last_modified_at = args[:last_modified_at] if args.key?(:last_modified_at)
@@ -2780,6 +2990,13 @@ module Google
2780
2990
  class GoogleCloudApigeeV1EnvironmentConfig
2781
2991
  include Google::Apis::Core::Hashable
2782
2992
 
2993
+ # The location for the config blob of API Runtime Control, aka Envoy Adapter,
2994
+ # for op-based authentication as a URI, e.g. a Cloud Storage URI. This is only
2995
+ # used by Envoy-based gateways.
2996
+ # Corresponds to the JSON property `arcConfigLocation`
2997
+ # @return [String]
2998
+ attr_accessor :arc_config_location
2999
+
2783
3000
  # Time that the environment configuration was created.
2784
3001
  # Corresponds to the JSON property `createTime`
2785
3002
  # @return [String]
@@ -2810,6 +3027,12 @@ module Google
2810
3027
  # @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1FlowHookConfig>]
2811
3028
  attr_accessor :flowhooks
2812
3029
 
3030
+ # The location for the gateway config blob as a URI, e.g. a Cloud Storage URI.
3031
+ # This is only used by Envoy-based gateways.
3032
+ # Corresponds to the JSON property `gatewayConfigLocation`
3033
+ # @return [String]
3034
+ attr_accessor :gateway_config_location
3035
+
2813
3036
  # List of keystores in the environment.
2814
3037
  # Corresponds to the JSON property `keystores`
2815
3038
  # @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1KeystoreConfig>]
@@ -2877,12 +3100,14 @@ module Google
2877
3100
 
2878
3101
  # Update properties of this object
2879
3102
  def update!(**args)
3103
+ @arc_config_location = args[:arc_config_location] if args.key?(:arc_config_location)
2880
3104
  @create_time = args[:create_time] if args.key?(:create_time)
2881
3105
  @data_collectors = args[:data_collectors] if args.key?(:data_collectors)
2882
3106
  @debug_mask = args[:debug_mask] if args.key?(:debug_mask)
2883
3107
  @deployments = args[:deployments] if args.key?(:deployments)
2884
3108
  @feature_flags = args[:feature_flags] if args.key?(:feature_flags)
2885
3109
  @flowhooks = args[:flowhooks] if args.key?(:flowhooks)
3110
+ @gateway_config_location = args[:gateway_config_location] if args.key?(:gateway_config_location)
2886
3111
  @keystores = args[:keystores] if args.key?(:keystores)
2887
3112
  @name = args[:name] if args.key?(:name)
2888
3113
  @provider = args[:provider] if args.key?(:provider)
@@ -3242,6 +3467,72 @@ module Google
3242
3467
  end
3243
3468
  end
3244
3469
 
3470
+ # Request for GenerateDownloadUrl method.
3471
+ class GoogleCloudApigeeV1GenerateDownloadUrlRequest
3472
+ include Google::Apis::Core::Hashable
3473
+
3474
+ def initialize(**args)
3475
+ update!(**args)
3476
+ end
3477
+
3478
+ # Update properties of this object
3479
+ def update!(**args)
3480
+ end
3481
+ end
3482
+
3483
+ # Response for GenerateDownloadUrl method.
3484
+ class GoogleCloudApigeeV1GenerateDownloadUrlResponse
3485
+ include Google::Apis::Core::Hashable
3486
+
3487
+ # The Google Cloud Storage signed URL that can be used to download the Archive
3488
+ # zip file.
3489
+ # Corresponds to the JSON property `downloadUri`
3490
+ # @return [String]
3491
+ attr_accessor :download_uri
3492
+
3493
+ def initialize(**args)
3494
+ update!(**args)
3495
+ end
3496
+
3497
+ # Update properties of this object
3498
+ def update!(**args)
3499
+ @download_uri = args[:download_uri] if args.key?(:download_uri)
3500
+ end
3501
+ end
3502
+
3503
+ # Request for GenerateUploadUrl method.
3504
+ class GoogleCloudApigeeV1GenerateUploadUrlRequest
3505
+ include Google::Apis::Core::Hashable
3506
+
3507
+ def initialize(**args)
3508
+ update!(**args)
3509
+ end
3510
+
3511
+ # Update properties of this object
3512
+ def update!(**args)
3513
+ end
3514
+ end
3515
+
3516
+ # Response for GenerateUploadUrl method.
3517
+ class GoogleCloudApigeeV1GenerateUploadUrlResponse
3518
+ include Google::Apis::Core::Hashable
3519
+
3520
+ # The Google Cloud Storage signed URL that can be used to upload a new Archive
3521
+ # zip file.
3522
+ # Corresponds to the JSON property `uploadUri`
3523
+ # @return [String]
3524
+ attr_accessor :upload_uri
3525
+
3526
+ def initialize(**args)
3527
+ update!(**args)
3528
+ end
3529
+
3530
+ # Update properties of this object
3531
+ def update!(**args)
3532
+ @upload_uri = args[:upload_uri] if args.key?(:upload_uri)
3533
+ end
3534
+ end
3535
+
3245
3536
  # Request for GetSyncAuthorization.
3246
3537
  class GoogleCloudApigeeV1GetSyncAuthorizationRequest
3247
3538
  include Google::Apis::Core::Hashable
@@ -3468,6 +3759,13 @@ module Google
3468
3759
  # @return [String]
3469
3760
  attr_accessor :port
3470
3761
 
3762
+ # Output only. Version of the runtime system running in the instance. The
3763
+ # runtime system is the set of components that serve the API Proxy traffic in
3764
+ # your Environments.
3765
+ # Corresponds to the JSON property `runtimeVersion`
3766
+ # @return [String]
3767
+ attr_accessor :runtime_version
3768
+
3471
3769
  # Output only. State of the instance. Values other than `ACTIVE` means the
3472
3770
  # resource is not ready to use.
3473
3771
  # Corresponds to the JSON property `state`
@@ -3490,6 +3788,7 @@ module Google
3490
3788
  @name = args[:name] if args.key?(:name)
3491
3789
  @peering_cidr_range = args[:peering_cidr_range] if args.key?(:peering_cidr_range)
3492
3790
  @port = args[:port] if args.key?(:port)
3791
+ @runtime_version = args[:runtime_version] if args.key?(:runtime_version)
3493
3792
  @state = args[:state] if args.key?(:state)
3494
3793
  end
3495
3794
  end
@@ -3620,6 +3919,26 @@ module Google
3620
3919
  end
3621
3920
  end
3622
3921
 
3922
+ # Configuration for the Integration add-on.
3923
+ class GoogleCloudApigeeV1IntegrationConfig
3924
+ include Google::Apis::Core::Hashable
3925
+
3926
+ # Flag that specifies whether the Integration add-on is enabled.
3927
+ # Corresponds to the JSON property `enabled`
3928
+ # @return [Boolean]
3929
+ attr_accessor :enabled
3930
+ alias_method :enabled?, :enabled
3931
+
3932
+ def initialize(**args)
3933
+ update!(**args)
3934
+ end
3935
+
3936
+ # Update properties of this object
3937
+ def update!(**args)
3938
+ @enabled = args[:enabled] if args.key?(:enabled)
3939
+ end
3940
+ end
3941
+
3623
3942
  #
3624
3943
  class GoogleCloudApigeeV1KeyAliasReference
3625
3944
  include Google::Apis::Core::Hashable
@@ -3824,6 +4143,32 @@ module Google
3824
4143
  end
3825
4144
  end
3826
4145
 
4146
+ # Response for ListArchiveDeployments method.
4147
+ class GoogleCloudApigeeV1ListArchiveDeploymentsResponse
4148
+ include Google::Apis::Core::Hashable
4149
+
4150
+ # Archive Deployments in the specified environment.
4151
+ # Corresponds to the JSON property `archiveDeployments`
4152
+ # @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1ArchiveDeployment>]
4153
+ attr_accessor :archive_deployments
4154
+
4155
+ # Page token that you can include in a ListArchiveDeployments request to
4156
+ # retrieve the next page. If omitted, no subsequent pages exist.
4157
+ # Corresponds to the JSON property `nextPageToken`
4158
+ # @return [String]
4159
+ attr_accessor :next_page_token
4160
+
4161
+ def initialize(**args)
4162
+ update!(**args)
4163
+ end
4164
+
4165
+ # Update properties of this object
4166
+ def update!(**args)
4167
+ @archive_deployments = args[:archive_deployments] if args.key?(:archive_deployments)
4168
+ @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
4169
+ end
4170
+ end
4171
+
3827
4172
  # The response for ListAsyncQueries.
3828
4173
  class GoogleCloudApigeeV1ListAsyncQueriesResponse
3829
4174
  include Google::Apis::Core::Hashable
@@ -4734,7 +5079,7 @@ module Google
4734
5079
  # @return [String]
4735
5080
  attr_accessor :description
4736
5081
 
4737
- #
5082
+ # Display name for the Apigee organization. Unused, but reserved for future use.
4738
5083
  # Corresponds to the JSON property `displayName`
4739
5084
  # @return [String]
4740
5085
  attr_accessor :display_name
@@ -5358,7 +5703,10 @@ module Google
5358
5703
  # @return [String]
5359
5704
  attr_accessor :name
5360
5705
 
5361
- # Flag that specifies the billing account type, prepaid or postpaid.
5706
+ # DEPRECATED: This field is no longer supported and will eventually be removed
5707
+ # when Apigee Hybrid 1.5/1.6 is no longer supported. Instead, use the `
5708
+ # billingType` field inside `DeveloperMonetizationConfig` resource. Flag that
5709
+ # specifies the billing account type, prepaid or postpaid.
5362
5710
  # Corresponds to the JSON property `paymentFundingModel`
5363
5711
  # @return [String]
5364
5712
  attr_accessor :payment_funding_model
@@ -6655,6 +7003,13 @@ module Google
6655
7003
  class GoogleCloudApigeeV1TargetServerConfig
6656
7004
  include Google::Apis::Core::Hashable
6657
7005
 
7006
+ # Whether the target server is enabled. An empty/omitted value for this field
7007
+ # should be interpreted as true.
7008
+ # Corresponds to the JSON property `enabled`
7009
+ # @return [Boolean]
7010
+ attr_accessor :enabled
7011
+ alias_method :enabled?, :enabled
7012
+
6658
7013
  # Host name of the target server.
6659
7014
  # Corresponds to the JSON property `host`
6660
7015
  # @return [String]
@@ -6687,6 +7042,7 @@ module Google
6687
7042
 
6688
7043
  # Update properties of this object
6689
7044
  def update!(**args)
7045
+ @enabled = args[:enabled] if args.key?(:enabled)
6690
7046
  @host = args[:host] if args.key?(:host)
6691
7047
  @name = args[:name] if args.key?(:name)
6692
7048
  @port = args[:port] if args.key?(:port)
@@ -7204,7 +7560,7 @@ module Google
7204
7560
  # resourcemanager.organizationAdmin - members: - user:eve@example.com role:
7205
7561
  # roles/resourcemanager.organizationViewer condition: title: expirable access
7206
7562
  # description: Does not grant access after Sep 2020 expression: request.time <
7207
- # timestamp('2020-10-01T00:00:00.000Z') - etag: BwWWja0YfJA= - version: 3 For a
7563
+ # timestamp('2020-10-01T00:00:00.000Z') etag: BwWWja0YfJA= version: 3 For a
7208
7564
  # description of IAM and its features, see the [IAM documentation](https://cloud.
7209
7565
  # google.com/iam/docs/).
7210
7566
  class GoogleIamV1Policy
@@ -7298,7 +7654,7 @@ module Google
7298
7654
  # resourcemanager.organizationAdmin - members: - user:eve@example.com role:
7299
7655
  # roles/resourcemanager.organizationViewer condition: title: expirable access
7300
7656
  # description: Does not grant access after Sep 2020 expression: request.time <
7301
- # timestamp('2020-10-01T00:00:00.000Z') - etag: BwWWja0YfJA= - version: 3 For a
7657
+ # timestamp('2020-10-01T00:00:00.000Z') etag: BwWWja0YfJA= version: 3 For a
7302
7658
  # description of IAM and its features, see the [IAM documentation](https://cloud.
7303
7659
  # google.com/iam/docs/).
7304
7660
  # 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.0"
19
+ GEM_VERSION = "0.23.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 = "20210729"
25
+ REVISION = "20210924"
26
26
  end
27
27
  end
28
28
  end