google-apis-apigee_v1 0.17.0 → 0.18.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: 38ee82313d4de95c3d6541af2d11375a55487d4ae3fe69b51e47d3563348f808
4
- data.tar.gz: bd4c5e475faa0d6663a31e2af182cc0a0df0c7352d07e7ae387dd93ebd576070
3
+ metadata.gz: bfc0457e915590c55cbcf0713bfcde193df59f4ab69820b6b471990f5a12aa8f
4
+ data.tar.gz: dbea9876b6a1665e6ffdb668ed11f07f03fad8ef50637dd0852ba5632ef96e6d
5
5
  SHA512:
6
- metadata.gz: d028e5afc10d16fa636dbbf60e8d362cd1cb39318ffff3b1e861eb49bdad6cd40fb4979364b05cc21396bcccf4808431a0957932fc75cce35a9fd08cb34e50c9
7
- data.tar.gz: f951c333d29b6f99df4783c3383b4af9010de6e4f6259b0ef2a0299f1e941229efe5c0e5a1a395e7e2de093f01c6a04a20f360ad8ba33cf02882095ff8105dec
6
+ metadata.gz: e3c76b62e1ea6ec02562367ea13a1648957a444031cb6b8a661914c78ce5c0526024495ea4d19b321d2ab2c5923fc85d258eadab80a005ca9250b20dc3eaab01
7
+ data.tar.gz: 28aae1a1956b737a66a96282630a1aeeb755eb8a46ab6b1cc5263ff3aeef9c2dbc539bdd069033c29a6141cd6d913ee1d33e14ad7f15bdee490d621fe8891f22
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-apigee_v1
2
2
 
3
+ ### v0.18.0 (2021-07-28)
4
+
5
+ * Regenerated from discovery document revision 20210722
6
+
3
7
  ### v0.17.0 (2021-07-13)
4
8
 
5
9
  * Regenerated from discovery document revision 20210708
@@ -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
@@ -589,7 +634,12 @@ module Google
589
634
  class GoogleCloudApigeeV1ApiProxy
590
635
  include Google::Apis::Core::Hashable
591
636
 
592
- # The id of the most recently created revision for this api proxy.
637
+ # User labels applied to this API Proxy.
638
+ # Corresponds to the JSON property `labels`
639
+ # @return [Hash<String,String>]
640
+ attr_accessor :labels
641
+
642
+ # Output only. The id of the most recently created revision for this api proxy.
593
643
  # Corresponds to the JSON property `latestRevisionId`
594
644
  # @return [String]
595
645
  attr_accessor :latest_revision_id
@@ -599,12 +649,12 @@ module Google
599
649
  # @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1EntityMetadata]
600
650
  attr_accessor :meta_data
601
651
 
602
- # Name of the API proxy.
652
+ # Output only. Name of the API proxy.
603
653
  # Corresponds to the JSON property `name`
604
654
  # @return [String]
605
655
  attr_accessor :name
606
656
 
607
- # List of revisons defined for the API proxy.
657
+ # Output only. List of revisons defined for the API proxy.
608
658
  # Corresponds to the JSON property `revision`
609
659
  # @return [Array<String>]
610
660
  attr_accessor :revision
@@ -615,6 +665,7 @@ module Google
615
665
 
616
666
  # Update properties of this object
617
667
  def update!(**args)
668
+ @labels = args[:labels] if args.key?(:labels)
618
669
  @latest_revision_id = args[:latest_revision_id] if args.key?(:latest_revision_id)
619
670
  @meta_data = args[:meta_data] if args.key?(:meta_data)
620
671
  @name = args[:name] if args.key?(:name)
@@ -2044,6 +2095,12 @@ module Google
2044
2095
  # @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1DeploymentChangeReportRoutingConflict>]
2045
2096
  attr_accessor :route_conflicts
2046
2097
 
2098
+ # The full resource name of Cloud IAM Service Account that this deployment is
2099
+ # using, eg, `projects/-/serviceAccounts/`email``.
2100
+ # Corresponds to the JSON property `serviceAccount`
2101
+ # @return [String]
2102
+ attr_accessor :service_account
2103
+
2047
2104
  # Current state of the deployment. This field is not populated in List APIs.
2048
2105
  # Corresponds to the JSON property `state`
2049
2106
  # @return [String]
@@ -2063,6 +2120,7 @@ module Google
2063
2120
  @pods = args[:pods] if args.key?(:pods)
2064
2121
  @revision = args[:revision] if args.key?(:revision)
2065
2122
  @route_conflicts = args[:route_conflicts] if args.key?(:route_conflicts)
2123
+ @service_account = args[:service_account] if args.key?(:service_account)
2066
2124
  @state = args[:state] if args.key?(:state)
2067
2125
  end
2068
2126
  end
@@ -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.17.0"
19
+ GEM_VERSION = "0.18.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 = "20210708"
25
+ REVISION = "20210722"
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
 
