google-apis-connectors_v1 0.4.0 → 0.5.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: df2c7565263a76a03109ea4d82afaf4ba843c09d63ba7212f36d1a97e79d59e2
4
- data.tar.gz: 52efa61d21efa3b9fd4ab3fb675133b0ed4b62006e7c8f621026a5a0903cb0b6
3
+ metadata.gz: d3f2fa4c5f747506d80141d05b03848ed98e477e32fa5fad4bc8a910925d8a62
4
+ data.tar.gz: a169024a8a4557be233315456005a0bda7d850406dc529cfa5efa023a1471a6e
5
5
  SHA512:
6
- metadata.gz: 75d59a6365a510899b235c6f0ae7151eddeac03597180b577133c5c852eeeadc03b576ec80bdf2e6ab322ca15d21f399b89302b48060085bdd276d88d75f8f80
7
- data.tar.gz: 57e4190b7916daee1d9008a1b394d203052850a4f37e1e04183ebc821cd5d4081dfde06c30e9282ac8072ff45b9be29e9496cd482aab50a9cad42d7c930d27fd
6
+ metadata.gz: bc0d06ae4519cdea12edd113e357565264c29219b5a5c344eb22edba56f085686d22a7e2cae5c686b8826f725c45ad192ca31f10b1c58a55f771a5c49f5412c8
7
+ data.tar.gz: 4d00d01632c9741896f849fc79963a3f109b408a9a70499471367db6343dbb1049ec8ad4a5191fea5ab2359cb47ffecac8d83a2f81389dd2e1cf059df8b07158
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-connectors_v1
2
2
 
3
+ ### v0.5.0 (2022-01-10)
4
+
5
+ * Regenerated from discovery document revision 20211217
6
+
3
7
  ### v0.4.0 (2021-12-16)
4
8
 
5
9
  * Unspecified changes
@@ -568,6 +568,11 @@ module Google
568
568
  # @return [Hash<String,String>]
569
569
  attr_accessor :labels
570
570
 
571
+ # Output only. Flag to mark the version indicating the launch stage.
572
+ # Corresponds to the JSON property `launchStage`
573
+ # @return [String]
574
+ attr_accessor :launch_stage
575
+
571
576
  # Output only. Resource name of the Connector. Format: projects/`project`/
572
577
  # locations/`location`/providers/`provider`/connectors/`connector`
573
578
  # Corresponds to the JSON property `name`
@@ -596,6 +601,7 @@ module Google
596
601
  @documentation_uri = args[:documentation_uri] if args.key?(:documentation_uri)
597
602
  @external_uri = args[:external_uri] if args.key?(:external_uri)
598
603
  @labels = args[:labels] if args.key?(:labels)
604
+ @launch_stage = args[:launch_stage] if args.key?(:launch_stage)
599
605
  @name = args[:name] if args.key?(:name)
600
606
  @update_time = args[:update_time] if args.key?(:update_time)
601
607
  @web_assets_location = args[:web_assets_location] if args.key?(:web_assets_location)
@@ -1601,6 +1607,11 @@ module Google
1601
1607
  # @return [Hash<String,String>]
1602
1608
  attr_accessor :labels
1603
1609
 
1610
+ # Output only. Flag to mark the version indicating the launch stage.
1611
+ # Corresponds to the JSON property `launchStage`
1612
+ # @return [String]
1613
+ attr_accessor :launch_stage
1614
+
1604
1615
  # Output only. Resource name of the Provider. Format: projects/`project`/
1605
1616
  # locations/`location`/providers/`provider`
1606
1617
  # Corresponds to the JSON property `name`
@@ -1629,6 +1640,7 @@ module Google
1629
1640
  @documentation_uri = args[:documentation_uri] if args.key?(:documentation_uri)
1630
1641
  @external_uri = args[:external_uri] if args.key?(:external_uri)
1631
1642
  @labels = args[:labels] if args.key?(:labels)
1643
+ @launch_stage = args[:launch_stage] if args.key?(:launch_stage)
1632
1644
  @name = args[:name] if args.key?(:name)
1633
1645
  @update_time = args[:update_time] if args.key?(:update_time)
1634
1646
  @web_assets_location = args[:web_assets_location] if args.key?(:web_assets_location)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ConnectorsV1
18
18
  # Version of the google-apis-connectors_v1 gem
19
- GEM_VERSION = "0.4.0"
19
+ GEM_VERSION = "0.5.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 = "20211106"
25
+ REVISION = "20211217"
26
26
  end
27
27
  end
28
28
  end
@@ -463,6 +463,7 @@ module Google
463
463
  property :documentation_uri, as: 'documentationUri'
464
464
  property :external_uri, as: 'externalUri'
465
465
  hash :labels, as: 'labels'
466
+ property :launch_stage, as: 'launchStage'
466
467
  property :name, as: 'name'
467
468
  property :update_time, as: 'updateTime'
468
469
  property :web_assets_location, as: 'webAssetsLocation'
@@ -730,6 +731,7 @@ module Google
730
731
  property :documentation_uri, as: 'documentationUri'
731
732
  property :external_uri, as: 'externalUri'
732
733
  hash :labels, as: 'labels'
734
+ property :launch_stage, as: 'launchStage'
733
735
  property :name, as: 'name'
734
736
  property :update_time, as: 'updateTime'
735
737
  property :web_assets_location, as: 'webAssetsLocation'
@@ -22,7 +22,8 @@ module Google
22
22
  module ConnectorsV1
23
23
  # Connectors API
24
24
  #
25
- #
25
+ # Enables users to create and manage connections to Google Cloud services and
26
+ # third-party business applications using the Connectors interface.
26
27
  #
27
28
  # @example
28
29
  # require 'google/apis/connectors_v1'
@@ -21,7 +21,8 @@ module Google
21
21
  module Apis
22
22
  # Connectors API
23
23
  #
24
- #
24
+ # Enables users to create and manage connections to Google Cloud services and
25
+ # third-party business applications using the Connectors interface.
25
26
  #
26
27
  # @see https://cloud.google.com/apigee/docs/api-platform/connectors/about-connectors
27
28
  module ConnectorsV1
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-connectors_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.5.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: 2022-01-10 00:00:00.000000000 Z
11
+ date: 2022-01-17 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/main/generated/google-apis-connectors_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-connectors_v1/v0.4.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-connectors_v1/v0.5.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-connectors_v1
63
63
  post_install_message:
64
64
  rdoc_options: []
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.3.4
78
+ rubygems_version: 3.3.5
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Connectors API V1