google-apis-apigee_v1 0.22.0 → 0.26.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: e41d7a4b24a07b3a98b9f4d0c2295ffe866ccbc9c40f8b8fdc4491c1788277fb
4
- data.tar.gz: 8bbee184ecc83f32e70e1f6df2c2791b02f3807ca823a867fec95f0af78cf414
3
+ metadata.gz: d5df0c3830c56bebf4f19e70ccd3b789acfbfe3356992cb6ac79469315af800d
4
+ data.tar.gz: 3a6468bb3d87b35f80bc73fa8d88a71719c93f7edd5af09671ea3270d9e917fb
5
5
  SHA512:
6
- metadata.gz: 2ce3cd5ab949b18f9131408fe6a1e331dbea9aebc16ff529cdc8b3ee337d5780b0ca8988ad6668315cc17f5f06bf1420e6653cac8f8ba78494df3f2a6138525d
7
- data.tar.gz: f66fbca684dad8071ec7e26280e32f7720be05726ad5a777572cf2c33b02929586912befb5621dea3c5de66b9260a32027eeb3ebafc3b0edc7767deba0b5de57
6
+ metadata.gz: '06298b0173f747cb598817a3be4b2567295c5fe2bfd40bb61d766e439dfdc823e7088268fbebc379af78a6bbedb484e1286f8d4cbc9c7cad5b9789d3a51bf15b'
7
+ data.tar.gz: 5a7bdc9dd72588e591b0c9f0401c9ecf55dc026a675cb81ee08b6e9af6fb5cb603f1828309a2fe5152d496b3d5284948b06f2ddb8365a8a2fe0ebd9ac254c804
data/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # Release history for google-apis-apigee_v1
2
2
 
3
+ ### v0.26.0 (2021-11-03)
4
+
5
+ * Regenerated from discovery document revision 20211101
6
+
7
+ ### v0.25.0 (2021-10-26)
8
+
9
+ * Regenerated from discovery document revision 20211021
10
+
11
+ ### v0.24.0 (2021-10-05)
12
+
13
+ * Regenerated from discovery document revision 20211002
14
+
15
+ ### v0.23.0 (2021-09-28)
16
+
17
+ * Regenerated from discovery document revision 20210924
18
+
3
19
  ### v0.22.0 (2021-09-21)
4
20
 
5
21
  * Regenerated from discovery document revision 20210916
data/OVERVIEW.md CHANGED
@@ -60,8 +60,8 @@ See the class reference docs for information on the methods you can call from a
60
60
 
61
61
  More detailed descriptions of the Google simple REST clients are available in two documents.
62
62
 
