google-apis-apigee_v1 0.15.0 → 0.19.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: 18d952a7a23dc590334ffdb6798bef02518af3ac64b36978e68f7e3deba31c76
4
- data.tar.gz: afde5d2260b5f16d57ca7c6d0631b16e25676af1b083eab18b57d865bda7bed2
3
+ metadata.gz: f176de5cf82eb86c1844297ff9e069e94ec815b10d85569462bef292e639c3a3
4
+ data.tar.gz: 62aa86c4d339d487218b27c3335d61c3ae66faf559725e393a7bf5670f8c3c3d
5
5
  SHA512:
6
- metadata.gz: 899df1430faeab5cdea97f965a499dff0246304110eb3d2487a7da371b6f12a7f8085cb2ca187b2d1964abba1d6b2cc7cbcc736fc9887a333ea3e3508da1194d
7
- data.tar.gz: 657b35425ae16b0e40f5fb57fd49499e26211b55abe04c6ef211a2f94ae060afbec7b093d6cace3934f776d23c9e70dd171e0c0c509d30bb72f98e62043718de
6
+ metadata.gz: 79f40a0ad240a492f6cb7e8368e5b2b21a0d3e4d47cf8a34bc0719b95a2c39f6ed18f31189d9af4f59234ec4e40b0e1bd0d72c4d767abc01165139ab5ac4c9da
7
+ data.tar.gz: a6b6ba074fcc0736123a19a78485d32342adaa4225c1bc3c72d089c95221a68595a0a4bab45ff07e117e9c86b884c2d709ec64ea412957040aa5d240d83ea717
data/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # Release history for google-apis-apigee_v1
2
2
 
3
+ ### v0.19.0 (2021-08-03)
4
+
5
+ * Regenerated from discovery document revision 20210729
6
+
7
+ ### v0.18.0 (2021-07-28)
8
+
9
+ * Regenerated from discovery document revision 20210722
10
+
11
+ ### v0.17.0 (2021-07-13)
12
+
13
+ * Regenerated from discovery document revision 20210708
14
+
15
+ ### v0.16.0 (2021-06-29)
16
+
17
+ * Regenerated using generator version 0.4.0
18
+
3
19
  ### v0.15.0 (2021-06-24)
4
20
 
5
21
  * Regenerated from discovery document revision 20210618
@@ -22,6 +22,51 @@ module Google
22
22
  module Apis
23
23
  module ApigeeV1
24
24
 
25
+ # Describes why a bundle is invalid. Intended for use in error details.
26
+ class EdgeConfigstoreBundleBadBundle
27
+ include Google::Apis::Core::Hashable
28
+
29
+ # Describes all precondition violations.
30
+ # Corresponds to the JSON property `violations`
31
+ # @return [Array<Google::Apis::ApigeeV1::EdgeConfigstoreBundleBadBundleViolation>]
32
+ attr_accessor :violations
33
+
34
+ def initialize(**args)
35
+ update!(**args)
36
+ end
37
+
38
+ # Update properties of this object
39
+ def update!(**args)
40
+ @violations = args[:violations] if args.key?(:violations)
41
+ end
42
+ end
43
+
44
+ # A message type used to describe a single bundle validation error.
45
+ class EdgeConfigstoreBundleBadBundleViolation
46
+ include Google::Apis::Core::Hashable
47
+
48
+ # A description of why the bundle is invalid and how to fix it.
49
+ # Corresponds to the JSON property `description`
50
+ # @return [String]
51
+ attr_accessor :description
52
+
53
+ # The filename (including relative path from the bundle root) in which the error
54
+ # occurred.
55
+ # Corresponds to the JSON property `filename`
56
+ # @return [String]
57
+ attr_accessor :filename
58
+
59
+ def initialize(**args)
60
+ update!(**args)
61
+ end
62
+
63
+ # Update properties of this object
64
+ def update!(**args)
65
+ @description = args[:description] if args.key?(:description)
66
+ @filename = args[:filename] if args.key?(:filename)
67
+ end
68
+ end
69
+
25
70
  # Message that represents an arbitrary HTTP body. It should only be used for
26
71
  # payload formats that can't be represented as JSON, such as raw binary or an
27
72
  # HTML page. This message can be used both in streaming and non-streaming API
@@ -212,11 +257,6 @@ module Google
212
257
  # @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1AdvancedApiOpsConfig]
213
258
  attr_accessor :advanced_api_ops_config
214
259
 
215
- # Configuration for the Integration add-on.
216
- # Corresponds to the JSON property `integrationConfig`
217
- # @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1IntegrationConfig]
218
- attr_accessor :integration_config
219
-
220
260
  # Configuration for the Monetization add-on.
221
261
  # Corresponds to the JSON property `monetizationConfig`
222
262
  # @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1MonetizationConfig]
@@ -229,7 +269,6 @@ module Google
229
269
  # Update properties of this object
230
270
  def update!(**args)
231
271
  @advanced_api_ops_config = args[:advanced_api_ops_config] if args.key?(:advanced_api_ops_config)
232
- @integration_config = args[:integration_config] if args.key?(:integration_config)
233
272
  @monetization_config = args[:monetization_config] if args.key?(:monetization_config)
234
273
  end
235
274
  end
@@ -589,7 +628,12 @@ module Google
589
628
  class GoogleCloudApigeeV1ApiProxy
590
629
  include Google::Apis::Core::Hashable
591
630
 
592
- # The id of the most recently created revision for this api proxy.
631
+ # User labels applied to this API Proxy.
632
+ # Corresponds to the JSON property `labels`
633
+ # @return [Hash<String,String>]
634
+ attr_accessor :labels
635
+
636
+ # Output only. The id of the most recently created revision for this api proxy.
593
637
  # Corresponds to the JSON property `latestRevisionId`
594
638
  # @return [String]
595
639
  attr_accessor :latest_revision_id
@@ -599,12 +643,12 @@ module Google
599
643
  # @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1EntityMetadata]
600
644
  attr_accessor :meta_data
601
645
 
602
- # Name of the API proxy.
646
+ # Output only. Name of the API proxy.
603
647
  # Corresponds to the JSON property `name`
604
648
  # @return [String]
605
649
  attr_accessor :name
606
650
 
607
- # List of revisons defined for the API proxy.
651
+ # Output only. List of revisons defined for the API proxy.
608
652
  # Corresponds to the JSON property `revision`
609
653
  # @return [Array<String>]
610
654
  attr_accessor :revision
@@ -615,6 +659,7 @@ module Google
615
659
 
616
660
  # Update properties of this object
617
661
  def update!(**args)
662
+ @labels = args[:labels] if args.key?(:labels)
618
663
  @latest_revision_id = args[:latest_revision_id] if args.key?(:latest_revision_id)
619
664
  @meta_data = args[:meta_data] if args.key?(:meta_data)
620
665
  @name = args[:name] if args.key?(:name)
@@ -2044,6 +2089,12 @@ module Google
2044
2089
  # @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1DeploymentChangeReportRoutingConflict>]
2045
2090
  attr_accessor :route_conflicts
2046
2091
 
2092
+ # The full resource name of Cloud IAM Service Account that this deployment is
2093
+ # using, eg, `projects/-/serviceAccounts/`email``.
2094
+ # Corresponds to the JSON property `serviceAccount`
2095
+ # @return [String]
2096
+ attr_accessor :service_account
2097
+
2047
2098
  # Current state of the deployment. This field is not populated in List APIs.
2048
2099
  # Corresponds to the JSON property `state`
2049
2100
  # @return [String]
@@ -2063,6 +2114,7 @@ module Google
2063
2114
  @pods = args[:pods] if args.key?(:pods)
2064
2115
  @revision = args[:revision] if args.key?(:revision)
2065
2116
  @route_conflicts = args[:route_conflicts] if args.key?(:route_conflicts)
2117
+ @service_account = args[:service_account] if args.key?(:service_account)
2066
2118
  @state = args[:state] if args.key?(:state)
2067
2119
  end
2068
2120
  end
@@ -3568,26 +3620,6 @@ module Google
3568
3620
  end
3569
3621
  end
3570
3622
 
3571
- # Configuration for the Integration add-on.
3572
- class GoogleCloudApigeeV1IntegrationConfig
3573
- include Google::Apis::Core::Hashable
3574
-
3575
- # Flag that specifies whether the Integration add-on is enabled.
3576
- # Corresponds to the JSON property `enabled`
3577
- # @return [Boolean]
3578
- attr_accessor :enabled
3579
- alias_method :enabled?, :enabled
3580
-
3581
- def initialize(**args)
3582
- update!(**args)
3583
- end
3584
-
3585
- # Update properties of this object
3586
- def update!(**args)
3587
- @enabled = args[:enabled] if args.key?(:enabled)
3588
- end
3589
- end
3590
-
3591
3623
  #
3592
3624
  class GoogleCloudApigeeV1KeyAliasReference
3593
3625
  include Google::Apis::Core::Hashable
@@ -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.15.0"
19
+ GEM_VERSION = "0.19.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.3.0"
22
+ GENERATOR_VERSION = "0.4.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210618"
25
+ REVISION = "20210729"
26
26
  end
27
27
  end
28
28
  end
@@ -22,6 +22,18 @@ module Google
22
22
  module Apis
23
23
  module ApigeeV1
24
24
 
25
+ class EdgeConfigstoreBundleBadBundle
26
+ class Representation < Google::Apis::Core::JsonRepresentation; end
27
+
28
+ include Google::Apis::Core::JsonObjectSupport
29
+ end
30
+
31
+ class EdgeConfigstoreBundleBadBundleViolation
32
+ class Representation < Google::Apis::Core::JsonRepresentation; end
33
+
34
+ include Google::Apis::Core::JsonObjectSupport
35
+ end
36
+
25
37
  class GoogleApiHttpBody
26
38
  class Representation < Google::Apis::Core::JsonRepresentation; end
27
39
 
@@ -460,12 +472,6 @@ module Google
460
472
  include Google::Apis::Core::JsonObjectSupport
461
473
  end
462
474
 
463
- class GoogleCloudApigeeV1IntegrationConfig
464
- class Representation < Google::Apis::Core::JsonRepresentation; end
465
-
466
- include Google::Apis::Core::JsonObjectSupport
467
- end
468
-
469
475
  class GoogleCloudApigeeV1KeyAliasReference
470
476
  class Representation < Google::Apis::Core::JsonRepresentation; end
471
477
 
@@ -1120,6 +1126,22 @@ module Google
1120
1126
  include Google::Apis::Core::JsonObjectSupport
1121
1127
  end
1122
1128
 
1129
+ class EdgeConfigstoreBundleBadBundle
1130
+ # @private
1131
+ class Representation < Google::Apis::Core::JsonRepresentation
1132
+ collection :violations, as: 'violations', class: Google::Apis::ApigeeV1::EdgeConfigstoreBundleBadBundleViolation, decorator: Google::Apis::ApigeeV1::EdgeConfigstoreBundleBadBundleViolation::Representation
1133
+
1134
+ end
1135
+ end
1136
+
1137
+ class EdgeConfigstoreBundleBadBundleViolation
1138
+ # @private
1139
+ class Representation < Google::Apis::Core::JsonRepresentation
1140
+ property :description, as: 'description'
1141
+ property :filename, as: 'filename'
1142
+ end
1143
+ end
1144
+
1123
1145
  class GoogleApiHttpBody
1124
1146
  # @private
1125
1147
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1177,8 +1199,6 @@ module Google
1177
1199
  class Representation < Google::Apis::Core::JsonRepresentation
1178
1200
  property :advanced_api_ops_config, as: 'advancedApiOpsConfig', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1AdvancedApiOpsConfig, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1AdvancedApiOpsConfig::Representation
1179
1201
 
1180
- property :integration_config, as: 'integrationConfig', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1IntegrationConfig, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1IntegrationConfig::Representation
1181
-
1182
1202
  property :monetization_config, as: 'monetizationConfig', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1MonetizationConfig, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1MonetizationConfig::Representation
1183
1203
 
1184
1204
  end
@@ -1268,6 +1288,7 @@ module Google
1268
1288
  class GoogleCloudApigeeV1ApiProxy
1269
1289
  # @private
1270
1290
  class Representation < Google::Apis::Core::JsonRepresentation
1291
+ hash :labels, as: 'labels'
1271
1292
  property :latest_revision_id, as: 'latestRevisionId'
1272
1293
  property :meta_data, as: 'metaData', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1EntityMetadata, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1EntityMetadata::Representation
1273
1294
 
@@ -1625,6 +1646,7 @@ module Google
1625
1646
  property :revision, as: 'revision'
1626
1647
  collection :route_conflicts, as: 'routeConflicts', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1DeploymentChangeReportRoutingConflict, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1DeploymentChangeReportRoutingConflict::Representation
1627
1648
 
1649
+ property :service_account, as: 'serviceAccount'
1628
1650
  property :state, as: 'state'
1629
1651
  end
1630
1652
  end
@@ -2009,13 +2031,6 @@ module Google
2009
2031
  end
2010
2032
  end
2011
2033
 
2012
- class GoogleCloudApigeeV1IntegrationConfig
2013
- # @private
2014
- class Representation < Google::Apis::Core::JsonRepresentation
2015
- property :enabled, as: 'enabled'
2016
- end
2017
- end
2018
-
2019
2034
  class GoogleCloudApigeeV1KeyAliasReference
2020
2035
  # @private
2021
2036
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1945,8 +1945,8 @@ module Google
1945
1945
  # expire an access token in less than 180 seconds.
1946
1946
  # @param [String] parent
1947
1947
  # Required. Email address of the developer for which attributes are being
1948
- # updated in the following format: `organizations/`org`/developers/`
1949
- # developer_email``
1948
+ # updated. Use the following structure in your request: `organizations/`org`/
1949
+ # developers/`developer_email``
1950
1950
  # @param [Google::Apis::ApigeeV1::GoogleCloudApigeeV1Attributes] google_cloud_apigee_v1_attributes_object
1951
1951
  # @param [String] fields
1952
1952
  # Selector specifying which fields to include in a partial response.
@@ -2148,16 +2148,18 @@ module Google
2148
2148
  execute_or_queue_command(command, &block)
2149
2149
  end
2150
2150
 
2151
- # Sets the status of a developer. Valid values are `active` or `inactive`. A
2152
- # developer is `active` by default. If you set a developer's status to `inactive`
2153
- # , the API keys assigned to the developer apps are no longer valid even though
2154
- # the API keys are set to `approved`. Inactive developers can still sign in to
2155
- # the developer portal and create apps; however, any new API keys generated
2156
- # during app creation won't work. If successful, the API call returns the
2157
- # following HTTP status code: `204 No Content`
2151
+ # Sets the status of a developer. A developer is `active` by default. If you set
2152
+ # a developer's status to `inactive`, the API keys assigned to the developer
2153
+ # apps are no longer valid even though the API keys are set to `approved`.
2154
+ # Inactive developers can still sign in to the developer portal and create apps;
2155
+ # however, any new API keys generated during app creation won't work. To set the
2156
+ # status of a developer, set the `action` query parameter to `active` or `
2157
+ # inactive`, and the `Content-Type` header to `application/octet-stream`. If
2158
+ # successful, the API call returns the following HTTP status code: `204 No
2159
+ # Content`
2158
2160
  # @param [String] name
