google-apis-apigee_v1 0.7.0 → 0.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: baf740a36ac7116f1934c7d45b89e91093e2266f4bc04ec9ebc10524e9eb5f96
|
4
|
+
data.tar.gz: 4b009341ba4324292ef3d5576899b4cd0925f056de3b1ca51040400a1bd0d05b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9006c97449e2de2d93b9d4413111497725480da5ff8cc34754cbeed5edc4571974199ec78297a658cf44c14ce615840070444e705bbd6a3700bc46dc790f0faf
|
7
|
+
data.tar.gz: ca1a74aeedf8b769c0f98dff97aa82b849509e7cac2128f3af274cc9cb35b6d4fb76cf8a53a90d774d2387079bf2585ad5cef3ca0aec3b33fdceecda6ddf1961
|
data/CHANGELOG.md
CHANGED
@@ -3095,9 +3095,9 @@ module Google
|
|
3095
3095
|
|
3096
3096
|
# Required. `query`, `mutation` and `subscription` are the three operation types
|
3097
3097
|
# offered by graphQL. Currently we support only `query` and `mutation`.
|
3098
|
-
# Corresponds to the JSON property `
|
3098
|
+
# Corresponds to the JSON property `operationTypes`
|
3099
3099
|
# @return [Array<String>]
|
3100
|
-
attr_accessor :
|
3100
|
+
attr_accessor :operation_types
|
3101
3101
|
|
3102
3102
|
def initialize(**args)
|
3103
3103
|
update!(**args)
|
@@ -3106,7 +3106,7 @@ module Google
|
|
3106
3106
|
# Update properties of this object
|
3107
3107
|
def update!(**args)
|
3108
3108
|
@operation = args[:operation] if args.key?(:operation)
|
3109
|
-
@
|
3109
|
+
@operation_types = args[:operation_types] if args.key?(:operation_types)
|
3110
3110
|
end
|
3111
3111
|
end
|
3112
3112
|
|
@@ -4413,8 +4413,8 @@ module Google
|
|
4413
4413
|
# @return [String]
|
4414
4414
|
attr_accessor :authorized_network
|
4415
4415
|
|
4416
|
-
#
|
4417
|
-
#
|
4416
|
+
# Billing type of the Apigee organization. See [Apigee pricing](https://cloud.
|
4417
|
+
# google.com/apigee/pricing).
|
4418
4418
|
# Corresponds to the JSON property `billingType`
|
4419
4419
|
# @return [String]
|
4420
4420
|
attr_accessor :billing_type
|
@@ -5576,7 +5576,7 @@ module Google
|
|
5576
5576
|
class GoogleCloudApigeeV1Schema
|
5577
5577
|
include Google::Apis::Core::Hashable
|
5578
5578
|
|
5579
|
-
# List of schema
|
5579
|
+
# List of schema fields grouped as dimensions.
|
5580
5580
|
# Corresponds to the JSON property `dimensions`
|
5581
5581
|
# @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1SchemaSchemaElement>]
|
5582
5582
|
attr_accessor :dimensions
|
@@ -5587,8 +5587,8 @@ module Google
|
|
5587
5587
|
# @return [Array<String>]
|
5588
5588
|
attr_accessor :meta
|
5589
5589
|
|
5590
|
-
# List of schema fields grouped as dimensions
|
5591
|
-
#
|
5590
|
+
# List of schema fields grouped as dimensions that can be used with an aggregate
|
5591
|
+
# function such as `sum`, `avg`, `min`, and `max`.
|
5592
5592
|
# Corresponds to the JSON property `metrics`
|
5593
5593
|
# @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1SchemaSchemaElement>]
|
5594
5594
|
attr_accessor :metrics
|
@@ -5609,12 +5609,12 @@ module Google
|
|
5609
5609
|
class GoogleCloudApigeeV1SchemaSchemaElement
|
5610
5610
|
include Google::Apis::Core::Hashable
|
5611
5611
|
|
5612
|
-
# Name of the field
|
5612
|
+
# Name of the field.
|
5613
5613
|
# Corresponds to the JSON property `name`
|
5614
5614
|
# @return [String]
|
5615
5615
|
attr_accessor :name
|
5616
5616
|
|
5617
|
-
#
|
5617
|
+
# Properties for the schema field.
|
5618
5618
|
# Corresponds to the JSON property `properties`
|
5619
5619
|
# @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1SchemaSchemaProperty]
|
5620
5620
|
attr_accessor :properties
|
@@ -5630,17 +5630,18 @@ module Google
|
|
5630
5630
|
end
|
5631
5631
|
end
|
5632
5632
|
|
5633
|
-
#
|
5633
|
+
# Properties for the schema field.
|
5634
5634
|
class GoogleCloudApigeeV1SchemaSchemaProperty
|
5635
5635
|
include Google::Apis::Core::Hashable
|
5636
5636
|
|
5637
|
-
#
|
5637
|
+
# Time the field was created in RFC3339 string form. For example: `2016-02-26T10:
|
5638
|
+
# 23:09.592Z`.
|
5638
5639
|
# Corresponds to the JSON property `createTime`
|
5639
5640
|
# @return [String]
|
5640
5641
|
attr_accessor :create_time
|
5641
5642
|
|
5642
|
-
#
|
5643
|
-
#
|
5643
|
+
# Flag that specifies whether the field is standard in the dataset or a custom
|
5644
|
+
# field created by the customer. `true` indicates that it is a custom field.
|
5644
5645
|
# Corresponds to the JSON property `custom`
|
5645
5646
|
# @return [String]
|
5646
5647
|
attr_accessor :custom
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ApigeeV1
|
18
18
|
# Version of the google-apis-apigee_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.8.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.2.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20210319"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1788,7 +1788,7 @@ module Google
|
|
1788
1788
|
# @private
|
1789
1789
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1790
1790
|
property :operation, as: 'operation'
|
1791
|
-
collection :
|
1791
|
+
collection :operation_types, as: 'operationTypes'
|
1792
1792
|
end
|
1793
1793
|
end
|
1794
1794
|
|
@@ -3700,15 +3700,19 @@ module Google
|
|
3700
3700
|
execute_or_queue_command(command, &block)
|
3701
3701
|
end
|
3702
3702
|
|
3703
|
-
#
|
3704
|
-
# queries and reports. Each schema element contains the name of the field
|
3705
|
-
#
|
3703
|
+
# Gets a list of metrics and dimensions that can be used to create analytics
|
3704
|
+
# queries and reports. Each schema element contains the name of the field, its
|
3705
|
+
# associated type, and a flag indicating whether it is a standard or custom
|
3706
|
+
# field.
|
3706
3707
|
# @param [String] name
|
3707
|
-
# Required.
|
3708
|
+
# Required. Path to the schema. Use the following structure in your request: `
|
3708
3709
|
# organizations/`org`/environments/`env`/analytics/admin/schemav2`.
|
3710
|
+
# @param [Boolean] disable_cache
|
3711
|
+
# Flag that specifies whether the schema is be read from the database or cache.
|
3712
|
+
# Set to `true` to read the schema from the database. Defaults to cache.
|
3709
3713
|
# @param [String] type
|
3710
|
-
# Required.
|
3711
|
-
#
|
3714
|
+
# Required. Name of the dataset for which you want to retrieve the schema. For
|
3715
|
+
# example: `fact` or `agg_cus1`
|
3712
3716
|
# @param [String] fields
|
3713
3717
|
# Selector specifying which fields to include in a partial response.
|
3714
3718
|
# @param [String] quota_user
|
@@ -3726,11 +3730,12 @@ module Google
|
|
3726
3730
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
3727
3731
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
3728
3732
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
3729
|
-
def get_organization_environment_analytic_admin_schemav2(name, type: nil, fields: nil, quota_user: nil, options: nil, &block)
|
3733
|
+
def get_organization_environment_analytic_admin_schemav2(name, disable_cache: nil, type: nil, fields: nil, quota_user: nil, options: nil, &block)
|
3730
3734
|
command = make_simple_command(:get, 'v1/{+name}', options)
|
3731
3735
|
command.response_representation = Google::Apis::ApigeeV1::GoogleCloudApigeeV1Schema::Representation
|
3732
3736
|
command.response_class = Google::Apis::ApigeeV1::GoogleCloudApigeeV1Schema
|
3733
3737
|
command.params['name'] = name unless name.nil?
|
3738
|
+
command.query['disableCache'] = disable_cache unless disable_cache.nil?
|
3734
3739
|
command.query['type'] = type unless type.nil?
|
3735
3740
|
command.query['fields'] = fields unless fields.nil?
|
3736
3741
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-apigee_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.8.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-03-
|
11
|
+
date: 2021-03-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -52,7 +52,7 @@ licenses:
|
|
52
52
|
metadata:
|
53
53
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
54
54
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-apigee_v1/CHANGELOG.md
|
55
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-apigee_v1/v0.
|
55
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-apigee_v1/v0.8.0
|
56
56
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-apigee_v1
|
57
57
|
post_install_message:
|
58
58
|
rdoc_options: []
|