63
- * The [Usage Guide](https://github.com/googleapis/google-api-ruby-client/blob/master/docs/usage-guide.md) discusses how to make API calls, how to use the provided data structures, and how to work the various features of the client library, including media upload and download, error handling, retries, pagination, and logging.
64
- * The [Auth Guide](https://github.com/googleapis/google-api-ruby-client/blob/master/docs/auth-guide.md) discusses authentication in the client libraries, including API keys, OAuth 2.0, service accounts, and environment variables.
63
+ * The [Usage Guide](https://github.com/googleapis/google-api-ruby-client/blob/main/docs/usage-guide.md) discusses how to make API calls, how to use the provided data structures, and how to work the various features of the client library, including media upload and download, error handling, retries, pagination, and logging.
64
+ * The [Auth Guide](https://github.com/googleapis/google-api-ruby-client/blob/main/docs/auth-guide.md) discusses authentication in the client libraries, including API keys, OAuth 2.0, service accounts, and environment variables.
65
65
 
66
66
  (Note: the above documents are written for the simple REST clients in general, and their examples may not reflect the Apigee service in particular.)
67
67
 
@@ -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
@@ -707,6 +719,13 @@ module Google
707
719
  # @return [Hash<String,String>]
708
720
  attr_accessor :entity_meta_data_as_properties
709
721
 
722
+ # List of IntegrationEndpoints in the '/integration-endpoints' directory of the
723
+ # API proxy. This is a 'manifest' setting designed to provide visibility into
724
+ # the contents of the API proxy.
725
+ # Corresponds to the JSON property `integrationEndpoints`
726
+ # @return [Array<String>]
727
+ attr_accessor :integration_endpoints
728
+
710
729
  # Time that the API proxy revision was last modified in milliseconds since epoch.
711
730
  # Corresponds to the JSON property `lastModifiedAt`
712
731
  # @return [Fixnum]
@@ -807,6 +826,7 @@ module Google
807
826
  @description = args[:description] if args.key?(:description)
808
827
  @display_name = args[:display_name] if args.key?(:display_name)
809
828
  @entity_meta_data_as_properties = args[:entity_meta_data_as_properties] if args.key?(:entity_meta_data_as_properties)
829
+ @integration_endpoints = args[:integration_endpoints] if args.key?(:integration_endpoints)
810
830
  @last_modified_at = args[:last_modified_at] if args.key?(:last_modified_at)
811
831
  @name = args[:name] if args.key?(:name)
812
832
  @policies = args[:policies] if args.key?(:policies)
@@ -1480,6 +1500,33 @@ module Google
1480
1500
  end
1481
1501
  end
1482
1502
 
1503
+ # Configuration for the Connectors Platform add-on.
1504
+ class GoogleCloudApigeeV1ConnectorsPlatformConfig
1505
+ include Google::Apis::Core::Hashable
1506
+
1507
+ # Flag that specifies whether the Connectors Platform add-on is enabled.
1508
+ # Corresponds to the JSON property `enabled`
1509
+ # @return [Boolean]
1510
+ attr_accessor :enabled
1511
+ alias_method :enabled?, :enabled
1512
+
1513
+ # Output only. Time at which the Connectors Platform add-on expires in in
1514
+ # milliseconds since epoch. If unspecified, the add-on will never expire.
1515
+ # Corresponds to the JSON property `expiresAt`
1516
+ # @return [Fixnum]
1517
+ attr_accessor :expires_at
1518
+
1519
+ def initialize(**args)
1520
+ update!(**args)
1521
+ end
1522
+
1523
+ # Update properties of this object
1524
+ def update!(**args)
1525
+ @enabled = args[:enabled] if args.key?(:enabled)
1526
+ @expires_at = args[:expires_at] if args.key?(:expires_at)
1527
+ end
1528
+ end
1529
+
1483
1530
  #
1484
1531
  class GoogleCloudApigeeV1Credential
1485
1532
  include Google::Apis::Core::Hashable
@@ -2812,16 +2859,16 @@ module Google
2812
2859
  end
2813
2860
  end
2814
2861
 
2815
- # This message type encapsulates a metric grouped by dimension.
2862
+ # Encapsulates a metric grouped by dimension.
2816
2863
  class GoogleCloudApigeeV1DimensionMetric
2817
2864
  include Google::Apis::Core::Hashable
2818
2865
 
2819
- # This field contains a list of metrics.
2866
+ # List of metrics.
2820
2867
  # Corresponds to the JSON property `metrics`
2821
2868
  # @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1Metric>]
2822
2869
  attr_accessor :metrics
2823
2870
 
2824
- # This field contains the name of the dimension.
2871
+ # Name of the dimension.
2825
2872
  # Corresponds to the JSON property `name`
2826
2873
  # @return [String]
2827
2874
  attr_accessor :name
@@ -3880,6 +3927,26 @@ module Google
3880
3927
  end
3881
3928
  end
3882
3929
 
3930
+ # Configuration for the Integration add-on.
3931
+ class GoogleCloudApigeeV1IntegrationConfig
3932
+ include Google::Apis::Core::Hashable
3933
+
3934
+ # Flag that specifies whether the Integration add-on is enabled.
3935
+ # Corresponds to the JSON property `enabled`
3936
+ # @return [Boolean]
3937
+ attr_accessor :enabled
3938
+ alias_method :enabled?, :enabled
3939
+
3940
+ def initialize(**args)
3941
+ update!(**args)
3942
+ end
3943
+
3944
+ # Update properties of this object
3945
+ def update!(**args)
3946
+ @enabled = args[:enabled] if args.key?(:enabled)
3947
+ end
3948
+ end
3949
+
3883
3950
  #
3884
3951
  class GoogleCloudApigeeV1KeyAliasReference
3885
3952
  include Google::Apis::Core::Hashable
@@ -4580,7 +4647,7 @@ module Google
4580
4647
  end
4581
4648
  end
4582
4649
 
4583
- # This message type encapsulates additional information about query execution.
4650
+ # Encapsulates additional information about query execution.
4584
4651
  class GoogleCloudApigeeV1Metadata
4585
4652
  include Google::Apis::Core::Hashable
4586
4653
 
@@ -4589,10 +4656,10 @@ module Google
4589
4656
  # @return [Array<String>]
4590
4657
  attr_accessor :errors
4591
4658
 
4592
- # List of additional information such as data source, if result was truncated
4593
- # etc. E.g "notices": [ "Source:Postgres", "PG Host:uappg0rw.e2e.apigeeks.net", "
4594
- # query served by:4b64601e-40de-4eb1-bfb9-eeee7ac929ed", "Table used: edge.api.
4595
- # uapgroup2.agg_api" ]
4659
+ # List of additional information such as data source, if result was truncated.
4660
+ # For example: ``` "notices": [ "Source:Postgres", "PG Host:uappg0rw.e2e.
4661
+ # apigeeks.net", "query served by:4b64601e-40de-4eb1-bfb9-eeee7ac929ed", "Table
4662
+ # used: edge.api.uapgroup2.agg_api" ]```
4596
4663
  # Corresponds to the JSON property `notices`
4597
4664
  # @return [Array<String>]
4598
4665
  attr_accessor :notices
@@ -4608,20 +4675,20 @@ module Google
4608
4675
  end
4609
4676
  end
4610
4677
 
4611
- # This message type encapsulates the metric data point. Example: ` "name": "sum(
4678
+ # Encapsulates the metric data point. For example: ```` "name": "sum(
4612
4679
  # message_count)", "values" : [ ` "timestamp": 1549004400000, "value": "39.0" `,
4613
- # ` "timestamp" : 1548997200000, "value" : "0.0" ` ] ` or ` "name": "sum(
4614
- # message_count)", "values" : ["39.0"] `
4680
+ # ` "timestamp" : 1548997200000, "value" : "0.0" ` ] ```` or ```` "name": "sum(
4681
+ # message_count)", "values" : ["39.0"] ````
4615
4682
  class GoogleCloudApigeeV1Metric
4616
4683
  include Google::Apis::Core::Hashable
4617
4684
 
4618
- # This field contains the metric name.
4685
+ # Metric name.
4619
4686
  # Corresponds to the JSON property `name`
4620
4687
  # @return [String]
4621
4688
  attr_accessor :name
4622
4689
 
4623
- # List of metric values. Possible value format: "values":["39.0"] or "values":[ `
4624
- # "value": "39.0", "timestamp": 1232434354` ]
4690
+ # List of metric values. Possible value formats include: `"values":["39.0"]` or `
4691
+ # "values":[ ` "value": "39.0", "timestamp": 1232434354` ]`
4625
4692
  # Corresponds to the JSON property `values`
4626
4693
  # @return [Array<Object>]
4627
4694
  attr_accessor :values
@@ -4870,7 +4937,7 @@ module Google
4870
4937
  class GoogleCloudApigeeV1OptimizedStats
4871
4938
  include Google::Apis::Core::Hashable
4872
4939
 
4873
- # This message type encapsulates a response format for Js Optimized Scenario.
4940
+ # Encapsulates a response format for JavaScript Optimized Scenario.
4874
4941
  # Corresponds to the JSON property `Response`
4875
4942
  # @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1OptimizedStatsResponse]
4876
4943
  attr_accessor :response
@@ -4885,11 +4952,11 @@ module Google
4885
4952
  end
4886
4953
  end
4887
4954
 
4888
- # This message type encapsulates a data node as represented below: ` "identifier"
4889
- # : ` "names": [ "apiproxy" ], "values": [ "sirjee" ] `, "metric": [ ` "env": "
4890
- # prod", "name": "sum(message_count)", "values": [ 36.0 ] ` ] ` OR ` "env": "
4891
- # prod", "name": "sum(message_count)", "values": [ 36.0 ] ` Depending on whether
4892
- # a dimension is present in the query or not the data node type can be a simple
4955
+ # Encapsulates a data node as represented below: ``` ` "identifier": ` "names": [
4956
+ # "apiproxy" ], "values": [ "sirjee" ] `, "metric": [ ` "env": "prod", "name": "
4957
+ # sum(message_count)", "values": [ 36.0 ] ` ] ```` or ``` ` "env": "prod", "name"
4958
+ # : "sum(message_count)", "values": [ 36.0 ] ```` Depending on whether a
4959
+ # dimension is present in the query or not the data node type can be a simple
4893
4960
  # metric value or dimension identifier with list of metrics.
4894
4961
  class GoogleCloudApigeeV1OptimizedStatsNode
4895
4962
  include Google::Apis::Core::Hashable
@@ -4909,33 +4976,32 @@ module Google
4909
4976
  end
4910
4977
  end
4911
4978
 
4912
- # This message type encapsulates a response format for Js Optimized Scenario.
4979
+ # Encapsulates a response format for JavaScript Optimized Scenario.
4913
4980
  class GoogleCloudApigeeV1OptimizedStatsResponse
4914
4981
  include Google::Apis::Core::Hashable
4915
4982
 
4916
- # This field contains a list of time unit values. Time unit refers to an epoch
4917
- # timestamp value.
4983
+ # List of time unit values. Time unit refers to an epoch timestamp value.
4918
4984
  # Corresponds to the JSON property `TimeUnit`
4919
4985
  # @return [Array<Fixnum>]
4920
4986
  attr_accessor :time_unit
4921
4987
 
4922
- # This message type encapsulates additional information about query execution.
4988
+ # Encapsulates additional information about query execution.
4923
4989
  # Corresponds to the JSON property `metaData`
4924
4990
  # @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1Metadata]
4925
4991
  attr_accessor :meta_data
4926
4992
 
4927
- # This ia a boolean field to indicate if the results were truncated based on the
4993
+ # Boolean flag that indicates whether the results were truncated based on the
4928
4994
  # limit parameter.
4929
4995
  # Corresponds to the JSON property `resultTruncated`
4930
4996
  # @return [Boolean]
4931
4997
  attr_accessor :result_truncated
4932
4998
  alias_method :result_truncated?, :result_truncated
4933
4999
 
4934
- # This message type encapsulates a data node as represented below: ` "identifier"
4935
- # : ` "names": [ "apiproxy" ], "values": [ "sirjee" ] `, "metric": [ ` "env": "
4936
- # prod", "name": "sum(message_count)", "values": [ 36.0 ] ` ] ` OR ` "env": "
4937
- # prod", "name": "sum(message_count)", "values": [ 36.0 ] ` Depending on whether
4938
- # a dimension is present in the query or not the data node type can be a simple
5000
+ # Encapsulates a data node as represented below: ``` ` "identifier": ` "names": [
5001
+ # "apiproxy" ], "values": [ "sirjee" ] `, "metric": [ ` "env": "prod", "name": "
5002
+ # sum(message_count)", "values": [ 36.0 ] ` ] ```` or ``` ` "env": "prod", "name"
5003
+ # : "sum(message_count)", "values": [ 36.0 ] ```` Depending on whether a
5004
+ # dimension is present in the query or not the data node type can be a simple
4939
5005
  # metric value or dimension identifier with list of metrics.
4940
5006
  # Corresponds to the JSON property `stats`
4941
5007
  # @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1OptimizedStatsNode]
@@ -5046,6 +5112,12 @@ module Google
5046
5112
  # @return [String]
5047
5113
  attr_accessor :name
5048
5114
 
5115
+ # Configuration for the Portals settings.
5116
+ # Corresponds to the JSON property `portalDisabled`
5117
+ # @return [Boolean]
5118
+ attr_accessor :portal_disabled
5119
+ alias_method :portal_disabled?, :portal_disabled
5120
+
5049
5121
  # Output only. Project ID associated with the Apigee organization.
5050
5122
  # Corresponds to the JSON property `projectId`
5051
5123
  # @return [String]
@@ -5113,6 +5185,7 @@ module Google
5113
5185
  @expires_at = args[:expires_at] if args.key?(:expires_at)
5114
5186
  @last_modified_at = args[:last_modified_at] if args.key?(:last_modified_at)
5115
5187
  @name = args[:name] if args.key?(:name)
5188
+ @portal_disabled = args[:portal_disabled] if args.key?(:portal_disabled)
5116
5189
  @project_id = args[:project_id] if args.key?(:project_id)
5117
5190
  @properties = args[:properties] if args.key?(:properties)
5118
5191
  @runtime_database_encryption_key_name = args[:runtime_database_encryption_key_name] if args.key?(:runtime_database_encryption_key_name)
@@ -6703,21 +6776,21 @@ module Google
6703
6776
  end
6704
6777
  end
6705
6778
 
6706
- # This message type encapsulates a stats response.
6779
+ # Encapsulates a `stats` response.
6707
6780
  class GoogleCloudApigeeV1Stats
6708
6781
  include Google::Apis::Core::Hashable
6709
6782
 
6710
- # This field contains a list of query results on environment level.
6783
+ # List of query results on the environment level.
6711
6784
  # Corresponds to the JSON property `environments`
6712
6785
  # @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1StatsEnvironmentStats>]
6713
6786
  attr_accessor :environments
6714
6787
 
6715
- # This field contains a list of query results grouped by host.
6788
+ # List of query results grouped by host.
6716
6789
  # Corresponds to the JSON property `hosts`
6717
6790
  # @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1StatsHostStats>]
6718
6791
  attr_accessor :hosts
6719
6792
 
6720
- # This message type encapsulates additional information about query execution.
6793
+ # Encapsulates additional information about query execution.
6721
6794
  # Corresponds to the JSON property `metaData`
6722
6795
  # @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1Metadata]
6723
6796
  attr_accessor :meta_data
@@ -6734,31 +6807,31 @@ module Google
6734
6807
  end
6735
6808
  end
6736
6809
 
6737
- # This message type encapsulates the environment wrapper: "environments": [ ` "
6738
- # metrics": [ ` "name": "sum(message_count)", "values": [ "2.52056245E8" ] ` ], "
6739
- # name": "prod" ` ]
6810
+ # Encapsulates the environment wrapper: ``` "environments": [ ` "metrics": [ ` "
6811
+ # name": "sum(message_count)", "values": [ "2.52056245E8" ] ` ], "name": "prod" `
6812
+ # ]```
6740
6813
  class GoogleCloudApigeeV1StatsEnvironmentStats
6741
6814
  include Google::Apis::Core::Hashable
6742
6815
 
6743
- # This field contains the list of metrics grouped under dimensions.
6816
+ # List of metrics grouped under dimensions.
6744
6817
  # Corresponds to the JSON property `dimensions`
6745
6818
  # @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1DimensionMetric>]
6746
6819
  attr_accessor :dimensions
6747
6820
 
6748
6821
  # In the final response, only one of the following fields will be present based
6749
- # on the dimensions provided. If no dimensions are provided, then only a top
6750
- # level metrics is provided. If dimensions are included, then there will be a
6751
- # top level dimensions field under environments which will contain metrics
6752
- # values and the dimension name. Example: "environments": [ ` "dimensions": [ ` "
6822
+ # on the dimensions provided. If no dimensions are provided, then only top-level
6823
+ # metrics is provided. If dimensions are included, then there will be a top-
6824
+ # level dimensions field under environments which will contain metrics values
6825
+ # and the dimension name. Example: ``` "environments": [ ` "dimensions": [ ` "
6753
6826
  # metrics": [ ` "name": "sum(message_count)", "values": [ "2.14049521E8" ] ` ], "
6754
- # name": "nit_proxy" ` ], "name": "prod" ` ] OR "environments": [ ` "metrics": [
6755
- # ` "name": "sum(message_count)", "values": [ "2.19026331E8" ] ` ], "name": "
6756
- # prod" ` ] This field contains the list of metric values.
6827
+ # name": "nit_proxy" ` ], "name": "prod" ` ]``` or ```"environments": [ ` "
6828
+ # metrics": [ ` "name": "sum(message_count)", "values": [ "2.19026331E8" ] ` ], "
6829
+ # name": "prod" ` ]``` List of metric values.
6757
6830
  # Corresponds to the JSON property `metrics`
6758
6831
  # @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1Metric>]
6759
6832
  attr_accessor :metrics
6760
6833
 
6761
- #
6834
+ # Name of the environment.
6762
6835
  # Corresponds to the JSON property `name`
6763
6836
  # @return [String]
6764
6837
  attr_accessor :name
@@ -6775,31 +6848,31 @@ module Google
6775
6848
  end
6776
6849
  end
6777
6850
 
6778
- # This message type encapsulates the hostname wrapper: "hosts": [ ` "metrics": [
6779
- # ` "name": "sum(message_count)", "values": [ "2.52056245E8" ] ` ], "name": "
6780
- # example.com" ` ]
6851
+ # Encapsulates the hostname wrapper: ``` "hosts": [ ` "metrics": [ ` "name": "
6852
+ # sum(message_count)", "values": [ "2.52056245E8" ] ` ], "name": "example.com" `
6853
+ # ]```
6781
6854
  class GoogleCloudApigeeV1StatsHostStats
6782
6855
  include Google::Apis::Core::Hashable
6783
6856
 
6784
- # This field contains the list of metrics grouped under dimensions.
6857
+ # List of metrics grouped under dimensions.
6785
6858
  # Corresponds to the JSON property `dimensions`
6786
6859
  # @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1DimensionMetric>]
6787
6860
  attr_accessor :dimensions
6788
6861
 
6789
6862
  # In the final response, only one of the following fields will be present based
6790
- # on the dimensions provided. If no dimensions are provided, then only a top
6791
- # level metrics is provided. If dimensions are included, then there will be a
6792
- # top level dimensions field under hostnames which will contain metrics values
6793
- # and the dimension name. Example: "hosts": [ ` "dimensions": [ ` "metrics": [ `
6794
- # "name": "sum(message_count)", "values": [ "2.14049521E8" ] ` ], "name": "
6795
- # nit_proxy" ` ], "name": "example.com" ` ] OR "hosts": [ ` "metrics": [ ` "name"
6796
- # : "sum(message_count)", "values": [ "2.19026331E8" ] ` ], "name": "example.com"
6797
- # ` ] This field contains the list of metric values.
6863
+ # on the dimensions provided. If no dimensions are provided, then only the top-
6864
+ # level metrics are provided. If dimensions are included, then there will be a
6865
+ # top-level dimensions field under hostnames which will contain metrics values
6866
+ # and the dimension name. Example: ``` "hosts": [ ` "dimensions": [ ` "metrics":
6867
+ # [ ` "name": "sum(message_count)", "values": [ "2.14049521E8" ] ` ], "name": "
6868
+ # nit_proxy" ` ], "name": "example.com" ` ]``` OR ```"hosts": [ ` "metrics": [ `
6869
+ # "name": "sum(message_count)", "values": [ "2.19026331E8" ] ` ], "name": "
6870
+ # example.com" ` ]``` List of metric values.
6798
6871
  # Corresponds to the JSON property `metrics`
6799
6872
  # @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1Metric>]
6800
6873
  attr_accessor :metrics
6801
6874
 
6802
- # This field contains the hostname used in query.
6875
+ # Hostname used in query.
6803
6876
  # Corresponds to the JSON property `name`
6804
6877
  # @return [String]
6805
6878
  attr_accessor :name
@@ -7406,7 +7479,7 @@ module Google
7406
7479
  end
7407
7480
  end
7408
7481
 
7409
- # Associates `members` with a `role`.
7482
+ # Associates `members`, or principals, with a `role`.
7410
7483
  class GoogleIamV1Binding
7411
7484
  include Google::Apis::Core::Hashable
7412
7485
 
@@ -7429,7 +7502,7 @@ module Google
7429
7502
  # @return [Google::Apis::ApigeeV1::GoogleTypeExpr]
7430
7503
  attr_accessor :condition
7431
7504
 
7432
- # Specifies the identities requesting access for a Cloud Platform resource. `
7505
+ # Specifies the principals requesting access for a Cloud Platform resource. `
7433
7506
  # members` can have the following values: * `allUsers`: A special identifier
7434
7507
  # that represents anyone who is on the internet; with or without a Google
7435
7508
  # account. * `allAuthenticatedUsers`: A special identifier that represents
@@ -7459,8 +7532,8 @@ module Google
7459
7532
  # @return [Array<String>]
7460
7533
  attr_accessor :members
7461
7534
 
7462
- # Role that is assigned to `members`. For example, `roles/viewer`, `roles/editor`
7463
- # , or `roles/owner`.
7535
+ # Role that is assigned to the list of `members`, or principals. For example, `
7536
+ # roles/viewer`, `roles/editor`, or `roles/owner`.
7464
7537
  # Corresponds to the JSON property `role`
7465
7538
  # @return [String]
7466
7539
  attr_accessor :role
@@ -7479,31 +7552,31 @@ module Google
7479
7552
 
7480
7553
  # An Identity and Access Management (IAM) policy, which specifies access
7481
7554
  # controls for Google Cloud resources. A `Policy` is a collection of `bindings`.
7482
- # A `binding` binds one or more `members` to a single `role`. Members can be
7483
- # user accounts, service accounts, Google groups, and domains (such as G Suite).
7484
- # A `role` is a named list of permissions; each `role` can be an IAM predefined
7485
- # role or a user-created custom role. For some types of Google Cloud resources,
7486
- # a `binding` can also specify a `condition`, which is a logical expression that
7487
- # allows access to a resource only if the expression evaluates to `true`. A
7488
- # condition can add constraints based on attributes of the request, the resource,
7489
- # or both. To learn which resources support conditions in their IAM policies,
7490
- # see the [IAM documentation](https://cloud.google.com/iam/help/conditions/
7491
- # resource-policies). **JSON example:** ` "bindings": [ ` "role": "roles/
7492
- # resourcemanager.organizationAdmin", "members": [ "user:mike@example.com", "
7493
- # group:admins@example.com", "domain:google.com", "serviceAccount:my-project-id@
7494
- # appspot.gserviceaccount.com" ] `, ` "role": "roles/resourcemanager.
7495
- # organizationViewer", "members": [ "user:eve@example.com" ], "condition": ` "
7496
- # title": "expirable access", "description": "Does not grant access after Sep
7497
- # 2020", "expression": "request.time < timestamp('2020-10-01T00:00:00.000Z')", `
7498
- # ` ], "etag": "BwWWja0YfJA=", "version": 3 ` **YAML example:** bindings: -
7499
- # members: - user:mike@example.com - group:admins@example.com - domain:google.
7500
- # com - serviceAccount:my-project-id@appspot.gserviceaccount.com role: roles/
7501
- # resourcemanager.organizationAdmin - members: - user:eve@example.com role:
7502
- # roles/resourcemanager.organizationViewer condition: title: expirable access
7503
- # description: Does not grant access after Sep 2020 expression: request.time <
7504
- # timestamp('2020-10-01T00:00:00.000Z') etag: BwWWja0YfJA= version: 3 For a
7505
- # description of IAM and its features, see the [IAM documentation](https://cloud.
7506
- # google.com/iam/docs/).
7555
+ # A `binding` binds one or more `members`, or principals, to a single `role`.
7556
+ # Principals can be user accounts, service accounts, Google groups, and domains (
7557
+ # such as G Suite). A `role` is a named list of permissions; each `role` can be
7558
+ # an IAM predefined role or a user-created custom role. For some types of Google
7559
+ # Cloud resources, a `binding` can also specify a `condition`, which is a
7560
+ # logical expression that allows access to a resource only if the expression
7561
+ # evaluates to `true`. A condition can add constraints based on attributes of
7562
+ # the request, the resource, or both. To learn which resources support
7563
+ # conditions in their IAM policies, see the [IAM documentation](https://cloud.
7564
+ # google.com/iam/help/conditions/resource-policies). **JSON example:** ` "
7565
+ # bindings": [ ` "role": "roles/resourcemanager.organizationAdmin", "members": [
7566
+ # "user:mike@example.com", "group:admins@example.com", "domain:google.com", "
7567
+ # serviceAccount:my-project-id@appspot.gserviceaccount.com" ] `, ` "role": "
7568
+ # roles/resourcemanager.organizationViewer", "members": [ "user:eve@example.com"
7569
+ # ], "condition": ` "title": "expirable access", "description": "Does not grant
7570
+ # access after Sep 2020", "expression": "request.time < timestamp('2020-10-01T00:
7571
+ # 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` **YAML example:**
7572
+ # bindings: - members: - user:mike@example.com - group:admins@example.com -
7573
+ # domain:google.com - serviceAccount:my-project-id@appspot.gserviceaccount.com
7574
+ # role: roles/resourcemanager.organizationAdmin - members: - user:eve@example.
7575
+ # com role: roles/resourcemanager.organizationViewer condition: title: expirable
7576
+ # access description: Does not grant access after Sep 2020 expression: request.
7577
+ # time < timestamp('2020-10-01T00:00:00.000Z') etag: BwWWja0YfJA= version: 3 For
7578
+ # a description of IAM and its features, see the [IAM documentation](https://
7579
+ # cloud.google.com/iam/docs/).
7507
7580
  class GoogleIamV1Policy
7508
7581
  include Google::Apis::Core::Hashable
7509
7582
 
@@ -7512,9 +7585,14 @@ module Google
7512
7585
  # @return [Array<Google::Apis::ApigeeV1::GoogleIamV1AuditConfig>]
7513
7586
  attr_accessor :audit_configs
7514
7587
 
7515
- # Associates a list of `members` to a `role`. Optionally, may specify a `
7516
- # condition` that determines how and when the `bindings` are applied. Each of
7517
- # the `bindings` must contain at least one member.
7588
+ # Associates a list of `members`, or principals, with a `role`. Optionally, may
7589
+ # specify a `condition` that determines how and when the `bindings` are applied.
7590
+ # Each of the `bindings` must contain at least one principal. The `bindings` in
7591
+ # a `Policy` can refer to up to 1,500 principals; up to 250 of these principals
7592
+ # can be Google groups. Each occurrence of a principal counts towards these
7593
+ # limits. For example, if the `bindings` grant 50 different roles to `user:alice@
7594
+ # example.com`, and not to any other principal, then you can add another 1,450
7595
+ # principals to the `bindings` in the `Policy`.
7518
7596
  # Corresponds to the JSON property `bindings`
7519
7597
  # @return [Array<Google::Apis::ApigeeV1::GoogleIamV1Binding>]
7520
7598
  attr_accessor :bindings
@@ -7573,31 +7651,31 @@ module Google
7573
7651
 
7574
7652
  # An Identity and Access Management (IAM) policy, which specifies access
7575
7653
  # controls for Google Cloud resources. A `Policy` is a collection of `bindings`.
7576
- # A `binding` binds one or more `members` to a single `role`. Members can be
7577
- # user accounts, service accounts, Google groups, and domains (such as G Suite).
7578
- # A `role` is a named list of permissions; each `role` can be an IAM predefined
7579
- # role or a user-created custom role. For some types of Google Cloud resources,
7580
- # a `binding` can also specify a `condition`, which is a logical expression that
7581
- # allows access to a resource only if the expression evaluates to `true`. A
7582
- # condition can add constraints based on attributes of the request, the resource,
7583
- # or both. To learn which resources support conditions in their IAM policies,
7584
- # see the [IAM documentation](https://cloud.google.com/iam/help/conditions/
7585
- # resource-policies). **JSON example:** ` "bindings": [ ` "role": "roles/
7586
- # resourcemanager.organizationAdmin", "members": [ "user:mike@example.com", "
7587
- # group:admins@example.com", "domain:google.com", "serviceAccount:my-project-id@
7588
- # appspot.gserviceaccount.com" ] `, ` "role": "roles/resourcemanager.
7589
- # organizationViewer", "members": [ "user:eve@example.com" ], "condition": ` "
7590
- # title": "expirable access", "description": "Does not grant access after Sep
7591
- # 2020", "expression": "request.time < timestamp('2020-10-01T00:00:00.000Z')", `
7592
- # ` ], "etag": "BwWWja0YfJA=", "version": 3 ` **YAML example:** bindings: -
7593
- # members: - user:mike@example.com - group:admins@example.com - domain:google.
7594
- # com - serviceAccount:my-project-id@appspot.gserviceaccount.com role: roles/
7595
- # resourcemanager.organizationAdmin - members: - user:eve@example.com role:
7596
- # roles/resourcemanager.organizationViewer condition: title: expirable access
7597
- # description: Does not grant access after Sep 2020 expression: request.time <
7598
- # timestamp('2020-10-01T00:00:00.000Z') etag: BwWWja0YfJA= version: 3 For a
7599
- # description of IAM and its features, see the [IAM documentation](https://cloud.
7600
- # google.com/iam/docs/).
7654
+ # A `binding` binds one or more `members`, or principals, to a single `role`.
7655
+ # Principals can be user accounts, service accounts, Google groups, and domains (
7656
+ # such as G Suite). A `role` is a named list of permissions; each `role` can be
7657
+ # an IAM predefined role or a user-created custom role. For some types of Google
7658
+ # Cloud resources, a `binding` can also specify a `condition`, which is a
7659
+ # logical expression that allows access to a resource only if the expression
7660
+ # evaluates to `true`. A condition can add constraints based on attributes of
7661
+ # the request, the resource, or both. To learn which resources support
7662
+ # conditions in their IAM policies, see the [IAM documentation](https://cloud.
7663
+ # google.com/iam/help/conditions/resource-policies). **JSON example:** ` "
7664
+ # bindings": [ ` "role": "roles/resourcemanager.organizationAdmin", "members": [
7665
+ # "user:mike@example.com", "group:admins@example.com", "domain:google.com", "
7666
+ # serviceAccount:my-project-id@appspot.gserviceaccount.com" ] `, ` "role": "
7667
+ # roles/resourcemanager.organizationViewer", "members": [ "user:eve@example.com"
7668
+ # ], "condition": ` "title": "expirable access", "description": "Does not grant
7669
+ # access after Sep 2020", "expression": "request.time < timestamp('2020-10-01T00:
7670
+ # 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` **YAML example:**
7671
+ # bindings: - members: - user:mike@example.com - group:admins@example.com -
7672
+ # domain:google.com - serviceAccount:my-project-id@appspot.gserviceaccount.com
7673
+ # role: roles/resourcemanager.organizationAdmin - members: - user:eve@example.
7674
+ # com role: roles/resourcemanager.organizationViewer condition: title: expirable
7675
+ # access description: Does not grant access after Sep 2020 expression: request.
7676
+ # time < timestamp('2020-10-01T00:00:00.000Z') etag: BwWWja0YfJA= version: 3 For
7677
+ # a description of IAM and its features, see the [IAM documentation](https://
7678
+ # cloud.google.com/iam/docs/).
7601
7679
  # Corresponds to the JSON property `policy`
7602
7680
  # @return [Google::Apis::ApigeeV1::GoogleIamV1Policy]
7603
7681
  attr_accessor :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.22.0"
19
+ GEM_VERSION = "0.26.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 = "20210916"
25
+ REVISION = "20211101"
26
26
  end
27
27
  end
28
28
  end
@@ -214,6 +214,12 @@ module Google
214
214
  include Google::Apis::Core::JsonObjectSupport
215
215
  end
216
216
 
217
+ class GoogleCloudApigeeV1ConnectorsPlatformConfig
218
+ class Representation < Google::Apis::Core::JsonRepresentation; end
219
+
220
+ include Google::Apis::Core::JsonObjectSupport
221
+ end
222
+
217
223
  class GoogleCloudApigeeV1Credential
218
224
  class Representation < Google::Apis::Core::JsonRepresentation; end
219
225
 
@@ -526,6 +532,12 @@ module Google
526
532
  include Google::Apis::Core::JsonObjectSupport
527
533
  end
528
534
 
535
+ class GoogleCloudApigeeV1IntegrationConfig
536
+ class Representation < Google::Apis::Core::JsonRepresentation; end
537
+
538
+ include Google::Apis::Core::JsonObjectSupport
539
+ end
540
+
529
541
  class GoogleCloudApigeeV1KeyAliasReference
530
542
  class Representation < Google::Apis::Core::JsonRepresentation; end
531
543
 
@@ -1259,6 +1271,10 @@ module Google
1259
1271
  class Representation < Google::Apis::Core::JsonRepresentation
1260
1272
  property :advanced_api_ops_config, as: 'advancedApiOpsConfig', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1AdvancedApiOpsConfig, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1AdvancedApiOpsConfig::Representation
1261
1273
 
1274
+ property :connectors_platform_config, as: 'connectorsPlatformConfig', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1ConnectorsPlatformConfig, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1ConnectorsPlatformConfig::Representation
1275
+
1276
+ property :integration_config, as: 'integrationConfig', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1IntegrationConfig, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1IntegrationConfig::Representation
1277
+
1262
1278
  property :monetization_config, as: 'monetizationConfig', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1MonetizationConfig, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1MonetizationConfig::Representation
1263
1279
 
1264
1280
  end
@@ -1368,6 +1384,7 @@ module Google
1368
1384
  property :description, as: 'description'
1369
1385
  property :display_name, as: 'displayName'
1370
1386
  hash :entity_meta_data_as_properties, as: 'entityMetaDataAsProperties'
1387
+ collection :integration_endpoints, as: 'integrationEndpoints'
1371
1388
  property :last_modified_at, :numeric_string => true, as: 'lastModifiedAt'
1372
1389
  property :name, as: 'name'
1373
1390
  collection :policies, as: 'policies'
@@ -1554,6 +1571,14 @@ module Google
1554
1571
  end
1555
1572
  end
1556
1573
 
1574
+ class GoogleCloudApigeeV1ConnectorsPlatformConfig
1575
+ # @private
1576
+ class Representation < Google::Apis::Core::JsonRepresentation
1577
+ property :enabled, as: 'enabled'
1578
+ property :expires_at, :numeric_string => true, as: 'expiresAt'
1579
+ end
1580
+ end
1581
+
1557
1582
  class GoogleCloudApigeeV1Credential
1558
1583
  # @private
1559
1584
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2167,6 +2192,13 @@ module Google
2167
2192
  end
2168
2193
  end
2169
2194
 
2195
+ class GoogleCloudApigeeV1IntegrationConfig
2196
+ # @private
2197
+ class Representation < Google::Apis::Core::JsonRepresentation
2198
+ property :enabled, as: 'enabled'
2199
+ end
2200
+ end
2201
+
2170
2202
  class GoogleCloudApigeeV1KeyAliasReference
2171
2203
  # @private
2172
2204
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2551,6 +2583,7 @@ module Google
2551
2583
  property :expires_at, :numeric_string => true, as: 'expiresAt'
2552
2584
  property :last_modified_at, :numeric_string => true, as: 'lastModifiedAt'
2553
2585
  property :name, as: 'name'
2586
+ property :portal_disabled, as: 'portalDisabled'
2554
2587
  property :project_id, as: 'projectId'
2555
2588
  property :properties, as: 'properties', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1Properties, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1Properties::Representation
2556
2589
 
@@ -5685,58 +5685,55 @@ module Google
5685
5685
  execute_or_queue_command(command, &block)
5686
5686
  end
5687
5687
 
5688
- # This api is similar to GetStats except that the response is less verbose. In
5689
- # the current scheme, a query parameter _optimized instructs Edge Analytics to
5690
- # change the response but since this behavior is not possible with protocol
5691
- # buffer and since this parameter is predominantly used by Edge UI, we are
5692
- # introducing a separate api.
5693
- # @param [String] name
5694
- # Required. The resource name for which the interactive query will be executed.
5695
- # Must be of the form `organizations/`organization_id`/environments/`
5696
- # environment_id/optimizedStats/`dimensions`` Dimensions let you view metrics in
5697
- # meaningful groupings. E.g. apiproxy, target_host. The value of dimensions
5698
- # should be comma separated list as shown below `organizations/`org`/
5699
- # environments/`env`/optimizedStats/apiproxy,request_verb`
5688
+ # Similar to GetStats except that the response is less verbose.
5689
+ # @param [String] name
5690
+ # Required. Resource name for which the interactive query will be executed. Use
5691
+ # the following format in your request: `organizations/`org`/environments/`env`/
5692
+ # optimizedStats/`dimensions`` Dimensions let you view metrics in meaningful
5693
+ # groupings, such as `apiproxy`, `target_host`. The value of `dimensions` should
5694
+ # be a comma-separated list as shown below: `organizations/`org`/environments/`
5695
+ # env`/optimizedStats/apiproxy,request_verb`
5700
5696
  # @param [String] accuracy
5701
- # Legacy field: not used anymore.
5697
+ # No longer used by Apigee. Supported for backwards compatibility.
5702
5698
  # @param [String] agg_table
5703
- # If customers want to query custom aggregate tables, then this parameter can be
5704
- # used to specify the table name. If this parameter is skipped, then Edge Query
5705
- # will try to retrieve the data from fact tables which will be expensive.
5699
+ # Table name used to query custom aggregate tables. If this parameter is skipped,
5700
+ # then Apigee will try to retrieve the data from fact tables which will be
5701
+ # expensive.
5706
5702
  # @param [String] filter
5707
- # Enables drill-down on specific dimension values.
5703
+ # Filter that enables you to drill-down on specific dimension values.
5708
5704
  # @param [String] limit
5709
- # This parameter is used to limit the number of result items. Default and the
5710
- # max value is 14400.
5705
+ # Maximum number of result items to return. The default and maximum value that
5706
+ # can be returned is 14400.
5711
5707
  # @param [String] offset
5712
- # Use offset with limit to enable pagination of results. For example, to display
5713
- # results 11-20, set limit to '10' and offset to '10'.
5708
+ # Offset value. Use `offset` with `limit` to enable pagination of results. For
5709
+ # example, to display results 11-20, set limit to `10` and offset to `10`.
5714
5710
  # @param [Boolean] realtime
5715
- # Legacy field: not used anymore.
5711
+ # No longer used by Apigee. Supported for backwards compatibility.
5716
5712
  # @param [String] select
5717
- # Required. The select parameter contains a comma separated list of metrics. E.g.
5718
- # sum(message_count),sum(error_count)
5713
+ # Required. Comma-separated list of metrics. For example: `sum(message_count),
5714
+ # sum(error_count)`
5719
5715
  # @param [Boolean] sonar
5720
- # This parameter routes the query to api monitoring service for last hour.
5716
+ # Routes the query to API Monitoring for the last hour.
5721
5717
  # @param [String] sort
5722
- # This parameter specifies if the sort order should be ascending or descending
5723
- # Supported values are DESC and ASC.
5718
+ # Flag that specifies whether the sort order should be ascending or descending.
5719
+ # Valid values include `DESC` and `ASC`.
5724
5720
  # @param [String] sortby
5725
- # Comma separated list of columns to sort the final result.
5721
+ # Comma-separated list of columns to sort the final result.
5726
5722
  # @param [String] time_range
5727
- # Required. Time interval for the interactive query. Time range is specified as
5728
- # start~end E.g. 04/15/2017 00:00~05/15/2017 23:59
5723
+ # Required. Time interval for the interactive query. Time range is specified in
5724
+ # GMT as `start~end`. For example: `04/15/2017 00:00~05/15/2017 23:59`
5729
5725
  # @param [String] time_unit
5730
- # A value of second, minute, hour, day, week, month. Time Unit specifies the
5731
- # granularity of metrics returned.
5726
+ # Granularity of metrics returned. Valid values include: `second`, `minute`, `
5727
+ # hour`, `day`, `week`, or `month`.
5732
5728
  # @param [String] topk
5733
- # Take 'top k' results from results, for example, to return the top 5 results '
5734
- # topk=5'.
5729
+ # Top number of results to return. For example, to return the top 5 results, set
5730
+ # `topk=5`.
5735
5731
  # @param [Boolean] ts_ascending
5736
- # Lists timestamps in ascending order if set to true. Recommend setting this
5737
- # value to true if you are using sortby with sort=DESC.
5732
+ # Flag that specifies whether to list timestamps in ascending (`true`) or
5733
+ # descending (`false`) order. Apigee recommends setting this value to `true` if
5734
+ # you are using `sortby` with `sort=DESC`.
5738
5735
  # @param [String] tzo
5739
- # This parameters contains the timezone offset value.
5736
+ # Timezone offset value.
5740
5737
  # @param [String] fields
5741
5738
  # Selector specifying which fields to include in a partial response.
5742
5739
  # @param [String] quota_user
@@ -6464,58 +6461,58 @@ module Google
6464
6461
 
6465
6462
  # Retrieve metrics grouped by dimensions. The types of metrics you can retrieve
6466
6463
  # include traffic, message counts, API call latency, response size, and cache
6467
- # hits and counts. Dimensions let you view metrics in meaningful groups. The
6468
- # stats api does accept dimensions as path params. The dimensions are optional
6469
- # in which case the metrics are computed on the entire data for the given
6470
- # timerange.
6471
- # @param [String] name
6472
- # Required. The resource name for which the interactive query will be executed.
6473
- # Must be of the form `organizations/`organization_id`/environments/`
6474
- # environment_id/stats/`dimensions`` Dimensions let you view metrics in
6475
- # meaningful groupings. E.g. apiproxy, target_host. The value of dimensions
6476
- # should be comma separated list as shown below `organizations/`org`/
6477
- # environments/`env`/stats/apiproxy,request_verb`
6464
+ # hits and counts. Dimensions let you view metrics in meaningful groups. You can
6465
+ # optionally pass dimensions as path parameters to the `stats` API. If
6466
+ # dimensions are not specified, the metrics are computed on the entire set of
6467
+ # data for the given time range.
6468
+ # @param [String] name
6469
+ # Required. Resource name for which the interactive query will be executed. Use
6470
+ # the following format in your request: `organizations/`org`/environments/`env`/
6471
+ # stats/`dimensions`` Dimensions let you view metrics in meaningful groupings,
6472
+ # such as `apiproxy` or `target_host`. The value of dimensions should be a comma-
6473
+ # separated list, as shown below: `organizations/`org`/environments/`env`/stats/
6474
+ # apiproxy,request_verb`
6478
6475
  # @param [String] accuracy
6479
- # Legacy field: not used anymore. This field is present to support UI calls
6480
- # which still use this parameter.
6476
+ # No longer used by Apigee. Supported for backwards compatibility.
6481
6477
  # @param [String] agg_table
6482
- # If customers want to query custom aggregate tables, then this parameter can be
6483
- # used to specify the table name. If this parameter is skipped, then Edge Query
6484
- # will try to retrieve the data from fact tables which will be expensive.
6478
+ # Table name used to query custom aggregate tables. If this parameter is skipped,
6479
+ # then Apigee will try to retrieve the data from fact tables which will be
6480
+ # expensive.
6485
6481
  # @param [String] filter
6486
- # Enables drill-down on specific dimension values
6482
+ # Filter that enables you to drill down on specific dimension values.
6487
6483
  # @param [String] limit
6488
- # This parameter is used to limit the number of result items. Default and the
6489
- # max value is 14400.
6484
+ # Maximum number of result items to return. The default and maximum value that
6485
+ # can be returned is 14400.
6490
6486
  # @param [String] offset
6491
- # Use offset with limit to enable pagination of results. For example, to display
6492
- # results 11-20, set limit to '10' and offset to '10'.
6487
+ # Offset value. Use `offset` with `limit` to enable pagination of results. For
6488
+ # example, to display results 11-20, set limit to `10` and offset to `10`.
6493
6489
  # @param [Boolean] realtime
6494
- # Legacy field: not used anymore.
6490
+ # No longer used by Apigee. Supported for backwards compatibility.
6495
6491
  # @param [String] select
6496
- # The select parameter contains a comma separated list of metrics. E.g. sum(
6497
- # message_count),sum(error_count)
6492
+ # Comma-separated list of metrics. For example: `sum(message_count),sum(
6493
+ # error_count)`
6498
6494
  # @param [Boolean] sonar
6499
- # This parameter routes the query to api monitoring service for last hour.
6495
+ # Routes the query to API Monitoring for the last hour.
6500
6496
  # @param [String] sort
6501
- # This parameter specifies if the sort order should be ascending or descending
6502
- # Supported values are DESC and ASC.
6497
+ # Flag that specifies whether the sort order should be ascending or descending.
6498
+ # Valid values include: `DESC` and `ASC`.
6503
6499
  # @param [String] sortby
6504
- # Comma separated list of columns to sort the final result.
6500
+ # Comma-separated list of columns to sort the final result.
6505
6501
  # @param [String] time_range
6506
- # Time interval for the interactive query. Time range is specified as start~end
6507
- # E.g. 04/15/2017 00:00~05/15/2017 23:59
6502
+ # Time interval for the interactive query. Time range is specified in GMT as `
6503
+ # start~end`. For example: `04/15/2017 00:00~05/15/2017 23:59`
6508
6504
  # @param [String] time_unit
6509
- # A value of second, minute, hour, day, week, month. Time Unit specifies the
6510
- # granularity of metrics returned.
6505
+ # Granularity of metrics returned. Valid values include: `second`, `minute`, `
6506
+ # hour`, `day`, `week`, or` month`.
6511
6507
  # @param [String] topk
6512
- # Take 'top k' results from results, for example, to return the top 5 results '
6513
- # topk=5'.
6508
+ # Top number of results to return. For example, to return the top 5 results, set
6509
+ # `topk=5`.
6514
6510
  # @param [Boolean] ts_ascending
6515
- # Lists timestamps in ascending order if set to true. Recommend setting this
6516
- # value to true if you are using sortby with sort=DESC.
6511
+ # Flag that specifies whether to list timestamps in ascending (`true`) or
6512
+ # descending (`false`) order. Apigee recommends that you set this value to `true`
6513
+ # if you are using `sortby` with `sort=DESC`.
6517
6514
  # @param [String] tzo
6518
- # This parameters contains the timezone offset value.
6515
+ # Timezone offset value.
6519
6516
  # @param [String] fields
6520
6517
  # Selector specifying which fields to include in a partial response.
6521
6518
  # @param [String] quota_user
@@ -7070,51 +7067,52 @@ module Google
7070
7067
  # Retrieve metrics grouped by dimensions in host level. The types of metrics you
7071
7068
  # can retrieve include traffic, message counts, API call latency, response size,
7072
7069
  # and cache hits and counts. Dimensions let you view metrics in meaningful
7073
- # groups. The stats api does accept dimensions as path params. The dimensions
7074
- # are optional in which case the metrics are computed on the entire data for the
7075
- # given timerange.
7076
- # @param [String] name
7077
- # Required. The resource name for which the interactive query will be executed.
7078
- # Must be of the form `organizations/`organization_id`/hostStats/`dimensions``.
7079
- # Dimensions let you view metrics in meaningful groupings. E.g. apiproxy,
7080
- # target_host. The value of dimensions should be comma separated list as shown
7081
- # below `organizations/`org`/hostStats/apiproxy,request_verb`
7070
+ # groups. You can optionally pass dimensions as path parameters to the `stats`
7071
+ # API. If dimensions are not specified, the metrics are computed on the entire
7072
+ # set of data for the given time range.
7073
+ # @param [String] name
7074
+ # Required. Resource name for which the interactive query will be executed. Use
7075
+ # the following format in your request: `organizations/`org`/hostStats/`
7076
+ # dimensions`` Dimensions let you view metrics in meaningful groupings, such as `
7077
+ # apiproxy`, `target_host`. The value of dimensions should be a comma-separated
7078
+ # list as shown below `organizations/`org`/hostStats/apiproxy,request_verb`
7082
7079
  # @param [String] accuracy
7083
- # Legacy field: not used anymore.
7080
+ # No longer used by Apigee. Supported for backwards compatibility.
7084
7081
  # @param [String] envgroup_hostname
7085
- # Required. The hostname for which the interactive query will be executed.
7082
+ # Required. Hostname for which the interactive query will be executed.
7086
7083
  # @param [String] filter
7087
- # Enables drill-down on specific dimension values.
7084
+ # Flag that enables drill-down on specific dimension values.
7088
7085
  # @param [String] limit
7089
- # This parameter is used to limit the number of result items. Default and the
7090
- # max value is 14400.
7086
+ # Maximum number of result items to return. The default and maximum value that
7087
+ # can be returned is 14400.
7091
7088
  # @param [String] offset
7092
- # Use offset with limit to enable pagination of results. For example, to display
7093
- # results 11-20, set limit to '10' and offset to '10'.
7089
+ # Offset value. Use `offset` with `limit` to enable pagination of results. For
7090
+ # example, to display results 11-20, set limit to `10` and offset to `10`.
7094
7091
  # @param [Boolean] realtime
7095
- # Legacy field: not used anymore.
7092
+ # No longer used by Apigee. Supported for backwards compatibility.
7096
7093
  # @param [String] select
7097
- # The select parameter contains a comma separated list of metrics. E.g. sum(
7098
- # message_count),sum(error_count)
7094
+ # Comma-separated list of metrics. For example: `sum(message_count),sum(
7095
+ # error_count)`
7099
7096
  # @param [String] sort
7100
- # This parameter specifies if the sort order should be ascending or descending
7101
- # Supported values are DESC and ASC.
7097
+ # Flag that specifies if the sort order should be ascending or descending. Valid
7098
+ # values are `DESC` and `ASC`.
7102
7099
  # @param [String] sortby
7103
- # Comma separated list of columns to sort the final result.
7100
+ # Comma-separated list of columns to sort the final result.
7104
7101
  # @param [String] time_range
7105
- # Time interval for the interactive query. Time range is specified as start~end
7106
- # E.g. 04/15/2017 00:00~05/15/2017 23:59
7102
+ # Time interval for the interactive query. Time range is specified in GMT as `
7103
+ # start~end`. For example: `04/15/2017 00:00~05/15/2017 23:59`
7107
7104
  # @param [String] time_unit
7108
- # A value of second, minute, hour, day, week, month. Time Unit specifies the
7109
- # granularity of metrics returned.
7105
+ # Granularity of metrics returned. Valid values include: `second`, `minute`, `
7106
+ # hour`, `day`, `week`, or `month`.
7110
7107
  # @param [String] topk
7111
- # Take 'top k' results from results, for example, to return the top 5 results '
7112
- # topk=5'.
7108
+ # Top number of results to return. For example, to return the top 5 results, set
7109
+ # `topk=5`.
7113
7110
  # @param [Boolean] ts_ascending
7114
- # Lists timestamps in ascending order if set to true. Recommend setting this
7115
- # value to true if you are using sortby with sort=DESC.
7111
+ # Flag that specifies whether to list timestamps in ascending (`true`) or
7112
+ # descending (`false`) order. Apigee recommends that you set this value to `true`
7113
+ # if you are using `sortby` with `sort=DESC`.
7116
7114
  # @param [String] tzo
7117
- # This parameters contains the timezone offset value.
7115
+ # Timezone offset value.
7118
7116
  # @param [String] fields
7119
7117
  # Selector specifying which fields to include in a partial response.
7120
7118
  # @param [String] quota_user
@@ -7887,49 +7885,51 @@ module Google
7887
7885
  execute_or_queue_command(command, &block)
7888
7886
  end
7889
7887
 
7890
- # This api is similar to GetHostStats except that the response is less verbose.
7888
+ # Similar to GetHostStats except that the response is less verbose.
7891
7889
  # @param [String] name
7892
- # Required. The resource name for which the interactive query will be executed.
7893
- # Must be of the form `organizations/`organization_id`/optimizedHostStats/`
7894
- # dimensions``. Dimensions let you view metrics in meaningful groupings. E.g.
7895
- # apiproxy, target_host. The value of dimensions should be comma separated list
7896
- # as shown below `organizations/`org`/optimizedHostStats/apiproxy,request_verb`
7890
+ # Required. Resource name for which the interactive query will be executed. Use
7891
+ # the following format in your request: `organizations/`organization_id`/
7892
+ # optimizedHostStats/`dimensions`` Dimensions let you view metrics in meaningful
7893
+ # groupings, such as `apiproxy`, `target_host`. The value of dimensions should
7894
+ # be a comma-separated list as shown below: `organizations/`org`/
7895
+ # optimizedHostStats/apiproxy,request_verb`
7897
7896
  # @param [String] accuracy
7898
- # Legacy field: not used anymore.
7897
+ # No longer used by Apigee. Supported for backwards compatibility.
7899
7898
  # @param [String] envgroup_hostname
7900
- # Required. The hostname for which the interactive query will be executed.
7899
+ # Required. Hostname for which the interactive query will be executed.
7901
7900
  # @param [String] filter
7902
- # Enables drill-down on specific dimension values.
7901
+ # Filter that enables you to drill-down on specific dimension values.
7903
7902
  # @param [String] limit
7904
- # This parameter is used to limit the number of result items. Default and the
7905
- # max value is 14400.
7903
+ # Maximum number of result items to return. The default and maximum value that
7904
+ # can be returned is 14400.
7906
7905
  # @param [String] offset
7907
- # Use offset with limit to enable pagination of results. For example, to display
7908
- # results 11-20, set limit to '10' and offset to '10'.
7906
+ # Offset value. Use `offset` with `limit` to enable pagination of results. For
7907
+ # example, to display results 11-20, set limit to `10` and offset to `10`.
7909
7908
  # @param [Boolean] realtime
7910
- # Legacy field: not used anymore.
7909
+ # No longer used by Apigee. Supported for backwards compatibility.
7911
7910
  # @param [String] select
7912
- # Required. The select parameter contains a comma separated list of metrics. E.g.
7913
- # sum(message_count),sum(error_count)
7911
+ # Required. Comma-separated list of metrics. For example: `sum(message_count),
7912
+ # sum(error_count)`
7914
7913
  # @param [String] sort
7915
- # This parameter specifies if the sort order should be ascending or descending
7916
- # Supported values are DESC and ASC.
7914
+ # Flag that specifies whether the sort order should be ascending or descending.
7915
+ # Valid values include `DESC` and `ASC`.
7917
7916
  # @param [String] sortby
7918
- # Comma separated list of columns to sort the final result.
7917
+ # Comma-separated list of columns used to sort the final result.
7919
7918
  # @param [String] time_range
7920
- # Required. Time interval for the interactive query. Time range is specified as
7921
- # start~end. E.g 04/15/2017 00:00~05/15/2017 23:59.
7919
+ # Required. Time interval for the interactive query. Time range is specified in
7920
+ # GMT as `start~end`. For example: `04/15/2017 00:00~05/15/2017 23:59`.
7922
7921
  # @param [String] time_unit
7923
- # A value of second, minute, hour, day, week, month. Time Unit specifies the
7924
- # granularity of metrics returned.
7922
+ # Granularity of metrics returned. Valid values include: `second`, `minute`, `
7923
+ # hour`, `day`, `week`, or `month`.
7925
7924
  # @param [String] topk
7926
- # Take 'top k' results from results, for example, to return the top 5 results '
7927
- # topk=5'.
7925
+ # Top number of results to return. For example, to return the top 5 results, set
7926
+ # `topk=5`.
7928
7927
  # @param [Boolean] ts_ascending
7929
- # Lists timestamps in ascending order if set to true. Recommend setting this
7930
- # value to true if you are using sortby with sort=DESC.
7928
+ # Flag that specifies whether to list timestamps in ascending (`true`) or
7929
+ # descending (`false`) order. Apigee recommends that you set this value to `true`
7930
+ # if you are using `sortby` with `sort=DESC`.
7931
7931
  # @param [String] tzo
7932
- # This parameters contains the timezone offset value.
7932
+ # Timezone offset value.
7933
7933
  # @param [String] fields
7934
7934
  # Selector specifying which fields to include in a partial response.
7935
7935
  # @param [String] quota_user
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.22.0
4
+ version: 0.26.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-09-22 00:00:00.000000000 Z
11
+ date: 2021-11-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -57,9 +57,9 @@ licenses:
57
57
  - Apache-2.0
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
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.22.0
62
- source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-apigee_v1
60
+ changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-apigee_v1/CHANGELOG.md
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-apigee_v1/v0.26.0
62
+ source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-apigee_v1
63
63
  post_install_message:
64
64
  rdoc_options: []
65
65
  require_paths: