google-apis-apigeeregistry_v1 0.12.0 → 0.13.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: f68299697f17cbeec0ddd9c08d6dc1d98c588e4dba35ec7ac6a542722abea4ab
4
- data.tar.gz: b19a4fdce2bb2d2ca6834ccb8f20f72189ac8c6a3ca62f07ca1f707d45d55b82
3
+ metadata.gz: 10b730d0f5d9b06f3c9d593f716b71ddc6f1e8150f23d4475ee095403892f3c7
4
+ data.tar.gz: 933002d0dfefe438cf980d792619cea9585a8e0a8e114688876f66f7ae60b672
5
5
  SHA512:
6
- metadata.gz: a086f3c21666de74b49613d6188a1aee0ef5f7308b3ae9ddb2426fccde159b73dbe5f788647fdf3c0dfcb4001d0d3b11613a1be7efa28c1b42371fcf3c3f0bba
7
- data.tar.gz: e8f3073bba9296e46549560bdbb8b9b40378f38af637b9732d792f85f1332ddc632dafb0e38850705bc7f104df471e265b02d4d567b40c1138bc8bc2d63d059b
6
+ metadata.gz: 785e8832af0e9d43539571741846ddb3082c6241c471f6479cd4c11d0e3de65aed6906f9fbe1757ce5e0380942aa098b99f909bfcaa073d139d2553709cd34dd
7
+ data.tar.gz: bf0036a8df071f73842cc87471e0ec4acbfe81c3269ec73abe79b04af52809aa4ef7997607a798f01a9a6a590caaa18390635f01565988ecd0dd1b2ff5fe85f1
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-apigeeregistry_v1
2
2
 
3
+ ### v0.13.0 (2023-02-05)
4
+
5
+ * Regenerated from discovery document revision 20230127
6
+
3
7
  ### v0.12.0 (2023-01-29)
4
8
 
5
9
  * Regenerated from discovery document revision 20230118
@@ -575,22 +575,22 @@ module Google
575
575
  # kubernetes-engine/docs/how-to/kubernetes-service-accounts). For example, `my-
576
576
  # project.svc.id.goog[my-namespace/my-kubernetes-sa]`. * `group:`emailid``: An
577
577
  # email address that represents a Google group. For example, `admins@example.com`
578
- # . * `deleted:user:`emailid`?uid=`uniqueid``: An email address (plus unique
579
- # identifier) representing a user that has been recently deleted. For example, `
580
- # alice@example.com?uid=123456789012345678901`. If the user is recovered, this
581
- # value reverts to `user:`emailid`` and the recovered user retains the role in
582
- # the binding. * `deleted:serviceAccount:`emailid`?uid=`uniqueid``: An email
583
- # address (plus unique identifier) representing a service account that has been
584
- # recently deleted. For example, `my-other-app@appspot.gserviceaccount.com?uid=
578
+ # . * `domain:`domain``: The G Suite domain (primary) that represents all the
579
+ # users of that domain. For example, `google.com` or `example.com`. * `deleted:
580
+ # user:`emailid`?uid=`uniqueid``: An email address (plus unique identifier)
581
+ # representing a user that has been recently deleted. For example, `alice@
582
+ # example.com?uid=123456789012345678901`. If the user is recovered, this value
583
+ # reverts to `user:`emailid`` and the recovered user retains the role in the
584
+ # binding. * `deleted:serviceAccount:`emailid`?uid=`uniqueid``: An email address
585
+ # (plus unique identifier) representing a service account that has been recently
586
+ # deleted. For example, `my-other-app@appspot.gserviceaccount.com?uid=
585
587
  # 123456789012345678901`. If the service account is undeleted, this value
586
588
  # reverts to `serviceAccount:`emailid`` and the undeleted service account
587
589
  # retains the role in the binding. * `deleted:group:`emailid`?uid=`uniqueid``:
588
590
  # An email address (plus unique identifier) representing a Google group that has
589
591
  # been recently deleted. For example, `admins@example.com?uid=
590
592
  # 123456789012345678901`. If the group is recovered, this value reverts to `
591
- # group:`emailid`` and the recovered group retains the role in the binding. * `
592
- # domain:`domain``: The G Suite domain (primary) that represents all the users
593
- # of that domain. For example, `google.com` or `example.com`.
593
+ # group:`emailid`` and the recovered group retains the role in the binding.
594
594
  # Corresponds to the JSON property `members`
595
595
  # @return [Array<String>]
596
596
  attr_accessor :members