@@ -1120,6 +1132,22 @@ module Google
1120
1132
  include Google::Apis::Core::JsonObjectSupport
1121
1133
  end
1122
1134
 
1135
+ class EdgeConfigstoreBundleBadBundle
1136
+ # @private
1137
+ class Representation < Google::Apis::Core::JsonRepresentation
1138
+ collection :violations, as: 'violations', class: Google::Apis::ApigeeV1::EdgeConfigstoreBundleBadBundleViolation, decorator: Google::Apis::ApigeeV1::EdgeConfigstoreBundleBadBundleViolation::Representation
1139
+
1140
+ end
1141
+ end
1142
+
1143
+ class EdgeConfigstoreBundleBadBundleViolation
1144
+ # @private
1145
+ class Representation < Google::Apis::Core::JsonRepresentation
1146
+ property :description, as: 'description'
1147
+ property :filename, as: 'filename'
1148
+ end
1149
+ end
1150
+
1123
1151
  class GoogleApiHttpBody
1124
1152
  # @private
1125
1153
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1268,6 +1296,7 @@ module Google
1268
1296
  class GoogleCloudApigeeV1ApiProxy
1269
1297
  # @private
1270
1298
  class Representation < Google::Apis::Core::JsonRepresentation
1299
+ hash :labels, as: 'labels'
1271
1300
  property :latest_revision_id, as: 'latestRevisionId'
1272
1301
  property :meta_data, as: 'metaData', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1EntityMetadata, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1EntityMetadata::Representation
1273
1302
 
@@ -1625,6 +1654,7 @@ module Google
1625
1654
  property :revision, as: 'revision'
1626
1655
  collection :route_conflicts, as: 'routeConflicts', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1DeploymentChangeReportRoutingConflict, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1DeploymentChangeReportRoutingConflict::Representation
1627
1656
 
1657
+ property :service_account, as: 'serviceAccount'
1628
1658
  property :state, as: 'state'
1629
1659
  end
1630
1660
  end
@@ -4315,6 +4315,10 @@ module Google
4315
4315
  # GenerateDeployChangeReport) may be used to examine routing changes before
4316
4316
  # issuing the deployment request, and its response will indicate if a sequenced
4317
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`.
4318
4322
  # @param [String] fields
4319
4323
  # Selector specifying which fields to include in a partial response.
4320
4324
  # @param [String] quota_user
@@ -4332,13 +4336,14 @@ module Google
4332
4336
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
4333
4337
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
4334
4338
  # @raise [Google::Apis::AuthorizationError] Authorization is required
4335
- 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)
4336
4340
  command = make_simple_command(:post, 'v1/{+name}/deployments', options)
4337
4341
  command.response_representation = Google::Apis::ApigeeV1::GoogleCloudApigeeV1Deployment::Representation
4338
4342
  command.response_class = Google::Apis::ApigeeV1::GoogleCloudApigeeV1Deployment
4339
4343
  command.params['name'] = name unless name.nil?
4340
4344
  command.query['override'] = override unless override.nil?
4341
4345
  command.query['sequencedRollout'] = sequenced_rollout unless sequenced_rollout.nil?
4346
+ command.query['serviceAccount'] = service_account unless service_account.nil?
4342
4347
  command.query['fields'] = fields unless fields.nil?
4343
4348
  command.query['quotaUser'] = quota_user unless quota_user.nil?
4344
4349
  execute_or_queue_command(command, &block)
@@ -5930,6 +5935,10 @@ module Google
5930
5935
  # replace other deployed revisions. By default, `override` is `false` and the
5931
5936
  # deployment is rejected if other revisions of the shared flow are deployed in
5932
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`.
5933
5942
  # @param [String] fields
5934
5943
  # Selector specifying which fields to include in a partial response.
5935
5944
  # @param [String] quota_user
@@ -5947,12 +5956,13 @@ module Google
5947
5956
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
5948
5957
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
5949
5958
  # @raise [Google::Apis::AuthorizationError] Authorization is required
5950
- 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)
5951
5960
  command = make_simple_command(:post, 'v1/{+name}/deployments', options)
5952
5961
  command.response_representation = Google::Apis::ApigeeV1::GoogleCloudApigeeV1Deployment::Representation
5953
5962
  command.response_class = Google::Apis::ApigeeV1::GoogleCloudApigeeV1Deployment
5954
5963
  command.params['name'] = name unless name.nil?
5955
5964
  command.query['override'] = override unless override.nil?
5965
+ command.query['serviceAccount'] = service_account unless service_account.nil?
5956
5966
  command.query['fields'] = fields unless fields.nil?
5957
5967
  command.query['quotaUser'] = quota_user unless quota_user.nil?
5958
5968
  execute_or_queue_command(command, &block)
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.17.0
4
+ version: 0.18.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-07-19 00:00:00.000000000 Z
11
+ date: 2021-08-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -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.17.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-apigee_v1/v0.18.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: []