2159
- # Required. Email address of the developer. Use the following structure in your
2160
- # request: `organizations/`org`/developers/`developer_email``
2161
+ # Required. Name of the developer. Use the following structure in your request: `
2162
+ # organizations/`org`/developers/`developer_id``
2161
2163
  # @param [String] action
2162
2164
  # Status of the developer. Valid values are `active` and `inactive`.
2163
2165
  # @param [String] fields
@@ -3049,8 +3051,9 @@ module Google
3049
3051
 
3050
3052
  # Returns a list of all developer attributes.
3051
3053
  # @param [String] parent
3052
- # Required. Email address of the developer for which attributes are being listed
3053
- # in the following format: `organizations/`org`/developers/`developer_email``
3054
+ # Required. Email address of the developer for which attributes are being listed.
3055
+ # Use the following structure in your request: `organizations/`org`/developers/`
3056
+ # developer_email``
3054
3057
  # @param [String] fields
3055
3058
  # Selector specifying which fields to include in a partial response.
3056
3059
  # @param [String] quota_user
@@ -4312,6 +4315,10 @@ module Google
4312
4315
  # GenerateDeployChangeReport) may be used to examine routing changes before
4313
4316
  # issuing the deployment request, and its response will indicate if a sequenced
4314
4317
  # rollout is recommended for the deployment.
4318
+ # @param [String] service_account
4319
+ # Google Cloud IAM service account. The service account represents the identity
4320
+ # of the deployed proxy, and determines what permissions it has. The format must
4321
+ # be ``ACCOUNT_ID`@`PROJECT`.iam.gserviceaccount.com`.
4315
4322
  # @param [String] fields
4316
4323
  # Selector specifying which fields to include in a partial response.
4317
4324
  # @param [String] quota_user
@@ -4329,13 +4336,14 @@ module Google
4329
4336
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
4330
4337
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
4331
4338
  # @raise [Google::Apis::AuthorizationError] Authorization is required
4332
- def deploy_organization_environment_api_revision(name, override: nil, sequenced_rollout: nil, fields: nil, quota_user: nil, options: nil, &block)
4339
+ def deploy_organization_environment_api_revision(name, override: nil, sequenced_rollout: nil, service_account: nil, fields: nil, quota_user: nil, options: nil, &block)
4333
4340
  command = make_simple_command(:post, 'v1/{+name}/deployments', options)
4334
4341
  command.response_representation = Google::Apis::ApigeeV1::GoogleCloudApigeeV1Deployment::Representation
4335
4342
  command.response_class = Google::Apis::ApigeeV1::GoogleCloudApigeeV1Deployment
4336
4343
  command.params['name'] = name unless name.nil?
4337
4344
  command.query['override'] = override unless override.nil?
4338
4345
  command.query['sequencedRollout'] = sequenced_rollout unless sequenced_rollout.nil?
4346
+ command.query['serviceAccount'] = service_account unless service_account.nil?
4339
4347
  command.query['fields'] = fields unless fields.nil?
4340
4348
  command.query['quotaUser'] = quota_user unless quota_user.nil?
4341
4349
  execute_or_queue_command(command, &block)
@@ -5927,6 +5935,10 @@ module Google
5927
5935
  # replace other deployed revisions. By default, `override` is `false` and the
5928
5936
  # deployment is rejected if other revisions of the shared flow are deployed in
5929
5937
  # the environment.
5938
+ # @param [String] service_account
5939
+ # Google Cloud IAM service account. The service account represents the identity
5940
+ # of the deployed proxy, and determines what permissions it has. The format must
5941
+ # be ``ACCOUNT_ID`@`PROJECT`.iam.gserviceaccount.com`.
5930
5942
  # @param [String] fields
5931
5943
  # Selector specifying which fields to include in a partial response.
5932
5944
  # @param [String] quota_user
@@ -5944,12 +5956,13 @@ module Google
5944
5956
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
5945
5957
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
5946
5958
  # @raise [Google::Apis::AuthorizationError] Authorization is required