@@ -613,6 +613,37 @@ module Google
613
613
  end
614
614
  end
615
615
 
616
+ # Build information of the Instance if it's in `ACTIVE` state.
617
+ class Build
618
+ include Google::Apis::Core::Hashable
619
+
620
+ # Output only. Commit ID of the latest commit in the build.
621
+ # Corresponds to the JSON property `commitId`
622
+ # @return [String]
623
+ attr_accessor :commit_id
624
+
625
+ # Output only. Commit time of the latest commit in the build.
626
+ # Corresponds to the JSON property `commitTime`
627
+ # @return [String]
628
+ attr_accessor :commit_time
629
+
630
+ # Output only. Path of the open source repository: github.com/apigee/registry.
631
+ # Corresponds to the JSON property `repo`
632
+ # @return [String]
633
+ attr_accessor :repo
634
+
635
+ def initialize(**args)
636
+ update!(**args)
637
+ end
638
+
639
+ # Update properties of this object
640
+ def update!(**args)
641
+ @commit_id = args[:commit_id] if args.key?(:commit_id)
642
+ @commit_time = args[:commit_time] if args.key?(:commit_time)
643
+ @repo = args[:repo] if args.key?(:repo)
644
+ end
645
+ end
646
+
616
647
  # The request message for Operations.CancelOperation.
617
648
  class CancelOperationRequest
618
649
  include Google::Apis::Core::Hashable
@@ -777,6 +808,11 @@ module Google
777
808
  class Instance
778
809
  include Google::Apis::Core::Hashable
779
810
 
811
+ # Build information of the Instance if it's in `ACTIVE` state.
812
+ # Corresponds to the JSON property `build`
813
+ # @return [Google::Apis::ApigeeregistryV1::Build]
814
+ attr_accessor :build
815
+
780
816
  # Available configurations to provision an Instance.
781
817
  # Corresponds to the JSON property `config`
782
818
  # @return [Google::Apis::ApigeeregistryV1::Config]
@@ -814,6 +850,7 @@ module Google
814
850
 
815
851
  # Update properties of this object
816
852
  def update!(**args)
853
+ @build = args[:build] if args.key?(:build)
817
854
  @config = args[:config] if args.key?(:config)
818
855
  @create_time = args[:create_time] if args.key?(:create_time)
819
856
  @name = args[:name] if args.key?(:name)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ApigeeregistryV1
18
18
  # Version of the google-apis-apigeeregistry_v1 gem
19
- GEM_VERSION = "0.12.0"
19
+ GEM_VERSION = "0.13.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.11.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230118"
25
+ REVISION = "20230127"
26
26
  end
27
27
  end
28
28
  end
@@ -58,6 +58,12 @@ module Google
58
58
  include Google::Apis::Core::JsonObjectSupport
59
59
  end
60
60
 
61
+ class Build
62
+ class Representation < Google::Apis::Core::JsonRepresentation; end
63
+
64
+ include Google::Apis::Core::JsonObjectSupport
65
+ end
66
+
61
67
  class CancelOperationRequest
62
68
  class Representation < Google::Apis::Core::JsonRepresentation; end
63
69
 
@@ -316,6 +322,15 @@ module Google
316
322
  end
317
323
  end
318
324
 
325
+ class Build
326
+ # @private
327
+ class Representation < Google::Apis::Core::JsonRepresentation
328
+ property :commit_id, as: 'commitId'
329
+ property :commit_time, as: 'commitTime'
330
+ property :repo, as: 'repo'
331
+ end
332
+ end
333
+
319
334
  class CancelOperationRequest
320
335
  # @private
321
336
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -358,6 +373,8 @@ module Google
358
373
  class Instance
359
374
  # @private
360
375
  class Representation < Google::Apis::Core::JsonRepresentation
376
+ property :build, as: 'build', class: Google::Apis::ApigeeregistryV1::Build, decorator: Google::Apis::ApigeeregistryV1::Build::Representation
377
+
361
378
  property :config, as: 'config', class: Google::Apis::ApigeeregistryV1::Config, decorator: Google::Apis::ApigeeregistryV1::Config::Representation
362
379
 
363
380
  property :create_time, as: 'createTime'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-apigeeregistry_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.12.0
4
+ version: 0.13.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: 2023-01-29 00:00:00.000000000 Z
11
+ date: 2023-02-05 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-apigeeregistry_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-apigeeregistry_v1/v0.12.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-apigeeregistry_v1/v0.13.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-apigeeregistry_v1
63
63
  post_install_message:
64
64
  rdoc_options: []