5947
- def deploy_organization_environment_sharedflow_revision(name, override: nil, fields: nil, quota_user: nil, options: nil, &block)
5959
+ def deploy_organization_environment_sharedflow_revision(name, override: nil, service_account: nil, fields: nil, quota_user: nil, options: nil, &block)
5948
5960
  command = make_simple_command(:post, 'v1/{+name}/deployments', options)
5949
5961
  command.response_representation = Google::Apis::ApigeeV1::GoogleCloudApigeeV1Deployment::Representation
5950
5962
  command.response_class = Google::Apis::ApigeeV1::GoogleCloudApigeeV1Deployment
5951
5963
  command.params['name'] = name unless name.nil?
5952
5964
  command.query['override'] = override unless override.nil?
5965
+ command.query['serviceAccount'] = service_account unless service_account.nil?
5953
5966
  command.query['fields'] = fields unless fields.nil?
5954
5967
  command.query['quotaUser'] = quota_user unless quota_user.nil?
5955
5968
  execute_or_queue_command(command, &block)
@@ -6858,6 +6871,45 @@ module Google
6858
6871
  execute_or_queue_command(command, &block)
6859
6872
  end
6860
6873
 
6874
+ # Updates an Apigee runtime instance. You can update the fields described in
6875
+ # NodeConfig. No other fields will be updated. **Note:** Not supported for
6876
+ # Apigee hybrid.
6877
+ # @param [String] name
6878
+ # Required. Name of the instance. Use the following structure in your request: `
6879
+ # organizations/`org`/instances/`instance``.
6880
+ # @param [Google::Apis::ApigeeV1::GoogleCloudApigeeV1Instance] google_cloud_apigee_v1_instance_object
6881
+ # @param [String] update_mask
6882
+ # List of fields to be updated.
6883
+ # @param [String] fields
6884
+ # Selector specifying which fields to include in a partial response.
6885
+ # @param [String] quota_user
6886
+ # Available to use for quota purposes for server-side applications. Can be any
6887
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
6888
+ # @param [Google::Apis::RequestOptions] options
6889
+ # Request-specific options
6890
+ #
6891
+ # @yield [result, err] Result & error if block supplied
6892
+ # @yieldparam result [Google::Apis::ApigeeV1::GoogleLongrunningOperation] parsed result object
6893
+ # @yieldparam err [StandardError] error object if request failed
6894
+ #
6895
+ # @return [Google::Apis::ApigeeV1::GoogleLongrunningOperation]
6896
+ #
6897
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
6898
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
6899
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
6900
+ def patch_organization_instance(name, google_cloud_apigee_v1_instance_object = nil, update_mask: nil, fields: nil, quota_user: nil, options: nil, &block)
6901
+ command = make_simple_command(:patch, 'v1/{+name}', options)
6902
+ command.request_representation = Google::Apis::ApigeeV1::GoogleCloudApigeeV1Instance::Representation
6903
+ command.request_object = google_cloud_apigee_v1_instance_object
6904
+ command.response_representation = Google::Apis::ApigeeV1::GoogleLongrunningOperation::Representation
6905
+ command.response_class = Google::Apis::ApigeeV1::GoogleLongrunningOperation
6906
+ command.params['name'] = name unless name.nil?
6907
+ command.query['updateMask'] = update_mask unless update_mask.nil?
6908
+ command.query['fields'] = fields unless fields.nil?
6909
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
6910
+ execute_or_queue_command(command, &block)
6911
+ end
6912
+
6861
6913
  # Reports the latest status for a runtime instance.
6862
6914
  # @param [String] instance
6863
6915
  # The name of the instance reporting this status. For SaaS the request will be
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.15.0
4
+ version: 0.19.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-06-28 00:00:00.000000000 Z
11
+ date: 2021-08-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '0.3'
19
+ version: '0.4'
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: '0.3'
29
+ version: '0.4'
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-apigee_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-apigee_v1/v0.15.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-apigee_v1/v0.19.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-apigee_v1
63
63
  post_install_message:
64
64
  rdoc_options: []